Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1 | /* |
| 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 Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 13 | #include <algorithm> |
Harald Alvestrand | 981c572 | 2022-02-09 12:42:27 | [diff] [blame] | 14 | #include <cstddef> |
Harald Alvestrand | 1f7eab6 | 2020-10-18 16:51:47 | [diff] [blame] | 15 | #include <iterator> |
Harald Alvestrand | 3eaee6b | 2020-10-19 06:35:55 | [diff] [blame] | 16 | #include <map> |
Mirko Bonadei | 9ff450d | 2021-08-02 08:56:33 | [diff] [blame] | 17 | #include <memory> |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 18 | #include <queue> |
Harald Alvestrand | 981c572 | 2022-02-09 12:42:27 | [diff] [blame] | 19 | #include <string> |
Harald Alvestrand | f01bd6c | 2020-10-23 13:30:46 | [diff] [blame] | 20 | #include <utility> |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 21 | |
Harald Alvestrand | 1f7eab6 | 2020-10-18 16:51:47 | [diff] [blame] | 22 | #include "absl/algorithm/container.h" |
Harald Alvestrand | 9cd199d | 2020-10-27 07:10:43 | [diff] [blame] | 23 | #include "absl/memory/memory.h" |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 24 | #include "absl/strings/match.h" |
Harald Alvestrand | 1f7eab6 | 2020-10-18 16:51:47 | [diff] [blame] | 25 | #include "absl/strings/string_view.h" |
| 26 | #include "api/array_view.h" |
| 27 | #include "api/crypto/crypto_options.h" |
Harald Alvestrand | 1f7eab6 | 2020-10-18 16:51:47 | [diff] [blame] | 28 | #include "api/dtls_transport_interface.h" |
Harald Alvestrand | 8f42992 | 2022-05-04 10:32:30 | [diff] [blame] | 29 | #include "api/field_trials_view.h" |
Harald Alvestrand | 1f7eab6 | 2020-10-18 16:51:47 | [diff] [blame] | 30 | #include "api/rtp_parameters.h" |
| 31 | #include "api/rtp_receiver_interface.h" |
| 32 | #include "api/rtp_sender_interface.h" |
Harald Alvestrand | 763f5a9 | 2020-10-22 10:39:40 | [diff] [blame] | 33 | #include "api/video/builtin_video_bitrate_allocator_factory.h" |
Harald Alvestrand | 1f7eab6 | 2020-10-18 16:51:47 | [diff] [blame] | 34 | #include "media/base/codec.h" |
Harald Alvestrand | 1f7eab6 | 2020-10-18 16:51:47 | [diff] [blame] | 35 | #include "media/base/rid_description.h" |
Harald Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 36 | #include "p2p/base/ice_transport_internal.h" |
Harald Alvestrand | 1f7eab6 | 2020-10-18 16:51:47 | [diff] [blame] | 37 | #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 Alvestrand | 981c572 | 2022-02-09 12:42:27 | [diff] [blame] | 43 | #include "pc/channel_interface.h" |
Harald Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 44 | #include "pc/dtls_transport.h" |
Henrik Boström | f785989 | 2022-07-04 12:36:37 | [diff] [blame] | 45 | #include "pc/legacy_stats_collector.h" |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 46 | #include "pc/media_stream.h" |
Markus Handell | a1b8201 | 2021-05-26 16:56:30 | [diff] [blame] | 47 | #include "pc/media_stream_proxy.h" |
Harald Alvestrand | 8e34419 | 2022-02-08 12:55:42 | [diff] [blame] | 48 | #include "pc/peer_connection_internal.h" |
Harald Alvestrand | 1090e44 | 2020-10-05 07:01:09 | [diff] [blame] | 49 | #include "pc/peer_connection_message_handler.h" |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 50 | #include "pc/rtp_media_utils.h" |
Harald Alvestrand | 981c572 | 2022-02-09 12:42:27 | [diff] [blame] | 51 | #include "pc/rtp_receiver_proxy.h" |
Harald Alvestrand | 3eaee6b | 2020-10-19 06:35:55 | [diff] [blame] | 52 | #include "pc/rtp_sender.h" |
Harald Alvestrand | 981c572 | 2022-02-09 12:42:27 | [diff] [blame] | 53 | #include "pc/rtp_sender_proxy.h" |
Harald Alvestrand | 1f7eab6 | 2020-10-18 16:51:47 | [diff] [blame] | 54 | #include "pc/simulcast_description.h" |
| 55 | #include "pc/usage_pattern.h" |
Philipp Hancke | 7d1aff6 | 2023-09-25 12:42:51 | [diff] [blame] | 56 | #include "pc/used_ids.h" |
Harald Alvestrand | 763f5a9 | 2020-10-22 10:39:40 | [diff] [blame] | 57 | #include "pc/webrtc_session_description_factory.h" |
Harald Alvestrand | 1f7eab6 | 2020-10-18 16:51:47 | [diff] [blame] | 58 | #include "rtc_base/helpers.h" |
Harald Alvestrand | 1f7eab6 | 2020-10-18 16:51:47 | [diff] [blame] | 59 | #include "rtc_base/logging.h" |
Harald Alvestrand | 763f5a9 | 2020-10-22 10:39:40 | [diff] [blame] | 60 | #include "rtc_base/rtc_certificate.h" |
Harald Alvestrand | 1f7eab6 | 2020-10-18 16:51:47 | [diff] [blame] | 61 | #include "rtc_base/ssl_stream_adapter.h" |
| 62 | #include "rtc_base/string_encode.h" |
| 63 | #include "rtc_base/strings/string_builder.h" |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 64 | #include "rtc_base/trace_event.h" |
| 65 | #include "system_wrappers/include/metrics.h" |
| 66 | |
| 67 | using cricket::ContentInfo; |
| 68 | using cricket::ContentInfos; |
| 69 | using cricket::MediaContentDescription; |
| 70 | using cricket::MediaProtocolType; |
| 71 | using cricket::RidDescription; |
| 72 | using cricket::RidDirection; |
| 73 | using cricket::SessionDescription; |
| 74 | using cricket::SimulcastDescription; |
| 75 | using cricket::SimulcastLayer; |
| 76 | using cricket::SimulcastLayerList; |
| 77 | using cricket::StreamParams; |
| 78 | using cricket::TransportInfo; |
| 79 | |
| 80 | using cricket::LOCAL_PORT_TYPE; |
| 81 | using cricket::PRFLX_PORT_TYPE; |
| 82 | using cricket::RELAY_PORT_TYPE; |
| 83 | using cricket::STUN_PORT_TYPE; |
| 84 | |
| 85 | namespace webrtc { |
| 86 | |
| 87 | namespace { |
| 88 | |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 89 | typedef webrtc::PeerConnectionInterface::RTCOfferAnswerOptions |
| 90 | RTCOfferAnswerOptions; |
| 91 | |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 92 | // Error messages |
| 93 | const char kInvalidSdp[] = "Invalid session description."; |
| 94 | const char kInvalidCandidates[] = "Description contains invalid candidates."; |
| 95 | const char kBundleWithoutRtcpMux[] = |
| 96 | "rtcp-mux must be enabled when BUNDLE " |
| 97 | "is enabled."; |
| 98 | const char kMlineMismatchInAnswer[] = |
| 99 | "The order of m-lines in answer doesn't match order in offer. Rejecting " |
| 100 | "answer."; |
| 101 | const char kMlineMismatchInSubsequentOffer[] = |
| 102 | "The order of m-lines in subsequent offer doesn't match order from " |
| 103 | "previous offer/answer."; |
| 104 | const char kSdpWithoutIceUfragPwd[] = |
| 105 | "Called with SDP without ice-ufrag and ice-pwd."; |
| 106 | const char kSdpWithoutDtlsFingerprint[] = |
| 107 | "Called with SDP without DTLS fingerprint."; |
Harald Alvestrand | 0d01841 | 2021-11-04 13:52:31 | [diff] [blame] | 108 | const char kSdpWithoutSdesCrypto[] = "Called with SDP without SDES crypto."; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 109 | |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 110 | const char kSessionError[] = "Session error code: "; |
| 111 | const char kSessionErrorDesc[] = "Session error description: "; |
| 112 | |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 113 | // The length of RTCP CNAMEs. |
| 114 | static const int kRtcpCnameLength = 16; |
| 115 | |
Philipp Hancke | 187e9d4 | 2021-11-08 08:58:15 | [diff] [blame] | 116 | // The maximum length of the MID attribute. |
Philipp Hancke | e2652e1 | 2022-12-07 10:49:31 | [diff] [blame] | 117 | static constexpr size_t kMidMaxSize = 16; |
Philipp Hancke | 187e9d4 | 2021-11-08 08:58:15 | [diff] [blame] | 118 | |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 119 | const char kDefaultStreamId[] = "default"; |
| 120 | // NOTE: Duplicated in peer_connection.cc: |
| 121 | static const char kDefaultAudioSenderId[] = "defaulta0"; |
| 122 | static const char kDefaultVideoSenderId[] = "defaultv0"; |
| 123 | |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 124 | void NoteAddIceCandidateResult(int result) { |
| 125 | RTC_HISTOGRAM_ENUMERATION("WebRTC.PeerConnection.AddIceCandidate", result, |
| 126 | kAddIceCandidateMax); |
| 127 | } |
| 128 | |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 129 | std::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 Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 142 | // Returns true if `new_desc` requests an ICE restart (i.e., new ufrag/pwd). |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 143 | bool 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. |
| 176 | std::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 Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 181 | << " " << SdpTypeToString(type) << " sdp: "; |
| 182 | RTC_DCHECK(!absl::StartsWith(error.message(), oss.str())) << error.message(); |
| 183 | oss << error.message(); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 184 | return oss.Release(); |
| 185 | } |
| 186 | |
| 187 | std::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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 198 | const ContentInfo* FindTransceiverMSection( |
Harald Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 199 | RtpTransceiver* transceiver, |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 200 | 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 |
| 210 | std::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 Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 219 | // rejected. `old_content_one` and `old_content_two` refer to the m= section |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 220 | // 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. |
| 223 | bool 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 Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 232 | // 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 237 | // 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 Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 239 | // possible rejected m sections. These are the `current_desc` and |
| 240 | // `secondary_current_desc`. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 241 | bool 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 | ¤t_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 | |
| 276 | bool MediaSectionsHaveSameCount(const SessionDescription& desc1, |
| 277 | const SessionDescription& desc2) { |
| 278 | return desc1.contents().size() == desc2.contents().size(); |
| 279 | } |
Harald Alvestrand | 0d01841 | 2021-11-04 13:52:31 | [diff] [blame] | 280 | // Checks that each non-rejected content has SDES crypto keys or a DTLS |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 281 | // 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 Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 285 | // by Channel's `srtp_required` check. |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 286 | RTCError VerifyCrypto(const SessionDescription* desc, |
Harald Alvestrand | 0d01841 | 2021-11-04 13:52:31 | [diff] [blame] | 287 | bool dtls_enabled, |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 288 | const std::map<std::string, const cricket::ContentGroup*>& |
| 289 | bundle_groups_by_mid) { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 290 | for (const cricket::ContentInfo& content_info : desc->contents()) { |
| 291 | if (content_info.rejected) { |
| 292 | continue; |
| 293 | } |
Harald Alvestrand | 22d32f1 | 2022-10-03 13:16:28 | [diff] [blame] | 294 | #if !defined(WEBRTC_FUCHSIA) |
| 295 | RTC_CHECK(dtls_enabled) << "SDES protocol is only allowed in Fuchsia"; |
| 296 | #endif |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 297 | const std::string& mid = content_info.name; |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 298 | 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 302 | // 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 Alvestrand | 0d01841 | 2021-11-04 13:52:31 | [diff] [blame] | 316 | if (dtls_enabled) { |
| 317 | if (!tinfo->description.identity_fingerprint) { |
Philipp Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 318 | LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, |
| 319 | kSdpWithoutDtlsFingerprint); |
Harald Alvestrand | 0d01841 | 2021-11-04 13:52:31 | [diff] [blame] | 320 | } |
| 321 | } else { |
| 322 | if (media->cryptos().empty()) { |
Philipp Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 323 | LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, |
| 324 | kSdpWithoutSdesCrypto); |
Harald Alvestrand | 0d01841 | 2021-11-04 13:52:31 | [diff] [blame] | 325 | } |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 326 | } |
| 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öm | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 334 | bool VerifyIceUfragPwdPresent( |
| 335 | const SessionDescription* desc, |
| 336 | const std::map<std::string, const cricket::ContentGroup*>& |
| 337 | bundle_groups_by_mid) { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 338 | 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öm | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 343 | 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 347 | // 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 Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 370 | RTCError ValidateMids(const cricket::SessionDescription& description) { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 371 | 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 Hancke | 187e9d4 | 2021-11-08 08:58:15 | [diff] [blame] | 377 | if (content.name.size() > kMidMaxSize) { |
| 378 | LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, |
| 379 | "The MID attribute exceeds the maximum supported " |
Philipp Hancke | e2652e1 | 2022-12-07 10:49:31 | [diff] [blame] | 380 | "length of 16 characters."); |
Philipp Hancke | 187e9d4 | 2021-11-08 08:58:15 | [diff] [blame] | 381 | } |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 382 | 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 Hancke | f0ea56a | 2022-11-28 16:48:04 | [diff] [blame] | 390 | RTCError 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 Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 397 | 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 Hancke | f0ea56a | 2022-11-28 16:48:04 | [diff] [blame] | 403 | } |
| 404 | payload_to_codec_parameters.insert( |
| 405 | std::make_pair(codec_parameters.payload_type, codec_parameters)); |
| 406 | return RTCError::OK(); |
| 407 | } |
| 408 | |
| 409 | RTCError 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 Hancke | f0ea56a | 2022-11-28 16:48:04 | [diff] [blame] | 416 | 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 Hancke | 465bc0f | 2023-08-25 10:42:36 | [diff] [blame] | 421 | const ContentInfo* content_description = |
| 422 | description.GetContentByName(content_name); |
| 423 | if (!content_description) { |
Philipp Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 424 | LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, |
| 425 | "A BUNDLE group contains a MID='" + content_name + |
| 426 | "' matching no m= section."); |
Philipp Hancke | f0ea56a | 2022-11-28 16:48:04 | [diff] [blame] | 427 | } |
Philipp Hancke | 465bc0f | 2023-08-25 10:42:36 | [diff] [blame] | 428 | 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 Hancke | f0ea56a | 2022-11-28 16:48:04 | [diff] [blame] | 433 | continue; |
| 434 | } |
| 435 | const auto type = media_description->type(); |
Philipp Hancke | f14dfed | 2023-09-18 12:20:34 | [diff] [blame] | 436 | if (type == cricket::MEDIA_TYPE_AUDIO || |
| 437 | type == cricket::MEDIA_TYPE_VIDEO) { |
| 438 | for (const auto& c : media_description->codecs()) { |
Philipp Hancke | f0ea56a | 2022-11-28 16:48:04 | [diff] [blame] | 439 | 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 Hancke | a2f5d45 | 2022-12-19 10:04:06 | [diff] [blame] | 451 | RTCError 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 Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 458 | LOG_AND_RETURN_ERROR( |
Philipp Hancke | a2f5d45 | 2022-12-19 10:04:06 | [diff] [blame] | 459 | RTCErrorType::INVALID_PARAMETER, |
| 460 | "A BUNDLE group contains a codec collision for " |
Philipp Hancke | 4bf5238 | 2023-05-25 14:11:36 | [diff] [blame] | 461 | "header extension id=" + |
Philipp Hancke | a2f5d45 | 2022-12-19 10:04:06 | [diff] [blame] | 462 | 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 | |
| 469 | RTCError 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 Hancke | 465bc0f | 2023-08-25 10:42:36 | [diff] [blame] | 479 | const ContentInfo* content_description = |
| 480 | description.GetContentByName(content_name); |
| 481 | if (!content_description) { |
Philipp Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 482 | LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, |
| 483 | "A BUNDLE group contains a MID='" + content_name + |
| 484 | "' matching no m= section."); |
Philipp Hancke | a2f5d45 | 2022-12-19 10:04:06 | [diff] [blame] | 485 | } |
Philipp Hancke | 465bc0f | 2023-08-25 10:42:36 | [diff] [blame] | 486 | 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 Hancke | a2f5d45 | 2022-12-19 10:04:06 | [diff] [blame] | 494 | 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 Hancke | 3488726 | 2023-06-01 17:07:50 | [diff] [blame] | 506 | RTCError ValidateRtpHeaderExtensionsForSpecSimulcast( |
| 507 | const cricket::SessionDescription& description) { |
| 508 | for (const ContentInfo& content : description.contents()) { |
Philipp Hancke | 465bc0f | 2023-08-25 10:42:36 | [diff] [blame] | 509 | if (content.type != MediaProtocolType::kRtp || content.rejected) { |
Philipp Hancke | 3488726 | 2023-06-01 17:07:50 | [diff] [blame] | 510 | 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 Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 521 | 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 Hancke | 3488726 | 2023-06-01 17:07:50 | [diff] [blame] | 525 | } |
| 526 | } |
| 527 | return RTCError::OK(); |
| 528 | } |
| 529 | |
Philipp Hancke | 1f1b0b3 | 2023-08-11 07:32:50 | [diff] [blame] | 530 | RTCError 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 Hancke | b64615a | 2023-09-14 14:23:31 | [diff] [blame] | 557 | RTCError 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 Hancke | 7d1aff6 | 2023-09-25 12:42:51 | [diff] [blame] | 572 | if (!cricket::UsedPayloadTypes::IsIdValid( |
| 573 | codec, media_description->rtcp_mux())) { |
Philipp Hancke | b64615a | 2023-09-14 14:23:31 | [diff] [blame] | 574 | 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 Hancke | 7d1aff6 | 2023-09-25 12:42:51 | [diff] [blame] | 585 | if (!cricket::UsedPayloadTypes::IsIdValid( |
| 586 | codec, media_description->rtcp_mux())) { |
Philipp Hancke | b64615a | 2023-09-14 14:23:31 | [diff] [blame] | 587 | 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 600 | bool IsValidOfferToReceiveMedia(int value) { |
| 601 | typedef PeerConnectionInterface::RTCOfferAnswerOptions Options; |
| 602 | return (value >= Options::kUndefined) && |
| 603 | (value <= Options::kMaxOfferToReceiveMedia); |
| 604 | } |
| 605 | |
| 606 | bool 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 612 | // 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 Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 615 | std::vector<RtpEncodingParameters> GetSendEncodingsFromRemoteDescription( |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 616 | 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 Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 639 | RTCError UpdateSimulcastLayerStatusInSender( |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 640 | const std::vector<SimulcastLayer>& layers, |
| 641 | rtc::scoped_refptr<RtpSenderInternal> sender) { |
| 642 | RTC_DCHECK(sender); |
Harald Alvestrand | 0166be8 | 2022-08-25 11:31:01 | [diff] [blame] | 643 | RtpParameters parameters = sender->GetParametersInternalWithAllLayers(); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 644 | 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 Alvestrand | 0166be8 | 2022-08-25 11:31:01 | [diff] [blame] | 662 | RTCError result = sender->SetParametersInternalWithAllLayers(parameters); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 663 | if (result.ok()) { |
| 664 | result = sender->DisableEncodingLayers(disabled_layers); |
| 665 | } |
| 666 | |
| 667 | return result; |
| 668 | } |
| 669 | |
Harald Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 670 | bool SimulcastIsRejected(const ContentInfo* local_content, |
Lennart Grahl | 0d0ed76 | 2021-05-17 14:06:37 | [diff] [blame] | 671 | const MediaContentDescription& answer_media_desc, |
| 672 | bool enable_encrypted_rtp_header_extensions) { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 673 | 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 Grahl | 0d0ed76 | 2021-05-17 14:06:37 | [diff] [blame] | 678 | answer_media_desc.rtp_header_extensions(), RtpExtension::kRidUri, |
| 679 | enable_encrypted_rtp_header_extensions |
| 680 | ? RtpExtension::Filter::kPreferEncryptedExtension |
| 681 | : RtpExtension::Filter::kDiscardEncryptedExtension); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 682 | return simulcast_offered && (!simulcast_answered || !rids_supported); |
| 683 | } |
| 684 | |
Harald Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 685 | RTCError DisableSimulcastInSender( |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 686 | rtc::scoped_refptr<RtpSenderInternal> sender) { |
| 687 | RTC_DCHECK(sender); |
Harald Alvestrand | 0166be8 | 2022-08-25 11:31:01 | [diff] [blame] | 688 | RtpParameters parameters = sender->GetParametersInternalWithAllLayers(); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 689 | 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 Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 701 | // The SDP parser used to populate these values by default for the 'content |
| 702 | // name' if an a=mid line was absent. |
Harald Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 703 | absl::string_view GetDefaultMidForPlanB(cricket::MediaType media_type) { |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 704 | 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 Hancke | 4e8c115 | 2020-10-13 10:43:15 | [diff] [blame] | 711 | case cricket::MEDIA_TYPE_UNSUPPORTED: |
| 712 | return "not supported"; |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 713 | } |
Artem Titov | d325196 | 2021-11-15 15:57:07 | [diff] [blame] | 714 | RTC_DCHECK_NOTREACHED(); |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 715 | return ""; |
| 716 | } |
| 717 | |
Artem Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 718 | // Add options to |[audio/video]_media_description_options| from `senders`. |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 719 | void 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 Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 742 | cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForTransceiver( |
| 743 | RtpTransceiver* transceiver, |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 744 | 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 Hancke | 9f6ae37 | 2023-03-06 17:08:31 | [diff] [blame] | 756 | transceiver->GetHeaderExtensionsToNegotiate(); |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 757 | // 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 Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 763 | !transceiver->has_ever_been_used_to_send())) { |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 764 | 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 Alvestrand | 0166be8 | 2022-08-25 11:31:01 | [diff] [blame] | 774 | transceiver->sender_internal()->GetParametersInternalWithAllLayers(); |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 775 | 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 Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 805 | // Returns the ContentInfo at mline index `i`, or null if none exists. |
Harald Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 806 | const ContentInfo* GetContentByIndex(const SessionDescriptionInterface* sdesc, |
| 807 | size_t i) { |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 808 | if (!sdesc) { |
| 809 | return nullptr; |
| 810 | } |
| 811 | const ContentInfos& contents = sdesc->description()->contents(); |
| 812 | return (i < contents.size() ? &contents[i] : nullptr); |
| 813 | } |
| 814 | |
Artem Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 815 | // From `rtc_options`, fill parts of `session_options` shared by all generated |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 816 | // m= sectionss (in other words, nothing that involves a map/array). |
| 817 | void 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 Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 826 | // Generate a RTCP CNAME when a PeerConnection is created. |
| 827 | std::string GenerateRtcpCname() { |
| 828 | std::string cname; |
| 829 | if (!rtc::CreateRandomString(kRtcpCnameLength, &cname)) { |
| 830 | RTC_LOG(LS_ERROR) << "Failed to generate CNAME."; |
Artem Titov | d325196 | 2021-11-15 15:57:07 | [diff] [blame] | 831 | RTC_DCHECK_NOTREACHED(); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 832 | } |
| 833 | return cname; |
| 834 | } |
| 835 | |
Artem Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 836 | // Check if we can send `new_stream` on a PeerConnection. |
Harald Alvestrand | 6f04b653 | 2020-10-09 11:42:17 | [diff] [blame] | 837 | bool 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 Gunnarsson | 92eebef | 2021-02-10 12:05:44 | [diff] [blame] | 850 | rtc::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 Chapovalov | 9e09a1f | 2022-09-08 16:38:10 | [diff] [blame] | 855 | // function is called) to the network thread and avoid this BlockingCall? |
Tomas Gunnarsson | 92eebef | 2021-02-10 12:05:44 | [diff] [blame] | 856 | // 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 Chapovalov | 9e09a1f | 2022-09-08 16:38:10 | [diff] [blame] | 860 | return network_thread->BlockingCall( |
Tomas Gunnarsson | 92eebef | 2021-02-10 12:05:44 | [diff] [blame] | 861 | [controller, &mid] { return controller->LookupDtlsTransportByMid(mid); }); |
| 862 | } |
| 863 | |
Henrik Boström | 4ea80f3 | 2021-06-09 08:29:50 | [diff] [blame] | 864 | bool 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 875 | } // namespace |
| 876 | |
Philipp Hancke | 49e5587 | 2023-03-30 11:51:39 | [diff] [blame] | 877 | void 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 Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 906 | // This class stores state related to a SetRemoteDescription operation, captures |
Philipp Hancke | 49e5587 | 2023-03-30 11:51:39 | [diff] [blame] | 907 | // and reports potential errors that might occur and makes sure to notify the |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 908 | // observer of the operation and the operations chain of completion. |
| 909 | class 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 Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 919 | operations_chain_callback_(std::move(operations_chain_callback)), |
| 920 | unified_plan_(handler_->IsUnifiedPlan()) { |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 921 | if (!desc_) { |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 922 | type_ = static_cast<SdpType>(-1); |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 923 | 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 Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 940 | 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 Chapovalov | a2d85e4 | 2023-03-20 16:37:22 | [diff] [blame] | 947 | error_.set_message(error_message); |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 948 | } |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 949 | |
| 950 | observer_->OnSetRemoteDescriptionComplete(error_); |
| 951 | observer_ = nullptr; // Only fire the notification once. |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 952 | } |
| 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 Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 958 | if (handler_->session_error() != SessionError::kNone) |
| 959 | InternalError(handler_->GetSessionErrorMsg()); |
| 960 | return !ok(); |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 961 | } |
| 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 Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 971 | if (type_ == SdpType::kOffer && unified_plan_ && |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 972 | handler_->pc_->configuration()->enable_implicit_rollback && |
| 973 | handler_->signaling_state() == |
| 974 | PeerConnectionInterface::kHaveLocalOffer) { |
| 975 | handler_->Rollback(type_); |
| 976 | } |
| 977 | return false; |
| 978 | } |
| 979 | |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 980 | if (unified_plan_) { |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 981 | 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 Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 993 | 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 Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 1007 | return ok(); |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 1008 | } |
| 1009 | |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 1010 | // Transfers ownership of the session description object over to `handler_`. |
Philipp Hancke | 43df03d | 2023-05-02 09:28:10 | [diff] [blame] | 1011 | bool ReplaceRemoteDescriptionAndCheckError() { |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 1012 | RTC_DCHECK_RUN_ON(handler_->signaling_thread()); |
| 1013 | RTC_DCHECK(ok()); |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 1014 | 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 Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 1019 | |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 1020 | 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 Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 1032 | } |
| 1033 | |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 1034 | 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 Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 1084 | } |
| 1085 | |
| 1086 | // Convenience getter for desc_->GetType(). |
| 1087 | SdpType type() const { return type_; } |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 1088 | bool unified_plan() const { return unified_plan_; } |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 1089 | cricket::SessionDescription* description() { return desc_->description(); } |
| 1090 | |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 1091 | 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 Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 1100 | // 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 Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 1119 | void InternalError(std::string message) { |
| 1120 | SetError(RTCErrorType::INTERNAL_ERROR, std::move(message)); |
| 1121 | } |
| 1122 | |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 1123 | 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 Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 1128 | // 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 Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 1136 | SdpOfferAnswerHandler* const handler_; |
| 1137 | std::unique_ptr<SessionDescriptionInterface> desc_; |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 1138 | // 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 Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 1142 | 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 Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 1147 | const bool unified_plan_; |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 1148 | }; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1149 | // 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. |
| 1152 | class 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 Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 1178 | // Abort early if `pc_` is no longer valid. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1179 | if (!sdp_handler_) { |
| 1180 | operation_complete_callback_(); |
| 1181 | return; |
| 1182 | } |
| 1183 | // DoSetLocalDescription() is a synchronous operation that invokes |
Artem Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 1184 | // `set_local_description_observer_` with the result. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1185 | 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. |
| 1211 | class 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 Gunnarsson | 3699236 | 2020-10-05 19:41:36 | [diff] [blame] | 1222 | #if RTC_DCHECK_IS_ON |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1223 | RTC_DCHECK(was_called_); |
Tomas Gunnarsson | 3699236 | 2020-10-05 19:41:36 | [diff] [blame] | 1224 | #endif |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1225 | } |
| 1226 | |
| 1227 | void OnSuccess(SessionDescriptionInterface* desc) override { |
Tomas Gunnarsson | 3699236 | 2020-10-05 19:41:36 | [diff] [blame] | 1228 | #if RTC_DCHECK_IS_ON |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1229 | RTC_DCHECK(!was_called_); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1230 | 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 Gunnarsson | 3699236 | 2020-10-05 19:41:36 | [diff] [blame] | 1239 | #if RTC_DCHECK_IS_ON |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1240 | RTC_DCHECK(!was_called_); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1241 | was_called_ = true; |
| 1242 | #endif // RTC_DCHECK_IS_ON |
| 1243 | operation_complete_callback_(); |
| 1244 | observer_->OnFailure(std::move(error)); |
| 1245 | } |
| 1246 | |
| 1247 | private: |
Tomas Gunnarsson | 3699236 | 2020-10-05 19:41:36 | [diff] [blame] | 1248 | #if RTC_DCHECK_IS_ON |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1249 | 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. |
| 1263 | class 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 Alvestrand | 1090e44 | 2020-10-05 07:01:09 | [diff] [blame] | 1287 | handler_->pc_->message_handler()->PostSetSessionDescriptionSuccess( |
Niels Möller | afb246b | 2022-04-20 12:26:50 | [diff] [blame] | 1288 | inner_observer_.get()); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1289 | } else { |
Harald Alvestrand | 1090e44 | 2020-10-05 07:01:09 | [diff] [blame] | 1290 | handler_->pc_->message_handler()->PostSetSessionDescriptionFailure( |
Niels Möller | afb246b | 2022-04-20 12:26:50 | [diff] [blame] | 1291 | inner_observer_.get(), std::move(error)); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1292 | } |
| 1293 | } |
| 1294 | |
| 1295 | rtc::WeakPtr<SdpOfferAnswerHandler> handler_; |
| 1296 | rtc::scoped_refptr<SetSessionDescriptionObserver> inner_observer_; |
| 1297 | }; |
| 1298 | |
| 1299 | class 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 Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 1320 | // Returns true if `local_description` shares no ICE credentials with the |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1321 | // 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 Alvestrand | 66c4036 | 2022-01-28 17:41:30 | [diff] [blame] | 1348 | SdpOfferAnswerHandler::SdpOfferAnswerHandler(PeerConnectionSdpMethods* pc, |
| 1349 | ConnectionContext* context) |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1350 | : pc_(pc), |
Harald Alvestrand | 66c4036 | 2022-01-28 17:41:30 | [diff] [blame] | 1351 | context_(context), |
Harald Alvestrand | 6f04b653 | 2020-10-09 11:42:17 | [diff] [blame] | 1352 | local_streams_(StreamCollection::Create()), |
| 1353 | remote_streams_(StreamCollection::Create()), |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1354 | operations_chain_(rtc::OperationsChain::Create()), |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 1355 | rtcp_cname_(GenerateRtcpCname()), |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1356 | 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 | |
| 1366 | SdpOfferAnswerHandler::~SdpOfferAnswerHandler() {} |
| 1367 | |
Harald Alvestrand | 9cd199d | 2020-10-27 07:10:43 | [diff] [blame] | 1368 | // Static |
| 1369 | std::unique_ptr<SdpOfferAnswerHandler> SdpOfferAnswerHandler::Create( |
Harald Alvestrand | 5b66130 | 2022-01-28 13:08:34 | [diff] [blame] | 1370 | PeerConnectionSdpMethods* pc, |
Harald Alvestrand | 9cd199d | 2020-10-27 07:10:43 | [diff] [blame] | 1371 | const PeerConnectionInterface::RTCConfiguration& configuration, |
Harald Alvestrand | 66c4036 | 2022-01-28 17:41:30 | [diff] [blame] | 1372 | PeerConnectionDependencies& dependencies, |
| 1373 | ConnectionContext* context) { |
| 1374 | auto handler = absl::WrapUnique(new SdpOfferAnswerHandler(pc, context)); |
Jonas Oreland | ed99dae | 2022-03-09 08:28:10 | [diff] [blame] | 1375 | handler->Initialize(configuration, dependencies, context); |
Harald Alvestrand | 9cd199d | 2020-10-27 07:10:43 | [diff] [blame] | 1376 | return handler; |
| 1377 | } |
| 1378 | |
Harald Alvestrand | 763f5a9 | 2020-10-22 10:39:40 | [diff] [blame] | 1379 | void SdpOfferAnswerHandler::Initialize( |
| 1380 | const PeerConnectionInterface::RTCConfiguration& configuration, |
Jonas Oreland | ed99dae | 2022-03-09 08:28:10 | [diff] [blame] | 1381 | PeerConnectionDependencies& dependencies, |
| 1382 | ConnectionContext* context) { |
Harald Alvestrand | 763f5a9 | 2020-10-22 10:39:40 | [diff] [blame] | 1383 | RTC_DCHECK_RUN_ON(signaling_thread()); |
Henrik Boström | 6344bf1 | 2022-05-10 07:34:27 | [diff] [blame] | 1384 | // 100 kbps is used by default, but can be overriden by a non-standard |
| 1385 | // RTCConfiguration value (not available on Web). |
Harald Alvestrand | 763f5a9 | 2020-10-22 10:39:40 | [diff] [blame] | 1386 | video_options_.screencast_min_bitrate_kbps = |
Henrik Boström | 6344bf1 | 2022-05-10 07:34:27 | [diff] [blame] | 1387 | configuration.screencast_min_bitrate.value_or(100); |
Harald Alvestrand | 763f5a9 | 2020-10-22 10:39:40 | [diff] [blame] | 1388 | |
| 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 Alvestrand | 763f5a9 | 2020-10-22 10:39:40 | [diff] [blame] | 1398 | // 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 Oreland | ed99dae | 2022-03-09 08:28:10 | [diff] [blame] | 1409 | context, this, pc_->session_id(), pc_->dtls_enabled(), |
Danil Chapovalov | b7da816 | 2022-08-22 14:39:34 | [diff] [blame] | 1410 | std::move(dependencies.cert_generator), std::move(certificate), |
Harald Alvestrand | a094787 | 2020-11-09 14:15:00 | [diff] [blame] | 1411 | [this](const rtc::scoped_refptr<rtc::RTCCertificate>& certificate) { |
Harald Alvestrand | bc32c56 | 2022-02-09 12:08:47 | [diff] [blame] | 1412 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 1413 | transport_controller_s()->SetLocalCertificate(certificate); |
Jonas Oreland | 6c7f984 | 2022-04-19 15:24:10 | [diff] [blame] | 1414 | }, |
| 1415 | pc_->trials()); |
Harald Alvestrand | 763f5a9 | 2020-10-22 10:39:40 | [diff] [blame] | 1416 | |
Harald Alvestrand | 0d01841 | 2021-11-04 13:52:31 | [diff] [blame] | 1417 | if (pc_->options()->disable_encryption) { |
| 1418 | webrtc_session_desc_factory_->SetSdesPolicy(cricket::SEC_DISABLED); |
| 1419 | } |
| 1420 | |
Harald Alvestrand | 763f5a9 | 2020-10-22 10:39:40 | [diff] [blame] | 1421 | 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 Alvestrand | 9cd199d | 2020-10-27 07:10:43 | [diff] [blame] | 1425 | if (dependencies.video_bitrate_allocator_factory) { |
Harald Alvestrand | 763f5a9 | 2020-10-22 10:39:40 | [diff] [blame] | 1426 | video_bitrate_allocator_factory_ = |
Harald Alvestrand | 9cd199d | 2020-10-27 07:10:43 | [diff] [blame] | 1427 | std::move(dependencies.video_bitrate_allocator_factory); |
Harald Alvestrand | 763f5a9 | 2020-10-22 10:39:40 | [diff] [blame] | 1428 | } else { |
| 1429 | video_bitrate_allocator_factory_ = |
| 1430 | CreateBuiltinVideoBitrateAllocatorFactory(); |
| 1431 | } |
| 1432 | } |
| 1433 | |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 1434 | // ================================================================== |
Artem Titov | c6c02ef | 2022-05-09 08:30:09 | [diff] [blame] | 1435 | // Access to pc_ variables |
Harald Alvestrand | 35f4b4c | 2022-05-16 10:36:43 | [diff] [blame] | 1436 | cricket::MediaEngineInterface* SdpOfferAnswerHandler::media_engine() const { |
| 1437 | RTC_DCHECK(context_); |
Harald Alvestrand | c3fa7c3 | 2022-05-22 10:57:01 | [diff] [blame] | 1438 | return context_->media_engine(); |
Harald Alvestrand | 35f4b4c | 2022-05-16 10:36:43 | [diff] [blame] | 1439 | } |
| 1440 | |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 1441 | TransceiverList* SdpOfferAnswerHandler::transceivers() { |
| 1442 | if (!pc_->rtp_manager()) { |
| 1443 | return nullptr; |
| 1444 | } |
| 1445 | return pc_->rtp_manager()->transceivers(); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 1446 | } |
Harald Alvestrand | 35f4b4c | 2022-05-16 10:36:43 | [diff] [blame] | 1447 | |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 1448 | const TransceiverList* SdpOfferAnswerHandler::transceivers() const { |
| 1449 | if (!pc_->rtp_manager()) { |
| 1450 | return nullptr; |
| 1451 | } |
| 1452 | return pc_->rtp_manager()->transceivers(); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 1453 | } |
Harald Alvestrand | bc32c56 | 2022-02-09 12:08:47 | [diff] [blame] | 1454 | JsepTransportController* SdpOfferAnswerHandler::transport_controller_s() { |
| 1455 | return pc_->transport_controller_s(); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 1456 | } |
Harald Alvestrand | bc32c56 | 2022-02-09 12:08:47 | [diff] [blame] | 1457 | JsepTransportController* SdpOfferAnswerHandler::transport_controller_n() { |
| 1458 | return pc_->transport_controller_n(); |
| 1459 | } |
| 1460 | const JsepTransportController* SdpOfferAnswerHandler::transport_controller_s() |
Harald Alvestrand | f01bd6c | 2020-10-23 13:30:46 | [diff] [blame] | 1461 | const { |
Harald Alvestrand | bc32c56 | 2022-02-09 12:08:47 | [diff] [blame] | 1462 | return pc_->transport_controller_s(); |
| 1463 | } |
| 1464 | const JsepTransportController* SdpOfferAnswerHandler::transport_controller_n() |
| 1465 | const { |
| 1466 | return pc_->transport_controller_n(); |
Harald Alvestrand | f01bd6c | 2020-10-23 13:30:46 | [diff] [blame] | 1467 | } |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 1468 | DataChannelController* SdpOfferAnswerHandler::data_channel_controller() { |
Harald Alvestrand | 653429c | 2020-10-19 16:05:20 | [diff] [blame] | 1469 | return pc_->data_channel_controller(); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 1470 | } |
| 1471 | const DataChannelController* SdpOfferAnswerHandler::data_channel_controller() |
| 1472 | const { |
Harald Alvestrand | 653429c | 2020-10-19 16:05:20 | [diff] [blame] | 1473 | return pc_->data_channel_controller(); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 1474 | } |
| 1475 | cricket::PortAllocator* SdpOfferAnswerHandler::port_allocator() { |
Harald Alvestrand | 653429c | 2020-10-19 16:05:20 | [diff] [blame] | 1476 | return pc_->port_allocator(); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 1477 | } |
| 1478 | const cricket::PortAllocator* SdpOfferAnswerHandler::port_allocator() const { |
Harald Alvestrand | 653429c | 2020-10-19 16:05:20 | [diff] [blame] | 1479 | return pc_->port_allocator(); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 1480 | } |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 1481 | RtpTransmissionManager* SdpOfferAnswerHandler::rtp_manager() { |
| 1482 | return pc_->rtp_manager(); |
| 1483 | } |
| 1484 | const RtpTransmissionManager* SdpOfferAnswerHandler::rtp_manager() const { |
| 1485 | return pc_->rtp_manager(); |
| 1486 | } |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 1487 | |
| 1488 | // =================================================================== |
| 1489 | |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1490 | void SdpOfferAnswerHandler::PrepareForShutdown() { |
| 1491 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 1492 | weak_ptr_factory_.InvalidateWeakPtrs(); |
| 1493 | } |
| 1494 | |
| 1495 | void SdpOfferAnswerHandler::Close() { |
| 1496 | ChangeSignalingState(PeerConnectionInterface::kClosed); |
| 1497 | } |
| 1498 | |
| 1499 | void 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 | |
| 1506 | rtc::Thread* SdpOfferAnswerHandler::signaling_thread() const { |
Harald Alvestrand | 66c4036 | 2022-01-28 17:41:30 | [diff] [blame] | 1507 | return context_->signaling_thread(); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1508 | } |
| 1509 | |
Harald Alvestrand | bc32c56 | 2022-02-09 12:08:47 | [diff] [blame] | 1510 | rtc::Thread* SdpOfferAnswerHandler::network_thread() const { |
| 1511 | return context_->network_thread(); |
| 1512 | } |
| 1513 | |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1514 | void 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 Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 1526 | // Abort early if `this_weak_ptr` is no longer valid. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1527 | 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öller | b7aac6f5 | 2021-08-23 13:48:06 | [diff] [blame] | 1535 | auto observer_wrapper = rtc::make_ref_counted< |
| 1536 | CreateSessionDescriptionObserverOperationWrapper>( |
| 1537 | std::move(observer_refptr), std::move(operations_chain_callback)); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1538 | this_weak_ptr->DoCreateOffer(options, observer_wrapper); |
| 1539 | }); |
| 1540 | } |
| 1541 | |
| 1542 | void 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 Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 1555 | // Abort early if `this_weak_ptr` is no longer valid. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1556 | if (!this_weak_ptr) { |
| 1557 | // For consistency with SetSessionDescriptionObserverAdapter whose |
| 1558 | // posted messages doesn't get processed when the PC is destroyed, we |
Artem Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 1559 | // do not inform `observer_refptr` that the operation failed. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1560 | operations_chain_callback(); |
| 1561 | return; |
| 1562 | } |
| 1563 | // SetSessionDescriptionObserverAdapter takes care of making sure the |
Artem Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 1564 | // `observer_refptr` is invoked in a posted message. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1565 | this_weak_ptr->DoSetLocalDescription( |
| 1566 | std::move(desc), |
Niels Möller | b7aac6f5 | 2021-08-23 13:48:06 | [diff] [blame] | 1567 | rtc::make_ref_counted<SetSessionDescriptionObserverAdapter>( |
| 1568 | this_weak_ptr, observer_refptr)); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1569 | // 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 | |
| 1578 | void 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 Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 1589 | // Abort early if `this_weak_ptr` is no longer valid. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1590 | 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 Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 1599 | // The `observer` will already have been informed that it completed, and |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1600 | // we can mark this operation as complete without any loose ends. |
| 1601 | operations_chain_callback(); |
| 1602 | }); |
| 1603 | } |
| 1604 | |
| 1605 | void SdpOfferAnswerHandler::SetLocalDescription( |
| 1606 | SetSessionDescriptionObserver* observer) { |
| 1607 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 1608 | SetLocalDescription( |
Niels Möller | b7aac6f5 | 2021-08-23 13:48:06 | [diff] [blame] | 1609 | rtc::make_ref_counted<SetSessionDescriptionObserverAdapter>( |
Niels Möller | e7cc883 | 2022-01-04 14:20:03 | [diff] [blame] | 1610 | weak_ptr_factory_.GetWeakPtr(), |
| 1611 | rtc::scoped_refptr<SetSessionDescriptionObserver>(observer))); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1612 | } |
| 1613 | |
| 1614 | void SdpOfferAnswerHandler::SetLocalDescription( |
| 1615 | rtc::scoped_refptr<SetLocalDescriptionObserverInterface> observer) { |
| 1616 | RTC_DCHECK_RUN_ON(signaling_thread()); |
Artem Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 1617 | // The `create_sdp_observer` handles performing DoSetLocalDescription() with |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1618 | // the resulting description as well as completing the operation. |
Niels Möller | b7aac6f5 | 2021-08-23 13:48:06 | [diff] [blame] | 1619 | auto create_sdp_observer = |
| 1620 | rtc::make_ref_counted<ImplicitCreateSessionDescriptionObserver>( |
| 1621 | weak_ptr_factory_.GetWeakPtr(), observer); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1622 | // 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 Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 1628 | // The `create_sdp_observer` is responsible for completing the |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1629 | // operation. |
| 1630 | create_sdp_observer->SetOperationCompleteCallback( |
| 1631 | std::move(operations_chain_callback)); |
Artem Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 1632 | // Abort early if `this_weak_ptr` is no longer valid. This triggers the |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1633 | // 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 | |
| 1669 | RTCError SdpOfferAnswerHandler::ApplyLocalDescription( |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 1670 | std::unique_ptr<SessionDescriptionInterface> desc, |
| 1671 | const std::map<std::string, const cricket::ContentGroup*>& |
| 1672 | bundle_groups_by_mid) { |
Markus Handell | 518669d | 2021-06-07 11:30:46 | [diff] [blame] | 1673 | TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::ApplyLocalDescription"); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1674 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 1675 | RTC_DCHECK(desc); |
| 1676 | |
Philipp Hancke | 7baa63f | 2022-09-01 13:39:50 | [diff] [blame] | 1677 | // 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1681 | |
| 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 Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 1685 | // is the same as `old_local_description`, to keep it alive for the duration |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1686 | // 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 Alvestrand | bc32c56 | 2022-02-09 12:08:47 | [diff] [blame] | 1702 | if (!initial_offerer_) { |
| 1703 | initial_offerer_.emplace(type == SdpType::kOffer); |
| 1704 | } |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1705 | // The session description to apply now must be accessed by |
Artem Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 1706 | // `local_description()`. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1707 | RTC_DCHECK(local_description()); |
| 1708 | |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1709 | 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 Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 1719 | RTCError error = PushdownTransportDescription(cricket::CS_LOCAL, type); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1720 | if (!error.ok()) { |
| 1721 | return error; |
| 1722 | } |
| 1723 | |
| 1724 | if (IsUnifiedPlan()) { |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 1725 | error = UpdateTransceiversAndDataChannels( |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1726 | cricket::CS_LOCAL, *local_description(), old_local_description, |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 1727 | remote_description(), bundle_groups_by_mid); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1728 | if (!error.ok()) { |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 1729 | RTC_LOG(LS_ERROR) << error.message() << " (" << SdpTypeToString(type) |
| 1730 | << ")"; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1731 | return error; |
| 1732 | } |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 1733 | 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 Alvestrand | c48ad73 | 2022-05-06 15:15:34 | [diff] [blame] | 1740 | } |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 1741 | |
| 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1779 | } |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 1780 | 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1787 | } |
| 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 Hancke | 2206b63 | 2023-07-18 05:23:02 | [diff] [blame] | 1794 | error = CreateChannels(*local_description()->description()); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1795 | if (!error.ok()) { |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 1796 | RTC_LOG(LS_ERROR) << error.message() << " (" << SdpTypeToString(type) |
| 1797 | << ")"; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1798 | return error; |
| 1799 | } |
| 1800 | } |
| 1801 | // Remove unused channels if MediaContentDescription is rejected. |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 1802 | RemoveUnusedChannels(local_description()->description()); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1803 | } |
| 1804 | |
| 1805 | error = UpdateSessionState(type, cricket::CS_LOCAL, |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 1806 | local_description()->description(), |
| 1807 | bundle_groups_by_mid); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1808 | if (!error.ok()) { |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 1809 | RTC_LOG(LS_ERROR) << error.message() << " (" << SdpTypeToString(type) |
| 1810 | << ")"; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1811 | return error; |
| 1812 | } |
| 1813 | |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 1814 | // Now that we have a local description, we can push down remote candidates. |
| 1815 | UseCandidatesInRemoteDescription(); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1816 | |
| 1817 | pending_ice_restarts_.clear(); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 1818 | if (session_error() != SessionError::kNone) { |
| 1819 | LOG_AND_RETURN_ERROR(RTCErrorType::INTERNAL_ERROR, GetSessionErrorMsg()); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1820 | } |
| 1821 | |
| 1822 | // If setting the description decided our SSL role, allocate any necessary |
| 1823 | // SCTP sids. |
Tommi | c61eee2 | 2023-03-22 07:25:38 | [diff] [blame] | 1824 | AllocateSctpSids(); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1825 | |
Philipp Hancke | 2206b63 | 2023-07-18 05:23:02 | [diff] [blame] | 1826 | // 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1843 | if (IsUnifiedPlan()) { |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 1844 | 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 Rello | 950d6b9 | 2021-04-06 19:38:00 | [diff] [blame] | 1877 | } |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1878 | } |
| 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 Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 1889 | RemoveSenders(cricket::MEDIA_TYPE_AUDIO); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1890 | } else { |
| 1891 | const cricket::AudioContentDescription* audio_desc = |
| 1892 | audio_content->media_description()->as_audio(); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 1893 | UpdateLocalSenders(audio_desc->streams(), audio_desc->type()); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1894 | } |
| 1895 | } |
| 1896 | |
| 1897 | const cricket::ContentInfo* video_content = |
| 1898 | GetFirstVideoContent(local_description()->description()); |
| 1899 | if (video_content) { |
| 1900 | if (video_content->rejected) { |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 1901 | RemoveSenders(cricket::MEDIA_TYPE_VIDEO); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1902 | } else { |
| 1903 | const cricket::VideoContentDescription* video_desc = |
| 1904 | video_content->media_description()->as_video(); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 1905 | UpdateLocalSenders(video_desc->streams(), video_desc->type()); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1906 | } |
| 1907 | } |
| 1908 | } |
| 1909 | |
Harald Alvestrand | 7af57c6 | 2021-04-16 11:12:14 | [diff] [blame] | 1910 | // This function does nothing with data content. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1911 | |
| 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 Hancke | 49e5587 | 2023-03-30 11:51:39 | [diff] [blame] | 1918 | if (IsUnifiedPlan()) { |
| 1919 | UpdateRtpHeaderExtensionPreferencesFromSdpMunging( |
| 1920 | local_description()->description(), transceivers()); |
| 1921 | } |
| 1922 | |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1923 | return RTCError::OK(); |
| 1924 | } |
| 1925 | |
| 1926 | void 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 Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 1939 | // Abort early if `this_weak_ptr` is no longer valid. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1940 | if (!this_weak_ptr) { |
| 1941 | // For consistency with SetSessionDescriptionObserverAdapter whose |
| 1942 | // posted messages doesn't get processed when the PC is destroyed, we |
Artem Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 1943 | // do not inform `observer_refptr` that the operation failed. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1944 | operations_chain_callback(); |
| 1945 | return; |
| 1946 | } |
| 1947 | // SetSessionDescriptionObserverAdapter takes care of making sure the |
Artem Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 1948 | // `observer_refptr` is invoked in a posted message. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1949 | this_weak_ptr->DoSetRemoteDescription( |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 1950 | 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1955 | }); |
| 1956 | } |
| 1957 | |
| 1958 | void 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 Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 1969 | if (!observer) { |
| 1970 | RTC_DLOG(LS_ERROR) << "SetRemoteDescription - observer is NULL."; |
| 1971 | operations_chain_callback(); |
| 1972 | return; |
| 1973 | } |
| 1974 | |
Artem Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 1975 | // Abort early if `this_weak_ptr` is no longer valid. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1976 | 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 Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 1983 | |
| 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 1988 | }); |
| 1989 | } |
| 1990 | |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 1991 | RTCError SdpOfferAnswerHandler::ReplaceRemoteDescription( |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 1992 | std::unique_ptr<SessionDescriptionInterface> desc, |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 1993 | 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 Chapovalov | 9e09a1f | 2022-09-08 16:38:10 | [diff] [blame] | 2013 | // NOTE: This will perform a BlockingCall() to the network thread. |
Harald Alvestrand | bc32c56 | 2022-02-09 12:08:47 | [diff] [blame] | 2014 | return transport_controller_s()->SetRemoteDescription(sdp_type, session_desc); |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 2015 | } |
| 2016 | |
| 2017 | void SdpOfferAnswerHandler::ApplyRemoteDescription( |
| 2018 | std::unique_ptr<RemoteDescriptionOperation> operation) { |
Markus Handell | 518669d | 2021-06-07 11:30:46 | [diff] [blame] | 2019 | TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::ApplyRemoteDescription"); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2020 | RTC_DCHECK_RUN_ON(signaling_thread()); |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 2021 | RTC_DCHECK(operation->description()); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2022 | |
Philipp Hancke | 7baa63f | 2022-09-01 13:39:50 | [diff] [blame] | 2023 | // 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2027 | |
Philipp Hancke | 43df03d | 2023-05-02 09:28:10 | [diff] [blame] | 2028 | if (!operation->ReplaceRemoteDescriptionAndCheckError()) |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 2029 | return; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2030 | |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 2031 | if (!operation->UpdateChannels()) |
| 2032 | return; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2033 | |
| 2034 | // NOTE: Candidates allocation will be initiated only when |
| 2035 | // SetLocalDescription is called. |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 2036 | if (!operation->UpdateSessionState()) |
| 2037 | return; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2038 | |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 2039 | if (!operation->UseCandidatesInRemoteDescription()) |
| 2040 | return; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2041 | |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 2042 | if (operation->old_remote_description()) { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2043 | for (const cricket::ContentInfo& content : |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 2044 | operation->old_remote_description()->description()->contents()) { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2045 | // 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 Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 2050 | if (CheckForRemoteIceRestart(operation->old_remote_description(), |
| 2051 | remote_description(), content.name)) { |
| 2052 | if (operation->type() == SdpType::kOffer) { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2053 | 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 Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 2064 | operation->old_remote_description(), content.name, |
| 2065 | mutable_remote_description()); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2066 | } |
| 2067 | } |
| 2068 | } |
| 2069 | |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 2070 | if (operation->HaveSessionError()) |
| 2071 | return; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2072 | |
| 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 Alvestrand | 5b66130 | 2022-01-28 13:08:34 | [diff] [blame] | 2083 | pc_->ice_connection_state_internal() == |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2084 | PeerConnectionInterface::kIceConnectionNew) { |
| 2085 | pc_->SetIceConnectionState(PeerConnectionInterface::kIceConnectionChecking); |
| 2086 | } |
| 2087 | |
| 2088 | // If setting the description decided our SSL role, allocate any necessary |
| 2089 | // SCTP sids. |
Tommi | c61eee2 | 2023-03-22 07:25:38 | [diff] [blame] | 2090 | AllocateSctpSids(); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2091 | |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 2092 | if (operation->unified_plan()) { |
| 2093 | ApplyRemoteDescriptionUpdateTransceiverState(operation->type()); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2094 | } |
| 2095 | |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2096 | const cricket::AudioContentDescription* audio_desc = |
| 2097 | GetFirstAudioContentDescription(remote_description()->description()); |
| 2098 | const cricket::VideoContentDescription* video_desc = |
| 2099 | GetFirstVideoContentDescription(remote_description()->description()); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2100 | |
| 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 Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 2109 | if (!operation->unified_plan()) { |
Tomas Gunnarsson | b625edf | 2022-01-07 16:22:14 | [diff] [blame] | 2110 | PlanBUpdateSendersAndReceivers( |
| 2111 | GetFirstAudioContent(remote_description()->description()), audio_desc, |
| 2112 | GetFirstVideoContent(remote_description()->description()), video_desc); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2113 | } |
| 2114 | |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 2115 | if (operation->type() == SdpType::kAnswer) { |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 2116 | if (local_ice_credentials_to_replace_->SatisfiesIceRestart( |
| 2117 | *current_local_description_)) { |
| 2118 | local_ice_credentials_to_replace_->ClearIceCredentials(); |
| 2119 | } |
| 2120 | |
| 2121 | RemoveStoppedTransceivers(); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2122 | } |
| 2123 | |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 2124 | // Consider the operation complete at this point. |
| 2125 | operation->SignalCompletion(); |
| 2126 | |
| 2127 | SetRemoteDescriptionPostProcess(operation->type() == SdpType::kAnswer); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2128 | } |
| 2129 | |
Tomas Gunnarsson | 651586c | 2022-01-07 18:33:12 | [diff] [blame] | 2130 | void SdpOfferAnswerHandler::ApplyRemoteDescriptionUpdateTransceiverState( |
| 2131 | SdpType sdp_type) { |
| 2132 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 2133 | RTC_DCHECK(IsUnifiedPlan()); |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 2134 | if (!ConfiguredForMedia()) { |
| 2135 | return; |
| 2136 | } |
Tomas Gunnarsson | 651586c | 2022-01-07 18:33:12 | [diff] [blame] | 2137 | 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öm | 0a16276 | 2022-05-02 13:47:52 | [diff] [blame] | 2152 | // 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 Gunnarsson | 651586c | 2022-01-07 18:33:12 | [diff] [blame] | 2159 | // 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 Gunnarsson | 651586c | 2022-01-07 18:33:12 | [diff] [blame] | 2169 | |
| 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öm | 0a16276 | 2022-05-02 13:47:52 | [diff] [blame] | 2198 | 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 Gunnarsson | 651586c | 2022-01-07 18:33:12 | [diff] [blame] | 2206 | 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 Alvestrand | bc32c56 | 2022-02-09 12:08:47 | [diff] [blame] | 2216 | context_->network_thread(), transport_controller_s(), |
Harald Alvestrand | 66c4036 | 2022-01-28 17:41:30 | [diff] [blame] | 2217 | *transceiver->mid()); |
Tomas Gunnarsson | 651586c | 2022-01-07 18:33:12 | [diff] [blame] | 2218 | 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öm | f785989 | 2022-07-04 12:36:37 | [diff] [blame] | 2242 | pc_->legacy_stats()->AddTrack(transceiver->receiver()->track().get()); |
Tomas Gunnarsson | 651586c | 2022-01-07 18:33:12 | [diff] [blame] | 2243 | 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 Gunnarsson | b625edf | 2022-01-07 16:22:14 | [diff] [blame] | 2258 | void 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öller | afb246b | 2022-04-20 12:26:50 | [diff] [blame] | 2289 | new_streams.get()); |
Tomas Gunnarsson | b625edf | 2022-01-07 16:22:14 | [diff] [blame] | 2290 | } |
| 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öller | afb246b | 2022-04-20 12:26:50 | [diff] [blame] | 2304 | new_streams.get()); |
Tomas Gunnarsson | b625edf | 2022-01-07 16:22:14 | [diff] [blame] | 2305 | } |
| 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öm | f785989 | 2022-07-04 12:36:37 | [diff] [blame] | 2312 | pc_->legacy_stats()->AddStream(new_stream); |
Tomas Gunnarsson | b625edf | 2022-01-07 16:22:14 | [diff] [blame] | 2313 | observer->OnAddStream(rtc::scoped_refptr<MediaStreamInterface>(new_stream)); |
| 2314 | } |
| 2315 | |
| 2316 | UpdateEndedRemoteMediaStreams(); |
| 2317 | } |
| 2318 | |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2319 | void 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 Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 2338 | if (session_error() != SessionError::kNone) { |
| 2339 | std::string error_message = GetSessionErrorMsg(); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2340 | 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öm | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 2358 | 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2362 | 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öm | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 2375 | error = ApplyLocalDescription(std::move(desc), bundle_groups_by_mid); |
Artem Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 2376 | // `desc` may be destroyed at this point. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2377 | |
| 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 Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 2382 | SetSessionError(SessionError::kContent, error.message()); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2383 | 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 Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 2393 | RemoveStoppedTransceivers(); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2394 | |
| 2395 | // TODO(deadbeef): We already had to hop to the network thread for |
| 2396 | // MaybeStartGathering... |
Danil Chapovalov | 9e09a1f | 2022-09-08 16:38:10 | [diff] [blame] | 2397 | context_->network_thread()->BlockingCall( |
| 2398 | [this] { port_allocator()->DiscardCandidatePool(); }); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2399 | } |
| 2400 | |
| 2401 | observer->OnSetLocalDescriptionComplete(RTCError::OK()); |
Harald Alvestrand | 44d0dff | 2020-10-09 05:43:53 | [diff] [blame] | 2402 | pc_->NoteUsageEvent(UsageEvent::SET_LOCAL_DESCRIPTION_SUCCEEDED); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2403 | |
| 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 Alvestrand | bc32c56 | 2022-02-09 12:08:47 | [diff] [blame] | 2422 | transport_controller_s()->MaybeStartGathering(); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2423 | } |
| 2424 | |
| 2425 | void 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 Alvestrand | 1090e44 | 2020-10-05 07:01:09 | [diff] [blame] | 2439 | pc_->message_handler()->PostCreateSessionDescriptionFailure( |
Niels Möller | afb246b | 2022-04-20 12:26:50 | [diff] [blame] | 2440 | observer.get(), |
| 2441 | RTCError(RTCErrorType::INVALID_STATE, std::move(error))); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2442 | return; |
| 2443 | } |
| 2444 | |
| 2445 | // If a session error has occurred the PeerConnection is in a possibly |
| 2446 | // inconsistent state so fail right away. |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 2447 | if (session_error() != SessionError::kNone) { |
| 2448 | std::string error_message = GetSessionErrorMsg(); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2449 | RTC_LOG(LS_ERROR) << "CreateOffer: " << error_message; |
Harald Alvestrand | 1090e44 | 2020-10-05 07:01:09 | [diff] [blame] | 2450 | pc_->message_handler()->PostCreateSessionDescriptionFailure( |
Niels Möller | afb246b | 2022-04-20 12:26:50 | [diff] [blame] | 2451 | observer.get(), |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2452 | 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 Alvestrand | 1090e44 | 2020-10-05 07:01:09 | [diff] [blame] | 2459 | pc_->message_handler()->PostCreateSessionDescriptionFailure( |
Niels Möller | afb246b | 2022-04-20 12:26:50 | [diff] [blame] | 2460 | observer.get(), |
| 2461 | RTCError(RTCErrorType::INVALID_PARAMETER, std::move(error))); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2462 | 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 Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 2468 | RTCError error = HandleLegacyOfferOptions(options); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2469 | if (!error.ok()) { |
Harald Alvestrand | 1090e44 | 2020-10-05 07:01:09 | [diff] [blame] | 2470 | pc_->message_handler()->PostCreateSessionDescriptionFailure( |
Niels Möller | afb246b | 2022-04-20 12:26:50 | [diff] [blame] | 2471 | observer.get(), std::move(error)); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2472 | return; |
| 2473 | } |
| 2474 | } |
| 2475 | |
| 2476 | cricket::MediaSessionOptions session_options; |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 2477 | GetOptionsForOffer(options, &session_options); |
Niels Möller | afb246b | 2022-04-20 12:26:50 | [diff] [blame] | 2478 | webrtc_session_desc_factory_->CreateOffer(observer.get(), options, |
| 2479 | session_options); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2480 | } |
| 2481 | |
| 2482 | void SdpOfferAnswerHandler::CreateAnswer( |
| 2483 | CreateSessionDescriptionObserver* observer, |
| 2484 | const PeerConnectionInterface::RTCOfferAnswerOptions& options) { |
Markus Handell | 518669d | 2021-06-07 11:30:46 | [diff] [blame] | 2485 | TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::CreateAnswer"); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2486 | 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 Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 2495 | // Abort early if `this_weak_ptr` is no longer valid. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2496 | 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öller | b7aac6f5 | 2021-08-23 13:48:06 | [diff] [blame] | 2504 | auto observer_wrapper = rtc::make_ref_counted< |
| 2505 | CreateSessionDescriptionObserverOperationWrapper>( |
| 2506 | std::move(observer_refptr), std::move(operations_chain_callback)); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2507 | this_weak_ptr->DoCreateAnswer(options, observer_wrapper); |
| 2508 | }); |
| 2509 | } |
| 2510 | |
| 2511 | void 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 Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 2523 | if (session_error() != SessionError::kNone) { |
| 2524 | std::string error_message = GetSessionErrorMsg(); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2525 | RTC_LOG(LS_ERROR) << "CreateAnswer: " << error_message; |
Harald Alvestrand | 1090e44 | 2020-10-05 07:01:09 | [diff] [blame] | 2526 | pc_->message_handler()->PostCreateSessionDescriptionFailure( |
Niels Möller | afb246b | 2022-04-20 12:26:50 | [diff] [blame] | 2527 | observer.get(), |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2528 | 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 Alvestrand | 1090e44 | 2020-10-05 07:01:09 | [diff] [blame] | 2538 | pc_->message_handler()->PostCreateSessionDescriptionFailure( |
Niels Möller | afb246b | 2022-04-20 12:26:50 | [diff] [blame] | 2539 | observer.get(), |
| 2540 | RTCError(RTCErrorType::INVALID_STATE, std::move(error))); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2541 | 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 Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 2563 | GetOptionsForAnswer(options, &session_options); |
Niels Möller | afb246b | 2022-04-20 12:26:50 | [diff] [blame] | 2564 | webrtc_session_desc_factory_->CreateAnswer(observer.get(), session_options); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2565 | } |
| 2566 | |
| 2567 | void SdpOfferAnswerHandler::DoSetRemoteDescription( |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 2568 | std::unique_ptr<RemoteDescriptionOperation> operation) { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2569 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 2570 | TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::DoSetRemoteDescription"); |
| 2571 | |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 2572 | if (!operation->ok()) |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2573 | return; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2574 | |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 2575 | if (operation->HaveSessionError()) |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2576 | return; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2577 | |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 2578 | if (operation->MaybeRollback()) |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2579 | return; |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 2580 | |
| 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2587 | return; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2588 | |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 2589 | ApplyRemoteDescription(std::move(operation)); |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 2590 | } |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2591 | |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 2592 | // Called after a DoSetRemoteDescription operation completes. |
| 2593 | void SdpOfferAnswerHandler::SetRemoteDescriptionPostProcess(bool was_answer) { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2594 | RTC_DCHECK(remote_description()); |
| 2595 | |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 2596 | if (was_answer) { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2597 | // TODO(deadbeef): We already had to hop to the network thread for |
| 2598 | // MaybeStartGathering... |
Danil Chapovalov | 9e09a1f | 2022-09-08 16:38:10 | [diff] [blame] | 2599 | context_->network_thread()->BlockingCall( |
| 2600 | [this] { port_allocator()->DiscardCandidatePool(); }); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2601 | } |
| 2602 | |
Harald Alvestrand | 44d0dff | 2020-10-09 05:43:53 | [diff] [blame] | 2603 | pc_->NoteUsageEvent(UsageEvent::SET_REMOTE_DESCRIPTION_SUCCEEDED); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2604 | |
| 2605 | // Check if negotiation is needed. We must do this after informing the |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 2606 | // observer that SetRemoteDescription() has completed to ensure negotiation |
| 2607 | // is not needed prior to the promise resolving. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2608 | 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 | |
| 2621 | void 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öller | e7cc883 | 2022-01-04 14:20:03 | [diff] [blame] | 2629 | rtc::scoped_refptr<MediaStreamInterface> stream( |
| 2630 | remote_streams_->find(stream_id)); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2631 | if (!stream) { |
| 2632 | stream = MediaStreamProxy::Create(rtc::Thread::Current(), |
| 2633 | MediaStream::Create(stream_id)); |
Harald Alvestrand | 6f04b653 | 2020-10-09 11:42:17 | [diff] [blame] | 2634 | remote_streams_->AddStream(stream); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2635 | 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 Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 2652 | // 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2656 | // TODO(hbos): When we remove remote_streams(), use set_stream_ids() |
| 2657 | // instead. https://crbug.com/webrtc/9480 |
| 2658 | receiver->SetStreams(media_streams); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 2659 | RemoveRemoteStreamsIfEmpty(previous_streams, removed_streams); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2660 | } |
| 2661 | |
| 2662 | bool SdpOfferAnswerHandler::AddIceCandidate( |
| 2663 | const IceCandidateInterface* ice_candidate) { |
Tomas Gunnarsson | 2efb8a5 | 2021-04-01 14:26:57 | [diff] [blame] | 2664 | const AddIceCandidateResult result = AddIceCandidateInternal(ice_candidate); |
| 2665 | NoteAddIceCandidateResult(result); |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 2666 | // If the return value is kAddIceCandidateFailNotReady, the candidate has |
| 2667 | // been added, although not 'ready', but that's a success. |
Tomas Gunnarsson | 2efb8a5 | 2021-04-01 14:26:57 | [diff] [blame] | 2668 | return result == kAddIceCandidateSuccess || |
| 2669 | result == kAddIceCandidateFailNotReady; |
| 2670 | } |
| 2671 | |
| 2672 | AddIceCandidateResult SdpOfferAnswerHandler::AddIceCandidateInternal( |
| 2673 | const IceCandidateInterface* ice_candidate) { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2674 | 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 Gunnarsson | 2efb8a5 | 2021-04-01 14:26:57 | [diff] [blame] | 2678 | return kAddIceCandidateFailClosed; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2679 | } |
| 2680 | |
| 2681 | if (!remote_description()) { |
| 2682 | RTC_LOG(LS_ERROR) << "AddIceCandidate: ICE candidates can't be added " |
| 2683 | "without any remote session description."; |
Tomas Gunnarsson | 2efb8a5 | 2021-04-01 14:26:57 | [diff] [blame] | 2684 | return kAddIceCandidateFailNoRemoteDescription; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2685 | } |
| 2686 | |
| 2687 | if (!ice_candidate) { |
| 2688 | RTC_LOG(LS_ERROR) << "AddIceCandidate: Candidate is null."; |
Tomas Gunnarsson | 2efb8a5 | 2021-04-01 14:26:57 | [diff] [blame] | 2689 | return kAddIceCandidateFailNullCandidate; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2690 | } |
| 2691 | |
| 2692 | bool valid = false; |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 2693 | bool ready = ReadyToUseRemoteCandidate(ice_candidate, nullptr, &valid); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2694 | if (!valid) { |
Tomas Gunnarsson | 2efb8a5 | 2021-04-01 14:26:57 | [diff] [blame] | 2695 | return kAddIceCandidateFailNotValid; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2696 | } |
| 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 Gunnarsson | 2efb8a5 | 2021-04-01 14:26:57 | [diff] [blame] | 2701 | return kAddIceCandidateFailInAddition; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2702 | } |
| 2703 | |
Tomas Gunnarsson | 2efb8a5 | 2021-04-01 14:26:57 | [diff] [blame] | 2704 | if (!ready) { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2705 | RTC_LOG(LS_INFO) << "AddIceCandidate: Not ready to use candidate."; |
Tomas Gunnarsson | 2efb8a5 | 2021-04-01 14:26:57 | [diff] [blame] | 2706 | return kAddIceCandidateFailNotReady; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2707 | } |
Tomas Gunnarsson | 2efb8a5 | 2021-04-01 14:26:57 | [diff] [blame] | 2708 | |
| 2709 | if (!UseCandidate(ice_candidate)) { |
| 2710 | return kAddIceCandidateFailNotUsable; |
| 2711 | } |
| 2712 | |
| 2713 | pc_->NoteUsageEvent(UsageEvent::ADD_ICE_CANDIDATE_SUCCEEDED); |
| 2714 | |
| 2715 | return kAddIceCandidateSuccess; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2716 | } |
| 2717 | |
| 2718 | void SdpOfferAnswerHandler::AddIceCandidate( |
| 2719 | std::unique_ptr<IceCandidateInterface> candidate, |
| 2720 | std::function<void(RTCError)> callback) { |
Markus Handell | 518669d | 2021-06-07 11:30:46 | [diff] [blame] | 2721 | TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::AddIceCandidate"); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2722 | RTC_DCHECK_RUN_ON(signaling_thread()); |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 2723 | // 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2726 | 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 Gunnarsson | 2efb8a5 | 2021-04-01 14:26:57 | [diff] [blame] | 2730 | auto result = |
| 2731 | this_weak_ptr |
| 2732 | ? this_weak_ptr->AddIceCandidateInternal(candidate.get()) |
| 2733 | : kAddIceCandidateFailClosed; |
| 2734 | NoteAddIceCandidateResult(result); |
| 2735 | operations_chain_callback(); |
Henrik Boström | 347488e | 2022-01-21 14:18:08 | [diff] [blame] | 2736 | 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2772 | } |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2773 | }); |
| 2774 | } |
| 2775 | |
| 2776 | bool 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 Alvestrand | bc32c56 | 2022-02-09 12:08:47 | [diff] [blame] | 2806 | RTCError error = transport_controller_s()->RemoveRemoteCandidates(candidates); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2807 | if (!error.ok()) { |
| 2808 | RTC_LOG(LS_ERROR) |
| 2809 | << "RemoveIceCandidates: Error when removing remote candidates: " |
| 2810 | << error.message(); |
| 2811 | } |
| 2812 | return true; |
| 2813 | } |
| 2814 | |
| 2815 | void 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 | |
| 2823 | void 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 | |
| 2831 | const 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 | |
| 2838 | const 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 | |
| 2845 | const SessionDescriptionInterface* |
| 2846 | SdpOfferAnswerHandler::current_local_description() const { |
| 2847 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 2848 | return current_local_description_.get(); |
| 2849 | } |
| 2850 | |
| 2851 | const SessionDescriptionInterface* |
| 2852 | SdpOfferAnswerHandler::current_remote_description() const { |
| 2853 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 2854 | return current_remote_description_.get(); |
| 2855 | } |
| 2856 | |
| 2857 | const SessionDescriptionInterface* |
| 2858 | SdpOfferAnswerHandler::pending_local_description() const { |
| 2859 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 2860 | return pending_local_description_.get(); |
| 2861 | } |
| 2862 | |
| 2863 | const SessionDescriptionInterface* |
| 2864 | SdpOfferAnswerHandler::pending_remote_description() const { |
| 2865 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 2866 | return pending_remote_description_.get(); |
| 2867 | } |
| 2868 | |
| 2869 | PeerConnectionInterface::SignalingState SdpOfferAnswerHandler::signaling_state() |
| 2870 | const { |
| 2871 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 2872 | return signaling_state_; |
| 2873 | } |
| 2874 | |
| 2875 | void SdpOfferAnswerHandler::ChangeSignalingState( |
| 2876 | PeerConnectionInterface::SignalingState signaling_state) { |
Markus Handell | 518669d | 2021-06-07 11:30:46 | [diff] [blame] | 2877 | TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::ChangeSignalingState"); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2878 | 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 Alvestrand | 31b03e9 | 2021-11-02 10:54:38 | [diff] [blame] | 2883 | << PeerConnectionInterface::AsString(signaling_state_) |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2884 | << " New state: " |
Harald Alvestrand | 31b03e9 | 2021-11-02 10:54:38 | [diff] [blame] | 2885 | << PeerConnectionInterface::AsString(signaling_state); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2886 | signaling_state_ = signaling_state; |
| 2887 | pc_->Observer()->OnSignalingChange(signaling_state_); |
| 2888 | } |
| 2889 | |
| 2890 | RTCError SdpOfferAnswerHandler::UpdateSessionState( |
| 2891 | SdpType type, |
| 2892 | cricket::ContentSource source, |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 2893 | const cricket::SessionDescription* description, |
| 2894 | const std::map<std::string, const cricket::ContentGroup*>& |
| 2895 | bundle_groups_by_mid) { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2896 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 2897 | |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 2898 | // 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 Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 2900 | RTC_DCHECK(session_error() == SessionError::kNone); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2901 | |
Taylor Brandstetter | d0acbd8 | 2021-01-25 21:44:55 | [diff] [blame] | 2902 | // 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2907 | // 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2918 | RTC_DCHECK(type == SdpType::kAnswer); |
| 2919 | ChangeSignalingState(PeerConnectionInterface::kStable); |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 2920 | if (ConfiguredForMedia()) { |
| 2921 | transceivers()->DiscardStableStates(); |
| 2922 | } |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2923 | } |
| 2924 | |
| 2925 | // Update internal objects according to the session description's media |
| 2926 | // descriptions. |
Tommi | cc7a368 | 2021-05-04 12:59:38 | [diff] [blame] | 2927 | return PushdownMediaDescription(type, source, bundle_groups_by_mid); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2928 | } |
| 2929 | |
| 2930 | bool 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 Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 2947 | // 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 2951 | 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 Alvestrand | 6f04b653 | 2020-10-09 11:42:17 | [diff] [blame] | 2965 | rtc::scoped_refptr<StreamCollectionInterface> |
| 2966 | SdpOfferAnswerHandler::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 | |
| 2974 | rtc::scoped_refptr<StreamCollectionInterface> |
| 2975 | SdpOfferAnswerHandler::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 | |
| 2983 | bool 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öller | afb246b | 2022-04-20 12:26:50 | [diff] [blame] | 2990 | if (!CanAddLocalMediaStream(local_streams_.get(), local_stream)) { |
Harald Alvestrand | 6f04b653 | 2020-10-09 11:42:17 | [diff] [blame] | 2991 | return false; |
| 2992 | } |
| 2993 | |
Niels Möller | e7cc883 | 2022-01-04 14:20:03 | [diff] [blame] | 2994 | local_streams_->AddStream( |
| 2995 | rtc::scoped_refptr<MediaStreamInterface>(local_stream)); |
Mirko Bonadei | 9ff450d | 2021-08-02 08:56:33 | [diff] [blame] | 2996 | 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 Alvestrand | 6f04b653 | 2020-10-09 11:42:17 | [diff] [blame] | 3019 | |
| 3020 | for (const auto& track : local_stream->GetAudioTracks()) { |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 3021 | rtp_manager()->AddAudioTrack(track.get(), local_stream); |
Harald Alvestrand | 6f04b653 | 2020-10-09 11:42:17 | [diff] [blame] | 3022 | } |
| 3023 | for (const auto& track : local_stream->GetVideoTracks()) { |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 3024 | rtp_manager()->AddVideoTrack(track.get(), local_stream); |
Harald Alvestrand | 6f04b653 | 2020-10-09 11:42:17 | [diff] [blame] | 3025 | } |
| 3026 | |
Henrik Boström | f785989 | 2022-07-04 12:36:37 | [diff] [blame] | 3027 | pc_->legacy_stats()->AddStream(local_stream); |
Harald Alvestrand | 6f04b653 | 2020-10-09 11:42:17 | [diff] [blame] | 3028 | UpdateNegotiationNeeded(); |
| 3029 | return true; |
| 3030 | } |
| 3031 | |
| 3032 | void 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 Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 3040 | rtp_manager()->RemoveAudioTrack(track.get(), local_stream); |
Harald Alvestrand | 6f04b653 | 2020-10-09 11:42:17 | [diff] [blame] | 3041 | } |
| 3042 | for (const auto& track : local_stream->GetVideoTracks()) { |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 3043 | rtp_manager()->RemoveVideoTrack(track.get(), local_stream); |
Harald Alvestrand | 6f04b653 | 2020-10-09 11:42:17 | [diff] [blame] | 3044 | } |
| 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 Alvestrand | 763f5a9 | 2020-10-22 10:39:40 | [diff] [blame] | 3061 | void SdpOfferAnswerHandler::OnAudioTrackAdded(AudioTrackInterface* track, |
| 3062 | MediaStreamInterface* stream) { |
| 3063 | if (pc_->IsClosed()) { |
| 3064 | return; |
| 3065 | } |
| 3066 | rtp_manager()->AddAudioTrack(track, stream); |
| 3067 | UpdateNegotiationNeeded(); |
| 3068 | } |
| 3069 | |
| 3070 | void SdpOfferAnswerHandler::OnAudioTrackRemoved(AudioTrackInterface* track, |
| 3071 | MediaStreamInterface* stream) { |
| 3072 | if (pc_->IsClosed()) { |
| 3073 | return; |
| 3074 | } |
| 3075 | rtp_manager()->RemoveAudioTrack(track, stream); |
| 3076 | UpdateNegotiationNeeded(); |
| 3077 | } |
| 3078 | |
| 3079 | void SdpOfferAnswerHandler::OnVideoTrackAdded(VideoTrackInterface* track, |
| 3080 | MediaStreamInterface* stream) { |
| 3081 | if (pc_->IsClosed()) { |
| 3082 | return; |
| 3083 | } |
| 3084 | rtp_manager()->AddVideoTrack(track, stream); |
| 3085 | UpdateNegotiationNeeded(); |
| 3086 | } |
| 3087 | |
| 3088 | void 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3097 | RTCError SdpOfferAnswerHandler::Rollback(SdpType desc_type) { |
Markus Handell | 518669d | 2021-06-07 11:30:46 | [diff] [blame] | 3098 | TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::Rollback"); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3099 | auto state = signaling_state(); |
| 3100 | if (state != PeerConnectionInterface::kHaveLocalOffer && |
| 3101 | state != PeerConnectionInterface::kHaveRemoteOffer) { |
Philipp Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 3102 | LOG_AND_RETURN_ERROR( |
| 3103 | RTCErrorType::INVALID_STATE, |
| 3104 | (rtc::StringBuilder("Called in wrong signalingState: ") |
| 3105 | << (PeerConnectionInterface::AsString(signaling_state()))) |
| 3106 | .Release()); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3107 | } |
| 3108 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 3109 | RTC_DCHECK(IsUnifiedPlan()); |
Henrik Boström | 0a16276 | 2022-05-02 13:47:52 | [diff] [blame] | 3110 | std::vector<rtc::scoped_refptr<RtpTransceiverInterface>> |
| 3111 | now_receiving_transceivers; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3112 | 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 Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 3116 | for (auto&& transceivers_stable_state_pair : transceivers()->StableStates()) { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3117 | auto transceiver = transceivers_stable_state_pair.first; |
| 3118 | auto state = transceivers_stable_state_pair.second; |
| 3119 | |
Henrik Boström | 0a16276 | 2022-05-02 13:47:52 | [diff] [blame] | 3120 | 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3136 | 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öm | 0a16276 | 2022-05-02 13:47:52 | [diff] [blame] | 3152 | // 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3156 | RTC_DCHECK(transceiver->internal()->mid().has_value()); |
Harald Alvestrand | 19ebabc | 2022-04-28 13:31:17 | [diff] [blame] | 3157 | transceiver->internal()->ClearChannel(); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3158 | |
| 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öm | a8ad11d | 2022-04-27 09:54:01 | [diff] [blame] | 3167 | transceiver->internal()->StopTransceiverProcedure(); |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 3168 | transceivers()->Remove(transceiver); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3169 | } |
| 3170 | } |
Eldar Rello | 950d6b9 | 2021-04-06 19:38:00 | [diff] [blame] | 3171 | if (state.init_send_encodings()) { |
| 3172 | transceiver->internal()->sender_internal()->set_init_send_encodings( |
| 3173 | state.init_send_encodings().value()); |
| 3174 | } |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3175 | transceiver->internal()->sender_internal()->set_transport(nullptr); |
| 3176 | transceiver->internal()->receiver_internal()->set_transport(nullptr); |
Florent Castelli | b3d424c | 2023-03-15 15:47:43 | [diff] [blame] | 3177 | if (state.has_m_section()) { |
| 3178 | transceiver->internal()->set_mid(state.mid()); |
| 3179 | transceiver->internal()->set_mline_index(state.mline_index()); |
| 3180 | } |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3181 | } |
Harald Alvestrand | bc32c56 | 2022-02-09 12:08:47 | [diff] [blame] | 3182 | RTCError e = transport_controller_s()->RollbackTransports(); |
Taylor Brandstetter | 8591eff | 2021-08-11 21:56:38 | [diff] [blame] | 3183 | if (!e.ok()) { |
| 3184 | return e; |
| 3185 | } |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 3186 | transceivers()->DiscardStableStates(); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3187 | 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öm | 0a16276 | 2022-05-02 13:47:52 | [diff] [blame] | 3192 | for (const auto& transceiver : now_receiving_transceivers) { |
| 3193 | pc_->Observer()->OnTrack(transceiver); |
| 3194 | pc_->Observer()->OnAddTrack(transceiver->receiver(), |
| 3195 | transceiver->receiver()->streams()); |
| 3196 | } |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3197 | 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 Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 3207 | // The assumption is that in case of implicit rollback |
| 3208 | // UpdateNegotiationNeeded gets called in SetRemoteDescription. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3209 | 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 | |
| 3221 | bool SdpOfferAnswerHandler::IsUnifiedPlan() const { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3222 | return pc_->IsUnifiedPlan(); |
| 3223 | } |
| 3224 | |
| 3225 | void 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 Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 3230 | // 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3233 | if (IsUnifiedPlan()) { |
| 3234 | UpdateNegotiationNeeded(); |
| 3235 | } |
| 3236 | } |
| 3237 | |
Tommi | 335d084 | 2023-03-25 09:56:18 | [diff] [blame] | 3238 | absl::optional<bool> SdpOfferAnswerHandler::is_caller() const { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3239 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 3240 | return is_caller_; |
| 3241 | } |
| 3242 | |
| 3243 | bool SdpOfferAnswerHandler::HasNewIceCredentials() { |
| 3244 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 3245 | return local_ice_credentials_to_replace_->HasIceCredentials(); |
| 3246 | } |
| 3247 | |
| 3248 | bool 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 Alvestrand | f01bd6c | 2020-10-23 13:30:46 | [diff] [blame] | 3255 | bool SdpOfferAnswerHandler::NeedsIceRestart( |
| 3256 | const std::string& content_name) const { |
Tommi | c3257d0 | 2021-02-10 17:40:08 | [diff] [blame] | 3257 | return pc_->NeedsIceRestart(content_name); |
Harald Alvestrand | f01bd6c | 2020-10-23 13:30:46 | [diff] [blame] | 3258 | } |
| 3259 | |
| 3260 | absl::optional<rtc::SSLRole> SdpOfferAnswerHandler::GetDtlsRole( |
| 3261 | const std::string& mid) const { |
Harald Alvestrand | bc32c56 | 2022-02-09 12:08:47 | [diff] [blame] | 3262 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 3263 | return transport_controller_s()->GetDtlsRole(mid); |
Harald Alvestrand | f01bd6c | 2020-10-23 13:30:46 | [diff] [blame] | 3264 | } |
| 3265 | |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3266 | void 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 Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 3275 | // 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3277 | // 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 Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 3299 | // negotiation-needed flag by setting connection's [[NegotiationNeeded]] |
| 3300 | // slot to false, and abort these steps. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3301 | 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 Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 3323 | // 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3326 | GenerateNegotiationNeededEvent(); |
| 3327 | } |
| 3328 | |
Tommi | c61eee2 | 2023-03-22 07:25:38 | [diff] [blame] | 3329 | void 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 | |
Tommi | f9e13f8 | 2023-04-06 19:21:45 | [diff] [blame] | 3338 | 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 | }); |
Tommi | c61eee2 | 2023-03-22 07:25:38 | [diff] [blame] | 3348 | } |
| 3349 | |
Tommi | 335d084 | 2023-03-25 09:56:18 | [diff] [blame] | 3350 | absl::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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3393 | bool SdpOfferAnswerHandler::CheckIfNegotiationIsNeeded() { |
| 3394 | RTC_DCHECK_RUN_ON(signaling_thread()); |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 3395 | // 1. If any implementation-specific negotiation is required, as described |
| 3396 | // at the start of this section, return true. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3397 | |
| 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. |
Tommi | 91160ef | 2023-03-29 23:09:45 | [diff] [blame] | 3411 | if (data_channel_controller()->HasUsedDataChannels()) { |
Philipp Hancke | 522380f | 2023-05-09 07:41:03 | [diff] [blame] | 3412 | const cricket::ContentInfo* data_content = |
| 3413 | cricket::GetFirstDataContent(description->description()->contents()); |
| 3414 | if (!data_content) { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3415 | return true; |
Philipp Hancke | 522380f | 2023-05-09 07:41:03 | [diff] [blame] | 3416 | } |
| 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3426 | } |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 3427 | if (!ConfiguredForMedia()) { |
| 3428 | return false; |
| 3429 | } |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3430 | |
| 3431 | // 5. For each transceiver in connection's set of transceivers, perform the |
| 3432 | // following checks: |
Harald Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 3433 | for (const auto& transceiver : transceivers()->ListInternal()) { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3434 | const ContentInfo* current_local_msection = |
Harald Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 3435 | FindTransceiverMSection(transceiver, description); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3436 | |
Harald Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 3437 | const ContentInfo* current_remote_msection = |
| 3438 | FindTransceiverMSection(transceiver, current_remote_description()); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3439 | |
| 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 Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 3526 | FindTransceiverMSection(transceiver, remote_description()); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3527 | |
| 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3541 | // 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 | |
| 3546 | void SdpOfferAnswerHandler::GenerateNegotiationNeededEvent() { |
| 3547 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 3548 | ++negotiation_needed_event_id_; |
| 3549 | pc_->Observer()->OnNegotiationNeededEvent(negotiation_needed_event_id_); |
| 3550 | } |
| 3551 | |
| 3552 | RTCError SdpOfferAnswerHandler::ValidateSessionDescription( |
| 3553 | const SessionDescriptionInterface* sdesc, |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 3554 | cricket::ContentSource source, |
| 3555 | const std::map<std::string, const cricket::ContentGroup*>& |
| 3556 | bundle_groups_by_mid) { |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 3557 | // An assumption is that a check for session error is done at a higher level. |
| 3558 | RTC_DCHECK_EQ(SessionError::kNone, session_error()); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3559 | |
| 3560 | if (!sdesc || !sdesc->description()) { |
Philipp Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 3561 | LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, kInvalidSdp); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3562 | } |
| 3563 | |
| 3564 | SdpType type = sdesc->GetType(); |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 3565 | if ((source == cricket::CS_LOCAL && !ExpectSetLocalDescription(type)) || |
| 3566 | (source == cricket::CS_REMOTE && !ExpectSetRemoteDescription(type))) { |
Philipp Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 3567 | LOG_AND_RETURN_ERROR( |
| 3568 | RTCErrorType::INVALID_STATE, |
| 3569 | (rtc::StringBuilder("Called in wrong state: ") |
| 3570 | << PeerConnectionInterface::AsString(signaling_state())) |
| 3571 | .Release()); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3572 | } |
| 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 Alvestrand | 0d01841 | 2021-11-04 13:52:31 | [diff] [blame] | 3581 | 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3585 | if (!crypto_error.ok()) { |
| 3586 | return crypto_error; |
| 3587 | } |
| 3588 | } |
| 3589 | |
| 3590 | // Verify ice-ufrag and ice-pwd. |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 3591 | if (!VerifyIceUfragPwdPresent(sdesc->description(), bundle_groups_by_mid)) { |
Philipp Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 3592 | LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, |
| 3593 | kSdpWithoutIceUfragPwd); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3594 | } |
| 3595 | |
Philipp Hancke | a2f5d45 | 2022-12-19 10:04:06 | [diff] [blame] | 3596 | // Validate that there are no collisions of bundled payload types. |
Philipp Hancke | f0ea56a | 2022-11-28 16:48:04 | [diff] [blame] | 3597 | error = ValidateBundledPayloadTypes(*sdesc->description()); |
| 3598 | // TODO(bugs.webrtc.org/14420): actually reject. |
| 3599 | RTC_HISTOGRAM_BOOLEAN("WebRTC.PeerConnection.ValidBundledPayloadTypes", |
| 3600 | error.ok()); |
| 3601 | |
Philipp Hancke | a2f5d45 | 2022-12-19 10:04:06 | [diff] [blame] | 3602 | // Validate that there are no collisions of bundled header extensions ids. |
| 3603 | error = ValidateBundledRtpHeaderExtensions(*sdesc->description()); |
Philipp Hancke | 745641e | 2023-08-22 14:05:38 | [diff] [blame] | 3604 | if (!error.ok()) { |
Philipp Hancke | 4bf5238 | 2023-05-25 14:11:36 | [diff] [blame] | 3605 | return error; |
| 3606 | } |
Philipp Hancke | a2f5d45 | 2022-12-19 10:04:06 | [diff] [blame] | 3607 | |
Philipp Hancke | 1f1b0b3 | 2023-08-11 07:32:50 | [diff] [blame] | 3608 | // 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öm | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 3615 | if (!pc_->ValidateBundleSettings(sdesc->description(), |
| 3616 | bundle_groups_by_mid)) { |
Philipp Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 3617 | LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, |
| 3618 | kBundleWithoutRtcpMux); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3619 | } |
| 3620 | |
Philipp Hancke | b64615a | 2023-09-14 14:23:31 | [diff] [blame] | 3621 | error = ValidatePayloadTypes(*sdesc->description()); |
| 3622 | if (!error.ok()) { |
| 3623 | return error; |
| 3624 | } |
| 3625 | |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3626 | // 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 Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 3631 | // With an answer we want to compare the new answer session description |
| 3632 | // with the offer's session description from the current negotiation. |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3633 | 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 Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 3639 | LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, |
| 3640 | kMlineMismatchInAnswer); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3641 | } |
| 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 Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 3645 | // 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3651 | 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 Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 3664 | LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, |
| 3665 | kMlineMismatchInSubsequentOffer); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3666 | } |
| 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 Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 3680 | LOG_AND_RETURN_ERROR( |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 3681 | 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3684 | } |
| 3685 | } |
Philipp Hancke | 3488726 | 2023-06-01 17:07:50 | [diff] [blame] | 3686 | // 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3692 | } |
| 3693 | |
| 3694 | return RTCError::OK(); |
| 3695 | } |
| 3696 | |
| 3697 | RTCError SdpOfferAnswerHandler::UpdateTransceiversAndDataChannels( |
| 3698 | cricket::ContentSource source, |
| 3699 | const SessionDescriptionInterface& new_session, |
| 3700 | const SessionDescriptionInterface* old_local_description, |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 3701 | const SessionDescriptionInterface* old_remote_description, |
| 3702 | const std::map<std::string, const cricket::ContentGroup*>& |
| 3703 | bundle_groups_by_mid) { |
Markus Handell | 518669d | 2021-06-07 11:30:46 | [diff] [blame] | 3704 | TRACE_EVENT0("webrtc", |
| 3705 | "SdpOfferAnswerHandler::UpdateTransceiversAndDataChannels"); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3706 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 3707 | RTC_DCHECK(IsUnifiedPlan()); |
| 3708 | |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3709 | if (new_session.GetType() == SdpType::kOffer) { |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 3710 | // If the BUNDLE policy is max-bundle, then we know for sure that all |
Tomas Gunnarsson | 1c7c09b | 2022-01-12 12:11:04 | [diff] [blame] | 3711 | // 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öm | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 3714 | if (pc_->configuration()->bundle_policy == |
| 3715 | PeerConnectionInterface::kBundlePolicyMaxBundle && |
| 3716 | bundle_groups_by_mid.empty()) { |
Philipp Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 3717 | LOG_AND_RETURN_ERROR( |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 3718 | RTCErrorType::INVALID_PARAMETER, |
| 3719 | "max-bundle configured but session description has no BUNDLE group"); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3720 | } |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3721 | } |
| 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 Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 3727 | mid_generator_.AddKnownId(new_content.name); |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 3728 | 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3731 | 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3745 | 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öm | a8ad11d | 2022-04-27 09:54:01 | [diff] [blame] | 3749 | // 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 Alvestrand | 09bd9ba | 2020-10-09 08:13:30 | [diff] [blame] | 3752 | if (new_content.rejected) { |
| 3753 | continue; |
| 3754 | } |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3755 | 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öm | a8ad11d | 2022-04-27 09:54:01 | [diff] [blame] | 3760 | // 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3790 | 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 Hancke | 4e8c115 | 2020-10-13 10:43:15 | [diff] [blame] | 3804 | } else if (media_type == cricket::MEDIA_TYPE_UNSUPPORTED) { |
| 3805 | RTC_LOG(LS_INFO) << "Ignoring unsupported media type"; |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3806 | } else { |
Philipp Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 3807 | LOG_AND_RETURN_ERROR(RTCErrorType::INTERNAL_ERROR, |
| 3808 | "Unknown section type."); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3809 | } |
| 3810 | } |
| 3811 | |
| 3812 | return RTCError::OK(); |
| 3813 | } |
| 3814 | |
| 3815 | RTCErrorOr<rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>> |
| 3816 | SdpOfferAnswerHandler::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 Handell | 518669d | 2021-06-07 11:30:46 | [diff] [blame] | 3823 | TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::AssociateTransceiver"); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3824 | RTC_DCHECK(IsUnifiedPlan()); |
Tomas Gunnarsson | 3699236 | 2020-10-05 19:41:36 | [diff] [blame] | 3825 | #if RTC_DCHECK_IS_ON |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3826 | // 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 Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 3829 | // should have been removed by RemoveStoppedtransceivers()-> |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3830 | 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 Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 3836 | auto old_transceiver = transceivers()->FindByMid(old_mid); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3837 | // The transceiver should be disassociated in RemoveStoppedTransceivers() |
| 3838 | RTC_DCHECK(!old_transceiver); |
| 3839 | } |
Tomas Gunnarsson | 3699236 | 2020-10-05 19:41:36 | [diff] [blame] | 3840 | #endif |
| 3841 | |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3842 | const MediaContentDescription* media_desc = content.media_description(); |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 3843 | auto transceiver = transceivers()->FindByMid(content.name); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3844 | 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 Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 3849 | transceiver = transceivers()->FindByMLineIndex(mline_index); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3850 | } |
| 3851 | if (!transceiver) { |
Harald Alvestrand | 09bd9ba | 2020-10-09 08:13:30 | [diff] [blame] | 3852 | // This may happen normally when media sections are rejected. |
Philipp Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 3853 | LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, |
| 3854 | "Transceiver not found based on m-line index"); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3855 | } |
| 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 Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 3865 | transceiver = FindAvailableTransceiverToReceive(media_desc->type()); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3866 | } |
| 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 Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 3878 | auto sender = rtp_manager()->CreateSender(media_desc->type(), sender_id, |
| 3879 | nullptr, {}, send_encodings); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3880 | 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 Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 3886 | auto receiver = |
| 3887 | rtp_manager()->CreateReceiver(media_desc->type(), receiver_id); |
| 3888 | transceiver = rtp_manager()->CreateAndAddTransceiver(sender, receiver); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3889 | transceiver->internal()->set_direction( |
| 3890 | RtpTransceiverDirection::kRecvOnly); |
| 3891 | if (type == SdpType::kOffer) { |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 3892 | transceivers()->StableState(transceiver)->set_newly_created(); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3893 | } |
| 3894 | } |
Tomas Gunnarsson | 3699236 | 2020-10-05 19:41:36 | [diff] [blame] | 3895 | |
| 3896 | RTC_DCHECK(transceiver); |
| 3897 | |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3898 | // 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 Grahl | 0d0ed76 | 2021-05-17 14:06:37 | [diff] [blame] | 3900 | if (SimulcastIsRejected(old_local_content, *media_desc, |
| 3901 | pc_->GetCryptoOptions() |
| 3902 | .srtp.enable_encrypted_rtp_header_extensions)) { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3903 | 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 Gunnarsson | 3699236 | 2020-10-05 19:41:36 | [diff] [blame] | 3911 | |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3912 | if (transceiver->media_type() != media_desc->type()) { |
Philipp Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 3913 | LOG_AND_RETURN_ERROR( |
| 3914 | RTCErrorType::INVALID_PARAMETER, |
| 3915 | "Transceiver type does not match media description type."); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3916 | } |
Tomas Gunnarsson | 3699236 | 2020-10-05 19:41:36 | [diff] [blame] | 3917 | |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3918 | 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 Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 3936 | transceivers() |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 3937 | ->StableState(transceiver) |
Harald Alvestrand | 38b768c | 2020-09-29 11:54:05 | [diff] [blame] | 3938 | ->SetMSectionIfUnset(transceiver->internal()->mid(), |
| 3939 | transceiver->internal()->mline_index()); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3940 | } |
| 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 Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3951 | RTCError SdpOfferAnswerHandler::UpdateTransceiverChannel( |
| 3952 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>> |
| 3953 | transceiver, |
| 3954 | const cricket::ContentInfo& content, |
| 3955 | const cricket::ContentGroup* bundle_group) { |
Markus Handell | 518669d | 2021-06-07 11:30:46 | [diff] [blame] | 3956 | TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::UpdateTransceiverChannel"); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3957 | RTC_DCHECK(IsUnifiedPlan()); |
| 3958 | RTC_DCHECK(transceiver); |
| 3959 | cricket::ChannelInterface* channel = transceiver->internal()->channel(); |
| 3960 | if (content.rejected) { |
| 3961 | if (channel) { |
Harald Alvestrand | 19ebabc | 2022-04-28 13:31:17 | [diff] [blame] | 3962 | transceiver->internal()->ClearChannel(); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3963 | } |
| 3964 | } else { |
| 3965 | if (!channel) { |
Harald Alvestrand | 8f42992 | 2022-05-04 10:32:30 | [diff] [blame] | 3966 | 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 Alvestrand | 3af79d1 | 2022-04-29 15:04:58 | [diff] [blame] | 3971 | RTC_DCHECK_RUN_ON(network_thread()); |
| 3972 | return transport_controller_n()->GetRtpTransport(mid); |
| 3973 | }); |
Harald Alvestrand | 8f42992 | 2022-05-04 10:32:30 | [diff] [blame] | 3974 | if (!error.ok()) { |
| 3975 | return error; |
| 3976 | } |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3977 | } |
| 3978 | } |
| 3979 | return RTCError::OK(); |
| 3980 | } |
| 3981 | |
| 3982 | RTCError SdpOfferAnswerHandler::UpdateDataChannel( |
| 3983 | cricket::ContentSource source, |
| 3984 | const cricket::ContentInfo& content, |
| 3985 | const cricket::ContentGroup* bundle_group) { |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3986 | if (content.rejected) { |
Florent Castelli | dcb9ffc | 2021-06-29 12:58:23 | [diff] [blame] | 3987 | 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); |
Tommi | add7ac0 | 2023-04-12 10:01:10 | [diff] [blame] | 3995 | } else if (!CreateDataChannel(content.name)) { |
Philipp Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 3996 | LOG_AND_RETURN_ERROR(RTCErrorType::INTERNAL_ERROR, |
| 3997 | "Failed to create data channel."); |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 3998 | } |
| 3999 | return RTCError::OK(); |
| 4000 | } |
| 4001 | |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4002 | bool 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 | |
| 4014 | bool 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 | |
| 4026 | void 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 Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 4052 | new_mid = mid_generator_.GenerateString(); |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4053 | 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 | |
| 4069 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>> |
| 4070 | SdpOfferAnswerHandler::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 Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 4079 | for (auto transceiver : transceivers()->List()) { |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4080 | 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 | |
| 4089 | const cricket::ContentInfo* |
| 4090 | SdpOfferAnswerHandler::FindMediaSectionForTransceiver( |
Harald Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 4091 | const RtpTransceiver* transceiver, |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4092 | const SessionDescriptionInterface* sdesc) const { |
| 4093 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 4094 | RTC_DCHECK(transceiver); |
| 4095 | RTC_DCHECK(sdesc); |
| 4096 | if (IsUnifiedPlan()) { |
Harald Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 4097 | if (!transceiver->mid()) { |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4098 | // This transceiver is not associated with a media section yet. |
| 4099 | return nullptr; |
| 4100 | } |
Harald Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 4101 | return sdesc->description()->GetContentByName(*transceiver->mid()); |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4102 | } 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 | |
| 4110 | void 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 Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4122 | // 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 Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 4130 | session_options->rtcp_cname = rtcp_cname_; |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4131 | session_options->crypto_options = pc_->GetCryptoOptions(); |
| 4132 | session_options->pooled_ice_credentials = |
Danil Chapovalov | 9e09a1f | 2022-09-08 16:38:10 | [diff] [blame] | 4133 | context_->network_thread()->BlockingCall( |
Niels Möller | 4bab23f | 2021-01-18 08:24:33 | [diff] [blame] | 4134 | [this] { return port_allocator()->GetPooledIceCredentials(); }); |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4135 | session_options->offer_extmap_allow_mixed = |
| 4136 | pc_->configuration()->offer_extmap_allow_mixed; |
| 4137 | |
| 4138 | // Allow fallback for using obsolete SCTP syntax. |
Artem Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 4139 | // Note that the default in `session_options` is true, while |
| 4140 | // the default in `options` is false. |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4141 | session_options->use_obsolete_sctp_sdp = |
| 4142 | offer_answer_options.use_obsolete_sctp_sdp; |
| 4143 | } |
| 4144 | |
| 4145 | void SdpOfferAnswerHandler::GetOptionsForPlanBOffer( |
| 4146 | const PeerConnectionInterface::RTCOfferAnswerOptions& offer_answer_options, |
| 4147 | cricket::MediaSessionOptions* session_options) { |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4148 | bool offer_new_data_description = |
Harald Alvestrand | 5da3eb0 | 2023-03-15 20:39:42 | [diff] [blame] | 4149 | data_channel_controller()->HasUsedDataChannels(); |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4150 | 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 Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4160 | |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4161 | // By default, generate sendrecv/recvonly m= sections. |
| 4162 | recv_audio = true; |
| 4163 | recv_video = true; |
| 4164 | } |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4165 | // 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 Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4168 | 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 Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4184 | } |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4185 | 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 Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 4192 | GenerateMediaDescriptionOptions( |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4193 | 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 Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4199 | 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 Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4232 | } |
| 4233 | if (!data_index && offer_new_data_description) { |
| 4234 | session_options->media_description_options.push_back( |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 4235 | GetMediaDescriptionOptionsForActiveData(cricket::CN_DATA)); |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4236 | } |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4237 | } |
| 4238 | |
| 4239 | void 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 Titov | 880fa81 | 2021-07-30 20:30:23 | [diff] [blame] | 4261 | // Either `local_content` or `remote_content` is non-null. |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4262 | 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 Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 4282 | auto transceiver = transceivers()->FindByMid(mid); |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4283 | 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 Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 4304 | transceiver->internal(), mid, |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4305 | /*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 Hancke | 4e8c115 | 2020-10-13 10:43:15 | [diff] [blame] | 4314 | } 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 Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4320 | } 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 Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 4324 | GetMediaDescriptionOptionsForRejectedData(mid)); |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4325 | } else { |
| 4326 | RTC_CHECK(pc_->GetDataMid()); |
| 4327 | if (mid == *(pc_->GetDataMid())) { |
| 4328 | session_options->media_description_options.push_back( |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 4329 | GetMediaDescriptionOptionsForActiveData(mid)); |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4330 | } else { |
| 4331 | session_options->media_description_options.push_back( |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 4332 | GetMediaDescriptionOptionsForRejectedData(mid)); |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4333 | } |
| 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 Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4342 | 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 Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4364 | } |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4365 | } |
Harald Alvestrand | 5da3eb0 | 2023-03-15 20:39:42 | [diff] [blame] | 4366 | // Lastly, add a m-section if we have requested local data channels and an |
| 4367 | // m section does not already exist. |
Tommi | 44ebe2a | 2023-05-15 13:14:10 | [diff] [blame] | 4368 | if (!pc_->GetDataMid() && data_channel_controller()->HasDataChannels()) { |
Philipp Hancke | 522380f | 2023-05-09 07:41:03 | [diff] [blame] | 4369 | // 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 Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4389 | } |
| 4390 | } |
| 4391 | |
| 4392 | void 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 Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4404 | // 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 Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 4410 | session_options->rtcp_cname = rtcp_cname_; |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4411 | session_options->crypto_options = pc_->GetCryptoOptions(); |
| 4412 | session_options->pooled_ice_credentials = |
Danil Chapovalov | 9e09a1f | 2022-09-08 16:38:10 | [diff] [blame] | 4413 | context_->network_thread()->BlockingCall( |
Niels Möller | 4bab23f | 2021-01-18 08:24:33 | [diff] [blame] | 4414 | [this] { return port_allocator()->GetPooledIceCredentials(); }); |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4415 | } |
| 4416 | |
| 4417 | void SdpOfferAnswerHandler::GetOptionsForPlanBAnswer( |
| 4418 | const PeerConnectionInterface::RTCOfferAnswerOptions& offer_answer_options, |
| 4419 | cricket::MediaSessionOptions* session_options) { |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4420 | bool send_audio = false; |
| 4421 | bool recv_audio = false; |
| 4422 | bool send_video = false; |
| 4423 | bool recv_video = false; |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4424 | |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4425 | 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 Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4431 | |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4432 | // 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 Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4446 | } |
| 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 Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 4455 | GenerateMediaDescriptionOptions( |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4456 | 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 Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4468 | 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 Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4474 | } |
| 4475 | |
| 4476 | void 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 Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 4488 | auto transceiver = transceivers()->FindByMid(content.name); |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4489 | if (transceiver) { |
| 4490 | session_options->media_description_options.push_back( |
| 4491 | GetMediaDescriptionOptionsForTransceiver( |
Harald Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 4492 | transceiver->internal(), content.name, |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4493 | /*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 Hancke | 4e8c115 | 2020-10-13 10:43:15 | [diff] [blame] | 4502 | } 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 Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4508 | } 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 Castelli | 516e284 | 2021-04-19 13:29:50 | [diff] [blame] | 4513 | if (content.rejected || content.name != *(pc_->GetDataMid())) { |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4514 | session_options->media_description_options.push_back( |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 4515 | GetMediaDescriptionOptionsForRejectedData(content.name)); |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4516 | } else { |
| 4517 | session_options->media_description_options.push_back( |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 4518 | GetMediaDescriptionOptionsForActiveData(content.name)); |
Harald Alvestrand | c06e374 | 2020-10-01 10:23:33 | [diff] [blame] | 4519 | } |
| 4520 | } |
| 4521 | } |
| 4522 | } |
| 4523 | |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4524 | const 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 Titov | d325196 | 2021-11-15 15:57:07 | [diff] [blame] | 4534 | RTC_DCHECK_NOTREACHED(); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4535 | return ""; |
| 4536 | } |
| 4537 | |
| 4538 | std::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 | |
| 4546 | void 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 | |
| 4555 | RTCError 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 | |
| 4583 | void 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 | |
| 4602 | void 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 | |
| 4616 | std::vector<rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>> |
| 4617 | SdpOfferAnswerHandler::GetReceivingTransceiversOfType( |
| 4618 | cricket::MediaType media_type) { |
| 4619 | std::vector< |
| 4620 | rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>> |
| 4621 | receiving_transceivers; |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 4622 | for (const auto& transceiver : transceivers()->List()) { |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4623 | 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 | |
| 4631 | void 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 | |
| 4647 | void 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öller | afb246b | 2022-04-20 12:26:50 | [diff] [blame] | 4657 | remote_streams_->RemoveStream(remote_stream.get()); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4658 | removed_streams->push_back(remote_stream); |
| 4659 | } |
| 4660 | } |
| 4661 | } |
| 4662 | |
| 4663 | void 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 | |
| 4670 | void SdpOfferAnswerHandler::UpdateLocalSenders( |
| 4671 | const std::vector<cricket::StreamParams>& streams, |
| 4672 | cricket::MediaType media_type) { |
Markus Handell | 518669d | 2021-06-07 11:30:46 | [diff] [blame] | 4673 | TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::UpdateLocalSenders"); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4674 | RTC_DCHECK_RUN_ON(signaling_thread()); |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 4675 | std::vector<RtpSenderInfo>* current_senders = |
| 4676 | rtp_manager()->GetLocalSenderInfos(media_type); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4677 | |
| 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 Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 4683 | const RtpSenderInfo& info = *sender_it; |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4684 | 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 Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 4688 | rtp_manager()->OnLocalSenderRemoved(info, media_type); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4689 | 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 Titov | cfea218 | 2021-08-09 23:22:31 | [diff] [blame] | 4697 | // The sync_label is the MediaStream label and the `stream.id` is the |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4698 | // 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 Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 4702 | const RtpSenderInfo* sender_info = |
| 4703 | rtp_manager()->FindSenderInfo(*current_senders, stream_id, sender_id); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4704 | if (!sender_info) { |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 4705 | current_senders->push_back(RtpSenderInfo(stream_id, sender_id, ssrc)); |
| 4706 | rtp_manager()->OnLocalSenderAdded(current_senders->back(), media_type); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4707 | } |
| 4708 | } |
| 4709 | } |
| 4710 | |
| 4711 | void SdpOfferAnswerHandler::UpdateRemoteSendersList( |
| 4712 | const cricket::StreamParamsVec& streams, |
| 4713 | bool default_sender_needed, |
| 4714 | cricket::MediaType media_type, |
| 4715 | StreamCollection* new_streams) { |
Markus Handell | 518669d | 2021-06-07 11:30:46 | [diff] [blame] | 4716 | TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::UpdateRemoteSendersList"); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4717 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 4718 | RTC_DCHECK(!IsUnifiedPlan()); |
| 4719 | |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 4720 | std::vector<RtpSenderInfo>* current_senders = |
| 4721 | rtp_manager()->GetRemoteSenderInfos(media_type); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4722 | |
| 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 Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 4728 | const RtpSenderInfo& info = *sender_it; |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4729 | 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 Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 4744 | rtp_manager()->OnRemoteSenderRemoved( |
| 4745 | info, remote_streams_->find(info.stream_id), media_type); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4746 | 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 Titov | cfea218 | 2021-08-09 23:22:31 | [diff] [blame] | 4760 | // `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 Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4762 | // 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öller | e7cc883 | 2022-01-04 14:20:03 | [diff] [blame] | 4771 | rtc::scoped_refptr<MediaStreamInterface> stream( |
| 4772 | remote_streams_->find(stream_id)); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4773 | 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 Alvestrand | 6f04b653 | 2020-10-09 11:42:17 | [diff] [blame] | 4777 | remote_streams_->AddStream(stream); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4778 | new_streams->AddStream(stream); |
| 4779 | } |
| 4780 | |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 4781 | const RtpSenderInfo* sender_info = |
| 4782 | rtp_manager()->FindSenderInfo(*current_senders, stream_id, sender_id); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4783 | if (!sender_info) { |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 4784 | current_senders->push_back(RtpSenderInfo(stream_id, sender_id, ssrc)); |
Niels Möller | afb246b | 2022-04-20 12:26:50 | [diff] [blame] | 4785 | rtp_manager()->OnRemoteSenderAdded(current_senders->back(), stream.get(), |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 4786 | media_type); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4787 | } |
| 4788 | } |
| 4789 | |
| 4790 | // Add default sender if necessary. |
| 4791 | if (default_sender_needed) { |
Niels Möller | e7cc883 | 2022-01-04 14:20:03 | [diff] [blame] | 4792 | rtc::scoped_refptr<MediaStreamInterface> default_stream( |
| 4793 | remote_streams_->find(kDefaultStreamId)); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4794 | if (!default_stream) { |
| 4795 | // Create the new default MediaStream. |
| 4796 | default_stream = MediaStreamProxy::Create( |
| 4797 | rtc::Thread::Current(), MediaStream::Create(kDefaultStreamId)); |
Harald Alvestrand | 6f04b653 | 2020-10-09 11:42:17 | [diff] [blame] | 4798 | remote_streams_->AddStream(default_stream); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4799 | new_streams->AddStream(default_stream); |
| 4800 | } |
| 4801 | std::string default_sender_id = (media_type == cricket::MEDIA_TYPE_AUDIO) |
| 4802 | ? kDefaultAudioSenderId |
| 4803 | : kDefaultVideoSenderId; |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 4804 | const RtpSenderInfo* default_sender_info = rtp_manager()->FindSenderInfo( |
| 4805 | *current_senders, kDefaultStreamId, default_sender_id); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4806 | if (!default_sender_info) { |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 4807 | current_senders->push_back( |
| 4808 | RtpSenderInfo(kDefaultStreamId, default_sender_id, /*ssrc=*/0)); |
| 4809 | rtp_manager()->OnRemoteSenderAdded(current_senders->back(), |
Niels Möller | afb246b | 2022-04-20 12:26:50 | [diff] [blame] | 4810 | default_stream.get(), media_type); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4811 | } |
| 4812 | } |
| 4813 | } |
| 4814 | |
Taylor Brandstetter | d0acbd8 | 2021-01-25 21:44:55 | [diff] [blame] | 4815 | void SdpOfferAnswerHandler::EnableSending() { |
Markus Handell | 518669d | 2021-06-07 11:30:46 | [diff] [blame] | 4816 | TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::EnableSending"); |
Taylor Brandstetter | d0acbd8 | 2021-01-25 21:44:55 | [diff] [blame] | 4817 | RTC_DCHECK_RUN_ON(signaling_thread()); |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4818 | if (!ConfiguredForMedia()) { |
| 4819 | return; |
| 4820 | } |
Harald Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 4821 | for (const auto& transceiver : transceivers()->ListInternal()) { |
| 4822 | cricket::ChannelInterface* channel = transceiver->channel(); |
Tommi | 1959f8f | 2021-04-26 08:20:19 | [diff] [blame] | 4823 | if (channel) { |
Taylor Brandstetter | d0acbd8 | 2021-01-25 21:44:55 | [diff] [blame] | 4824 | channel->Enable(true); |
| 4825 | } |
| 4826 | } |
Taylor Brandstetter | d0acbd8 | 2021-01-25 21:44:55 | [diff] [blame] | 4827 | } |
| 4828 | |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4829 | RTCError SdpOfferAnswerHandler::PushdownMediaDescription( |
| 4830 | SdpType type, |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 4831 | cricket::ContentSource source, |
| 4832 | const std::map<std::string, const cricket::ContentGroup*>& |
| 4833 | bundle_groups_by_mid) { |
Markus Handell | 518669d | 2021-06-07 11:30:46 | [diff] [blame] | 4834 | TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::PushdownMediaDescription"); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4835 | 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 Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4841 | if (ConfiguredForMedia()) { |
Danil Chapovalov | 9e09a1f | 2022-09-08 16:38:10 | [diff] [blame] | 4842 | // Note: This will perform a BlockingCall over to the worker thread, which |
| 4843 | // we'll also do in a loop below. |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4844 | 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 Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 4848 | LOG_AND_RETURN_ERROR(RTCErrorType::INTERNAL_ERROR, |
| 4849 | "Failed to update payload type demuxing state."); |
Taylor Brandstetter | d0acbd8 | 2021-01-25 21:44:55 | [diff] [blame] | 4850 | } |
Tommi | cc7a368 | 2021-05-04 12:59:38 | [diff] [blame] | 4851 | |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4852 | // 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 | } |
Tommi | cc7a368 | 2021-05-04 12:59:38 | [diff] [blame] | 4869 | |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4870 | 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 Siskin | bceec84 | 2023-04-20 21:10:51 | [diff] [blame] | 4886 | 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 Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4891 | if (!success) { |
Philipp Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 4892 | LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, error); |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4893 | } |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4894 | } |
| 4895 | } |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4896 | // 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 Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4899 | auto local_sctp_description = cricket::GetFirstSctpDataContentDescription( |
| 4900 | local_description()->description()); |
| 4901 | auto remote_sctp_description = cricket::GetFirstSctpDataContentDescription( |
| 4902 | remote_description()->description()); |
Tomas Gunnarsson | 92eebef | 2021-02-10 12:05:44 | [diff] [blame] | 4903 | if (local_sctp_description && remote_sctp_description) { |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4904 | 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 Gunnarsson | 92eebef | 2021-02-10 12:05:44 | [diff] [blame] | 4914 | pc_->StartSctpTransport(local_sctp_description->port(), |
| 4915 | remote_sctp_description->port(), |
| 4916 | max_message_size); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4917 | } |
| 4918 | } |
| 4919 | |
| 4920 | return RTCError::OK(); |
| 4921 | } |
| 4922 | |
| 4923 | RTCError SdpOfferAnswerHandler::PushdownTransportDescription( |
| 4924 | cricket::ContentSource source, |
| 4925 | SdpType type) { |
Markus Handell | 518669d | 2021-06-07 11:30:46 | [diff] [blame] | 4926 | TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::PushdownTransportDescription"); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4927 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 4928 | |
| 4929 | if (source == cricket::CS_LOCAL) { |
| 4930 | const SessionDescriptionInterface* sdesc = local_description(); |
| 4931 | RTC_DCHECK(sdesc); |
Harald Alvestrand | bc32c56 | 2022-02-09 12:08:47 | [diff] [blame] | 4932 | return transport_controller_s()->SetLocalDescription(type, |
| 4933 | sdesc->description()); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4934 | } else { |
| 4935 | const SessionDescriptionInterface* sdesc = remote_description(); |
| 4936 | RTC_DCHECK(sdesc); |
Harald Alvestrand | bc32c56 | 2022-02-09 12:08:47 | [diff] [blame] | 4937 | return transport_controller_s()->SetRemoteDescription(type, |
| 4938 | sdesc->description()); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4939 | } |
| 4940 | } |
| 4941 | |
| 4942 | void SdpOfferAnswerHandler::RemoveStoppedTransceivers() { |
Markus Handell | 518669d | 2021-06-07 11:30:46 | [diff] [blame] | 4943 | TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::RemoveStoppedTransceivers"); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4944 | 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 Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4949 | if (!ConfiguredForMedia()) { |
| 4950 | return; |
| 4951 | } |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4952 | // Traverse a copy of the transceiver list. |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 4953 | auto transceiver_list = transceivers()->List(); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4954 | 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 Alvestrand | 8546666 | 2021-04-19 21:21:36 | [diff] [blame] | 4963 | const ContentInfo* local_content = FindMediaSectionForTransceiver( |
| 4964 | transceiver->internal(), local_description()); |
| 4965 | const ContentInfo* remote_content = FindMediaSectionForTransceiver( |
| 4966 | transceiver->internal(), remote_description()); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4967 | if ((local_content && local_content->rejected) || |
| 4968 | (remote_content && remote_content->rejected)) { |
| 4969 | RTC_LOG(LS_INFO) << "Dissociating transceiver" |
Tomas Gunnarsson | 7fa8d46 | 2021-04-16 12:28:26 | [diff] [blame] | 4970 | " since the media section is being recycled."; |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4971 | transceiver->internal()->set_mid(absl::nullopt); |
| 4972 | transceiver->internal()->set_mline_index(absl::nullopt); |
Tomas Gunnarsson | 7fa8d46 | 2021-04-16 12:28:26 | [diff] [blame] | 4973 | } else if (!local_content && !remote_content) { |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4974 | // 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 Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4978 | } |
Tomas Gunnarsson | 7fa8d46 | 2021-04-16 12:28:26 | [diff] [blame] | 4979 | transceivers()->Remove(transceiver); |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 4980 | } |
| 4981 | } |
| 4982 | |
| 4983 | void SdpOfferAnswerHandler::RemoveUnusedChannels( |
| 4984 | const SessionDescription* desc) { |
| 4985 | RTC_DCHECK_RUN_ON(signaling_thread()); |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4986 | 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 Titov | c6c02ef | 2022-05-09 08:30:09 | [diff] [blame] | 4994 | |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 4995 | const cricket::ContentInfo* audio_info = |
| 4996 | cricket::GetFirstAudioContent(desc); |
| 4997 | if (!audio_info || audio_info->rejected) { |
| 4998 | rtp_manager()->GetAudioTransceiver()->internal()->ClearChannel(); |
| 4999 | } |
Artem Titov | c6c02ef | 2022-05-09 08:30:09 | [diff] [blame] | 5000 | } |
Harald Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 5001 | const cricket::ContentInfo* data_info = cricket::GetFirstDataContent(desc); |
Florent Castelli | dcb9ffc | 2021-06-29 12:58:23 | [diff] [blame] | 5002 | 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 Alvestrand | a474fbf | 2020-10-01 16:47:23 | [diff] [blame] | 5014 | } |
| 5015 | } |
| 5016 | |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5017 | void SdpOfferAnswerHandler::UpdateEndedRemoteMediaStreams() { |
| 5018 | RTC_DCHECK_RUN_ON(signaling_thread()); |
| 5019 | std::vector<rtc::scoped_refptr<MediaStreamInterface>> streams_to_remove; |
Harald Alvestrand | 6f04b653 | 2020-10-09 11:42:17 | [diff] [blame] | 5020 | for (size_t i = 0; i < remote_streams_->count(); ++i) { |
| 5021 | MediaStreamInterface* stream = remote_streams_->at(i); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5022 | if (stream->GetAudioTracks().empty() && stream->GetVideoTracks().empty()) { |
Niels Möller | e7cc883 | 2022-01-04 14:20:03 | [diff] [blame] | 5023 | streams_to_remove.push_back( |
| 5024 | rtc::scoped_refptr<MediaStreamInterface>(stream)); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5025 | } |
| 5026 | } |
| 5027 | |
| 5028 | for (auto& stream : streams_to_remove) { |
Niels Möller | afb246b | 2022-04-20 12:26:50 | [diff] [blame] | 5029 | remote_streams_->RemoveStream(stream.get()); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5030 | pc_->Observer()->OnRemoveStream(std::move(stream)); |
| 5031 | } |
| 5032 | } |
| 5033 | |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 5034 | bool SdpOfferAnswerHandler::UseCandidatesInRemoteDescription() { |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5035 | RTC_DCHECK_RUN_ON(signaling_thread()); |
Tomas Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 5036 | auto* remote_desc = remote_description(); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5037 | 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 Gunnarsson | 0dd7539 | 2022-01-17 18:19:56 | [diff] [blame] | 5050 | << "UseCandidatesInRemoteDescription: Not ready to use " |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5051 | "candidate."; |
| 5052 | } |
| 5053 | continue; |
| 5054 | } |
| 5055 | ret = UseCandidate(candidate); |
| 5056 | if (!ret) { |
| 5057 | break; |
| 5058 | } |
| 5059 | } |
| 5060 | } |
| 5061 | return ret; |
| 5062 | } |
| 5063 | |
| 5064 | bool SdpOfferAnswerHandler::UseCandidate( |
| 5065 | const IceCandidateInterface* candidate) { |
| 5066 | RTC_DCHECK_RUN_ON(signaling_thread()); |
Tomas Gunnarsson | 8cb9706 | 2021-02-08 17:57:04 | [diff] [blame] | 5067 | |
| 5068 | rtc::Thread::ScopedDisallowBlockingCalls no_blocking_calls; |
| 5069 | |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5070 | RTCErrorOr<const cricket::ContentInfo*> result = |
| 5071 | FindContentInfo(remote_description(), candidate); |
Tomas Gunnarsson | 8cb9706 | 2021-02-08 17:57:04 | [diff] [blame] | 5072 | if (!result.ok()) |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5073 | return false; |
Tomas Gunnarsson | 8cb9706 | 2021-02-08 17:57:04 | [diff] [blame] | 5074 | |
| 5075 | const cricket::Candidate& c = candidate->candidate(); |
| 5076 | RTCError error = cricket::VerifyCandidate(c); |
Tomas Gunnarsson | 27bc6e2 | 2021-02-12 12:16:26 | [diff] [blame] | 5077 | if (!error.ok()) { |
| 5078 | RTC_LOG(LS_WARNING) << "Invalid candidate: " << c.ToString(); |
| 5079 | return true; |
| 5080 | } |
Tomas Gunnarsson | 8cb9706 | 2021-02-08 17:57:04 | [diff] [blame] | 5081 | |
| 5082 | pc_->AddRemoteCandidate(result.value()->name, c); |
| 5083 | |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5084 | 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. |
| 5092 | bool 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 Gunnarsson | 45de8b3 | 2021-04-02 10:33:39 | [diff] [blame] | 5116 | return true; |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5117 | } |
| 5118 | |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5119 | RTCErrorOr<const cricket::ContentInfo*> SdpOfferAnswerHandler::FindContentInfo( |
| 5120 | const SessionDescriptionInterface* description, |
| 5121 | const IceCandidateInterface* candidate) { |
Philipp Hancke | 31e06cb | 2021-02-26 08:23:53 | [diff] [blame] | 5122 | if (!candidate->sdp_mid().empty()) { |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5123 | 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 Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 5129 | LOG_AND_RETURN_ERROR( |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5130 | 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 Hancke | 31e06cb | 2021-02-26 08:23:53 | [diff] [blame] | 5136 | } 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 Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 5143 | 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 Hancke | 31e06cb | 2021-02-26 08:23:53 | [diff] [blame] | 5148 | } |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5149 | } |
| 5150 | |
Philipp Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 5151 | LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, |
| 5152 | "Neither sdp_mline_index nor sdp_mid specified."); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5153 | } |
| 5154 | |
| 5155 | RTCError SdpOfferAnswerHandler::CreateChannels(const SessionDescription& desc) { |
Markus Handell | 518669d | 2021-06-07 11:30:46 | [diff] [blame] | 5156 | TRACE_EVENT0("webrtc", "SdpOfferAnswerHandler::CreateChannels"); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5157 | // 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 Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 5162 | !rtp_manager()->GetAudioTransceiver()->internal()->channel()) { |
Harald Alvestrand | 8f42992 | 2022-05-04 10:32:30 | [diff] [blame] | 5163 | 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 Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5174 | } |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5175 | } |
| 5176 | |
| 5177 | const cricket::ContentInfo* video = cricket::GetFirstVideoContent(&desc); |
| 5178 | if (video && !video->rejected && |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 5179 | !rtp_manager()->GetVideoTransceiver()->internal()->channel()) { |
Harald Alvestrand | 8f42992 | 2022-05-04 10:32:30 | [diff] [blame] | 5180 | 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 Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5192 | } |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5193 | } |
| 5194 | |
| 5195 | const cricket::ContentInfo* data = cricket::GetFirstDataContent(&desc); |
Tommi | add7ac0 | 2023-04-12 10:01:10 | [diff] [blame] | 5196 | if (data && !data->rejected && !CreateDataChannel(data->name)) { |
Philipp Hancke | b81bf53 | 2023-07-18 09:03:39 | [diff] [blame] | 5197 | LOG_AND_RETURN_ERROR(RTCErrorType::INTERNAL_ERROR, |
| 5198 | "Failed to create data channel."); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5199 | } |
| 5200 | |
| 5201 | return RTCError::OK(); |
| 5202 | } |
| 5203 | |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5204 | bool SdpOfferAnswerHandler::CreateDataChannel(const std::string& mid) { |
| 5205 | RTC_DCHECK_RUN_ON(signaling_thread()); |
Tommi | 299cdc9 | 2023-06-26 19:11:35 | [diff] [blame] | 5206 | RTC_DCHECK(!pc_->sctp_mid().has_value() || mid == pc_->sctp_mid().value()); |
Tommi | add7ac0 | 2023-04-12 10:01:10 | [diff] [blame] | 5207 | RTC_LOG(LS_INFO) << "Creating data channel, mid=" << mid; |
| 5208 | |
Tommi | aa3c9f2 | 2023-04-18 10:19:19 | [diff] [blame] | 5209 | absl::optional<std::string> transport_name = |
| 5210 | context_->network_thread()->BlockingCall([&] { |
Harald Alvestrand | 66c4036 | 2022-01-28 17:41:30 | [diff] [blame] | 5211 | RTC_DCHECK_RUN_ON(context_->network_thread()); |
Florent Castelli | 516e284 | 2021-04-19 13:29:50 | [diff] [blame] | 5212 | return pc_->SetupDataChannelTransport_n(mid); |
Tommi | aa3c9f2 | 2023-04-18 10:19:19 | [diff] [blame] | 5213 | }); |
| 5214 | if (!transport_name) |
Florent Castelli | 516e284 | 2021-04-19 13:29:50 | [diff] [blame] | 5215 | return false; |
Tommi | aa3c9f2 | 2023-04-18 10:19:19 | [diff] [blame] | 5216 | |
| 5217 | pc_->SetSctpDataInfo(mid, *transport_name); |
Tomas Gunnarsson | 00f4fd9 | 2021-04-08 12:39:47 | [diff] [blame] | 5218 | return true; |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5219 | } |
| 5220 | |
Florent Castelli | dcb9ffc | 2021-06-29 12:58:23 | [diff] [blame] | 5221 | void SdpOfferAnswerHandler::DestroyDataChannelTransport(RTCError error) { |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5222 | RTC_DCHECK_RUN_ON(signaling_thread()); |
Tommi | f9e13f8 | 2023-04-06 19:21:45 | [diff] [blame] | 5223 | context_->network_thread()->BlockingCall( |
| 5224 | [&, data_channel_controller = data_channel_controller()] { |
| 5225 | RTC_DCHECK_RUN_ON(context_->network_thread()); |
Tommi | b00d63c | 2023-04-12 17:49:53 | [diff] [blame] | 5226 | pc_->TeardownDataChannelTransport_n(error); |
Tommi | f9e13f8 | 2023-04-06 19:21:45 | [diff] [blame] | 5227 | }); |
Tommi | aa3c9f2 | 2023-04-18 10:19:19 | [diff] [blame] | 5228 | pc_->ResetSctpDataInfo(); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5229 | } |
| 5230 | |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5231 | void SdpOfferAnswerHandler::DestroyAllChannels() { |
| 5232 | RTC_DCHECK_RUN_ON(signaling_thread()); |
Harald Alvestrand | e15fb15 | 2020-10-19 13:28:05 | [diff] [blame] | 5233 | if (!transceivers()) { |
| 5234 | return; |
| 5235 | } |
Tommi | fe04164 | 2021-04-07 08:08:28 | [diff] [blame] | 5236 | |
| 5237 | RTC_LOG_THREAD_BLOCK_COUNT(); |
| 5238 | |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5239 | // Destroy video channels first since they may have a pointer to a voice |
| 5240 | // channel. |
Tommi | fe04164 | 2021-04-07 08:08:28 | [diff] [blame] | 5241 | auto list = transceivers()->List(); |
| 5242 | RTC_DCHECK_BLOCK_COUNT_NO_MORE_THAN(0); |
| 5243 | |
| 5244 | for (const auto& transceiver : list) { |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5245 | if (transceiver->media_type() == cricket::MEDIA_TYPE_VIDEO) { |
Harald Alvestrand | 19ebabc | 2022-04-28 13:31:17 | [diff] [blame] | 5246 | transceiver->internal()->ClearChannel(); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5247 | } |
| 5248 | } |
Tommi | fe04164 | 2021-04-07 08:08:28 | [diff] [blame] | 5249 | for (const auto& transceiver : list) { |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5250 | if (transceiver->media_type() == cricket::MEDIA_TYPE_AUDIO) { |
Harald Alvestrand | 19ebabc | 2022-04-28 13:31:17 | [diff] [blame] | 5251 | transceiver->internal()->ClearChannel(); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5252 | } |
| 5253 | } |
Tommi | fe04164 | 2021-04-07 08:08:28 | [diff] [blame] | 5254 | |
Florent Castelli | dcb9ffc | 2021-06-29 12:58:23 | [diff] [blame] | 5255 | DestroyDataChannelTransport({}); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5256 | } |
| 5257 | |
| 5258 | void 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 Alvestrand | 35f4b4c | 2022-05-16 10:36:43 | [diff] [blame] | 5285 | media_engine()->voice().GetRtpHeaderExtensions(); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5286 | } 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 Alvestrand | 35f4b4c | 2022-05-16 10:36:43 | [diff] [blame] | 5302 | media_engine()->video().GetRtpHeaderExtensions(); |
Philipp Hancke | 4e8c115 | 2020-10-13 10:43:15 | [diff] [blame] | 5303 | } 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 Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5309 | } 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 | |
| 5324 | cricket::MediaDescriptionOptions |
| 5325 | SdpOfferAnswerHandler::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 Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5333 | return options; |
| 5334 | } |
| 5335 | |
| 5336 | cricket::MediaDescriptionOptions |
| 5337 | SdpOfferAnswerHandler::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 Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5343 | return options; |
| 5344 | } |
| 5345 | |
Taylor Brandstetter | d0acbd8 | 2021-01-25 21:44:55 | [diff] [blame] | 5346 | bool SdpOfferAnswerHandler::UpdatePayloadTypeDemuxingState( |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 5347 | cricket::ContentSource source, |
| 5348 | const std::map<std::string, const cricket::ContentGroup*>& |
| 5349 | bundle_groups_by_mid) { |
Markus Handell | 518669d | 2021-06-07 11:30:46 | [diff] [blame] | 5350 | TRACE_EVENT0("webrtc", |
| 5351 | "SdpOfferAnswerHandler::UpdatePayloadTypeDemuxingState"); |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5352 | 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 Brandstetter | d3ef499 | 2020-10-16 01:22:57 | [diff] [blame] | 5357 | // 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 Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5360 | // 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öm | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 5364 | struct PayloadTypes { |
| 5365 | std::set<int> audio_payload_types; |
| 5366 | std::set<int> video_payload_types; |
Henrik Boström | 4ea80f3 | 2021-06-09 08:29:50 | [diff] [blame] | 5367 | bool pt_demuxing_possible_audio = true; |
| 5368 | bool pt_demuxing_possible_video = true; |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 5369 | }; |
| 5370 | std::map<const cricket::ContentGroup*, PayloadTypes> payload_types_by_bundle; |
Henrik Boström | 4ea80f3 | 2021-06-09 08:29:50 | [diff] [blame] | 5371 | // 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 Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5374 | for (auto& content_info : sdesc->description()->contents()) { |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 5375 | 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 Brandstetter | d3ef499 | 2020-10-16 01:22:57 | [diff] [blame] | 5378 | // 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öm | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 5381 | if (!bundle_group) { |
Taylor Brandstetter | d3ef499 | 2020-10-16 01:22:57 | [diff] [blame] | 5382 | continue; |
| 5383 | } |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 5384 | PayloadTypes* payload_types = &payload_types_by_bundle[bundle_group]; |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5385 | 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 Brandstetter | d3ef499 | 2020-10-16 01:22:57 | [diff] [blame] | 5396 | case cricket::MediaType::MEDIA_TYPE_AUDIO: { |
Henrik Boström | 4ea80f3 | 2021-06-09 08:29:50 | [diff] [blame] | 5397 | if (!mid_header_extension_missing_audio) { |
| 5398 | mid_header_extension_missing_audio = |
| 5399 | !ContentHasHeaderExtension(content_info, RtpExtension::kMidUri); |
| 5400 | } |
Taylor Brandstetter | d3ef499 | 2020-10-16 01:22:57 | [diff] [blame] | 5401 | const cricket::AudioContentDescription* audio_desc = |
| 5402 | content_info.media_description()->as_audio(); |
| 5403 | for (const cricket::AudioCodec& audio : audio_desc->codecs()) { |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 5404 | if (payload_types->audio_payload_types.count(audio.id)) { |
Taylor Brandstetter | d3ef499 | 2020-10-16 01:22:57 | [diff] [blame] | 5405 | // Two m= sections are using the same payload type, thus demuxing |
| 5406 | // by payload type is not possible. |
Henrik Boström | 4ea80f3 | 2021-06-09 08:29:50 | [diff] [blame] | 5407 | payload_types->pt_demuxing_possible_audio = false; |
Taylor Brandstetter | d3ef499 | 2020-10-16 01:22:57 | [diff] [blame] | 5408 | } |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 5409 | payload_types->audio_payload_types.insert(audio.id); |
Taylor Brandstetter | d3ef499 | 2020-10-16 01:22:57 | [diff] [blame] | 5410 | } |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5411 | break; |
Taylor Brandstetter | d3ef499 | 2020-10-16 01:22:57 | [diff] [blame] | 5412 | } |
| 5413 | case cricket::MediaType::MEDIA_TYPE_VIDEO: { |
Henrik Boström | 4ea80f3 | 2021-06-09 08:29:50 | [diff] [blame] | 5414 | if (!mid_header_extension_missing_video) { |
| 5415 | mid_header_extension_missing_video = |
| 5416 | !ContentHasHeaderExtension(content_info, RtpExtension::kMidUri); |
| 5417 | } |
Taylor Brandstetter | d3ef499 | 2020-10-16 01:22:57 | [diff] [blame] | 5418 | const cricket::VideoContentDescription* video_desc = |
| 5419 | content_info.media_description()->as_video(); |
| 5420 | for (const cricket::VideoCodec& video : video_desc->codecs()) { |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 5421 | if (payload_types->video_payload_types.count(video.id)) { |
Taylor Brandstetter | d3ef499 | 2020-10-16 01:22:57 | [diff] [blame] | 5422 | // Two m= sections are using the same payload type, thus demuxing |
| 5423 | // by payload type is not possible. |
Henrik Boström | 4ea80f3 | 2021-06-09 08:29:50 | [diff] [blame] | 5424 | payload_types->pt_demuxing_possible_video = false; |
Taylor Brandstetter | d3ef499 | 2020-10-16 01:22:57 | [diff] [blame] | 5425 | } |
Henrik Boström | f8187e0 | 2021-04-26 19:04:26 | [diff] [blame] | 5426 | payload_types->video_payload_types.insert(video.id); |
Taylor Brandstetter | d3ef499 | 2020-10-16 01:22:57 | [diff] [blame] | 5427 | } |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5428 | break; |
Taylor Brandstetter | d3ef499 | 2020-10-16 01:22:57 | [diff] [blame] | 5429 | } |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5430 | default: |
| 5431 | // Ignore data channels. |
| 5432 | continue; |
| 5433 | } |
| 5434 | } |
Harald Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5435 | |
Henrik Boström | 4ea80f3 | 2021-06-09 08:29:50 | [diff] [blame] | 5436 | // 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öm | 4ea80f3 | 2021-06-09 08:29:50 | [diff] [blame] | 5454 | |
Tomas Gunnarsson | 92f9b74 | 2022-01-02 20:40:22 | [diff] [blame] | 5455 | // Gather all updates ahead of time so that all channels can be updated in a |
Danil Chapovalov | 9e09a1f | 2022-09-08 16:38:10 | [diff] [blame] | 5456 | // single BlockingCall; necessary due to thread guards. |
Tomas Gunnarsson | 92f9b74 | 2022-01-02 20:40:22 | [diff] [blame] | 5457 | 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 Gunnarsson | 5411b17 | 2022-01-24 07:45:26 | [diff] [blame] | 5478 | auto bundle_it = bundle_groups_by_mid.find(channel->mid()); |
Tomas Gunnarsson | 92f9b74 | 2022-01-02 20:40:22 | [diff] [blame] | 5479 | 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 Chapovalov | 9e09a1f | 2022-09-08 16:38:10 | [diff] [blame] | 5508 | // 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 Alvestrand | bc9ca25 | 2020-10-05 13:08:41 | [diff] [blame] | 5523 | } |
| 5524 | |
Harald Alvestrand | 8101e7b | 2022-05-23 14:57:47 | [diff] [blame] | 5525 | bool SdpOfferAnswerHandler::ConfiguredForMedia() const { |
| 5526 | return context_->media_engine(); |
| 5527 | } |
| 5528 | |
Harald Alvestrand | cdcfab0 | 2020-09-28 13:02:07 | [diff] [blame] | 5529 | } // namespace webrtc |