blob: 1ed5c80c2932775a74c9aeaff740fc0a90f9565b [file] [log] [blame]
Harald Alvestrandcdcfab02020-09-28 13:02:071/*
2 * Copyright 2020 The WebRTC project authors. All Rights Reserved.
3 *
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.
9 */
10
11#include "pc/sdp_offer_answer.h"
12
Harald Alvestrandc06e3742020-10-01 10:23:3313#include <algorithm>
Harald Alvestrand981c5722022-02-09 12:42:2714#include <cstddef>
Harald Alvestrand1f7eab62020-10-18 16:51:4715#include <iterator>
Harald Alvestrand3eaee6b2020-10-19 06:35:5516#include <map>
Mirko Bonadei9ff450d2021-08-02 08:56:3317#include <memory>
Harald Alvestrandc06e3742020-10-01 10:23:3318#include <queue>
Harald Alvestrand981c5722022-02-09 12:42:2719#include <string>
Harald Alvestrandf01bd6c2020-10-23 13:30:4620#include <utility>
Harald Alvestrandc06e3742020-10-01 10:23:3321
Harald Alvestrand1f7eab62020-10-18 16:51:4722#include "absl/algorithm/container.h"
Harald Alvestrand9cd199d2020-10-27 07:10:4323#include "absl/memory/memory.h"
Tomas Gunnarsson0dd75392022-01-17 18:19:5624#include "absl/strings/match.h"
Harald Alvestrand1f7eab62020-10-18 16:51:4725#include "absl/strings/string_view.h"
26#include "api/array_view.h"
27#include "api/crypto/crypto_options.h"
Harald Alvestrand1f7eab62020-10-18 16:51:4728#include "api/dtls_transport_interface.h"
Harald Alvestrand8f429922022-05-04 10:32:3029#include "api/field_trials_view.h"
Harald Alvestrand1f7eab62020-10-18 16:51:4730#include "api/rtp_parameters.h"
31#include "api/rtp_receiver_interface.h"
32#include "api/rtp_sender_interface.h"
Harald Alvestrand763f5a92020-10-22 10:39:4033#include "api/video/builtin_video_bitrate_allocator_factory.h"
Harald Alvestrand1f7eab62020-10-18 16:51:4734#include "media/base/codec.h"
Harald Alvestrand1f7eab62020-10-18 16:51:4735#include "media/base/rid_description.h"
Harald Alvestrand85466662021-04-19 21:21:3636#include "p2p/base/ice_transport_internal.h"
Harald Alvestrand1f7eab62020-10-18 16:51:4737#include "p2p/base/p2p_constants.h"
38#include "p2p/base/p2p_transport_channel.h"
39#include "p2p/base/port.h"
40#include "p2p/base/transport_description.h"
41#include "p2p/base/transport_description_factory.h"
42#include "p2p/base/transport_info.h"
Harald Alvestrand981c5722022-02-09 12:42:2743#include "pc/channel_interface.h"
Harald Alvestrand85466662021-04-19 21:21:3644#include "pc/dtls_transport.h"
Henrik Boströmf7859892022-07-04 12:36:3745#include "pc/legacy_stats_collector.h"
Harald Alvestrandcdcfab02020-09-28 13:02:0746#include "pc/media_stream.h"
Markus Handella1b82012021-05-26 16:56:3047#include "pc/media_stream_proxy.h"
Harald Alvestrand8e344192022-02-08 12:55:4248#include "pc/peer_connection_internal.h"
Harald Alvestrand1090e442020-10-05 07:01:0949#include "pc/peer_connection_message_handler.h"
Harald Alvestrandcdcfab02020-09-28 13:02:0750#include "pc/rtp_media_utils.h"
Harald Alvestrand981c5722022-02-09 12:42:2751#include "pc/rtp_receiver_proxy.h"
Harald Alvestrand3eaee6b2020-10-19 06:35:5552#include "pc/rtp_sender.h"
Harald Alvestrand981c5722022-02-09 12:42:2753#include "pc/rtp_sender_proxy.h"
Harald Alvestrand1f7eab62020-10-18 16:51:4754#include "pc/simulcast_description.h"
55#include "pc/usage_pattern.h"
Philipp Hancke7d1aff62023-09-25 12:42:5156#include "pc/used_ids.h"
Harald Alvestrand763f5a92020-10-22 10:39:4057#include "pc/webrtc_session_description_factory.h"
Harald Alvestrand1f7eab62020-10-18 16:51:4758#include "rtc_base/helpers.h"
Harald Alvestrand1f7eab62020-10-18 16:51:4759#include "rtc_base/logging.h"
Harald Alvestrand763f5a92020-10-22 10:39:4060#include "rtc_base/rtc_certificate.h"
Harald Alvestrand1f7eab62020-10-18 16:51:4761#include "rtc_base/ssl_stream_adapter.h"
62#include "rtc_base/string_encode.h"
63#include "rtc_base/strings/string_builder.h"
Harald Alvestrandcdcfab02020-09-28 13:02:0764#include "rtc_base/trace_event.h"
65#include "system_wrappers/include/metrics.h"
66
67using cricket::ContentInfo;
68using cricket::ContentInfos;
69using cricket::MediaContentDescription;
70using cricket::MediaProtocolType;
71using cricket::RidDescription;
72using cricket::RidDirection;
73using cricket::SessionDescription;
74using cricket::SimulcastDescription;
75using cricket::SimulcastLayer;
76using cricket::SimulcastLayerList;
77using cricket::StreamParams;
78using cricket::TransportInfo;
79
80using cricket::LOCAL_PORT_TYPE;
81using cricket::PRFLX_PORT_TYPE;
82using cricket::RELAY_PORT_TYPE;
83using cricket::STUN_PORT_TYPE;
84
85namespace webrtc {
86
87namespace {
88
Harald Alvestrandc06e3742020-10-01 10:23:3389typedef webrtc::PeerConnectionInterface::RTCOfferAnswerOptions
90 RTCOfferAnswerOptions;
91
Harald Alvestrandcdcfab02020-09-28 13:02:0792// Error messages
93const char kInvalidSdp[] = "Invalid session description.";
94const char kInvalidCandidates[] = "Description contains invalid candidates.";
95const char kBundleWithoutRtcpMux[] =
96 "rtcp-mux must be enabled when BUNDLE "
97 "is enabled.";
98const char kMlineMismatchInAnswer[] =
99 "The order of m-lines in answer doesn't match order in offer. Rejecting "
100 "answer.";
101const char kMlineMismatchInSubsequentOffer[] =
102 "The order of m-lines in subsequent offer doesn't match order from "
103 "previous offer/answer.";
104const char kSdpWithoutIceUfragPwd[] =
105 "Called with SDP without ice-ufrag and ice-pwd.";
106const char kSdpWithoutDtlsFingerprint[] =
107 "Called with SDP without DTLS fingerprint.";
Harald Alvestrand0d018412021-11-04 13:52:31108const char kSdpWithoutSdesCrypto[] = "Called with SDP without SDES crypto.";
Harald Alvestrandcdcfab02020-09-28 13:02:07109
Harald Alvestranda474fbf2020-10-01 16:47:23110const char kSessionError[] = "Session error code: ";
111const char kSessionErrorDesc[] = "Session error description: ";
112
Harald Alvestrandbc9ca252020-10-05 13:08:41113// The length of RTCP CNAMEs.
114static const int kRtcpCnameLength = 16;
115
Philipp Hancke187e9d42021-11-08 08:58:15116// The maximum length of the MID attribute.
Philipp Hanckee2652e12022-12-07 10:49:31117static constexpr size_t kMidMaxSize = 16;
Philipp Hancke187e9d42021-11-08 08:58:15118
Harald Alvestranda474fbf2020-10-01 16:47:23119const char kDefaultStreamId[] = "default";
120// NOTE: Duplicated in peer_connection.cc:
121static const char kDefaultAudioSenderId[] = "defaulta0";
122static const char kDefaultVideoSenderId[] = "defaultv0";
123
Harald Alvestrandcdcfab02020-09-28 13:02:07124void NoteAddIceCandidateResult(int result) {
125 RTC_HISTOGRAM_ENUMERATION("WebRTC.PeerConnection.AddIceCandidate", result,
126 kAddIceCandidateMax);
127}
128
Henrik Boströmf8187e02021-04-26 19:04:26129std::map<std::string, const cricket::ContentGroup*> GetBundleGroupsByMid(
130 const SessionDescription* desc) {
131 std::vector<const cricket::ContentGroup*> bundle_groups =
132 desc->GetGroupsByName(cricket::GROUP_TYPE_BUNDLE);
133 std::map<std::string, const cricket::ContentGroup*> bundle_groups_by_mid;
134 for (const cricket::ContentGroup* bundle_group : bundle_groups) {
135 for (const std::string& content_name : bundle_group->content_names()) {
136 bundle_groups_by_mid[content_name] = bundle_group;
137 }
138 }
139 return bundle_groups_by_mid;
140}
141
Artem Titov880fa812021-07-30 20:30:23142// Returns true if `new_desc` requests an ICE restart (i.e., new ufrag/pwd).
Harald Alvestrandcdcfab02020-09-28 13:02:07143bool CheckForRemoteIceRestart(const SessionDescriptionInterface* old_desc,
144 const SessionDescriptionInterface* new_desc,
145 const std::string& content_name) {
146 if (!old_desc) {
147 return false;
148 }
149 const SessionDescription* new_sd = new_desc->description();
150 const SessionDescription* old_sd = old_desc->description();
151 const ContentInfo* cinfo = new_sd->GetContentByName(content_name);
152 if (!cinfo || cinfo->rejected) {
153 return false;
154 }
155 // If the content isn't rejected, check if ufrag and password has changed.
156 const cricket::TransportDescription* new_transport_desc =
157 new_sd->GetTransportDescriptionByName(content_name);
158 const cricket::TransportDescription* old_transport_desc =
159 old_sd->GetTransportDescriptionByName(content_name);
160 if (!new_transport_desc || !old_transport_desc) {
161 // No transport description exists. This is not an ICE restart.
162 return false;
163 }
164 if (cricket::IceCredentialsChanged(
165 old_transport_desc->ice_ufrag, old_transport_desc->ice_pwd,
166 new_transport_desc->ice_ufrag, new_transport_desc->ice_pwd)) {
167 RTC_LOG(LS_INFO) << "Remote peer requests ICE restart for " << content_name
168 << ".";
169 return true;
170 }
171 return false;
172}
173
174// Generates a string error message for SetLocalDescription/SetRemoteDescription
175// from an RTCError.
176std::string GetSetDescriptionErrorMessage(cricket::ContentSource source,
177 SdpType type,
178 const RTCError& error) {
179 rtc::StringBuilder oss;
180 oss << "Failed to set " << (source == cricket::CS_LOCAL ? "local" : "remote")
Tomas Gunnarsson0dd75392022-01-17 18:19:56181 << " " << SdpTypeToString(type) << " sdp: ";
182 RTC_DCHECK(!absl::StartsWith(error.message(), oss.str())) << error.message();
183 oss << error.message();
Harald Alvestrandcdcfab02020-09-28 13:02:07184 return oss.Release();
185}
186
187std::string GetStreamIdsString(rtc::ArrayView<const std::string> stream_ids) {
188 std::string output = "streams=[";
189 const char* separator = "";
190 for (const auto& stream_id : stream_ids) {
191 output.append(separator).append(stream_id);
192 separator = ", ";
193 }
194 output.append("]");
195 return output;
196}
197
Harald Alvestrandcdcfab02020-09-28 13:02:07198const ContentInfo* FindTransceiverMSection(
Harald Alvestrand85466662021-04-19 21:21:36199 RtpTransceiver* transceiver,
Harald Alvestrandcdcfab02020-09-28 13:02:07200 const SessionDescriptionInterface* session_description) {
201 return transceiver->mid()
202 ? session_description->description()->GetContentByName(
203 *transceiver->mid())
204 : nullptr;
205}
206
207// If the direction is "recvonly" or "inactive", treat the description
208// as containing no streams.
209// See: https://code.google.com/p/webrtc/issues/detail?id=5054
210std::vector<cricket::StreamParams> GetActiveStreams(
211 const cricket::MediaContentDescription* desc) {
212 return RtpTransceiverDirectionHasSend(desc->direction())
213 ? desc->streams()
214 : std::vector<cricket::StreamParams>();
215}
216
217// Logic to decide if an m= section can be recycled. This means that the new
218// m= section is not rejected, but the old local or remote m= section is
Artem Titov880fa812021-07-30 20:30:23219// rejected. `old_content_one` and `old_content_two` refer to the m= section
Harald Alvestrandcdcfab02020-09-28 13:02:07220// of the old remote and old local descriptions in no particular order.
221// We need to check both the old local and remote because either
222// could be the most current from the latest negotation.
223bool IsMediaSectionBeingRecycled(SdpType type,
224 const ContentInfo& content,
225 const ContentInfo* old_content_one,
226 const ContentInfo* old_content_two) {
227 return type == SdpType::kOffer && !content.rejected &&
228 ((old_content_one && old_content_one->rejected) ||
229 (old_content_two && old_content_two->rejected));
230}
231
Artem Titov880fa812021-07-30 20:30:23232// Verify that the order of media sections in `new_desc` matches
233// `current_desc`. The number of m= sections in `new_desc` should be no
234// less than `current_desc`. In the case of checking an answer's
235// `new_desc`, the `current_desc` is the last offer that was set as the
236// local or remote. In the case of checking an offer's `new_desc` we
Harald Alvestrandcdcfab02020-09-28 13:02:07237// check against the local and remote descriptions stored from the last
238// negotiation, because either of these could be the most up to date for
Artem Titov880fa812021-07-30 20:30:23239// possible rejected m sections. These are the `current_desc` and
240// `secondary_current_desc`.
Harald Alvestrandcdcfab02020-09-28 13:02:07241bool MediaSectionsInSameOrder(const SessionDescription& current_desc,
242 const SessionDescription* secondary_current_desc,
243 const SessionDescription& new_desc,
244 const SdpType type) {
245 if (current_desc.contents().size() > new_desc.contents().size()) {
246 return false;
247 }
248
249 for (size_t i = 0; i < current_desc.contents().size(); ++i) {
250 const cricket::ContentInfo* secondary_content_info = nullptr;
251 if (secondary_current_desc &&
252 i < secondary_current_desc->contents().size()) {
253 secondary_content_info = &secondary_current_desc->contents()[i];
254 }
255 if (IsMediaSectionBeingRecycled(type, new_desc.contents()[i],
256 &current_desc.contents()[i],
257 secondary_content_info)) {
258 // For new offer descriptions, if the media section can be recycled, it's
259 // valid for the MID and media type to change.
260 continue;
261 }
262 if (new_desc.contents()[i].name != current_desc.contents()[i].name) {
263 return false;
264 }
265 const MediaContentDescription* new_desc_mdesc =
266 new_desc.contents()[i].media_description();
267 const MediaContentDescription* current_desc_mdesc =
268 current_desc.contents()[i].media_description();
269 if (new_desc_mdesc->type() != current_desc_mdesc->type()) {
270 return false;
271 }
272 }
273 return true;
274}
275
276bool MediaSectionsHaveSameCount(const SessionDescription& desc1,
277 const SessionDescription& desc2) {
278 return desc1.contents().size() == desc2.contents().size();
279}
Harald Alvestrand0d018412021-11-04 13:52:31280// Checks that each non-rejected content has SDES crypto keys or a DTLS
Harald Alvestrandcdcfab02020-09-28 13:02:07281// fingerprint, unless it's in a BUNDLE group, in which case only the
282// BUNDLE-tag section (first media section/description in the BUNDLE group)
283// needs a ufrag and pwd. Mismatches, such as replying with a DTLS fingerprint
284// to SDES keys, will be caught in JsepTransport negotiation, and backstopped
Artem Titov880fa812021-07-30 20:30:23285// by Channel's `srtp_required` check.
Henrik Boströmf8187e02021-04-26 19:04:26286RTCError VerifyCrypto(const SessionDescription* desc,
Harald Alvestrand0d018412021-11-04 13:52:31287 bool dtls_enabled,
Henrik Boströmf8187e02021-04-26 19:04:26288 const std::map<std::string, const cricket::ContentGroup*>&
289 bundle_groups_by_mid) {
Harald Alvestrandcdcfab02020-09-28 13:02:07290 for (const cricket::ContentInfo& content_info : desc->contents()) {
291 if (content_info.rejected) {
292 continue;
293 }
Harald Alvestrand22d32f12022-10-03 13:16:28294#if !defined(WEBRTC_FUCHSIA)
295 RTC_CHECK(dtls_enabled) << "SDES protocol is only allowed in Fuchsia";
296#endif
Harald Alvestrandcdcfab02020-09-28 13:02:07297 const std::string& mid = content_info.name;
Henrik Boströmf8187e02021-04-26 19:04:26298 auto it = bundle_groups_by_mid.find(mid);
299 const cricket::ContentGroup* bundle =
300 it != bundle_groups_by_mid.end() ? it->second : nullptr;
301 if (bundle && mid != *(bundle->FirstContentName())) {
Harald Alvestrandcdcfab02020-09-28 13:02:07302 // This isn't the first media section in the BUNDLE group, so it's not
303 // required to have crypto attributes, since only the crypto attributes
304 // from the first section actually get used.
305 continue;
306 }
307
308 // If the content isn't rejected or bundled into another m= section, crypto
309 // must be present.
310 const MediaContentDescription* media = content_info.media_description();
311 const TransportInfo* tinfo = desc->GetTransportInfoByName(mid);
312 if (!media || !tinfo) {
313 // Something is not right.
314 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, kInvalidSdp);
315 }
Harald Alvestrand0d018412021-11-04 13:52:31316 if (dtls_enabled) {
317 if (!tinfo->description.identity_fingerprint) {
Philipp Hanckeb81bf532023-07-18 09:03:39318 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
319 kSdpWithoutDtlsFingerprint);
Harald Alvestrand0d018412021-11-04 13:52:31320 }
321 } else {
322 if (media->cryptos().empty()) {
Philipp Hanckeb81bf532023-07-18 09:03:39323 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
324 kSdpWithoutSdesCrypto);
Harald Alvestrand0d018412021-11-04 13:52:31325 }
Harald Alvestrandcdcfab02020-09-28 13:02:07326 }
327 }
328 return RTCError::OK();
329}
330
331// Checks that each non-rejected content has ice-ufrag and ice-pwd set, unless
332// it's in a BUNDLE group, in which case only the BUNDLE-tag section (first
333// media section/description in the BUNDLE group) needs a ufrag and pwd.
Henrik Boströmf8187e02021-04-26 19:04:26334bool VerifyIceUfragPwdPresent(
335 const SessionDescription* desc,
336 const std::map<std::string, const cricket::ContentGroup*>&
337 bundle_groups_by_mid) {
Harald Alvestrandcdcfab02020-09-28 13:02:07338 for (const cricket::ContentInfo& content_info : desc->contents()) {
339 if (content_info.rejected) {
340 continue;
341 }
342 const std::string& mid = content_info.name;
Henrik Boströmf8187e02021-04-26 19:04:26343 auto it = bundle_groups_by_mid.find(mid);
344 const cricket::ContentGroup* bundle =
345 it != bundle_groups_by_mid.end() ? it->second : nullptr;
346 if (bundle && mid != *(bundle->FirstContentName())) {
Harald Alvestrandcdcfab02020-09-28 13:02:07347 // This isn't the first media section in the BUNDLE group, so it's not
348 // required to have ufrag/password, since only the ufrag/password from
349 // the first section actually get used.
350 continue;
351 }
352
353 // If the content isn't rejected or bundled into another m= section,
354 // ice-ufrag and ice-pwd must be present.
355 const TransportInfo* tinfo = desc->GetTransportInfoByName(mid);
356 if (!tinfo) {
357 // Something is not right.
358 RTC_LOG(LS_ERROR) << kInvalidSdp;
359 return false;
360 }
361 if (tinfo->description.ice_ufrag.empty() ||
362 tinfo->description.ice_pwd.empty()) {
363 RTC_LOG(LS_ERROR) << "Session description must have ice ufrag and pwd.";
364 return false;
365 }
366 }
367 return true;
368}
369
Harald Alvestrand85466662021-04-19 21:21:36370RTCError ValidateMids(const cricket::SessionDescription& description) {
Harald Alvestrandcdcfab02020-09-28 13:02:07371 std::set<std::string> mids;
372 for (const cricket::ContentInfo& content : description.contents()) {
373 if (content.name.empty()) {
374 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
375 "A media section is missing a MID attribute.");
376 }
Philipp Hancke187e9d42021-11-08 08:58:15377 if (content.name.size() > kMidMaxSize) {
378 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
379 "The MID attribute exceeds the maximum supported "
Philipp Hanckee2652e12022-12-07 10:49:31380 "length of 16 characters.");
Philipp Hancke187e9d42021-11-08 08:58:15381 }
Harald Alvestrandcdcfab02020-09-28 13:02:07382 if (!mids.insert(content.name).second) {
383 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
384 "Duplicate a=mid value '" + content.name + "'.");
385 }
386 }
387 return RTCError::OK();
388}
389
Philipp Hanckef0ea56a2022-11-28 16:48:04390RTCError FindDuplicateCodecParameters(
391 const RtpCodecParameters codec_parameters,
392 std::map<int, RtpCodecParameters>& payload_to_codec_parameters) {
393 auto existing_codec_parameters =
394 payload_to_codec_parameters.find(codec_parameters.payload_type);
395 if (existing_codec_parameters != payload_to_codec_parameters.end() &&
396 codec_parameters != existing_codec_parameters->second) {
Philipp Hanckeb81bf532023-07-18 09:03:39397 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
398 "A BUNDLE group contains a codec collision for "
399 "payload_type='" +
400 rtc::ToString(codec_parameters.payload_type) +
401 ". All codecs must share the same type, "
402 "encoding name, clock rate and parameters.");
Philipp Hanckef0ea56a2022-11-28 16:48:04403 }
404 payload_to_codec_parameters.insert(
405 std::make_pair(codec_parameters.payload_type, codec_parameters));
406 return RTCError::OK();
407}
408
409RTCError ValidateBundledPayloadTypes(
410 const cricket::SessionDescription& description) {
411 // https://www.rfc-editor.org/rfc/rfc8843#name-payload-type-pt-value-reuse
412 // ... all codecs associated with the payload type number MUST share an
413 // identical codec configuration. This means that the codecs MUST share
414 // the same media type, encoding name, clock rate, and any parameter
415 // that can affect the codec configuration and packetization.
Philipp Hanckef0ea56a2022-11-28 16:48:04416 std::vector<const cricket::ContentGroup*> bundle_groups =
417 description.GetGroupsByName(cricket::GROUP_TYPE_BUNDLE);
418 for (const cricket::ContentGroup* bundle_group : bundle_groups) {
419 std::map<int, RtpCodecParameters> payload_to_codec_parameters;
420 for (const std::string& content_name : bundle_group->content_names()) {
Philipp Hancke465bc0f2023-08-25 10:42:36421 const ContentInfo* content_description =
422 description.GetContentByName(content_name);
423 if (!content_description) {
Philipp Hanckeb81bf532023-07-18 09:03:39424 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
425 "A BUNDLE group contains a MID='" + content_name +
426 "' matching no m= section.");
Philipp Hanckef0ea56a2022-11-28 16:48:04427 }
Philipp Hancke465bc0f2023-08-25 10:42:36428 const cricket::MediaContentDescription* media_description =
429 content_description->media_description();
430 RTC_DCHECK(media_description);
431 if (content_description->rejected || !media_description ||
432 !media_description->has_codecs()) {
Philipp Hanckef0ea56a2022-11-28 16:48:04433 continue;
434 }
435 const auto type = media_description->type();
Philipp Hanckef14dfed2023-09-18 12:20:34436 if (type == cricket::MEDIA_TYPE_AUDIO ||
437 type == cricket::MEDIA_TYPE_VIDEO) {
438 for (const auto& c : media_description->codecs()) {
Philipp Hanckef0ea56a2022-11-28 16:48:04439 auto error = FindDuplicateCodecParameters(
440 c.ToCodecParameters(), payload_to_codec_parameters);
441 if (!error.ok()) {
442 return error;
443 }
444 }
445 }
446 }
447 }
448 return RTCError::OK();
449}
450
Philipp Hanckea2f5d452022-12-19 10:04:06451RTCError FindDuplicateHeaderExtensionIds(
452 const RtpExtension extension,
453 std::map<int, RtpExtension>& id_to_extension) {
454 auto existing_extension = id_to_extension.find(extension.id);
455 if (existing_extension != id_to_extension.end() &&
456 !(extension.uri == existing_extension->second.uri &&
457 extension.encrypt == existing_extension->second.encrypt)) {
Philipp Hanckeb81bf532023-07-18 09:03:39458 LOG_AND_RETURN_ERROR(
Philipp Hanckea2f5d452022-12-19 10:04:06459 RTCErrorType::INVALID_PARAMETER,
460 "A BUNDLE group contains a codec collision for "
Philipp Hancke4bf52382023-05-25 14:11:36461 "header extension id=" +
Philipp Hanckea2f5d452022-12-19 10:04:06462 rtc::ToString(extension.id) +
463 ". The id must be the same across all bundled media descriptions");
464 }
465 id_to_extension.insert(std::make_pair(extension.id, extension));
466 return RTCError::OK();
467}
468
469RTCError ValidateBundledRtpHeaderExtensions(
470 const cricket::SessionDescription& description) {
471 // https://www.rfc-editor.org/rfc/rfc8843#name-rtp-header-extensions-consi
472 // ... the identifier used for a given extension MUST identify the same
473 // extension across all the bundled media descriptions.
474 std::vector<const cricket::ContentGroup*> bundle_groups =
475 description.GetGroupsByName(cricket::GROUP_TYPE_BUNDLE);
476 for (const cricket::ContentGroup* bundle_group : bundle_groups) {
477 std::map<int, RtpExtension> id_to_extension;
478 for (const std::string& content_name : bundle_group->content_names()) {
Philipp Hancke465bc0f2023-08-25 10:42:36479 const ContentInfo* content_description =
480 description.GetContentByName(content_name);
481 if (!content_description) {
Philipp Hanckeb81bf532023-07-18 09:03:39482 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
483 "A BUNDLE group contains a MID='" + content_name +
484 "' matching no m= section.");
Philipp Hanckea2f5d452022-12-19 10:04:06485 }
Philipp Hancke465bc0f2023-08-25 10:42:36486 const cricket::MediaContentDescription* media_description =
487 content_description->media_description();
488 RTC_DCHECK(media_description);
489 if (content_description->rejected || !media_description ||
490 !media_description->has_codecs()) {
491 continue;
492 }
493
Philipp Hanckea2f5d452022-12-19 10:04:06494 for (const auto& extension : media_description->rtp_header_extensions()) {
495 auto error =
496 FindDuplicateHeaderExtensionIds(extension, id_to_extension);
497 if (!error.ok()) {
498 return error;
499 }
500 }
501 }
502 }
503 return RTCError::OK();
504}
505
Philipp Hancke34887262023-06-01 17:07:50506RTCError ValidateRtpHeaderExtensionsForSpecSimulcast(
507 const cricket::SessionDescription& description) {
508 for (const ContentInfo& content : description.contents()) {
Philipp Hancke465bc0f2023-08-25 10:42:36509 if (content.type != MediaProtocolType::kRtp || content.rejected) {
Philipp Hancke34887262023-06-01 17:07:50510 continue;
511 }
512 const auto media_description = content.media_description();
513 if (!media_description->HasSimulcast()) {
514 continue;
515 }
516 auto extensions = media_description->rtp_header_extensions();
517 auto it = absl::c_find_if(extensions, [](const RtpExtension& ext) {
518 return ext.uri == RtpExtension::kRidUri;
519 });
520 if (it == extensions.end()) {
Philipp Hanckeb81bf532023-07-18 09:03:39521 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
522 "The media section with MID='" + content.mid() +
523 "' negotiates simulcast but does not negotiate "
524 "the RID RTP header extension.");
Philipp Hancke34887262023-06-01 17:07:50525 }
526 }
527 return RTCError::OK();
528}
529
Philipp Hancke1f1b0b32023-08-11 07:32:50530RTCError ValidateSsrcGroups(const cricket::SessionDescription& description) {
531 for (const ContentInfo& content : description.contents()) {
532 if (content.type != MediaProtocolType::kRtp) {
533 continue;
534 }
535 for (const StreamParams& stream : content.media_description()->streams()) {
536 for (const cricket::SsrcGroup& group : stream.ssrc_groups) {
537 // Validate the number of SSRCs for standard SSRC group semantics such
538 // as FID and FEC-FR and the non-standard SIM group.
539 if ((group.semantics == cricket::kFidSsrcGroupSemantics &&
540 group.ssrcs.size() != 2) ||
541 (group.semantics == cricket::kFecFrSsrcGroupSemantics &&
542 group.ssrcs.size() != 2) ||
543 (group.semantics == cricket::kSimSsrcGroupSemantics &&
544 group.ssrcs.size() > kMaxSimulcastStreams)) {
545 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
546 "The media section with MID='" + content.mid() +
547 "' has a ssrc-group with semantics " +
548 group.semantics +
549 " and an unexpected number of SSRCs.");
550 }
551 }
552 }
553 }
554 return RTCError::OK();
555}
556
Philipp Hanckeb64615a2023-09-14 14:23:31557RTCError ValidatePayloadTypes(const cricket::SessionDescription& description) {
558 for (const ContentInfo& content : description.contents()) {
559 if (content.type != MediaProtocolType::kRtp) {
560 continue;
561 }
562 const auto media_description = content.media_description();
563 RTC_DCHECK(media_description);
564 if (content.rejected || !media_description ||
565 !media_description->has_codecs()) {
566 continue;
567 }
568 const auto type = media_description->type();
569 if (type == cricket::MEDIA_TYPE_AUDIO) {
570 RTC_DCHECK(media_description->as_audio());
571 for (const auto& codec : media_description->as_audio()->codecs()) {
Philipp Hancke7d1aff62023-09-25 12:42:51572 if (!cricket::UsedPayloadTypes::IsIdValid(
573 codec, media_description->rtcp_mux())) {
Philipp Hanckeb64615a2023-09-14 14:23:31574 LOG_AND_RETURN_ERROR(
575 RTCErrorType::INVALID_PARAMETER,
576 "The media section with MID='" + content.mid() +
577 "' used an invalid payload type " + rtc::ToString(codec.id) +
578 " for codec '" + codec.name + ", rtcp-mux:" +
579 (media_description->rtcp_mux() ? "enabled" : "disabled"));
580 }
581 }
582 } else if (type == cricket::MEDIA_TYPE_VIDEO) {
583 RTC_DCHECK(media_description->as_video());
584 for (const auto& codec : media_description->as_video()->codecs()) {
Philipp Hancke7d1aff62023-09-25 12:42:51585 if (!cricket::UsedPayloadTypes::IsIdValid(
586 codec, media_description->rtcp_mux())) {
Philipp Hanckeb64615a2023-09-14 14:23:31587 LOG_AND_RETURN_ERROR(
588 RTCErrorType::INVALID_PARAMETER,
589 "The media section with MID='" + content.mid() +
590 "' used an invalid payload type " + rtc::ToString(codec.id) +
591 " for codec '" + codec.name + ", rtcp-mux:" +
592 (media_description->rtcp_mux() ? "enabled" : "disabled"));
593 }
594 }
595 }
596 }
597 return RTCError::OK();
598}
599
Harald Alvestrandcdcfab02020-09-28 13:02:07600bool IsValidOfferToReceiveMedia(int value) {
601 typedef PeerConnectionInterface::RTCOfferAnswerOptions Options;
602 return (value >= Options::kUndefined) &&
603 (value <= Options::kMaxOfferToReceiveMedia);
604}
605
606bool ValidateOfferAnswerOptions(
607 const PeerConnectionInterface::RTCOfferAnswerOptions& rtc_options) {
608 return IsValidOfferToReceiveMedia(rtc_options.offer_to_receive_audio) &&
609 IsValidOfferToReceiveMedia(rtc_options.offer_to_receive_video);
610}
611
Harald Alvestrandcdcfab02020-09-28 13:02:07612// This method will extract any send encodings that were sent by the remote
613// connection. This is currently only relevant for Simulcast scenario (where
614// the number of layers may be communicated by the server).
Harald Alvestrand85466662021-04-19 21:21:36615std::vector<RtpEncodingParameters> GetSendEncodingsFromRemoteDescription(
Harald Alvestrandcdcfab02020-09-28 13:02:07616 const MediaContentDescription& desc) {
617 if (!desc.HasSimulcast()) {
618 return {};
619 }
620 std::vector<RtpEncodingParameters> result;
621 const SimulcastDescription& simulcast = desc.simulcast_description();
622
623 // This is a remote description, the parameters we are after should appear
624 // as receive streams.
625 for (const auto& alternatives : simulcast.receive_layers()) {
626 RTC_DCHECK(!alternatives.empty());
627 // There is currently no way to specify or choose from alternatives.
628 // We will always use the first alternative, which is the most preferred.
629 const SimulcastLayer& layer = alternatives[0];
630 RtpEncodingParameters parameters;
631 parameters.rid = layer.rid;
632 parameters.active = !layer.is_paused;
633 result.push_back(parameters);
634 }
635
636 return result;
637}
638
Harald Alvestrand85466662021-04-19 21:21:36639RTCError UpdateSimulcastLayerStatusInSender(
Harald Alvestrandcdcfab02020-09-28 13:02:07640 const std::vector<SimulcastLayer>& layers,
641 rtc::scoped_refptr<RtpSenderInternal> sender) {
642 RTC_DCHECK(sender);
Harald Alvestrand0166be82022-08-25 11:31:01643 RtpParameters parameters = sender->GetParametersInternalWithAllLayers();
Harald Alvestrandcdcfab02020-09-28 13:02:07644 std::vector<std::string> disabled_layers;
645
646 // The simulcast envelope cannot be changed, only the status of the streams.
647 // So we will iterate over the send encodings rather than the layers.
648 for (RtpEncodingParameters& encoding : parameters.encodings) {
649 auto iter = std::find_if(layers.begin(), layers.end(),
650 [&encoding](const SimulcastLayer& layer) {
651 return layer.rid == encoding.rid;
652 });
653 // A layer that cannot be found may have been removed by the remote party.
654 if (iter == layers.end()) {
655 disabled_layers.push_back(encoding.rid);
656 continue;
657 }
658
659 encoding.active = !iter->is_paused;
660 }
661
Harald Alvestrand0166be82022-08-25 11:31:01662 RTCError result = sender->SetParametersInternalWithAllLayers(parameters);
Harald Alvestrandcdcfab02020-09-28 13:02:07663 if (result.ok()) {
664 result = sender->DisableEncodingLayers(disabled_layers);
665 }
666
667 return result;
668}
669
Harald Alvestrand85466662021-04-19 21:21:36670bool SimulcastIsRejected(const ContentInfo* local_content,
Lennart Grahl0d0ed762021-05-17 14:06:37671 const MediaContentDescription& answer_media_desc,
672 bool enable_encrypted_rtp_header_extensions) {
Harald Alvestrandcdcfab02020-09-28 13:02:07673 bool simulcast_offered = local_content &&
674 local_content->media_description() &&
675 local_content->media_description()->HasSimulcast();
676 bool simulcast_answered = answer_media_desc.HasSimulcast();
677 bool rids_supported = RtpExtension::FindHeaderExtensionByUri(
Lennart Grahl0d0ed762021-05-17 14:06:37678 answer_media_desc.rtp_header_extensions(), RtpExtension::kRidUri,
679 enable_encrypted_rtp_header_extensions
680 ? RtpExtension::Filter::kPreferEncryptedExtension
681 : RtpExtension::Filter::kDiscardEncryptedExtension);
Harald Alvestrandcdcfab02020-09-28 13:02:07682 return simulcast_offered && (!simulcast_answered || !rids_supported);
683}
684
Harald Alvestrand85466662021-04-19 21:21:36685RTCError DisableSimulcastInSender(
Harald Alvestrandcdcfab02020-09-28 13:02:07686 rtc::scoped_refptr<RtpSenderInternal> sender) {
687 RTC_DCHECK(sender);
Harald Alvestrand0166be82022-08-25 11:31:01688 RtpParameters parameters = sender->GetParametersInternalWithAllLayers();
Harald Alvestrandcdcfab02020-09-28 13:02:07689 if (parameters.encodings.size() <= 1) {
690 return RTCError::OK();
691 }
692
693 std::vector<std::string> disabled_layers;
694 std::transform(
695 parameters.encodings.begin() + 1, parameters.encodings.end(),
696 std::back_inserter(disabled_layers),
697 [](const RtpEncodingParameters& encoding) { return encoding.rid; });
698 return sender->DisableEncodingLayers(disabled_layers);
699}
700
Harald Alvestrandc06e3742020-10-01 10:23:33701// The SDP parser used to populate these values by default for the 'content
702// name' if an a=mid line was absent.
Harald Alvestrand85466662021-04-19 21:21:36703absl::string_view GetDefaultMidForPlanB(cricket::MediaType media_type) {
Harald Alvestrandc06e3742020-10-01 10:23:33704 switch (media_type) {
705 case cricket::MEDIA_TYPE_AUDIO:
706 return cricket::CN_AUDIO;
707 case cricket::MEDIA_TYPE_VIDEO:
708 return cricket::CN_VIDEO;
709 case cricket::MEDIA_TYPE_DATA:
710 return cricket::CN_DATA;
Philipp Hancke4e8c1152020-10-13 10:43:15711 case cricket::MEDIA_TYPE_UNSUPPORTED:
712 return "not supported";
Harald Alvestrandc06e3742020-10-01 10:23:33713 }
Artem Titovd3251962021-11-15 15:57:07714 RTC_DCHECK_NOTREACHED();
Harald Alvestrandc06e3742020-10-01 10:23:33715 return "";
716}
717
Artem Titov880fa812021-07-30 20:30:23718// Add options to |[audio/video]_media_description_options| from `senders`.
Harald Alvestrandc06e3742020-10-01 10:23:33719void AddPlanBRtpSenderOptions(
720 const std::vector<rtc::scoped_refptr<
721 RtpSenderProxyWithInternal<RtpSenderInternal>>>& senders,
722 cricket::MediaDescriptionOptions* audio_media_description_options,
723 cricket::MediaDescriptionOptions* video_media_description_options,
724 int num_sim_layers) {
725 for (const auto& sender : senders) {
726 if (sender->media_type() == cricket::MEDIA_TYPE_AUDIO) {
727 if (audio_media_description_options) {
728 audio_media_description_options->AddAudioSender(
729 sender->id(), sender->internal()->stream_ids());
730 }
731 } else {
732 RTC_DCHECK(sender->media_type() == cricket::MEDIA_TYPE_VIDEO);
733 if (video_media_description_options) {
734 video_media_description_options->AddVideoSender(
735 sender->id(), sender->internal()->stream_ids(), {},
736 SimulcastLayerList(), num_sim_layers);
737 }
738 }
739 }
740}
741
Harald Alvestrand85466662021-04-19 21:21:36742cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForTransceiver(
743 RtpTransceiver* transceiver,
Harald Alvestrandc06e3742020-10-01 10:23:33744 const std::string& mid,
745 bool is_create_offer) {
746 // NOTE: a stopping transceiver should be treated as a stopped one in
747 // createOffer as specified in
748 // https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-createoffer.
749 bool stopped =
750 is_create_offer ? transceiver->stopping() : transceiver->stopped();
751 cricket::MediaDescriptionOptions media_description_options(
752 transceiver->media_type(), mid, transceiver->direction(), stopped);
753 media_description_options.codec_preferences =
754 transceiver->codec_preferences();
755 media_description_options.header_extensions =
Philipp Hancke9f6ae372023-03-06 17:08:31756 transceiver->GetHeaderExtensionsToNegotiate();
Harald Alvestrandc06e3742020-10-01 10:23:33757 // This behavior is specified in JSEP. The gist is that:
758 // 1. The MSID is included if the RtpTransceiver's direction is sendonly or
759 // sendrecv.
760 // 2. If the MSID is included, then it must be included in any subsequent
761 // offer/answer exactly the same until the RtpTransceiver is stopped.
762 if (stopped || (!RtpTransceiverDirectionHasSend(transceiver->direction()) &&
Harald Alvestrand85466662021-04-19 21:21:36763 !transceiver->has_ever_been_used_to_send())) {
Harald Alvestrandc06e3742020-10-01 10:23:33764 return media_description_options;
765 }
766
767 cricket::SenderOptions sender_options;
768 sender_options.track_id = transceiver->sender()->id();
769 sender_options.stream_ids = transceiver->sender()->stream_ids();
770
771 // The following sets up RIDs and Simulcast.
772 // RIDs are included if Simulcast is requested or if any RID was specified.
773 RtpParameters send_parameters =
Harald Alvestrand0166be82022-08-25 11:31:01774 transceiver->sender_internal()->GetParametersInternalWithAllLayers();
Harald Alvestrandc06e3742020-10-01 10:23:33775 bool has_rids = std::any_of(send_parameters.encodings.begin(),
776 send_parameters.encodings.end(),
777 [](const RtpEncodingParameters& encoding) {
778 return !encoding.rid.empty();
779 });
780
781 std::vector<RidDescription> send_rids;
782 SimulcastLayerList send_layers;
783 for (const RtpEncodingParameters& encoding : send_parameters.encodings) {
784 if (encoding.rid.empty()) {
785 continue;
786 }
787 send_rids.push_back(RidDescription(encoding.rid, RidDirection::kSend));
788 send_layers.AddLayer(SimulcastLayer(encoding.rid, !encoding.active));
789 }
790
791 if (has_rids) {
792 sender_options.rids = send_rids;
793 }
794
795 sender_options.simulcast_layers = send_layers;
796 // When RIDs are configured, we must set num_sim_layers to 0 to.
797 // Otherwise, num_sim_layers must be 1 because either there is no
798 // simulcast, or simulcast is acheived by munging the SDP.
799 sender_options.num_sim_layers = has_rids ? 0 : 1;
800 media_description_options.sender_options.push_back(sender_options);
801
802 return media_description_options;
803}
804
Artem Titov880fa812021-07-30 20:30:23805// Returns the ContentInfo at mline index `i`, or null if none exists.
Harald Alvestrand85466662021-04-19 21:21:36806const ContentInfo* GetContentByIndex(const SessionDescriptionInterface* sdesc,
807 size_t i) {
Harald Alvestrandc06e3742020-10-01 10:23:33808 if (!sdesc) {
809 return nullptr;
810 }
811 const ContentInfos& contents = sdesc->description()->contents();
812 return (i < contents.size() ? &contents[i] : nullptr);
813}
814
Artem Titov880fa812021-07-30 20:30:23815// From `rtc_options`, fill parts of `session_options` shared by all generated
Harald Alvestrandc06e3742020-10-01 10:23:33816// m= sectionss (in other words, nothing that involves a map/array).
817void ExtractSharedMediaSessionOptions(
818 const PeerConnectionInterface::RTCOfferAnswerOptions& rtc_options,
819 cricket::MediaSessionOptions* session_options) {
820 session_options->vad_enabled = rtc_options.voice_activity_detection;
821 session_options->bundle_enabled = rtc_options.use_rtp_mux;
822 session_options->raw_packetization_for_video =
823 rtc_options.raw_packetization_for_video;
824}
825
Harald Alvestrandbc9ca252020-10-05 13:08:41826// Generate a RTCP CNAME when a PeerConnection is created.
827std::string GenerateRtcpCname() {
828 std::string cname;
829 if (!rtc::CreateRandomString(kRtcpCnameLength, &cname)) {
830 RTC_LOG(LS_ERROR) << "Failed to generate CNAME.";
Artem Titovd3251962021-11-15 15:57:07831 RTC_DCHECK_NOTREACHED();
Harald Alvestrandbc9ca252020-10-05 13:08:41832 }
833 return cname;
834}
835
Artem Titov880fa812021-07-30 20:30:23836// Check if we can send `new_stream` on a PeerConnection.
Harald Alvestrand6f04b6532020-10-09 11:42:17837bool CanAddLocalMediaStream(webrtc::StreamCollectionInterface* current_streams,
838 webrtc::MediaStreamInterface* new_stream) {
839 if (!new_stream || !current_streams) {
840 return false;
841 }
842 if (current_streams->find(new_stream->id()) != nullptr) {
843 RTC_LOG(LS_ERROR) << "MediaStream with ID " << new_stream->id()
844 << " is already added.";
845 return false;
846 }
847 return true;
848}
849
Tomas Gunnarsson92eebef2021-02-10 12:05:44850rtc::scoped_refptr<webrtc::DtlsTransport> LookupDtlsTransportByMid(
851 rtc::Thread* network_thread,
852 JsepTransportController* controller,
853 const std::string& mid) {
854 // TODO(tommi): Can we post this (and associated operations where this
Danil Chapovalov9e09a1f2022-09-08 16:38:10855 // function is called) to the network thread and avoid this BlockingCall?
Tomas Gunnarsson92eebef2021-02-10 12:05:44856 // We might be able to simplify a few things if we set the transport on
857 // the network thread and then update the implementation to check that
858 // the set_ and relevant get methods are always called on the network
859 // thread (we'll need to update proxy maps).
Danil Chapovalov9e09a1f2022-09-08 16:38:10860 return network_thread->BlockingCall(
Tomas Gunnarsson92eebef2021-02-10 12:05:44861 [controller, &mid] { return controller->LookupDtlsTransportByMid(mid); });
862}
863
Henrik Boström4ea80f32021-06-09 08:29:50864bool ContentHasHeaderExtension(const cricket::ContentInfo& content_info,
865 absl::string_view header_extension_uri) {
866 for (const RtpExtension& rtp_header_extension :
867 content_info.media_description()->rtp_header_extensions()) {
868 if (rtp_header_extension.uri == header_extension_uri) {
869 return true;
870 }
871 }
872 return false;
873}
874
Harald Alvestrandcdcfab02020-09-28 13:02:07875} // namespace
876
Philipp Hancke49e55872023-03-30 11:51:39877void UpdateRtpHeaderExtensionPreferencesFromSdpMunging(
878 const cricket::SessionDescription* description,
879 TransceiverList* transceivers) {
880 // This integrates the RTP Header Extension Control API and local SDP munging
881 // for backward compability reasons. If something was enabled in the local
882 // description via SDP munging, consider it non-stopped in the API as well
883 // so that is shows up in subsequent offers/answers.
884 RTC_DCHECK(description);
885 RTC_DCHECK(transceivers);
886 for (const auto& content : description->contents()) {
887 auto transceiver = transceivers->FindByMid(content.name);
888 if (!transceiver) {
889 continue;
890 }
891 auto extension_capabilities = transceiver->GetHeaderExtensionsToNegotiate();
892 // Set the capability of every extension we see here to "sendrecv".
893 for (auto& ext : content.media_description()->rtp_header_extensions()) {
894 auto it = absl::c_find_if(extension_capabilities,
895 [&ext](const RtpHeaderExtensionCapability c) {
896 return ext.uri == c.uri;
897 });
898 if (it != extension_capabilities.end()) {
899 it->direction = RtpTransceiverDirection::kSendRecv;
900 }
901 }
902 transceiver->SetHeaderExtensionsToNegotiate(extension_capabilities);
903 }
904}
905
Tomas Gunnarsson1c7c09b2022-01-12 12:11:04906// This class stores state related to a SetRemoteDescription operation, captures
Philipp Hancke49e55872023-03-30 11:51:39907// and reports potential errors that might occur and makes sure to notify the
Tomas Gunnarsson1c7c09b2022-01-12 12:11:04908// observer of the operation and the operations chain of completion.
909class SdpOfferAnswerHandler::RemoteDescriptionOperation {
910 public:
911 RemoteDescriptionOperation(
912 SdpOfferAnswerHandler* handler,
913 std::unique_ptr<SessionDescriptionInterface> desc,
914 rtc::scoped_refptr<SetRemoteDescriptionObserverInterface> observer,
915 std::function<void()> operations_chain_callback)
916 : handler_(handler),
917 desc_(std::move(desc)),
918 observer_(std::move(observer)),
Tomas Gunnarsson0dd75392022-01-17 18:19:56919 operations_chain_callback_(std::move(operations_chain_callback)),
920 unified_plan_(handler_->IsUnifiedPlan()) {
Tomas Gunnarsson1c7c09b2022-01-12 12:11:04921 if (!desc_) {
Tomas Gunnarsson0dd75392022-01-17 18:19:56922 type_ = static_cast<SdpType>(-1);
Tomas Gunnarsson1c7c09b2022-01-12 12:11:04923 InvalidParam("SessionDescription is NULL.");
924 } else {
925 type_ = desc_->GetType();
926 }
927 }
928
929 ~RemoteDescriptionOperation() {
930 RTC_DCHECK_RUN_ON(handler_->signaling_thread());
931 SignalCompletion();
932 operations_chain_callback_();
933 }
934
935 bool ok() const { return error_.ok(); }
936
937 // Notifies the observer that the operation is complete and releases the
938 // reference to the observer.
939 void SignalCompletion() {
Tomas Gunnarsson0dd75392022-01-17 18:19:56940 if (!observer_)
941 return;
942
943 if (!error_.ok() && type_ != static_cast<SdpType>(-1)) {
944 std::string error_message =
945 GetSetDescriptionErrorMessage(cricket::CS_REMOTE, type_, error_);
946 RTC_LOG(LS_ERROR) << error_message;
Danil Chapovalova2d85e42023-03-20 16:37:22947 error_.set_message(error_message);
Tomas Gunnarsson1c7c09b2022-01-12 12:11:04948 }
Tomas Gunnarsson0dd75392022-01-17 18:19:56949
950 observer_->OnSetRemoteDescriptionComplete(error_);
951 observer_ = nullptr; // Only fire the notification once.
Tomas Gunnarsson1c7c09b2022-01-12 12:11:04952 }
953
954 // If a session error has occurred the PeerConnection is in a possibly
955 // inconsistent state so fail right away.
956 bool HaveSessionError() {
957 RTC_DCHECK(ok());
Tomas Gunnarsson0dd75392022-01-17 18:19:56958 if (handler_->session_error() != SessionError::kNone)
959 InternalError(handler_->GetSessionErrorMsg());
960 return !ok();
Tomas Gunnarsson1c7c09b2022-01-12 12:11:04961 }
962
963 // Returns true if the operation was a rollback operation. If this function
964 // returns true, the caller should consider the operation complete. Otherwise
965 // proceed to the next step.
966 bool MaybeRollback() {
967 RTC_DCHECK_RUN_ON(handler_->signaling_thread());
968 RTC_DCHECK(ok());
969 if (type_ != SdpType::kRollback) {
970 // Check if we can do an implicit rollback.
Tomas Gunnarsson0dd75392022-01-17 18:19:56971 if (type_ == SdpType::kOffer && unified_plan_ &&
Tomas Gunnarsson1c7c09b2022-01-12 12:11:04972 handler_->pc_->configuration()->enable_implicit_rollback &&
973 handler_->signaling_state() ==
974 PeerConnectionInterface::kHaveLocalOffer) {
975 handler_->Rollback(type_);
976 }
977 return false;
978 }
979
Tomas Gunnarsson0dd75392022-01-17 18:19:56980 if (unified_plan_) {
Tomas Gunnarsson1c7c09b2022-01-12 12:11:04981 error_ = handler_->Rollback(type_);
982 } else if (type_ == SdpType::kRollback) {
983 Unsupported("Rollback not supported in Plan B");
984 }
985
986 return true;
987 }
988
989 // Report to UMA the format of the received offer or answer.
990 void ReportOfferAnswerUma() {
991 RTC_DCHECK(ok());
992 if (type_ == SdpType::kOffer || type_ == SdpType::kAnswer) {
Tomas Gunnarsson1c7c09b2022-01-12 12:11:04993 handler_->pc_->ReportSdpBundleUsage(*desc_.get());
994 }
995 }
996
997 // Checks if the session description for the operation is valid. If not, the
998 // function captures error information and returns false. Note that if the
999 // return value is false, the operation should be considered done.
1000 bool IsDescriptionValid() {
1001 RTC_DCHECK_RUN_ON(handler_->signaling_thread());
1002 RTC_DCHECK(ok());
1003 RTC_DCHECK(bundle_groups_by_mid_.empty()) << "Already called?";
1004 bundle_groups_by_mid_ = GetBundleGroupsByMid(description());
1005 error_ = handler_->ValidateSessionDescription(
1006 desc_.get(), cricket::CS_REMOTE, bundle_groups_by_mid_);
Tomas Gunnarsson0dd75392022-01-17 18:19:561007 return ok();
Tomas Gunnarsson1c7c09b2022-01-12 12:11:041008 }
1009
Tomas Gunnarsson0dd75392022-01-17 18:19:561010 // Transfers ownership of the session description object over to `handler_`.
Philipp Hancke43df03d2023-05-02 09:28:101011 bool ReplaceRemoteDescriptionAndCheckError() {
Tomas Gunnarsson1c7c09b2022-01-12 12:11:041012 RTC_DCHECK_RUN_ON(handler_->signaling_thread());
1013 RTC_DCHECK(ok());
Tomas Gunnarsson0dd75392022-01-17 18:19:561014 RTC_DCHECK(desc_);
1015 RTC_DCHECK(!replaced_remote_description_);
1016#if RTC_DCHECK_IS_ON
1017 const auto* existing_remote_description = handler_->remote_description();
1018#endif
Tomas Gunnarsson1c7c09b2022-01-12 12:11:041019
Tomas Gunnarsson0dd75392022-01-17 18:19:561020 error_ = handler_->ReplaceRemoteDescription(std::move(desc_), type_,
1021 &replaced_remote_description_);
1022
1023 if (ok()) {
1024#if RTC_DCHECK_IS_ON
1025 // Sanity check that our `old_remote_description()` method always returns
1026 // the same value as `remote_description()` did before the call to
1027 // ReplaceRemoteDescription.
1028 RTC_DCHECK_EQ(existing_remote_description, old_remote_description());
1029#endif
1030 } else {
1031 SetAsSessionError();
Tomas Gunnarsson1c7c09b2022-01-12 12:11:041032 }
1033
Tomas Gunnarsson0dd75392022-01-17 18:19:561034 return ok();
1035 }
1036
1037 bool UpdateChannels() {
1038 RTC_DCHECK(ok());
1039 RTC_DCHECK(!desc_) << "ReplaceRemoteDescription hasn't been called";
1040
1041 const auto* remote_description = handler_->remote_description();
1042
1043 const cricket::SessionDescription* session_desc =
1044 remote_description->description();
1045
1046 // Transport and Media channels will be created only when offer is set.
1047 if (unified_plan_) {
1048 error_ = handler_->UpdateTransceiversAndDataChannels(
1049 cricket::CS_REMOTE, *remote_description,
1050 handler_->local_description(), old_remote_description(),
1051 bundle_groups_by_mid_);
1052 } else {
1053 // Media channels will be created only when offer is set. These may use
1054 // new transports just created by PushdownTransportDescription.
1055 if (type_ == SdpType::kOffer) {
1056 // TODO(mallinath) - Handle CreateChannel failure, as new local
1057 // description is applied. Restore back to old description.
1058 error_ = handler_->CreateChannels(*session_desc);
1059 }
1060 // Remove unused channels if MediaContentDescription is rejected.
1061 handler_->RemoveUnusedChannels(session_desc);
1062 }
1063
1064 return ok();
1065 }
1066
1067 bool UpdateSessionState() {
1068 RTC_DCHECK(ok());
1069 error_ = handler_->UpdateSessionState(
1070 type_, cricket::CS_REMOTE,
1071 handler_->remote_description()->description(), bundle_groups_by_mid_);
1072 if (!ok())
1073 SetAsSessionError();
1074 return ok();
1075 }
1076
1077 bool UseCandidatesInRemoteDescription() {
1078 RTC_DCHECK(ok());
1079 if (handler_->local_description() &&
1080 !handler_->UseCandidatesInRemoteDescription()) {
1081 InvalidParam(kInvalidCandidates);
1082 }
1083 return ok();
Tomas Gunnarsson1c7c09b2022-01-12 12:11:041084 }
1085
1086 // Convenience getter for desc_->GetType().
1087 SdpType type() const { return type_; }
Tomas Gunnarsson0dd75392022-01-17 18:19:561088 bool unified_plan() const { return unified_plan_; }
Tomas Gunnarsson1c7c09b2022-01-12 12:11:041089 cricket::SessionDescription* description() { return desc_->description(); }
1090
Tomas Gunnarsson0dd75392022-01-17 18:19:561091 const SessionDescriptionInterface* old_remote_description() const {
1092 RTC_DCHECK(!desc_) << "Called before replacing the remote description";
1093 if (type_ == SdpType::kAnswer)
1094 return replaced_remote_description_.get();
1095 return replaced_remote_description_
1096 ? replaced_remote_description_.get()
1097 : handler_->current_remote_description();
1098 }
1099
Tomas Gunnarsson1c7c09b2022-01-12 12:11:041100 // Returns a reference to a cached map of bundle groups ordered by mid.
1101 // Note that this will only be valid after a successful call to
1102 // `IsDescriptionValid`.
1103 const std::map<std::string, const cricket::ContentGroup*>&
1104 bundle_groups_by_mid() const {
1105 RTC_DCHECK(ok());
1106 return bundle_groups_by_mid_;
1107 }
1108
1109 private:
1110 // Convenience methods for populating the embedded `error_` object.
1111 void Unsupported(std::string message) {
1112 SetError(RTCErrorType::UNSUPPORTED_OPERATION, std::move(message));
1113 }
1114
1115 void InvalidParam(std::string message) {
1116 SetError(RTCErrorType::INVALID_PARAMETER, std::move(message));
1117 }
1118
Tomas Gunnarsson0dd75392022-01-17 18:19:561119 void InternalError(std::string message) {
1120 SetError(RTCErrorType::INTERNAL_ERROR, std::move(message));
1121 }
1122
Tomas Gunnarsson1c7c09b2022-01-12 12:11:041123 void SetError(RTCErrorType type, std::string message) {
1124 RTC_DCHECK(ok()) << "Overwriting an existing error?";
1125 error_ = RTCError(type, std::move(message));
1126 }
1127
Tomas Gunnarsson0dd75392022-01-17 18:19:561128 // Called when the PeerConnection could be in an inconsistent state and we set
1129 // the session error so that future calls to
1130 // SetLocalDescription/SetRemoteDescription fail.
1131 void SetAsSessionError() {
1132 RTC_DCHECK(!ok());
1133 handler_->SetSessionError(SessionError::kContent, error_.message());
1134 }
1135
Tomas Gunnarsson1c7c09b2022-01-12 12:11:041136 SdpOfferAnswerHandler* const handler_;
1137 std::unique_ptr<SessionDescriptionInterface> desc_;
Tomas Gunnarsson0dd75392022-01-17 18:19:561138 // Keeps the replaced session description object alive while the operation
1139 // is taking place since methods that depend on `old_remote_description()`
1140 // for updating the state, need it.
1141 std::unique_ptr<SessionDescriptionInterface> replaced_remote_description_;
Tomas Gunnarsson1c7c09b2022-01-12 12:11:041142 rtc::scoped_refptr<SetRemoteDescriptionObserverInterface> observer_;
1143 std::function<void()> operations_chain_callback_;
1144 RTCError error_ = RTCError::OK();
1145 std::map<std::string, const cricket::ContentGroup*> bundle_groups_by_mid_;
1146 SdpType type_;
Tomas Gunnarsson0dd75392022-01-17 18:19:561147 const bool unified_plan_;
Tomas Gunnarsson1c7c09b2022-01-12 12:11:041148};
Harald Alvestrandcdcfab02020-09-28 13:02:071149// Used by parameterless SetLocalDescription() to create an offer or answer.
1150// Upon completion of creating the session description, SetLocalDescription() is
1151// invoked with the result.
1152class SdpOfferAnswerHandler::ImplicitCreateSessionDescriptionObserver
1153 : public CreateSessionDescriptionObserver {
1154 public:
1155 ImplicitCreateSessionDescriptionObserver(
1156 rtc::WeakPtr<SdpOfferAnswerHandler> sdp_handler,
1157 rtc::scoped_refptr<SetLocalDescriptionObserverInterface>
1158 set_local_description_observer)
1159 : sdp_handler_(std::move(sdp_handler)),
1160 set_local_description_observer_(
1161 std::move(set_local_description_observer)) {}
1162 ~ImplicitCreateSessionDescriptionObserver() override {
1163 RTC_DCHECK(was_called_);
1164 }
1165
1166 void SetOperationCompleteCallback(
1167 std::function<void()> operation_complete_callback) {
1168 operation_complete_callback_ = std::move(operation_complete_callback);
1169 }
1170
1171 bool was_called() const { return was_called_; }
1172
1173 void OnSuccess(SessionDescriptionInterface* desc_ptr) override {
1174 RTC_DCHECK(!was_called_);
1175 std::unique_ptr<SessionDescriptionInterface> desc(desc_ptr);
1176 was_called_ = true;
1177
Artem Titov880fa812021-07-30 20:30:231178 // Abort early if `pc_` is no longer valid.
Harald Alvestrandcdcfab02020-09-28 13:02:071179 if (!sdp_handler_) {
1180 operation_complete_callback_();
1181 return;
1182 }
1183 // DoSetLocalDescription() is a synchronous operation that invokes
Artem Titov880fa812021-07-30 20:30:231184 // `set_local_description_observer_` with the result.
Harald Alvestrandcdcfab02020-09-28 13:02:071185 sdp_handler_->DoSetLocalDescription(
1186 std::move(desc), std::move(set_local_description_observer_));
1187 operation_complete_callback_();
1188 }
1189
1190 void OnFailure(RTCError error) override {
1191 RTC_DCHECK(!was_called_);
1192 was_called_ = true;
1193 set_local_description_observer_->OnSetLocalDescriptionComplete(RTCError(
1194 error.type(), std::string("SetLocalDescription failed to create "
1195 "session description - ") +
1196 error.message()));
1197 operation_complete_callback_();
1198 }
1199
1200 private:
1201 bool was_called_ = false;
1202 rtc::WeakPtr<SdpOfferAnswerHandler> sdp_handler_;
1203 rtc::scoped_refptr<SetLocalDescriptionObserverInterface>
1204 set_local_description_observer_;
1205 std::function<void()> operation_complete_callback_;
1206};
1207
1208// Wraps a CreateSessionDescriptionObserver and an OperationsChain operation
1209// complete callback. When the observer is invoked, the wrapped observer is
1210// invoked followed by invoking the completion callback.
1211class CreateSessionDescriptionObserverOperationWrapper
1212 : public CreateSessionDescriptionObserver {
1213 public:
1214 CreateSessionDescriptionObserverOperationWrapper(
1215 rtc::scoped_refptr<CreateSessionDescriptionObserver> observer,
1216 std::function<void()> operation_complete_callback)
1217 : observer_(std::move(observer)),
1218 operation_complete_callback_(std::move(operation_complete_callback)) {
1219 RTC_DCHECK(observer_);
1220 }
1221 ~CreateSessionDescriptionObserverOperationWrapper() override {
Tomas Gunnarsson36992362020-10-05 19:41:361222#if RTC_DCHECK_IS_ON
Harald Alvestrandcdcfab02020-09-28 13:02:071223 RTC_DCHECK(was_called_);
Tomas Gunnarsson36992362020-10-05 19:41:361224#endif
Harald Alvestrandcdcfab02020-09-28 13:02:071225 }
1226
1227 void OnSuccess(SessionDescriptionInterface* desc) override {
Tomas Gunnarsson36992362020-10-05 19:41:361228#if RTC_DCHECK_IS_ON
Harald Alvestrandcdcfab02020-09-28 13:02:071229 RTC_DCHECK(!was_called_);
Harald Alvestrandcdcfab02020-09-28 13:02:071230 was_called_ = true;
1231#endif // RTC_DCHECK_IS_ON
1232 // Completing the operation before invoking the observer allows the observer
1233 // to execute SetLocalDescription() without delay.
1234 operation_complete_callback_();
1235 observer_->OnSuccess(desc);
1236 }
1237
1238 void OnFailure(RTCError error) override {
Tomas Gunnarsson36992362020-10-05 19:41:361239#if RTC_DCHECK_IS_ON
Harald Alvestrandcdcfab02020-09-28 13:02:071240 RTC_DCHECK(!was_called_);
Harald Alvestrandcdcfab02020-09-28 13:02:071241 was_called_ = true;
1242#endif // RTC_DCHECK_IS_ON
1243 operation_complete_callback_();
1244 observer_->OnFailure(std::move(error));
1245 }
1246
1247 private:
Tomas Gunnarsson36992362020-10-05 19:41:361248#if RTC_DCHECK_IS_ON
Harald Alvestrandcdcfab02020-09-28 13:02:071249 bool was_called_ = false;
1250#endif // RTC_DCHECK_IS_ON
1251 rtc::scoped_refptr<CreateSessionDescriptionObserver> observer_;
1252 std::function<void()> operation_complete_callback_;
1253};
1254
1255// Wrapper for SetSessionDescriptionObserver that invokes the success or failure
1256// callback in a posted message handled by the peer connection. This introduces
1257// a delay that prevents recursive API calls by the observer, but this also
1258// means that the PeerConnection can be modified before the observer sees the
1259// result of the operation. This is ill-advised for synchronizing states.
1260//
1261// Implements both the SetLocalDescriptionObserverInterface and the
1262// SetRemoteDescriptionObserverInterface.
1263class SdpOfferAnswerHandler::SetSessionDescriptionObserverAdapter
1264 : public SetLocalDescriptionObserverInterface,
1265 public SetRemoteDescriptionObserverInterface {
1266 public:
1267 SetSessionDescriptionObserverAdapter(
1268 rtc::WeakPtr<SdpOfferAnswerHandler> handler,
1269 rtc::scoped_refptr<SetSessionDescriptionObserver> inner_observer)
1270 : handler_(std::move(handler)),
1271 inner_observer_(std::move(inner_observer)) {}
1272
1273 // SetLocalDescriptionObserverInterface implementation.
1274 void OnSetLocalDescriptionComplete(RTCError error) override {
1275 OnSetDescriptionComplete(std::move(error));
1276 }
1277 // SetRemoteDescriptionObserverInterface implementation.
1278 void OnSetRemoteDescriptionComplete(RTCError error) override {
1279 OnSetDescriptionComplete(std::move(error));
1280 }
1281
1282 private:
1283 void OnSetDescriptionComplete(RTCError error) {
1284 if (!handler_)
1285 return;
1286 if (error.ok()) {
Harald Alvestrand1090e442020-10-05 07:01:091287 handler_->pc_->message_handler()->PostSetSessionDescriptionSuccess(
Niels Möllerafb246b2022-04-20 12:26:501288 inner_observer_.get());
Harald Alvestrandcdcfab02020-09-28 13:02:071289 } else {
Harald Alvestrand1090e442020-10-05 07:01:091290 handler_->pc_->message_handler()->PostSetSessionDescriptionFailure(
Niels Möllerafb246b2022-04-20 12:26:501291 inner_observer_.get(), std::move(error));
Harald Alvestrandcdcfab02020-09-28 13:02:071292 }
1293 }
1294
1295 rtc::WeakPtr<SdpOfferAnswerHandler> handler_;
1296 rtc::scoped_refptr<SetSessionDescriptionObserver> inner_observer_;
1297};
1298
1299class SdpOfferAnswerHandler::LocalIceCredentialsToReplace {
1300 public:
1301 // Sets the ICE credentials that need restarting to the ICE credentials of
1302 // the current and pending descriptions.
1303 void SetIceCredentialsFromLocalDescriptions(
1304 const SessionDescriptionInterface* current_local_description,
1305 const SessionDescriptionInterface* pending_local_description) {
1306 ice_credentials_.clear();
1307 if (current_local_description) {
1308 AppendIceCredentialsFromSessionDescription(*current_local_description);
1309 }
1310 if (pending_local_description) {
1311 AppendIceCredentialsFromSessionDescription(*pending_local_description);
1312 }
1313 }
1314
1315 void ClearIceCredentials() { ice_credentials_.clear(); }
1316
1317 // Returns true if we have ICE credentials that need restarting.
1318 bool HasIceCredentials() const { return !ice_credentials_.empty(); }
1319
Artem Titov880fa812021-07-30 20:30:231320 // Returns true if `local_description` shares no ICE credentials with the
Harald Alvestrandcdcfab02020-09-28 13:02:071321 // ICE credentials that need restarting.
1322 bool SatisfiesIceRestart(
1323 const SessionDescriptionInterface& local_description) const {
1324 for (const auto& transport_info :
1325 local_description.description()->transport_infos()) {
1326 if (ice_credentials_.find(std::make_pair(
1327 transport_info.description.ice_ufrag,
1328 transport_info.description.ice_pwd)) != ice_credentials_.end()) {
1329 return false;
1330 }
1331 }
1332 return true;
1333 }
1334
1335 private:
1336 void AppendIceCredentialsFromSessionDescription(
1337 const SessionDescriptionInterface& desc) {
1338 for (const auto& transport_info : desc.description()->transport_infos()) {
1339 ice_credentials_.insert(
1340 std::make_pair(transport_info.description.ice_ufrag,
1341 transport_info.description.ice_pwd));
1342 }
1343 }
1344
1345 std::set<std::pair<std::string, std::string>> ice_credentials_;
1346};
1347
Harald Alvestrand66c40362022-01-28 17:41:301348SdpOfferAnswerHandler::SdpOfferAnswerHandler(PeerConnectionSdpMethods* pc,
1349 ConnectionContext* context)
Harald Alvestrandcdcfab02020-09-28 13:02:071350 : pc_(pc),
Harald Alvestrand66c40362022-01-28 17:41:301351 context_(context),
Harald Alvestrand6f04b6532020-10-09 11:42:171352 local_streams_(StreamCollection::Create()),
1353 remote_streams_(StreamCollection::Create()),
Harald Alvestrandcdcfab02020-09-28 13:02:071354 operations_chain_(rtc::OperationsChain::Create()),
Harald Alvestrandbc9ca252020-10-05 13:08:411355 rtcp_cname_(GenerateRtcpCname()),
Harald Alvestrandcdcfab02020-09-28 13:02:071356 local_ice_credentials_to_replace_(new LocalIceCredentialsToReplace()),
1357 weak_ptr_factory_(this) {
1358 operations_chain_->SetOnChainEmptyCallback(
1359 [this_weak_ptr = weak_ptr_factory_.GetWeakPtr()]() {
1360 if (!this_weak_ptr)
1361 return;
1362 this_weak_ptr->OnOperationsChainEmpty();
1363 });
1364}
1365
1366SdpOfferAnswerHandler::~SdpOfferAnswerHandler() {}
1367
Harald Alvestrand9cd199d2020-10-27 07:10:431368// Static
1369std::unique_ptr<SdpOfferAnswerHandler> SdpOfferAnswerHandler::Create(
Harald Alvestrand5b661302022-01-28 13:08:341370 PeerConnectionSdpMethods* pc,
Harald Alvestrand9cd199d2020-10-27 07:10:431371 const PeerConnectionInterface::RTCConfiguration& configuration,
Harald Alvestrand66c40362022-01-28 17:41:301372 PeerConnectionDependencies& dependencies,
1373 ConnectionContext* context) {
1374 auto handler = absl::WrapUnique(new SdpOfferAnswerHandler(pc, context));
Jonas Orelanded99dae2022-03-09 08:28:101375 handler->Initialize(configuration, dependencies, context);
Harald Alvestrand9cd199d2020-10-27 07:10:431376 return handler;
1377}
1378
Harald Alvestrand763f5a92020-10-22 10:39:401379void SdpOfferAnswerHandler::Initialize(
1380 const PeerConnectionInterface::RTCConfiguration& configuration,
Jonas Orelanded99dae2022-03-09 08:28:101381 PeerConnectionDependencies& dependencies,
1382 ConnectionContext* context) {
Harald Alvestrand763f5a92020-10-22 10:39:401383 RTC_DCHECK_RUN_ON(signaling_thread());
Henrik Boström6344bf12022-05-10 07:34:271384 // 100 kbps is used by default, but can be overriden by a non-standard
1385 // RTCConfiguration value (not available on Web).
Harald Alvestrand763f5a92020-10-22 10:39:401386 video_options_.screencast_min_bitrate_kbps =
Henrik Boström6344bf12022-05-10 07:34:271387 configuration.screencast_min_bitrate.value_or(100);
Harald Alvestrand763f5a92020-10-22 10:39:401388
1389 audio_options_.audio_jitter_buffer_max_packets =
1390 configuration.audio_jitter_buffer_max_packets;
1391
1392 audio_options_.audio_jitter_buffer_fast_accelerate =
1393 configuration.audio_jitter_buffer_fast_accelerate;
1394
1395 audio_options_.audio_jitter_buffer_min_delay_ms =
1396 configuration.audio_jitter_buffer_min_delay_ms;
1397
Harald Alvestrand763f5a92020-10-22 10:39:401398 // Obtain a certificate from RTCConfiguration if any were provided (optional).
1399 rtc::scoped_refptr<rtc::RTCCertificate> certificate;
1400 if (!configuration.certificates.empty()) {
1401 // TODO(hbos,torbjorng): Decide on certificate-selection strategy instead of
1402 // just picking the first one. The decision should be made based on the DTLS
1403 // handshake. The DTLS negotiations need to know about all certificates.
1404 certificate = configuration.certificates[0];
1405 }
1406
1407 webrtc_session_desc_factory_ =
1408 std::make_unique<WebRtcSessionDescriptionFactory>(
Jonas Orelanded99dae2022-03-09 08:28:101409 context, this, pc_->session_id(), pc_->dtls_enabled(),
Danil Chapovalovb7da8162022-08-22 14:39:341410 std::move(dependencies.cert_generator), std::move(certificate),
Harald Alvestranda0947872020-11-09 14:15:001411 [this](const rtc::scoped_refptr<rtc::RTCCertificate>& certificate) {
Harald Alvestrandbc32c562022-02-09 12:08:471412 RTC_DCHECK_RUN_ON(signaling_thread());
1413 transport_controller_s()->SetLocalCertificate(certificate);
Jonas Oreland6c7f9842022-04-19 15:24:101414 },
1415 pc_->trials());
Harald Alvestrand763f5a92020-10-22 10:39:401416
Harald Alvestrand0d018412021-11-04 13:52:311417 if (pc_->options()->disable_encryption) {
1418 webrtc_session_desc_factory_->SetSdesPolicy(cricket::SEC_DISABLED);
1419 }
1420
Harald Alvestrand763f5a92020-10-22 10:39:401421 webrtc_session_desc_factory_->set_enable_encrypted_rtp_header_extensions(
1422 pc_->GetCryptoOptions().srtp.enable_encrypted_rtp_header_extensions);
1423 webrtc_session_desc_factory_->set_is_unified_plan(IsUnifiedPlan());
1424
Harald Alvestrand9cd199d2020-10-27 07:10:431425 if (dependencies.video_bitrate_allocator_factory) {
Harald Alvestrand763f5a92020-10-22 10:39:401426 video_bitrate_allocator_factory_ =
Harald Alvestrand9cd199d2020-10-27 07:10:431427 std::move(dependencies.video_bitrate_allocator_factory);
Harald Alvestrand763f5a92020-10-22 10:39:401428 } else {
1429 video_bitrate_allocator_factory_ =
1430 CreateBuiltinVideoBitrateAllocatorFactory();
1431 }
1432}
1433
Harald Alvestrandbc9ca252020-10-05 13:08:411434// ==================================================================
Artem Titovc6c02ef2022-05-09 08:30:091435// Access to pc_ variables
Harald Alvestrand35f4b4c2022-05-16 10:36:431436cricket::MediaEngineInterface* SdpOfferAnswerHandler::media_engine() const {
1437 RTC_DCHECK(context_);
Harald Alvestrandc3fa7c32022-05-22 10:57:011438 return context_->media_engine();
Harald Alvestrand35f4b4c2022-05-16 10:36:431439}
1440
Harald Alvestrande15fb152020-10-19 13:28:051441TransceiverList* SdpOfferAnswerHandler::transceivers() {
1442 if (!pc_->rtp_manager()) {
1443 return nullptr;
1444 }
1445 return pc_->rtp_manager()->transceivers();
Harald Alvestrandbc9ca252020-10-05 13:08:411446}
Harald Alvestrand35f4b4c2022-05-16 10:36:431447
Harald Alvestrande15fb152020-10-19 13:28:051448const TransceiverList* SdpOfferAnswerHandler::transceivers() const {
1449 if (!pc_->rtp_manager()) {
1450 return nullptr;
1451 }
1452 return pc_->rtp_manager()->transceivers();
Harald Alvestrandbc9ca252020-10-05 13:08:411453}
Harald Alvestrandbc32c562022-02-09 12:08:471454JsepTransportController* SdpOfferAnswerHandler::transport_controller_s() {
1455 return pc_->transport_controller_s();
Harald Alvestrandbc9ca252020-10-05 13:08:411456}
Harald Alvestrandbc32c562022-02-09 12:08:471457JsepTransportController* SdpOfferAnswerHandler::transport_controller_n() {
1458 return pc_->transport_controller_n();
1459}
1460const JsepTransportController* SdpOfferAnswerHandler::transport_controller_s()
Harald Alvestrandf01bd6c2020-10-23 13:30:461461 const {
Harald Alvestrandbc32c562022-02-09 12:08:471462 return pc_->transport_controller_s();
1463}
1464const JsepTransportController* SdpOfferAnswerHandler::transport_controller_n()
1465 const {
1466 return pc_->transport_controller_n();
Harald Alvestrandf01bd6c2020-10-23 13:30:461467}
Harald Alvestrandbc9ca252020-10-05 13:08:411468DataChannelController* SdpOfferAnswerHandler::data_channel_controller() {
Harald Alvestrand653429c2020-10-19 16:05:201469 return pc_->data_channel_controller();
Harald Alvestrandbc9ca252020-10-05 13:08:411470}
1471const DataChannelController* SdpOfferAnswerHandler::data_channel_controller()
1472 const {
Harald Alvestrand653429c2020-10-19 16:05:201473 return pc_->data_channel_controller();
Harald Alvestrandbc9ca252020-10-05 13:08:411474}
1475cricket::PortAllocator* SdpOfferAnswerHandler::port_allocator() {
Harald Alvestrand653429c2020-10-19 16:05:201476 return pc_->port_allocator();
Harald Alvestrandbc9ca252020-10-05 13:08:411477}
1478const cricket::PortAllocator* SdpOfferAnswerHandler::port_allocator() const {
Harald Alvestrand653429c2020-10-19 16:05:201479 return pc_->port_allocator();
Harald Alvestrandbc9ca252020-10-05 13:08:411480}
Harald Alvestrande15fb152020-10-19 13:28:051481RtpTransmissionManager* SdpOfferAnswerHandler::rtp_manager() {
1482 return pc_->rtp_manager();
1483}
1484const RtpTransmissionManager* SdpOfferAnswerHandler::rtp_manager() const {
1485 return pc_->rtp_manager();
1486}
Harald Alvestrandbc9ca252020-10-05 13:08:411487
1488// ===================================================================
1489
Harald Alvestrandcdcfab02020-09-28 13:02:071490void SdpOfferAnswerHandler::PrepareForShutdown() {
1491 RTC_DCHECK_RUN_ON(signaling_thread());
1492 weak_ptr_factory_.InvalidateWeakPtrs();
1493}
1494
1495void SdpOfferAnswerHandler::Close() {
1496 ChangeSignalingState(PeerConnectionInterface::kClosed);
1497}
1498
1499void SdpOfferAnswerHandler::RestartIce() {
1500 RTC_DCHECK_RUN_ON(signaling_thread());
1501 local_ice_credentials_to_replace_->SetIceCredentialsFromLocalDescriptions(
1502 current_local_description(), pending_local_description());
1503 UpdateNegotiationNeeded();
1504}
1505
1506rtc::Thread* SdpOfferAnswerHandler::signaling_thread() const {
Harald Alvestrand66c40362022-01-28 17:41:301507 return context_->signaling_thread();
Harald Alvestrandcdcfab02020-09-28 13:02:071508}
1509
Harald Alvestrandbc32c562022-02-09 12:08:471510rtc::Thread* SdpOfferAnswerHandler::network_thread() const {
1511 return context_->network_thread();
1512}
1513
Harald Alvestrandcdcfab02020-09-28 13:02:071514void SdpOfferAnswerHandler::CreateOffer(
1515 CreateSessionDescriptionObserver* observer,
1516 const PeerConnectionInterface::RTCOfferAnswerOptions& options) {
1517 RTC_DCHECK_RUN_ON(signaling_thread());
1518 // Chain this operation. If asynchronous operations are pending on the chain,
1519 // this operation will be queued to be invoked, otherwise the contents of the
1520 // lambda will execute immediately.
1521 operations_chain_->ChainOperation(
1522 [this_weak_ptr = weak_ptr_factory_.GetWeakPtr(),
1523 observer_refptr =
1524 rtc::scoped_refptr<CreateSessionDescriptionObserver>(observer),
1525 options](std::function<void()> operations_chain_callback) {
Artem Titov880fa812021-07-30 20:30:231526 // Abort early if `this_weak_ptr` is no longer valid.
Harald Alvestrandcdcfab02020-09-28 13:02:071527 if (!this_weak_ptr) {
1528 observer_refptr->OnFailure(
1529 RTCError(RTCErrorType::INTERNAL_ERROR,
1530 "CreateOffer failed because the session was shut down"));
1531 operations_chain_callback();
1532 return;
1533 }
1534 // The operation completes asynchronously when the wrapper is invoked.
Niels Möllerb7aac6f52021-08-23 13:48:061535 auto observer_wrapper = rtc::make_ref_counted<
1536 CreateSessionDescriptionObserverOperationWrapper>(
1537 std::move(observer_refptr), std::move(operations_chain_callback));
Harald Alvestrandcdcfab02020-09-28 13:02:071538 this_weak_ptr->DoCreateOffer(options, observer_wrapper);
1539 });
1540}
1541
1542void SdpOfferAnswerHandler::SetLocalDescription(
1543 SetSessionDescriptionObserver* observer,
1544 SessionDescriptionInterface* desc_ptr) {
1545 RTC_DCHECK_RUN_ON(signaling_thread());
1546 // Chain this operation. If asynchronous operations are pending on the chain,
1547 // this operation will be queued to be invoked, otherwise the contents of the
1548 // lambda will execute immediately.
1549 operations_chain_->ChainOperation(
1550 [this_weak_ptr = weak_ptr_factory_.GetWeakPtr(),
1551 observer_refptr =
1552 rtc::scoped_refptr<SetSessionDescriptionObserver>(observer),
1553 desc = std::unique_ptr<SessionDescriptionInterface>(desc_ptr)](
1554 std::function<void()> operations_chain_callback) mutable {
Artem Titov880fa812021-07-30 20:30:231555 // Abort early if `this_weak_ptr` is no longer valid.
Harald Alvestrandcdcfab02020-09-28 13:02:071556 if (!this_weak_ptr) {
1557 // For consistency with SetSessionDescriptionObserverAdapter whose
1558 // posted messages doesn't get processed when the PC is destroyed, we
Artem Titov880fa812021-07-30 20:30:231559 // do not inform `observer_refptr` that the operation failed.
Harald Alvestrandcdcfab02020-09-28 13:02:071560 operations_chain_callback();
1561 return;
1562 }
1563 // SetSessionDescriptionObserverAdapter takes care of making sure the
Artem Titov880fa812021-07-30 20:30:231564 // `observer_refptr` is invoked in a posted message.
Harald Alvestrandcdcfab02020-09-28 13:02:071565 this_weak_ptr->DoSetLocalDescription(
1566 std::move(desc),
Niels Möllerb7aac6f52021-08-23 13:48:061567 rtc::make_ref_counted<SetSessionDescriptionObserverAdapter>(
1568 this_weak_ptr, observer_refptr));
Harald Alvestrandcdcfab02020-09-28 13:02:071569 // For backwards-compatability reasons, we declare the operation as
1570 // completed here (rather than in a post), so that the operation chain
1571 // is not blocked by this operation when the observer is invoked. This
1572 // allows the observer to trigger subsequent offer/answer operations
1573 // synchronously if the operation chain is now empty.
1574 operations_chain_callback();
1575 });
1576}
1577
1578void SdpOfferAnswerHandler::SetLocalDescription(
1579 std::unique_ptr<SessionDescriptionInterface> desc,
1580 rtc::scoped_refptr<SetLocalDescriptionObserverInterface> observer) {
1581 RTC_DCHECK_RUN_ON(signaling_thread());
1582 // Chain this operation. If asynchronous operations are pending on the chain,
1583 // this operation will be queued to be invoked, otherwise the contents of the
1584 // lambda will execute immediately.
1585 operations_chain_->ChainOperation(
1586 [this_weak_ptr = weak_ptr_factory_.GetWeakPtr(), observer,
1587 desc = std::move(desc)](
1588 std::function<void()> operations_chain_callback) mutable {
Artem Titov880fa812021-07-30 20:30:231589 // Abort early if `this_weak_ptr` is no longer valid.
Harald Alvestrandcdcfab02020-09-28 13:02:071590 if (!this_weak_ptr) {
1591 observer->OnSetLocalDescriptionComplete(RTCError(
1592 RTCErrorType::INTERNAL_ERROR,
1593 "SetLocalDescription failed because the session was shut down"));
1594 operations_chain_callback();
1595 return;
1596 }
1597 this_weak_ptr->DoSetLocalDescription(std::move(desc), observer);
1598 // DoSetLocalDescription() is implemented as a synchronous operation.
Artem Titov880fa812021-07-30 20:30:231599 // The `observer` will already have been informed that it completed, and
Harald Alvestrandcdcfab02020-09-28 13:02:071600 // we can mark this operation as complete without any loose ends.
1601 operations_chain_callback();
1602 });
1603}
1604
1605void SdpOfferAnswerHandler::SetLocalDescription(
1606 SetSessionDescriptionObserver* observer) {
1607 RTC_DCHECK_RUN_ON(signaling_thread());
1608 SetLocalDescription(
Niels Möllerb7aac6f52021-08-23 13:48:061609 rtc::make_ref_counted<SetSessionDescriptionObserverAdapter>(
Niels Möllere7cc8832022-01-04 14:20:031610 weak_ptr_factory_.GetWeakPtr(),
1611 rtc::scoped_refptr<SetSessionDescriptionObserver>(observer)));
Harald Alvestrandcdcfab02020-09-28 13:02:071612}
1613
1614void SdpOfferAnswerHandler::SetLocalDescription(
1615 rtc::scoped_refptr<SetLocalDescriptionObserverInterface> observer) {
1616 RTC_DCHECK_RUN_ON(signaling_thread());
Artem Titov880fa812021-07-30 20:30:231617 // The `create_sdp_observer` handles performing DoSetLocalDescription() with
Harald Alvestrandcdcfab02020-09-28 13:02:071618 // the resulting description as well as completing the operation.
Niels Möllerb7aac6f52021-08-23 13:48:061619 auto create_sdp_observer =
1620 rtc::make_ref_counted<ImplicitCreateSessionDescriptionObserver>(
1621 weak_ptr_factory_.GetWeakPtr(), observer);
Harald Alvestrandcdcfab02020-09-28 13:02:071622 // Chain this operation. If asynchronous operations are pending on the chain,
1623 // this operation will be queued to be invoked, otherwise the contents of the
1624 // lambda will execute immediately.
1625 operations_chain_->ChainOperation(
1626 [this_weak_ptr = weak_ptr_factory_.GetWeakPtr(),
1627 create_sdp_observer](std::function<void()> operations_chain_callback) {
Artem Titov880fa812021-07-30 20:30:231628 // The `create_sdp_observer` is responsible for completing the
Harald Alvestrandcdcfab02020-09-28 13:02:071629 // operation.
1630 create_sdp_observer->SetOperationCompleteCallback(
1631 std::move(operations_chain_callback));
Artem Titov880fa812021-07-30 20:30:231632 // Abort early if `this_weak_ptr` is no longer valid. This triggers the
Harald Alvestrandcdcfab02020-09-28 13:02:071633 // same code path as if DoCreateOffer() or DoCreateAnswer() failed.
1634 if (!this_weak_ptr) {
1635 create_sdp_observer->OnFailure(RTCError(
1636 RTCErrorType::INTERNAL_ERROR,
1637 "SetLocalDescription failed because the session was shut down"));
1638 return;
1639 }
1640 switch (this_weak_ptr->signaling_state()) {
1641 case PeerConnectionInterface::kStable:
1642 case PeerConnectionInterface::kHaveLocalOffer:
1643 case PeerConnectionInterface::kHaveRemotePrAnswer:
1644 // TODO(hbos): If [LastCreatedOffer] exists and still represents the
1645 // current state of the system, use that instead of creating another
1646 // offer.
1647 this_weak_ptr->DoCreateOffer(
1648 PeerConnectionInterface::RTCOfferAnswerOptions(),
1649 create_sdp_observer);
1650 break;
1651 case PeerConnectionInterface::kHaveLocalPrAnswer:
1652 case PeerConnectionInterface::kHaveRemoteOffer:
1653 // TODO(hbos): If [LastCreatedAnswer] exists and still represents
1654 // the current state of the system, use that instead of creating
1655 // another answer.
1656 this_weak_ptr->DoCreateAnswer(
1657 PeerConnectionInterface::RTCOfferAnswerOptions(),
1658 create_sdp_observer);
1659 break;
1660 case PeerConnectionInterface::kClosed:
1661 create_sdp_observer->OnFailure(RTCError(
1662 RTCErrorType::INVALID_STATE,
1663 "SetLocalDescription called when PeerConnection is closed."));
1664 break;
1665 }
1666 });
1667}
1668
1669RTCError SdpOfferAnswerHandler::ApplyLocalDescription(
Henrik Boströmf8187e02021-04-26 19:04:261670 std::unique_ptr<SessionDescriptionInterface> desc,
1671 const std::map<std::string, const cricket::ContentGroup*>&
1672 bundle_groups_by_mid) {
Markus Handell518669d2021-06-07 11:30:461673 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::ApplyLocalDescription");
Harald Alvestrandcdcfab02020-09-28 13:02:071674 RTC_DCHECK_RUN_ON(signaling_thread());
1675 RTC_DCHECK(desc);
1676
Philipp Hancke7baa63f2022-09-01 13:39:501677 // Invalidate the stats caches to make sure that they get
1678 // updated the next time getStats() gets called, as updating the session
1679 // description affects the stats.
1680 pc_->ClearStatsCache();
Harald Alvestrandcdcfab02020-09-28 13:02:071681
1682 // Take a reference to the old local description since it's used below to
1683 // compare against the new local description. When setting the new local
1684 // description, grab ownership of the replaced session description in case it
Artem Titov880fa812021-07-30 20:30:231685 // is the same as `old_local_description`, to keep it alive for the duration
Harald Alvestrandcdcfab02020-09-28 13:02:071686 // of the method.
1687 const SessionDescriptionInterface* old_local_description =
1688 local_description();
1689 std::unique_ptr<SessionDescriptionInterface> replaced_local_description;
1690 SdpType type = desc->GetType();
1691 if (type == SdpType::kAnswer) {
1692 replaced_local_description = pending_local_description_
1693 ? std::move(pending_local_description_)
1694 : std::move(current_local_description_);
1695 current_local_description_ = std::move(desc);
1696 pending_local_description_ = nullptr;
1697 current_remote_description_ = std::move(pending_remote_description_);
1698 } else {
1699 replaced_local_description = std::move(pending_local_description_);
1700 pending_local_description_ = std::move(desc);
1701 }
Harald Alvestrandbc32c562022-02-09 12:08:471702 if (!initial_offerer_) {
1703 initial_offerer_.emplace(type == SdpType::kOffer);
1704 }
Harald Alvestrandcdcfab02020-09-28 13:02:071705 // The session description to apply now must be accessed by
Artem Titov880fa812021-07-30 20:30:231706 // `local_description()`.
Harald Alvestrandcdcfab02020-09-28 13:02:071707 RTC_DCHECK(local_description());
1708
Harald Alvestrandcdcfab02020-09-28 13:02:071709 if (!is_caller_) {
1710 if (remote_description()) {
1711 // Remote description was applied first, so this PC is the callee.
1712 is_caller_ = false;
1713 } else {
1714 // Local description is applied first, so this PC is the caller.
1715 is_caller_ = true;
1716 }
1717 }
1718
Harald Alvestranda474fbf2020-10-01 16:47:231719 RTCError error = PushdownTransportDescription(cricket::CS_LOCAL, type);
Harald Alvestrandcdcfab02020-09-28 13:02:071720 if (!error.ok()) {
1721 return error;
1722 }
1723
1724 if (IsUnifiedPlan()) {
Tomas Gunnarsson0dd75392022-01-17 18:19:561725 error = UpdateTransceiversAndDataChannels(
Harald Alvestrandcdcfab02020-09-28 13:02:071726 cricket::CS_LOCAL, *local_description(), old_local_description,
Henrik Boströmf8187e02021-04-26 19:04:261727 remote_description(), bundle_groups_by_mid);
Harald Alvestrandcdcfab02020-09-28 13:02:071728 if (!error.ok()) {
Tomas Gunnarsson0dd75392022-01-17 18:19:561729 RTC_LOG(LS_ERROR) << error.message() << " (" << SdpTypeToString(type)
1730 << ")";
Harald Alvestrandcdcfab02020-09-28 13:02:071731 return error;
1732 }
Harald Alvestrand8101e7b2022-05-23 14:57:471733 if (ConfiguredForMedia()) {
1734 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>> remove_list;
1735 std::vector<rtc::scoped_refptr<MediaStreamInterface>> removed_streams;
1736 for (const auto& transceiver_ext : transceivers()->List()) {
1737 auto transceiver = transceiver_ext->internal();
1738 if (transceiver->stopped()) {
1739 continue;
Harald Alvestrandc48ad732022-05-06 15:15:341740 }
Harald Alvestrand8101e7b2022-05-23 14:57:471741
1742 // 2.2.7.1.1.(6-9): Set sender and receiver's transport slots.
1743 // Note that code paths that don't set MID won't be able to use
1744 // information about DTLS transports.
1745 if (transceiver->mid()) {
1746 auto dtls_transport = LookupDtlsTransportByMid(
1747 context_->network_thread(), transport_controller_s(),
1748 *transceiver->mid());
1749 transceiver->sender_internal()->set_transport(dtls_transport);
1750 transceiver->receiver_internal()->set_transport(dtls_transport);
1751 }
1752
1753 const ContentInfo* content =
1754 FindMediaSectionForTransceiver(transceiver, local_description());
1755 if (!content) {
1756 continue;
1757 }
1758 const MediaContentDescription* media_desc =
1759 content->media_description();
1760 // 2.2.7.1.6: If description is of type "answer" or "pranswer", then run
1761 // the following steps:
1762 if (type == SdpType::kPrAnswer || type == SdpType::kAnswer) {
1763 // 2.2.7.1.6.1: If direction is "sendonly" or "inactive", and
1764 // transceiver's [[FiredDirection]] slot is either "sendrecv" or
1765 // "recvonly", process the removal of a remote track for the media
1766 // description, given transceiver, removeList, and muteTracks.
1767 if (!RtpTransceiverDirectionHasRecv(media_desc->direction()) &&
1768 (transceiver->fired_direction() &&
1769 RtpTransceiverDirectionHasRecv(
1770 *transceiver->fired_direction()))) {
1771 ProcessRemovalOfRemoteTrack(transceiver_ext, &remove_list,
1772 &removed_streams);
1773 }
1774 // 2.2.7.1.6.2: Set transceiver's [[CurrentDirection]] and
1775 // [[FiredDirection]] slots to direction.
1776 transceiver->set_current_direction(media_desc->direction());
1777 transceiver->set_fired_direction(media_desc->direction());
1778 }
Harald Alvestrandcdcfab02020-09-28 13:02:071779 }
Harald Alvestrand8101e7b2022-05-23 14:57:471780 auto observer = pc_->Observer();
1781 for (const auto& transceiver : remove_list) {
1782 observer->OnRemoveTrack(transceiver->receiver());
1783 }
1784 for (const auto& stream : removed_streams) {
1785 observer->OnRemoveStream(stream);
1786 }
Harald Alvestrandcdcfab02020-09-28 13:02:071787 }
1788 } else {
1789 // Media channels will be created only when offer is set. These may use new
1790 // transports just created by PushdownTransportDescription.
1791 if (type == SdpType::kOffer) {
1792 // TODO(bugs.webrtc.org/4676) - Handle CreateChannel failure, as new local
1793 // description is applied. Restore back to old description.
Philipp Hancke2206b632023-07-18 05:23:021794 error = CreateChannels(*local_description()->description());
Harald Alvestrandcdcfab02020-09-28 13:02:071795 if (!error.ok()) {
Tomas Gunnarsson0dd75392022-01-17 18:19:561796 RTC_LOG(LS_ERROR) << error.message() << " (" << SdpTypeToString(type)
1797 << ")";
Harald Alvestrandcdcfab02020-09-28 13:02:071798 return error;
1799 }
1800 }
1801 // Remove unused channels if MediaContentDescription is rejected.
Harald Alvestranda474fbf2020-10-01 16:47:231802 RemoveUnusedChannels(local_description()->description());
Harald Alvestrandcdcfab02020-09-28 13:02:071803 }
1804
1805 error = UpdateSessionState(type, cricket::CS_LOCAL,
Henrik Boströmf8187e02021-04-26 19:04:261806 local_description()->description(),
1807 bundle_groups_by_mid);
Harald Alvestrandcdcfab02020-09-28 13:02:071808 if (!error.ok()) {
Tomas Gunnarsson0dd75392022-01-17 18:19:561809 RTC_LOG(LS_ERROR) << error.message() << " (" << SdpTypeToString(type)
1810 << ")";
Harald Alvestrandcdcfab02020-09-28 13:02:071811 return error;
1812 }
1813
Tomas Gunnarsson0dd75392022-01-17 18:19:561814 // Now that we have a local description, we can push down remote candidates.
1815 UseCandidatesInRemoteDescription();
Harald Alvestrandcdcfab02020-09-28 13:02:071816
1817 pending_ice_restarts_.clear();
Harald Alvestranda474fbf2020-10-01 16:47:231818 if (session_error() != SessionError::kNone) {
1819 LOG_AND_RETURN_ERROR(RTCErrorType::INTERNAL_ERROR, GetSessionErrorMsg());
Harald Alvestrandcdcfab02020-09-28 13:02:071820 }
1821
1822 // If setting the description decided our SSL role, allocate any necessary
1823 // SCTP sids.
Tommic61eee22023-03-22 07:25:381824 AllocateSctpSids();
Harald Alvestrandcdcfab02020-09-28 13:02:071825
Philipp Hancke2206b632023-07-18 05:23:021826 // Validate SSRCs, we do not allow duplicates.
1827 if (ConfiguredForMedia()) {
1828 std::set<uint32_t> used_ssrcs;
1829 for (const auto& content : local_description()->description()->contents()) {
1830 for (const auto& stream : content.media_description()->streams()) {
1831 for (uint32_t ssrc : stream.ssrcs) {
1832 auto result = used_ssrcs.insert(ssrc);
1833 if (!result.second) {
1834 LOG_AND_RETURN_ERROR(
1835 RTCErrorType::INVALID_PARAMETER,
1836 "Duplicate ssrc " + rtc::ToString(ssrc) + " is not allowed");
1837 }
1838 }
1839 }
1840 }
1841 }
1842
Harald Alvestrandcdcfab02020-09-28 13:02:071843 if (IsUnifiedPlan()) {
Harald Alvestrand8101e7b2022-05-23 14:57:471844 if (ConfiguredForMedia()) {
1845 // We must use List and not ListInternal here because
1846 // transceivers()->StableState() is indexed by the non-internal refptr.
1847 for (const auto& transceiver_ext : transceivers()->List()) {
1848 auto transceiver = transceiver_ext->internal();
1849 if (transceiver->stopped()) {
1850 continue;
1851 }
1852 const ContentInfo* content =
1853 FindMediaSectionForTransceiver(transceiver, local_description());
1854 if (!content) {
1855 continue;
1856 }
1857 cricket::ChannelInterface* channel = transceiver->channel();
1858 if (content->rejected || !channel || channel->local_streams().empty()) {
1859 // 0 is a special value meaning "this sender has no associated send
1860 // stream". Need to call this so the sender won't attempt to configure
1861 // a no longer existing stream and run into DCHECKs in the lower
1862 // layers.
1863 transceiver->sender_internal()->SetSsrc(0);
1864 } else {
1865 // Get the StreamParams from the channel which could generate SSRCs.
1866 const std::vector<StreamParams>& streams = channel->local_streams();
1867 transceiver->sender_internal()->set_stream_ids(
1868 streams[0].stream_ids());
1869 auto encodings =
1870 transceiver->sender_internal()->init_send_encodings();
1871 transceiver->sender_internal()->SetSsrc(streams[0].first_ssrc());
1872 if (!encodings.empty()) {
1873 transceivers()
1874 ->StableState(transceiver_ext)
1875 ->SetInitSendEncodings(encodings);
1876 }
Eldar Rello950d6b92021-04-06 19:38:001877 }
Harald Alvestrandcdcfab02020-09-28 13:02:071878 }
1879 }
1880 } else {
1881 // Plan B semantics.
1882
1883 // Update state and SSRC of local MediaStreams and DataChannels based on the
1884 // local session description.
1885 const cricket::ContentInfo* audio_content =
1886 GetFirstAudioContent(local_description()->description());
1887 if (audio_content) {
1888 if (audio_content->rejected) {
Harald Alvestranda474fbf2020-10-01 16:47:231889 RemoveSenders(cricket::MEDIA_TYPE_AUDIO);
Harald Alvestrandcdcfab02020-09-28 13:02:071890 } else {
1891 const cricket::AudioContentDescription* audio_desc =
1892 audio_content->media_description()->as_audio();
Harald Alvestranda474fbf2020-10-01 16:47:231893 UpdateLocalSenders(audio_desc->streams(), audio_desc->type());
Harald Alvestrandcdcfab02020-09-28 13:02:071894 }
1895 }
1896
1897 const cricket::ContentInfo* video_content =
1898 GetFirstVideoContent(local_description()->description());
1899 if (video_content) {
1900 if (video_content->rejected) {
Harald Alvestranda474fbf2020-10-01 16:47:231901 RemoveSenders(cricket::MEDIA_TYPE_VIDEO);
Harald Alvestrandcdcfab02020-09-28 13:02:071902 } else {
1903 const cricket::VideoContentDescription* video_desc =
1904 video_content->media_description()->as_video();
Harald Alvestranda474fbf2020-10-01 16:47:231905 UpdateLocalSenders(video_desc->streams(), video_desc->type());
Harald Alvestrandcdcfab02020-09-28 13:02:071906 }
1907 }
1908 }
1909
Harald Alvestrand7af57c62021-04-16 11:12:141910 // This function does nothing with data content.
Harald Alvestrandcdcfab02020-09-28 13:02:071911
1912 if (type == SdpType::kAnswer &&
1913 local_ice_credentials_to_replace_->SatisfiesIceRestart(
1914 *current_local_description_)) {
1915 local_ice_credentials_to_replace_->ClearIceCredentials();
1916 }
1917
Philipp Hancke49e55872023-03-30 11:51:391918 if (IsUnifiedPlan()) {
1919 UpdateRtpHeaderExtensionPreferencesFromSdpMunging(
1920 local_description()->description(), transceivers());
1921 }
1922
Harald Alvestrandcdcfab02020-09-28 13:02:071923 return RTCError::OK();
1924}
1925
1926void SdpOfferAnswerHandler::SetRemoteDescription(
1927 SetSessionDescriptionObserver* observer,
1928 SessionDescriptionInterface* desc_ptr) {
1929 RTC_DCHECK_RUN_ON(signaling_thread());
1930 // Chain this operation. If asynchronous operations are pending on the chain,
1931 // this operation will be queued to be invoked, otherwise the contents of the
1932 // lambda will execute immediately.
1933 operations_chain_->ChainOperation(
1934 [this_weak_ptr = weak_ptr_factory_.GetWeakPtr(),
1935 observer_refptr =
1936 rtc::scoped_refptr<SetSessionDescriptionObserver>(observer),
1937 desc = std::unique_ptr<SessionDescriptionInterface>(desc_ptr)](
1938 std::function<void()> operations_chain_callback) mutable {
Artem Titov880fa812021-07-30 20:30:231939 // Abort early if `this_weak_ptr` is no longer valid.
Harald Alvestrandcdcfab02020-09-28 13:02:071940 if (!this_weak_ptr) {
1941 // For consistency with SetSessionDescriptionObserverAdapter whose
1942 // posted messages doesn't get processed when the PC is destroyed, we
Artem Titov880fa812021-07-30 20:30:231943 // do not inform `observer_refptr` that the operation failed.
Harald Alvestrandcdcfab02020-09-28 13:02:071944 operations_chain_callback();
1945 return;
1946 }
1947 // SetSessionDescriptionObserverAdapter takes care of making sure the
Artem Titov880fa812021-07-30 20:30:231948 // `observer_refptr` is invoked in a posted message.
Harald Alvestrandcdcfab02020-09-28 13:02:071949 this_weak_ptr->DoSetRemoteDescription(
Tomas Gunnarsson1c7c09b2022-01-12 12:11:041950 std::make_unique<RemoteDescriptionOperation>(
1951 this_weak_ptr.get(), std::move(desc),
1952 rtc::make_ref_counted<SetSessionDescriptionObserverAdapter>(
1953 this_weak_ptr, observer_refptr),
1954 std::move(operations_chain_callback)));
Harald Alvestrandcdcfab02020-09-28 13:02:071955 });
1956}
1957
1958void SdpOfferAnswerHandler::SetRemoteDescription(
1959 std::unique_ptr<SessionDescriptionInterface> desc,
1960 rtc::scoped_refptr<SetRemoteDescriptionObserverInterface> observer) {
1961 RTC_DCHECK_RUN_ON(signaling_thread());
1962 // Chain this operation. If asynchronous operations are pending on the chain,
1963 // this operation will be queued to be invoked, otherwise the contents of the
1964 // lambda will execute immediately.
1965 operations_chain_->ChainOperation(
1966 [this_weak_ptr = weak_ptr_factory_.GetWeakPtr(), observer,
1967 desc = std::move(desc)](
1968 std::function<void()> operations_chain_callback) mutable {
Tomas Gunnarsson1c7c09b2022-01-12 12:11:041969 if (!observer) {
1970 RTC_DLOG(LS_ERROR) << "SetRemoteDescription - observer is NULL.";
1971 operations_chain_callback();
1972 return;
1973 }
1974
Artem Titov880fa812021-07-30 20:30:231975 // Abort early if `this_weak_ptr` is no longer valid.
Harald Alvestrandcdcfab02020-09-28 13:02:071976 if (!this_weak_ptr) {
1977 observer->OnSetRemoteDescriptionComplete(RTCError(
1978 RTCErrorType::INTERNAL_ERROR,
1979 "SetRemoteDescription failed because the session was shut down"));
1980 operations_chain_callback();
1981 return;
1982 }
Tomas Gunnarsson1c7c09b2022-01-12 12:11:041983
1984 this_weak_ptr->DoSetRemoteDescription(
1985 std::make_unique<RemoteDescriptionOperation>(
1986 this_weak_ptr.get(), std::move(desc), std::move(observer),
1987 std::move(operations_chain_callback)));
Harald Alvestrandcdcfab02020-09-28 13:02:071988 });
1989}
1990
Tomas Gunnarsson0dd75392022-01-17 18:19:561991RTCError SdpOfferAnswerHandler::ReplaceRemoteDescription(
Henrik Boströmf8187e02021-04-26 19:04:261992 std::unique_ptr<SessionDescriptionInterface> desc,
Tomas Gunnarsson0dd75392022-01-17 18:19:561993 SdpType sdp_type,
1994 std::unique_ptr<SessionDescriptionInterface>* replaced_description) {
1995 RTC_DCHECK(replaced_description);
1996 if (sdp_type == SdpType::kAnswer) {
1997 *replaced_description = pending_remote_description_
1998 ? std::move(pending_remote_description_)
1999 : std::move(current_remote_description_);
2000 current_remote_description_ = std::move(desc);
2001 pending_remote_description_ = nullptr;
2002 current_local_description_ = std::move(pending_local_description_);
2003 } else {
2004 *replaced_description = std::move(pending_remote_description_);
2005 pending_remote_description_ = std::move(desc);
2006 }
2007
2008 // The session description to apply now must be accessed by
2009 // `remote_description()`.
2010 const cricket::SessionDescription* session_desc =
2011 remote_description()->description();
2012
Danil Chapovalov9e09a1f2022-09-08 16:38:102013 // NOTE: This will perform a BlockingCall() to the network thread.
Harald Alvestrandbc32c562022-02-09 12:08:472014 return transport_controller_s()->SetRemoteDescription(sdp_type, session_desc);
Tomas Gunnarsson0dd75392022-01-17 18:19:562015}
2016
2017void SdpOfferAnswerHandler::ApplyRemoteDescription(
2018 std::unique_ptr<RemoteDescriptionOperation> operation) {
Markus Handell518669d2021-06-07 11:30:462019 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::ApplyRemoteDescription");
Harald Alvestrandcdcfab02020-09-28 13:02:072020 RTC_DCHECK_RUN_ON(signaling_thread());
Tomas Gunnarsson0dd75392022-01-17 18:19:562021 RTC_DCHECK(operation->description());
Harald Alvestrandcdcfab02020-09-28 13:02:072022
Philipp Hancke7baa63f2022-09-01 13:39:502023 // Invalidate the stats caches to make sure that they get
2024 // updated next time getStats() gets called, as updating the session
2025 // description affects the stats.
2026 pc_->ClearStatsCache();
Harald Alvestrandcdcfab02020-09-28 13:02:072027
Philipp Hancke43df03d2023-05-02 09:28:102028 if (!operation->ReplaceRemoteDescriptionAndCheckError())
Tomas Gunnarsson0dd75392022-01-17 18:19:562029 return;
Harald Alvestrandcdcfab02020-09-28 13:02:072030
Tomas Gunnarsson0dd75392022-01-17 18:19:562031 if (!operation->UpdateChannels())
2032 return;
Harald Alvestrandcdcfab02020-09-28 13:02:072033
2034 // NOTE: Candidates allocation will be initiated only when
2035 // SetLocalDescription is called.
Tomas Gunnarsson0dd75392022-01-17 18:19:562036 if (!operation->UpdateSessionState())
2037 return;
Harald Alvestrandcdcfab02020-09-28 13:02:072038
Tomas Gunnarsson0dd75392022-01-17 18:19:562039 if (!operation->UseCandidatesInRemoteDescription())
2040 return;
Harald Alvestrandcdcfab02020-09-28 13:02:072041
Tomas Gunnarsson0dd75392022-01-17 18:19:562042 if (operation->old_remote_description()) {
Harald Alvestrandcdcfab02020-09-28 13:02:072043 for (const cricket::ContentInfo& content :
Tomas Gunnarsson0dd75392022-01-17 18:19:562044 operation->old_remote_description()->description()->contents()) {
Harald Alvestrandcdcfab02020-09-28 13:02:072045 // Check if this new SessionDescription contains new ICE ufrag and
2046 // password that indicates the remote peer requests an ICE restart.
2047 // TODO(deadbeef): When we start storing both the current and pending
2048 // remote description, this should reset pending_ice_restarts and compare
2049 // against the current description.
Tomas Gunnarsson0dd75392022-01-17 18:19:562050 if (CheckForRemoteIceRestart(operation->old_remote_description(),
2051 remote_description(), content.name)) {
2052 if (operation->type() == SdpType::kOffer) {
Harald Alvestrandcdcfab02020-09-28 13:02:072053 pending_ice_restarts_.insert(content.name);
2054 }
2055 } else {
2056 // We retain all received candidates only if ICE is not restarted.
2057 // When ICE is restarted, all previous candidates belong to an old
2058 // generation and should not be kept.
2059 // TODO(deadbeef): This goes against the W3C spec which says the remote
2060 // description should only contain candidates from the last set remote
2061 // description plus any candidates added since then. We should remove
2062 // this once we're sure it won't break anything.
2063 WebRtcSessionDescriptionFactory::CopyCandidatesFromSessionDescription(
Tomas Gunnarsson0dd75392022-01-17 18:19:562064 operation->old_remote_description(), content.name,
2065 mutable_remote_description());
Harald Alvestrandcdcfab02020-09-28 13:02:072066 }
2067 }
2068 }
2069
Tomas Gunnarsson0dd75392022-01-17 18:19:562070 if (operation->HaveSessionError())
2071 return;
Harald Alvestrandcdcfab02020-09-28 13:02:072072
2073 // Set the the ICE connection state to connecting since the connection may
2074 // become writable with peer reflexive candidates before any remote candidate
2075 // is signaled.
2076 // TODO(pthatcher): This is a short-term solution for crbug/446908. A real fix
2077 // is to have a new signal the indicates a change in checking state from the
2078 // transport and expose a new checking() member from transport that can be
2079 // read to determine the current checking state. The existing SignalConnecting
2080 // actually means "gathering candidates", so cannot be be used here.
2081 if (remote_description()->GetType() != SdpType::kOffer &&
2082 remote_description()->number_of_mediasections() > 0u &&
Harald Alvestrand5b661302022-01-28 13:08:342083 pc_->ice_connection_state_internal() ==
Harald Alvestrandcdcfab02020-09-28 13:02:072084 PeerConnectionInterface::kIceConnectionNew) {
2085 pc_->SetIceConnectionState(PeerConnectionInterface::kIceConnectionChecking);
2086 }
2087
2088 // If setting the description decided our SSL role, allocate any necessary
2089 // SCTP sids.
Tommic61eee22023-03-22 07:25:382090 AllocateSctpSids();
Harald Alvestrandcdcfab02020-09-28 13:02:072091
Tomas Gunnarsson0dd75392022-01-17 18:19:562092 if (operation->unified_plan()) {
2093 ApplyRemoteDescriptionUpdateTransceiverState(operation->type());
Harald Alvestrandcdcfab02020-09-28 13:02:072094 }
2095
Harald Alvestrandcdcfab02020-09-28 13:02:072096 const cricket::AudioContentDescription* audio_desc =
2097 GetFirstAudioContentDescription(remote_description()->description());
2098 const cricket::VideoContentDescription* video_desc =
2099 GetFirstVideoContentDescription(remote_description()->description());
Harald Alvestrandcdcfab02020-09-28 13:02:072100
2101 // Check if the descriptions include streams, just in case the peer supports
2102 // MSID, but doesn't indicate so with "a=msid-semantic".
2103 if (remote_description()->description()->msid_supported() ||
2104 (audio_desc && !audio_desc->streams().empty()) ||
2105 (video_desc && !video_desc->streams().empty())) {
2106 remote_peer_supports_msid_ = true;
2107 }
2108
Tomas Gunnarsson0dd75392022-01-17 18:19:562109 if (!operation->unified_plan()) {
Tomas Gunnarssonb625edf2022-01-07 16:22:142110 PlanBUpdateSendersAndReceivers(
2111 GetFirstAudioContent(remote_description()->description()), audio_desc,
2112 GetFirstVideoContent(remote_description()->description()), video_desc);
Harald Alvestrandcdcfab02020-09-28 13:02:072113 }
2114
Tomas Gunnarsson0dd75392022-01-17 18:19:562115 if (operation->type() == SdpType::kAnswer) {
Tomas Gunnarsson1c7c09b2022-01-12 12:11:042116 if (local_ice_credentials_to_replace_->SatisfiesIceRestart(
2117 *current_local_description_)) {
2118 local_ice_credentials_to_replace_->ClearIceCredentials();
2119 }
2120
2121 RemoveStoppedTransceivers();
Harald Alvestrandcdcfab02020-09-28 13:02:072122 }
2123
Tomas Gunnarsson0dd75392022-01-17 18:19:562124 // Consider the operation complete at this point.
2125 operation->SignalCompletion();
2126
2127 SetRemoteDescriptionPostProcess(operation->type() == SdpType::kAnswer);
Harald Alvestrandcdcfab02020-09-28 13:02:072128}
2129
Tomas Gunnarsson651586c2022-01-07 18:33:122130void SdpOfferAnswerHandler::ApplyRemoteDescriptionUpdateTransceiverState(
2131 SdpType sdp_type) {
2132 RTC_DCHECK_RUN_ON(signaling_thread());
2133 RTC_DCHECK(IsUnifiedPlan());
Harald Alvestrand8101e7b2022-05-23 14:57:472134 if (!ConfiguredForMedia()) {
2135 return;
2136 }
Tomas Gunnarsson651586c2022-01-07 18:33:122137 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>>
2138 now_receiving_transceivers;
2139 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>> remove_list;
2140 std::vector<rtc::scoped_refptr<MediaStreamInterface>> added_streams;
2141 std::vector<rtc::scoped_refptr<MediaStreamInterface>> removed_streams;
2142 for (const auto& transceiver_ext : transceivers()->List()) {
2143 const auto transceiver = transceiver_ext->internal();
2144 const ContentInfo* content =
2145 FindMediaSectionForTransceiver(transceiver, remote_description());
2146 if (!content) {
2147 continue;
2148 }
2149 const MediaContentDescription* media_desc = content->media_description();
2150 RtpTransceiverDirection local_direction =
2151 RtpTransceiverDirectionReversed(media_desc->direction());
Henrik Boström0a162762022-05-02 13:47:522152 // Remember the previous remote streams if this is a remote offer. This
2153 // makes it possible to rollback modifications to the streams.
2154 if (sdp_type == SdpType::kOffer) {
2155 transceivers()
2156 ->StableState(transceiver_ext)
2157 ->SetRemoteStreamIds(transceiver->receiver()->stream_ids());
2158 }
Tomas Gunnarsson651586c2022-01-07 18:33:122159 // Roughly the same as steps 2.2.8.6 of section 4.4.1.6 "Set the
2160 // RTCSessionDescription: Set the associated remote streams given
2161 // transceiver.[[Receiver]], msids, addList, and removeList".
2162 // https://w3c.github.io/webrtc-pc/#set-the-rtcsessiondescription
2163 if (RtpTransceiverDirectionHasRecv(local_direction)) {
2164 std::vector<std::string> stream_ids;
2165 if (!media_desc->streams().empty()) {
2166 // The remote description has signaled the stream IDs.
2167 stream_ids = media_desc->streams()[0].stream_ids();
2168 }
Tomas Gunnarsson651586c2022-01-07 18:33:122169
2170 RTC_LOG(LS_INFO) << "Processing the MSIDs for MID=" << content->name
2171 << " (" << GetStreamIdsString(stream_ids) << ").";
2172 SetAssociatedRemoteStreams(transceiver->receiver_internal(), stream_ids,
2173 &added_streams, &removed_streams);
2174 // From the WebRTC specification, steps 2.2.8.5/6 of section 4.4.1.6
2175 // "Set the RTCSessionDescription: If direction is sendrecv or recvonly,
2176 // and transceiver's current direction is neither sendrecv nor recvonly,
2177 // process the addition of a remote track for the media description.
2178 if (!transceiver->fired_direction() ||
2179 !RtpTransceiverDirectionHasRecv(*transceiver->fired_direction())) {
2180 RTC_LOG(LS_INFO) << "Processing the addition of a remote track for MID="
2181 << content->name << ".";
2182 // Since the transceiver is passed to the user in an
2183 // OnTrack event, we must use the proxied transceiver.
2184 now_receiving_transceivers.push_back(transceiver_ext);
2185 }
2186 }
2187 // 2.2.8.1.9: If direction is "sendonly" or "inactive", and transceiver's
2188 // [[FiredDirection]] slot is either "sendrecv" or "recvonly", process the
2189 // removal of a remote track for the media description, given transceiver,
2190 // removeList, and muteTracks.
2191 if (!RtpTransceiverDirectionHasRecv(local_direction) &&
2192 (transceiver->fired_direction() &&
2193 RtpTransceiverDirectionHasRecv(*transceiver->fired_direction()))) {
2194 ProcessRemovalOfRemoteTrack(transceiver_ext, &remove_list,
2195 &removed_streams);
2196 }
2197 // 2.2.8.1.10: Set transceiver's [[FiredDirection]] slot to direction.
Henrik Boström0a162762022-05-02 13:47:522198 if (sdp_type == SdpType::kOffer) {
2199 // Remember the previous fired direction if this is a remote offer. This
2200 // makes it possible to rollback modifications to [[FiredDirection]],
2201 // which is necessary for "ontrack" to fire in or after rollback.
2202 transceivers()
2203 ->StableState(transceiver_ext)
2204 ->SetFiredDirection(transceiver->fired_direction());
2205 }
Tomas Gunnarsson651586c2022-01-07 18:33:122206 transceiver->set_fired_direction(local_direction);
2207 // 2.2.8.1.11: If description is of type "answer" or "pranswer", then run
2208 // the following steps:
2209 if (sdp_type == SdpType::kPrAnswer || sdp_type == SdpType::kAnswer) {
2210 // 2.2.8.1.11.1: Set transceiver's [[CurrentDirection]] slot to
2211 // direction.
2212 transceiver->set_current_direction(local_direction);
2213 // 2.2.8.1.11.[3-6]: Set the transport internal slots.
2214 if (transceiver->mid()) {
2215 auto dtls_transport = LookupDtlsTransportByMid(
Harald Alvestrandbc32c562022-02-09 12:08:472216 context_->network_thread(), transport_controller_s(),
Harald Alvestrand66c40362022-01-28 17:41:302217 *transceiver->mid());
Tomas Gunnarsson651586c2022-01-07 18:33:122218 transceiver->sender_internal()->set_transport(dtls_transport);
2219 transceiver->receiver_internal()->set_transport(dtls_transport);
2220 }
2221 }
2222 // 2.2.8.1.12: If the media description is rejected, and transceiver is
2223 // not already stopped, stop the RTCRtpTransceiver transceiver.
2224 if (content->rejected && !transceiver->stopped()) {
2225 RTC_LOG(LS_INFO) << "Stopping transceiver for MID=" << content->name
2226 << " since the media section was rejected.";
2227 transceiver->StopTransceiverProcedure();
2228 }
2229 if (!content->rejected && RtpTransceiverDirectionHasRecv(local_direction)) {
2230 if (!media_desc->streams().empty() &&
2231 media_desc->streams()[0].has_ssrcs()) {
2232 uint32_t ssrc = media_desc->streams()[0].first_ssrc();
2233 transceiver->receiver_internal()->SetupMediaChannel(ssrc);
2234 } else {
2235 transceiver->receiver_internal()->SetupUnsignaledMediaChannel();
2236 }
2237 }
2238 }
2239 // Once all processing has finished, fire off callbacks.
2240 auto observer = pc_->Observer();
2241 for (const auto& transceiver : now_receiving_transceivers) {
Henrik Boströmf7859892022-07-04 12:36:372242 pc_->legacy_stats()->AddTrack(transceiver->receiver()->track().get());
Tomas Gunnarsson651586c2022-01-07 18:33:122243 observer->OnTrack(transceiver);
2244 observer->OnAddTrack(transceiver->receiver(),
2245 transceiver->receiver()->streams());
2246 }
2247 for (const auto& stream : added_streams) {
2248 observer->OnAddStream(stream);
2249 }
2250 for (const auto& transceiver : remove_list) {
2251 observer->OnRemoveTrack(transceiver->receiver());
2252 }
2253 for (const auto& stream : removed_streams) {
2254 observer->OnRemoveStream(stream);
2255 }
2256}
2257
Tomas Gunnarssonb625edf2022-01-07 16:22:142258void SdpOfferAnswerHandler::PlanBUpdateSendersAndReceivers(
2259 const cricket::ContentInfo* audio_content,
2260 const cricket::AudioContentDescription* audio_desc,
2261 const cricket::ContentInfo* video_content,
2262 const cricket::VideoContentDescription* video_desc) {
2263 RTC_DCHECK_RUN_ON(signaling_thread());
2264 RTC_DCHECK(!IsUnifiedPlan());
2265
2266 // We wait to signal new streams until we finish processing the description,
2267 // since only at that point will new streams have all their tracks.
2268 rtc::scoped_refptr<StreamCollection> new_streams(StreamCollection::Create());
2269
2270 // TODO(steveanton): When removing RTP senders/receivers in response to a
2271 // rejected media section, there is some cleanup logic that expects the
2272 // voice/ video channel to still be set. But in this method the voice/video
2273 // channel would have been destroyed by the SetRemoteDescription caller
2274 // above so the cleanup that relies on them fails to run. The RemoveSenders
2275 // calls should be moved to right before the DestroyChannel calls to fix
2276 // this.
2277
2278 // Find all audio rtp streams and create corresponding remote AudioTracks
2279 // and MediaStreams.
2280 if (audio_content) {
2281 if (audio_content->rejected) {
2282 RemoveSenders(cricket::MEDIA_TYPE_AUDIO);
2283 } else {
2284 bool default_audio_track_needed =
2285 !remote_peer_supports_msid_ &&
2286 RtpTransceiverDirectionHasSend(audio_desc->direction());
2287 UpdateRemoteSendersList(GetActiveStreams(audio_desc),
2288 default_audio_track_needed, audio_desc->type(),
Niels Möllerafb246b2022-04-20 12:26:502289 new_streams.get());
Tomas Gunnarssonb625edf2022-01-07 16:22:142290 }
2291 }
2292
2293 // Find all video rtp streams and create corresponding remote VideoTracks
2294 // and MediaStreams.
2295 if (video_content) {
2296 if (video_content->rejected) {
2297 RemoveSenders(cricket::MEDIA_TYPE_VIDEO);
2298 } else {
2299 bool default_video_track_needed =
2300 !remote_peer_supports_msid_ &&
2301 RtpTransceiverDirectionHasSend(video_desc->direction());
2302 UpdateRemoteSendersList(GetActiveStreams(video_desc),
2303 default_video_track_needed, video_desc->type(),
Niels Möllerafb246b2022-04-20 12:26:502304 new_streams.get());
Tomas Gunnarssonb625edf2022-01-07 16:22:142305 }
2306 }
2307
2308 // Iterate new_streams and notify the observer about new MediaStreams.
2309 auto observer = pc_->Observer();
2310 for (size_t i = 0; i < new_streams->count(); ++i) {
2311 MediaStreamInterface* new_stream = new_streams->at(i);
Henrik Boströmf7859892022-07-04 12:36:372312 pc_->legacy_stats()->AddStream(new_stream);
Tomas Gunnarssonb625edf2022-01-07 16:22:142313 observer->OnAddStream(rtc::scoped_refptr<MediaStreamInterface>(new_stream));
2314 }
2315
2316 UpdateEndedRemoteMediaStreams();
2317}
2318
Harald Alvestrandcdcfab02020-09-28 13:02:072319void SdpOfferAnswerHandler::DoSetLocalDescription(
2320 std::unique_ptr<SessionDescriptionInterface> desc,
2321 rtc::scoped_refptr<SetLocalDescriptionObserverInterface> observer) {
2322 RTC_DCHECK_RUN_ON(signaling_thread());
2323 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::DoSetLocalDescription");
2324
2325 if (!observer) {
2326 RTC_LOG(LS_ERROR) << "SetLocalDescription - observer is NULL.";
2327 return;
2328 }
2329
2330 if (!desc) {
2331 observer->OnSetLocalDescriptionComplete(
2332 RTCError(RTCErrorType::INTERNAL_ERROR, "SessionDescription is NULL."));
2333 return;
2334 }
2335
2336 // If a session error has occurred the PeerConnection is in a possibly
2337 // inconsistent state so fail right away.
Harald Alvestranda474fbf2020-10-01 16:47:232338 if (session_error() != SessionError::kNone) {
2339 std::string error_message = GetSessionErrorMsg();
Harald Alvestrandcdcfab02020-09-28 13:02:072340 RTC_LOG(LS_ERROR) << "SetLocalDescription: " << error_message;
2341 observer->OnSetLocalDescriptionComplete(
2342 RTCError(RTCErrorType::INTERNAL_ERROR, std::move(error_message)));
2343 return;
2344 }
2345
2346 // For SLD we support only explicit rollback.
2347 if (desc->GetType() == SdpType::kRollback) {
2348 if (IsUnifiedPlan()) {
2349 observer->OnSetLocalDescriptionComplete(Rollback(desc->GetType()));
2350 } else {
2351 observer->OnSetLocalDescriptionComplete(
2352 RTCError(RTCErrorType::UNSUPPORTED_OPERATION,
2353 "Rollback not supported in Plan B"));
2354 }
2355 return;
2356 }
2357
Henrik Boströmf8187e02021-04-26 19:04:262358 std::map<std::string, const cricket::ContentGroup*> bundle_groups_by_mid =
2359 GetBundleGroupsByMid(desc->description());
2360 RTCError error = ValidateSessionDescription(desc.get(), cricket::CS_LOCAL,
2361 bundle_groups_by_mid);
Harald Alvestrandcdcfab02020-09-28 13:02:072362 if (!error.ok()) {
2363 std::string error_message = GetSetDescriptionErrorMessage(
2364 cricket::CS_LOCAL, desc->GetType(), error);
2365 RTC_LOG(LS_ERROR) << error_message;
2366 observer->OnSetLocalDescriptionComplete(
2367 RTCError(RTCErrorType::INTERNAL_ERROR, std::move(error_message)));
2368 return;
2369 }
2370
2371 // Grab the description type before moving ownership to ApplyLocalDescription,
2372 // which may destroy it before returning.
2373 const SdpType type = desc->GetType();
2374
Henrik Boströmf8187e02021-04-26 19:04:262375 error = ApplyLocalDescription(std::move(desc), bundle_groups_by_mid);
Artem Titov880fa812021-07-30 20:30:232376 // `desc` may be destroyed at this point.
Harald Alvestrandcdcfab02020-09-28 13:02:072377
2378 if (!error.ok()) {
2379 // If ApplyLocalDescription fails, the PeerConnection could be in an
2380 // inconsistent state, so act conservatively here and set the session error
2381 // so that future calls to SetLocalDescription/SetRemoteDescription fail.
Harald Alvestranda474fbf2020-10-01 16:47:232382 SetSessionError(SessionError::kContent, error.message());
Harald Alvestrandcdcfab02020-09-28 13:02:072383 std::string error_message =
2384 GetSetDescriptionErrorMessage(cricket::CS_LOCAL, type, error);
2385 RTC_LOG(LS_ERROR) << error_message;
2386 observer->OnSetLocalDescriptionComplete(
2387 RTCError(RTCErrorType::INTERNAL_ERROR, std::move(error_message)));
2388 return;
2389 }
2390 RTC_DCHECK(local_description());
2391
2392 if (local_description()->GetType() == SdpType::kAnswer) {
Harald Alvestranda474fbf2020-10-01 16:47:232393 RemoveStoppedTransceivers();
Harald Alvestrandcdcfab02020-09-28 13:02:072394
2395 // TODO(deadbeef): We already had to hop to the network thread for
2396 // MaybeStartGathering...
Danil Chapovalov9e09a1f2022-09-08 16:38:102397 context_->network_thread()->BlockingCall(
2398 [this] { port_allocator()->DiscardCandidatePool(); });
Harald Alvestrandcdcfab02020-09-28 13:02:072399 }
2400
2401 observer->OnSetLocalDescriptionComplete(RTCError::OK());
Harald Alvestrand44d0dff2020-10-09 05:43:532402 pc_->NoteUsageEvent(UsageEvent::SET_LOCAL_DESCRIPTION_SUCCEEDED);
Harald Alvestrandcdcfab02020-09-28 13:02:072403
2404 // Check if negotiation is needed. We must do this after informing the
2405 // observer that SetLocalDescription() has completed to ensure negotiation is
2406 // not needed prior to the promise resolving.
2407 if (IsUnifiedPlan()) {
2408 bool was_negotiation_needed = is_negotiation_needed_;
2409 UpdateNegotiationNeeded();
2410 if (signaling_state() == PeerConnectionInterface::kStable &&
2411 was_negotiation_needed && is_negotiation_needed_) {
2412 // Legacy version.
2413 pc_->Observer()->OnRenegotiationNeeded();
2414 // Spec-compliant version; the event may get invalidated before firing.
2415 GenerateNegotiationNeededEvent();
2416 }
2417 }
2418
2419 // MaybeStartGathering needs to be called after informing the observer so that
2420 // we don't signal any candidates before signaling that SetLocalDescription
2421 // completed.
Harald Alvestrandbc32c562022-02-09 12:08:472422 transport_controller_s()->MaybeStartGathering();
Harald Alvestrandcdcfab02020-09-28 13:02:072423}
2424
2425void SdpOfferAnswerHandler::DoCreateOffer(
2426 const PeerConnectionInterface::RTCOfferAnswerOptions& options,
2427 rtc::scoped_refptr<CreateSessionDescriptionObserver> observer) {
2428 RTC_DCHECK_RUN_ON(signaling_thread());
2429 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::DoCreateOffer");
2430
2431 if (!observer) {
2432 RTC_LOG(LS_ERROR) << "CreateOffer - observer is NULL.";
2433 return;
2434 }
2435
2436 if (pc_->IsClosed()) {
2437 std::string error = "CreateOffer called when PeerConnection is closed.";
2438 RTC_LOG(LS_ERROR) << error;
Harald Alvestrand1090e442020-10-05 07:01:092439 pc_->message_handler()->PostCreateSessionDescriptionFailure(
Niels Möllerafb246b2022-04-20 12:26:502440 observer.get(),
2441 RTCError(RTCErrorType::INVALID_STATE, std::move(error)));
Harald Alvestrandcdcfab02020-09-28 13:02:072442 return;
2443 }
2444
2445 // If a session error has occurred the PeerConnection is in a possibly
2446 // inconsistent state so fail right away.
Harald Alvestranda474fbf2020-10-01 16:47:232447 if (session_error() != SessionError::kNone) {
2448 std::string error_message = GetSessionErrorMsg();
Harald Alvestrandcdcfab02020-09-28 13:02:072449 RTC_LOG(LS_ERROR) << "CreateOffer: " << error_message;
Harald Alvestrand1090e442020-10-05 07:01:092450 pc_->message_handler()->PostCreateSessionDescriptionFailure(
Niels Möllerafb246b2022-04-20 12:26:502451 observer.get(),
Harald Alvestrandcdcfab02020-09-28 13:02:072452 RTCError(RTCErrorType::INTERNAL_ERROR, std::move(error_message)));
2453 return;
2454 }
2455
2456 if (!ValidateOfferAnswerOptions(options)) {
2457 std::string error = "CreateOffer called with invalid options.";
2458 RTC_LOG(LS_ERROR) << error;
Harald Alvestrand1090e442020-10-05 07:01:092459 pc_->message_handler()->PostCreateSessionDescriptionFailure(
Niels Möllerafb246b2022-04-20 12:26:502460 observer.get(),
2461 RTCError(RTCErrorType::INVALID_PARAMETER, std::move(error)));
Harald Alvestrandcdcfab02020-09-28 13:02:072462 return;
2463 }
2464
2465 // Legacy handling for offer_to_receive_audio and offer_to_receive_video.
2466 // Specified in WebRTC section 4.4.3.2 "Legacy configuration extensions".
2467 if (IsUnifiedPlan()) {
Harald Alvestranda474fbf2020-10-01 16:47:232468 RTCError error = HandleLegacyOfferOptions(options);
Harald Alvestrandcdcfab02020-09-28 13:02:072469 if (!error.ok()) {
Harald Alvestrand1090e442020-10-05 07:01:092470 pc_->message_handler()->PostCreateSessionDescriptionFailure(
Niels Möllerafb246b2022-04-20 12:26:502471 observer.get(), std::move(error));
Harald Alvestrandcdcfab02020-09-28 13:02:072472 return;
2473 }
2474 }
2475
2476 cricket::MediaSessionOptions session_options;
Harald Alvestrandc06e3742020-10-01 10:23:332477 GetOptionsForOffer(options, &session_options);
Niels Möllerafb246b2022-04-20 12:26:502478 webrtc_session_desc_factory_->CreateOffer(observer.get(), options,
2479 session_options);
Harald Alvestrandcdcfab02020-09-28 13:02:072480}
2481
2482void SdpOfferAnswerHandler::CreateAnswer(
2483 CreateSessionDescriptionObserver* observer,
2484 const PeerConnectionInterface::RTCOfferAnswerOptions& options) {
Markus Handell518669d2021-06-07 11:30:462485 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::CreateAnswer");
Harald Alvestrandcdcfab02020-09-28 13:02:072486 RTC_DCHECK_RUN_ON(signaling_thread());
2487 // Chain this operation. If asynchronous operations are pending on the chain,
2488 // this operation will be queued to be invoked, otherwise the contents of the
2489 // lambda will execute immediately.
2490 operations_chain_->ChainOperation(
2491 [this_weak_ptr = weak_ptr_factory_.GetWeakPtr(),
2492 observer_refptr =
2493 rtc::scoped_refptr<CreateSessionDescriptionObserver>(observer),
2494 options](std::function<void()> operations_chain_callback) {
Artem Titov880fa812021-07-30 20:30:232495 // Abort early if `this_weak_ptr` is no longer valid.
Harald Alvestrandcdcfab02020-09-28 13:02:072496 if (!this_weak_ptr) {
2497 observer_refptr->OnFailure(RTCError(
2498 RTCErrorType::INTERNAL_ERROR,
2499 "CreateAnswer failed because the session was shut down"));
2500 operations_chain_callback();
2501 return;
2502 }
2503 // The operation completes asynchronously when the wrapper is invoked.
Niels Möllerb7aac6f52021-08-23 13:48:062504 auto observer_wrapper = rtc::make_ref_counted<
2505 CreateSessionDescriptionObserverOperationWrapper>(
2506 std::move(observer_refptr), std::move(operations_chain_callback));
Harald Alvestrandcdcfab02020-09-28 13:02:072507 this_weak_ptr->DoCreateAnswer(options, observer_wrapper);
2508 });
2509}
2510
2511void SdpOfferAnswerHandler::DoCreateAnswer(
2512 const PeerConnectionInterface::RTCOfferAnswerOptions& options,
2513 rtc::scoped_refptr<CreateSessionDescriptionObserver> observer) {
2514 RTC_DCHECK_RUN_ON(signaling_thread());
2515 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::DoCreateAnswer");
2516 if (!observer) {
2517 RTC_LOG(LS_ERROR) << "CreateAnswer - observer is NULL.";
2518 return;
2519 }
2520
2521 // If a session error has occurred the PeerConnection is in a possibly
2522 // inconsistent state so fail right away.
Harald Alvestranda474fbf2020-10-01 16:47:232523 if (session_error() != SessionError::kNone) {
2524 std::string error_message = GetSessionErrorMsg();
Harald Alvestrandcdcfab02020-09-28 13:02:072525 RTC_LOG(LS_ERROR) << "CreateAnswer: " << error_message;
Harald Alvestrand1090e442020-10-05 07:01:092526 pc_->message_handler()->PostCreateSessionDescriptionFailure(
Niels Möllerafb246b2022-04-20 12:26:502527 observer.get(),
Harald Alvestrandcdcfab02020-09-28 13:02:072528 RTCError(RTCErrorType::INTERNAL_ERROR, std::move(error_message)));
2529 return;
2530 }
2531
2532 if (!(signaling_state_ == PeerConnectionInterface::kHaveRemoteOffer ||
2533 signaling_state_ == PeerConnectionInterface::kHaveLocalPrAnswer)) {
2534 std::string error =
2535 "PeerConnection cannot create an answer in a state other than "
2536 "have-remote-offer or have-local-pranswer.";
2537 RTC_LOG(LS_ERROR) << error;
Harald Alvestrand1090e442020-10-05 07:01:092538 pc_->message_handler()->PostCreateSessionDescriptionFailure(
Niels Möllerafb246b2022-04-20 12:26:502539 observer.get(),
2540 RTCError(RTCErrorType::INVALID_STATE, std::move(error)));
Harald Alvestrandcdcfab02020-09-28 13:02:072541 return;
2542 }
2543
2544 // The remote description should be set if we're in the right state.
2545 RTC_DCHECK(remote_description());
2546
2547 if (IsUnifiedPlan()) {
2548 if (options.offer_to_receive_audio !=
2549 PeerConnectionInterface::RTCOfferAnswerOptions::kUndefined) {
2550 RTC_LOG(LS_WARNING) << "CreateAnswer: offer_to_receive_audio is not "
2551 "supported with Unified Plan semantics. Use the "
2552 "RtpTransceiver API instead.";
2553 }
2554 if (options.offer_to_receive_video !=
2555 PeerConnectionInterface::RTCOfferAnswerOptions::kUndefined) {
2556 RTC_LOG(LS_WARNING) << "CreateAnswer: offer_to_receive_video is not "
2557 "supported with Unified Plan semantics. Use the "
2558 "RtpTransceiver API instead.";
2559 }
2560 }
2561
2562 cricket::MediaSessionOptions session_options;
Harald Alvestrandc06e3742020-10-01 10:23:332563 GetOptionsForAnswer(options, &session_options);
Niels Möllerafb246b2022-04-20 12:26:502564 webrtc_session_desc_factory_->CreateAnswer(observer.get(), session_options);
Harald Alvestrandcdcfab02020-09-28 13:02:072565}
2566
2567void SdpOfferAnswerHandler::DoSetRemoteDescription(
Tomas Gunnarsson1c7c09b2022-01-12 12:11:042568 std::unique_ptr<RemoteDescriptionOperation> operation) {
Harald Alvestrandcdcfab02020-09-28 13:02:072569 RTC_DCHECK_RUN_ON(signaling_thread());
2570 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::DoSetRemoteDescription");
2571
Tomas Gunnarsson1c7c09b2022-01-12 12:11:042572 if (!operation->ok())
Harald Alvestrandcdcfab02020-09-28 13:02:072573 return;
Harald Alvestrandcdcfab02020-09-28 13:02:072574
Tomas Gunnarsson1c7c09b2022-01-12 12:11:042575 if (operation->HaveSessionError())
Harald Alvestrandcdcfab02020-09-28 13:02:072576 return;
Harald Alvestrandcdcfab02020-09-28 13:02:072577
Tomas Gunnarsson1c7c09b2022-01-12 12:11:042578 if (operation->MaybeRollback())
Harald Alvestrandcdcfab02020-09-28 13:02:072579 return;
Tomas Gunnarsson1c7c09b2022-01-12 12:11:042580
2581 operation->ReportOfferAnswerUma();
2582
2583 // Handle remote descriptions missing a=mid lines for interop with legacy
2584 // end points.
2585 FillInMissingRemoteMids(operation->description());
2586 if (!operation->IsDescriptionValid())
Harald Alvestrandcdcfab02020-09-28 13:02:072587 return;
Harald Alvestrandcdcfab02020-09-28 13:02:072588
Tomas Gunnarsson0dd75392022-01-17 18:19:562589 ApplyRemoteDescription(std::move(operation));
Tomas Gunnarsson1c7c09b2022-01-12 12:11:042590}
Harald Alvestrandcdcfab02020-09-28 13:02:072591
Tomas Gunnarsson1c7c09b2022-01-12 12:11:042592// Called after a DoSetRemoteDescription operation completes.
2593void SdpOfferAnswerHandler::SetRemoteDescriptionPostProcess(bool was_answer) {
Harald Alvestrandcdcfab02020-09-28 13:02:072594 RTC_DCHECK(remote_description());
2595
Tomas Gunnarsson1c7c09b2022-01-12 12:11:042596 if (was_answer) {
Harald Alvestrandcdcfab02020-09-28 13:02:072597 // TODO(deadbeef): We already had to hop to the network thread for
2598 // MaybeStartGathering...
Danil Chapovalov9e09a1f2022-09-08 16:38:102599 context_->network_thread()->BlockingCall(
2600 [this] { port_allocator()->DiscardCandidatePool(); });
Harald Alvestrandcdcfab02020-09-28 13:02:072601 }
2602
Harald Alvestrand44d0dff2020-10-09 05:43:532603 pc_->NoteUsageEvent(UsageEvent::SET_REMOTE_DESCRIPTION_SUCCEEDED);
Harald Alvestrandcdcfab02020-09-28 13:02:072604
2605 // Check if negotiation is needed. We must do this after informing the
Tomas Gunnarsson1c7c09b2022-01-12 12:11:042606 // observer that SetRemoteDescription() has completed to ensure negotiation
2607 // is not needed prior to the promise resolving.
Harald Alvestrandcdcfab02020-09-28 13:02:072608 if (IsUnifiedPlan()) {
2609 bool was_negotiation_needed = is_negotiation_needed_;
2610 UpdateNegotiationNeeded();
2611 if (signaling_state() == PeerConnectionInterface::kStable &&
2612 was_negotiation_needed && is_negotiation_needed_) {
2613 // Legacy version.
2614 pc_->Observer()->OnRenegotiationNeeded();
2615 // Spec-compliant version; the event may get invalidated before firing.
2616 GenerateNegotiationNeededEvent();
2617 }
2618 }
2619}
2620
2621void SdpOfferAnswerHandler::SetAssociatedRemoteStreams(
2622 rtc::scoped_refptr<RtpReceiverInternal> receiver,
2623 const std::vector<std::string>& stream_ids,
2624 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* added_streams,
2625 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams) {
2626 RTC_DCHECK_RUN_ON(signaling_thread());
2627 std::vector<rtc::scoped_refptr<MediaStreamInterface>> media_streams;
2628 for (const std::string& stream_id : stream_ids) {
Niels Möllere7cc8832022-01-04 14:20:032629 rtc::scoped_refptr<MediaStreamInterface> stream(
2630 remote_streams_->find(stream_id));
Harald Alvestrandcdcfab02020-09-28 13:02:072631 if (!stream) {
2632 stream = MediaStreamProxy::Create(rtc::Thread::Current(),
2633 MediaStream::Create(stream_id));
Harald Alvestrand6f04b6532020-10-09 11:42:172634 remote_streams_->AddStream(stream);
Harald Alvestrandcdcfab02020-09-28 13:02:072635 added_streams->push_back(stream);
2636 }
2637 media_streams.push_back(stream);
2638 }
2639 // Special case: "a=msid" missing, use random stream ID.
2640 if (media_streams.empty() &&
2641 !(remote_description()->description()->msid_signaling() &
2642 cricket::kMsidSignalingMediaSection)) {
2643 if (!missing_msid_default_stream_) {
2644 missing_msid_default_stream_ = MediaStreamProxy::Create(
2645 rtc::Thread::Current(), MediaStream::Create(rtc::CreateRandomUuid()));
2646 added_streams->push_back(missing_msid_default_stream_);
2647 }
2648 media_streams.push_back(missing_msid_default_stream_);
2649 }
2650 std::vector<rtc::scoped_refptr<MediaStreamInterface>> previous_streams =
2651 receiver->streams();
Tomas Gunnarsson1c7c09b2022-01-12 12:11:042652 // SetStreams() will add/remove the receiver's track to/from the streams.
2653 // This differs from the spec - the spec uses an "addList" and "removeList"
2654 // to update the stream-track relationships in a later step. We do this
2655 // earlier, changing the order of things, but the end-result is the same.
Harald Alvestrandcdcfab02020-09-28 13:02:072656 // TODO(hbos): When we remove remote_streams(), use set_stream_ids()
2657 // instead. https://crbug.com/webrtc/9480
2658 receiver->SetStreams(media_streams);
Harald Alvestranda474fbf2020-10-01 16:47:232659 RemoveRemoteStreamsIfEmpty(previous_streams, removed_streams);
Harald Alvestrandcdcfab02020-09-28 13:02:072660}
2661
2662bool SdpOfferAnswerHandler::AddIceCandidate(
2663 const IceCandidateInterface* ice_candidate) {
Tomas Gunnarsson2efb8a52021-04-01 14:26:572664 const AddIceCandidateResult result = AddIceCandidateInternal(ice_candidate);
2665 NoteAddIceCandidateResult(result);
Tomas Gunnarsson1c7c09b2022-01-12 12:11:042666 // If the return value is kAddIceCandidateFailNotReady, the candidate has
2667 // been added, although not 'ready', but that's a success.
Tomas Gunnarsson2efb8a52021-04-01 14:26:572668 return result == kAddIceCandidateSuccess ||
2669 result == kAddIceCandidateFailNotReady;
2670}
2671
2672AddIceCandidateResult SdpOfferAnswerHandler::AddIceCandidateInternal(
2673 const IceCandidateInterface* ice_candidate) {
Harald Alvestrandcdcfab02020-09-28 13:02:072674 RTC_DCHECK_RUN_ON(signaling_thread());
2675 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::AddIceCandidate");
2676 if (pc_->IsClosed()) {
2677 RTC_LOG(LS_ERROR) << "AddIceCandidate: PeerConnection is closed.";
Tomas Gunnarsson2efb8a52021-04-01 14:26:572678 return kAddIceCandidateFailClosed;
Harald Alvestrandcdcfab02020-09-28 13:02:072679 }
2680
2681 if (!remote_description()) {
2682 RTC_LOG(LS_ERROR) << "AddIceCandidate: ICE candidates can't be added "
2683 "without any remote session description.";
Tomas Gunnarsson2efb8a52021-04-01 14:26:572684 return kAddIceCandidateFailNoRemoteDescription;
Harald Alvestrandcdcfab02020-09-28 13:02:072685 }
2686
2687 if (!ice_candidate) {
2688 RTC_LOG(LS_ERROR) << "AddIceCandidate: Candidate is null.";
Tomas Gunnarsson2efb8a52021-04-01 14:26:572689 return kAddIceCandidateFailNullCandidate;
Harald Alvestrandcdcfab02020-09-28 13:02:072690 }
2691
2692 bool valid = false;
Harald Alvestrandbc9ca252020-10-05 13:08:412693 bool ready = ReadyToUseRemoteCandidate(ice_candidate, nullptr, &valid);
Harald Alvestrandcdcfab02020-09-28 13:02:072694 if (!valid) {
Tomas Gunnarsson2efb8a52021-04-01 14:26:572695 return kAddIceCandidateFailNotValid;
Harald Alvestrandcdcfab02020-09-28 13:02:072696 }
2697
2698 // Add this candidate to the remote session description.
2699 if (!mutable_remote_description()->AddCandidate(ice_candidate)) {
2700 RTC_LOG(LS_ERROR) << "AddIceCandidate: Candidate cannot be used.";
Tomas Gunnarsson2efb8a52021-04-01 14:26:572701 return kAddIceCandidateFailInAddition;
Harald Alvestrandcdcfab02020-09-28 13:02:072702 }
2703
Tomas Gunnarsson2efb8a52021-04-01 14:26:572704 if (!ready) {
Harald Alvestrandcdcfab02020-09-28 13:02:072705 RTC_LOG(LS_INFO) << "AddIceCandidate: Not ready to use candidate.";
Tomas Gunnarsson2efb8a52021-04-01 14:26:572706 return kAddIceCandidateFailNotReady;
Harald Alvestrandcdcfab02020-09-28 13:02:072707 }
Tomas Gunnarsson2efb8a52021-04-01 14:26:572708
2709 if (!UseCandidate(ice_candidate)) {
2710 return kAddIceCandidateFailNotUsable;
2711 }
2712
2713 pc_->NoteUsageEvent(UsageEvent::ADD_ICE_CANDIDATE_SUCCEEDED);
2714
2715 return kAddIceCandidateSuccess;
Harald Alvestrandcdcfab02020-09-28 13:02:072716}
2717
2718void SdpOfferAnswerHandler::AddIceCandidate(
2719 std::unique_ptr<IceCandidateInterface> candidate,
2720 std::function<void(RTCError)> callback) {
Markus Handell518669d2021-06-07 11:30:462721 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::AddIceCandidate");
Harald Alvestrandcdcfab02020-09-28 13:02:072722 RTC_DCHECK_RUN_ON(signaling_thread());
Tomas Gunnarsson1c7c09b2022-01-12 12:11:042723 // Chain this operation. If asynchronous operations are pending on the
2724 // chain, this operation will be queued to be invoked, otherwise the
2725 // contents of the lambda will execute immediately.
Harald Alvestrandcdcfab02020-09-28 13:02:072726 operations_chain_->ChainOperation(
2727 [this_weak_ptr = weak_ptr_factory_.GetWeakPtr(),
2728 candidate = std::move(candidate), callback = std::move(callback)](
2729 std::function<void()> operations_chain_callback) {
Tomas Gunnarsson2efb8a52021-04-01 14:26:572730 auto result =
2731 this_weak_ptr
2732 ? this_weak_ptr->AddIceCandidateInternal(candidate.get())
2733 : kAddIceCandidateFailClosed;
2734 NoteAddIceCandidateResult(result);
2735 operations_chain_callback();
Henrik Boström347488e2022-01-21 14:18:082736 switch (result) {
2737 case AddIceCandidateResult::kAddIceCandidateSuccess:
2738 case AddIceCandidateResult::kAddIceCandidateFailNotReady:
2739 // Success!
2740 callback(RTCError::OK());
2741 break;
2742 case AddIceCandidateResult::kAddIceCandidateFailClosed:
2743 // Note that the spec says to just abort without resolving the
2744 // promise in this case, but this layer must return an RTCError.
2745 callback(RTCError(
2746 RTCErrorType::INVALID_STATE,
2747 "AddIceCandidate failed because the session was shut down"));
2748 break;
2749 case AddIceCandidateResult::kAddIceCandidateFailNoRemoteDescription:
2750 // Spec: "If remoteDescription is null return a promise rejected
2751 // with a newly created InvalidStateError."
2752 callback(RTCError(RTCErrorType::INVALID_STATE,
2753 "The remote description was null"));
2754 break;
2755 case AddIceCandidateResult::kAddIceCandidateFailNullCandidate:
2756 // TODO(https://crbug.com/935898): Handle end-of-candidates instead
2757 // of treating null candidate as an error.
2758 callback(RTCError(RTCErrorType::UNSUPPORTED_OPERATION,
2759 "Error processing ICE candidate"));
2760 break;
2761 case AddIceCandidateResult::kAddIceCandidateFailNotValid:
2762 case AddIceCandidateResult::kAddIceCandidateFailInAddition:
2763 case AddIceCandidateResult::kAddIceCandidateFailNotUsable:
2764 // Spec: "If candidate could not be successfully added [...] Reject
2765 // p with a newly created OperationError and abort these steps."
2766 // UNSUPPORTED_OPERATION maps to OperationError.
2767 callback(RTCError(RTCErrorType::UNSUPPORTED_OPERATION,
2768 "Error processing ICE candidate"));
2769 break;
2770 default:
2771 RTC_DCHECK_NOTREACHED();
Harald Alvestrandcdcfab02020-09-28 13:02:072772 }
Harald Alvestrandcdcfab02020-09-28 13:02:072773 });
2774}
2775
2776bool SdpOfferAnswerHandler::RemoveIceCandidates(
2777 const std::vector<cricket::Candidate>& candidates) {
2778 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::RemoveIceCandidates");
2779 RTC_DCHECK_RUN_ON(signaling_thread());
2780 if (pc_->IsClosed()) {
2781 RTC_LOG(LS_ERROR) << "RemoveIceCandidates: PeerConnection is closed.";
2782 return false;
2783 }
2784
2785 if (!remote_description()) {
2786 RTC_LOG(LS_ERROR) << "RemoveIceCandidates: ICE candidates can't be removed "
2787 "without any remote session description.";
2788 return false;
2789 }
2790
2791 if (candidates.empty()) {
2792 RTC_LOG(LS_ERROR) << "RemoveIceCandidates: candidates are empty.";
2793 return false;
2794 }
2795
2796 size_t number_removed =
2797 mutable_remote_description()->RemoveCandidates(candidates);
2798 if (number_removed != candidates.size()) {
2799 RTC_LOG(LS_ERROR)
2800 << "RemoveIceCandidates: Failed to remove candidates. Requested "
2801 << candidates.size() << " but only " << number_removed
2802 << " are removed.";
2803 }
2804
2805 // Remove the candidates from the transport controller.
Harald Alvestrandbc32c562022-02-09 12:08:472806 RTCError error = transport_controller_s()->RemoveRemoteCandidates(candidates);
Harald Alvestrandcdcfab02020-09-28 13:02:072807 if (!error.ok()) {
2808 RTC_LOG(LS_ERROR)
2809 << "RemoveIceCandidates: Error when removing remote candidates: "
2810 << error.message();
2811 }
2812 return true;
2813}
2814
2815void SdpOfferAnswerHandler::AddLocalIceCandidate(
2816 const JsepIceCandidate* candidate) {
2817 RTC_DCHECK_RUN_ON(signaling_thread());
2818 if (local_description()) {
2819 mutable_local_description()->AddCandidate(candidate);
2820 }
2821}
2822
2823void SdpOfferAnswerHandler::RemoveLocalIceCandidates(
2824 const std::vector<cricket::Candidate>& candidates) {
2825 RTC_DCHECK_RUN_ON(signaling_thread());
2826 if (local_description()) {
2827 mutable_local_description()->RemoveCandidates(candidates);
2828 }
2829}
2830
2831const SessionDescriptionInterface* SdpOfferAnswerHandler::local_description()
2832 const {
2833 RTC_DCHECK_RUN_ON(signaling_thread());
2834 return pending_local_description_ ? pending_local_description_.get()
2835 : current_local_description_.get();
2836}
2837
2838const SessionDescriptionInterface* SdpOfferAnswerHandler::remote_description()
2839 const {
2840 RTC_DCHECK_RUN_ON(signaling_thread());
2841 return pending_remote_description_ ? pending_remote_description_.get()
2842 : current_remote_description_.get();
2843}
2844
2845const SessionDescriptionInterface*
2846SdpOfferAnswerHandler::current_local_description() const {
2847 RTC_DCHECK_RUN_ON(signaling_thread());
2848 return current_local_description_.get();
2849}
2850
2851const SessionDescriptionInterface*
2852SdpOfferAnswerHandler::current_remote_description() const {
2853 RTC_DCHECK_RUN_ON(signaling_thread());
2854 return current_remote_description_.get();
2855}
2856
2857const SessionDescriptionInterface*
2858SdpOfferAnswerHandler::pending_local_description() const {
2859 RTC_DCHECK_RUN_ON(signaling_thread());
2860 return pending_local_description_.get();
2861}
2862
2863const SessionDescriptionInterface*
2864SdpOfferAnswerHandler::pending_remote_description() const {
2865 RTC_DCHECK_RUN_ON(signaling_thread());
2866 return pending_remote_description_.get();
2867}
2868
2869PeerConnectionInterface::SignalingState SdpOfferAnswerHandler::signaling_state()
2870 const {
2871 RTC_DCHECK_RUN_ON(signaling_thread());
2872 return signaling_state_;
2873}
2874
2875void SdpOfferAnswerHandler::ChangeSignalingState(
2876 PeerConnectionInterface::SignalingState signaling_state) {
Markus Handell518669d2021-06-07 11:30:462877 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::ChangeSignalingState");
Harald Alvestrandcdcfab02020-09-28 13:02:072878 RTC_DCHECK_RUN_ON(signaling_thread());
2879 if (signaling_state_ == signaling_state) {
2880 return;
2881 }
2882 RTC_LOG(LS_INFO) << "Session: " << pc_->session_id() << " Old state: "
Harald Alvestrand31b03e92021-11-02 10:54:382883 << PeerConnectionInterface::AsString(signaling_state_)
Harald Alvestrandcdcfab02020-09-28 13:02:072884 << " New state: "
Harald Alvestrand31b03e92021-11-02 10:54:382885 << PeerConnectionInterface::AsString(signaling_state);
Harald Alvestrandcdcfab02020-09-28 13:02:072886 signaling_state_ = signaling_state;
2887 pc_->Observer()->OnSignalingChange(signaling_state_);
2888}
2889
2890RTCError SdpOfferAnswerHandler::UpdateSessionState(
2891 SdpType type,
2892 cricket::ContentSource source,
Henrik Boströmf8187e02021-04-26 19:04:262893 const cricket::SessionDescription* description,
2894 const std::map<std::string, const cricket::ContentGroup*>&
2895 bundle_groups_by_mid) {
Harald Alvestrandcdcfab02020-09-28 13:02:072896 RTC_DCHECK_RUN_ON(signaling_thread());
2897
Tomas Gunnarsson1c7c09b2022-01-12 12:11:042898 // If there's already a pending error then no state transition should
2899 // happen. But all call-sites should be verifying this before calling us!
Harald Alvestranda474fbf2020-10-01 16:47:232900 RTC_DCHECK(session_error() == SessionError::kNone);
Harald Alvestrandcdcfab02020-09-28 13:02:072901
Taylor Brandstetterd0acbd82021-01-25 21:44:552902 // If this is answer-ish we're ready to let media flow.
2903 if (type == SdpType::kPrAnswer || type == SdpType::kAnswer) {
2904 EnableSending();
2905 }
2906
Harald Alvestrandcdcfab02020-09-28 13:02:072907 // Update the signaling state according to the specified state machine (see
2908 // https://w3c.github.io/webrtc-pc/#rtcsignalingstate-enum).
2909 if (type == SdpType::kOffer) {
2910 ChangeSignalingState(source == cricket::CS_LOCAL
2911 ? PeerConnectionInterface::kHaveLocalOffer
2912 : PeerConnectionInterface::kHaveRemoteOffer);
2913 } else if (type == SdpType::kPrAnswer) {
2914 ChangeSignalingState(source == cricket::CS_LOCAL
2915 ? PeerConnectionInterface::kHaveLocalPrAnswer
2916 : PeerConnectionInterface::kHaveRemotePrAnswer);
2917 } else {
Harald Alvestrandcdcfab02020-09-28 13:02:072918 RTC_DCHECK(type == SdpType::kAnswer);
2919 ChangeSignalingState(PeerConnectionInterface::kStable);
Harald Alvestrand8101e7b2022-05-23 14:57:472920 if (ConfiguredForMedia()) {
2921 transceivers()->DiscardStableStates();
2922 }
Harald Alvestrandcdcfab02020-09-28 13:02:072923 }
2924
2925 // Update internal objects according to the session description's media
2926 // descriptions.
Tommicc7a3682021-05-04 12:59:382927 return PushdownMediaDescription(type, source, bundle_groups_by_mid);
Harald Alvestrandcdcfab02020-09-28 13:02:072928}
2929
2930bool SdpOfferAnswerHandler::ShouldFireNegotiationNeededEvent(
2931 uint32_t event_id) {
2932 RTC_DCHECK_RUN_ON(signaling_thread());
2933 // Plan B? Always fire to conform with useless legacy behavior.
2934 if (!IsUnifiedPlan()) {
2935 return true;
2936 }
2937 // The event ID has been invalidated. Either negotiation is no longer needed
2938 // or a newer negotiation needed event has been generated.
2939 if (event_id != negotiation_needed_event_id_) {
2940 return false;
2941 }
2942 // The chain is no longer empty, update negotiation needed when it becomes
2943 // empty. This should generate a newer negotiation needed event, making this
2944 // one obsolete.
2945 if (!operations_chain_->IsEmpty()) {
2946 // Since we just suppressed an event that would have been fired, if
Tomas Gunnarsson1c7c09b2022-01-12 12:11:042947 // negotiation is still needed by the time the chain becomes empty again,
2948 // we must make sure to generate another event if negotiation is needed
2949 // then. This happens when `is_negotiation_needed_` goes from false to
2950 // true, so we set it to false until UpdateNegotiationNeeded() is called.
Harald Alvestrandcdcfab02020-09-28 13:02:072951 is_negotiation_needed_ = false;
2952 update_negotiation_needed_on_empty_chain_ = true;
2953 return false;
2954 }
2955 // We must not fire if the signaling state is no longer "stable". If
2956 // negotiation is still needed when we return to "stable", a new negotiation
2957 // needed event will be generated, so this one can safely be suppressed.
2958 if (signaling_state_ != PeerConnectionInterface::kStable) {
2959 return false;
2960 }
2961 // All checks have passed - please fire "negotiationneeded" now!
2962 return true;
2963}
2964
Harald Alvestrand6f04b6532020-10-09 11:42:172965rtc::scoped_refptr<StreamCollectionInterface>
2966SdpOfferAnswerHandler::local_streams() {
2967 RTC_DCHECK_RUN_ON(signaling_thread());
2968 RTC_CHECK(!IsUnifiedPlan()) << "local_streams is not available with Unified "
2969 "Plan SdpSemantics. Please use GetSenders "
2970 "instead.";
2971 return local_streams_;
2972}
2973
2974rtc::scoped_refptr<StreamCollectionInterface>
2975SdpOfferAnswerHandler::remote_streams() {
2976 RTC_DCHECK_RUN_ON(signaling_thread());
2977 RTC_CHECK(!IsUnifiedPlan()) << "remote_streams is not available with Unified "
2978 "Plan SdpSemantics. Please use GetReceivers "
2979 "instead.";
2980 return remote_streams_;
2981}
2982
2983bool SdpOfferAnswerHandler::AddStream(MediaStreamInterface* local_stream) {
2984 RTC_DCHECK_RUN_ON(signaling_thread());
2985 RTC_CHECK(!IsUnifiedPlan()) << "AddStream is not available with Unified Plan "
2986 "SdpSemantics. Please use AddTrack instead.";
2987 if (pc_->IsClosed()) {
2988 return false;
2989 }
Niels Möllerafb246b2022-04-20 12:26:502990 if (!CanAddLocalMediaStream(local_streams_.get(), local_stream)) {
Harald Alvestrand6f04b6532020-10-09 11:42:172991 return false;
2992 }
2993
Niels Möllere7cc8832022-01-04 14:20:032994 local_streams_->AddStream(
2995 rtc::scoped_refptr<MediaStreamInterface>(local_stream));
Mirko Bonadei9ff450d2021-08-02 08:56:332996 auto observer = std::make_unique<MediaStreamObserver>(
2997 local_stream,
2998 [this](AudioTrackInterface* audio_track,
2999 MediaStreamInterface* media_stream) {
3000 RTC_DCHECK_RUN_ON(signaling_thread());
3001 OnAudioTrackAdded(audio_track, media_stream);
3002 },
3003 [this](AudioTrackInterface* audio_track,
3004 MediaStreamInterface* media_stream) {
3005 RTC_DCHECK_RUN_ON(signaling_thread());
3006 OnAudioTrackRemoved(audio_track, media_stream);
3007 },
3008 [this](VideoTrackInterface* video_track,
3009 MediaStreamInterface* media_stream) {
3010 RTC_DCHECK_RUN_ON(signaling_thread());
3011 OnVideoTrackAdded(video_track, media_stream);
3012 },
3013 [this](VideoTrackInterface* video_track,
3014 MediaStreamInterface* media_stream) {
3015 RTC_DCHECK_RUN_ON(signaling_thread());
3016 OnVideoTrackRemoved(video_track, media_stream);
3017 });
3018 stream_observers_.push_back(std::move(observer));
Harald Alvestrand6f04b6532020-10-09 11:42:173019
3020 for (const auto& track : local_stream->GetAudioTracks()) {
Harald Alvestrande15fb152020-10-19 13:28:053021 rtp_manager()->AddAudioTrack(track.get(), local_stream);
Harald Alvestrand6f04b6532020-10-09 11:42:173022 }
3023 for (const auto& track : local_stream->GetVideoTracks()) {
Harald Alvestrande15fb152020-10-19 13:28:053024 rtp_manager()->AddVideoTrack(track.get(), local_stream);
Harald Alvestrand6f04b6532020-10-09 11:42:173025 }
3026
Henrik Boströmf7859892022-07-04 12:36:373027 pc_->legacy_stats()->AddStream(local_stream);
Harald Alvestrand6f04b6532020-10-09 11:42:173028 UpdateNegotiationNeeded();
3029 return true;
3030}
3031
3032void SdpOfferAnswerHandler::RemoveStream(MediaStreamInterface* local_stream) {
3033 RTC_DCHECK_RUN_ON(signaling_thread());
3034 RTC_CHECK(!IsUnifiedPlan()) << "RemoveStream is not available with Unified "
3035 "Plan SdpSemantics. Please use RemoveTrack "
3036 "instead.";
3037 TRACE_EVENT0("webrtc", "PeerConnection::RemoveStream");
3038 if (!pc_->IsClosed()) {
3039 for (const auto& track : local_stream->GetAudioTracks()) {
Harald Alvestrande15fb152020-10-19 13:28:053040 rtp_manager()->RemoveAudioTrack(track.get(), local_stream);
Harald Alvestrand6f04b6532020-10-09 11:42:173041 }
3042 for (const auto& track : local_stream->GetVideoTracks()) {
Harald Alvestrande15fb152020-10-19 13:28:053043 rtp_manager()->RemoveVideoTrack(track.get(), local_stream);
Harald Alvestrand6f04b6532020-10-09 11:42:173044 }
3045 }
3046 local_streams_->RemoveStream(local_stream);
3047 stream_observers_.erase(
3048 std::remove_if(
3049 stream_observers_.begin(), stream_observers_.end(),
3050 [local_stream](const std::unique_ptr<MediaStreamObserver>& observer) {
3051 return observer->stream()->id().compare(local_stream->id()) == 0;
3052 }),
3053 stream_observers_.end());
3054
3055 if (pc_->IsClosed()) {
3056 return;
3057 }
3058 UpdateNegotiationNeeded();
3059}
3060
Harald Alvestrand763f5a92020-10-22 10:39:403061void SdpOfferAnswerHandler::OnAudioTrackAdded(AudioTrackInterface* track,
3062 MediaStreamInterface* stream) {
3063 if (pc_->IsClosed()) {
3064 return;
3065 }
3066 rtp_manager()->AddAudioTrack(track, stream);
3067 UpdateNegotiationNeeded();
3068}
3069
3070void SdpOfferAnswerHandler::OnAudioTrackRemoved(AudioTrackInterface* track,
3071 MediaStreamInterface* stream) {
3072 if (pc_->IsClosed()) {
3073 return;
3074 }
3075 rtp_manager()->RemoveAudioTrack(track, stream);
3076 UpdateNegotiationNeeded();
3077}
3078
3079void SdpOfferAnswerHandler::OnVideoTrackAdded(VideoTrackInterface* track,
3080 MediaStreamInterface* stream) {
3081 if (pc_->IsClosed()) {
3082 return;
3083 }
3084 rtp_manager()->AddVideoTrack(track, stream);
3085 UpdateNegotiationNeeded();
3086}
3087
3088void SdpOfferAnswerHandler::OnVideoTrackRemoved(VideoTrackInterface* track,
3089 MediaStreamInterface* stream) {
3090 if (pc_->IsClosed()) {
3091 return;
3092 }
3093 rtp_manager()->RemoveVideoTrack(track, stream);
3094 UpdateNegotiationNeeded();
3095}
3096
Harald Alvestrandcdcfab02020-09-28 13:02:073097RTCError SdpOfferAnswerHandler::Rollback(SdpType desc_type) {
Markus Handell518669d2021-06-07 11:30:463098 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::Rollback");
Harald Alvestrandcdcfab02020-09-28 13:02:073099 auto state = signaling_state();
3100 if (state != PeerConnectionInterface::kHaveLocalOffer &&
3101 state != PeerConnectionInterface::kHaveRemoteOffer) {
Philipp Hanckeb81bf532023-07-18 09:03:393102 LOG_AND_RETURN_ERROR(
3103 RTCErrorType::INVALID_STATE,
3104 (rtc::StringBuilder("Called in wrong signalingState: ")
3105 << (PeerConnectionInterface::AsString(signaling_state())))
3106 .Release());
Harald Alvestrandcdcfab02020-09-28 13:02:073107 }
3108 RTC_DCHECK_RUN_ON(signaling_thread());
3109 RTC_DCHECK(IsUnifiedPlan());
Henrik Boström0a162762022-05-02 13:47:523110 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>>
3111 now_receiving_transceivers;
Harald Alvestrandcdcfab02020-09-28 13:02:073112 std::vector<rtc::scoped_refptr<MediaStreamInterface>> all_added_streams;
3113 std::vector<rtc::scoped_refptr<MediaStreamInterface>> all_removed_streams;
3114 std::vector<rtc::scoped_refptr<RtpReceiverInterface>> removed_receivers;
3115
Harald Alvestrande15fb152020-10-19 13:28:053116 for (auto&& transceivers_stable_state_pair : transceivers()->StableStates()) {
Harald Alvestrandcdcfab02020-09-28 13:02:073117 auto transceiver = transceivers_stable_state_pair.first;
3118 auto state = transceivers_stable_state_pair.second;
3119
Henrik Boström0a162762022-05-02 13:47:523120 if (state.did_set_fired_direction()) {
3121 // If this rollback triggers going from not receiving to receving again,
3122 // we need to fire "ontrack".
3123 bool previously_fired_direction_is_recv =
3124 transceiver->fired_direction().has_value() &&
3125 RtpTransceiverDirectionHasRecv(*transceiver->fired_direction());
3126 bool currently_fired_direction_is_recv =
3127 state.fired_direction().has_value() &&
3128 RtpTransceiverDirectionHasRecv(state.fired_direction().value());
3129 if (!previously_fired_direction_is_recv &&
3130 currently_fired_direction_is_recv) {
3131 now_receiving_transceivers.push_back(transceiver);
3132 }
3133 transceiver->internal()->set_fired_direction(state.fired_direction());
3134 }
3135
Harald Alvestrandcdcfab02020-09-28 13:02:073136 if (state.remote_stream_ids()) {
3137 std::vector<rtc::scoped_refptr<MediaStreamInterface>> added_streams;
3138 std::vector<rtc::scoped_refptr<MediaStreamInterface>> removed_streams;
3139 SetAssociatedRemoteStreams(transceiver->internal()->receiver_internal(),
3140 state.remote_stream_ids().value(),
3141 &added_streams, &removed_streams);
3142 all_added_streams.insert(all_added_streams.end(), added_streams.begin(),
3143 added_streams.end());
3144 all_removed_streams.insert(all_removed_streams.end(),
3145 removed_streams.begin(),
3146 removed_streams.end());
3147 if (!state.has_m_section() && !state.newly_created()) {
3148 continue;
3149 }
3150 }
3151
Henrik Boström0a162762022-05-02 13:47:523152 // Due to the above `continue` statement, the below code only runs if there
3153 // is a change in mid association (has_m_section), if the transceiver was
3154 // newly created (newly_created) or if remote streams were not set.
3155
Harald Alvestrandcdcfab02020-09-28 13:02:073156 RTC_DCHECK(transceiver->internal()->mid().has_value());
Harald Alvestrand19ebabc2022-04-28 13:31:173157 transceiver->internal()->ClearChannel();
Harald Alvestrandcdcfab02020-09-28 13:02:073158
3159 if (signaling_state() == PeerConnectionInterface::kHaveRemoteOffer &&
3160 transceiver->receiver()) {
3161 removed_receivers.push_back(transceiver->receiver());
3162 }
3163 if (state.newly_created()) {
3164 if (transceiver->internal()->reused_for_addtrack()) {
3165 transceiver->internal()->set_created_by_addtrack(true);
3166 } else {
Henrik Boströma8ad11d2022-04-27 09:54:013167 transceiver->internal()->StopTransceiverProcedure();
Harald Alvestrande15fb152020-10-19 13:28:053168 transceivers()->Remove(transceiver);
Harald Alvestrandcdcfab02020-09-28 13:02:073169 }
3170 }
Eldar Rello950d6b92021-04-06 19:38:003171 if (state.init_send_encodings()) {
3172 transceiver->internal()->sender_internal()->set_init_send_encodings(
3173 state.init_send_encodings().value());
3174 }
Harald Alvestrandcdcfab02020-09-28 13:02:073175 transceiver->internal()->sender_internal()->set_transport(nullptr);
3176 transceiver->internal()->receiver_internal()->set_transport(nullptr);
Florent Castellib3d424c2023-03-15 15:47:433177 if (state.has_m_section()) {
3178 transceiver->internal()->set_mid(state.mid());
3179 transceiver->internal()->set_mline_index(state.mline_index());
3180 }
Harald Alvestrandcdcfab02020-09-28 13:02:073181 }
Harald Alvestrandbc32c562022-02-09 12:08:473182 RTCError e = transport_controller_s()->RollbackTransports();
Taylor Brandstetter8591eff2021-08-11 21:56:383183 if (!e.ok()) {
3184 return e;
3185 }
Harald Alvestrande15fb152020-10-19 13:28:053186 transceivers()->DiscardStableStates();
Harald Alvestrandcdcfab02020-09-28 13:02:073187 pending_local_description_.reset();
3188 pending_remote_description_.reset();
3189 ChangeSignalingState(PeerConnectionInterface::kStable);
3190
3191 // Once all processing has finished, fire off callbacks.
Henrik Boström0a162762022-05-02 13:47:523192 for (const auto& transceiver : now_receiving_transceivers) {
3193 pc_->Observer()->OnTrack(transceiver);
3194 pc_->Observer()->OnAddTrack(transceiver->receiver(),
3195 transceiver->receiver()->streams());
3196 }
Harald Alvestrandcdcfab02020-09-28 13:02:073197 for (const auto& receiver : removed_receivers) {
3198 pc_->Observer()->OnRemoveTrack(receiver);
3199 }
3200 for (const auto& stream : all_added_streams) {
3201 pc_->Observer()->OnAddStream(stream);
3202 }
3203 for (const auto& stream : all_removed_streams) {
3204 pc_->Observer()->OnRemoveStream(stream);
3205 }
3206
Tomas Gunnarsson1c7c09b2022-01-12 12:11:043207 // The assumption is that in case of implicit rollback
3208 // UpdateNegotiationNeeded gets called in SetRemoteDescription.
Harald Alvestrandcdcfab02020-09-28 13:02:073209 if (desc_type == SdpType::kRollback) {
3210 UpdateNegotiationNeeded();
3211 if (is_negotiation_needed_) {
3212 // Legacy version.
3213 pc_->Observer()->OnRenegotiationNeeded();
3214 // Spec-compliant version; the event may get invalidated before firing.
3215 GenerateNegotiationNeededEvent();
3216 }
3217 }
3218 return RTCError::OK();
3219}
3220
3221bool SdpOfferAnswerHandler::IsUnifiedPlan() const {
Harald Alvestrandcdcfab02020-09-28 13:02:073222 return pc_->IsUnifiedPlan();
3223}
3224
3225void SdpOfferAnswerHandler::OnOperationsChainEmpty() {
3226 RTC_DCHECK_RUN_ON(signaling_thread());
3227 if (pc_->IsClosed() || !update_negotiation_needed_on_empty_chain_)
3228 return;
3229 update_negotiation_needed_on_empty_chain_ = false;
Tomas Gunnarsson1c7c09b2022-01-12 12:11:043230 // Firing when chain is empty is only supported in Unified Plan to avoid
3231 // Plan B regressions. (In Plan B, onnegotiationneeded is already broken
3232 // anyway, so firing it even more might just be confusing.)
Harald Alvestrandcdcfab02020-09-28 13:02:073233 if (IsUnifiedPlan()) {
3234 UpdateNegotiationNeeded();
3235 }
3236}
3237
Tommi335d0842023-03-25 09:56:183238absl::optional<bool> SdpOfferAnswerHandler::is_caller() const {
Harald Alvestrandcdcfab02020-09-28 13:02:073239 RTC_DCHECK_RUN_ON(signaling_thread());
3240 return is_caller_;
3241}
3242
3243bool SdpOfferAnswerHandler::HasNewIceCredentials() {
3244 RTC_DCHECK_RUN_ON(signaling_thread());
3245 return local_ice_credentials_to_replace_->HasIceCredentials();
3246}
3247
3248bool SdpOfferAnswerHandler::IceRestartPending(
3249 const std::string& content_name) const {
3250 RTC_DCHECK_RUN_ON(signaling_thread());
3251 return pending_ice_restarts_.find(content_name) !=
3252 pending_ice_restarts_.end();
3253}
3254
Harald Alvestrandf01bd6c2020-10-23 13:30:463255bool SdpOfferAnswerHandler::NeedsIceRestart(
3256 const std::string& content_name) const {
Tommic3257d02021-02-10 17:40:083257 return pc_->NeedsIceRestart(content_name);
Harald Alvestrandf01bd6c2020-10-23 13:30:463258}
3259
3260absl::optional<rtc::SSLRole> SdpOfferAnswerHandler::GetDtlsRole(
3261 const std::string& mid) const {
Harald Alvestrandbc32c562022-02-09 12:08:473262 RTC_DCHECK_RUN_ON(signaling_thread());
3263 return transport_controller_s()->GetDtlsRole(mid);
Harald Alvestrandf01bd6c2020-10-23 13:30:463264}
3265
Harald Alvestrandcdcfab02020-09-28 13:02:073266void SdpOfferAnswerHandler::UpdateNegotiationNeeded() {
3267 RTC_DCHECK_RUN_ON(signaling_thread());
3268 if (!IsUnifiedPlan()) {
3269 pc_->Observer()->OnRenegotiationNeeded();
3270 GenerateNegotiationNeededEvent();
3271 return;
3272 }
3273
3274 // In the spec, a task is queued here to run the following steps - this is
Tomas Gunnarsson1c7c09b2022-01-12 12:11:043275 // meant to ensure we do not fire onnegotiationneeded prematurely if
3276 // multiple changes are being made at once. In order to support Chromium's
Harald Alvestrandcdcfab02020-09-28 13:02:073277 // implementation where the JavaScript representation of the PeerConnection
3278 // lives on a separate thread though, the queuing of a task is instead
3279 // performed by the PeerConnectionObserver posting from the signaling thread
3280 // to the JavaScript main thread that negotiation is needed. And because the
3281 // Operations Chain lives on the WebRTC signaling thread,
3282 // ShouldFireNegotiationNeededEvent() must be called before firing the event
3283 // to ensure the Operations Chain is still empty and the event has not been
3284 // invalidated.
3285
3286 // If connection's [[IsClosed]] slot is true, abort these steps.
3287 if (pc_->IsClosed())
3288 return;
3289
3290 // If connection's signaling state is not "stable", abort these steps.
3291 if (signaling_state() != PeerConnectionInterface::kStable)
3292 return;
3293
3294 // NOTE
3295 // The negotiation-needed flag will be updated once the state transitions to
3296 // "stable", as part of the steps for setting an RTCSessionDescription.
3297
3298 // If the result of checking if negotiation is needed is false, clear the
Tomas Gunnarsson1c7c09b2022-01-12 12:11:043299 // negotiation-needed flag by setting connection's [[NegotiationNeeded]]
3300 // slot to false, and abort these steps.
Harald Alvestrandcdcfab02020-09-28 13:02:073301 bool is_negotiation_needed = CheckIfNegotiationIsNeeded();
3302 if (!is_negotiation_needed) {
3303 is_negotiation_needed_ = false;
3304 // Invalidate any negotiation needed event that may previosuly have been
3305 // generated.
3306 ++negotiation_needed_event_id_;
3307 return;
3308 }
3309
3310 // If connection's [[NegotiationNeeded]] slot is already true, abort these
3311 // steps.
3312 if (is_negotiation_needed_)
3313 return;
3314
3315 // Set connection's [[NegotiationNeeded]] slot to true.
3316 is_negotiation_needed_ = true;
3317
3318 // Queue a task that runs the following steps:
3319 // If connection's [[IsClosed]] slot is true, abort these steps.
3320 // If connection's [[NegotiationNeeded]] slot is false, abort these steps.
3321 // Fire an event named negotiationneeded at connection.
3322 pc_->Observer()->OnRenegotiationNeeded();
Tomas Gunnarsson1c7c09b2022-01-12 12:11:043323 // Fire the spec-compliant version; when ShouldFireNegotiationNeededEvent()
3324 // is used in the task queued by the observer, this event will only fire
3325 // when the chain is empty.
Harald Alvestrandcdcfab02020-09-28 13:02:073326 GenerateNegotiationNeededEvent();
3327}
3328
Tommic61eee22023-03-22 07:25:383329void SdpOfferAnswerHandler::AllocateSctpSids() {
3330 RTC_DCHECK_RUN_ON(signaling_thread());
3331 if (!local_description() || !remote_description()) {
3332 RTC_DLOG(LS_VERBOSE)
3333 << "Local and Remote descriptions must be applied to get the "
3334 "SSL Role of the SCTP transport.";
3335 return;
3336 }
3337
Tommif9e13f82023-04-06 19:21:453338 absl::optional<rtc::SSLRole> guessed_role = GuessSslRole();
3339 network_thread()->BlockingCall(
3340 [&, data_channel_controller = data_channel_controller()] {
3341 RTC_DCHECK_RUN_ON(network_thread());
3342 absl::optional<rtc::SSLRole> role = pc_->GetSctpSslRole_n();
3343 if (!role)
3344 role = guessed_role;
3345 if (role)
3346 data_channel_controller->AllocateSctpSids(*role);
3347 });
Tommic61eee22023-03-22 07:25:383348}
3349
Tommi335d0842023-03-25 09:56:183350absl::optional<rtc::SSLRole> SdpOfferAnswerHandler::GuessSslRole() const {
3351 RTC_DCHECK_RUN_ON(signaling_thread());
3352 if (!pc_->sctp_mid())
3353 return absl::nullopt;
3354
3355 // TODO(bugs.webrtc.org/13668): This guesswork is guessing wrong (returning
3356 // SSL_CLIENT = ACTIVE) if remote offer has role ACTIVE, but we'll be able
3357 // to detect that by looking at the SDP.
3358 //
3359 // The phases of establishing an SCTP session are:
3360 //
3361 // Offerer:
3362 //
3363 // * Before negotiation: Neither is_caller nor sctp_mid exists.
3364 // * After setting an offer as local description: is_caller is known (true),
3365 // sctp_mid is known, but we don't know the SSL role for sure (or if we'll
3366 // eventually get an SCTP session).
3367 // * After setting an answer as the remote description: We know is_caller,
3368 // sctp_mid and that we'll get the SCTP channel established (m-section
3369 // wasn't rejected).
3370 // * Special case: The SCTP m-section was rejected: Close datachannels.
3371 // * We MAY know the SSL role if we offered actpass and got back active or
3372 // passive; if the other end is a webrtc implementation, it will be active.
3373 // * After the TLS handshake: We have a definitive answer on the SSL role.
3374 //
3375 // Answerer:
3376 //
3377 // * After setting an offer as remote description: We know is_caller (false).
3378 // * If there was an SCTP session, we know the SCTP mid. We also know the
3379 // SSL role, since if the remote offer was actpass or passive, we'll answer
3380 // active, and if the remote offer was active, we're passive.
3381 // * Special case: No SCTP m= line. We don't know for sure if the remote
3382 // doesn't support it or just didn't offer it. Not sure what we do in this
3383 // case (logic would suggest fire a `negotiationneeded` event and generate a
3384 // subsequent offer, but this needs to be tested).
3385 // * After the TLS handshake: We know that TLS obeyed the protocol. There
3386 // should be an error surfaced somewhere if it didn't.
3387 // * "Guessing" should always be correct if we get an SCTP session and are not
3388 // the offerer.
3389
3390 return is_caller() ? rtc::SSL_SERVER : rtc::SSL_CLIENT;
3391}
3392
Harald Alvestrandcdcfab02020-09-28 13:02:073393bool SdpOfferAnswerHandler::CheckIfNegotiationIsNeeded() {
3394 RTC_DCHECK_RUN_ON(signaling_thread());
Tomas Gunnarsson1c7c09b2022-01-12 12:11:043395 // 1. If any implementation-specific negotiation is required, as described
3396 // at the start of this section, return true.
Harald Alvestrandcdcfab02020-09-28 13:02:073397
3398 // 2. If connection.[[LocalIceCredentialsToReplace]] is not empty, return
3399 // true.
3400 if (local_ice_credentials_to_replace_->HasIceCredentials()) {
3401 return true;
3402 }
3403
3404 // 3. Let description be connection.[[CurrentLocalDescription]].
3405 const SessionDescriptionInterface* description = current_local_description();
3406 if (!description)
3407 return true;
3408
3409 // 4. If connection has created any RTCDataChannels, and no m= section in
3410 // description has been negotiated yet for data, return true.
Tommi91160ef2023-03-29 23:09:453411 if (data_channel_controller()->HasUsedDataChannels()) {
Philipp Hancke522380f2023-05-09 07:41:033412 const cricket::ContentInfo* data_content =
3413 cricket::GetFirstDataContent(description->description()->contents());
3414 if (!data_content) {
Harald Alvestrandcdcfab02020-09-28 13:02:073415 return true;
Philipp Hancke522380f2023-05-09 07:41:033416 }
3417 // The remote end might have rejected the data content.
3418 const cricket::ContentInfo* remote_data_content =
3419 current_remote_description()
3420 ? current_remote_description()->description()->GetContentByName(
3421 data_content->name)
3422 : nullptr;
3423 if (remote_data_content && remote_data_content->rejected) {
3424 return true;
3425 }
Harald Alvestrandcdcfab02020-09-28 13:02:073426 }
Harald Alvestrand8101e7b2022-05-23 14:57:473427 if (!ConfiguredForMedia()) {
3428 return false;
3429 }
Harald Alvestrandcdcfab02020-09-28 13:02:073430
3431 // 5. For each transceiver in connection's set of transceivers, perform the
3432 // following checks:
Harald Alvestrand85466662021-04-19 21:21:363433 for (const auto& transceiver : transceivers()->ListInternal()) {
Harald Alvestrandcdcfab02020-09-28 13:02:073434 const ContentInfo* current_local_msection =
Harald Alvestrand85466662021-04-19 21:21:363435 FindTransceiverMSection(transceiver, description);
Harald Alvestrandcdcfab02020-09-28 13:02:073436
Harald Alvestrand85466662021-04-19 21:21:363437 const ContentInfo* current_remote_msection =
3438 FindTransceiverMSection(transceiver, current_remote_description());
Harald Alvestrandcdcfab02020-09-28 13:02:073439
3440 // 5.4 If transceiver is stopped and is associated with an m= section,
3441 // but the associated m= section is not yet rejected in
3442 // connection.[[CurrentLocalDescription]] or
3443 // connection.[[CurrentRemoteDescription]], return true.
3444 if (transceiver->stopped()) {
3445 RTC_DCHECK(transceiver->stopping());
3446 if (current_local_msection && !current_local_msection->rejected &&
3447 ((current_remote_msection && !current_remote_msection->rejected) ||
3448 !current_remote_msection)) {
3449 return true;
3450 }
3451 continue;
3452 }
3453
3454 // 5.1 If transceiver.[[Stopping]] is true and transceiver.[[Stopped]] is
3455 // false, return true.
3456 if (transceiver->stopping() && !transceiver->stopped())
3457 return true;
3458
3459 // 5.2 If transceiver isn't stopped and isn't yet associated with an m=
3460 // section in description, return true.
3461 if (!current_local_msection)
3462 return true;
3463
3464 const MediaContentDescription* current_local_media_description =
3465 current_local_msection->media_description();
3466 // 5.3 If transceiver isn't stopped and is associated with an m= section
3467 // in description then perform the following checks:
3468
3469 // 5.3.1 If transceiver.[[Direction]] is "sendrecv" or "sendonly", and the
3470 // associated m= section in description either doesn't contain a single
3471 // "a=msid" line, or the number of MSIDs from the "a=msid" lines in this
3472 // m= section, or the MSID values themselves, differ from what is in
3473 // transceiver.sender.[[AssociatedMediaStreamIds]], return true.
3474 if (RtpTransceiverDirectionHasSend(transceiver->direction())) {
3475 if (current_local_media_description->streams().size() == 0)
3476 return true;
3477
3478 std::vector<std::string> msection_msids;
3479 for (const auto& stream : current_local_media_description->streams()) {
3480 for (const std::string& msid : stream.stream_ids())
3481 msection_msids.push_back(msid);
3482 }
3483
3484 std::vector<std::string> transceiver_msids =
3485 transceiver->sender()->stream_ids();
3486 if (msection_msids.size() != transceiver_msids.size())
3487 return true;
3488
3489 absl::c_sort(transceiver_msids);
3490 absl::c_sort(msection_msids);
3491 if (transceiver_msids != msection_msids)
3492 return true;
3493 }
3494
3495 // 5.3.2 If description is of type "offer", and the direction of the
3496 // associated m= section in neither connection.[[CurrentLocalDescription]]
3497 // nor connection.[[CurrentRemoteDescription]] matches
3498 // transceiver.[[Direction]], return true.
3499 if (description->GetType() == SdpType::kOffer) {
3500 if (!current_remote_description())
3501 return true;
3502
3503 if (!current_remote_msection)
3504 return true;
3505
3506 RtpTransceiverDirection current_local_direction =
3507 current_local_media_description->direction();
3508 RtpTransceiverDirection current_remote_direction =
3509 current_remote_msection->media_description()->direction();
3510 if (transceiver->direction() != current_local_direction &&
3511 transceiver->direction() !=
3512 RtpTransceiverDirectionReversed(current_remote_direction)) {
3513 return true;
3514 }
3515 }
3516
3517 // 5.3.3 If description is of type "answer", and the direction of the
3518 // associated m= section in the description does not match
3519 // transceiver.[[Direction]] intersected with the offered direction (as
3520 // described in [JSEP] (section 5.3.1.)), return true.
3521 if (description->GetType() == SdpType::kAnswer) {
3522 if (!remote_description())
3523 return true;
3524
3525 const ContentInfo* offered_remote_msection =
Harald Alvestrand85466662021-04-19 21:21:363526 FindTransceiverMSection(transceiver, remote_description());
Harald Alvestrandcdcfab02020-09-28 13:02:073527
3528 RtpTransceiverDirection offered_direction =
3529 offered_remote_msection
3530 ? offered_remote_msection->media_description()->direction()
3531 : RtpTransceiverDirection::kInactive;
3532
3533 if (current_local_media_description->direction() !=
3534 (RtpTransceiverDirectionIntersection(
3535 transceiver->direction(),
3536 RtpTransceiverDirectionReversed(offered_direction)))) {
3537 return true;
3538 }
3539 }
3540 }
Harald Alvestrandcdcfab02020-09-28 13:02:073541 // If all the preceding checks were performed and true was not returned,
3542 // nothing remains to be negotiated; return false.
3543 return false;
3544}
3545
3546void SdpOfferAnswerHandler::GenerateNegotiationNeededEvent() {
3547 RTC_DCHECK_RUN_ON(signaling_thread());
3548 ++negotiation_needed_event_id_;
3549 pc_->Observer()->OnNegotiationNeededEvent(negotiation_needed_event_id_);
3550}
3551
3552RTCError SdpOfferAnswerHandler::ValidateSessionDescription(
3553 const SessionDescriptionInterface* sdesc,
Henrik Boströmf8187e02021-04-26 19:04:263554 cricket::ContentSource source,
3555 const std::map<std::string, const cricket::ContentGroup*>&
3556 bundle_groups_by_mid) {
Tomas Gunnarsson1c7c09b2022-01-12 12:11:043557 // An assumption is that a check for session error is done at a higher level.
3558 RTC_DCHECK_EQ(SessionError::kNone, session_error());
Harald Alvestrandcdcfab02020-09-28 13:02:073559
3560 if (!sdesc || !sdesc->description()) {
Philipp Hanckeb81bf532023-07-18 09:03:393561 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, kInvalidSdp);
Harald Alvestrandcdcfab02020-09-28 13:02:073562 }
3563
3564 SdpType type = sdesc->GetType();
Harald Alvestrandc06e3742020-10-01 10:23:333565 if ((source == cricket::CS_LOCAL && !ExpectSetLocalDescription(type)) ||
3566 (source == cricket::CS_REMOTE && !ExpectSetRemoteDescription(type))) {
Philipp Hanckeb81bf532023-07-18 09:03:393567 LOG_AND_RETURN_ERROR(
3568 RTCErrorType::INVALID_STATE,
3569 (rtc::StringBuilder("Called in wrong state: ")
3570 << PeerConnectionInterface::AsString(signaling_state()))
3571 .Release());
Harald Alvestrandcdcfab02020-09-28 13:02:073572 }
3573
3574 RTCError error = ValidateMids(*sdesc->description());
3575 if (!error.ok()) {
3576 return error;
3577 }
3578
3579 // Verify crypto settings.
3580 std::string crypto_error;
Harald Alvestrand0d018412021-11-04 13:52:313581 if (webrtc_session_desc_factory_->SdesPolicy() == cricket::SEC_REQUIRED ||
3582 pc_->dtls_enabled()) {
3583 RTCError crypto_error = VerifyCrypto(
3584 sdesc->description(), pc_->dtls_enabled(), bundle_groups_by_mid);
Harald Alvestrandcdcfab02020-09-28 13:02:073585 if (!crypto_error.ok()) {
3586 return crypto_error;
3587 }
3588 }
3589
3590 // Verify ice-ufrag and ice-pwd.
Henrik Boströmf8187e02021-04-26 19:04:263591 if (!VerifyIceUfragPwdPresent(sdesc->description(), bundle_groups_by_mid)) {
Philipp Hanckeb81bf532023-07-18 09:03:393592 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
3593 kSdpWithoutIceUfragPwd);
Harald Alvestrandcdcfab02020-09-28 13:02:073594 }
3595
Philipp Hanckea2f5d452022-12-19 10:04:063596 // Validate that there are no collisions of bundled payload types.
Philipp Hanckef0ea56a2022-11-28 16:48:043597 error = ValidateBundledPayloadTypes(*sdesc->description());
3598 // TODO(bugs.webrtc.org/14420): actually reject.
3599 RTC_HISTOGRAM_BOOLEAN("WebRTC.PeerConnection.ValidBundledPayloadTypes",
3600 error.ok());
3601
Philipp Hanckea2f5d452022-12-19 10:04:063602 // Validate that there are no collisions of bundled header extensions ids.
3603 error = ValidateBundledRtpHeaderExtensions(*sdesc->description());
Philipp Hancke745641e2023-08-22 14:05:383604 if (!error.ok()) {
Philipp Hancke4bf52382023-05-25 14:11:363605 return error;
3606 }
Philipp Hanckea2f5d452022-12-19 10:04:063607
Philipp Hancke1f1b0b32023-08-11 07:32:503608 // TODO(crbug.com/1459124): remove killswitch after rollout.
3609 error = ValidateSsrcGroups(*sdesc->description());
3610 if (!error.ok() &&
3611 !pc_->trials().IsDisabled("WebRTC-PreventSsrcGroupsWithUnexpectedSize")) {
3612 return error;
3613 }
3614
Henrik Boströmf8187e02021-04-26 19:04:263615 if (!pc_->ValidateBundleSettings(sdesc->description(),
3616 bundle_groups_by_mid)) {
Philipp Hanckeb81bf532023-07-18 09:03:393617 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
3618 kBundleWithoutRtcpMux);
Harald Alvestrandcdcfab02020-09-28 13:02:073619 }
3620
Philipp Hanckeb64615a2023-09-14 14:23:313621 error = ValidatePayloadTypes(*sdesc->description());
3622 if (!error.ok()) {
3623 return error;
3624 }
3625
Harald Alvestrandcdcfab02020-09-28 13:02:073626 // TODO(skvlad): When the local rtcp-mux policy is Require, reject any
3627 // m-lines that do not rtcp-mux enabled.
3628
3629 // Verify m-lines in Answer when compared against Offer.
3630 if (type == SdpType::kPrAnswer || type == SdpType::kAnswer) {
Tomas Gunnarsson1c7c09b2022-01-12 12:11:043631 // With an answer we want to compare the new answer session description
3632 // with the offer's session description from the current negotiation.
Harald Alvestrandcdcfab02020-09-28 13:02:073633 const cricket::SessionDescription* offer_desc =
3634 (source == cricket::CS_LOCAL) ? remote_description()->description()
3635 : local_description()->description();
3636 if (!MediaSectionsHaveSameCount(*offer_desc, *sdesc->description()) ||
3637 !MediaSectionsInSameOrder(*offer_desc, nullptr, *sdesc->description(),
3638 type)) {
Philipp Hanckeb81bf532023-07-18 09:03:393639 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
3640 kMlineMismatchInAnswer);
Harald Alvestrandcdcfab02020-09-28 13:02:073641 }
3642 } else {
3643 // The re-offers should respect the order of m= sections in current
3644 // description. See RFC3264 Section 8 paragraph 4 for more details.
Tomas Gunnarsson1c7c09b2022-01-12 12:11:043645 // With a re-offer, either the current local or current remote
3646 // descriptions could be the most up to date, so we would like to check
3647 // against both of them if they exist. It could be the case that one of
3648 // them has a 0 port for a media section, but the other does not. This is
3649 // important to check against in the case that we are recycling an m=
3650 // section.
Harald Alvestrandcdcfab02020-09-28 13:02:073651 const cricket::SessionDescription* current_desc = nullptr;
3652 const cricket::SessionDescription* secondary_current_desc = nullptr;
3653 if (local_description()) {
3654 current_desc = local_description()->description();
3655 if (remote_description()) {
3656 secondary_current_desc = remote_description()->description();
3657 }
3658 } else if (remote_description()) {
3659 current_desc = remote_description()->description();
3660 }
3661 if (current_desc &&
3662 !MediaSectionsInSameOrder(*current_desc, secondary_current_desc,
3663 *sdesc->description(), type)) {
Philipp Hanckeb81bf532023-07-18 09:03:393664 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
3665 kMlineMismatchInSubsequentOffer);
Harald Alvestrandcdcfab02020-09-28 13:02:073666 }
3667 }
3668
3669 if (IsUnifiedPlan()) {
3670 // Ensure that each audio and video media section has at most one
3671 // "StreamParams". This will return an error if receiving a session
3672 // description from a "Plan B" endpoint which adds multiple tracks of the
3673 // same type. With Unified Plan, there can only be at most one track per
3674 // media section.
3675 for (const ContentInfo& content : sdesc->description()->contents()) {
3676 const MediaContentDescription& desc = *content.media_description();
3677 if ((desc.type() == cricket::MEDIA_TYPE_AUDIO ||
3678 desc.type() == cricket::MEDIA_TYPE_VIDEO) &&
3679 desc.streams().size() > 1u) {
Philipp Hanckeb81bf532023-07-18 09:03:393680 LOG_AND_RETURN_ERROR(
Tomas Gunnarsson0dd75392022-01-17 18:19:563681 RTCErrorType::INVALID_PARAMETER,
3682 "Media section has more than one track specified with a=ssrc lines "
3683 "which is not supported with Unified Plan.");
Harald Alvestrandcdcfab02020-09-28 13:02:073684 }
3685 }
Philipp Hancke34887262023-06-01 17:07:503686 // Validate spec-simulcast which only works if the remote end negotiated the
3687 // mid and rid header extension.
3688 error = ValidateRtpHeaderExtensionsForSpecSimulcast(*sdesc->description());
3689 if (!error.ok()) {
3690 return error;
3691 }
Harald Alvestrandcdcfab02020-09-28 13:02:073692 }
3693
3694 return RTCError::OK();
3695}
3696
3697RTCError SdpOfferAnswerHandler::UpdateTransceiversAndDataChannels(
3698 cricket::ContentSource source,
3699 const SessionDescriptionInterface& new_session,
3700 const SessionDescriptionInterface* old_local_description,
Henrik Boströmf8187e02021-04-26 19:04:263701 const SessionDescriptionInterface* old_remote_description,
3702 const std::map<std::string, const cricket::ContentGroup*>&
3703 bundle_groups_by_mid) {
Markus Handell518669d2021-06-07 11:30:463704 TRACE_EVENT0("webrtc",
3705 "SdpOfferAnswerHandler::UpdateTransceiversAndDataChannels");
Harald Alvestrandcdcfab02020-09-28 13:02:073706 RTC_DCHECK_RUN_ON(signaling_thread());
3707 RTC_DCHECK(IsUnifiedPlan());
3708
Harald Alvestrandcdcfab02020-09-28 13:02:073709 if (new_session.GetType() == SdpType::kOffer) {
Henrik Boströmf8187e02021-04-26 19:04:263710 // If the BUNDLE policy is max-bundle, then we know for sure that all
Tomas Gunnarsson1c7c09b2022-01-12 12:11:043711 // transports will be bundled from the start. Return an error if
3712 // max-bundle is specified but the session description does not have a
3713 // BUNDLE group.
Henrik Boströmf8187e02021-04-26 19:04:263714 if (pc_->configuration()->bundle_policy ==
3715 PeerConnectionInterface::kBundlePolicyMaxBundle &&
3716 bundle_groups_by_mid.empty()) {
Philipp Hanckeb81bf532023-07-18 09:03:393717 LOG_AND_RETURN_ERROR(
Tomas Gunnarsson0dd75392022-01-17 18:19:563718 RTCErrorType::INVALID_PARAMETER,
3719 "max-bundle configured but session description has no BUNDLE group");
Harald Alvestrandcdcfab02020-09-28 13:02:073720 }
Harald Alvestrandcdcfab02020-09-28 13:02:073721 }
3722
3723 const ContentInfos& new_contents = new_session.description()->contents();
3724 for (size_t i = 0; i < new_contents.size(); ++i) {
3725 const cricket::ContentInfo& new_content = new_contents[i];
3726 cricket::MediaType media_type = new_content.media_description()->type();
Harald Alvestrandbc9ca252020-10-05 13:08:413727 mid_generator_.AddKnownId(new_content.name);
Henrik Boströmf8187e02021-04-26 19:04:263728 auto it = bundle_groups_by_mid.find(new_content.name);
3729 const cricket::ContentGroup* bundle_group =
3730 it != bundle_groups_by_mid.end() ? it->second : nullptr;
Harald Alvestrandcdcfab02020-09-28 13:02:073731 if (media_type == cricket::MEDIA_TYPE_AUDIO ||
3732 media_type == cricket::MEDIA_TYPE_VIDEO) {
3733 const cricket::ContentInfo* old_local_content = nullptr;
3734 if (old_local_description &&
3735 i < old_local_description->description()->contents().size()) {
3736 old_local_content =
3737 &old_local_description->description()->contents()[i];
3738 }
3739 const cricket::ContentInfo* old_remote_content = nullptr;
3740 if (old_remote_description &&
3741 i < old_remote_description->description()->contents().size()) {
3742 old_remote_content =
3743 &old_remote_description->description()->contents()[i];
3744 }
Harald Alvestrandcdcfab02020-09-28 13:02:073745 auto transceiver_or_error =
3746 AssociateTransceiver(source, new_session.GetType(), i, new_content,
3747 old_local_content, old_remote_content);
3748 if (!transceiver_or_error.ok()) {
Henrik Boströma8ad11d2022-04-27 09:54:013749 // In the case where a transceiver is rejected locally prior to being
3750 // associated, we don't expect to find a transceiver, but might find it
3751 // in the case where state is still "stopping", not "stopped".
Harald Alvestrand09bd9ba2020-10-09 08:13:303752 if (new_content.rejected) {
3753 continue;
3754 }
Harald Alvestrandcdcfab02020-09-28 13:02:073755 return transceiver_or_error.MoveError();
3756 }
3757 auto transceiver = transceiver_or_error.MoveValue();
3758 RTCError error =
3759 UpdateTransceiverChannel(transceiver, new_content, bundle_group);
Henrik Boströma8ad11d2022-04-27 09:54:013760 // Handle locally rejected content. This code path is only needed for apps
3761 // that SDP munge. Remote rejected content is handled in
3762 // ApplyRemoteDescriptionUpdateTransceiverState().
3763 if (source == cricket::ContentSource::CS_LOCAL && new_content.rejected) {
3764 // Local offer.
3765 if (new_session.GetType() == SdpType::kOffer) {
3766 // If the RtpTransceiver API was used, it would already have made the
3767 // transceiver stopping. But if the rejection was caused by SDP
3768 // munging then we need to ensure the transceiver is stopping here.
3769 if (!transceiver->internal()->stopping()) {
3770 transceiver->internal()->StopStandard();
3771 }
3772 RTC_DCHECK(transceiver->internal()->stopping());
3773 } else {
3774 // Local answer.
3775 RTC_DCHECK(new_session.GetType() == SdpType::kAnswer ||
3776 new_session.GetType() == SdpType::kPrAnswer);
3777 // When RtpTransceiver API is used, rejection happens in the offer and
3778 // the transceiver will already be stopped at local answer time
3779 // (calling stop between SRD(offer) and SLD(answer) would not reject
3780 // the content in the answer - instead this would trigger a follow-up
3781 // O/A exchange). So if the content was rejected but the transceiver
3782 // is not already stopped, SDP munging has happened and we need to
3783 // ensure the transceiver is stopped.
3784 if (!transceiver->internal()->stopped()) {
3785 transceiver->internal()->StopTransceiverProcedure();
3786 }
3787 RTC_DCHECK(transceiver->internal()->stopped());
3788 }
3789 }
Harald Alvestrandcdcfab02020-09-28 13:02:073790 if (!error.ok()) {
3791 return error;
3792 }
3793 } else if (media_type == cricket::MEDIA_TYPE_DATA) {
3794 if (pc_->GetDataMid() && new_content.name != *(pc_->GetDataMid())) {
3795 // Ignore all but the first data section.
3796 RTC_LOG(LS_INFO) << "Ignoring data media section with MID="
3797 << new_content.name;
3798 continue;
3799 }
3800 RTCError error = UpdateDataChannel(source, new_content, bundle_group);
3801 if (!error.ok()) {
3802 return error;
3803 }
Philipp Hancke4e8c1152020-10-13 10:43:153804 } else if (media_type == cricket::MEDIA_TYPE_UNSUPPORTED) {
3805 RTC_LOG(LS_INFO) << "Ignoring unsupported media type";
Harald Alvestrandcdcfab02020-09-28 13:02:073806 } else {
Philipp Hanckeb81bf532023-07-18 09:03:393807 LOG_AND_RETURN_ERROR(RTCErrorType::INTERNAL_ERROR,
3808 "Unknown section type.");
Harald Alvestrandcdcfab02020-09-28 13:02:073809 }
3810 }
3811
3812 return RTCError::OK();
3813}
3814
3815RTCErrorOr<rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
3816SdpOfferAnswerHandler::AssociateTransceiver(
3817 cricket::ContentSource source,
3818 SdpType type,
3819 size_t mline_index,
3820 const ContentInfo& content,
3821 const ContentInfo* old_local_content,
3822 const ContentInfo* old_remote_content) {
Markus Handell518669d2021-06-07 11:30:463823 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::AssociateTransceiver");
Harald Alvestrandcdcfab02020-09-28 13:02:073824 RTC_DCHECK(IsUnifiedPlan());
Tomas Gunnarsson36992362020-10-05 19:41:363825#if RTC_DCHECK_IS_ON
Harald Alvestrandcdcfab02020-09-28 13:02:073826 // If this is an offer then the m= section might be recycled. If the m=
3827 // section is being recycled (defined as: rejected in the current local or
3828 // remote description and not rejected in new description), the transceiver
Harald Alvestrande15fb152020-10-19 13:28:053829 // should have been removed by RemoveStoppedtransceivers()->
Harald Alvestrandcdcfab02020-09-28 13:02:073830 if (IsMediaSectionBeingRecycled(type, content, old_local_content,
3831 old_remote_content)) {
3832 const std::string& old_mid =
3833 (old_local_content && old_local_content->rejected)
3834 ? old_local_content->name
3835 : old_remote_content->name;
Harald Alvestrande15fb152020-10-19 13:28:053836 auto old_transceiver = transceivers()->FindByMid(old_mid);
Harald Alvestrandcdcfab02020-09-28 13:02:073837 // The transceiver should be disassociated in RemoveStoppedTransceivers()
3838 RTC_DCHECK(!old_transceiver);
3839 }
Tomas Gunnarsson36992362020-10-05 19:41:363840#endif
3841
Harald Alvestrandcdcfab02020-09-28 13:02:073842 const MediaContentDescription* media_desc = content.media_description();
Harald Alvestrande15fb152020-10-19 13:28:053843 auto transceiver = transceivers()->FindByMid(content.name);
Harald Alvestrandcdcfab02020-09-28 13:02:073844 if (source == cricket::CS_LOCAL) {
3845 // Find the RtpTransceiver that corresponds to this m= section, using the
3846 // mapping between transceivers and m= section indices established when
3847 // creating the offer.
3848 if (!transceiver) {
Harald Alvestrande15fb152020-10-19 13:28:053849 transceiver = transceivers()->FindByMLineIndex(mline_index);
Harald Alvestrandcdcfab02020-09-28 13:02:073850 }
3851 if (!transceiver) {
Harald Alvestrand09bd9ba2020-10-09 08:13:303852 // This may happen normally when media sections are rejected.
Philipp Hanckeb81bf532023-07-18 09:03:393853 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
3854 "Transceiver not found based on m-line index");
Harald Alvestrandcdcfab02020-09-28 13:02:073855 }
3856 } else {
3857 RTC_DCHECK_EQ(source, cricket::CS_REMOTE);
3858 // If the m= section is sendrecv or recvonly, and there are RtpTransceivers
3859 // of the same type...
3860 // When simulcast is requested, a transceiver cannot be associated because
3861 // AddTrack cannot be called to initialize it.
3862 if (!transceiver &&
3863 RtpTransceiverDirectionHasRecv(media_desc->direction()) &&
3864 !media_desc->HasSimulcast()) {
Harald Alvestrandc06e3742020-10-01 10:23:333865 transceiver = FindAvailableTransceiverToReceive(media_desc->type());
Harald Alvestrandcdcfab02020-09-28 13:02:073866 }
3867 // If no RtpTransceiver was found in the previous step, create one with a
3868 // recvonly direction.
3869 if (!transceiver) {
3870 RTC_LOG(LS_INFO) << "Adding "
3871 << cricket::MediaTypeToString(media_desc->type())
3872 << " transceiver for MID=" << content.name
3873 << " at i=" << mline_index
3874 << " in response to the remote description.";
3875 std::string sender_id = rtc::CreateRandomUuid();
3876 std::vector<RtpEncodingParameters> send_encodings =
3877 GetSendEncodingsFromRemoteDescription(*media_desc);
Harald Alvestrande15fb152020-10-19 13:28:053878 auto sender = rtp_manager()->CreateSender(media_desc->type(), sender_id,
3879 nullptr, {}, send_encodings);
Harald Alvestrandcdcfab02020-09-28 13:02:073880 std::string receiver_id;
3881 if (!media_desc->streams().empty()) {
3882 receiver_id = media_desc->streams()[0].id;
3883 } else {
3884 receiver_id = rtc::CreateRandomUuid();
3885 }
Harald Alvestrande15fb152020-10-19 13:28:053886 auto receiver =
3887 rtp_manager()->CreateReceiver(media_desc->type(), receiver_id);
3888 transceiver = rtp_manager()->CreateAndAddTransceiver(sender, receiver);
Harald Alvestrandcdcfab02020-09-28 13:02:073889 transceiver->internal()->set_direction(
3890 RtpTransceiverDirection::kRecvOnly);
3891 if (type == SdpType::kOffer) {
Harald Alvestrande15fb152020-10-19 13:28:053892 transceivers()->StableState(transceiver)->set_newly_created();
Harald Alvestrandcdcfab02020-09-28 13:02:073893 }
3894 }
Tomas Gunnarsson36992362020-10-05 19:41:363895
3896 RTC_DCHECK(transceiver);
3897
Harald Alvestrandcdcfab02020-09-28 13:02:073898 // Check if the offer indicated simulcast but the answer rejected it.
3899 // This can happen when simulcast is not supported on the remote party.
Lennart Grahl0d0ed762021-05-17 14:06:373900 if (SimulcastIsRejected(old_local_content, *media_desc,
3901 pc_->GetCryptoOptions()
3902 .srtp.enable_encrypted_rtp_header_extensions)) {
Harald Alvestrandcdcfab02020-09-28 13:02:073903 RTCError error =
3904 DisableSimulcastInSender(transceiver->internal()->sender_internal());
3905 if (!error.ok()) {
3906 RTC_LOG(LS_ERROR) << "Failed to remove rejected simulcast.";
3907 return std::move(error);
3908 }
3909 }
3910 }
Tomas Gunnarsson36992362020-10-05 19:41:363911
Harald Alvestrandcdcfab02020-09-28 13:02:073912 if (transceiver->media_type() != media_desc->type()) {
Philipp Hanckeb81bf532023-07-18 09:03:393913 LOG_AND_RETURN_ERROR(
3914 RTCErrorType::INVALID_PARAMETER,
3915 "Transceiver type does not match media description type.");
Harald Alvestrandcdcfab02020-09-28 13:02:073916 }
Tomas Gunnarsson36992362020-10-05 19:41:363917
Harald Alvestrandcdcfab02020-09-28 13:02:073918 if (media_desc->HasSimulcast()) {
3919 std::vector<SimulcastLayer> layers =
3920 source == cricket::CS_LOCAL
3921 ? media_desc->simulcast_description().send_layers().GetAllLayers()
3922 : media_desc->simulcast_description()
3923 .receive_layers()
3924 .GetAllLayers();
3925 RTCError error = UpdateSimulcastLayerStatusInSender(
3926 layers, transceiver->internal()->sender_internal());
3927 if (!error.ok()) {
3928 RTC_LOG(LS_ERROR) << "Failed updating status for simulcast layers.";
3929 return std::move(error);
3930 }
3931 }
3932 if (type == SdpType::kOffer) {
3933 bool state_changes = transceiver->internal()->mid() != content.name ||
3934 transceiver->internal()->mline_index() != mline_index;
3935 if (state_changes) {
Harald Alvestrandbc9ca252020-10-05 13:08:413936 transceivers()
Harald Alvestrande15fb152020-10-19 13:28:053937 ->StableState(transceiver)
Harald Alvestrand38b768c2020-09-29 11:54:053938 ->SetMSectionIfUnset(transceiver->internal()->mid(),
3939 transceiver->internal()->mline_index());
Harald Alvestrandcdcfab02020-09-28 13:02:073940 }
3941 }
3942 // Associate the found or created RtpTransceiver with the m= section by
3943 // setting the value of the RtpTransceiver's mid property to the MID of the m=
3944 // section, and establish a mapping between the transceiver and the index of
3945 // the m= section.
3946 transceiver->internal()->set_mid(content.name);
3947 transceiver->internal()->set_mline_index(mline_index);
3948 return std::move(transceiver);
3949}
3950
Harald Alvestrandcdcfab02020-09-28 13:02:073951RTCError SdpOfferAnswerHandler::UpdateTransceiverChannel(
3952 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
3953 transceiver,
3954 const cricket::ContentInfo& content,
3955 const cricket::ContentGroup* bundle_group) {
Markus Handell518669d2021-06-07 11:30:463956 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::UpdateTransceiverChannel");
Harald Alvestrandcdcfab02020-09-28 13:02:073957 RTC_DCHECK(IsUnifiedPlan());
3958 RTC_DCHECK(transceiver);
3959 cricket::ChannelInterface* channel = transceiver->internal()->channel();
3960 if (content.rejected) {
3961 if (channel) {
Harald Alvestrand19ebabc2022-04-28 13:31:173962 transceiver->internal()->ClearChannel();
Harald Alvestrandcdcfab02020-09-28 13:02:073963 }
3964 } else {
3965 if (!channel) {
Harald Alvestrand8f429922022-05-04 10:32:303966 auto error = transceiver->internal()->CreateChannel(
3967 content.name, pc_->call_ptr(), pc_->configuration()->media_config,
3968 pc_->SrtpRequired(), pc_->GetCryptoOptions(), audio_options(),
3969 video_options(), video_bitrate_allocator_factory_.get(),
3970 [&](absl::string_view mid) {
Harald Alvestrand3af79d12022-04-29 15:04:583971 RTC_DCHECK_RUN_ON(network_thread());
3972 return transport_controller_n()->GetRtpTransport(mid);
3973 });
Harald Alvestrand8f429922022-05-04 10:32:303974 if (!error.ok()) {
3975 return error;
3976 }
Harald Alvestrandcdcfab02020-09-28 13:02:073977 }
3978 }
3979 return RTCError::OK();
3980}
3981
3982RTCError SdpOfferAnswerHandler::UpdateDataChannel(
3983 cricket::ContentSource source,
3984 const cricket::ContentInfo& content,
3985 const cricket::ContentGroup* bundle_group) {
Harald Alvestrandcdcfab02020-09-28 13:02:073986 if (content.rejected) {
Florent Castellidcb9ffc2021-06-29 12:58:233987 RTC_LOG(LS_INFO) << "Rejected data channel transport with mid="
3988 << content.mid();
3989
3990 rtc::StringBuilder sb;
3991 sb << "Rejected data channel transport with mid=" << content.mid();
3992 RTCError error(RTCErrorType::OPERATION_ERROR_WITH_DATA, sb.Release());
3993 error.set_error_detail(RTCErrorDetailType::DATA_CHANNEL_FAILURE);
3994 DestroyDataChannelTransport(error);
Tommiadd7ac02023-04-12 10:01:103995 } else if (!CreateDataChannel(content.name)) {
Philipp Hanckeb81bf532023-07-18 09:03:393996 LOG_AND_RETURN_ERROR(RTCErrorType::INTERNAL_ERROR,
3997 "Failed to create data channel.");
Harald Alvestrandcdcfab02020-09-28 13:02:073998 }
3999 return RTCError::OK();
4000}
4001
Harald Alvestrandc06e3742020-10-01 10:23:334002bool SdpOfferAnswerHandler::ExpectSetLocalDescription(SdpType type) {
4003 PeerConnectionInterface::SignalingState state = signaling_state();
4004 if (type == SdpType::kOffer) {
4005 return (state == PeerConnectionInterface::kStable) ||
4006 (state == PeerConnectionInterface::kHaveLocalOffer);
4007 } else {
4008 RTC_DCHECK(type == SdpType::kPrAnswer || type == SdpType::kAnswer);
4009 return (state == PeerConnectionInterface::kHaveRemoteOffer) ||
4010 (state == PeerConnectionInterface::kHaveLocalPrAnswer);
4011 }
4012}
4013
4014bool SdpOfferAnswerHandler::ExpectSetRemoteDescription(SdpType type) {
4015 PeerConnectionInterface::SignalingState state = signaling_state();
4016 if (type == SdpType::kOffer) {
4017 return (state == PeerConnectionInterface::kStable) ||
4018 (state == PeerConnectionInterface::kHaveRemoteOffer);
4019 } else {
4020 RTC_DCHECK(type == SdpType::kPrAnswer || type == SdpType::kAnswer);
4021 return (state == PeerConnectionInterface::kHaveLocalOffer) ||
4022 (state == PeerConnectionInterface::kHaveRemotePrAnswer);
4023 }
4024}
4025
4026void SdpOfferAnswerHandler::FillInMissingRemoteMids(
4027 cricket::SessionDescription* new_remote_description) {
4028 RTC_DCHECK_RUN_ON(signaling_thread());
4029 RTC_DCHECK(new_remote_description);
4030 const cricket::ContentInfos no_infos;
4031 const cricket::ContentInfos& local_contents =
4032 (local_description() ? local_description()->description()->contents()
4033 : no_infos);
4034 const cricket::ContentInfos& remote_contents =
4035 (remote_description() ? remote_description()->description()->contents()
4036 : no_infos);
4037 for (size_t i = 0; i < new_remote_description->contents().size(); ++i) {
4038 cricket::ContentInfo& content = new_remote_description->contents()[i];
4039 if (!content.name.empty()) {
4040 continue;
4041 }
4042 std::string new_mid;
4043 absl::string_view source_explanation;
4044 if (IsUnifiedPlan()) {
4045 if (i < local_contents.size()) {
4046 new_mid = local_contents[i].name;
4047 source_explanation = "from the matching local media section";
4048 } else if (i < remote_contents.size()) {
4049 new_mid = remote_contents[i].name;
4050 source_explanation = "from the matching previous remote media section";
4051 } else {
Harald Alvestrandbc9ca252020-10-05 13:08:414052 new_mid = mid_generator_.GenerateString();
Harald Alvestrandc06e3742020-10-01 10:23:334053 source_explanation = "generated just now";
4054 }
4055 } else {
4056 new_mid = std::string(
4057 GetDefaultMidForPlanB(content.media_description()->type()));
4058 source_explanation = "to match pre-existing behavior";
4059 }
4060 RTC_DCHECK(!new_mid.empty());
4061 content.name = new_mid;
4062 new_remote_description->transport_infos()[i].content_name = new_mid;
4063 RTC_LOG(LS_INFO) << "SetRemoteDescription: Remote media section at i=" << i
4064 << " is missing an a=mid line. Filling in the value '"
4065 << new_mid << "' " << source_explanation << ".";
4066 }
4067}
4068
4069rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
4070SdpOfferAnswerHandler::FindAvailableTransceiverToReceive(
4071 cricket::MediaType media_type) const {
4072 RTC_DCHECK_RUN_ON(signaling_thread());
4073 RTC_DCHECK(IsUnifiedPlan());
4074 // From JSEP section 5.10 (Applying a Remote Description):
4075 // If the m= section is sendrecv or recvonly, and there are RtpTransceivers of
4076 // the same type that were added to the PeerConnection by addTrack and are not
4077 // associated with any m= section and are not stopped, find the first such
4078 // RtpTransceiver.
Harald Alvestrande15fb152020-10-19 13:28:054079 for (auto transceiver : transceivers()->List()) {
Harald Alvestrandc06e3742020-10-01 10:23:334080 if (transceiver->media_type() == media_type &&
4081 transceiver->internal()->created_by_addtrack() && !transceiver->mid() &&
4082 !transceiver->stopped()) {
4083 return transceiver;
4084 }
4085 }
4086 return nullptr;
4087}
4088
4089const cricket::ContentInfo*
4090SdpOfferAnswerHandler::FindMediaSectionForTransceiver(
Harald Alvestrand85466662021-04-19 21:21:364091 const RtpTransceiver* transceiver,
Harald Alvestrandc06e3742020-10-01 10:23:334092 const SessionDescriptionInterface* sdesc) const {
4093 RTC_DCHECK_RUN_ON(signaling_thread());
4094 RTC_DCHECK(transceiver);
4095 RTC_DCHECK(sdesc);
4096 if (IsUnifiedPlan()) {
Harald Alvestrand85466662021-04-19 21:21:364097 if (!transceiver->mid()) {
Harald Alvestrandc06e3742020-10-01 10:23:334098 // This transceiver is not associated with a media section yet.
4099 return nullptr;
4100 }
Harald Alvestrand85466662021-04-19 21:21:364101 return sdesc->description()->GetContentByName(*transceiver->mid());
Harald Alvestrandc06e3742020-10-01 10:23:334102 } else {
4103 // Plan B only allows at most one audio and one video section, so use the
4104 // first media section of that type.
4105 return cricket::GetFirstMediaContent(sdesc->description()->contents(),
4106 transceiver->media_type());
4107 }
4108}
4109
4110void SdpOfferAnswerHandler::GetOptionsForOffer(
4111 const PeerConnectionInterface::RTCOfferAnswerOptions& offer_answer_options,
4112 cricket::MediaSessionOptions* session_options) {
4113 RTC_DCHECK_RUN_ON(signaling_thread());
4114 ExtractSharedMediaSessionOptions(offer_answer_options, session_options);
4115
4116 if (IsUnifiedPlan()) {
4117 GetOptionsForUnifiedPlanOffer(offer_answer_options, session_options);
4118 } else {
4119 GetOptionsForPlanBOffer(offer_answer_options, session_options);
4120 }
4121
Harald Alvestrandc06e3742020-10-01 10:23:334122 // Apply ICE restart flag and renomination flag.
4123 bool ice_restart = offer_answer_options.ice_restart || HasNewIceCredentials();
4124 for (auto& options : session_options->media_description_options) {
4125 options.transport_options.ice_restart = ice_restart;
4126 options.transport_options.enable_ice_renomination =
4127 pc_->configuration()->enable_ice_renomination;
4128 }
4129
Harald Alvestrandbc9ca252020-10-05 13:08:414130 session_options->rtcp_cname = rtcp_cname_;
Harald Alvestrandc06e3742020-10-01 10:23:334131 session_options->crypto_options = pc_->GetCryptoOptions();
4132 session_options->pooled_ice_credentials =
Danil Chapovalov9e09a1f2022-09-08 16:38:104133 context_->network_thread()->BlockingCall(
Niels Möller4bab23f2021-01-18 08:24:334134 [this] { return port_allocator()->GetPooledIceCredentials(); });
Harald Alvestrandc06e3742020-10-01 10:23:334135 session_options->offer_extmap_allow_mixed =
4136 pc_->configuration()->offer_extmap_allow_mixed;
4137
4138 // Allow fallback for using obsolete SCTP syntax.
Artem Titov880fa812021-07-30 20:30:234139 // Note that the default in `session_options` is true, while
4140 // the default in `options` is false.
Harald Alvestrandc06e3742020-10-01 10:23:334141 session_options->use_obsolete_sctp_sdp =
4142 offer_answer_options.use_obsolete_sctp_sdp;
4143}
4144
4145void SdpOfferAnswerHandler::GetOptionsForPlanBOffer(
4146 const PeerConnectionInterface::RTCOfferAnswerOptions& offer_answer_options,
4147 cricket::MediaSessionOptions* session_options) {
Harald Alvestrand8101e7b2022-05-23 14:57:474148 bool offer_new_data_description =
Harald Alvestrand5da3eb02023-03-15 20:39:424149 data_channel_controller()->HasUsedDataChannels();
Harald Alvestrand8101e7b2022-05-23 14:57:474150 bool send_audio = false;
4151 bool send_video = false;
4152 bool recv_audio = false;
4153 bool recv_video = false;
4154 if (ConfiguredForMedia()) {
4155 // Figure out transceiver directional preferences.
4156 send_audio =
4157 !rtp_manager()->GetAudioTransceiver()->internal()->senders().empty();
4158 send_video =
4159 !rtp_manager()->GetVideoTransceiver()->internal()->senders().empty();
Harald Alvestrandc06e3742020-10-01 10:23:334160
Harald Alvestrand8101e7b2022-05-23 14:57:474161 // By default, generate sendrecv/recvonly m= sections.
4162 recv_audio = true;
4163 recv_video = true;
4164 }
Harald Alvestrandc06e3742020-10-01 10:23:334165 // By default, only offer a new m= section if we have media to send with it.
4166 bool offer_new_audio_description = send_audio;
4167 bool offer_new_video_description = send_video;
Harald Alvestrand8101e7b2022-05-23 14:57:474168 if (ConfiguredForMedia()) {
4169 // The "offer_to_receive_X" options allow those defaults to be overridden.
4170 if (offer_answer_options.offer_to_receive_audio !=
4171 PeerConnectionInterface::RTCOfferAnswerOptions::kUndefined) {
4172 recv_audio = (offer_answer_options.offer_to_receive_audio > 0);
4173 offer_new_audio_description =
4174 offer_new_audio_description ||
4175 (offer_answer_options.offer_to_receive_audio > 0);
4176 }
4177 if (offer_answer_options.offer_to_receive_video !=
4178 RTCOfferAnswerOptions::kUndefined) {
4179 recv_video = (offer_answer_options.offer_to_receive_video > 0);
4180 offer_new_video_description =
4181 offer_new_video_description ||
4182 (offer_answer_options.offer_to_receive_video > 0);
4183 }
Harald Alvestrandc06e3742020-10-01 10:23:334184 }
Harald Alvestrandc06e3742020-10-01 10:23:334185 absl::optional<size_t> audio_index;
4186 absl::optional<size_t> video_index;
4187 absl::optional<size_t> data_index;
4188 // If a current description exists, generate m= sections in the same order,
4189 // using the first audio/video/data section that appears and rejecting
4190 // extraneous ones.
4191 if (local_description()) {
Harald Alvestrandbc9ca252020-10-05 13:08:414192 GenerateMediaDescriptionOptions(
Harald Alvestrandc06e3742020-10-01 10:23:334193 local_description(),
4194 RtpTransceiverDirectionFromSendRecv(send_audio, recv_audio),
4195 RtpTransceiverDirectionFromSendRecv(send_video, recv_video),
4196 &audio_index, &video_index, &data_index, session_options);
4197 }
4198
Harald Alvestrand8101e7b2022-05-23 14:57:474199 if (ConfiguredForMedia()) {
4200 // Add audio/video/data m= sections to the end if needed.
4201 if (!audio_index && offer_new_audio_description) {
4202 cricket::MediaDescriptionOptions options(
4203 cricket::MEDIA_TYPE_AUDIO, cricket::CN_AUDIO,
4204 RtpTransceiverDirectionFromSendRecv(send_audio, recv_audio), false);
4205 options.header_extensions =
4206 media_engine()->voice().GetRtpHeaderExtensions();
4207 session_options->media_description_options.push_back(options);
4208 audio_index = session_options->media_description_options.size() - 1;
4209 }
4210 if (!video_index && offer_new_video_description) {
4211 cricket::MediaDescriptionOptions options(
4212 cricket::MEDIA_TYPE_VIDEO, cricket::CN_VIDEO,
4213 RtpTransceiverDirectionFromSendRecv(send_video, recv_video), false);
4214 options.header_extensions =
4215 media_engine()->video().GetRtpHeaderExtensions();
4216 session_options->media_description_options.push_back(options);
4217 video_index = session_options->media_description_options.size() - 1;
4218 }
4219 cricket::MediaDescriptionOptions* audio_media_description_options =
4220 !audio_index
4221 ? nullptr
4222 : &session_options->media_description_options[*audio_index];
4223 cricket::MediaDescriptionOptions* video_media_description_options =
4224 !video_index
4225 ? nullptr
4226 : &session_options->media_description_options[*video_index];
4227
4228 AddPlanBRtpSenderOptions(rtp_manager()->GetSendersInternal(),
4229 audio_media_description_options,
4230 video_media_description_options,
4231 offer_answer_options.num_simulcast_layers);
Harald Alvestrandc06e3742020-10-01 10:23:334232 }
4233 if (!data_index && offer_new_data_description) {
4234 session_options->media_description_options.push_back(
Harald Alvestrandbc9ca252020-10-05 13:08:414235 GetMediaDescriptionOptionsForActiveData(cricket::CN_DATA));
Harald Alvestrandc06e3742020-10-01 10:23:334236 }
Harald Alvestrandc06e3742020-10-01 10:23:334237}
4238
4239void SdpOfferAnswerHandler::GetOptionsForUnifiedPlanOffer(
4240 const RTCOfferAnswerOptions& offer_answer_options,
4241 cricket::MediaSessionOptions* session_options) {
4242 // Rules for generating an offer are dictated by JSEP sections 5.2.1 (Initial
4243 // Offers) and 5.2.2 (Subsequent Offers).
4244 RTC_DCHECK_EQ(session_options->media_description_options.size(), 0);
4245 const ContentInfos no_infos;
4246 const ContentInfos& local_contents =
4247 (local_description() ? local_description()->description()->contents()
4248 : no_infos);
4249 const ContentInfos& remote_contents =
4250 (remote_description() ? remote_description()->description()->contents()
4251 : no_infos);
4252 // The mline indices that can be recycled. New transceivers should reuse these
4253 // slots first.
4254 std::queue<size_t> recycleable_mline_indices;
4255 // First, go through each media section that exists in either the local or
4256 // remote description and generate a media section in this offer for the
4257 // associated transceiver. If a media section can be recycled, generate a
4258 // default, rejected media section here that can be later overwritten.
4259 for (size_t i = 0;
4260 i < std::max(local_contents.size(), remote_contents.size()); ++i) {
Artem Titov880fa812021-07-30 20:30:234261 // Either `local_content` or `remote_content` is non-null.
Harald Alvestrandc06e3742020-10-01 10:23:334262 const ContentInfo* local_content =
4263 (i < local_contents.size() ? &local_contents[i] : nullptr);
4264 const ContentInfo* current_local_content =
4265 GetContentByIndex(current_local_description(), i);
4266 const ContentInfo* remote_content =
4267 (i < remote_contents.size() ? &remote_contents[i] : nullptr);
4268 const ContentInfo* current_remote_content =
4269 GetContentByIndex(current_remote_description(), i);
4270 bool had_been_rejected =
4271 (current_local_content && current_local_content->rejected) ||
4272 (current_remote_content && current_remote_content->rejected);
4273 const std::string& mid =
4274 (local_content ? local_content->name : remote_content->name);
4275 cricket::MediaType media_type =
4276 (local_content ? local_content->media_description()->type()
4277 : remote_content->media_description()->type());
4278 if (media_type == cricket::MEDIA_TYPE_AUDIO ||
4279 media_type == cricket::MEDIA_TYPE_VIDEO) {
4280 // A media section is considered eligible for recycling if it is marked as
4281 // rejected in either the current local or current remote description.
Harald Alvestrande15fb152020-10-19 13:28:054282 auto transceiver = transceivers()->FindByMid(mid);
Harald Alvestrandc06e3742020-10-01 10:23:334283 if (!transceiver) {
4284 // No associated transceiver. The media section has been stopped.
4285 recycleable_mline_indices.push(i);
4286 session_options->media_description_options.push_back(
4287 cricket::MediaDescriptionOptions(media_type, mid,
4288 RtpTransceiverDirection::kInactive,
4289 /*stopped=*/true));
4290 } else {
4291 // NOTE: a stopping transceiver should be treated as a stopped one in
4292 // createOffer as specified in
4293 // https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-createoffer.
4294 if (had_been_rejected && transceiver->stopping()) {
4295 session_options->media_description_options.push_back(
4296 cricket::MediaDescriptionOptions(
4297 transceiver->media_type(), mid,
4298 RtpTransceiverDirection::kInactive,
4299 /*stopped=*/true));
4300 recycleable_mline_indices.push(i);
4301 } else {
4302 session_options->media_description_options.push_back(
4303 GetMediaDescriptionOptionsForTransceiver(
Harald Alvestrand85466662021-04-19 21:21:364304 transceiver->internal(), mid,
Harald Alvestrandc06e3742020-10-01 10:23:334305 /*is_create_offer=*/true));
4306 // CreateOffer shouldn't really cause any state changes in
4307 // PeerConnection, but we need a way to match new transceivers to new
4308 // media sections in SetLocalDescription and JSEP specifies this is
4309 // done by recording the index of the media section generated for the
4310 // transceiver in the offer.
4311 transceiver->internal()->set_mline_index(i);
4312 }
4313 }
Philipp Hancke4e8c1152020-10-13 10:43:154314 } else if (media_type == cricket::MEDIA_TYPE_UNSUPPORTED) {
4315 RTC_DCHECK(local_content->rejected);
4316 session_options->media_description_options.push_back(
4317 cricket::MediaDescriptionOptions(media_type, mid,
4318 RtpTransceiverDirection::kInactive,
4319 /*stopped=*/true));
Harald Alvestrandc06e3742020-10-01 10:23:334320 } else {
4321 RTC_CHECK_EQ(cricket::MEDIA_TYPE_DATA, media_type);
4322 if (had_been_rejected) {
4323 session_options->media_description_options.push_back(
Harald Alvestrandbc9ca252020-10-05 13:08:414324 GetMediaDescriptionOptionsForRejectedData(mid));
Harald Alvestrandc06e3742020-10-01 10:23:334325 } else {
4326 RTC_CHECK(pc_->GetDataMid());
4327 if (mid == *(pc_->GetDataMid())) {
4328 session_options->media_description_options.push_back(
Harald Alvestrandbc9ca252020-10-05 13:08:414329 GetMediaDescriptionOptionsForActiveData(mid));
Harald Alvestrandc06e3742020-10-01 10:23:334330 } else {
4331 session_options->media_description_options.push_back(
Harald Alvestrandbc9ca252020-10-05 13:08:414332 GetMediaDescriptionOptionsForRejectedData(mid));
Harald Alvestrandc06e3742020-10-01 10:23:334333 }
4334 }
4335 }
4336 }
4337
4338 // Next, look for transceivers that are newly added (that is, are not stopped
4339 // and not associated). Reuse media sections marked as recyclable first,
4340 // otherwise append to the end of the offer. New media sections should be
4341 // added in the order they were added to the PeerConnection.
Harald Alvestrand8101e7b2022-05-23 14:57:474342 if (ConfiguredForMedia()) {
4343 for (const auto& transceiver : transceivers()->ListInternal()) {
4344 if (transceiver->mid() || transceiver->stopping()) {
4345 continue;
4346 }
4347 size_t mline_index;
4348 if (!recycleable_mline_indices.empty()) {
4349 mline_index = recycleable_mline_indices.front();
4350 recycleable_mline_indices.pop();
4351 session_options->media_description_options[mline_index] =
4352 GetMediaDescriptionOptionsForTransceiver(
4353 transceiver, mid_generator_.GenerateString(),
4354 /*is_create_offer=*/true);
4355 } else {
4356 mline_index = session_options->media_description_options.size();
4357 session_options->media_description_options.push_back(
4358 GetMediaDescriptionOptionsForTransceiver(
4359 transceiver, mid_generator_.GenerateString(),
4360 /*is_create_offer=*/true));
4361 }
4362 // See comment above for why CreateOffer changes the transceiver's state.
4363 transceiver->set_mline_index(mline_index);
Harald Alvestrandc06e3742020-10-01 10:23:334364 }
Harald Alvestrandc06e3742020-10-01 10:23:334365 }
Harald Alvestrand5da3eb02023-03-15 20:39:424366 // Lastly, add a m-section if we have requested local data channels and an
4367 // m section does not already exist.
Tommi44ebe2a2023-05-15 13:14:104368 if (!pc_->GetDataMid() && data_channel_controller()->HasDataChannels()) {
Philipp Hancke522380f2023-05-09 07:41:034369 // Attempt to recycle a stopped m-line.
4370 // TODO(crbug.com/1442604): GetDataMid() should return the mid if one was
4371 // ever created but rejected.
4372 bool recycled = false;
4373 for (size_t i = 0; i < session_options->media_description_options.size();
4374 i++) {
4375 auto media_description = session_options->media_description_options[i];
4376 if (media_description.type == cricket::MEDIA_TYPE_DATA &&
4377 media_description.stopped) {
4378 session_options->media_description_options[i] =
4379 GetMediaDescriptionOptionsForActiveData(media_description.mid);
4380 recycled = true;
4381 break;
4382 }
4383 }
4384 if (!recycled) {
4385 session_options->media_description_options.push_back(
4386 GetMediaDescriptionOptionsForActiveData(
4387 mid_generator_.GenerateString()));
4388 }
Harald Alvestrandc06e3742020-10-01 10:23:334389 }
4390}
4391
4392void SdpOfferAnswerHandler::GetOptionsForAnswer(
4393 const RTCOfferAnswerOptions& offer_answer_options,
4394 cricket::MediaSessionOptions* session_options) {
4395 RTC_DCHECK_RUN_ON(signaling_thread());
4396 ExtractSharedMediaSessionOptions(offer_answer_options, session_options);
4397
4398 if (IsUnifiedPlan()) {
4399 GetOptionsForUnifiedPlanAnswer(offer_answer_options, session_options);
4400 } else {
4401 GetOptionsForPlanBAnswer(offer_answer_options, session_options);
4402 }
4403
Harald Alvestrandc06e3742020-10-01 10:23:334404 // Apply ICE renomination flag.
4405 for (auto& options : session_options->media_description_options) {
4406 options.transport_options.enable_ice_renomination =
4407 pc_->configuration()->enable_ice_renomination;
4408 }
4409
Harald Alvestrandbc9ca252020-10-05 13:08:414410 session_options->rtcp_cname = rtcp_cname_;
Harald Alvestrandc06e3742020-10-01 10:23:334411 session_options->crypto_options = pc_->GetCryptoOptions();
4412 session_options->pooled_ice_credentials =
Danil Chapovalov9e09a1f2022-09-08 16:38:104413 context_->network_thread()->BlockingCall(
Niels Möller4bab23f2021-01-18 08:24:334414 [this] { return port_allocator()->GetPooledIceCredentials(); });
Harald Alvestrandc06e3742020-10-01 10:23:334415}
4416
4417void SdpOfferAnswerHandler::GetOptionsForPlanBAnswer(
4418 const PeerConnectionInterface::RTCOfferAnswerOptions& offer_answer_options,
4419 cricket::MediaSessionOptions* session_options) {
Harald Alvestrand8101e7b2022-05-23 14:57:474420 bool send_audio = false;
4421 bool recv_audio = false;
4422 bool send_video = false;
4423 bool recv_video = false;
Harald Alvestrandc06e3742020-10-01 10:23:334424
Harald Alvestrand8101e7b2022-05-23 14:57:474425 if (ConfiguredForMedia()) {
4426 // Figure out transceiver directional preferences.
4427 send_audio =
4428 !rtp_manager()->GetAudioTransceiver()->internal()->senders().empty();
4429 send_video =
4430 !rtp_manager()->GetVideoTransceiver()->internal()->senders().empty();
Harald Alvestrandc06e3742020-10-01 10:23:334431
Harald Alvestrand8101e7b2022-05-23 14:57:474432 // By default, generate sendrecv/recvonly m= sections. The direction is also
4433 // restricted by the direction in the offer.
4434 recv_audio = true;
4435 recv_video = true;
4436
4437 // The "offer_to_receive_X" options allow those defaults to be overridden.
4438 if (offer_answer_options.offer_to_receive_audio !=
4439 RTCOfferAnswerOptions::kUndefined) {
4440 recv_audio = (offer_answer_options.offer_to_receive_audio > 0);
4441 }
4442 if (offer_answer_options.offer_to_receive_video !=
4443 RTCOfferAnswerOptions::kUndefined) {
4444 recv_video = (offer_answer_options.offer_to_receive_video > 0);
4445 }
Harald Alvestrandc06e3742020-10-01 10:23:334446 }
4447
4448 absl::optional<size_t> audio_index;
4449 absl::optional<size_t> video_index;
4450 absl::optional<size_t> data_index;
4451
4452 // Generate m= sections that match those in the offer.
4453 // Note that mediasession.cc will handle intersection our preferred
4454 // direction with the offered direction.
Harald Alvestrandbc9ca252020-10-05 13:08:414455 GenerateMediaDescriptionOptions(
Harald Alvestrandc06e3742020-10-01 10:23:334456 remote_description(),
4457 RtpTransceiverDirectionFromSendRecv(send_audio, recv_audio),
4458 RtpTransceiverDirectionFromSendRecv(send_video, recv_video), &audio_index,
4459 &video_index, &data_index, session_options);
4460
4461 cricket::MediaDescriptionOptions* audio_media_description_options =
4462 !audio_index ? nullptr
4463 : &session_options->media_description_options[*audio_index];
4464 cricket::MediaDescriptionOptions* video_media_description_options =
4465 !video_index ? nullptr
4466 : &session_options->media_description_options[*video_index];
4467
Harald Alvestrand8101e7b2022-05-23 14:57:474468 if (ConfiguredForMedia()) {
4469 AddPlanBRtpSenderOptions(rtp_manager()->GetSendersInternal(),
4470 audio_media_description_options,
4471 video_media_description_options,
4472 offer_answer_options.num_simulcast_layers);
4473 }
Harald Alvestrandc06e3742020-10-01 10:23:334474}
4475
4476void SdpOfferAnswerHandler::GetOptionsForUnifiedPlanAnswer(
4477 const PeerConnectionInterface::RTCOfferAnswerOptions& offer_answer_options,
4478 cricket::MediaSessionOptions* session_options) {
4479 // Rules for generating an answer are dictated by JSEP sections 5.3.1 (Initial
4480 // Answers) and 5.3.2 (Subsequent Answers).
4481 RTC_DCHECK(remote_description());
4482 RTC_DCHECK(remote_description()->GetType() == SdpType::kOffer);
4483 for (const ContentInfo& content :
4484 remote_description()->description()->contents()) {
4485 cricket::MediaType media_type = content.media_description()->type();
4486 if (media_type == cricket::MEDIA_TYPE_AUDIO ||
4487 media_type == cricket::MEDIA_TYPE_VIDEO) {
Harald Alvestrande15fb152020-10-19 13:28:054488 auto transceiver = transceivers()->FindByMid(content.name);
Harald Alvestrandc06e3742020-10-01 10:23:334489 if (transceiver) {
4490 session_options->media_description_options.push_back(
4491 GetMediaDescriptionOptionsForTransceiver(
Harald Alvestrand85466662021-04-19 21:21:364492 transceiver->internal(), content.name,
Harald Alvestrandc06e3742020-10-01 10:23:334493 /*is_create_offer=*/false));
4494 } else {
4495 // This should only happen with rejected transceivers.
4496 RTC_DCHECK(content.rejected);
4497 session_options->media_description_options.push_back(
4498 cricket::MediaDescriptionOptions(media_type, content.name,
4499 RtpTransceiverDirection::kInactive,
4500 /*stopped=*/true));
4501 }
Philipp Hancke4e8c1152020-10-13 10:43:154502 } else if (media_type == cricket::MEDIA_TYPE_UNSUPPORTED) {
4503 RTC_DCHECK(content.rejected);
4504 session_options->media_description_options.push_back(
4505 cricket::MediaDescriptionOptions(media_type, content.name,
4506 RtpTransceiverDirection::kInactive,
4507 /*stopped=*/true));
Harald Alvestrandc06e3742020-10-01 10:23:334508 } else {
4509 RTC_CHECK_EQ(cricket::MEDIA_TYPE_DATA, media_type);
4510 // Reject all data sections if data channels are disabled.
4511 // Reject a data section if it has already been rejected.
4512 // Reject all data sections except for the first one.
Florent Castelli516e2842021-04-19 13:29:504513 if (content.rejected || content.name != *(pc_->GetDataMid())) {
Harald Alvestrandc06e3742020-10-01 10:23:334514 session_options->media_description_options.push_back(
Harald Alvestrandbc9ca252020-10-05 13:08:414515 GetMediaDescriptionOptionsForRejectedData(content.name));
Harald Alvestrandc06e3742020-10-01 10:23:334516 } else {
4517 session_options->media_description_options.push_back(
Harald Alvestrandbc9ca252020-10-05 13:08:414518 GetMediaDescriptionOptionsForActiveData(content.name));
Harald Alvestrandc06e3742020-10-01 10:23:334519 }
4520 }
4521 }
4522}
4523
Harald Alvestranda474fbf2020-10-01 16:47:234524const char* SdpOfferAnswerHandler::SessionErrorToString(
4525 SessionError error) const {
4526 switch (error) {
4527 case SessionError::kNone:
4528 return "ERROR_NONE";
4529 case SessionError::kContent:
4530 return "ERROR_CONTENT";
4531 case SessionError::kTransport:
4532 return "ERROR_TRANSPORT";
4533 }
Artem Titovd3251962021-11-15 15:57:074534 RTC_DCHECK_NOTREACHED();
Harald Alvestranda474fbf2020-10-01 16:47:234535 return "";
4536}
4537
4538std::string SdpOfferAnswerHandler::GetSessionErrorMsg() {
4539 RTC_DCHECK_RUN_ON(signaling_thread());
4540 rtc::StringBuilder desc;
4541 desc << kSessionError << SessionErrorToString(session_error()) << ". ";
4542 desc << kSessionErrorDesc << session_error_desc() << ".";
4543 return desc.Release();
4544}
4545
4546void SdpOfferAnswerHandler::SetSessionError(SessionError error,
4547 const std::string& error_desc) {
4548 RTC_DCHECK_RUN_ON(signaling_thread());
4549 if (error != session_error_) {
4550 session_error_ = error;
4551 session_error_desc_ = error_desc;
4552 }
4553}
4554
4555RTCError SdpOfferAnswerHandler::HandleLegacyOfferOptions(
4556 const PeerConnectionInterface::RTCOfferAnswerOptions& options) {
4557 RTC_DCHECK_RUN_ON(signaling_thread());
4558 RTC_DCHECK(IsUnifiedPlan());
4559
4560 if (options.offer_to_receive_audio == 0) {
4561 RemoveRecvDirectionFromReceivingTransceiversOfType(
4562 cricket::MEDIA_TYPE_AUDIO);
4563 } else if (options.offer_to_receive_audio == 1) {
4564 AddUpToOneReceivingTransceiverOfType(cricket::MEDIA_TYPE_AUDIO);
4565 } else if (options.offer_to_receive_audio > 1) {
4566 LOG_AND_RETURN_ERROR(RTCErrorType::UNSUPPORTED_PARAMETER,
4567 "offer_to_receive_audio > 1 is not supported.");
4568 }
4569
4570 if (options.offer_to_receive_video == 0) {
4571 RemoveRecvDirectionFromReceivingTransceiversOfType(
4572 cricket::MEDIA_TYPE_VIDEO);
4573 } else if (options.offer_to_receive_video == 1) {
4574 AddUpToOneReceivingTransceiverOfType(cricket::MEDIA_TYPE_VIDEO);
4575 } else if (options.offer_to_receive_video > 1) {
4576 LOG_AND_RETURN_ERROR(RTCErrorType::UNSUPPORTED_PARAMETER,
4577 "offer_to_receive_video > 1 is not supported.");
4578 }
4579
4580 return RTCError::OK();
4581}
4582
4583void SdpOfferAnswerHandler::RemoveRecvDirectionFromReceivingTransceiversOfType(
4584 cricket::MediaType media_type) {
4585 for (const auto& transceiver : GetReceivingTransceiversOfType(media_type)) {
4586 RtpTransceiverDirection new_direction =
4587 RtpTransceiverDirectionWithRecvSet(transceiver->direction(), false);
4588 if (new_direction != transceiver->direction()) {
4589 RTC_LOG(LS_INFO) << "Changing " << cricket::MediaTypeToString(media_type)
4590 << " transceiver (MID="
4591 << transceiver->mid().value_or("<not set>") << ") from "
4592 << RtpTransceiverDirectionToString(
4593 transceiver->direction())
4594 << " to "
4595 << RtpTransceiverDirectionToString(new_direction)
4596 << " since CreateOffer specified offer_to_receive=0";
4597 transceiver->internal()->set_direction(new_direction);
4598 }
4599 }
4600}
4601
4602void SdpOfferAnswerHandler::AddUpToOneReceivingTransceiverOfType(
4603 cricket::MediaType media_type) {
4604 RTC_DCHECK_RUN_ON(signaling_thread());
4605 if (GetReceivingTransceiversOfType(media_type).empty()) {
4606 RTC_LOG(LS_INFO)
4607 << "Adding one recvonly " << cricket::MediaTypeToString(media_type)
4608 << " transceiver since CreateOffer specified offer_to_receive=1";
4609 RtpTransceiverInit init;
4610 init.direction = RtpTransceiverDirection::kRecvOnly;
4611 pc_->AddTransceiver(media_type, nullptr, init,
4612 /*update_negotiation_needed=*/false);
4613 }
4614}
4615
4616std::vector<rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
4617SdpOfferAnswerHandler::GetReceivingTransceiversOfType(
4618 cricket::MediaType media_type) {
4619 std::vector<
4620 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
4621 receiving_transceivers;
Harald Alvestrande15fb152020-10-19 13:28:054622 for (const auto& transceiver : transceivers()->List()) {
Harald Alvestranda474fbf2020-10-01 16:47:234623 if (!transceiver->stopped() && transceiver->media_type() == media_type &&
4624 RtpTransceiverDirectionHasRecv(transceiver->direction())) {
4625 receiving_transceivers.push_back(transceiver);
4626 }
4627 }
4628 return receiving_transceivers;
4629}
4630
4631void SdpOfferAnswerHandler::ProcessRemovalOfRemoteTrack(
4632 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
4633 transceiver,
4634 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>>* remove_list,
4635 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams) {
4636 RTC_DCHECK(transceiver->mid());
4637 RTC_LOG(LS_INFO) << "Processing the removal of a track for MID="
4638 << *transceiver->mid();
4639 std::vector<rtc::scoped_refptr<MediaStreamInterface>> previous_streams =
4640 transceiver->internal()->receiver_internal()->streams();
4641 // This will remove the remote track from the streams.
4642 transceiver->internal()->receiver_internal()->set_stream_ids({});
4643 remove_list->push_back(transceiver);
4644 RemoveRemoteStreamsIfEmpty(previous_streams, removed_streams);
4645}
4646
4647void SdpOfferAnswerHandler::RemoveRemoteStreamsIfEmpty(
4648 const std::vector<rtc::scoped_refptr<MediaStreamInterface>>& remote_streams,
4649 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams) {
4650 RTC_DCHECK_RUN_ON(signaling_thread());
4651 // TODO(https://crbug.com/webrtc/9480): When we use stream IDs instead of
4652 // streams, see if the stream was removed by checking if this was the last
4653 // receiver with that stream ID.
4654 for (const auto& remote_stream : remote_streams) {
4655 if (remote_stream->GetAudioTracks().empty() &&
4656 remote_stream->GetVideoTracks().empty()) {
Niels Möllerafb246b2022-04-20 12:26:504657 remote_streams_->RemoveStream(remote_stream.get());
Harald Alvestranda474fbf2020-10-01 16:47:234658 removed_streams->push_back(remote_stream);
4659 }
4660 }
4661}
4662
4663void SdpOfferAnswerHandler::RemoveSenders(cricket::MediaType media_type) {
4664 RTC_DCHECK_RUN_ON(signaling_thread());
4665 UpdateLocalSenders(std::vector<cricket::StreamParams>(), media_type);
4666 UpdateRemoteSendersList(std::vector<cricket::StreamParams>(), false,
4667 media_type, nullptr);
4668}
4669
4670void SdpOfferAnswerHandler::UpdateLocalSenders(
4671 const std::vector<cricket::StreamParams>& streams,
4672 cricket::MediaType media_type) {
Markus Handell518669d2021-06-07 11:30:464673 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::UpdateLocalSenders");
Harald Alvestranda474fbf2020-10-01 16:47:234674 RTC_DCHECK_RUN_ON(signaling_thread());
Harald Alvestrande15fb152020-10-19 13:28:054675 std::vector<RtpSenderInfo>* current_senders =
4676 rtp_manager()->GetLocalSenderInfos(media_type);
Harald Alvestranda474fbf2020-10-01 16:47:234677
4678 // Find removed tracks. I.e., tracks where the track id, stream id or ssrc
4679 // don't match the new StreamParam.
4680 for (auto sender_it = current_senders->begin();
4681 sender_it != current_senders->end();
4682 /* incremented manually */) {
Harald Alvestrande15fb152020-10-19 13:28:054683 const RtpSenderInfo& info = *sender_it;
Harald Alvestranda474fbf2020-10-01 16:47:234684 const cricket::StreamParams* params =
4685 cricket::GetStreamBySsrc(streams, info.first_ssrc);
4686 if (!params || params->id != info.sender_id ||
4687 params->first_stream_id() != info.stream_id) {
Harald Alvestrande15fb152020-10-19 13:28:054688 rtp_manager()->OnLocalSenderRemoved(info, media_type);
Harald Alvestranda474fbf2020-10-01 16:47:234689 sender_it = current_senders->erase(sender_it);
4690 } else {
4691 ++sender_it;
4692 }
4693 }
4694
4695 // Find new and active senders.
4696 for (const cricket::StreamParams& params : streams) {
Artem Titovcfea2182021-08-09 23:22:314697 // The sync_label is the MediaStream label and the `stream.id` is the
Harald Alvestranda474fbf2020-10-01 16:47:234698 // sender id.
4699 const std::string& stream_id = params.first_stream_id();
4700 const std::string& sender_id = params.id;
4701 uint32_t ssrc = params.first_ssrc();
Harald Alvestrande15fb152020-10-19 13:28:054702 const RtpSenderInfo* sender_info =
4703 rtp_manager()->FindSenderInfo(*current_senders, stream_id, sender_id);
Harald Alvestranda474fbf2020-10-01 16:47:234704 if (!sender_info) {
Harald Alvestrande15fb152020-10-19 13:28:054705 current_senders->push_back(RtpSenderInfo(stream_id, sender_id, ssrc));
4706 rtp_manager()->OnLocalSenderAdded(current_senders->back(), media_type);
Harald Alvestranda474fbf2020-10-01 16:47:234707 }
4708 }
4709}
4710
4711void SdpOfferAnswerHandler::UpdateRemoteSendersList(
4712 const cricket::StreamParamsVec& streams,
4713 bool default_sender_needed,
4714 cricket::MediaType media_type,
4715 StreamCollection* new_streams) {
Markus Handell518669d2021-06-07 11:30:464716 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::UpdateRemoteSendersList");
Harald Alvestranda474fbf2020-10-01 16:47:234717 RTC_DCHECK_RUN_ON(signaling_thread());
4718 RTC_DCHECK(!IsUnifiedPlan());
4719
Harald Alvestrande15fb152020-10-19 13:28:054720 std::vector<RtpSenderInfo>* current_senders =
4721 rtp_manager()->GetRemoteSenderInfos(media_type);
Harald Alvestranda474fbf2020-10-01 16:47:234722
4723 // Find removed senders. I.e., senders where the sender id or ssrc don't match
4724 // the new StreamParam.
4725 for (auto sender_it = current_senders->begin();
4726 sender_it != current_senders->end();
4727 /* incremented manually */) {
Harald Alvestrande15fb152020-10-19 13:28:054728 const RtpSenderInfo& info = *sender_it;
Harald Alvestranda474fbf2020-10-01 16:47:234729 const cricket::StreamParams* params =
4730 cricket::GetStreamBySsrc(streams, info.first_ssrc);
4731 std::string params_stream_id;
4732 if (params) {
4733 params_stream_id =
4734 (!params->first_stream_id().empty() ? params->first_stream_id()
4735 : kDefaultStreamId);
4736 }
4737 bool sender_exists = params && params->id == info.sender_id &&
4738 params_stream_id == info.stream_id;
4739 // If this is a default track, and we still need it, don't remove it.
4740 if ((info.stream_id == kDefaultStreamId && default_sender_needed) ||
4741 sender_exists) {
4742 ++sender_it;
4743 } else {
Harald Alvestrande15fb152020-10-19 13:28:054744 rtp_manager()->OnRemoteSenderRemoved(
4745 info, remote_streams_->find(info.stream_id), media_type);
Harald Alvestranda474fbf2020-10-01 16:47:234746 sender_it = current_senders->erase(sender_it);
4747 }
4748 }
4749
4750 // Find new and active senders.
4751 for (const cricket::StreamParams& params : streams) {
4752 if (!params.has_ssrcs()) {
4753 // The remote endpoint has streams, but didn't signal ssrcs. For an active
4754 // sender, this means it is coming from a Unified Plan endpoint,so we just
4755 // create a default.
4756 default_sender_needed = true;
4757 break;
4758 }
4759
Artem Titovcfea2182021-08-09 23:22:314760 // `params.id` is the sender id and the stream id uses the first of
4761 // `params.stream_ids`. The remote description could come from a Unified
Harald Alvestranda474fbf2020-10-01 16:47:234762 // Plan endpoint, with multiple or no stream_ids() signaled. Since this is
4763 // not supported in Plan B, we just take the first here and create the
4764 // default stream ID if none is specified.
4765 const std::string& stream_id =
4766 (!params.first_stream_id().empty() ? params.first_stream_id()
4767 : kDefaultStreamId);
4768 const std::string& sender_id = params.id;
4769 uint32_t ssrc = params.first_ssrc();
4770
Niels Möllere7cc8832022-01-04 14:20:034771 rtc::scoped_refptr<MediaStreamInterface> stream(
4772 remote_streams_->find(stream_id));
Harald Alvestranda474fbf2020-10-01 16:47:234773 if (!stream) {
4774 // This is a new MediaStream. Create a new remote MediaStream.
4775 stream = MediaStreamProxy::Create(rtc::Thread::Current(),
4776 MediaStream::Create(stream_id));
Harald Alvestrand6f04b6532020-10-09 11:42:174777 remote_streams_->AddStream(stream);
Harald Alvestranda474fbf2020-10-01 16:47:234778 new_streams->AddStream(stream);
4779 }
4780
Harald Alvestrande15fb152020-10-19 13:28:054781 const RtpSenderInfo* sender_info =
4782 rtp_manager()->FindSenderInfo(*current_senders, stream_id, sender_id);
Harald Alvestranda474fbf2020-10-01 16:47:234783 if (!sender_info) {
Harald Alvestrande15fb152020-10-19 13:28:054784 current_senders->push_back(RtpSenderInfo(stream_id, sender_id, ssrc));
Niels Möllerafb246b2022-04-20 12:26:504785 rtp_manager()->OnRemoteSenderAdded(current_senders->back(), stream.get(),
Harald Alvestrande15fb152020-10-19 13:28:054786 media_type);
Harald Alvestranda474fbf2020-10-01 16:47:234787 }
4788 }
4789
4790 // Add default sender if necessary.
4791 if (default_sender_needed) {
Niels Möllere7cc8832022-01-04 14:20:034792 rtc::scoped_refptr<MediaStreamInterface> default_stream(
4793 remote_streams_->find(kDefaultStreamId));
Harald Alvestranda474fbf2020-10-01 16:47:234794 if (!default_stream) {
4795 // Create the new default MediaStream.
4796 default_stream = MediaStreamProxy::Create(
4797 rtc::Thread::Current(), MediaStream::Create(kDefaultStreamId));
Harald Alvestrand6f04b6532020-10-09 11:42:174798 remote_streams_->AddStream(default_stream);
Harald Alvestranda474fbf2020-10-01 16:47:234799 new_streams->AddStream(default_stream);
4800 }
4801 std::string default_sender_id = (media_type == cricket::MEDIA_TYPE_AUDIO)
4802 ? kDefaultAudioSenderId
4803 : kDefaultVideoSenderId;
Harald Alvestrande15fb152020-10-19 13:28:054804 const RtpSenderInfo* default_sender_info = rtp_manager()->FindSenderInfo(
4805 *current_senders, kDefaultStreamId, default_sender_id);
Harald Alvestranda474fbf2020-10-01 16:47:234806 if (!default_sender_info) {
Harald Alvestrande15fb152020-10-19 13:28:054807 current_senders->push_back(
4808 RtpSenderInfo(kDefaultStreamId, default_sender_id, /*ssrc=*/0));
4809 rtp_manager()->OnRemoteSenderAdded(current_senders->back(),
Niels Möllerafb246b2022-04-20 12:26:504810 default_stream.get(), media_type);
Harald Alvestranda474fbf2020-10-01 16:47:234811 }
4812 }
4813}
4814
Taylor Brandstetterd0acbd82021-01-25 21:44:554815void SdpOfferAnswerHandler::EnableSending() {
Markus Handell518669d2021-06-07 11:30:464816 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::EnableSending");
Taylor Brandstetterd0acbd82021-01-25 21:44:554817 RTC_DCHECK_RUN_ON(signaling_thread());
Harald Alvestrand8101e7b2022-05-23 14:57:474818 if (!ConfiguredForMedia()) {
4819 return;
4820 }
Harald Alvestrand85466662021-04-19 21:21:364821 for (const auto& transceiver : transceivers()->ListInternal()) {
4822 cricket::ChannelInterface* channel = transceiver->channel();
Tommi1959f8f2021-04-26 08:20:194823 if (channel) {
Taylor Brandstetterd0acbd82021-01-25 21:44:554824 channel->Enable(true);
4825 }
4826 }
Taylor Brandstetterd0acbd82021-01-25 21:44:554827}
4828
Harald Alvestranda474fbf2020-10-01 16:47:234829RTCError SdpOfferAnswerHandler::PushdownMediaDescription(
4830 SdpType type,
Henrik Boströmf8187e02021-04-26 19:04:264831 cricket::ContentSource source,
4832 const std::map<std::string, const cricket::ContentGroup*>&
4833 bundle_groups_by_mid) {
Markus Handell518669d2021-06-07 11:30:464834 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::PushdownMediaDescription");
Harald Alvestranda474fbf2020-10-01 16:47:234835 const SessionDescriptionInterface* sdesc =
4836 (source == cricket::CS_LOCAL ? local_description()
4837 : remote_description());
4838 RTC_DCHECK_RUN_ON(signaling_thread());
4839 RTC_DCHECK(sdesc);
4840
Harald Alvestrand8101e7b2022-05-23 14:57:474841 if (ConfiguredForMedia()) {
Danil Chapovalov9e09a1f2022-09-08 16:38:104842 // Note: This will perform a BlockingCall over to the worker thread, which
4843 // we'll also do in a loop below.
Harald Alvestrand8101e7b2022-05-23 14:57:474844 if (!UpdatePayloadTypeDemuxingState(source, bundle_groups_by_mid)) {
4845 // Note that this is never expected to fail, since RtpDemuxer doesn't
4846 // return an error when changing payload type demux criteria, which is all
4847 // this does.
Philipp Hanckeb81bf532023-07-18 09:03:394848 LOG_AND_RETURN_ERROR(RTCErrorType::INTERNAL_ERROR,
4849 "Failed to update payload type demuxing state.");
Taylor Brandstetterd0acbd82021-01-25 21:44:554850 }
Tommicc7a3682021-05-04 12:59:384851
Harald Alvestrand8101e7b2022-05-23 14:57:474852 // Push down the new SDP media section for each audio/video transceiver.
4853 auto rtp_transceivers = transceivers()->ListInternal();
4854 std::vector<
4855 std::pair<cricket::ChannelInterface*, const MediaContentDescription*>>
4856 channels;
4857 for (const auto& transceiver : rtp_transceivers) {
4858 const ContentInfo* content_info =
4859 FindMediaSectionForTransceiver(transceiver, sdesc);
4860 cricket::ChannelInterface* channel = transceiver->channel();
4861 if (!channel || !content_info || content_info->rejected) {
4862 continue;
4863 }
4864 const MediaContentDescription* content_desc =
4865 content_info->media_description();
4866 if (!content_desc) {
4867 continue;
4868 }
Tommicc7a3682021-05-04 12:59:384869
Harald Alvestrand8101e7b2022-05-23 14:57:474870 transceiver->OnNegotiationUpdate(type, content_desc);
4871 channels.push_back(std::make_pair(channel, content_desc));
4872 }
4873
4874 // This for-loop of invokes helps audio impairment during re-negotiations.
4875 // One of the causes is that downstairs decoder creation is synchronous at
4876 // the moment, and that a decoder is created for each codec listed in the
4877 // SDP.
4878 //
4879 // TODO(bugs.webrtc.org/12840): consider merging the invokes again after
4880 // these projects have shipped:
4881 // - bugs.webrtc.org/12462
4882 // - crbug.com/1157227
4883 // - crbug.com/1187289
4884 for (const auto& entry : channels) {
4885 std::string error;
Jared Siskinbceec842023-04-20 21:10:514886 bool success = context_->worker_thread()->BlockingCall([&]() {
4887 return (source == cricket::CS_LOCAL)
4888 ? entry.first->SetLocalContent(entry.second, type, error)
4889 : entry.first->SetRemoteContent(entry.second, type, error);
4890 });
Harald Alvestrand8101e7b2022-05-23 14:57:474891 if (!success) {
Philipp Hanckeb81bf532023-07-18 09:03:394892 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, error);
Harald Alvestrand8101e7b2022-05-23 14:57:474893 }
Harald Alvestranda474fbf2020-10-01 16:47:234894 }
4895 }
Harald Alvestranda474fbf2020-10-01 16:47:234896 // Need complete offer/answer with an SCTP m= section before starting SCTP,
4897 // according to https://tools.ietf.org/html/draft-ietf-mmusic-sctp-sdp-19
4898 if (pc_->sctp_mid() && local_description() && remote_description()) {
Harald Alvestranda474fbf2020-10-01 16:47:234899 auto local_sctp_description = cricket::GetFirstSctpDataContentDescription(
4900 local_description()->description());
4901 auto remote_sctp_description = cricket::GetFirstSctpDataContentDescription(
4902 remote_description()->description());
Tomas Gunnarsson92eebef2021-02-10 12:05:444903 if (local_sctp_description && remote_sctp_description) {
Harald Alvestranda474fbf2020-10-01 16:47:234904 int max_message_size;
4905 // A remote max message size of zero means "any size supported".
4906 // We configure the connection with our own max message size.
4907 if (remote_sctp_description->max_message_size() == 0) {
4908 max_message_size = local_sctp_description->max_message_size();
4909 } else {
4910 max_message_size =
4911 std::min(local_sctp_description->max_message_size(),
4912 remote_sctp_description->max_message_size());
4913 }
Tomas Gunnarsson92eebef2021-02-10 12:05:444914 pc_->StartSctpTransport(local_sctp_description->port(),
4915 remote_sctp_description->port(),
4916 max_message_size);
Harald Alvestranda474fbf2020-10-01 16:47:234917 }
4918 }
4919
4920 return RTCError::OK();
4921}
4922
4923RTCError SdpOfferAnswerHandler::PushdownTransportDescription(
4924 cricket::ContentSource source,
4925 SdpType type) {
Markus Handell518669d2021-06-07 11:30:464926 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::PushdownTransportDescription");
Harald Alvestranda474fbf2020-10-01 16:47:234927 RTC_DCHECK_RUN_ON(signaling_thread());
4928
4929 if (source == cricket::CS_LOCAL) {
4930 const SessionDescriptionInterface* sdesc = local_description();
4931 RTC_DCHECK(sdesc);
Harald Alvestrandbc32c562022-02-09 12:08:474932 return transport_controller_s()->SetLocalDescription(type,
4933 sdesc->description());
Harald Alvestranda474fbf2020-10-01 16:47:234934 } else {
4935 const SessionDescriptionInterface* sdesc = remote_description();
4936 RTC_DCHECK(sdesc);
Harald Alvestrandbc32c562022-02-09 12:08:474937 return transport_controller_s()->SetRemoteDescription(type,
4938 sdesc->description());
Harald Alvestranda474fbf2020-10-01 16:47:234939 }
4940}
4941
4942void SdpOfferAnswerHandler::RemoveStoppedTransceivers() {
Markus Handell518669d2021-06-07 11:30:464943 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::RemoveStoppedTransceivers");
Harald Alvestranda474fbf2020-10-01 16:47:234944 RTC_DCHECK_RUN_ON(signaling_thread());
4945 // 3.2.10.1: For each transceiver in the connection's set of transceivers
4946 // run the following steps:
4947 if (!IsUnifiedPlan())
4948 return;
Harald Alvestrand8101e7b2022-05-23 14:57:474949 if (!ConfiguredForMedia()) {
4950 return;
4951 }
Harald Alvestranda474fbf2020-10-01 16:47:234952 // Traverse a copy of the transceiver list.
Harald Alvestrande15fb152020-10-19 13:28:054953 auto transceiver_list = transceivers()->List();
Harald Alvestranda474fbf2020-10-01 16:47:234954 for (auto transceiver : transceiver_list) {
4955 // 3.2.10.1.1: If transceiver is stopped, associated with an m= section
4956 // and the associated m= section is rejected in
4957 // connection.[[CurrentLocalDescription]] or
4958 // connection.[[CurrentRemoteDescription]], remove the
4959 // transceiver from the connection's set of transceivers.
4960 if (!transceiver->stopped()) {
4961 continue;
4962 }
Harald Alvestrand85466662021-04-19 21:21:364963 const ContentInfo* local_content = FindMediaSectionForTransceiver(
4964 transceiver->internal(), local_description());
4965 const ContentInfo* remote_content = FindMediaSectionForTransceiver(
4966 transceiver->internal(), remote_description());
Harald Alvestranda474fbf2020-10-01 16:47:234967 if ((local_content && local_content->rejected) ||
4968 (remote_content && remote_content->rejected)) {
4969 RTC_LOG(LS_INFO) << "Dissociating transceiver"
Tomas Gunnarsson7fa8d462021-04-16 12:28:264970 " since the media section is being recycled.";
Harald Alvestranda474fbf2020-10-01 16:47:234971 transceiver->internal()->set_mid(absl::nullopt);
4972 transceiver->internal()->set_mline_index(absl::nullopt);
Tomas Gunnarsson7fa8d462021-04-16 12:28:264973 } else if (!local_content && !remote_content) {
Harald Alvestranda474fbf2020-10-01 16:47:234974 // TODO(bugs.webrtc.org/11973): Consider if this should be removed already
4975 // See https://github.com/w3c/webrtc-pc/issues/2576
4976 RTC_LOG(LS_INFO)
4977 << "Dropping stopped transceiver that was never associated";
Harald Alvestranda474fbf2020-10-01 16:47:234978 }
Tomas Gunnarsson7fa8d462021-04-16 12:28:264979 transceivers()->Remove(transceiver);
Harald Alvestranda474fbf2020-10-01 16:47:234980 }
4981}
4982
4983void SdpOfferAnswerHandler::RemoveUnusedChannels(
4984 const SessionDescription* desc) {
4985 RTC_DCHECK_RUN_ON(signaling_thread());
Harald Alvestrand8101e7b2022-05-23 14:57:474986 if (ConfiguredForMedia()) {
4987 // Destroy video channel first since it may have a pointer to the
4988 // voice channel.
4989 const cricket::ContentInfo* video_info =
4990 cricket::GetFirstVideoContent(desc);
4991 if (!video_info || video_info->rejected) {
4992 rtp_manager()->GetVideoTransceiver()->internal()->ClearChannel();
4993 }
Artem Titovc6c02ef2022-05-09 08:30:094994
Harald Alvestrand8101e7b2022-05-23 14:57:474995 const cricket::ContentInfo* audio_info =
4996 cricket::GetFirstAudioContent(desc);
4997 if (!audio_info || audio_info->rejected) {
4998 rtp_manager()->GetAudioTransceiver()->internal()->ClearChannel();
4999 }
Artem Titovc6c02ef2022-05-09 08:30:095000 }
Harald Alvestranda474fbf2020-10-01 16:47:235001 const cricket::ContentInfo* data_info = cricket::GetFirstDataContent(desc);
Florent Castellidcb9ffc2021-06-29 12:58:235002 if (!data_info) {
5003 RTCError error(RTCErrorType::OPERATION_ERROR_WITH_DATA,
5004 "No data channel section in the description.");
5005 error.set_error_detail(RTCErrorDetailType::DATA_CHANNEL_FAILURE);
5006 DestroyDataChannelTransport(error);
5007 } else if (data_info->rejected) {
5008 rtc::StringBuilder sb;
5009 sb << "Rejected data channel with mid=" << data_info->name << ".";
5010
5011 RTCError error(RTCErrorType::OPERATION_ERROR_WITH_DATA, sb.Release());
5012 error.set_error_detail(RTCErrorDetailType::DATA_CHANNEL_FAILURE);
5013 DestroyDataChannelTransport(error);
Harald Alvestranda474fbf2020-10-01 16:47:235014 }
5015}
5016
Harald Alvestrandbc9ca252020-10-05 13:08:415017void SdpOfferAnswerHandler::UpdateEndedRemoteMediaStreams() {
5018 RTC_DCHECK_RUN_ON(signaling_thread());
5019 std::vector<rtc::scoped_refptr<MediaStreamInterface>> streams_to_remove;
Harald Alvestrand6f04b6532020-10-09 11:42:175020 for (size_t i = 0; i < remote_streams_->count(); ++i) {
5021 MediaStreamInterface* stream = remote_streams_->at(i);
Harald Alvestrandbc9ca252020-10-05 13:08:415022 if (stream->GetAudioTracks().empty() && stream->GetVideoTracks().empty()) {
Niels Möllere7cc8832022-01-04 14:20:035023 streams_to_remove.push_back(
5024 rtc::scoped_refptr<MediaStreamInterface>(stream));
Harald Alvestrandbc9ca252020-10-05 13:08:415025 }
5026 }
5027
5028 for (auto& stream : streams_to_remove) {
Niels Möllerafb246b2022-04-20 12:26:505029 remote_streams_->RemoveStream(stream.get());
Harald Alvestrandbc9ca252020-10-05 13:08:415030 pc_->Observer()->OnRemoveStream(std::move(stream));
5031 }
5032}
5033
Tomas Gunnarsson0dd75392022-01-17 18:19:565034bool SdpOfferAnswerHandler::UseCandidatesInRemoteDescription() {
Harald Alvestrandbc9ca252020-10-05 13:08:415035 RTC_DCHECK_RUN_ON(signaling_thread());
Tomas Gunnarsson0dd75392022-01-17 18:19:565036 auto* remote_desc = remote_description();
Harald Alvestrandbc9ca252020-10-05 13:08:415037 if (!remote_desc) {
5038 return true;
5039 }
5040 bool ret = true;
5041
5042 for (size_t m = 0; m < remote_desc->number_of_mediasections(); ++m) {
5043 const IceCandidateCollection* candidates = remote_desc->candidates(m);
5044 for (size_t n = 0; n < candidates->count(); ++n) {
5045 const IceCandidateInterface* candidate = candidates->at(n);
5046 bool valid = false;
5047 if (!ReadyToUseRemoteCandidate(candidate, remote_desc, &valid)) {
5048 if (valid) {
5049 RTC_LOG(LS_INFO)
Tomas Gunnarsson0dd75392022-01-17 18:19:565050 << "UseCandidatesInRemoteDescription: Not ready to use "
Harald Alvestrandbc9ca252020-10-05 13:08:415051 "candidate.";
5052 }
5053 continue;
5054 }
5055 ret = UseCandidate(candidate);
5056 if (!ret) {
5057 break;
5058 }
5059 }
5060 }
5061 return ret;
5062}
5063
5064bool SdpOfferAnswerHandler::UseCandidate(
5065 const IceCandidateInterface* candidate) {
5066 RTC_DCHECK_RUN_ON(signaling_thread());
Tomas Gunnarsson8cb97062021-02-08 17:57:045067
5068 rtc::Thread::ScopedDisallowBlockingCalls no_blocking_calls;
5069
Harald Alvestrandbc9ca252020-10-05 13:08:415070 RTCErrorOr<const cricket::ContentInfo*> result =
5071 FindContentInfo(remote_description(), candidate);
Tomas Gunnarsson8cb97062021-02-08 17:57:045072 if (!result.ok())
Harald Alvestrandbc9ca252020-10-05 13:08:415073 return false;
Tomas Gunnarsson8cb97062021-02-08 17:57:045074
5075 const cricket::Candidate& c = candidate->candidate();
5076 RTCError error = cricket::VerifyCandidate(c);
Tomas Gunnarsson27bc6e22021-02-12 12:16:265077 if (!error.ok()) {
5078 RTC_LOG(LS_WARNING) << "Invalid candidate: " << c.ToString();
5079 return true;
5080 }
Tomas Gunnarsson8cb97062021-02-08 17:57:045081
5082 pc_->AddRemoteCandidate(result.value()->name, c);
5083
Harald Alvestrandbc9ca252020-10-05 13:08:415084 return true;
5085}
5086
5087// We need to check the local/remote description for the Transport instead of
5088// the session, because a new Transport added during renegotiation may have
5089// them unset while the session has them set from the previous negotiation.
5090// Not doing so may trigger the auto generation of transport description and
5091// mess up DTLS identity information, ICE credential, etc.
5092bool SdpOfferAnswerHandler::ReadyToUseRemoteCandidate(
5093 const IceCandidateInterface* candidate,
5094 const SessionDescriptionInterface* remote_desc,
5095 bool* valid) {
5096 RTC_DCHECK_RUN_ON(signaling_thread());
5097 *valid = true;
5098
5099 const SessionDescriptionInterface* current_remote_desc =
5100 remote_desc ? remote_desc : remote_description();
5101
5102 if (!current_remote_desc) {
5103 return false;
5104 }
5105
5106 RTCErrorOr<const cricket::ContentInfo*> result =
5107 FindContentInfo(current_remote_desc, candidate);
5108 if (!result.ok()) {
5109 RTC_LOG(LS_ERROR) << "ReadyToUseRemoteCandidate: Invalid candidate. "
5110 << result.error().message();
5111
5112 *valid = false;
5113 return false;
5114 }
5115
Tomas Gunnarsson45de8b32021-04-02 10:33:395116 return true;
Harald Alvestrandbc9ca252020-10-05 13:08:415117}
5118
Harald Alvestrandbc9ca252020-10-05 13:08:415119RTCErrorOr<const cricket::ContentInfo*> SdpOfferAnswerHandler::FindContentInfo(
5120 const SessionDescriptionInterface* description,
5121 const IceCandidateInterface* candidate) {
Philipp Hancke31e06cb2021-02-26 08:23:535122 if (!candidate->sdp_mid().empty()) {
Harald Alvestrandbc9ca252020-10-05 13:08:415123 auto& contents = description->description()->contents();
5124 auto it = absl::c_find_if(
5125 contents, [candidate](const cricket::ContentInfo& content_info) {
5126 return content_info.mid() == candidate->sdp_mid();
5127 });
5128 if (it == contents.end()) {
Philipp Hanckeb81bf532023-07-18 09:03:395129 LOG_AND_RETURN_ERROR(
Harald Alvestrandbc9ca252020-10-05 13:08:415130 RTCErrorType::INVALID_PARAMETER,
5131 "Mid " + candidate->sdp_mid() +
5132 " specified but no media section with that mid found.");
5133 } else {
5134 return &*it;
5135 }
Philipp Hancke31e06cb2021-02-26 08:23:535136 } else if (candidate->sdp_mline_index() >= 0) {
5137 size_t mediacontent_index =
5138 static_cast<size_t>(candidate->sdp_mline_index());
5139 size_t content_size = description->description()->contents().size();
5140 if (mediacontent_index < content_size) {
5141 return &description->description()->contents()[mediacontent_index];
5142 } else {
Philipp Hanckeb81bf532023-07-18 09:03:395143 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_RANGE,
5144 "Media line index (" +
5145 rtc::ToString(candidate->sdp_mline_index()) +
5146 ") out of range (number of mlines: " +
5147 rtc::ToString(content_size) + ").");
Philipp Hancke31e06cb2021-02-26 08:23:535148 }
Harald Alvestrandbc9ca252020-10-05 13:08:415149 }
5150
Philipp Hanckeb81bf532023-07-18 09:03:395151 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
5152 "Neither sdp_mline_index nor sdp_mid specified.");
Harald Alvestrandbc9ca252020-10-05 13:08:415153}
5154
5155RTCError SdpOfferAnswerHandler::CreateChannels(const SessionDescription& desc) {
Markus Handell518669d2021-06-07 11:30:465156 TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::CreateChannels");
Harald Alvestrandbc9ca252020-10-05 13:08:415157 // Creating the media channels. Transports should already have been created
5158 // at this point.
5159 RTC_DCHECK_RUN_ON(signaling_thread());
5160 const cricket::ContentInfo* voice = cricket::GetFirstAudioContent(&desc);
5161 if (voice && !voice->rejected &&
Harald Alvestrande15fb152020-10-19 13:28:055162 !rtp_manager()->GetAudioTransceiver()->internal()->channel()) {
Harald Alvestrand8f429922022-05-04 10:32:305163 auto error =
5164 rtp_manager()->GetAudioTransceiver()->internal()->CreateChannel(
5165 voice->name, pc_->call_ptr(), pc_->configuration()->media_config,
5166 pc_->SrtpRequired(), pc_->GetCryptoOptions(), audio_options(),
5167 video_options(), video_bitrate_allocator_factory_.get(),
5168 [&](absl::string_view mid) {
5169 RTC_DCHECK_RUN_ON(network_thread());
5170 return transport_controller_n()->GetRtpTransport(mid);
5171 });
5172 if (!error.ok()) {
5173 return error;
Harald Alvestrandbc9ca252020-10-05 13:08:415174 }
Harald Alvestrandbc9ca252020-10-05 13:08:415175 }
5176
5177 const cricket::ContentInfo* video = cricket::GetFirstVideoContent(&desc);
5178 if (video && !video->rejected &&
Harald Alvestrande15fb152020-10-19 13:28:055179 !rtp_manager()->GetVideoTransceiver()->internal()->channel()) {
Harald Alvestrand8f429922022-05-04 10:32:305180 auto error =
5181 rtp_manager()->GetVideoTransceiver()->internal()->CreateChannel(
5182 video->name, pc_->call_ptr(), pc_->configuration()->media_config,
5183 pc_->SrtpRequired(), pc_->GetCryptoOptions(),
5184
5185 audio_options(), video_options(),
5186 video_bitrate_allocator_factory_.get(), [&](absl::string_view mid) {
5187 RTC_DCHECK_RUN_ON(network_thread());
5188 return transport_controller_n()->GetRtpTransport(mid);
5189 });
5190 if (!error.ok()) {
5191 return error;
Harald Alvestrandbc9ca252020-10-05 13:08:415192 }
Harald Alvestrandbc9ca252020-10-05 13:08:415193 }
5194
5195 const cricket::ContentInfo* data = cricket::GetFirstDataContent(&desc);
Tommiadd7ac02023-04-12 10:01:105196 if (data && !data->rejected && !CreateDataChannel(data->name)) {
Philipp Hanckeb81bf532023-07-18 09:03:395197 LOG_AND_RETURN_ERROR(RTCErrorType::INTERNAL_ERROR,
5198 "Failed to create data channel.");
Harald Alvestrandbc9ca252020-10-05 13:08:415199 }
5200
5201 return RTCError::OK();
5202}
5203
Harald Alvestrandbc9ca252020-10-05 13:08:415204bool SdpOfferAnswerHandler::CreateDataChannel(const std::string& mid) {
5205 RTC_DCHECK_RUN_ON(signaling_thread());
Tommi299cdc92023-06-26 19:11:355206 RTC_DCHECK(!pc_->sctp_mid().has_value() || mid == pc_->sctp_mid().value());
Tommiadd7ac02023-04-12 10:01:105207 RTC_LOG(LS_INFO) << "Creating data channel, mid=" << mid;
5208
Tommiaa3c9f22023-04-18 10:19:195209 absl::optional<std::string> transport_name =
5210 context_->network_thread()->BlockingCall([&] {
Harald Alvestrand66c40362022-01-28 17:41:305211 RTC_DCHECK_RUN_ON(context_->network_thread());
Florent Castelli516e2842021-04-19 13:29:505212 return pc_->SetupDataChannelTransport_n(mid);
Tommiaa3c9f22023-04-18 10:19:195213 });
5214 if (!transport_name)
Florent Castelli516e2842021-04-19 13:29:505215 return false;
Tommiaa3c9f22023-04-18 10:19:195216
5217 pc_->SetSctpDataInfo(mid, *transport_name);
Tomas Gunnarsson00f4fd92021-04-08 12:39:475218 return true;
Harald Alvestrandbc9ca252020-10-05 13:08:415219}
5220
Florent Castellidcb9ffc2021-06-29 12:58:235221void SdpOfferAnswerHandler::DestroyDataChannelTransport(RTCError error) {
Harald Alvestrandbc9ca252020-10-05 13:08:415222 RTC_DCHECK_RUN_ON(signaling_thread());
Tommif9e13f82023-04-06 19:21:455223 context_->network_thread()->BlockingCall(
5224 [&, data_channel_controller = data_channel_controller()] {
5225 RTC_DCHECK_RUN_ON(context_->network_thread());
Tommib00d63c2023-04-12 17:49:535226 pc_->TeardownDataChannelTransport_n(error);
Tommif9e13f82023-04-06 19:21:455227 });
Tommiaa3c9f22023-04-18 10:19:195228 pc_->ResetSctpDataInfo();
Harald Alvestrandbc9ca252020-10-05 13:08:415229}
5230
Harald Alvestrandbc9ca252020-10-05 13:08:415231void SdpOfferAnswerHandler::DestroyAllChannels() {
5232 RTC_DCHECK_RUN_ON(signaling_thread());
Harald Alvestrande15fb152020-10-19 13:28:055233 if (!transceivers()) {
5234 return;
5235 }
Tommife041642021-04-07 08:08:285236
5237 RTC_LOG_THREAD_BLOCK_COUNT();
5238
Harald Alvestrandbc9ca252020-10-05 13:08:415239 // Destroy video channels first since they may have a pointer to a voice
5240 // channel.
Tommife041642021-04-07 08:08:285241 auto list = transceivers()->List();
5242 RTC_DCHECK_BLOCK_COUNT_NO_MORE_THAN(0);
5243
5244 for (const auto& transceiver : list) {
Harald Alvestrandbc9ca252020-10-05 13:08:415245 if (transceiver->media_type() == cricket::MEDIA_TYPE_VIDEO) {
Harald Alvestrand19ebabc2022-04-28 13:31:175246 transceiver->internal()->ClearChannel();
Harald Alvestrandbc9ca252020-10-05 13:08:415247 }
5248 }
Tommife041642021-04-07 08:08:285249 for (const auto& transceiver : list) {
Harald Alvestrandbc9ca252020-10-05 13:08:415250 if (transceiver->media_type() == cricket::MEDIA_TYPE_AUDIO) {
Harald Alvestrand19ebabc2022-04-28 13:31:175251 transceiver->internal()->ClearChannel();
Harald Alvestrandbc9ca252020-10-05 13:08:415252 }
5253 }
Tommife041642021-04-07 08:08:285254
Florent Castellidcb9ffc2021-06-29 12:58:235255 DestroyDataChannelTransport({});
Harald Alvestrandbc9ca252020-10-05 13:08:415256}
5257
5258void SdpOfferAnswerHandler::GenerateMediaDescriptionOptions(
5259 const SessionDescriptionInterface* session_desc,
5260 RtpTransceiverDirection audio_direction,
5261 RtpTransceiverDirection video_direction,
5262 absl::optional<size_t>* audio_index,
5263 absl::optional<size_t>* video_index,
5264 absl::optional<size_t>* data_index,
5265 cricket::MediaSessionOptions* session_options) {
5266 RTC_DCHECK_RUN_ON(signaling_thread());
5267 for (const cricket::ContentInfo& content :
5268 session_desc->description()->contents()) {
5269 if (IsAudioContent(&content)) {
5270 // If we already have an audio m= section, reject this extra one.
5271 if (*audio_index) {
5272 session_options->media_description_options.push_back(
5273 cricket::MediaDescriptionOptions(
5274 cricket::MEDIA_TYPE_AUDIO, content.name,
5275 RtpTransceiverDirection::kInactive, /*stopped=*/true));
5276 } else {
5277 bool stopped = (audio_direction == RtpTransceiverDirection::kInactive);
5278 session_options->media_description_options.push_back(
5279 cricket::MediaDescriptionOptions(cricket::MEDIA_TYPE_AUDIO,
5280 content.name, audio_direction,
5281 stopped));
5282 *audio_index = session_options->media_description_options.size() - 1;
5283 }
5284 session_options->media_description_options.back().header_extensions =
Harald Alvestrand35f4b4c2022-05-16 10:36:435285 media_engine()->voice().GetRtpHeaderExtensions();
Harald Alvestrandbc9ca252020-10-05 13:08:415286 } else if (IsVideoContent(&content)) {
5287 // If we already have an video m= section, reject this extra one.
5288 if (*video_index) {
5289 session_options->media_description_options.push_back(
5290 cricket::MediaDescriptionOptions(
5291 cricket::MEDIA_TYPE_VIDEO, content.name,
5292 RtpTransceiverDirection::kInactive, /*stopped=*/true));
5293 } else {
5294 bool stopped = (video_direction == RtpTransceiverDirection::kInactive);
5295 session_options->media_description_options.push_back(
5296 cricket::MediaDescriptionOptions(cricket::MEDIA_TYPE_VIDEO,
5297 content.name, video_direction,
5298 stopped));
5299 *video_index = session_options->media_description_options.size() - 1;
5300 }
5301 session_options->media_description_options.back().header_extensions =
Harald Alvestrand35f4b4c2022-05-16 10:36:435302 media_engine()->video().GetRtpHeaderExtensions();
Philipp Hancke4e8c1152020-10-13 10:43:155303 } else if (IsUnsupportedContent(&content)) {
5304 session_options->media_description_options.push_back(
5305 cricket::MediaDescriptionOptions(cricket::MEDIA_TYPE_UNSUPPORTED,
5306 content.name,
5307 RtpTransceiverDirection::kInactive,
5308 /*stopped=*/true));
Harald Alvestrandbc9ca252020-10-05 13:08:415309 } else {
5310 RTC_DCHECK(IsDataContent(&content));
5311 // If we already have an data m= section, reject this extra one.
5312 if (*data_index) {
5313 session_options->media_description_options.push_back(
5314 GetMediaDescriptionOptionsForRejectedData(content.name));
5315 } else {
5316 session_options->media_description_options.push_back(
5317 GetMediaDescriptionOptionsForActiveData(content.name));
5318 *data_index = session_options->media_description_options.size() - 1;
5319 }
5320 }
5321 }
5322}
5323
5324cricket::MediaDescriptionOptions
5325SdpOfferAnswerHandler::GetMediaDescriptionOptionsForActiveData(
5326 const std::string& mid) const {
5327 RTC_DCHECK_RUN_ON(signaling_thread());
5328 // Direction for data sections is meaningless, but legacy endpoints might
5329 // expect sendrecv.
5330 cricket::MediaDescriptionOptions options(cricket::MEDIA_TYPE_DATA, mid,
5331 RtpTransceiverDirection::kSendRecv,
5332 /*stopped=*/false);
Harald Alvestrandbc9ca252020-10-05 13:08:415333 return options;
5334}
5335
5336cricket::MediaDescriptionOptions
5337SdpOfferAnswerHandler::GetMediaDescriptionOptionsForRejectedData(
5338 const std::string& mid) const {
5339 RTC_DCHECK_RUN_ON(signaling_thread());
5340 cricket::MediaDescriptionOptions options(cricket::MEDIA_TYPE_DATA, mid,
5341 RtpTransceiverDirection::kInactive,
5342 /*stopped=*/true);
Harald Alvestrandbc9ca252020-10-05 13:08:415343 return options;
5344}
5345
Taylor Brandstetterd0acbd82021-01-25 21:44:555346bool SdpOfferAnswerHandler::UpdatePayloadTypeDemuxingState(
Henrik Boströmf8187e02021-04-26 19:04:265347 cricket::ContentSource source,
5348 const std::map<std::string, const cricket::ContentGroup*>&
5349 bundle_groups_by_mid) {
Markus Handell518669d2021-06-07 11:30:465350 TRACE_EVENT0("webrtc",
5351 "SdpOfferAnswerHandler::UpdatePayloadTypeDemuxingState");
Harald Alvestrandbc9ca252020-10-05 13:08:415352 RTC_DCHECK_RUN_ON(signaling_thread());
5353 // We may need to delete any created default streams and disable creation of
5354 // new ones on the basis of payload type. This is needed to avoid SSRC
5355 // collisions in Call's RtpDemuxer, in the case that a transceiver has
5356 // created a default stream, and then some other channel gets the SSRC
Taylor Brandstetterd3ef4992020-10-16 01:22:575357 // signaled in the corresponding Unified Plan "m=" section. Specifically, we
5358 // need to disable payload type based demuxing when two bundled "m=" sections
5359 // are using the same payload type(s). For more context
Harald Alvestrandbc9ca252020-10-05 13:08:415360 // see https://bugs.chromium.org/p/webrtc/issues/detail?id=11477
5361 const SessionDescriptionInterface* sdesc =
5362 (source == cricket::CS_LOCAL ? local_description()
5363 : remote_description());
Henrik Boströmf8187e02021-04-26 19:04:265364 struct PayloadTypes {
5365 std::set<int> audio_payload_types;
5366 std::set<int> video_payload_types;
Henrik Boström4ea80f32021-06-09 08:29:505367 bool pt_demuxing_possible_audio = true;
5368 bool pt_demuxing_possible_video = true;
Henrik Boströmf8187e02021-04-26 19:04:265369 };
5370 std::map<const cricket::ContentGroup*, PayloadTypes> payload_types_by_bundle;
Henrik Boström4ea80f32021-06-09 08:29:505371 // If the MID is missing from *any* receiving m= section, this is set to true.
5372 bool mid_header_extension_missing_audio = false;
5373 bool mid_header_extension_missing_video = false;
Harald Alvestrandbc9ca252020-10-05 13:08:415374 for (auto& content_info : sdesc->description()->contents()) {
Henrik Boströmf8187e02021-04-26 19:04:265375 auto it = bundle_groups_by_mid.find(content_info.name);
5376 const cricket::ContentGroup* bundle_group =
5377 it != bundle_groups_by_mid.end() ? it->second : nullptr;
Taylor Brandstetterd3ef4992020-10-16 01:22:575378 // If this m= section isn't bundled, it's safe to demux by payload type
5379 // since other m= sections using the same payload type will also be using
5380 // different transports.
Henrik Boströmf8187e02021-04-26 19:04:265381 if (!bundle_group) {
Taylor Brandstetterd3ef4992020-10-16 01:22:575382 continue;
5383 }
Henrik Boströmf8187e02021-04-26 19:04:265384 PayloadTypes* payload_types = &payload_types_by_bundle[bundle_group];
Harald Alvestrandbc9ca252020-10-05 13:08:415385 if (content_info.rejected ||
5386 (source == cricket::ContentSource::CS_LOCAL &&
5387 !RtpTransceiverDirectionHasRecv(
5388 content_info.media_description()->direction())) ||
5389 (source == cricket::ContentSource::CS_REMOTE &&
5390 !RtpTransceiverDirectionHasSend(
5391 content_info.media_description()->direction()))) {
5392 // Ignore transceivers that are not receiving.
5393 continue;
5394 }
5395 switch (content_info.media_description()->type()) {
Taylor Brandstetterd3ef4992020-10-16 01:22:575396 case cricket::MediaType::MEDIA_TYPE_AUDIO: {
Henrik Boström4ea80f32021-06-09 08:29:505397 if (!mid_header_extension_missing_audio) {
5398 mid_header_extension_missing_audio =
5399 !ContentHasHeaderExtension(content_info, RtpExtension::kMidUri);
5400 }
Taylor Brandstetterd3ef4992020-10-16 01:22:575401 const cricket::AudioContentDescription* audio_desc =
5402 content_info.media_description()->as_audio();
5403 for (const cricket::AudioCodec& audio : audio_desc->codecs()) {
Henrik Boströmf8187e02021-04-26 19:04:265404 if (payload_types->audio_payload_types.count(audio.id)) {
Taylor Brandstetterd3ef4992020-10-16 01:22:575405 // Two m= sections are using the same payload type, thus demuxing
5406 // by payload type is not possible.
Henrik Boström4ea80f32021-06-09 08:29:505407 payload_types->pt_demuxing_possible_audio = false;
Taylor Brandstetterd3ef4992020-10-16 01:22:575408 }
Henrik Boströmf8187e02021-04-26 19:04:265409 payload_types->audio_payload_types.insert(audio.id);
Taylor Brandstetterd3ef4992020-10-16 01:22:575410 }
Harald Alvestrandbc9ca252020-10-05 13:08:415411 break;
Taylor Brandstetterd3ef4992020-10-16 01:22:575412 }
5413 case cricket::MediaType::MEDIA_TYPE_VIDEO: {
Henrik Boström4ea80f32021-06-09 08:29:505414 if (!mid_header_extension_missing_video) {
5415 mid_header_extension_missing_video =
5416 !ContentHasHeaderExtension(content_info, RtpExtension::kMidUri);
5417 }
Taylor Brandstetterd3ef4992020-10-16 01:22:575418 const cricket::VideoContentDescription* video_desc =
5419 content_info.media_description()->as_video();
5420 for (const cricket::VideoCodec& video : video_desc->codecs()) {
Henrik Boströmf8187e02021-04-26 19:04:265421 if (payload_types->video_payload_types.count(video.id)) {
Taylor Brandstetterd3ef4992020-10-16 01:22:575422 // Two m= sections are using the same payload type, thus demuxing
5423 // by payload type is not possible.
Henrik Boström4ea80f32021-06-09 08:29:505424 payload_types->pt_demuxing_possible_video = false;
Taylor Brandstetterd3ef4992020-10-16 01:22:575425 }
Henrik Boströmf8187e02021-04-26 19:04:265426 payload_types->video_payload_types.insert(video.id);
Taylor Brandstetterd3ef4992020-10-16 01:22:575427 }
Harald Alvestrandbc9ca252020-10-05 13:08:415428 break;
Taylor Brandstetterd3ef4992020-10-16 01:22:575429 }
Harald Alvestrandbc9ca252020-10-05 13:08:415430 default:
5431 // Ignore data channels.
5432 continue;
5433 }
5434 }
Harald Alvestrandbc9ca252020-10-05 13:08:415435
Henrik Boström4ea80f32021-06-09 08:29:505436 // In Unified Plan, payload type demuxing is useful for legacy endpoints that
5437 // don't support the MID header extension, but it can also cause incorrrect
5438 // forwarding of packets when going from one m= section to multiple m=
5439 // sections in the same BUNDLE. This only happens if media arrives prior to
5440 // negotiation, but this can cause missing video and unsignalled ssrc bugs
5441 // severe enough to warrant disabling PT demuxing in such cases. Therefore, if
5442 // a MID header extension is present on all m= sections for a given kind
5443 // (audio/video) then we use that as an OK to disable payload type demuxing in
5444 // BUNDLEs of that kind. However if PT demuxing was ever turned on (e.g. MID
5445 // was ever removed on ANY m= section of that kind) then we continue to allow
5446 // PT demuxing in order to prevent disabling it in follow-up O/A exchanges and
5447 // allowing early media by PT.
5448 bool bundled_pt_demux_allowed_audio = !IsUnifiedPlan() ||
5449 mid_header_extension_missing_audio ||
5450 pt_demuxing_has_been_used_audio_;
5451 bool bundled_pt_demux_allowed_video = !IsUnifiedPlan() ||
5452 mid_header_extension_missing_video ||
5453 pt_demuxing_has_been_used_video_;
Henrik Boström4ea80f32021-06-09 08:29:505454
Tomas Gunnarsson92f9b742022-01-02 20:40:225455 // Gather all updates ahead of time so that all channels can be updated in a
Danil Chapovalov9e09a1f2022-09-08 16:38:105456 // single BlockingCall; necessary due to thread guards.
Tomas Gunnarsson92f9b742022-01-02 20:40:225457 std::vector<std::pair<bool, cricket::ChannelInterface*>> channels_to_update;
5458 for (const auto& transceiver : transceivers()->ListInternal()) {
5459 cricket::ChannelInterface* channel = transceiver->channel();
5460 const ContentInfo* content =
5461 FindMediaSectionForTransceiver(transceiver, sdesc);
5462 if (!channel || !content) {
5463 continue;
5464 }
5465
5466 const cricket::MediaType media_type = channel->media_type();
5467 if (media_type != cricket::MediaType::MEDIA_TYPE_AUDIO &&
5468 media_type != cricket::MediaType::MEDIA_TYPE_VIDEO) {
5469 continue;
5470 }
5471
5472 RtpTransceiverDirection local_direction =
5473 content->media_description()->direction();
5474 if (source == cricket::CS_REMOTE) {
5475 local_direction = RtpTransceiverDirectionReversed(local_direction);
5476 }
5477
Tomas Gunnarsson5411b172022-01-24 07:45:265478 auto bundle_it = bundle_groups_by_mid.find(channel->mid());
Tomas Gunnarsson92f9b742022-01-02 20:40:225479 const cricket::ContentGroup* bundle_group =
5480 bundle_it != bundle_groups_by_mid.end() ? bundle_it->second : nullptr;
5481 bool pt_demux_enabled = RtpTransceiverDirectionHasRecv(local_direction);
5482 if (media_type == cricket::MediaType::MEDIA_TYPE_AUDIO) {
5483 pt_demux_enabled &=
5484 !bundle_group ||
5485 (bundled_pt_demux_allowed_audio &&
5486 payload_types_by_bundle[bundle_group].pt_demuxing_possible_audio);
5487 if (pt_demux_enabled) {
5488 pt_demuxing_has_been_used_audio_ = true;
5489 }
5490 } else {
5491 RTC_DCHECK_EQ(media_type, cricket::MediaType::MEDIA_TYPE_VIDEO);
5492 pt_demux_enabled &=
5493 !bundle_group ||
5494 (bundled_pt_demux_allowed_video &&
5495 payload_types_by_bundle[bundle_group].pt_demuxing_possible_video);
5496 if (pt_demux_enabled) {
5497 pt_demuxing_has_been_used_video_ = true;
5498 }
5499 }
5500
5501 channels_to_update.emplace_back(pt_demux_enabled, transceiver->channel());
5502 }
5503
5504 if (channels_to_update.empty()) {
5505 return true;
5506 }
5507
Danil Chapovalov9e09a1f2022-09-08 16:38:105508 // TODO(bugs.webrtc.org/11993): This BlockingCall() will also block on the
5509 // network thread for every demuxer sink that needs to be updated. The demuxer
5510 // state needs to be fully (and only) managed on the network thread and once
5511 // that's the case, there's no need to stop by on the worker. Ideally we could
5512 // also do this without blocking.
5513 return context_->worker_thread()->BlockingCall([&channels_to_update]() {
5514 for (const auto& it : channels_to_update) {
5515 if (!it.second->SetPayloadTypeDemuxingEnabled(it.first)) {
5516 // Note that the state has already been irrevocably changed at this
5517 // point. Is it useful to stop the loop?
5518 return false;
5519 }
5520 }
5521 return true;
5522 });
Harald Alvestrandbc9ca252020-10-05 13:08:415523}
5524
Harald Alvestrand8101e7b2022-05-23 14:57:475525bool SdpOfferAnswerHandler::ConfiguredForMedia() const {
5526 return context_->media_engine();
5527}
5528
Harald Alvestrandcdcfab02020-09-28 13:02:075529} // namespace webrtc