Skip to content

Commit be51f7e

Browse files
Merge branch 'v0.18'
2 parents a29cceb + 853c4c0 commit be51f7e

File tree

5 files changed

+51
-49
lines changed

5 files changed

+51
-49
lines changed

src/datachannel.cpp

+1-7
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,7 @@ DataChannel::DataChannel(impl_ptr<impl::DataChannel> impl)
2626
: CheshireCat<impl::DataChannel>(impl),
2727
Channel(std::dynamic_pointer_cast<impl::Channel>(impl)) {}
2828

29-
DataChannel::~DataChannel() {
30-
try {
31-
close();
32-
} catch (const std::exception &e) {
33-
PLOG_ERROR << e.what();
34-
}
35-
}
29+
DataChannel::~DataChannel() {}
3630

3731
void DataChannel::close() { return impl()->close(); }
3832

src/impl/datachannel.cpp

+6-5
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,11 @@ DataChannel::DataChannel(weak_ptr<PeerConnection> pc, string label, string proto
7979

8080
DataChannel::~DataChannel() {
8181
PLOG_VERBOSE << "Destroying DataChannel";
82-
83-
close();
82+
try {
83+
close();
84+
} catch (const std::exception &e) {
85+
PLOG_ERROR << e.what();
86+
}
8487
}
8588

8689
void DataChannel::close() {
@@ -102,9 +105,7 @@ void DataChannel::close() {
102105
}
103106

104107
void DataChannel::remoteClose() {
105-
mIsOpen = false;
106-
if (!mIsClosed.exchange(true))
107-
triggerClosed();
108+
close();
108109
}
109110

110111
optional<message_variant> DataChannel::receive() {

src/impl/peerconnection.cpp

+37-33
Original file line numberDiff line numberDiff line change
@@ -440,23 +440,28 @@ void PeerConnection::forwardMessage(message_ptr message) {
440440
return;
441441

442442
const uint16_t stream = uint16_t(message->stream);
443-
auto channel = findDataChannel(stream);
443+
auto [channel, found] = findDataChannel(stream);
444444

445445
if (DataChannel::IsOpenMessage(message)) {
446+
if (found) {
447+
// The stream is already used, the receiver must close the DataChannel
448+
PLOG_WARNING << "Got open message on already used stream " << stream;
449+
if(channel && channel->isOpen())
450+
channel->close();
451+
else
452+
sctpTransport->closeStream(message->stream);
453+
454+
return;
455+
}
456+
446457
const uint16_t remoteParity = (iceTransport->role() == Description::Role::Active) ? 1 : 0;
447458
if (stream % 2 != remoteParity) {
448-
// The odd/even rule is violated, close the DataChannel
459+
// The odd/even rule is violated, the receiver must close the DataChannel
449460
PLOG_WARNING << "Got open message violating the odd/even rule on stream " << stream;
450461
sctpTransport->closeStream(message->stream);
451462
return;
452463
}
453464

454-
if (channel && channel->isOpen()) {
455-
PLOG_WARNING << "Got open message on stream " << stream
456-
<< " for an already open DataChannel, closing it first";
457-
channel->close();
458-
}
459-
460465
channel = std::make_shared<IncomingDataChannel>(weak_from_this(), sctpTransport);
461466
channel->assignStream(stream);
462467
channel->openCallback =
@@ -465,8 +470,7 @@ void PeerConnection::forwardMessage(message_ptr message) {
465470
std::unique_lock lock(mDataChannelsMutex); // we are going to emplace
466471
mDataChannels.emplace(stream, channel);
467472
}
468-
469-
if (!channel) {
473+
else if (!found) {
470474
if (message->type == Message::Reset)
471475
return; // ignore
472476

@@ -476,8 +480,18 @@ void PeerConnection::forwardMessage(message_ptr message) {
476480
return;
477481
}
478482

479-
// Forward the message
480-
channel->incoming(message);
483+
if (message->type == Message::Reset) {
484+
// Incoming stream is reset, unregister it
485+
removeDataChannel(stream);
486+
}
487+
488+
if (channel) {
489+
// Forward the message
490+
channel->incoming(message);
491+
} else {
492+
// DataChannel was destroyed, ignore
493+
PLOG_DEBUG << "Ignored message on stream " << stream << ", DataChannel is destroyed";
494+
}
481495
}
482496

483497
void PeerConnection::forwardMedia(message_ptr message) {
@@ -571,12 +585,12 @@ void PeerConnection::forwardMedia(message_ptr message) {
571585
}
572586

573587
void PeerConnection::forwardBufferedAmount(uint16_t stream, size_t amount) {
574-
if (auto channel = findDataChannel(stream))
588+
[[maybe_unused]] auto [channel, found] = findDataChannel(stream);
589+
if (channel)
575590
channel->triggerBufferedAmount(amount);
576591
}
577592

578593
shared_ptr<DataChannel> PeerConnection::emplaceDataChannel(string label, DataChannelInit init) {
579-
cleanupDataChannels();
580594
std::unique_lock lock(mDataChannelsMutex); // we are going to emplace
581595

582596
// If the DataChannel is user-negotiated, do not negotiate it in-band
@@ -613,13 +627,17 @@ shared_ptr<DataChannel> PeerConnection::emplaceDataChannel(string label, DataCha
613627
return channel;
614628
}
615629

616-
shared_ptr<DataChannel> PeerConnection::findDataChannel(uint16_t stream) {
630+
std::pair<shared_ptr<DataChannel>, bool> PeerConnection::findDataChannel(uint16_t stream) {
617631
std::shared_lock lock(mDataChannelsMutex); // read-only
618632
if (auto it = mDataChannels.find(stream); it != mDataChannels.end())
619-
if (auto channel = it->second.lock())
620-
return channel;
633+
return std::make_pair(it->second.lock(), true);
634+
else
635+
return std::make_pair(nullptr, false);
636+
}
621637

622-
return nullptr;
638+
bool PeerConnection::removeDataChannel(uint16_t stream) {
639+
std::unique_lock lock(mDataChannelsMutex); // we are going to erase
640+
return mDataChannels.erase(stream) != 0;
623641
}
624642

625643
uint16_t PeerConnection::maxDataChannelStream() const {
@@ -650,8 +668,7 @@ void PeerConnection::assignDataChannels() {
650668
if (stream > maxStream)
651669
throw std::runtime_error("Too many DataChannels");
652670

653-
auto it = mDataChannels.find(stream);
654-
if (it == mDataChannels.end() || !it->second.lock())
671+
if (mDataChannels.find(stream) == mDataChannels.end())
655672
break;
656673

657674
stream += 2;
@@ -691,19 +708,6 @@ void PeerConnection::iterateDataChannels(
691708
}
692709
}
693710

694-
void PeerConnection::cleanupDataChannels() {
695-
std::unique_lock lock(mDataChannelsMutex); // we are going to erase
696-
auto it = mDataChannels.begin();
697-
while (it != mDataChannels.end()) {
698-
if (!it->second.lock()) {
699-
it = mDataChannels.erase(it);
700-
continue;
701-
}
702-
703-
++it;
704-
}
705-
}
706-
707711
void PeerConnection::openDataChannels() {
708712
if (auto transport = std::atomic_load(&mSctpTransport))
709713
iterateDataChannels([&](shared_ptr<DataChannel> channel) {

src/impl/peerconnection.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ struct PeerConnection : std::enable_shared_from_this<PeerConnection> {
5959
void forwardBufferedAmount(uint16_t stream, size_t amount);
6060

6161
shared_ptr<DataChannel> emplaceDataChannel(string label, DataChannelInit init);
62-
shared_ptr<DataChannel> findDataChannel(uint16_t stream);
62+
std::pair<shared_ptr<DataChannel>, bool> findDataChannel(uint16_t stream);
63+
bool removeDataChannel(uint16_t stream);
6364
uint16_t maxDataChannelStream() const;
6465
void assignDataChannels();
6566
void iterateDataChannels(std::function<void(shared_ptr<DataChannel> channel)> func);
66-
void cleanupDataChannels();
6767
void openDataChannels();
6868
void closeDataChannels();
6969
void remoteCloseDataChannels();

src/impl/track.cpp

+5-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,11 @@ Track::Track(weak_ptr<PeerConnection> pc, Description::Media description)
3030

3131
Track::~Track() {
3232
PLOG_VERBOSE << "Destroying Track";
33-
34-
close();
33+
try {
34+
close();
35+
} catch (const std::exception &e) {
36+
PLOG_ERROR << e.what();
37+
}
3538
}
3639

3740
string Track::mid() const {

0 commit comments

Comments
 (0)