blob: 27210639990275008a0bc958c0b09b7c625423f6 [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001/*
kjellanderb24317b2016-02-10 07:54:43 -08002 * Copyright 2012 The WebRTC project authors. All Rights Reserved.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003 *
kjellanderb24317b2016-02-10 07:54:43 -08004 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00009 */
10
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#include "pc/peerconnection.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000012
deadbeefeb459812015-12-15 19:24:43 -080013#include <algorithm>
Steve Antondcc3c022017-12-22 16:02:54 -080014#include <queue>
Steve Anton75737c02017-11-06 10:37:17 -080015#include <set>
kwiberg0eb15ed2015-12-17 03:04:15 -080016#include <utility>
17#include <vector>
henrike@webrtc.org28e20752013-07-10 00:45:36 +000018
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020019#include "api/jsepicecandidate.h"
20#include "api/jsepsessiondescription.h"
21#include "api/mediaconstraintsinterface.h"
22#include "api/mediastreamproxy.h"
23#include "api/mediastreamtrackproxy.h"
24#include "call/call.h"
Qingsi Wang93a84392018-01-30 17:13:09 -080025#include "logging/rtc_event_log/icelogger.h"
Elad Alon83ccca12017-10-04 13:18:26 +020026#include "logging/rtc_event_log/output/rtc_event_log_output_file.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020027#include "logging/rtc_event_log/rtc_event_log.h"
28#include "media/sctp/sctptransport.h"
29#include "pc/audiotrack.h"
Steve Anton75737c02017-11-06 10:37:17 -080030#include "pc/channel.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020031#include "pc/channelmanager.h"
32#include "pc/dtmfsender.h"
33#include "pc/mediastream.h"
34#include "pc/mediastreamobserver.h"
35#include "pc/remoteaudiosource.h"
Steve Anton1d03a752017-11-27 14:30:09 -080036#include "pc/rtpmediautils.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020037#include "pc/rtpreceiver.h"
38#include "pc/rtpsender.h"
Steve Anton75737c02017-11-06 10:37:17 -080039#include "pc/sctputils.h"
Steve Antona3a92c22017-12-07 10:27:41 -080040#include "pc/sdputils.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020041#include "pc/streamcollection.h"
42#include "pc/videocapturertracksource.h"
43#include "pc/videotrack.h"
44#include "rtc_base/bind.h"
45#include "rtc_base/checks.h"
46#include "rtc_base/logging.h"
Karl Wiberge40468b2017-11-22 10:42:26 +010047#include "rtc_base/numerics/safe_conversions.h"
Elad Alon83ccca12017-10-04 13:18:26 +020048#include "rtc_base/ptr_util.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020049#include "rtc_base/stringencode.h"
50#include "rtc_base/stringutils.h"
51#include "rtc_base/trace_event.h"
52#include "system_wrappers/include/clock.h"
53#include "system_wrappers/include/field_trial.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000054
Steve Anton75737c02017-11-06 10:37:17 -080055using cricket::ContentInfo;
56using cricket::ContentInfos;
57using cricket::MediaContentDescription;
58using cricket::SessionDescription;
Steve Anton5adfafd2017-12-20 16:34:00 -080059using cricket::MediaProtocolType;
Steve Anton75737c02017-11-06 10:37:17 -080060using cricket::TransportInfo;
61
62using cricket::LOCAL_PORT_TYPE;
63using cricket::STUN_PORT_TYPE;
64using cricket::RELAY_PORT_TYPE;
65using cricket::PRFLX_PORT_TYPE;
66
Steve Antonba818672017-11-06 10:21:57 -080067namespace webrtc {
68
Steve Anton75737c02017-11-06 10:37:17 -080069// Error messages
70const char kBundleWithoutRtcpMux[] =
71 "rtcp-mux must be enabled when BUNDLE "
72 "is enabled.";
Steve Anton75737c02017-11-06 10:37:17 -080073const char kInvalidCandidates[] = "Description contains invalid candidates.";
74const char kInvalidSdp[] = "Invalid session description.";
75const char kMlineMismatchInAnswer[] =
76 "The order of m-lines in answer doesn't match order in offer. Rejecting "
77 "answer.";
78const char kMlineMismatchInSubsequentOffer[] =
79 "The order of m-lines in subsequent offer doesn't match order from "
80 "previous offer/answer.";
Steve Anton75737c02017-11-06 10:37:17 -080081const char kSdpWithoutDtlsFingerprint[] =
82 "Called with SDP without DTLS fingerprint.";
83const char kSdpWithoutSdesCrypto[] = "Called with SDP without SDES crypto.";
84const char kSdpWithoutIceUfragPwd[] =
85 "Called with SDP without ice-ufrag and ice-pwd.";
86const char kSessionError[] = "Session error code: ";
87const char kSessionErrorDesc[] = "Session error description: ";
88const char kDtlsSrtpSetupFailureRtp[] =
89 "Couldn't set up DTLS-SRTP on RTP channel.";
90const char kDtlsSrtpSetupFailureRtcp[] =
91 "Couldn't set up DTLS-SRTP on RTCP channel.";
henrike@webrtc.org28e20752013-07-10 00:45:36 +000092
Steve Anton75737c02017-11-06 10:37:17 -080093namespace {
henrike@webrtc.org28e20752013-07-10 00:45:36 +000094
Seth Hampson845e8782018-03-02 11:34:10 -080095static const char kDefaultStreamId[] = "default";
Steve Anton4171afb2017-11-20 10:20:22 -080096static const char kDefaultAudioSenderId[] = "defaulta0";
97static const char kDefaultVideoSenderId[] = "defaultv0";
deadbeefab9b2d12015-10-14 11:33:11 -070098
zhihuang8f65cdf2016-05-06 18:40:30 -070099// The length of RTCP CNAMEs.
100static const int kRtcpCnameLength = 16;
101
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000102enum {
wu@webrtc.org91053e72013-08-10 07:18:04 +0000103 MSG_SET_SESSIONDESCRIPTION_SUCCESS = 0,
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000104 MSG_SET_SESSIONDESCRIPTION_FAILED,
deadbeefab9b2d12015-10-14 11:33:11 -0700105 MSG_CREATE_SESSIONDESCRIPTION_FAILED,
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000106 MSG_GETSTATS,
deadbeefbd292462015-12-14 18:15:29 -0800107 MSG_FREE_DATACHANNELS,
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000108};
109
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000110struct SetSessionDescriptionMsg : public rtc::MessageData {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000111 explicit SetSessionDescriptionMsg(
112 webrtc::SetSessionDescriptionObserver* observer)
113 : observer(observer) {
114 }
115
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000116 rtc::scoped_refptr<webrtc::SetSessionDescriptionObserver> observer;
Harald Alvestrand5081c0c2018-03-09 15:18:03 +0100117 RTCError error;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000118};
119
deadbeefab9b2d12015-10-14 11:33:11 -0700120struct CreateSessionDescriptionMsg : public rtc::MessageData {
121 explicit CreateSessionDescriptionMsg(
122 webrtc::CreateSessionDescriptionObserver* observer)
123 : observer(observer) {}
124
125 rtc::scoped_refptr<webrtc::CreateSessionDescriptionObserver> observer;
Harald Alvestrand5081c0c2018-03-09 15:18:03 +0100126 RTCError error;
deadbeefab9b2d12015-10-14 11:33:11 -0700127};
128
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000129struct GetStatsMsg : public rtc::MessageData {
tommi@webrtc.org5b06b062014-08-15 08:38:30 +0000130 GetStatsMsg(webrtc::StatsObserver* observer,
131 webrtc::MediaStreamTrackInterface* track)
132 : observer(observer), track(track) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000133 }
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000134 rtc::scoped_refptr<webrtc::StatsObserver> observer;
tommi@webrtc.org5b06b062014-08-15 08:38:30 +0000135 rtc::scoped_refptr<webrtc::MediaStreamTrackInterface> track;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000136};
137
deadbeefab9b2d12015-10-14 11:33:11 -0700138// Check if we can send |new_stream| on a PeerConnection.
139bool CanAddLocalMediaStream(webrtc::StreamCollectionInterface* current_streams,
140 webrtc::MediaStreamInterface* new_stream) {
141 if (!new_stream || !current_streams) {
142 return false;
143 }
Seth Hampson13b8bad2018-03-13 16:05:28 -0700144 if (current_streams->find(new_stream->id()) != nullptr) {
145 RTC_LOG(LS_ERROR) << "MediaStream with ID " << new_stream->id()
Mirko Bonadei675513b2017-11-09 11:09:25 +0100146 << " is already added.";
deadbeefab9b2d12015-10-14 11:33:11 -0700147 return false;
148 }
149 return true;
150}
151
deadbeef5e97fb52015-10-15 12:49:08 -0700152// If the direction is "recvonly" or "inactive", treat the description
153// as containing no streams.
154// See: https://code.google.com/p/webrtc/issues/detail?id=5054
155std::vector<cricket::StreamParams> GetActiveStreams(
156 const cricket::MediaContentDescription* desc) {
Steve Anton4e70a722017-11-28 14:57:10 -0800157 return RtpTransceiverDirectionHasSend(desc->direction())
deadbeef5e97fb52015-10-15 12:49:08 -0700158 ? desc->streams()
159 : std::vector<cricket::StreamParams>();
160}
161
deadbeefab9b2d12015-10-14 11:33:11 -0700162bool IsValidOfferToReceiveMedia(int value) {
163 typedef PeerConnectionInterface::RTCOfferAnswerOptions Options;
164 return (value >= Options::kUndefined) &&
165 (value <= Options::kMaxOfferToReceiveMedia);
166}
167
zhihuang1c378ed2017-08-17 14:10:50 -0700168// Add options to |[audio/video]_media_description_options| from |senders|.
169void AddRtpSenderOptions(
deadbeefa601f5c2016-06-06 14:27:39 -0700170 const std::vector<rtc::scoped_refptr<
171 RtpSenderProxyWithInternal<RtpSenderInternal>>>& senders,
zhihuang1c378ed2017-08-17 14:10:50 -0700172 cricket::MediaDescriptionOptions* audio_media_description_options,
173 cricket::MediaDescriptionOptions* video_media_description_options) {
olka3c747662017-08-17 06:50:32 -0700174 for (const auto& sender : senders) {
zhihuang1c378ed2017-08-17 14:10:50 -0700175 if (sender->media_type() == cricket::MEDIA_TYPE_AUDIO) {
176 if (audio_media_description_options) {
177 audio_media_description_options->AddAudioSender(
Steve Anton8ffb9c32017-08-31 15:45:38 -0700178 sender->id(), sender->internal()->stream_ids());
zhihuang1c378ed2017-08-17 14:10:50 -0700179 }
180 } else {
181 RTC_DCHECK(sender->media_type() == cricket::MEDIA_TYPE_VIDEO);
182 if (video_media_description_options) {
183 video_media_description_options->AddVideoSender(
Steve Anton8ffb9c32017-08-31 15:45:38 -0700184 sender->id(), sender->internal()->stream_ids(), 1);
zhihuang1c378ed2017-08-17 14:10:50 -0700185 }
186 }
zhihuanga77e6bb2017-08-14 18:17:48 -0700187 }
zhihuang1c378ed2017-08-17 14:10:50 -0700188}
olka3c747662017-08-17 06:50:32 -0700189
zhihuang1c378ed2017-08-17 14:10:50 -0700190// Add options to |session_options| from |rtp_data_channels|.
191void AddRtpDataChannelOptions(
192 const std::map<std::string, rtc::scoped_refptr<DataChannel>>&
193 rtp_data_channels,
194 cricket::MediaDescriptionOptions* data_media_description_options) {
195 if (!data_media_description_options) {
196 return;
197 }
deadbeefab9b2d12015-10-14 11:33:11 -0700198 // Check for data channels.
199 for (const auto& kv : rtp_data_channels) {
200 const DataChannel* channel = kv.second;
201 if (channel->state() == DataChannel::kConnecting ||
202 channel->state() == DataChannel::kOpen) {
zhihuang1c378ed2017-08-17 14:10:50 -0700203 // Legacy RTP data channels are signaled with the track/stream ID set to
204 // the data channel's label.
205 data_media_description_options->AddRtpDataChannel(channel->label(),
206 channel->label());
deadbeefab9b2d12015-10-14 11:33:11 -0700207 }
208 }
209}
210
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700211uint32_t ConvertIceTransportTypeToCandidateFilter(
212 PeerConnectionInterface::IceTransportsType type) {
213 switch (type) {
214 case PeerConnectionInterface::kNone:
215 return cricket::CF_NONE;
216 case PeerConnectionInterface::kRelay:
217 return cricket::CF_RELAY;
218 case PeerConnectionInterface::kNoHost:
219 return (cricket::CF_ALL & ~cricket::CF_HOST);
220 case PeerConnectionInterface::kAll:
221 return cricket::CF_ALL;
222 default:
nissec80e7412017-01-11 05:56:46 -0800223 RTC_NOTREACHED();
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700224 }
225 return cricket::CF_NONE;
226}
227
deadbeef293e9262017-01-11 12:28:30 -0800228// Helper to set an error and return from a method.
229bool SafeSetError(webrtc::RTCErrorType type, webrtc::RTCError* error) {
230 if (error) {
231 error->set_type(type);
232 }
233 return type == webrtc::RTCErrorType::NONE;
234}
235
Steve Anton038834f2017-07-14 15:59:59 -0700236bool SafeSetError(webrtc::RTCError error, webrtc::RTCError* error_out) {
237 if (error_out) {
238 *error_out = std::move(error);
239 }
240 return error.ok();
241}
242
Steve Antonba818672017-11-06 10:21:57 -0800243std::string GetSignalingStateString(
244 PeerConnectionInterface::SignalingState state) {
245 switch (state) {
246 case PeerConnectionInterface::kStable:
247 return "kStable";
248 case PeerConnectionInterface::kHaveLocalOffer:
249 return "kHaveLocalOffer";
250 case PeerConnectionInterface::kHaveLocalPrAnswer:
251 return "kHavePrAnswer";
252 case PeerConnectionInterface::kHaveRemoteOffer:
253 return "kHaveRemoteOffer";
254 case PeerConnectionInterface::kHaveRemotePrAnswer:
255 return "kHaveRemotePrAnswer";
256 case PeerConnectionInterface::kClosed:
257 return "kClosed";
258 }
259 RTC_NOTREACHED();
260 return "";
261}
deadbeef0a6c4ca2015-10-06 11:38:28 -0700262
Steve Anton75737c02017-11-06 10:37:17 -0800263IceCandidatePairType GetIceCandidatePairCounter(
264 const cricket::Candidate& local,
265 const cricket::Candidate& remote) {
266 const auto& l = local.type();
267 const auto& r = remote.type();
268 const auto& host = LOCAL_PORT_TYPE;
269 const auto& srflx = STUN_PORT_TYPE;
270 const auto& relay = RELAY_PORT_TYPE;
271 const auto& prflx = PRFLX_PORT_TYPE;
272 if (l == host && r == host) {
273 bool local_private = IPIsPrivate(local.address().ipaddr());
274 bool remote_private = IPIsPrivate(remote.address().ipaddr());
275 if (local_private) {
276 if (remote_private) {
277 return kIceCandidatePairHostPrivateHostPrivate;
278 } else {
279 return kIceCandidatePairHostPrivateHostPublic;
280 }
281 } else {
282 if (remote_private) {
283 return kIceCandidatePairHostPublicHostPrivate;
284 } else {
285 return kIceCandidatePairHostPublicHostPublic;
286 }
287 }
288 }
289 if (l == host && r == srflx)
290 return kIceCandidatePairHostSrflx;
291 if (l == host && r == relay)
292 return kIceCandidatePairHostRelay;
293 if (l == host && r == prflx)
294 return kIceCandidatePairHostPrflx;
295 if (l == srflx && r == host)
296 return kIceCandidatePairSrflxHost;
297 if (l == srflx && r == srflx)
298 return kIceCandidatePairSrflxSrflx;
299 if (l == srflx && r == relay)
300 return kIceCandidatePairSrflxRelay;
301 if (l == srflx && r == prflx)
302 return kIceCandidatePairSrflxPrflx;
303 if (l == relay && r == host)
304 return kIceCandidatePairRelayHost;
305 if (l == relay && r == srflx)
306 return kIceCandidatePairRelaySrflx;
307 if (l == relay && r == relay)
308 return kIceCandidatePairRelayRelay;
309 if (l == relay && r == prflx)
310 return kIceCandidatePairRelayPrflx;
311 if (l == prflx && r == host)
312 return kIceCandidatePairPrflxHost;
313 if (l == prflx && r == srflx)
314 return kIceCandidatePairPrflxSrflx;
315 if (l == prflx && r == relay)
316 return kIceCandidatePairPrflxRelay;
317 return kIceCandidatePairMax;
318}
319
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800320// Logic to decide if an m= section can be recycled. This means that the new
321// m= section is not rejected, but the old local or remote m= section is
322// rejected. |old_content_one| and |old_content_two| refer to the m= section
323// of the old remote and old local descriptions in no particular order.
324// We need to check both the old local and remote because either
325// could be the most current from the latest negotation.
326bool IsMediaSectionBeingRecycled(SdpType type,
327 const ContentInfo& content,
328 const ContentInfo* old_content_one,
329 const ContentInfo* old_content_two) {
330 return type == SdpType::kOffer && !content.rejected &&
331 ((old_content_one && old_content_one->rejected) ||
332 (old_content_two && old_content_two->rejected));
333}
334
Steve Anton75737c02017-11-06 10:37:17 -0800335// Verify that the order of media sections in |new_desc| matches
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800336// |current_desc|. The number of m= sections in |new_desc| should be no
337// less than |current_desc|. In the case of checking an answer's
338// |new_desc|, the |current_desc| is the last offer that was set as the
339// local or remote. In the case of checking an offer's |new_desc| we
340// check against the local and remote descriptions stored from the last
341// negotiation, because either of these could be the most up to date for
342// possible rejected m sections. These are the |current_desc| and
343// |secondary_current_desc|.
344bool MediaSectionsInSameOrder(const SessionDescription& current_desc,
345 const SessionDescription* secondary_current_desc,
346 const SessionDescription& new_desc,
347 const SdpType type) {
348 if (current_desc.contents().size() > new_desc.contents().size()) {
Steve Anton75737c02017-11-06 10:37:17 -0800349 return false;
350 }
351
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800352 for (size_t i = 0; i < current_desc.contents().size(); ++i) {
353 const cricket::ContentInfo* secondary_content_info = nullptr;
354 if (secondary_current_desc &&
355 i < secondary_current_desc->contents().size()) {
356 secondary_content_info = &secondary_current_desc->contents()[i];
357 }
358 if (IsMediaSectionBeingRecycled(type, new_desc.contents()[i],
359 &current_desc.contents()[i],
360 secondary_content_info)) {
361 // For new offer descriptions, if the media section can be recycled, it's
362 // valid for the MID and media type to change.
Steve Antondcc3c022017-12-22 16:02:54 -0800363 continue;
364 }
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800365 if (new_desc.contents()[i].name != current_desc.contents()[i].name) {
Steve Anton75737c02017-11-06 10:37:17 -0800366 return false;
367 }
368 const MediaContentDescription* new_desc_mdesc =
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800369 new_desc.contents()[i].media_description();
370 const MediaContentDescription* current_desc_mdesc =
371 current_desc.contents()[i].media_description();
372 if (new_desc_mdesc->type() != current_desc_mdesc->type()) {
Steve Anton75737c02017-11-06 10:37:17 -0800373 return false;
374 }
375 }
376 return true;
377}
378
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800379bool MediaSectionsHaveSameCount(const SessionDescription& desc1,
380 const SessionDescription& desc2) {
381 return desc1.contents().size() == desc2.contents().size();
Steve Anton75737c02017-11-06 10:37:17 -0800382}
383
Harald Alvestrandf9d0f1d2018-03-02 14:15:26 +0100384void NoteKeyProtocolAndMedia(
385 KeyExchangeProtocolType protocol_type,
386 cricket::MediaType media_type,
387 rtc::scoped_refptr<webrtc::UMAObserver> uma_observer) {
388 if (!uma_observer)
389 return;
390 uma_observer->IncrementEnumCounter(webrtc::kEnumCounterKeyProtocol,
391 protocol_type,
392 webrtc::kEnumCounterKeyProtocolMax);
393 static const std::map<std::pair<KeyExchangeProtocolType, cricket::MediaType>,
394 KeyExchangeProtocolMedia>
395 proto_media_counter_map = {
396 {{kEnumCounterKeyProtocolDtls, cricket::MEDIA_TYPE_AUDIO},
397 kEnumCounterKeyProtocolMediaTypeDtlsAudio},
398 {{kEnumCounterKeyProtocolDtls, cricket::MEDIA_TYPE_VIDEO},
399 kEnumCounterKeyProtocolMediaTypeDtlsVideo},
400 {{kEnumCounterKeyProtocolDtls, cricket::MEDIA_TYPE_DATA},
401 kEnumCounterKeyProtocolMediaTypeDtlsData},
402 {{kEnumCounterKeyProtocolSdes, cricket::MEDIA_TYPE_AUDIO},
403 kEnumCounterKeyProtocolMediaTypeSdesAudio},
404 {{kEnumCounterKeyProtocolSdes, cricket::MEDIA_TYPE_VIDEO},
405 kEnumCounterKeyProtocolMediaTypeSdesVideo},
406 {{kEnumCounterKeyProtocolSdes, cricket::MEDIA_TYPE_DATA},
407 kEnumCounterKeyProtocolMediaTypeSdesData}};
408
409 auto it = proto_media_counter_map.find({protocol_type, media_type});
410 if (it != proto_media_counter_map.end()) {
411 uma_observer->IncrementEnumCounter(webrtc::kEnumCounterKeyProtocolMediaType,
412 it->second,
413 kEnumCounterKeyProtocolMediaTypeMax);
414 }
415}
416
Steve Anton75737c02017-11-06 10:37:17 -0800417// Checks that each non-rejected content has SDES crypto keys or a DTLS
418// fingerprint, unless it's in a BUNDLE group, in which case only the
419// BUNDLE-tag section (first media section/description in the BUNDLE group)
420// needs a ufrag and pwd. Mismatches, such as replying with a DTLS fingerprint
421// to SDES keys, will be caught in JsepTransport negotiation, and backstopped
422// by Channel's |srtp_required| check.
Harald Alvestrand194939b2018-01-24 16:04:13 +0100423RTCError VerifyCrypto(const SessionDescription* desc,
424 bool dtls_enabled,
425 rtc::scoped_refptr<webrtc::UMAObserver> uma_observer) {
Steve Anton75737c02017-11-06 10:37:17 -0800426 const cricket::ContentGroup* bundle =
427 desc->GetGroupByName(cricket::GROUP_TYPE_BUNDLE);
Steve Anton8a006912017-12-04 15:25:56 -0800428 for (const cricket::ContentInfo& content_info : desc->contents()) {
429 if (content_info.rejected) {
Steve Anton75737c02017-11-06 10:37:17 -0800430 continue;
431 }
Harald Alvestrand2e180612018-03-07 10:56:14 +0100432 // Note what media is used with each crypto protocol, for all sections.
433 NoteKeyProtocolAndMedia(dtls_enabled ? webrtc::kEnumCounterKeyProtocolDtls
434 : webrtc::kEnumCounterKeyProtocolSdes,
435 content_info.media_description()->type(),
436 uma_observer);
Steve Anton8a006912017-12-04 15:25:56 -0800437 const std::string& mid = content_info.name;
438 if (bundle && bundle->HasContentName(mid) &&
439 mid != *(bundle->FirstContentName())) {
Steve Anton75737c02017-11-06 10:37:17 -0800440 // This isn't the first media section in the BUNDLE group, so it's not
441 // required to have crypto attributes, since only the crypto attributes
442 // from the first section actually get used.
443 continue;
444 }
445
446 // If the content isn't rejected or bundled into another m= section, crypto
447 // must be present.
Steve Antonb1c1de12017-12-21 15:14:30 -0800448 const MediaContentDescription* media = content_info.media_description();
Steve Anton8a006912017-12-04 15:25:56 -0800449 const TransportInfo* tinfo = desc->GetTransportInfoByName(mid);
Steve Anton75737c02017-11-06 10:37:17 -0800450 if (!media || !tinfo) {
451 // Something is not right.
Steve Anton8a006912017-12-04 15:25:56 -0800452 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, kInvalidSdp);
Steve Anton75737c02017-11-06 10:37:17 -0800453 }
454 if (dtls_enabled) {
455 if (!tinfo->description.identity_fingerprint) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100456 RTC_LOG(LS_WARNING)
457 << "Session description must have DTLS fingerprint if "
458 "DTLS enabled.";
Steve Anton8a006912017-12-04 15:25:56 -0800459 return RTCError(RTCErrorType::INVALID_PARAMETER,
460 kSdpWithoutDtlsFingerprint);
Steve Anton75737c02017-11-06 10:37:17 -0800461 }
462 } else {
463 if (media->cryptos().empty()) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100464 RTC_LOG(LS_WARNING)
Steve Anton75737c02017-11-06 10:37:17 -0800465 << "Session description must have SDES when DTLS disabled.";
Steve Anton8a006912017-12-04 15:25:56 -0800466 return RTCError(RTCErrorType::INVALID_PARAMETER, kSdpWithoutSdesCrypto);
Steve Anton75737c02017-11-06 10:37:17 -0800467 }
468 }
469 }
Steve Anton8a006912017-12-04 15:25:56 -0800470 return RTCError::OK();
Steve Anton75737c02017-11-06 10:37:17 -0800471}
472
473// Checks that each non-rejected content has ice-ufrag and ice-pwd set, unless
474// it's in a BUNDLE group, in which case only the BUNDLE-tag section (first
475// media section/description in the BUNDLE group) needs a ufrag and pwd.
476bool VerifyIceUfragPwdPresent(const SessionDescription* desc) {
477 const cricket::ContentGroup* bundle =
478 desc->GetGroupByName(cricket::GROUP_TYPE_BUNDLE);
Steve Anton8a006912017-12-04 15:25:56 -0800479 for (const cricket::ContentInfo& content_info : desc->contents()) {
480 if (content_info.rejected) {
Steve Anton75737c02017-11-06 10:37:17 -0800481 continue;
482 }
Steve Anton8a006912017-12-04 15:25:56 -0800483 const std::string& mid = content_info.name;
484 if (bundle && bundle->HasContentName(mid) &&
485 mid != *(bundle->FirstContentName())) {
Steve Anton75737c02017-11-06 10:37:17 -0800486 // This isn't the first media section in the BUNDLE group, so it's not
487 // required to have ufrag/password, since only the ufrag/password from
488 // the first section actually get used.
489 continue;
490 }
491
492 // If the content isn't rejected or bundled into another m= section,
493 // ice-ufrag and ice-pwd must be present.
Steve Anton8a006912017-12-04 15:25:56 -0800494 const TransportInfo* tinfo = desc->GetTransportInfoByName(mid);
Steve Anton75737c02017-11-06 10:37:17 -0800495 if (!tinfo) {
496 // Something is not right.
Mirko Bonadei675513b2017-11-09 11:09:25 +0100497 RTC_LOG(LS_ERROR) << kInvalidSdp;
Steve Anton75737c02017-11-06 10:37:17 -0800498 return false;
499 }
500 if (tinfo->description.ice_ufrag.empty() ||
501 tinfo->description.ice_pwd.empty()) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100502 RTC_LOG(LS_ERROR) << "Session description must have ice ufrag and pwd.";
Steve Anton75737c02017-11-06 10:37:17 -0800503 return false;
504 }
505 }
506 return true;
507}
508
509bool GetTrackIdBySsrc(const SessionDescription* session_description,
510 uint32_t ssrc,
511 std::string* track_id) {
512 RTC_DCHECK(track_id != NULL);
513
Steve Antonb1c1de12017-12-21 15:14:30 -0800514 const cricket::AudioContentDescription* audio_desc =
515 cricket::GetFirstAudioContentDescription(session_description);
516 if (audio_desc) {
517 const auto* found = cricket::GetStreamBySsrc(audio_desc->streams(), ssrc);
Steve Anton75737c02017-11-06 10:37:17 -0800518 if (found) {
519 *track_id = found->id;
520 return true;
521 }
522 }
523
Steve Antonb1c1de12017-12-21 15:14:30 -0800524 const cricket::VideoContentDescription* video_desc =
525 cricket::GetFirstVideoContentDescription(session_description);
526 if (video_desc) {
527 const auto* found = cricket::GetStreamBySsrc(video_desc->streams(), ssrc);
Steve Anton75737c02017-11-06 10:37:17 -0800528 if (found) {
529 *track_id = found->id;
530 return true;
531 }
532 }
533 return false;
534}
535
536// Get the SCTP port out of a SessionDescription.
537// Return -1 if not found.
538int GetSctpPort(const SessionDescription* session_description) {
Steve Antonb1c1de12017-12-21 15:14:30 -0800539 const cricket::DataContentDescription* data_desc =
540 GetFirstDataContentDescription(session_description);
541 RTC_DCHECK(data_desc);
542 if (!data_desc) {
Steve Anton75737c02017-11-06 10:37:17 -0800543 return -1;
544 }
Steve Anton75737c02017-11-06 10:37:17 -0800545 std::string value;
546 cricket::DataCodec match_pattern(cricket::kGoogleSctpDataCodecPlType,
547 cricket::kGoogleSctpDataCodecName);
Steve Antonb1c1de12017-12-21 15:14:30 -0800548 for (const cricket::DataCodec& codec : data_desc->codecs()) {
Steve Anton75737c02017-11-06 10:37:17 -0800549 if (!codec.Matches(match_pattern)) {
550 continue;
551 }
552 if (codec.GetParam(cricket::kCodecParamPort, &value)) {
553 return rtc::FromString<int>(value);
554 }
555 }
556 return -1;
557}
558
Steve Anton75737c02017-11-06 10:37:17 -0800559// Returns true if |new_desc| requests an ICE restart (i.e., new ufrag/pwd).
560bool CheckForRemoteIceRestart(const SessionDescriptionInterface* old_desc,
561 const SessionDescriptionInterface* new_desc,
562 const std::string& content_name) {
563 if (!old_desc) {
564 return false;
565 }
566 const SessionDescription* new_sd = new_desc->description();
567 const SessionDescription* old_sd = old_desc->description();
568 const ContentInfo* cinfo = new_sd->GetContentByName(content_name);
569 if (!cinfo || cinfo->rejected) {
570 return false;
571 }
572 // If the content isn't rejected, check if ufrag and password has changed.
573 const cricket::TransportDescription* new_transport_desc =
574 new_sd->GetTransportDescriptionByName(content_name);
575 const cricket::TransportDescription* old_transport_desc =
576 old_sd->GetTransportDescriptionByName(content_name);
577 if (!new_transport_desc || !old_transport_desc) {
578 // No transport description exists. This is not an ICE restart.
579 return false;
580 }
581 if (cricket::IceCredentialsChanged(
582 old_transport_desc->ice_ufrag, old_transport_desc->ice_pwd,
583 new_transport_desc->ice_ufrag, new_transport_desc->ice_pwd)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100584 RTC_LOG(LS_INFO) << "Remote peer requests ICE restart for " << content_name
585 << ".";
Steve Anton75737c02017-11-06 10:37:17 -0800586 return true;
587 }
588 return false;
589}
590
Steve Anton80dd7b52018-02-16 17:08:42 -0800591// Generates a string error message for SetLocalDescription/SetRemoteDescription
592// from an RTCError.
593std::string GetSetDescriptionErrorMessage(cricket::ContentSource source,
594 SdpType type,
595 const RTCError& error) {
596 std::ostringstream oss;
597 oss << "Failed to set " << (source == cricket::CS_LOCAL ? "local" : "remote")
598 << " " << SdpTypeToString(type) << " sdp: " << error.message();
599 return oss.str();
600}
601
Seth Hampson5b4f0752018-04-02 16:31:36 -0700602std::string GetStreamIdsString(rtc::ArrayView<const std::string> stream_ids) {
603 std::string output = "streams=[";
604 const char* separator = "";
605 for (const auto& stream_id : stream_ids) {
606 output.append(separator).append(stream_id);
607 separator = ", ";
608 }
609 output.append("]");
610 return output;
611}
612
Qingsi Wang866e08d2018-03-22 17:54:23 -0700613rtc::Optional<int> RTCConfigurationToIceConfigOptionalInt(
614 int rtc_configuration_parameter) {
615 if (rtc_configuration_parameter ==
616 webrtc::PeerConnectionInterface::RTCConfiguration::kUndefined) {
617 return rtc::nullopt;
618 }
619 return rtc_configuration_parameter;
620}
621
Steve Anton75737c02017-11-06 10:37:17 -0800622} // namespace
623
Henrik Boström31638672017-11-23 17:48:32 +0100624// Upon completion, posts a task to execute the callback of the
625// SetSessionDescriptionObserver asynchronously on the same thread. At this
626// point, the state of the peer connection might no longer reflect the effects
627// of the SetRemoteDescription operation, as the peer connection could have been
628// modified during the post.
629// TODO(hbos): Remove this class once we remove the version of
630// PeerConnectionInterface::SetRemoteDescription() that takes a
631// SetSessionDescriptionObserver as an argument.
632class PeerConnection::SetRemoteDescriptionObserverAdapter
633 : public rtc::RefCountedObject<SetRemoteDescriptionObserverInterface> {
634 public:
635 SetRemoteDescriptionObserverAdapter(
636 rtc::scoped_refptr<PeerConnection> pc,
637 rtc::scoped_refptr<SetSessionDescriptionObserver> wrapper)
638 : pc_(std::move(pc)), wrapper_(std::move(wrapper)) {}
639
640 // SetRemoteDescriptionObserverInterface implementation.
641 void OnSetRemoteDescriptionComplete(RTCError error) override {
642 if (error.ok())
643 pc_->PostSetSessionDescriptionSuccess(wrapper_);
644 else
Harald Alvestrand5081c0c2018-03-09 15:18:03 +0100645 pc_->PostSetSessionDescriptionFailure(wrapper_, std::move(error));
Henrik Boström31638672017-11-23 17:48:32 +0100646 }
647
648 private:
649 rtc::scoped_refptr<PeerConnection> pc_;
650 rtc::scoped_refptr<SetSessionDescriptionObserver> wrapper_;
651};
652
deadbeef293e9262017-01-11 12:28:30 -0800653bool PeerConnectionInterface::RTCConfiguration::operator==(
654 const PeerConnectionInterface::RTCConfiguration& o) const {
655 // This static_assert prevents us from accidentally breaking operator==.
Steve Anton300bf8e2017-07-14 10:13:10 -0700656 // Note: Order matters! Fields must be ordered the same as RTCConfiguration.
deadbeef293e9262017-01-11 12:28:30 -0800657 struct stuff_being_tested_for_equality {
Magnus Jedvert3beb2072017-07-14 14:23:56 +0000658 IceServers servers;
Steve Anton300bf8e2017-07-14 10:13:10 -0700659 IceTransportsType type;
deadbeef293e9262017-01-11 12:28:30 -0800660 BundlePolicy bundle_policy;
661 RtcpMuxPolicy rtcp_mux_policy;
Steve Anton300bf8e2017-07-14 10:13:10 -0700662 std::vector<rtc::scoped_refptr<rtc::RTCCertificate>> certificates;
663 int ice_candidate_pool_size;
664 bool disable_ipv6;
665 bool disable_ipv6_on_wifi;
deadbeefd21eab32017-07-26 16:50:11 -0700666 int max_ipv6_networks;
Daniel Lazarenko2870b0a2018-01-25 10:30:22 +0100667 bool disable_link_local_networks;
Steve Anton300bf8e2017-07-14 10:13:10 -0700668 bool enable_rtp_data_channel;
669 rtc::Optional<int> screencast_min_bitrate;
670 rtc::Optional<bool> combined_audio_video_bwe;
671 rtc::Optional<bool> enable_dtls_srtp;
deadbeef293e9262017-01-11 12:28:30 -0800672 TcpCandidatePolicy tcp_candidate_policy;
673 CandidateNetworkPolicy candidate_network_policy;
674 int audio_jitter_buffer_max_packets;
675 bool audio_jitter_buffer_fast_accelerate;
676 int ice_connection_receiving_timeout;
677 int ice_backup_candidate_pair_ping_interval;
678 ContinualGatheringPolicy continual_gathering_policy;
deadbeef293e9262017-01-11 12:28:30 -0800679 bool prioritize_most_likely_ice_candidate_pairs;
680 struct cricket::MediaConfig media_config;
deadbeef293e9262017-01-11 12:28:30 -0800681 bool prune_turn_ports;
682 bool presume_writable_when_fully_relayed;
683 bool enable_ice_renomination;
684 bool redetermine_role_on_ice_restart;
Qingsi Wange6826d22018-03-08 14:55:14 -0800685 rtc::Optional<int> ice_check_interval_strong_connectivity;
686 rtc::Optional<int> ice_check_interval_weak_connectivity;
skvlad51072462017-02-02 11:50:14 -0800687 rtc::Optional<int> ice_check_min_interval;
Qingsi Wang22e623a2018-03-13 10:53:57 -0700688 rtc::Optional<int> ice_unwritable_timeout;
689 rtc::Optional<int> ice_unwritable_min_checks;
Qingsi Wangdb53f8e2018-02-20 14:45:49 -0800690 rtc::Optional<int> stun_candidate_keepalive_interval;
Steve Anton300bf8e2017-07-14 10:13:10 -0700691 rtc::Optional<rtc::IntervalRange> ice_regather_interval_range;
Jonas Orelandbdcee282017-10-10 14:01:40 +0200692 webrtc::TurnCustomizer* turn_customizer;
Steve Anton79e79602017-11-20 10:25:56 -0800693 SdpSemantics sdp_semantics;
Qingsi Wang9a5c6f82018-02-01 10:38:40 -0800694 rtc::Optional<rtc::AdapterType> network_preference;
deadbeef293e9262017-01-11 12:28:30 -0800695 };
696 static_assert(sizeof(stuff_being_tested_for_equality) == sizeof(*this),
697 "Did you add something to RTCConfiguration and forget to "
698 "update operator==?");
699 return type == o.type && servers == o.servers &&
700 bundle_policy == o.bundle_policy &&
701 rtcp_mux_policy == o.rtcp_mux_policy &&
702 tcp_candidate_policy == o.tcp_candidate_policy &&
703 candidate_network_policy == o.candidate_network_policy &&
704 audio_jitter_buffer_max_packets == o.audio_jitter_buffer_max_packets &&
705 audio_jitter_buffer_fast_accelerate ==
706 o.audio_jitter_buffer_fast_accelerate &&
707 ice_connection_receiving_timeout ==
708 o.ice_connection_receiving_timeout &&
709 ice_backup_candidate_pair_ping_interval ==
710 o.ice_backup_candidate_pair_ping_interval &&
711 continual_gathering_policy == o.continual_gathering_policy &&
712 certificates == o.certificates &&
713 prioritize_most_likely_ice_candidate_pairs ==
714 o.prioritize_most_likely_ice_candidate_pairs &&
715 media_config == o.media_config && disable_ipv6 == o.disable_ipv6 &&
zhihuangb09b3f92017-03-07 14:40:51 -0800716 disable_ipv6_on_wifi == o.disable_ipv6_on_wifi &&
deadbeefd21eab32017-07-26 16:50:11 -0700717 max_ipv6_networks == o.max_ipv6_networks &&
Daniel Lazarenko2870b0a2018-01-25 10:30:22 +0100718 disable_link_local_networks == o.disable_link_local_networks &&
deadbeef293e9262017-01-11 12:28:30 -0800719 enable_rtp_data_channel == o.enable_rtp_data_channel &&
deadbeef293e9262017-01-11 12:28:30 -0800720 screencast_min_bitrate == o.screencast_min_bitrate &&
721 combined_audio_video_bwe == o.combined_audio_video_bwe &&
722 enable_dtls_srtp == o.enable_dtls_srtp &&
723 ice_candidate_pool_size == o.ice_candidate_pool_size &&
724 prune_turn_ports == o.prune_turn_ports &&
725 presume_writable_when_fully_relayed ==
726 o.presume_writable_when_fully_relayed &&
727 enable_ice_renomination == o.enable_ice_renomination &&
skvlad51072462017-02-02 11:50:14 -0800728 redetermine_role_on_ice_restart == o.redetermine_role_on_ice_restart &&
Qingsi Wange6826d22018-03-08 14:55:14 -0800729 ice_check_interval_strong_connectivity ==
730 o.ice_check_interval_strong_connectivity &&
731 ice_check_interval_weak_connectivity ==
732 o.ice_check_interval_weak_connectivity &&
Steve Anton300bf8e2017-07-14 10:13:10 -0700733 ice_check_min_interval == o.ice_check_min_interval &&
Qingsi Wang22e623a2018-03-13 10:53:57 -0700734 ice_unwritable_timeout == o.ice_unwritable_timeout &&
735 ice_unwritable_min_checks == o.ice_unwritable_min_checks &&
Qingsi Wangdb53f8e2018-02-20 14:45:49 -0800736 stun_candidate_keepalive_interval ==
737 o.stun_candidate_keepalive_interval &&
Jonas Orelandbdcee282017-10-10 14:01:40 +0200738 ice_regather_interval_range == o.ice_regather_interval_range &&
Steve Anton79e79602017-11-20 10:25:56 -0800739 turn_customizer == o.turn_customizer &&
Qingsi Wang9a5c6f82018-02-01 10:38:40 -0800740 sdp_semantics == o.sdp_semantics &&
741 network_preference == o.network_preference;
deadbeef293e9262017-01-11 12:28:30 -0800742}
743
744bool PeerConnectionInterface::RTCConfiguration::operator!=(
745 const PeerConnectionInterface::RTCConfiguration& o) const {
746 return !(*this == o);
deadbeef3edec7c2016-12-10 11:44:26 -0800747}
748
zhihuang8f65cdf2016-05-06 18:40:30 -0700749// Generate a RTCP CNAME when a PeerConnection is created.
750std::string GenerateRtcpCname() {
751 std::string cname;
752 if (!rtc::CreateRandomString(kRtcpCnameLength, &cname)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100753 RTC_LOG(LS_ERROR) << "Failed to generate CNAME.";
nisseeb4ca4e2017-01-12 02:24:27 -0800754 RTC_NOTREACHED();
zhihuang8f65cdf2016-05-06 18:40:30 -0700755 }
756 return cname;
757}
758
zhihuang1c378ed2017-08-17 14:10:50 -0700759bool ValidateOfferAnswerOptions(
760 const PeerConnectionInterface::RTCOfferAnswerOptions& rtc_options) {
761 return IsValidOfferToReceiveMedia(rtc_options.offer_to_receive_audio) &&
762 IsValidOfferToReceiveMedia(rtc_options.offer_to_receive_video);
olka3c747662017-08-17 06:50:32 -0700763}
764
zhihuang1c378ed2017-08-17 14:10:50 -0700765// From |rtc_options|, fill parts of |session_options| shared by all generated
766// m= sections (in other words, nothing that involves a map/array).
767void ExtractSharedMediaSessionOptions(
768 const PeerConnectionInterface::RTCOfferAnswerOptions& rtc_options,
769 cricket::MediaSessionOptions* session_options) {
770 session_options->vad_enabled = rtc_options.voice_activity_detection;
771 session_options->bundle_enabled = rtc_options.use_rtp_mux;
772}
zhihuanga77e6bb2017-08-14 18:17:48 -0700773
zhihuang1c378ed2017-08-17 14:10:50 -0700774bool ConvertConstraintsToOfferAnswerOptions(
775 const MediaConstraintsInterface* constraints,
776 PeerConnectionInterface::RTCOfferAnswerOptions* offer_answer_options) {
olka3c747662017-08-17 06:50:32 -0700777 if (!constraints) {
778 return true;
779 }
zhihuang1c378ed2017-08-17 14:10:50 -0700780
781 bool value = false;
782 size_t mandatory_constraints_satisfied = 0;
783
784 if (FindConstraint(constraints,
785 MediaConstraintsInterface::kOfferToReceiveAudio, &value,
786 &mandatory_constraints_satisfied)) {
787 offer_answer_options->offer_to_receive_audio =
788 value ? PeerConnectionInterface::RTCOfferAnswerOptions::
789 kOfferToReceiveMediaTrue
790 : 0;
791 }
792
793 if (FindConstraint(constraints,
794 MediaConstraintsInterface::kOfferToReceiveVideo, &value,
795 &mandatory_constraints_satisfied)) {
796 offer_answer_options->offer_to_receive_video =
797 value ? PeerConnectionInterface::RTCOfferAnswerOptions::
798 kOfferToReceiveMediaTrue
799 : 0;
800 }
801 if (FindConstraint(constraints,
802 MediaConstraintsInterface::kVoiceActivityDetection, &value,
803 &mandatory_constraints_satisfied)) {
804 offer_answer_options->voice_activity_detection = value;
805 }
806 if (FindConstraint(constraints, MediaConstraintsInterface::kUseRtpMux, &value,
807 &mandatory_constraints_satisfied)) {
808 offer_answer_options->use_rtp_mux = value;
809 }
810 if (FindConstraint(constraints, MediaConstraintsInterface::kIceRestart,
811 &value, &mandatory_constraints_satisfied)) {
812 offer_answer_options->ice_restart = value;
813 }
814
deadbeefab9b2d12015-10-14 11:33:11 -0700815 return mandatory_constraints_satisfied == constraints->GetMandatory().size();
816}
817
zhihuang38ede132017-06-15 12:52:32 -0700818PeerConnection::PeerConnection(PeerConnectionFactory* factory,
819 std::unique_ptr<RtcEventLog> event_log,
820 std::unique_ptr<Call> call)
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000821 : factory_(factory),
zhihuang38ede132017-06-15 12:52:32 -0700822 event_log_(std::move(event_log)),
zhihuang8f65cdf2016-05-06 18:40:30 -0700823 rtcp_cname_(GenerateRtcpCname()),
deadbeefab9b2d12015-10-14 11:33:11 -0700824 local_streams_(StreamCollection::Create()),
zhihuang38ede132017-06-15 12:52:32 -0700825 remote_streams_(StreamCollection::Create()),
826 call_(std::move(call)) {}
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000827
828PeerConnection::~PeerConnection() {
Peter Boström1a9d6152015-12-08 22:15:17 +0100829 TRACE_EVENT0("webrtc", "PeerConnection::~PeerConnection");
Steve Anton4171afb2017-11-20 10:20:22 -0800830 RTC_DCHECK_RUN_ON(signaling_thread());
831
Steve Anton8af21862017-12-15 11:20:13 -0800832 // Need to stop transceivers before destroying the stats collector because
833 // AudioRtpSender has a reference to the StatsCollector it will update when
834 // stopping.
835 for (auto transceiver : transceivers_) {
836 transceiver->Stop();
837 }
Steve Anton4171afb2017-11-20 10:20:22 -0800838
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700839 stats_.reset(nullptr);
hbosb78306a2016-12-19 05:06:57 -0800840 if (stats_collector_) {
841 stats_collector_->WaitForPendingRequest();
842 stats_collector_ = nullptr;
843 }
Steve Anton75737c02017-11-06 10:37:17 -0800844
Steve Anton8af21862017-12-15 11:20:13 -0800845 // Don't destroy BaseChannels until after stats has been cleaned up so that
846 // the last stats request can still read from the channels.
847 DestroyAllChannels();
848
Mirko Bonadei675513b2017-11-09 11:09:25 +0100849 RTC_LOG(LS_INFO) << "Session: " << session_id() << " is destroyed.";
Steve Anton75737c02017-11-06 10:37:17 -0800850
851 webrtc_session_desc_factory_.reset();
852 sctp_invoker_.reset();
853 sctp_factory_.reset();
854 transport_controller_.reset();
855
deadbeef91dd5672016-05-18 16:55:30 -0700856 // port_allocator_ lives on the network thread and should be destroyed there.
Taylor Brandstetter5d97a9a2016-06-10 14:17:27 -0700857 network_thread()->Invoke<void>(RTC_FROM_HERE,
nisseeaabdf62017-05-05 02:23:02 -0700858 [this] { port_allocator_.reset(); });
eladalon248fd4f2017-09-06 05:18:15 -0700859 // call_ and event_log_ must be destroyed on the worker thread.
Steve Anton978b8762017-09-29 12:15:02 -0700860 worker_thread()->Invoke<void>(RTC_FROM_HERE, [this] {
eladalon248fd4f2017-09-06 05:18:15 -0700861 call_.reset();
Qingsi Wang93a84392018-01-30 17:13:09 -0800862 // The event log must outlive call (and any other object that uses it).
eladalon248fd4f2017-09-06 05:18:15 -0700863 event_log_.reset();
864 });
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000865}
866
Steve Anton8af21862017-12-15 11:20:13 -0800867void PeerConnection::DestroyAllChannels() {
Steve Anton3fe1b152017-12-12 10:20:08 -0800868 // Destroy video channels first since they may have a pointer to a voice
869 // channel.
870 for (auto transceiver : transceivers_) {
Steve Anton69470252018-02-09 11:43:08 -0800871 if (transceiver->media_type() == cricket::MEDIA_TYPE_VIDEO) {
Steve Anton3fe1b152017-12-12 10:20:08 -0800872 DestroyTransceiverChannel(transceiver);
873 }
874 }
875 for (auto transceiver : transceivers_) {
Steve Anton69470252018-02-09 11:43:08 -0800876 if (transceiver->media_type() == cricket::MEDIA_TYPE_AUDIO) {
Steve Anton3fe1b152017-12-12 10:20:08 -0800877 DestroyTransceiverChannel(transceiver);
878 }
879 }
880 DestroyDataChannel();
881}
882
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000883bool PeerConnection::Initialize(
buildbot@webrtc.org41451d42014-05-03 05:39:45 +0000884 const PeerConnectionInterface::RTCConfiguration& configuration,
kwibergd1fe2812016-04-27 06:47:29 -0700885 std::unique_ptr<cricket::PortAllocator> allocator,
Henrik Boströmd03c23b2016-06-01 11:44:18 +0200886 std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator,
deadbeef653b8e02015-11-11 12:55:10 -0800887 PeerConnectionObserver* observer) {
Peter Boström1a9d6152015-12-08 22:15:17 +0100888 TRACE_EVENT0("webrtc", "PeerConnection::Initialize");
Steve Anton038834f2017-07-14 15:59:59 -0700889
890 RTCError config_error = ValidateConfiguration(configuration);
891 if (!config_error.ok()) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100892 RTC_LOG(LS_ERROR) << "Invalid configuration: " << config_error.message();
Steve Anton038834f2017-07-14 15:59:59 -0700893 return false;
894 }
895
deadbeef293e9262017-01-11 12:28:30 -0800896 if (!allocator) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100897 RTC_LOG(LS_ERROR)
898 << "PeerConnection initialized without a PortAllocator? "
Jonas Olsson45cc8902018-02-13 10:37:07 +0100899 "This shouldn't happen if using PeerConnectionFactory.";
deadbeef293e9262017-01-11 12:28:30 -0800900 return false;
901 }
Jonas Orelandbdcee282017-10-10 14:01:40 +0200902
deadbeef653b8e02015-11-11 12:55:10 -0800903 if (!observer) {
deadbeef293e9262017-01-11 12:28:30 -0800904 // TODO(deadbeef): Why do we do this?
Mirko Bonadei675513b2017-11-09 11:09:25 +0100905 RTC_LOG(LS_ERROR) << "PeerConnection initialized without a "
Jonas Olsson45cc8902018-02-13 10:37:07 +0100906 "PeerConnectionObserver";
deadbeef653b8e02015-11-11 12:55:10 -0800907 return false;
908 }
pthatcher@webrtc.org877ac762015-02-04 22:03:09 +0000909 observer_ = observer;
kwiberg0eb15ed2015-12-17 03:04:15 -0800910 port_allocator_ = std::move(allocator);
deadbeef653b8e02015-11-11 12:55:10 -0800911
deadbeef91dd5672016-05-18 16:55:30 -0700912 // The port allocator lives on the network thread and should be initialized
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700913 // there.
Taylor Brandstetter5d97a9a2016-06-10 14:17:27 -0700914 if (!network_thread()->Invoke<bool>(
915 RTC_FROM_HERE, rtc::Bind(&PeerConnection::InitializePortAllocator_n,
916 this, configuration))) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000917 return false;
918 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000919
Zhi Huange830e682018-03-30 10:48:35 -0700920 const PeerConnectionFactoryInterface::Options& options = factory_->options();
921
Steve Anton75737c02017-11-06 10:37:17 -0800922 // RFC 3264: The numeric value of the session id and version in the
923 // o line MUST be representable with a "64 bit signed integer".
924 // Due to this constraint session id |session_id_| is max limited to
925 // LLONG_MAX.
926 session_id_ = rtc::ToString(rtc::CreateRandomId64() & LLONG_MAX);
Zhi Huange830e682018-03-30 10:48:35 -0700927 JsepTransportController::Config config;
928 config.redetermine_role_on_ice_restart =
929 configuration.redetermine_role_on_ice_restart;
930 config.ssl_max_version = factory_->options().ssl_max_version;
931 config.disable_encryption = options.disable_encryption;
932 config.bundle_policy = configuration.bundle_policy;
933 config.rtcp_mux_policy = configuration.rtcp_mux_policy;
934 config.crypto_options = options.crypto_options;
935#if defined(ENABLE_EXTERNAL_AUTH)
936 config.enable_external_auth = true;
937#endif
938 transport_controller_.reset(new JsepTransportController(
939 signaling_thread(), network_thread(), port_allocator_.get(), config));
940 transport_controller_->SignalIceConnectionState.connect(
Steve Anton75737c02017-11-06 10:37:17 -0800941 this, &PeerConnection::OnTransportControllerConnectionState);
Zhi Huange830e682018-03-30 10:48:35 -0700942 transport_controller_->SignalIceGatheringState.connect(
Steve Anton75737c02017-11-06 10:37:17 -0800943 this, &PeerConnection::OnTransportControllerGatheringState);
Zhi Huange830e682018-03-30 10:48:35 -0700944 transport_controller_->SignalIceCandidatesGathered.connect(
Steve Anton75737c02017-11-06 10:37:17 -0800945 this, &PeerConnection::OnTransportControllerCandidatesGathered);
Zhi Huange830e682018-03-30 10:48:35 -0700946 transport_controller_->SignalIceCandidatesRemoved.connect(
Steve Anton75737c02017-11-06 10:37:17 -0800947 this, &PeerConnection::OnTransportControllerCandidatesRemoved);
948 transport_controller_->SignalDtlsHandshakeError.connect(
949 this, &PeerConnection::OnTransportControllerDtlsHandshakeError);
Zhi Huange830e682018-03-30 10:48:35 -0700950 transport_controller_->SignalRtpTransportChanged.connect(
951 this, &PeerConnection::OnRtpTransportChanged);
952 transport_controller_->SignalDtlsTransportChanged.connect(
953 this, &PeerConnection::OnDtlsTransportChanged);
Steve Anton75737c02017-11-06 10:37:17 -0800954
955 sctp_factory_ = factory_->CreateSctpTransportInternalFactory();
zhihuang29ff8442016-07-27 11:07:25 -0700956
deadbeefab9b2d12015-10-14 11:33:11 -0700957 stats_.reset(new StatsCollector(this));
hbos74e1a4f2016-09-15 23:33:01 -0700958 stats_collector_ = RTCStatsCollector::Create(this);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000959
Steve Antonba818672017-11-06 10:21:57 -0800960 configuration_ = configuration;
961
Steve Anton75737c02017-11-06 10:37:17 -0800962 // Obtain a certificate from RTCConfiguration if any were provided (optional).
963 rtc::scoped_refptr<rtc::RTCCertificate> certificate;
964 if (!configuration.certificates.empty()) {
965 // TODO(hbos,torbjorng): Decide on certificate-selection strategy instead of
966 // just picking the first one. The decision should be made based on the DTLS
967 // handshake. The DTLS negotiations need to know about all certificates.
968 certificate = configuration.certificates[0];
969 }
970
Steve Antond25da372017-11-06 14:50:29 -0800971 transport_controller_->SetIceConfig(ParseIceConfig(configuration));
Steve Anton75737c02017-11-06 10:37:17 -0800972
973 if (options.disable_encryption) {
974 dtls_enabled_ = false;
975 } else {
976 // Enable DTLS by default if we have an identity store or a certificate.
977 dtls_enabled_ = (cert_generator || certificate);
978 // |configuration| can override the default |dtls_enabled_| value.
979 if (configuration.enable_dtls_srtp) {
980 dtls_enabled_ = *(configuration.enable_dtls_srtp);
981 }
982 }
983
984 // Enable creation of RTP data channels if the kEnableRtpDataChannels is set.
985 // It takes precendence over the disable_sctp_data_channels
986 // PeerConnectionFactoryInterface::Options.
987 if (configuration.enable_rtp_data_channel) {
988 data_channel_type_ = cricket::DCT_RTP;
989 } else {
990 // DTLS has to be enabled to use SCTP.
991 if (!options.disable_sctp_data_channels && dtls_enabled_) {
992 data_channel_type_ = cricket::DCT_SCTP;
993 }
994 }
995
996 video_options_.screencast_min_bitrate_kbps =
997 configuration.screencast_min_bitrate;
998 audio_options_.combined_audio_video_bwe =
999 configuration.combined_audio_video_bwe;
1000
1001 audio_options_.audio_jitter_buffer_max_packets =
Oskar Sundbom9b28a032017-11-16 10:53:30 +01001002 configuration.audio_jitter_buffer_max_packets;
Steve Anton75737c02017-11-06 10:37:17 -08001003
1004 audio_options_.audio_jitter_buffer_fast_accelerate =
Oskar Sundbom9b28a032017-11-16 10:53:30 +01001005 configuration.audio_jitter_buffer_fast_accelerate;
Steve Anton75737c02017-11-06 10:37:17 -08001006
1007 // Whether the certificate generator/certificate is null or not determines
1008 // what PeerConnectionDescriptionFactory will do, so make sure that we give it
1009 // the right instructions by clearing the variables if needed.
1010 if (!dtls_enabled_) {
1011 cert_generator.reset();
1012 certificate = nullptr;
1013 } else if (certificate) {
1014 // Favor generated certificate over the certificate generator.
1015 cert_generator.reset();
1016 }
1017
1018 webrtc_session_desc_factory_.reset(new WebRtcSessionDescriptionFactory(
1019 signaling_thread(), channel_manager(), this, session_id(),
1020 std::move(cert_generator), certificate));
1021 webrtc_session_desc_factory_->SignalCertificateReady.connect(
1022 this, &PeerConnection::OnCertificateReady);
1023
1024 if (options.disable_encryption) {
1025 webrtc_session_desc_factory_->SetSdesPolicy(cricket::SEC_DISABLED);
1026 }
1027
1028 webrtc_session_desc_factory_->set_enable_encrypted_rtp_header_extensions(
1029 options.crypto_options.enable_encrypted_rtp_header_extensions);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001030
Steve Anton4171afb2017-11-20 10:20:22 -08001031 // Add default audio/video transceivers for Plan B SDP.
1032 if (!IsUnifiedPlan()) {
1033 transceivers_.push_back(
1034 RtpTransceiverProxyWithInternal<RtpTransceiver>::Create(
1035 signaling_thread(), new RtpTransceiver(cricket::MEDIA_TYPE_AUDIO)));
1036 transceivers_.push_back(
1037 RtpTransceiverProxyWithInternal<RtpTransceiver>::Create(
1038 signaling_thread(), new RtpTransceiver(cricket::MEDIA_TYPE_VIDEO)));
1039 }
1040
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001041 return true;
1042}
1043
Steve Anton038834f2017-07-14 15:59:59 -07001044RTCError PeerConnection::ValidateConfiguration(
1045 const RTCConfiguration& config) const {
1046 if (config.ice_regather_interval_range &&
1047 config.continual_gathering_policy == GATHER_ONCE) {
1048 return RTCError(RTCErrorType::INVALID_PARAMETER,
1049 "ice_regather_interval_range specified but continual "
1050 "gathering policy is GATHER_ONCE");
1051 }
Qingsi Wangdea68892018-03-27 10:55:21 -07001052 auto result =
1053 cricket::P2PTransportChannel::ValidateIceConfig(ParseIceConfig(config));
1054 return result;
Steve Anton038834f2017-07-14 15:59:59 -07001055}
1056
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +00001057rtc::scoped_refptr<StreamCollectionInterface>
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001058PeerConnection::local_streams() {
Steve Antonfc853712018-03-01 13:48:58 -08001059 RTC_CHECK(!IsUnifiedPlan()) << "local_streams is not available with Unified "
1060 "Plan SdpSemantics. Please use GetSenders "
1061 "instead.";
deadbeefab9b2d12015-10-14 11:33:11 -07001062 return local_streams_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001063}
1064
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +00001065rtc::scoped_refptr<StreamCollectionInterface>
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001066PeerConnection::remote_streams() {
Steve Antonfc853712018-03-01 13:48:58 -08001067 RTC_CHECK(!IsUnifiedPlan()) << "remote_streams is not available with Unified "
1068 "Plan SdpSemantics. Please use GetReceivers "
1069 "instead.";
deadbeefab9b2d12015-10-14 11:33:11 -07001070 return remote_streams_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001071}
1072
perkj@webrtc.orgc2dd5ee2014-11-04 11:31:29 +00001073bool PeerConnection::AddStream(MediaStreamInterface* local_stream) {
Steve Antonfc853712018-03-01 13:48:58 -08001074 RTC_CHECK(!IsUnifiedPlan()) << "AddStream is not available with Unified Plan "
1075 "SdpSemantics. Please use AddTrack instead.";
Peter Boström1a9d6152015-12-08 22:15:17 +01001076 TRACE_EVENT0("webrtc", "PeerConnection::AddStream");
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001077 if (IsClosed()) {
1078 return false;
1079 }
deadbeefab9b2d12015-10-14 11:33:11 -07001080 if (!CanAddLocalMediaStream(local_streams_, local_stream)) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001081 return false;
1082 }
deadbeefab9b2d12015-10-14 11:33:11 -07001083
1084 local_streams_->AddStream(local_stream);
deadbeefeb459812015-12-15 19:24:43 -08001085 MediaStreamObserver* observer = new MediaStreamObserver(local_stream);
1086 observer->SignalAudioTrackAdded.connect(this,
1087 &PeerConnection::OnAudioTrackAdded);
1088 observer->SignalAudioTrackRemoved.connect(
1089 this, &PeerConnection::OnAudioTrackRemoved);
1090 observer->SignalVideoTrackAdded.connect(this,
1091 &PeerConnection::OnVideoTrackAdded);
1092 observer->SignalVideoTrackRemoved.connect(
1093 this, &PeerConnection::OnVideoTrackRemoved);
kwibergd1fe2812016-04-27 06:47:29 -07001094 stream_observers_.push_back(std::unique_ptr<MediaStreamObserver>(observer));
deadbeefab9b2d12015-10-14 11:33:11 -07001095
deadbeefab9b2d12015-10-14 11:33:11 -07001096 for (const auto& track : local_stream->GetAudioTracks()) {
korniltsev.anatolyec390b52017-07-24 17:00:25 -07001097 AddAudioTrack(track.get(), local_stream);
deadbeefab9b2d12015-10-14 11:33:11 -07001098 }
1099 for (const auto& track : local_stream->GetVideoTracks()) {
korniltsev.anatolyec390b52017-07-24 17:00:25 -07001100 AddVideoTrack(track.get(), local_stream);
deadbeefab9b2d12015-10-14 11:33:11 -07001101 }
1102
tommi@webrtc.org03505bc2014-07-14 20:15:26 +00001103 stats_->AddStream(local_stream);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001104 observer_->OnRenegotiationNeeded();
1105 return true;
1106}
1107
1108void PeerConnection::RemoveStream(MediaStreamInterface* local_stream) {
Steve Antonfc853712018-03-01 13:48:58 -08001109 RTC_CHECK(!IsUnifiedPlan()) << "RemoveStream is not available with Unified "
1110 "Plan SdpSemantics. Please use RemoveTrack "
1111 "instead.";
Peter Boström1a9d6152015-12-08 22:15:17 +01001112 TRACE_EVENT0("webrtc", "PeerConnection::RemoveStream");
korniltsev.anatolyec390b52017-07-24 17:00:25 -07001113 if (!IsClosed()) {
1114 for (const auto& track : local_stream->GetAudioTracks()) {
1115 RemoveAudioTrack(track.get(), local_stream);
1116 }
1117 for (const auto& track : local_stream->GetVideoTracks()) {
1118 RemoveVideoTrack(track.get(), local_stream);
1119 }
deadbeefab9b2d12015-10-14 11:33:11 -07001120 }
deadbeefab9b2d12015-10-14 11:33:11 -07001121 local_streams_->RemoveStream(local_stream);
deadbeefeb459812015-12-15 19:24:43 -08001122 stream_observers_.erase(
1123 std::remove_if(
1124 stream_observers_.begin(), stream_observers_.end(),
kwibergd1fe2812016-04-27 06:47:29 -07001125 [local_stream](const std::unique_ptr<MediaStreamObserver>& observer) {
Seth Hampson13b8bad2018-03-13 16:05:28 -07001126 return observer->stream()->id().compare(local_stream->id()) == 0;
deadbeefeb459812015-12-15 19:24:43 -08001127 }),
1128 stream_observers_.end());
deadbeefab9b2d12015-10-14 11:33:11 -07001129
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001130 if (IsClosed()) {
1131 return;
1132 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001133 observer_->OnRenegotiationNeeded();
1134}
1135
deadbeefe1f9d832016-01-14 15:35:42 -08001136rtc::scoped_refptr<RtpSenderInterface> PeerConnection::AddTrack(
1137 MediaStreamTrackInterface* track,
1138 std::vector<MediaStreamInterface*> streams) {
1139 TRACE_EVENT0("webrtc", "PeerConnection::AddTrack");
Seth Hampson845e8782018-03-02 11:34:10 -08001140 std::vector<std::string> stream_ids;
Steve Antonf9381f02017-12-14 10:23:57 -08001141 for (auto* stream : streams) {
1142 if (!stream) {
1143 RTC_LOG(LS_ERROR) << "Stream list has null element.";
1144 return nullptr;
1145 }
Seth Hampson13b8bad2018-03-13 16:05:28 -07001146 stream_ids.push_back(stream->id());
Steve Antonf9381f02017-12-14 10:23:57 -08001147 }
Seth Hampson845e8782018-03-02 11:34:10 -08001148 auto sender_or_error = AddTrack(track, stream_ids);
Steve Antonf9381f02017-12-14 10:23:57 -08001149 if (!sender_or_error.ok()) {
deadbeefe1f9d832016-01-14 15:35:42 -08001150 return nullptr;
1151 }
Steve Antonf9381f02017-12-14 10:23:57 -08001152 return sender_or_error.MoveValue();
1153}
1154
Steve Anton2d6c76a2018-01-05 17:10:52 -08001155RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> PeerConnection::AddTrack(
Steve Antonf9381f02017-12-14 10:23:57 -08001156 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -08001157 const std::vector<std::string>& stream_ids) {
Steve Anton2d6c76a2018-01-05 17:10:52 -08001158 TRACE_EVENT0("webrtc", "PeerConnection::AddTrack");
Steve Antonf9381f02017-12-14 10:23:57 -08001159 if (!track) {
1160 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, "Track is null.");
1161 }
1162 if (!(track->kind() == MediaStreamTrackInterface::kAudioKind ||
1163 track->kind() == MediaStreamTrackInterface::kVideoKind)) {
1164 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
1165 "Track has invalid kind: " + track->kind());
1166 }
Steve Antonf9381f02017-12-14 10:23:57 -08001167 if (IsClosed()) {
1168 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_STATE,
1169 "PeerConnection is closed.");
deadbeefe1f9d832016-01-14 15:35:42 -08001170 }
Steve Anton4171afb2017-11-20 10:20:22 -08001171 if (FindSenderForTrack(track)) {
Steve Antonf9381f02017-12-14 10:23:57 -08001172 LOG_AND_RETURN_ERROR(
1173 RTCErrorType::INVALID_PARAMETER,
1174 "Sender already exists for track " + track->id() + ".");
deadbeefe1f9d832016-01-14 15:35:42 -08001175 }
Steve Antonf9381f02017-12-14 10:23:57 -08001176 auto sender_or_error =
Seth Hampson5b4f0752018-04-02 16:31:36 -07001177 (IsUnifiedPlan() ? AddTrackUnifiedPlan(track, stream_ids)
1178 : AddTrackPlanB(track, stream_ids));
Steve Antonf9381f02017-12-14 10:23:57 -08001179 if (sender_or_error.ok()) {
1180 observer_->OnRenegotiationNeeded();
Steve Anton43a723a2018-01-04 15:48:17 -08001181 stats_->AddTrack(track);
Steve Antonf9381f02017-12-14 10:23:57 -08001182 }
1183 return sender_or_error;
1184}
deadbeefe1f9d832016-01-14 15:35:42 -08001185
Steve Antonf9381f02017-12-14 10:23:57 -08001186RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>>
1187PeerConnection::AddTrackPlanB(
1188 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -08001189 const std::vector<std::string>& stream_ids) {
Seth Hampson5b4f0752018-04-02 16:31:36 -07001190 if (stream_ids.size() > 1u) {
1191 LOG_AND_RETURN_ERROR(RTCErrorType::UNSUPPORTED_OPERATION,
1192 "AddTrack with more than one stream is not "
1193 "supported with Plan B semantics.");
1194 }
1195 std::vector<std::string> adjusted_stream_ids = stream_ids;
1196 if (adjusted_stream_ids.empty()) {
1197 adjusted_stream_ids.push_back(rtc::CreateRandomUuid());
1198 }
Steve Anton02ee47c2018-01-10 16:26:06 -08001199 cricket::MediaType media_type =
1200 (track->kind() == MediaStreamTrackInterface::kAudioKind
1201 ? cricket::MEDIA_TYPE_AUDIO
1202 : cricket::MEDIA_TYPE_VIDEO);
Seth Hampson5b4f0752018-04-02 16:31:36 -07001203 auto new_sender = CreateSender(media_type, track, adjusted_stream_ids);
deadbeefe1f9d832016-01-14 15:35:42 -08001204 if (track->kind() == MediaStreamTrackInterface::kAudioKind) {
Steve Anton57858b32018-02-15 15:19:50 -08001205 new_sender->internal()->SetVoiceMediaChannel(voice_media_channel());
Steve Anton4171afb2017-11-20 10:20:22 -08001206 GetAudioTransceiver()->internal()->AddSender(new_sender);
Steve Anton4171afb2017-11-20 10:20:22 -08001207 const RtpSenderInfo* sender_info =
Emircan Uysalerbc609ea2018-03-27 21:57:18 +00001208 FindSenderInfo(local_audio_sender_infos_,
Seth Hampson5b4f0752018-04-02 16:31:36 -07001209 new_sender->internal()->stream_ids()[0], track->id());
Steve Anton4171afb2017-11-20 10:20:22 -08001210 if (sender_info) {
1211 new_sender->internal()->SetSsrc(sender_info->first_ssrc);
deadbeefe1f9d832016-01-14 15:35:42 -08001212 }
Steve Antonf9381f02017-12-14 10:23:57 -08001213 } else {
1214 RTC_DCHECK_EQ(MediaStreamTrackInterface::kVideoKind, track->kind());
Steve Anton57858b32018-02-15 15:19:50 -08001215 new_sender->internal()->SetVideoMediaChannel(video_media_channel());
Steve Anton4171afb2017-11-20 10:20:22 -08001216 GetVideoTransceiver()->internal()->AddSender(new_sender);
Steve Anton4171afb2017-11-20 10:20:22 -08001217 const RtpSenderInfo* sender_info =
Emircan Uysalerbc609ea2018-03-27 21:57:18 +00001218 FindSenderInfo(local_video_sender_infos_,
Seth Hampson5b4f0752018-04-02 16:31:36 -07001219 new_sender->internal()->stream_ids()[0], track->id());
Steve Anton4171afb2017-11-20 10:20:22 -08001220 if (sender_info) {
1221 new_sender->internal()->SetSsrc(sender_info->first_ssrc);
deadbeefe1f9d832016-01-14 15:35:42 -08001222 }
deadbeefe1f9d832016-01-14 15:35:42 -08001223 }
Steve Anton02ee47c2018-01-10 16:26:06 -08001224 return rtc::scoped_refptr<RtpSenderInterface>(new_sender);
Steve Antonf9381f02017-12-14 10:23:57 -08001225}
deadbeefe1f9d832016-01-14 15:35:42 -08001226
Steve Antonf9381f02017-12-14 10:23:57 -08001227RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>>
1228PeerConnection::AddTrackUnifiedPlan(
1229 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -08001230 const std::vector<std::string>& stream_ids) {
Steve Antonf9381f02017-12-14 10:23:57 -08001231 auto transceiver = FindFirstTransceiverForAddedTrack(track);
1232 if (transceiver) {
Steve Anton3d954a62018-04-02 11:27:23 -07001233 RTC_LOG(LS_INFO) << "Reusing an existing "
1234 << cricket::MediaTypeToString(transceiver->media_type())
1235 << " transceiver for AddTrack.";
Steve Antonf9381f02017-12-14 10:23:57 -08001236 if (transceiver->direction() == RtpTransceiverDirection::kRecvOnly) {
Steve Anton52d86772018-02-20 15:48:12 -08001237 transceiver->internal()->set_direction(
1238 RtpTransceiverDirection::kSendRecv);
Steve Antonf9381f02017-12-14 10:23:57 -08001239 } else if (transceiver->direction() == RtpTransceiverDirection::kInactive) {
Steve Anton52d86772018-02-20 15:48:12 -08001240 transceiver->internal()->set_direction(
1241 RtpTransceiverDirection::kSendOnly);
Steve Antonf9381f02017-12-14 10:23:57 -08001242 }
Steve Anton02ee47c2018-01-10 16:26:06 -08001243 transceiver->sender()->SetTrack(track);
Seth Hampson845e8782018-03-02 11:34:10 -08001244 transceiver->internal()->sender_internal()->set_stream_ids(stream_ids);
Steve Antonf9381f02017-12-14 10:23:57 -08001245 } else {
1246 cricket::MediaType media_type =
1247 (track->kind() == MediaStreamTrackInterface::kAudioKind
1248 ? cricket::MEDIA_TYPE_AUDIO
1249 : cricket::MEDIA_TYPE_VIDEO);
Steve Anton3d954a62018-04-02 11:27:23 -07001250 RTC_LOG(LS_INFO) << "Adding " << cricket::MediaTypeToString(media_type)
1251 << " transceiver in response to a call to AddTrack.";
Seth Hampson845e8782018-03-02 11:34:10 -08001252 auto sender = CreateSender(media_type, track, stream_ids);
Steve Anton02ee47c2018-01-10 16:26:06 -08001253 auto receiver = CreateReceiver(media_type, rtc::CreateRandomUuid());
1254 transceiver = CreateAndAddTransceiver(sender, receiver);
Steve Antonf9381f02017-12-14 10:23:57 -08001255 transceiver->internal()->set_created_by_addtrack(true);
Steve Anton52d86772018-02-20 15:48:12 -08001256 transceiver->internal()->set_direction(RtpTransceiverDirection::kSendRecv);
Steve Antonf9381f02017-12-14 10:23:57 -08001257 }
Steve Antonf9381f02017-12-14 10:23:57 -08001258 return transceiver->sender();
1259}
1260
1261rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
1262PeerConnection::FindFirstTransceiverForAddedTrack(
1263 rtc::scoped_refptr<MediaStreamTrackInterface> track) {
1264 RTC_DCHECK(track);
1265 for (auto transceiver : transceivers_) {
1266 if (!transceiver->sender()->track() &&
Steve Anton69470252018-02-09 11:43:08 -08001267 cricket::MediaTypeToString(transceiver->media_type()) ==
Steve Antonf9381f02017-12-14 10:23:57 -08001268 track->kind() &&
Seth Hampson2f0d7022018-02-20 11:54:42 -08001269 !transceiver->internal()->has_ever_been_used_to_send() &&
1270 !transceiver->stopped()) {
Steve Antonf9381f02017-12-14 10:23:57 -08001271 return transceiver;
1272 }
1273 }
1274 return nullptr;
deadbeefe1f9d832016-01-14 15:35:42 -08001275}
1276
1277bool PeerConnection::RemoveTrack(RtpSenderInterface* sender) {
1278 TRACE_EVENT0("webrtc", "PeerConnection::RemoveTrack");
Steve Antonf9381f02017-12-14 10:23:57 -08001279 return RemoveTrackInternal(sender).ok();
1280}
1281
1282RTCError PeerConnection::RemoveTrackInternal(
1283 rtc::scoped_refptr<RtpSenderInterface> sender) {
1284 if (!sender) {
1285 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, "Sender is null.");
1286 }
deadbeefe1f9d832016-01-14 15:35:42 -08001287 if (IsClosed()) {
Steve Antonf9381f02017-12-14 10:23:57 -08001288 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_STATE,
1289 "PeerConnection is closed.");
deadbeefe1f9d832016-01-14 15:35:42 -08001290 }
Steve Antonf9381f02017-12-14 10:23:57 -08001291 if (IsUnifiedPlan()) {
1292 auto transceiver = FindTransceiverBySender(sender);
1293 if (!transceiver || !sender->track()) {
1294 return RTCError::OK();
1295 }
1296 sender->SetTrack(nullptr);
1297 if (transceiver->direction() == RtpTransceiverDirection::kSendRecv) {
Steve Anton52d86772018-02-20 15:48:12 -08001298 transceiver->internal()->set_direction(
1299 RtpTransceiverDirection::kRecvOnly);
Steve Antonf9381f02017-12-14 10:23:57 -08001300 } else if (transceiver->direction() == RtpTransceiverDirection::kSendOnly) {
Steve Anton52d86772018-02-20 15:48:12 -08001301 transceiver->internal()->set_direction(
1302 RtpTransceiverDirection::kInactive);
Steve Antonf9381f02017-12-14 10:23:57 -08001303 }
Steve Anton4171afb2017-11-20 10:20:22 -08001304 } else {
Steve Antonf9381f02017-12-14 10:23:57 -08001305 bool removed;
1306 if (sender->media_type() == cricket::MEDIA_TYPE_AUDIO) {
1307 removed = GetAudioTransceiver()->internal()->RemoveSender(sender);
1308 } else {
1309 RTC_DCHECK_EQ(cricket::MEDIA_TYPE_VIDEO, sender->media_type());
1310 removed = GetVideoTransceiver()->internal()->RemoveSender(sender);
1311 }
1312 if (!removed) {
1313 LOG_AND_RETURN_ERROR(
1314 RTCErrorType::INVALID_PARAMETER,
1315 "Couldn't find sender " + sender->id() + " to remove.");
1316 }
Steve Anton4171afb2017-11-20 10:20:22 -08001317 }
deadbeefe1f9d832016-01-14 15:35:42 -08001318 observer_->OnRenegotiationNeeded();
Steve Antonf9381f02017-12-14 10:23:57 -08001319 return RTCError::OK();
1320}
1321
1322rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
1323PeerConnection::FindTransceiverBySender(
1324 rtc::scoped_refptr<RtpSenderInterface> sender) {
1325 for (auto transceiver : transceivers_) {
1326 if (transceiver->sender() == sender) {
1327 return transceiver;
1328 }
1329 }
1330 return nullptr;
deadbeefe1f9d832016-01-14 15:35:42 -08001331}
1332
Steve Anton9158ef62017-11-27 13:01:52 -08001333RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>>
1334PeerConnection::AddTransceiver(
1335 rtc::scoped_refptr<MediaStreamTrackInterface> track) {
1336 return AddTransceiver(track, RtpTransceiverInit());
1337}
1338
1339RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>>
1340PeerConnection::AddTransceiver(
1341 rtc::scoped_refptr<MediaStreamTrackInterface> track,
1342 const RtpTransceiverInit& init) {
Steve Antonfc853712018-03-01 13:48:58 -08001343 RTC_CHECK(IsUnifiedPlan())
1344 << "AddTransceiver is only available with Unified Plan SdpSemantics";
Steve Anton9158ef62017-11-27 13:01:52 -08001345 if (!track) {
1346 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, "track is null");
1347 }
1348 cricket::MediaType media_type;
1349 if (track->kind() == MediaStreamTrackInterface::kAudioKind) {
1350 media_type = cricket::MEDIA_TYPE_AUDIO;
1351 } else if (track->kind() == MediaStreamTrackInterface::kVideoKind) {
1352 media_type = cricket::MEDIA_TYPE_VIDEO;
1353 } else {
1354 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
1355 "Track kind is not audio or video");
1356 }
1357 return AddTransceiver(media_type, track, init);
1358}
1359
1360RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>>
1361PeerConnection::AddTransceiver(cricket::MediaType media_type) {
1362 return AddTransceiver(media_type, RtpTransceiverInit());
1363}
1364
1365RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>>
1366PeerConnection::AddTransceiver(cricket::MediaType media_type,
1367 const RtpTransceiverInit& init) {
Steve Antonfc853712018-03-01 13:48:58 -08001368 RTC_CHECK(IsUnifiedPlan())
1369 << "AddTransceiver is only available with Unified Plan SdpSemantics";
Steve Anton9158ef62017-11-27 13:01:52 -08001370 if (!(media_type == cricket::MEDIA_TYPE_AUDIO ||
1371 media_type == cricket::MEDIA_TYPE_VIDEO)) {
1372 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
1373 "media type is not audio or video");
1374 }
1375 return AddTransceiver(media_type, nullptr, init);
1376}
1377
1378RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>>
1379PeerConnection::AddTransceiver(
1380 cricket::MediaType media_type,
1381 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Steve Anton22da89f2018-01-25 13:58:07 -08001382 const RtpTransceiverInit& init,
1383 bool fire_callback) {
Steve Anton9158ef62017-11-27 13:01:52 -08001384 RTC_DCHECK((media_type == cricket::MEDIA_TYPE_AUDIO ||
1385 media_type == cricket::MEDIA_TYPE_VIDEO));
1386 if (track) {
1387 RTC_DCHECK_EQ(media_type,
1388 (track->kind() == MediaStreamTrackInterface::kAudioKind
1389 ? cricket::MEDIA_TYPE_AUDIO
1390 : cricket::MEDIA_TYPE_VIDEO));
1391 }
1392
1393 // TODO(bugs.webrtc.org/7600): Verify init.
1394
Steve Anton3d954a62018-04-02 11:27:23 -07001395 RTC_LOG(LS_INFO) << "Adding " << cricket::MediaTypeToString(media_type)
1396 << " transceiver in response to a call to AddTransceiver.";
Seth Hampson5b4f0752018-04-02 16:31:36 -07001397 auto sender = CreateSender(media_type, track, init.stream_ids);
Steve Anton02ee47c2018-01-10 16:26:06 -08001398 auto receiver = CreateReceiver(media_type, rtc::CreateRandomUuid());
1399 auto transceiver = CreateAndAddTransceiver(sender, receiver);
1400 transceiver->internal()->set_direction(init.direction);
1401
Steve Anton22da89f2018-01-25 13:58:07 -08001402 if (fire_callback) {
1403 observer_->OnRenegotiationNeeded();
1404 }
Steve Antonf9381f02017-12-14 10:23:57 -08001405
1406 return rtc::scoped_refptr<RtpTransceiverInterface>(transceiver);
1407}
1408
Steve Anton02ee47c2018-01-10 16:26:06 -08001409rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
1410PeerConnection::CreateSender(
1411 cricket::MediaType media_type,
1412 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -08001413 const std::vector<std::string>& stream_ids) {
Steve Anton9158ef62017-11-27 13:01:52 -08001414 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> sender;
Steve Anton02ee47c2018-01-10 16:26:06 -08001415 if (media_type == cricket::MEDIA_TYPE_AUDIO) {
1416 RTC_DCHECK(!track ||
1417 (track->kind() == MediaStreamTrackInterface::kAudioKind));
1418 sender = RtpSenderProxyWithInternal<RtpSenderInternal>::Create(
1419 signaling_thread(),
Steve Anton47136dd2018-01-12 10:49:35 -08001420 new AudioRtpSender(worker_thread(),
1421 static_cast<AudioTrackInterface*>(track.get()),
Seth Hampson845e8782018-03-02 11:34:10 -08001422 stream_ids, stats_.get()));
Steve Anton02ee47c2018-01-10 16:26:06 -08001423 } else {
1424 RTC_DCHECK_EQ(media_type, cricket::MEDIA_TYPE_VIDEO);
1425 RTC_DCHECK(!track ||
1426 (track->kind() == MediaStreamTrackInterface::kVideoKind));
1427 sender = RtpSenderProxyWithInternal<RtpSenderInternal>::Create(
1428 signaling_thread(),
Steve Anton47136dd2018-01-12 10:49:35 -08001429 new VideoRtpSender(worker_thread(),
1430 static_cast<VideoTrackInterface*>(track.get()),
Seth Hampson845e8782018-03-02 11:34:10 -08001431 stream_ids));
Steve Anton02ee47c2018-01-10 16:26:06 -08001432 }
Seth Hampson845e8782018-03-02 11:34:10 -08001433 sender->internal()->set_stream_ids(stream_ids);
Steve Anton02ee47c2018-01-10 16:26:06 -08001434 return sender;
1435}
1436
1437rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
1438PeerConnection::CreateReceiver(cricket::MediaType media_type,
1439 const std::string& receiver_id) {
Steve Anton9158ef62017-11-27 13:01:52 -08001440 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
1441 receiver;
Steve Anton9158ef62017-11-27 13:01:52 -08001442 if (media_type == cricket::MEDIA_TYPE_AUDIO) {
Steve Anton9158ef62017-11-27 13:01:52 -08001443 receiver = RtpReceiverProxyWithInternal<RtpReceiverInternal>::Create(
Steve Anton60776752018-01-10 11:51:34 -08001444 signaling_thread(),
Steve Antond3679212018-01-17 17:41:02 -08001445 new AudioRtpReceiver(worker_thread(), receiver_id, {}));
Steve Anton9158ef62017-11-27 13:01:52 -08001446 } else {
Steve Anton02ee47c2018-01-10 16:26:06 -08001447 RTC_DCHECK_EQ(media_type, cricket::MEDIA_TYPE_VIDEO);
Steve Anton9158ef62017-11-27 13:01:52 -08001448 receiver = RtpReceiverProxyWithInternal<RtpReceiverInternal>::Create(
1449 signaling_thread(),
Steve Antond3679212018-01-17 17:41:02 -08001450 new VideoRtpReceiver(worker_thread(), receiver_id, {}));
Steve Anton9158ef62017-11-27 13:01:52 -08001451 }
Steve Anton02ee47c2018-01-10 16:26:06 -08001452 return receiver;
1453}
1454
1455rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
1456PeerConnection::CreateAndAddTransceiver(
1457 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> sender,
1458 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
1459 receiver) {
1460 auto transceiver = RtpTransceiverProxyWithInternal<RtpTransceiver>::Create(
1461 signaling_thread(), new RtpTransceiver(sender, receiver));
Steve Anton9158ef62017-11-27 13:01:52 -08001462 transceivers_.push_back(transceiver);
Steve Anton52d86772018-02-20 15:48:12 -08001463 transceiver->internal()->SignalNegotiationNeeded.connect(
1464 this, &PeerConnection::OnNegotiationNeeded);
Steve Antonf9381f02017-12-14 10:23:57 -08001465 return transceiver;
Steve Anton9158ef62017-11-27 13:01:52 -08001466}
1467
Steve Anton52d86772018-02-20 15:48:12 -08001468void PeerConnection::OnNegotiationNeeded() {
1469 RTC_DCHECK_RUN_ON(signaling_thread());
1470 RTC_DCHECK(!IsClosed());
1471 observer_->OnRenegotiationNeeded();
1472}
1473
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +00001474rtc::scoped_refptr<DtmfSenderInterface> PeerConnection::CreateDtmfSender(
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001475 AudioTrackInterface* track) {
Peter Boström1a9d6152015-12-08 22:15:17 +01001476 TRACE_EVENT0("webrtc", "PeerConnection::CreateDtmfSender");
zhihuang29ff8442016-07-27 11:07:25 -07001477 if (IsClosed()) {
1478 return nullptr;
1479 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001480 if (!track) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01001481 RTC_LOG(LS_ERROR) << "CreateDtmfSender - track is NULL.";
deadbeef20cb0c12017-02-01 20:27:00 -08001482 return nullptr;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001483 }
Steve Anton4171afb2017-11-20 10:20:22 -08001484 auto track_sender = FindSenderForTrack(track);
1485 if (!track_sender) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01001486 RTC_LOG(LS_ERROR) << "CreateDtmfSender called with a non-added track.";
deadbeef20cb0c12017-02-01 20:27:00 -08001487 return nullptr;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001488 }
1489
Steve Anton4171afb2017-11-20 10:20:22 -08001490 return track_sender->GetDtmfSender();
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001491}
1492
deadbeeffac06552015-11-25 11:26:01 -08001493rtc::scoped_refptr<RtpSenderInterface> PeerConnection::CreateSender(
deadbeefbd7d8f72015-12-18 16:58:44 -08001494 const std::string& kind,
1495 const std::string& stream_id) {
Steve Antonfc853712018-03-01 13:48:58 -08001496 RTC_CHECK(!IsUnifiedPlan()) << "CreateSender is not available with Unified "
1497 "Plan SdpSemantics. Please use AddTransceiver "
1498 "instead.";
Peter Boström1a9d6152015-12-08 22:15:17 +01001499 TRACE_EVENT0("webrtc", "PeerConnection::CreateSender");
zhihuang29ff8442016-07-27 11:07:25 -07001500 if (IsClosed()) {
1501 return nullptr;
1502 }
Steve Anton4171afb2017-11-20 10:20:22 -08001503
Seth Hampson5b4f0752018-04-02 16:31:36 -07001504 // Internally we need to have one stream with Plan B semantics, so we
1505 // generate a random stream ID if not specified.
Seth Hampson845e8782018-03-02 11:34:10 -08001506 std::vector<std::string> stream_ids;
Seth Hampson5b4f0752018-04-02 16:31:36 -07001507 if (stream_id.empty()) {
1508 stream_ids.push_back(rtc::CreateRandomUuid());
1509 RTC_LOG(LS_INFO)
1510 << "No stream_id specified for sender. Generated stream ID: "
1511 << stream_ids[0];
1512 } else {
Seth Hampson845e8782018-03-02 11:34:10 -08001513 stream_ids.push_back(stream_id);
Steve Anton02ee47c2018-01-10 16:26:06 -08001514 }
1515
Steve Anton4171afb2017-11-20 10:20:22 -08001516 // TODO(steveanton): Move construction of the RtpSenders to RtpTransceiver.
deadbeefa601f5c2016-06-06 14:27:39 -07001517 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> new_sender;
deadbeeffac06552015-11-25 11:26:01 -08001518 if (kind == MediaStreamTrackInterface::kAudioKind) {
Seth Hampson845e8782018-03-02 11:34:10 -08001519 auto* audio_sender =
1520 new AudioRtpSender(worker_thread(), nullptr, stream_ids, stats_.get());
Steve Anton57858b32018-02-15 15:19:50 -08001521 audio_sender->SetVoiceMediaChannel(voice_media_channel());
deadbeefa601f5c2016-06-06 14:27:39 -07001522 new_sender = RtpSenderProxyWithInternal<RtpSenderInternal>::Create(
Steve Anton02ee47c2018-01-10 16:26:06 -08001523 signaling_thread(), audio_sender);
Steve Anton4171afb2017-11-20 10:20:22 -08001524 GetAudioTransceiver()->internal()->AddSender(new_sender);
deadbeeffac06552015-11-25 11:26:01 -08001525 } else if (kind == MediaStreamTrackInterface::kVideoKind) {
Steve Anton47136dd2018-01-12 10:49:35 -08001526 auto* video_sender =
Seth Hampson845e8782018-03-02 11:34:10 -08001527 new VideoRtpSender(worker_thread(), nullptr, stream_ids);
Steve Anton57858b32018-02-15 15:19:50 -08001528 video_sender->SetVideoMediaChannel(video_media_channel());
deadbeefa601f5c2016-06-06 14:27:39 -07001529 new_sender = RtpSenderProxyWithInternal<RtpSenderInternal>::Create(
Steve Anton02ee47c2018-01-10 16:26:06 -08001530 signaling_thread(), video_sender);
Steve Anton4171afb2017-11-20 10:20:22 -08001531 GetVideoTransceiver()->internal()->AddSender(new_sender);
deadbeeffac06552015-11-25 11:26:01 -08001532 } else {
Mirko Bonadei675513b2017-11-09 11:09:25 +01001533 RTC_LOG(LS_ERROR) << "CreateSender called with invalid kind: " << kind;
Steve Anton4171afb2017-11-20 10:20:22 -08001534 return nullptr;
deadbeeffac06552015-11-25 11:26:01 -08001535 }
Steve Anton4171afb2017-11-20 10:20:22 -08001536
deadbeefe1f9d832016-01-14 15:35:42 -08001537 return new_sender;
deadbeeffac06552015-11-25 11:26:01 -08001538}
1539
deadbeef70ab1a12015-09-28 16:53:55 -07001540std::vector<rtc::scoped_refptr<RtpSenderInterface>> PeerConnection::GetSenders()
1541 const {
deadbeefa601f5c2016-06-06 14:27:39 -07001542 std::vector<rtc::scoped_refptr<RtpSenderInterface>> ret;
Steve Anton4171afb2017-11-20 10:20:22 -08001543 for (auto sender : GetSendersInternal()) {
1544 ret.push_back(sender);
deadbeefa601f5c2016-06-06 14:27:39 -07001545 }
1546 return ret;
deadbeef70ab1a12015-09-28 16:53:55 -07001547}
1548
Steve Anton4171afb2017-11-20 10:20:22 -08001549std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>>
1550PeerConnection::GetSendersInternal() const {
1551 std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>>
1552 all_senders;
1553 for (auto transceiver : transceivers_) {
1554 auto senders = transceiver->internal()->senders();
1555 all_senders.insert(all_senders.end(), senders.begin(), senders.end());
1556 }
1557 return all_senders;
1558}
1559
deadbeef70ab1a12015-09-28 16:53:55 -07001560std::vector<rtc::scoped_refptr<RtpReceiverInterface>>
1561PeerConnection::GetReceivers() const {
deadbeefa601f5c2016-06-06 14:27:39 -07001562 std::vector<rtc::scoped_refptr<RtpReceiverInterface>> ret;
Steve Anton4171afb2017-11-20 10:20:22 -08001563 for (const auto& receiver : GetReceiversInternal()) {
1564 ret.push_back(receiver);
deadbeefa601f5c2016-06-06 14:27:39 -07001565 }
1566 return ret;
deadbeef70ab1a12015-09-28 16:53:55 -07001567}
1568
Steve Anton4171afb2017-11-20 10:20:22 -08001569std::vector<
1570 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>>
1571PeerConnection::GetReceiversInternal() const {
1572 std::vector<
1573 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>>
1574 all_receivers;
1575 for (auto transceiver : transceivers_) {
1576 auto receivers = transceiver->internal()->receivers();
1577 all_receivers.insert(all_receivers.end(), receivers.begin(),
1578 receivers.end());
1579 }
1580 return all_receivers;
1581}
1582
Steve Anton9158ef62017-11-27 13:01:52 -08001583std::vector<rtc::scoped_refptr<RtpTransceiverInterface>>
1584PeerConnection::GetTransceivers() const {
Steve Antonfc853712018-03-01 13:48:58 -08001585 RTC_CHECK(IsUnifiedPlan())
1586 << "GetTransceivers is only supported with Unified Plan SdpSemantics.";
Steve Anton9158ef62017-11-27 13:01:52 -08001587 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>> all_transceivers;
1588 for (auto transceiver : transceivers_) {
1589 all_transceivers.push_back(transceiver);
1590 }
1591 return all_transceivers;
1592}
1593
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001594bool PeerConnection::GetStats(StatsObserver* observer,
wu@webrtc.orgb9a088b2014-02-13 23:18:49 +00001595 MediaStreamTrackInterface* track,
1596 StatsOutputLevel level) {
Peter Boström1a9d6152015-12-08 22:15:17 +01001597 TRACE_EVENT0("webrtc", "PeerConnection::GetStats");
deadbeef0a6c4ca2015-10-06 11:38:28 -07001598 RTC_DCHECK(signaling_thread()->IsCurrent());
nisse7ce109a2017-01-31 00:57:56 -08001599 if (!observer) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01001600 RTC_LOG(LS_ERROR) << "GetStats - observer is NULL.";
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001601 return false;
1602 }
1603
tommi@webrtc.org03505bc2014-07-14 20:15:26 +00001604 stats_->UpdateStats(level);
zhihuange9e94c32016-11-04 11:38:15 -07001605 // The StatsCollector is used to tell if a track is valid because it may
1606 // remember tracks that the PeerConnection previously removed.
1607 if (track && !stats_->IsValidTrack(track->id())) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01001608 RTC_LOG(LS_WARNING) << "GetStats is called with an invalid track: "
1609 << track->id();
zhihuange9e94c32016-11-04 11:38:15 -07001610 return false;
1611 }
Taylor Brandstetter5d97a9a2016-06-10 14:17:27 -07001612 signaling_thread()->Post(RTC_FROM_HERE, this, MSG_GETSTATS,
tommi@webrtc.org5b06b062014-08-15 08:38:30 +00001613 new GetStatsMsg(observer, track));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001614 return true;
1615}
1616
hbos74e1a4f2016-09-15 23:33:01 -07001617void PeerConnection::GetStats(RTCStatsCollectorCallback* callback) {
Henrik Boström1df1bf82018-03-20 13:24:20 +01001618 TRACE_EVENT0("webrtc", "PeerConnection::GetStats");
hbos74e1a4f2016-09-15 23:33:01 -07001619 RTC_DCHECK(stats_collector_);
Henrik Boström1df1bf82018-03-20 13:24:20 +01001620 RTC_DCHECK(callback);
hbos74e1a4f2016-09-15 23:33:01 -07001621 stats_collector_->GetStatsReport(callback);
1622}
1623
Henrik Boström1df1bf82018-03-20 13:24:20 +01001624void PeerConnection::GetStats(
1625 rtc::scoped_refptr<RtpSenderInterface> selector,
1626 rtc::scoped_refptr<RTCStatsCollectorCallback> callback) {
1627 TRACE_EVENT0("webrtc", "PeerConnection::GetStats");
1628 RTC_DCHECK(callback);
1629 RTC_DCHECK(stats_collector_);
1630 rtc::scoped_refptr<RtpSenderInternal> internal_sender;
1631 if (selector) {
1632 for (const auto& proxy_transceiver : transceivers_) {
1633 for (const auto& proxy_sender :
1634 proxy_transceiver->internal()->senders()) {
1635 if (proxy_sender == selector) {
1636 internal_sender = proxy_sender->internal();
1637 break;
1638 }
1639 }
1640 if (internal_sender)
1641 break;
1642 }
1643 }
1644 // If there is no |internal_sender| then |selector| is either null or does not
1645 // belong to the PeerConnection (in Plan B, senders can be removed from the
1646 // PeerConnection). This means that "all the stats objects representing the
1647 // selector" is an empty set. Invoking GetStatsReport() with a null selector
1648 // produces an empty stats report.
1649 stats_collector_->GetStatsReport(internal_sender, callback);
1650}
1651
1652void PeerConnection::GetStats(
1653 rtc::scoped_refptr<RtpReceiverInterface> selector,
1654 rtc::scoped_refptr<RTCStatsCollectorCallback> callback) {
1655 TRACE_EVENT0("webrtc", "PeerConnection::GetStats");
1656 RTC_DCHECK(callback);
1657 RTC_DCHECK(stats_collector_);
1658 rtc::scoped_refptr<RtpReceiverInternal> internal_receiver;
1659 if (selector) {
1660 for (const auto& proxy_transceiver : transceivers_) {
1661 for (const auto& proxy_receiver :
1662 proxy_transceiver->internal()->receivers()) {
1663 if (proxy_receiver == selector) {
1664 internal_receiver = proxy_receiver->internal();
1665 break;
1666 }
1667 }
1668 if (internal_receiver)
1669 break;
1670 }
1671 }
1672 // If there is no |internal_receiver| then |selector| is either null or does
1673 // not belong to the PeerConnection (in Plan B, receivers can be removed from
1674 // the PeerConnection). This means that "all the stats objects representing
1675 // the selector" is an empty set. Invoking GetStatsReport() with a null
1676 // selector produces an empty stats report.
1677 stats_collector_->GetStatsReport(internal_receiver, callback);
1678}
1679
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001680PeerConnectionInterface::SignalingState PeerConnection::signaling_state() {
1681 return signaling_state_;
1682}
1683
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001684PeerConnectionInterface::IceConnectionState
1685PeerConnection::ice_connection_state() {
1686 return ice_connection_state_;
1687}
1688
1689PeerConnectionInterface::IceGatheringState
1690PeerConnection::ice_gathering_state() {
1691 return ice_gathering_state_;
1692}
1693
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +00001694rtc::scoped_refptr<DataChannelInterface>
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001695PeerConnection::CreateDataChannel(
1696 const std::string& label,
1697 const DataChannelInit* config) {
Peter Boström1a9d6152015-12-08 22:15:17 +01001698 TRACE_EVENT0("webrtc", "PeerConnection::CreateDataChannel");
zhihuang9763d562016-08-05 11:14:50 -07001699
deadbeefab9b2d12015-10-14 11:33:11 -07001700 bool first_datachannel = !HasDataChannels();
jiayl@webrtc.org001fd2d2014-05-29 15:31:11 +00001701
kwibergd1fe2812016-04-27 06:47:29 -07001702 std::unique_ptr<InternalDataChannelInit> internal_config;
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +00001703 if (config) {
1704 internal_config.reset(new InternalDataChannelInit(*config));
1705 }
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +00001706 rtc::scoped_refptr<DataChannelInterface> channel(
deadbeefab9b2d12015-10-14 11:33:11 -07001707 InternalCreateDataChannel(label, internal_config.get()));
1708 if (!channel.get()) {
1709 return nullptr;
1710 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001711
jiayl@webrtc.org001fd2d2014-05-29 15:31:11 +00001712 // Trigger the onRenegotiationNeeded event for every new RTP DataChannel, or
1713 // the first SCTP DataChannel.
Steve Anton75737c02017-11-06 10:37:17 -08001714 if (data_channel_type() == cricket::DCT_RTP || first_datachannel) {
jiayl@webrtc.org001fd2d2014-05-29 15:31:11 +00001715 observer_->OnRenegotiationNeeded();
1716 }
wu@webrtc.org91053e72013-08-10 07:18:04 +00001717
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001718 return DataChannelProxy::Create(signaling_thread(), channel.get());
1719}
1720
1721void PeerConnection::CreateOffer(CreateSessionDescriptionObserver* observer,
1722 const MediaConstraintsInterface* constraints) {
Peter Boström1a9d6152015-12-08 22:15:17 +01001723 TRACE_EVENT0("webrtc", "PeerConnection::CreateOffer");
Steve Anton8d3444d2017-10-20 15:30:51 -07001724
zhihuang1c378ed2017-08-17 14:10:50 -07001725 PeerConnectionInterface::RTCOfferAnswerOptions offer_answer_options;
1726 // Always create an offer even if |ConvertConstraintsToOfferAnswerOptions|
1727 // returns false for now. Because |ConvertConstraintsToOfferAnswerOptions|
1728 // compares the mandatory fields parsed with the mandatory fields added in the
1729 // |constraints| and some downstream applications might create offers with
1730 // mandatory fields which would not be parsed in the helper method. For
1731 // example, in Chromium/remoting, |kEnableDtlsSrtp| is added to the
1732 // |constraints| as a mandatory field but it is not parsed.
1733 ConvertConstraintsToOfferAnswerOptions(constraints, &offer_answer_options);
jiayl@webrtc.orgb18bf5e2014-08-04 18:34:16 +00001734
zhihuang1c378ed2017-08-17 14:10:50 -07001735 CreateOffer(observer, offer_answer_options);
jiayl@webrtc.orgb18bf5e2014-08-04 18:34:16 +00001736}
1737
1738void PeerConnection::CreateOffer(CreateSessionDescriptionObserver* observer,
1739 const RTCOfferAnswerOptions& options) {
Peter Boström1a9d6152015-12-08 22:15:17 +01001740 TRACE_EVENT0("webrtc", "PeerConnection::CreateOffer");
Steve Anton8d3444d2017-10-20 15:30:51 -07001741
nisse7ce109a2017-01-31 00:57:56 -08001742 if (!observer) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01001743 RTC_LOG(LS_ERROR) << "CreateOffer - observer is NULL.";
jiayl@webrtc.orgb18bf5e2014-08-04 18:34:16 +00001744 return;
1745 }
deadbeefab9b2d12015-10-14 11:33:11 -07001746
Steve Anton8d3444d2017-10-20 15:30:51 -07001747 if (IsClosed()) {
1748 std::string error = "CreateOffer called when PeerConnection is closed.";
Mirko Bonadei675513b2017-11-09 11:09:25 +01001749 RTC_LOG(LS_ERROR) << error;
Harald Alvestrand5081c0c2018-03-09 15:18:03 +01001750 PostCreateSessionDescriptionFailure(
1751 observer, RTCError(RTCErrorType::INTERNAL_ERROR, std::move(error)));
Steve Anton8d3444d2017-10-20 15:30:51 -07001752 return;
1753 }
1754
zhihuang1c378ed2017-08-17 14:10:50 -07001755 if (!ValidateOfferAnswerOptions(options)) {
deadbeefab9b2d12015-10-14 11:33:11 -07001756 std::string error = "CreateOffer called with invalid options.";
Mirko Bonadei675513b2017-11-09 11:09:25 +01001757 RTC_LOG(LS_ERROR) << error;
Harald Alvestrand5081c0c2018-03-09 15:18:03 +01001758 PostCreateSessionDescriptionFailure(
1759 observer, RTCError(RTCErrorType::INTERNAL_ERROR, std::move(error)));
deadbeefab9b2d12015-10-14 11:33:11 -07001760 return;
1761 }
1762
Steve Anton22da89f2018-01-25 13:58:07 -08001763 // Legacy handling for offer_to_receive_audio and offer_to_receive_video.
1764 // Specified in WebRTC section 4.4.3.2 "Legacy configuration extensions".
1765 if (IsUnifiedPlan()) {
1766 RTCError error = HandleLegacyOfferOptions(options);
1767 if (!error.ok()) {
Harald Alvestrand5081c0c2018-03-09 15:18:03 +01001768 PostCreateSessionDescriptionFailure(observer, std::move(error));
Steve Anton22da89f2018-01-25 13:58:07 -08001769 return;
1770 }
1771 }
1772
zhihuang1c378ed2017-08-17 14:10:50 -07001773 cricket::MediaSessionOptions session_options;
1774 GetOptionsForOffer(options, &session_options);
Steve Antond25da372017-11-06 14:50:29 -08001775 webrtc_session_desc_factory_->CreateOffer(observer, options, session_options);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001776}
1777
Steve Anton22da89f2018-01-25 13:58:07 -08001778RTCError PeerConnection::HandleLegacyOfferOptions(
1779 const RTCOfferAnswerOptions& options) {
1780 RTC_DCHECK(IsUnifiedPlan());
1781
1782 if (options.offer_to_receive_audio == 0) {
1783 RemoveRecvDirectionFromReceivingTransceiversOfType(
1784 cricket::MEDIA_TYPE_AUDIO);
1785 } else if (options.offer_to_receive_audio == 1) {
1786 AddUpToOneReceivingTransceiverOfType(cricket::MEDIA_TYPE_AUDIO);
1787 } else if (options.offer_to_receive_audio > 1) {
1788 LOG_AND_RETURN_ERROR(RTCErrorType::UNSUPPORTED_PARAMETER,
1789 "offer_to_receive_audio > 1 is not supported.");
1790 }
1791
1792 if (options.offer_to_receive_video == 0) {
1793 RemoveRecvDirectionFromReceivingTransceiversOfType(
1794 cricket::MEDIA_TYPE_VIDEO);
1795 } else if (options.offer_to_receive_video == 1) {
1796 AddUpToOneReceivingTransceiverOfType(cricket::MEDIA_TYPE_VIDEO);
1797 } else if (options.offer_to_receive_video > 1) {
1798 LOG_AND_RETURN_ERROR(RTCErrorType::UNSUPPORTED_PARAMETER,
1799 "offer_to_receive_video > 1 is not supported.");
1800 }
1801
1802 return RTCError::OK();
1803}
1804
1805void PeerConnection::RemoveRecvDirectionFromReceivingTransceiversOfType(
1806 cricket::MediaType media_type) {
1807 for (auto transceiver : GetReceivingTransceiversOfType(media_type)) {
Steve Anton3d954a62018-04-02 11:27:23 -07001808 RtpTransceiverDirection new_direction =
1809 RtpTransceiverDirectionWithRecvSet(transceiver->direction(), false);
1810 if (new_direction != transceiver->direction()) {
1811 RTC_LOG(LS_INFO) << "Changing " << cricket::MediaTypeToString(media_type)
1812 << " transceiver (MID="
1813 << transceiver->mid().value_or("<not set>") << ") from "
1814 << RtpTransceiverDirectionToString(
1815 transceiver->direction())
1816 << " to "
1817 << RtpTransceiverDirectionToString(new_direction)
1818 << " since CreateOffer specified offer_to_receive=0";
1819 transceiver->internal()->set_direction(new_direction);
1820 }
Steve Anton22da89f2018-01-25 13:58:07 -08001821 }
1822}
1823
1824void PeerConnection::AddUpToOneReceivingTransceiverOfType(
1825 cricket::MediaType media_type) {
1826 if (GetReceivingTransceiversOfType(media_type).empty()) {
Steve Anton3d954a62018-04-02 11:27:23 -07001827 RTC_LOG(LS_INFO)
1828 << "Adding one recvonly " << cricket::MediaTypeToString(media_type)
1829 << " transceiver since CreateOffer specified offer_to_receive=1";
Steve Anton22da89f2018-01-25 13:58:07 -08001830 RtpTransceiverInit init;
1831 init.direction = RtpTransceiverDirection::kRecvOnly;
1832 AddTransceiver(media_type, nullptr, init, /*fire_callback=*/false);
1833 }
1834}
1835
1836std::vector<rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
1837PeerConnection::GetReceivingTransceiversOfType(cricket::MediaType media_type) {
1838 std::vector<
1839 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
1840 receiving_transceivers;
1841 for (auto transceiver : transceivers_) {
Steve Anton69470252018-02-09 11:43:08 -08001842 if (!transceiver->stopped() && transceiver->media_type() == media_type &&
Steve Anton22da89f2018-01-25 13:58:07 -08001843 RtpTransceiverDirectionHasRecv(transceiver->direction())) {
1844 receiving_transceivers.push_back(transceiver);
1845 }
1846 }
1847 return receiving_transceivers;
1848}
1849
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001850void PeerConnection::CreateAnswer(
1851 CreateSessionDescriptionObserver* observer,
1852 const MediaConstraintsInterface* constraints) {
Peter Boström1a9d6152015-12-08 22:15:17 +01001853 TRACE_EVENT0("webrtc", "PeerConnection::CreateAnswer");
Steve Anton8d3444d2017-10-20 15:30:51 -07001854
nisse7ce109a2017-01-31 00:57:56 -08001855 if (!observer) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01001856 RTC_LOG(LS_ERROR) << "CreateAnswer - observer is NULL.";
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001857 return;
1858 }
deadbeefab9b2d12015-10-14 11:33:11 -07001859
zhihuang1c378ed2017-08-17 14:10:50 -07001860 PeerConnectionInterface::RTCOfferAnswerOptions offer_answer_options;
1861 if (!ConvertConstraintsToOfferAnswerOptions(constraints,
1862 &offer_answer_options)) {
deadbeefab9b2d12015-10-14 11:33:11 -07001863 std::string error = "CreateAnswer called with invalid constraints.";
Mirko Bonadei675513b2017-11-09 11:09:25 +01001864 RTC_LOG(LS_ERROR) << error;
Harald Alvestrand5081c0c2018-03-09 15:18:03 +01001865 PostCreateSessionDescriptionFailure(
1866 observer, RTCError(RTCErrorType::INTERNAL_ERROR, std::move(error)));
deadbeefab9b2d12015-10-14 11:33:11 -07001867 return;
1868 }
1869
Steve Anton8d3444d2017-10-20 15:30:51 -07001870 CreateAnswer(observer, offer_answer_options);
htaa2a49d92016-03-04 02:51:39 -08001871}
1872
1873void PeerConnection::CreateAnswer(CreateSessionDescriptionObserver* observer,
1874 const RTCOfferAnswerOptions& options) {
1875 TRACE_EVENT0("webrtc", "PeerConnection::CreateAnswer");
nisse7ce109a2017-01-31 00:57:56 -08001876 if (!observer) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01001877 RTC_LOG(LS_ERROR) << "CreateAnswer - observer is NULL.";
htaa2a49d92016-03-04 02:51:39 -08001878 return;
1879 }
1880
Steve Antondffead82018-02-06 10:31:29 -08001881 if (!(signaling_state_ == kHaveRemoteOffer ||
1882 signaling_state_ == kHaveLocalPrAnswer)) {
1883 std::string error =
1884 "PeerConnection cannot create an answer in a state other than "
1885 "have-remote-offer or have-local-pranswer.";
Mirko Bonadei675513b2017-11-09 11:09:25 +01001886 RTC_LOG(LS_ERROR) << error;
Harald Alvestrand5081c0c2018-03-09 15:18:03 +01001887 PostCreateSessionDescriptionFailure(
1888 observer, RTCError(RTCErrorType::INTERNAL_ERROR, std::move(error)));
Steve Anton8d3444d2017-10-20 15:30:51 -07001889 return;
1890 }
1891
Steve Antondffead82018-02-06 10:31:29 -08001892 // The remote description should be set if we're in the right state.
1893 RTC_DCHECK(remote_description());
Steve Anton8d3444d2017-10-20 15:30:51 -07001894
Steve Anton22da89f2018-01-25 13:58:07 -08001895 if (IsUnifiedPlan()) {
1896 if (options.offer_to_receive_audio != RTCOfferAnswerOptions::kUndefined) {
1897 RTC_LOG(LS_WARNING) << "CreateAnswer: offer_to_receive_audio is not "
1898 "supported with Unified Plan semantics. Use the "
1899 "RtpTransceiver API instead.";
1900 }
1901 if (options.offer_to_receive_video != RTCOfferAnswerOptions::kUndefined) {
1902 RTC_LOG(LS_WARNING) << "CreateAnswer: offer_to_receive_video is not "
1903 "supported with Unified Plan semantics. Use the "
1904 "RtpTransceiver API instead.";
1905 }
1906 }
1907
htaa2a49d92016-03-04 02:51:39 -08001908 cricket::MediaSessionOptions session_options;
zhihuang1c378ed2017-08-17 14:10:50 -07001909 GetOptionsForAnswer(options, &session_options);
htaa2a49d92016-03-04 02:51:39 -08001910
Steve Antond25da372017-11-06 14:50:29 -08001911 webrtc_session_desc_factory_->CreateAnswer(observer, session_options);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001912}
1913
1914void PeerConnection::SetLocalDescription(
1915 SetSessionDescriptionObserver* observer,
Steve Anton80dd7b52018-02-16 17:08:42 -08001916 SessionDescriptionInterface* desc_ptr) {
Peter Boström1a9d6152015-12-08 22:15:17 +01001917 TRACE_EVENT0("webrtc", "PeerConnection::SetLocalDescription");
Steve Anton8a006912017-12-04 15:25:56 -08001918
Steve Anton80dd7b52018-02-16 17:08:42 -08001919 // The SetLocalDescription contract is that we take ownership of the session
1920 // description regardless of the outcome, so wrap it in a unique_ptr right
1921 // away. Ideally, SetLocalDescription's signature will be changed to take the
1922 // description as a unique_ptr argument to formalize this agreement.
1923 std::unique_ptr<SessionDescriptionInterface> desc(desc_ptr);
1924
nisse7ce109a2017-01-31 00:57:56 -08001925 if (!observer) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01001926 RTC_LOG(LS_ERROR) << "SetLocalDescription - observer is NULL.";
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001927 return;
1928 }
Steve Anton8a006912017-12-04 15:25:56 -08001929
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001930 if (!desc) {
Harald Alvestrand5081c0c2018-03-09 15:18:03 +01001931 PostSetSessionDescriptionFailure(
1932 observer,
1933 RTCError(RTCErrorType::INTERNAL_ERROR, "SessionDescription is NULL."));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001934 return;
1935 }
Steve Anton8d3444d2017-10-20 15:30:51 -07001936
Steve Anton80dd7b52018-02-16 17:08:42 -08001937 // If a session error has occurred the PeerConnection is in a possibly
1938 // inconsistent state so fail right away.
1939 if (session_error() != SessionError::kNone) {
1940 std::string error_message = GetSessionErrorMsg();
1941 RTC_LOG(LS_ERROR) << "SetLocalDescription: " << error_message;
Harald Alvestrand5081c0c2018-03-09 15:18:03 +01001942 PostSetSessionDescriptionFailure(
1943 observer,
1944 RTCError(RTCErrorType::INTERNAL_ERROR, std::move(error_message)));
Steve Anton80dd7b52018-02-16 17:08:42 -08001945 return;
1946 }
Steve Anton8d3444d2017-10-20 15:30:51 -07001947
Steve Anton80dd7b52018-02-16 17:08:42 -08001948 RTCError error = ValidateSessionDescription(desc.get(), cricket::CS_LOCAL);
1949 if (!error.ok()) {
1950 std::string error_message = GetSetDescriptionErrorMessage(
1951 cricket::CS_LOCAL, desc->GetType(), error);
1952 RTC_LOG(LS_ERROR) << error_message;
Harald Alvestrand5081c0c2018-03-09 15:18:03 +01001953 PostSetSessionDescriptionFailure(
1954 observer,
1955 RTCError(RTCErrorType::INTERNAL_ERROR, std::move(error_message)));
Steve Anton80dd7b52018-02-16 17:08:42 -08001956 return;
1957 }
1958
1959 // Grab the description type before moving ownership to ApplyLocalDescription,
1960 // which may destroy it before returning.
1961 const SdpType type = desc->GetType();
1962
1963 error = ApplyLocalDescription(std::move(desc));
Steve Anton8a006912017-12-04 15:25:56 -08001964 // |desc| may be destroyed at this point.
1965
1966 if (!error.ok()) {
Steve Anton80dd7b52018-02-16 17:08:42 -08001967 // If ApplyLocalDescription fails, the PeerConnection could be in an
1968 // inconsistent state, so act conservatively here and set the session error
1969 // so that future calls to SetLocalDescription/SetRemoteDescription fail.
1970 SetSessionError(SessionError::kContent, error.message());
1971 std::string error_message =
1972 GetSetDescriptionErrorMessage(cricket::CS_LOCAL, type, error);
1973 RTC_LOG(LS_ERROR) << error_message;
Harald Alvestrand5081c0c2018-03-09 15:18:03 +01001974 PostSetSessionDescriptionFailure(
1975 observer,
1976 RTCError(RTCErrorType::INTERNAL_ERROR, std::move(error_message)));
Steve Anton8d3444d2017-10-20 15:30:51 -07001977 return;
1978 }
Steve Anton8a006912017-12-04 15:25:56 -08001979 RTC_DCHECK(local_description());
1980
1981 PostSetSessionDescriptionSuccess(observer);
1982
Patrik Höglund3dc41062018-04-11 11:13:57 +00001983 // According to JSEP, after setLocalDescription, changing the candidate pool
1984 // size is not allowed, and changing the set of ICE servers will not result
1985 // in new candidates being gathered.
1986 port_allocator_->FreezeCandidatePool();
1987
Steve Anton8a006912017-12-04 15:25:56 -08001988 // MaybeStartGathering needs to be called after posting
1989 // MSG_SET_SESSIONDESCRIPTION_SUCCESS, so that we don't signal any candidates
1990 // before signaling that SetLocalDescription completed.
1991 transport_controller_->MaybeStartGathering();
1992
Steve Antona3a92c22017-12-07 10:27:41 -08001993 if (local_description()->GetType() == SdpType::kAnswer) {
Steve Anton8a006912017-12-04 15:25:56 -08001994 // TODO(deadbeef): We already had to hop to the network thread for
1995 // MaybeStartGathering...
1996 network_thread()->Invoke<void>(
1997 RTC_FROM_HERE, rtc::Bind(&cricket::PortAllocator::DiscardCandidatePool,
1998 port_allocator_.get()));
Steve Anton0ffaaa22018-02-23 10:31:30 -08001999 // Make UMA notes about what was agreed to.
2000 ReportNegotiatedSdpSemantics(*local_description());
Steve Anton8a006912017-12-04 15:25:56 -08002001 }
2002}
2003
2004RTCError PeerConnection::ApplyLocalDescription(
2005 std::unique_ptr<SessionDescriptionInterface> desc) {
2006 RTC_DCHECK_RUN_ON(signaling_thread());
2007 RTC_DCHECK(desc);
2008
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002009 // Update stats here so that we have the most recent stats for tracks and
2010 // streams that might be removed by updating the session description.
tommi@webrtc.org03505bc2014-07-14 20:15:26 +00002011 stats_->UpdateStats(kStatsOutputLevelStandard);
Steve Anton8a006912017-12-04 15:25:56 -08002012
Steve Antondcc3c022017-12-22 16:02:54 -08002013 // Take a reference to the old local description since it's used below to
2014 // compare against the new local description. When setting the new local
2015 // description, grab ownership of the replaced session description in case it
2016 // is the same as |old_local_description|, to keep it alive for the duration
2017 // of the method.
2018 const SessionDescriptionInterface* old_local_description =
2019 local_description();
2020 std::unique_ptr<SessionDescriptionInterface> replaced_local_description;
Zhi Huange830e682018-03-30 10:48:35 -07002021 SdpType type = desc->GetType();
Steve Anton3828c062017-12-06 10:34:51 -08002022 if (type == SdpType::kAnswer) {
Steve Antondcc3c022017-12-22 16:02:54 -08002023 replaced_local_description = pending_local_description_
2024 ? std::move(pending_local_description_)
2025 : std::move(current_local_description_);
Steve Anton8a006912017-12-04 15:25:56 -08002026 current_local_description_ = std::move(desc);
2027 pending_local_description_ = nullptr;
2028 current_remote_description_ = std::move(pending_remote_description_);
2029 } else {
Steve Antondcc3c022017-12-22 16:02:54 -08002030 replaced_local_description = std::move(pending_local_description_);
Steve Anton8a006912017-12-04 15:25:56 -08002031 pending_local_description_ = std::move(desc);
2032 }
2033 // The session description to apply now must be accessed by
2034 // |local_description()|.
Henrik Boströmfdb92012017-11-09 19:55:44 +01002035 RTC_DCHECK(local_description());
deadbeefab9b2d12015-10-14 11:33:11 -07002036
Zhi Huange830e682018-03-30 10:48:35 -07002037 RTCError error = PushdownTransportDescription(cricket::CS_LOCAL, type);
2038 if (!error.ok()) {
2039 return error;
2040 }
2041
Steve Antondcc3c022017-12-22 16:02:54 -08002042 if (IsUnifiedPlan()) {
2043 RTCError error = UpdateTransceiversAndDataChannels(
Seth Hampsonae8a90a2018-02-13 15:33:48 -08002044 cricket::CS_LOCAL, *local_description(), old_local_description,
2045 remote_description());
Steve Anton8a006912017-12-04 15:25:56 -08002046 if (!error.ok()) {
2047 return error;
2048 }
Steve Antondcc3c022017-12-22 16:02:54 -08002049 for (auto transceiver : transceivers_) {
2050 const ContentInfo* content =
2051 FindMediaSectionForTransceiver(transceiver, local_description());
2052 if (!content) {
2053 continue;
2054 }
2055 const MediaContentDescription* media_desc = content->media_description();
2056 if (type == SdpType::kPrAnswer || type == SdpType::kAnswer) {
2057 transceiver->internal()->set_current_direction(media_desc->direction());
2058 }
2059 if (content->rejected && !transceiver->stopped()) {
Steve Anton3d954a62018-04-02 11:27:23 -07002060 RTC_LOG(LS_INFO) << "Stopping transceiver for MID=" << content->name
2061 << " since the media section was rejected.";
Steve Antondcc3c022017-12-22 16:02:54 -08002062 transceiver->Stop();
2063 }
2064 }
2065 } else {
Zhi Huange830e682018-03-30 10:48:35 -07002066 // Media channels will be created only when offer is set. These may use new
2067 // transports just created by PushdownTransportDescription.
Steve Antondcc3c022017-12-22 16:02:54 -08002068 if (type == SdpType::kOffer) {
2069 // TODO(bugs.webrtc.org/4676) - Handle CreateChannel failure, as new local
2070 // description is applied. Restore back to old description.
2071 RTCError error = CreateChannels(*local_description()->description());
2072 if (!error.ok()) {
2073 return error;
2074 }
2075 }
Steve Antondcc3c022017-12-22 16:02:54 -08002076 // Remove unused channels if MediaContentDescription is rejected.
2077 RemoveUnusedChannels(local_description()->description());
2078 }
Steve Anton8a006912017-12-04 15:25:56 -08002079
Zhi Huange830e682018-03-30 10:48:35 -07002080 error = UpdateSessionState(type, cricket::CS_LOCAL,
2081 local_description()->description());
Steve Anton8a006912017-12-04 15:25:56 -08002082 if (!error.ok()) {
2083 return error;
2084 }
Steve Antondcc3c022017-12-22 16:02:54 -08002085
Steve Anton8a006912017-12-04 15:25:56 -08002086 if (remote_description()) {
2087 // Now that we have a local description, we can push down remote candidates.
2088 UseCandidatesInSessionDescription(remote_description());
2089 }
2090
2091 pending_ice_restarts_.clear();
2092 if (session_error() != SessionError::kNone) {
2093 LOG_AND_RETURN_ERROR(RTCErrorType::INTERNAL_ERROR, GetSessionErrorMsg());
2094 }
2095
deadbeefab9b2d12015-10-14 11:33:11 -07002096 // If setting the description decided our SSL role, allocate any necessary
2097 // SCTP sids.
2098 rtc::SSLRole role;
Steve Anton75737c02017-11-06 10:37:17 -08002099 if (data_channel_type() == cricket::DCT_SCTP && GetSctpSslRole(&role)) {
deadbeefab9b2d12015-10-14 11:33:11 -07002100 AllocateSctpSids(role);
2101 }
2102
Steve Antond3679212018-01-17 17:41:02 -08002103 if (IsUnifiedPlan()) {
2104 for (auto transceiver : transceivers_) {
2105 const ContentInfo* content =
2106 FindMediaSectionForTransceiver(transceiver, local_description());
2107 if (!content) {
2108 continue;
2109 }
Steve Anton74255ff2018-01-24 18:32:57 -08002110 const auto& streams = content->media_description()->streams();
2111 if (!content->rejected && !streams.empty()) {
Steve Antond3679212018-01-17 17:41:02 -08002112 transceiver->internal()->sender_internal()->set_stream_ids(
Seth Hampson845e8782018-03-02 11:34:10 -08002113 streams[0].stream_ids());
Steve Antond3679212018-01-17 17:41:02 -08002114 transceiver->internal()->sender_internal()->SetSsrc(
Steve Anton74255ff2018-01-24 18:32:57 -08002115 streams[0].first_ssrc());
Steve Antond3679212018-01-17 17:41:02 -08002116 }
2117 }
2118 } else {
2119 // Plan B semantics.
2120
Steve Antondcc3c022017-12-22 16:02:54 -08002121 // Update state and SSRC of local MediaStreams and DataChannels based on the
2122 // local session description.
2123 const cricket::ContentInfo* audio_content =
2124 GetFirstAudioContent(local_description()->description());
2125 if (audio_content) {
2126 if (audio_content->rejected) {
2127 RemoveSenders(cricket::MEDIA_TYPE_AUDIO);
2128 } else {
2129 const cricket::AudioContentDescription* audio_desc =
2130 audio_content->media_description()->as_audio();
2131 UpdateLocalSenders(audio_desc->streams(), audio_desc->type());
2132 }
deadbeeffaac4972015-11-12 15:33:07 -08002133 }
deadbeefab9b2d12015-10-14 11:33:11 -07002134
Steve Antondcc3c022017-12-22 16:02:54 -08002135 const cricket::ContentInfo* video_content =
2136 GetFirstVideoContent(local_description()->description());
2137 if (video_content) {
2138 if (video_content->rejected) {
2139 RemoveSenders(cricket::MEDIA_TYPE_VIDEO);
2140 } else {
2141 const cricket::VideoContentDescription* video_desc =
2142 video_content->media_description()->as_video();
2143 UpdateLocalSenders(video_desc->streams(), video_desc->type());
2144 }
deadbeeffaac4972015-11-12 15:33:07 -08002145 }
deadbeefab9b2d12015-10-14 11:33:11 -07002146 }
2147
2148 const cricket::ContentInfo* data_content =
Henrik Boströmfdb92012017-11-09 19:55:44 +01002149 GetFirstDataContent(local_description()->description());
deadbeefab9b2d12015-10-14 11:33:11 -07002150 if (data_content) {
2151 const cricket::DataContentDescription* data_desc =
Steve Antonb1c1de12017-12-21 15:14:30 -08002152 data_content->media_description()->as_data();
deadbeefab9b2d12015-10-14 11:33:11 -07002153 if (rtc::starts_with(data_desc->protocol().data(),
2154 cricket::kMediaProtocolRtpPrefix)) {
2155 UpdateLocalRtpDataChannels(data_desc->streams());
2156 }
2157 }
2158
Steve Anton8a006912017-12-04 15:25:56 -08002159 return RTCError::OK();
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002160}
2161
2162void PeerConnection::SetRemoteDescription(
Henrik Boströma4ecf552017-11-23 14:17:07 +00002163 SetSessionDescriptionObserver* observer,
2164 SessionDescriptionInterface* desc) {
Henrik Boström31638672017-11-23 17:48:32 +01002165 SetRemoteDescription(
2166 std::unique_ptr<SessionDescriptionInterface>(desc),
2167 rtc::scoped_refptr<SetRemoteDescriptionObserverInterface>(
2168 new SetRemoteDescriptionObserverAdapter(this, observer)));
2169}
2170
2171void PeerConnection::SetRemoteDescription(
2172 std::unique_ptr<SessionDescriptionInterface> desc,
2173 rtc::scoped_refptr<SetRemoteDescriptionObserverInterface> observer) {
Peter Boström1a9d6152015-12-08 22:15:17 +01002174 TRACE_EVENT0("webrtc", "PeerConnection::SetRemoteDescription");
Steve Anton8a006912017-12-04 15:25:56 -08002175
nisse7ce109a2017-01-31 00:57:56 -08002176 if (!observer) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01002177 RTC_LOG(LS_ERROR) << "SetRemoteDescription - observer is NULL.";
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002178 return;
2179 }
Steve Anton8a006912017-12-04 15:25:56 -08002180
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002181 if (!desc) {
Henrik Boström31638672017-11-23 17:48:32 +01002182 observer->OnSetRemoteDescriptionComplete(RTCError(
Steve Anton8a006912017-12-04 15:25:56 -08002183 RTCErrorType::INVALID_PARAMETER, "SessionDescription is NULL."));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002184 return;
2185 }
Steve Anton8d3444d2017-10-20 15:30:51 -07002186
Steve Anton80dd7b52018-02-16 17:08:42 -08002187 // If a session error has occurred the PeerConnection is in a possibly
2188 // inconsistent state so fail right away.
2189 if (session_error() != SessionError::kNone) {
2190 std::string error_message = GetSessionErrorMsg();
2191 RTC_LOG(LS_ERROR) << "SetRemoteDescription: " << error_message;
2192 observer->OnSetRemoteDescriptionComplete(
2193 RTCError(RTCErrorType::INTERNAL_ERROR, std::move(error_message)));
2194 return;
2195 }
Steve Anton71439a62018-02-15 11:53:06 -08002196
Steve Antonba42e992018-04-09 14:10:01 -07002197 if (desc->GetType() == SdpType::kOffer) {
2198 // Report to UMA the format of the received offer.
2199 ReportSdpFormatReceived(*desc);
2200 }
2201
Steve Anton80dd7b52018-02-16 17:08:42 -08002202 RTCError error = ValidateSessionDescription(desc.get(), cricket::CS_REMOTE);
Steve Anton71439a62018-02-15 11:53:06 -08002203 if (!error.ok()) {
Steve Anton80dd7b52018-02-16 17:08:42 -08002204 std::string error_message = GetSetDescriptionErrorMessage(
2205 cricket::CS_REMOTE, desc->GetType(), error);
2206 RTC_LOG(LS_ERROR) << error_message;
Steve Anton71439a62018-02-15 11:53:06 -08002207 observer->OnSetRemoteDescriptionComplete(
2208 RTCError(error.type(), std::move(error_message)));
2209 return;
2210 }
Steve Anton71439a62018-02-15 11:53:06 -08002211
Steve Anton80dd7b52018-02-16 17:08:42 -08002212 // Grab the description type before moving ownership to
2213 // ApplyRemoteDescription, which may destroy it before returning.
2214 const SdpType type = desc->GetType();
2215
2216 error = ApplyRemoteDescription(std::move(desc));
2217 // |desc| may be destroyed at this point.
2218
2219 if (!error.ok()) {
2220 // If ApplyRemoteDescription fails, the PeerConnection could be in an
2221 // inconsistent state, so act conservatively here and set the session error
2222 // so that future calls to SetLocalDescription/SetRemoteDescription fail.
2223 SetSessionError(SessionError::kContent, error.message());
2224 std::string error_message =
2225 GetSetDescriptionErrorMessage(cricket::CS_REMOTE, type, error);
2226 RTC_LOG(LS_ERROR) << error_message;
2227 observer->OnSetRemoteDescriptionComplete(
2228 RTCError(error.type(), std::move(error_message)));
2229 return;
2230 }
2231 RTC_DCHECK(remote_description());
2232
2233 if (type == SdpType::kAnswer) {
Steve Anton8a006912017-12-04 15:25:56 -08002234 // TODO(deadbeef): We already had to hop to the network thread for
2235 // MaybeStartGathering...
2236 network_thread()->Invoke<void>(
2237 RTC_FROM_HERE, rtc::Bind(&cricket::PortAllocator::DiscardCandidatePool,
2238 port_allocator_.get()));
Harald Alvestrand5dbb5862018-02-13 23:48:00 +01002239 // Make UMA notes about what was agreed to.
Steve Anton0ffaaa22018-02-23 10:31:30 -08002240 ReportNegotiatedSdpSemantics(*remote_description());
Steve Anton8a006912017-12-04 15:25:56 -08002241 }
2242
2243 observer->OnSetRemoteDescriptionComplete(RTCError::OK());
2244}
2245
2246RTCError PeerConnection::ApplyRemoteDescription(
2247 std::unique_ptr<SessionDescriptionInterface> desc) {
2248 RTC_DCHECK_RUN_ON(signaling_thread());
2249 RTC_DCHECK(desc);
2250
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002251 // Update stats here so that we have the most recent stats for tracks and
2252 // streams that might be removed by updating the session description.
tommi@webrtc.org03505bc2014-07-14 20:15:26 +00002253 stats_->UpdateStats(kStatsOutputLevelStandard);
Steve Anton8a006912017-12-04 15:25:56 -08002254
Steve Antondcc3c022017-12-22 16:02:54 -08002255 // Take a reference to the old remote description since it's used below to
2256 // compare against the new remote description. When setting the new remote
2257 // description, grab ownership of the replaced session description in case it
2258 // is the same as |old_remote_description|, to keep it alive for the duration
2259 // of the method.
Steve Anton8a006912017-12-04 15:25:56 -08002260 const SessionDescriptionInterface* old_remote_description =
2261 remote_description();
Steve Anton8a006912017-12-04 15:25:56 -08002262 std::unique_ptr<SessionDescriptionInterface> replaced_remote_description;
Steve Anton3828c062017-12-06 10:34:51 -08002263 SdpType type = desc->GetType();
2264 if (type == SdpType::kAnswer) {
Steve Anton8a006912017-12-04 15:25:56 -08002265 replaced_remote_description = pending_remote_description_
2266 ? std::move(pending_remote_description_)
2267 : std::move(current_remote_description_);
2268 current_remote_description_ = std::move(desc);
2269 pending_remote_description_ = nullptr;
2270 current_local_description_ = std::move(pending_local_description_);
2271 } else {
2272 replaced_remote_description = std::move(pending_remote_description_);
2273 pending_remote_description_ = std::move(desc);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002274 }
Steve Anton8a006912017-12-04 15:25:56 -08002275 // The session description to apply now must be accessed by
2276 // |remote_description()|.
Henrik Boströmfdb92012017-11-09 19:55:44 +01002277 RTC_DCHECK(remote_description());
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002278
Zhi Huange830e682018-03-30 10:48:35 -07002279 RTCError error = PushdownTransportDescription(cricket::CS_REMOTE, type);
2280 if (!error.ok()) {
2281 return error;
2282 }
Steve Anton8a006912017-12-04 15:25:56 -08002283 // Transport and Media channels will be created only when offer is set.
Steve Antondcc3c022017-12-22 16:02:54 -08002284 if (IsUnifiedPlan()) {
2285 RTCError error = UpdateTransceiversAndDataChannels(
Seth Hampsonae8a90a2018-02-13 15:33:48 -08002286 cricket::CS_REMOTE, *remote_description(), local_description(),
2287 old_remote_description);
Steve Anton8a006912017-12-04 15:25:56 -08002288 if (!error.ok()) {
2289 return error;
2290 }
Steve Antondcc3c022017-12-22 16:02:54 -08002291 } else {
Zhi Huange830e682018-03-30 10:48:35 -07002292 // Media channels will be created only when offer is set. These may use new
2293 // transports just created by PushdownTransportDescription.
Steve Antondcc3c022017-12-22 16:02:54 -08002294 if (type == SdpType::kOffer) {
Zhi Huange830e682018-03-30 10:48:35 -07002295 // TODO(mallinath) - Handle CreateChannel failure, as new local
Steve Antondcc3c022017-12-22 16:02:54 -08002296 // description is applied. Restore back to old description.
2297 RTCError error = CreateChannels(*remote_description()->description());
2298 if (!error.ok()) {
2299 return error;
2300 }
2301 }
Steve Antondcc3c022017-12-22 16:02:54 -08002302 // Remove unused channels if MediaContentDescription is rejected.
2303 RemoveUnusedChannels(remote_description()->description());
2304 }
Steve Anton8a006912017-12-04 15:25:56 -08002305
Zhi Huange830e682018-03-30 10:48:35 -07002306 // NOTE: Candidates allocation will be initiated only when
2307 // SetLocalDescription is called.
2308 error = UpdateSessionState(type, cricket::CS_REMOTE,
2309 remote_description()->description());
Steve Anton8a006912017-12-04 15:25:56 -08002310 if (!error.ok()) {
2311 return error;
2312 }
2313
2314 if (local_description() &&
2315 !UseCandidatesInSessionDescription(remote_description())) {
2316 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, kInvalidCandidates);
2317 }
2318
2319 if (old_remote_description) {
2320 for (const cricket::ContentInfo& content :
2321 old_remote_description->description()->contents()) {
2322 // Check if this new SessionDescription contains new ICE ufrag and
2323 // password that indicates the remote peer requests an ICE restart.
2324 // TODO(deadbeef): When we start storing both the current and pending
2325 // remote description, this should reset pending_ice_restarts and compare
2326 // against the current description.
2327 if (CheckForRemoteIceRestart(old_remote_description, remote_description(),
2328 content.name)) {
Steve Anton3828c062017-12-06 10:34:51 -08002329 if (type == SdpType::kOffer) {
Steve Anton8a006912017-12-04 15:25:56 -08002330 pending_ice_restarts_.insert(content.name);
2331 }
2332 } else {
2333 // We retain all received candidates only if ICE is not restarted.
2334 // When ICE is restarted, all previous candidates belong to an old
2335 // generation and should not be kept.
2336 // TODO(deadbeef): This goes against the W3C spec which says the remote
2337 // description should only contain candidates from the last set remote
2338 // description plus any candidates added since then. We should remove
2339 // this once we're sure it won't break anything.
2340 WebRtcSessionDescriptionFactory::CopyCandidatesFromSessionDescription(
2341 old_remote_description, content.name, mutable_remote_description());
2342 }
2343 }
2344 }
2345
2346 if (session_error() != SessionError::kNone) {
2347 LOG_AND_RETURN_ERROR(RTCErrorType::INTERNAL_ERROR, GetSessionErrorMsg());
2348 }
2349
2350 // Set the the ICE connection state to connecting since the connection may
2351 // become writable with peer reflexive candidates before any remote candidate
2352 // is signaled.
2353 // TODO(pthatcher): This is a short-term solution for crbug/446908. A real fix
2354 // is to have a new signal the indicates a change in checking state from the
2355 // transport and expose a new checking() member from transport that can be
2356 // read to determine the current checking state. The existing SignalConnecting
2357 // actually means "gathering candidates", so cannot be be used here.
Steve Antona3a92c22017-12-07 10:27:41 -08002358 if (remote_description()->GetType() != SdpType::kOffer &&
Steve Anton8a006912017-12-04 15:25:56 -08002359 ice_connection_state() == PeerConnectionInterface::kIceConnectionNew) {
2360 SetIceConnectionState(PeerConnectionInterface::kIceConnectionChecking);
2361 }
2362
deadbeefab9b2d12015-10-14 11:33:11 -07002363 // If setting the description decided our SSL role, allocate any necessary
2364 // SCTP sids.
2365 rtc::SSLRole role;
Steve Anton75737c02017-11-06 10:37:17 -08002366 if (data_channel_type() == cricket::DCT_SCTP && GetSctpSslRole(&role)) {
deadbeefab9b2d12015-10-14 11:33:11 -07002367 AllocateSctpSids(role);
2368 }
2369
Steve Antondcc3c022017-12-22 16:02:54 -08002370 if (IsUnifiedPlan()) {
Steve Anton8b815cd2018-02-16 16:14:42 -08002371 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>>
2372 receiving_transceivers;
Steve Antonc49bcd92018-02-14 14:28:13 -08002373 std::vector<rtc::scoped_refptr<MediaStreamInterface>> added_streams;
Steve Antondcc3c022017-12-22 16:02:54 -08002374 for (auto transceiver : transceivers_) {
2375 const ContentInfo* content =
2376 FindMediaSectionForTransceiver(transceiver, remote_description());
2377 if (!content) {
2378 continue;
2379 }
2380 const MediaContentDescription* media_desc = content->media_description();
2381 RtpTransceiverDirection local_direction =
2382 RtpTransceiverDirectionReversed(media_desc->direction());
2383 // From the WebRTC specification, steps 2.2.8.5/6 of section 4.4.1.6 "Set
2384 // the RTCSessionDescription: If direction is sendrecv or recvonly, and
2385 // transceiver's current direction is neither sendrecv nor recvonly,
2386 // process the addition of a remote track for the media description.
Seth Hampson5b4f0752018-04-02 16:31:36 -07002387 std::vector<std::string> stream_ids;
Seth Hampson2f0d7022018-02-20 11:54:42 -08002388 if (!media_desc->streams().empty()) {
Seth Hampson5897a6e2018-04-03 11:16:33 -07002389 // The remote description has signaled the stream IDs.
2390 stream_ids = media_desc->streams()[0].stream_ids();
Seth Hampson2f0d7022018-02-20 11:54:42 -08002391 }
Steve Antondcc3c022017-12-22 16:02:54 -08002392 if (RtpTransceiverDirectionHasRecv(local_direction) &&
2393 (!transceiver->current_direction() ||
2394 !RtpTransceiverDirectionHasRecv(
Seth Hampson2f0d7022018-02-20 11:54:42 -08002395 *transceiver->current_direction()))) {
Steve Anton3d954a62018-04-02 11:27:23 -07002396 RTC_LOG(LS_INFO) << "Processing the addition of a new track for MID="
Seth Hampson5b4f0752018-04-02 16:31:36 -07002397 << content->name << " (added to "
2398 << GetStreamIdsString(stream_ids) << ").";
2399
2400 std::vector<rtc::scoped_refptr<MediaStreamInterface>> media_streams;
2401 for (const std::string& stream_id : stream_ids) {
2402 rtc::scoped_refptr<MediaStreamInterface> stream =
2403 remote_streams_->find(stream_id);
2404 if (!stream) {
2405 stream = MediaStreamProxy::Create(rtc::Thread::Current(),
2406 MediaStream::Create(stream_id));
2407 remote_streams_->AddStream(stream);
2408 added_streams.push_back(stream);
2409 }
2410 media_streams.push_back(stream);
Steve Antonef65ef12018-01-10 17:15:20 -08002411 }
Seth Hampson5b4f0752018-04-02 16:31:36 -07002412 transceiver->internal()->receiver_internal()->SetStreams(media_streams);
Steve Anton8b815cd2018-02-16 16:14:42 -08002413 receiving_transceivers.push_back(transceiver);
Steve Antondcc3c022017-12-22 16:02:54 -08002414 }
2415 // If direction is sendonly or inactive, and transceiver's current
2416 // direction is neither sendonly nor inactive, process the removal of a
2417 // remote track for the media description.
2418 if (!RtpTransceiverDirectionHasRecv(local_direction) &&
Steve Antonef65ef12018-01-10 17:15:20 -08002419 (transceiver->current_direction() &&
Steve Antondcc3c022017-12-22 16:02:54 -08002420 RtpTransceiverDirectionHasRecv(*transceiver->current_direction()))) {
Steve Anton3d954a62018-04-02 11:27:23 -07002421 RTC_LOG(LS_INFO) << "Processing the removal of a track for MID="
2422 << content->name;
Steve Antonef65ef12018-01-10 17:15:20 -08002423 transceiver->internal()->receiver_internal()->SetStreams({});
Steve Antondcc3c022017-12-22 16:02:54 -08002424 }
2425 if (type == SdpType::kPrAnswer || type == SdpType::kAnswer) {
2426 transceiver->internal()->set_current_direction(local_direction);
2427 }
2428 if (content->rejected && !transceiver->stopped()) {
Steve Anton3d954a62018-04-02 11:27:23 -07002429 RTC_LOG(LS_INFO) << "Stopping transceiver for MID=" << content->name
2430 << " since the media section was rejected.";
Steve Antondcc3c022017-12-22 16:02:54 -08002431 transceiver->Stop();
2432 }
Seth Hampson2f0d7022018-02-20 11:54:42 -08002433 if (!content->rejected &&
2434 RtpTransceiverDirectionHasRecv(local_direction)) {
2435 // Set ssrc to 0 in the case of an unsignalled ssrc.
2436 uint32_t ssrc = 0;
Seth Hampson5897a6e2018-04-03 11:16:33 -07002437 if (!media_desc->streams().empty() &&
2438 media_desc->streams()[0].has_ssrcs()) {
Seth Hampson2f0d7022018-02-20 11:54:42 -08002439 ssrc = media_desc->streams()[0].first_ssrc();
2440 }
2441 transceiver->internal()->receiver_internal()->SetupMediaChannel(ssrc);
Steve Antond3679212018-01-17 17:41:02 -08002442 }
Steve Antondcc3c022017-12-22 16:02:54 -08002443 }
Steve Antonc49bcd92018-02-14 14:28:13 -08002444 // Once all processing has finished, fire off callbacks.
Steve Anton8b815cd2018-02-16 16:14:42 -08002445 for (auto transceiver : receiving_transceivers) {
Steve Anton6e221372018-02-20 12:59:16 -08002446 stats_->AddTrack(transceiver->receiver()->track());
Steve Anton8b815cd2018-02-16 16:14:42 -08002447 observer_->OnTrack(transceiver);
2448 observer_->OnAddTrack(transceiver->receiver(),
2449 transceiver->receiver()->streams());
Steve Antonef65ef12018-01-10 17:15:20 -08002450 }
Steve Antonc49bcd92018-02-14 14:28:13 -08002451 for (auto stream : added_streams) {
2452 observer_->OnAddStream(stream);
2453 }
Steve Antondcc3c022017-12-22 16:02:54 -08002454 }
2455
Henrik Boströmfdb92012017-11-09 19:55:44 +01002456 const cricket::ContentInfo* audio_content =
2457 GetFirstAudioContent(remote_description()->description());
2458 const cricket::ContentInfo* video_content =
2459 GetFirstVideoContent(remote_description()->description());
deadbeefbda7e0b2015-12-08 17:13:40 -08002460 const cricket::AudioContentDescription* audio_desc =
Henrik Boströmfdb92012017-11-09 19:55:44 +01002461 GetFirstAudioContentDescription(remote_description()->description());
deadbeefbda7e0b2015-12-08 17:13:40 -08002462 const cricket::VideoContentDescription* video_desc =
Henrik Boströmfdb92012017-11-09 19:55:44 +01002463 GetFirstVideoContentDescription(remote_description()->description());
deadbeefbda7e0b2015-12-08 17:13:40 -08002464 const cricket::DataContentDescription* data_desc =
Henrik Boströmfdb92012017-11-09 19:55:44 +01002465 GetFirstDataContentDescription(remote_description()->description());
deadbeefbda7e0b2015-12-08 17:13:40 -08002466
2467 // Check if the descriptions include streams, just in case the peer supports
2468 // MSID, but doesn't indicate so with "a=msid-semantic".
Henrik Boströmfdb92012017-11-09 19:55:44 +01002469 if (remote_description()->description()->msid_supported() ||
deadbeefbda7e0b2015-12-08 17:13:40 -08002470 (audio_desc && !audio_desc->streams().empty()) ||
2471 (video_desc && !video_desc->streams().empty())) {
2472 remote_peer_supports_msid_ = true;
2473 }
deadbeefab9b2d12015-10-14 11:33:11 -07002474
2475 // We wait to signal new streams until we finish processing the description,
2476 // since only at that point will new streams have all their tracks.
2477 rtc::scoped_refptr<StreamCollection> new_streams(StreamCollection::Create());
2478
Steve Antondcc3c022017-12-22 16:02:54 -08002479 if (!IsUnifiedPlan()) {
2480 // TODO(steveanton): When removing RTP senders/receivers in response to a
2481 // rejected media section, there is some cleanup logic that expects the
2482 // voice/ video channel to still be set. But in this method the voice/video
2483 // channel would have been destroyed by the SetRemoteDescription caller
2484 // above so the cleanup that relies on them fails to run. The RemoveSenders
2485 // calls should be moved to right before the DestroyChannel calls to fix
2486 // this.
Steve Anton8d3444d2017-10-20 15:30:51 -07002487
Steve Antondcc3c022017-12-22 16:02:54 -08002488 // Find all audio rtp streams and create corresponding remote AudioTracks
2489 // and MediaStreams.
2490 if (audio_content) {
2491 if (audio_content->rejected) {
2492 RemoveSenders(cricket::MEDIA_TYPE_AUDIO);
2493 } else {
2494 bool default_audio_track_needed =
2495 !remote_peer_supports_msid_ &&
2496 RtpTransceiverDirectionHasSend(audio_desc->direction());
2497 UpdateRemoteSendersList(GetActiveStreams(audio_desc),
2498 default_audio_track_needed, audio_desc->type(),
2499 new_streams);
2500 }
deadbeeffaac4972015-11-12 15:33:07 -08002501 }
deadbeefab9b2d12015-10-14 11:33:11 -07002502
Steve Antondcc3c022017-12-22 16:02:54 -08002503 // Find all video rtp streams and create corresponding remote VideoTracks
2504 // and MediaStreams.
2505 if (video_content) {
2506 if (video_content->rejected) {
2507 RemoveSenders(cricket::MEDIA_TYPE_VIDEO);
2508 } else {
2509 bool default_video_track_needed =
2510 !remote_peer_supports_msid_ &&
2511 RtpTransceiverDirectionHasSend(video_desc->direction());
2512 UpdateRemoteSendersList(GetActiveStreams(video_desc),
2513 default_video_track_needed, video_desc->type(),
2514 new_streams);
2515 }
deadbeeffaac4972015-11-12 15:33:07 -08002516 }
deadbeefab9b2d12015-10-14 11:33:11 -07002517
Steve Antondcc3c022017-12-22 16:02:54 -08002518 // Update the DataChannels with the information from the remote peer.
2519 if (data_desc) {
2520 if (rtc::starts_with(data_desc->protocol().data(),
2521 cricket::kMediaProtocolRtpPrefix)) {
2522 UpdateRemoteRtpDataChannels(GetActiveStreams(data_desc));
2523 }
deadbeefab9b2d12015-10-14 11:33:11 -07002524 }
deadbeefab9b2d12015-10-14 11:33:11 -07002525
Steve Antondcc3c022017-12-22 16:02:54 -08002526 // Iterate new_streams and notify the observer about new MediaStreams.
2527 for (size_t i = 0; i < new_streams->count(); ++i) {
2528 MediaStreamInterface* new_stream = new_streams->at(i);
2529 stats_->AddStream(new_stream);
2530 observer_->OnAddStream(
2531 rtc::scoped_refptr<MediaStreamInterface>(new_stream));
2532 }
deadbeefab9b2d12015-10-14 11:33:11 -07002533
Steve Antondcc3c022017-12-22 16:02:54 -08002534 UpdateEndedRemoteMediaStreams();
2535 }
deadbeefab9b2d12015-10-14 11:33:11 -07002536
Steve Anton8a006912017-12-04 15:25:56 -08002537 return RTCError::OK();
deadbeeffc648b62015-10-13 16:42:33 -07002538}
2539
Steve Antondcc3c022017-12-22 16:02:54 -08002540RTCError PeerConnection::UpdateTransceiversAndDataChannels(
2541 cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -08002542 const SessionDescriptionInterface& new_session,
2543 const SessionDescriptionInterface* old_local_description,
2544 const SessionDescriptionInterface* old_remote_description) {
Steve Antondcc3c022017-12-22 16:02:54 -08002545 RTC_DCHECK(IsUnifiedPlan());
2546
Steve Anton7464fca2018-01-19 11:10:37 -08002547 const cricket::ContentGroup* bundle_group = nullptr;
2548 if (new_session.GetType() == SdpType::kOffer) {
2549 auto bundle_group_or_error =
2550 GetEarlyBundleGroup(*new_session.description());
2551 if (!bundle_group_or_error.ok()) {
2552 return bundle_group_or_error.MoveError();
2553 }
2554 bundle_group = bundle_group_or_error.MoveValue();
Steve Antondcc3c022017-12-22 16:02:54 -08002555 }
Steve Antondcc3c022017-12-22 16:02:54 -08002556
Steve Antondcc3c022017-12-22 16:02:54 -08002557 const ContentInfos& new_contents = new_session.description()->contents();
Steve Antondcc3c022017-12-22 16:02:54 -08002558 for (size_t i = 0; i < new_contents.size(); ++i) {
2559 const cricket::ContentInfo& new_content = new_contents[i];
Steve Antondcc3c022017-12-22 16:02:54 -08002560 cricket::MediaType media_type = new_content.media_description()->type();
2561 seen_mids_.insert(new_content.name);
2562 if (media_type == cricket::MEDIA_TYPE_AUDIO ||
2563 media_type == cricket::MEDIA_TYPE_VIDEO) {
Seth Hampsonae8a90a2018-02-13 15:33:48 -08002564 const cricket::ContentInfo* old_local_content = nullptr;
2565 if (old_local_description &&
2566 i < old_local_description->description()->contents().size()) {
2567 old_local_content =
2568 &old_local_description->description()->contents()[i];
2569 }
2570 const cricket::ContentInfo* old_remote_content = nullptr;
2571 if (old_remote_description &&
2572 i < old_remote_description->description()->contents().size()) {
2573 old_remote_content =
2574 &old_remote_description->description()->contents()[i];
2575 }
Steve Antondcc3c022017-12-22 16:02:54 -08002576 auto transceiver_or_error =
Seth Hampsonae8a90a2018-02-13 15:33:48 -08002577 AssociateTransceiver(source, new_session.GetType(), i, new_content,
2578 old_local_content, old_remote_content);
Steve Antondcc3c022017-12-22 16:02:54 -08002579 if (!transceiver_or_error.ok()) {
2580 return transceiver_or_error.MoveError();
2581 }
2582 auto transceiver = transceiver_or_error.MoveValue();
Steve Antondcc3c022017-12-22 16:02:54 -08002583 RTCError error =
2584 UpdateTransceiverChannel(transceiver, new_content, bundle_group);
2585 if (!error.ok()) {
2586 return error;
2587 }
2588 } else if (media_type == cricket::MEDIA_TYPE_DATA) {
Steve Antonfa2260d2017-12-28 16:38:23 -08002589 if (GetDataMid() && new_content.name != *GetDataMid()) {
2590 // Ignore all but the first data section.
Steve Anton3d954a62018-04-02 11:27:23 -07002591 RTC_LOG(LS_INFO) << "Ignoring data media section with MID="
2592 << new_content.name;
Steve Antonfa2260d2017-12-28 16:38:23 -08002593 continue;
2594 }
2595 RTCError error = UpdateDataChannel(source, new_content, bundle_group);
2596 if (!error.ok()) {
2597 return error;
2598 }
Steve Antondcc3c022017-12-22 16:02:54 -08002599 } else {
2600 LOG_AND_RETURN_ERROR(RTCErrorType::INTERNAL_ERROR,
2601 "Unknown section type.");
2602 }
2603 }
2604
2605 return RTCError::OK();
2606}
2607
2608RTCError PeerConnection::UpdateTransceiverChannel(
2609 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
2610 transceiver,
2611 const cricket::ContentInfo& content,
2612 const cricket::ContentGroup* bundle_group) {
2613 RTC_DCHECK(IsUnifiedPlan());
2614 RTC_DCHECK(transceiver);
2615 cricket::BaseChannel* channel = transceiver->internal()->channel();
2616 if (content.rejected) {
2617 if (channel) {
2618 transceiver->internal()->SetChannel(nullptr);
2619 DestroyBaseChannel(channel);
2620 }
2621 } else {
2622 if (!channel) {
Steve Anton69470252018-02-09 11:43:08 -08002623 if (transceiver->media_type() == cricket::MEDIA_TYPE_AUDIO) {
Zhi Huange830e682018-03-30 10:48:35 -07002624 channel = CreateVoiceChannel(content.name);
Steve Antondcc3c022017-12-22 16:02:54 -08002625 } else {
Steve Anton69470252018-02-09 11:43:08 -08002626 RTC_DCHECK_EQ(cricket::MEDIA_TYPE_VIDEO, transceiver->media_type());
Zhi Huange830e682018-03-30 10:48:35 -07002627 channel = CreateVideoChannel(content.name);
Steve Antondcc3c022017-12-22 16:02:54 -08002628 }
2629 if (!channel) {
2630 LOG_AND_RETURN_ERROR(
2631 RTCErrorType::INTERNAL_ERROR,
2632 "Failed to create channel for mid=" + content.name);
2633 }
2634 transceiver->internal()->SetChannel(channel);
2635 }
2636 }
2637 return RTCError::OK();
2638}
2639
Steve Antonfa2260d2017-12-28 16:38:23 -08002640RTCError PeerConnection::UpdateDataChannel(
2641 cricket::ContentSource source,
2642 const cricket::ContentInfo& content,
2643 const cricket::ContentGroup* bundle_group) {
2644 if (data_channel_type_ == cricket::DCT_NONE) {
Steve Antondbf9d032018-01-19 15:23:40 -08002645 // If data channels are disabled, ignore this media section. CreateAnswer
2646 // will take care of rejecting it.
2647 return RTCError::OK();
Steve Antonfa2260d2017-12-28 16:38:23 -08002648 }
2649 if (content.rejected) {
2650 DestroyDataChannel();
2651 } else {
2652 if (!rtp_data_channel_ && !sctp_transport_) {
Zhi Huange830e682018-03-30 10:48:35 -07002653 if (!CreateDataChannel(content.name)) {
Steve Antonfa2260d2017-12-28 16:38:23 -08002654 LOG_AND_RETURN_ERROR(RTCErrorType::INTERNAL_ERROR,
2655 "Failed to create data channel.");
2656 }
2657 }
2658 if (source == cricket::CS_REMOTE) {
2659 const MediaContentDescription* data_desc = content.media_description();
2660 if (data_desc && cricket::IsRtpProtocol(data_desc->protocol())) {
2661 UpdateRemoteRtpDataChannels(GetActiveStreams(data_desc));
2662 }
2663 }
2664 }
2665 return RTCError::OK();
2666}
2667
Steve Antondcc3c022017-12-22 16:02:54 -08002668RTCErrorOr<rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
2669PeerConnection::AssociateTransceiver(cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -08002670 SdpType type,
Steve Antondcc3c022017-12-22 16:02:54 -08002671 size_t mline_index,
2672 const ContentInfo& content,
Seth Hampsonae8a90a2018-02-13 15:33:48 -08002673 const ContentInfo* old_local_content,
2674 const ContentInfo* old_remote_content) {
Steve Antondcc3c022017-12-22 16:02:54 -08002675 RTC_DCHECK(IsUnifiedPlan());
Seth Hampsonae8a90a2018-02-13 15:33:48 -08002676 // If this is an offer then the m= section might be recycled. If the m=
2677 // section is being recycled (defined as: rejected in the current local or
2678 // remote description and not rejected in new description), dissociate the
2679 // currently associated RtpTransceiver by setting its mid property to null,
2680 // and discard the mapping between the transceiver and its m= section index.
2681 if (IsMediaSectionBeingRecycled(type, content, old_local_content,
2682 old_remote_content)) {
2683 // We want to dissociate the transceiver that has the rejected mid.
2684 const std::string& old_mid =
2685 (old_local_content && old_local_content->rejected)
2686 ? old_local_content->name
2687 : old_remote_content->name;
2688 auto old_transceiver = GetAssociatedTransceiver(old_mid);
Steve Antondcc3c022017-12-22 16:02:54 -08002689 if (old_transceiver) {
Steve Anton3d954a62018-04-02 11:27:23 -07002690 RTC_LOG(LS_INFO) << "Dissociating transceiver for MID=" << old_mid
2691 << " since the media section is being recycled.";
Steve Antondcc3c022017-12-22 16:02:54 -08002692 old_transceiver->internal()->set_mid(rtc::nullopt);
2693 old_transceiver->internal()->set_mline_index(rtc::nullopt);
2694 }
2695 }
2696 const MediaContentDescription* media_desc = content.media_description();
2697 auto transceiver = GetAssociatedTransceiver(content.name);
2698 if (source == cricket::CS_LOCAL) {
2699 // Find the RtpTransceiver that corresponds to this m= section, using the
2700 // mapping between transceivers and m= section indices established when
2701 // creating the offer.
2702 if (!transceiver) {
2703 transceiver = GetTransceiverByMLineIndex(mline_index);
2704 }
2705 if (!transceiver) {
2706 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
2707 "Unknown transceiver");
2708 }
2709 } else {
2710 RTC_DCHECK_EQ(source, cricket::CS_REMOTE);
2711 // If the m= section is sendrecv or recvonly, and there are RtpTransceivers
2712 // of the same type...
2713 if (!transceiver &&
2714 RtpTransceiverDirectionHasRecv(media_desc->direction())) {
2715 transceiver = FindAvailableTransceiverToReceive(media_desc->type());
2716 }
2717 // If no RtpTransceiver was found in the previous step, create one with a
2718 // recvonly direction.
2719 if (!transceiver) {
Steve Anton3d954a62018-04-02 11:27:23 -07002720 RTC_LOG(LS_INFO) << "Adding "
2721 << cricket::MediaTypeToString(media_desc->type())
2722 << " transceiver for MID=" << content.name
2723 << " at i=" << mline_index
2724 << " in response to the remote description.";
Steve Anton02ee47c2018-01-10 16:26:06 -08002725 auto sender =
2726 CreateSender(media_desc->type(), nullptr, {rtc::CreateRandomUuid()});
Steve Anton5f94aa22018-02-01 10:58:30 -08002727 std::string receiver_id;
2728 if (!media_desc->streams().empty()) {
2729 receiver_id = media_desc->streams()[0].id;
2730 } else {
2731 receiver_id = rtc::CreateRandomUuid();
2732 }
2733 auto receiver = CreateReceiver(media_desc->type(), receiver_id);
Steve Anton02ee47c2018-01-10 16:26:06 -08002734 transceiver = CreateAndAddTransceiver(sender, receiver);
Steve Antondcc3c022017-12-22 16:02:54 -08002735 transceiver->internal()->set_direction(
2736 RtpTransceiverDirection::kRecvOnly);
2737 }
2738 }
2739 RTC_DCHECK(transceiver);
Steve Anton69470252018-02-09 11:43:08 -08002740 if (transceiver->media_type() != media_desc->type()) {
Steve Antondcc3c022017-12-22 16:02:54 -08002741 LOG_AND_RETURN_ERROR(
2742 RTCErrorType::INVALID_PARAMETER,
2743 "Transceiver type does not match media description type.");
2744 }
2745 // Associate the found or created RtpTransceiver with the m= section by
2746 // setting the value of the RtpTransceiver's mid property to the MID of the m=
2747 // section, and establish a mapping between the transceiver and the index of
2748 // the m= section.
2749 transceiver->internal()->set_mid(content.name);
2750 transceiver->internal()->set_mline_index(mline_index);
2751 return std::move(transceiver);
2752}
2753
2754rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
2755PeerConnection::GetAssociatedTransceiver(const std::string& mid) const {
2756 RTC_DCHECK(IsUnifiedPlan());
2757 for (auto transceiver : transceivers_) {
2758 if (transceiver->mid() == mid) {
2759 return transceiver;
2760 }
2761 }
2762 return nullptr;
2763}
2764
2765rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
2766PeerConnection::GetTransceiverByMLineIndex(size_t mline_index) const {
2767 RTC_DCHECK(IsUnifiedPlan());
2768 for (auto transceiver : transceivers_) {
2769 if (transceiver->internal()->mline_index() == mline_index) {
2770 return transceiver;
2771 }
2772 }
2773 return nullptr;
2774}
2775
2776rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
2777PeerConnection::FindAvailableTransceiverToReceive(
2778 cricket::MediaType media_type) const {
2779 RTC_DCHECK(IsUnifiedPlan());
2780 // From JSEP section 5.10 (Applying a Remote Description):
2781 // If the m= section is sendrecv or recvonly, and there are RtpTransceivers of
2782 // the same type that were added to the PeerConnection by addTrack and are not
2783 // associated with any m= section and are not stopped, find the first such
2784 // RtpTransceiver.
2785 for (auto transceiver : transceivers_) {
Steve Anton69470252018-02-09 11:43:08 -08002786 if (transceiver->media_type() == media_type &&
Steve Antondcc3c022017-12-22 16:02:54 -08002787 transceiver->internal()->created_by_addtrack() && !transceiver->mid() &&
2788 !transceiver->stopped()) {
2789 return transceiver;
2790 }
2791 }
2792 return nullptr;
2793}
2794
Steve Antoned10bd92017-12-05 10:52:59 -08002795const cricket::ContentInfo* PeerConnection::FindMediaSectionForTransceiver(
2796 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
2797 transceiver,
2798 const SessionDescriptionInterface* sdesc) const {
2799 RTC_DCHECK(transceiver);
2800 RTC_DCHECK(sdesc);
2801 if (IsUnifiedPlan()) {
2802 if (!transceiver->internal()->mid()) {
2803 // This transceiver is not associated with a media section yet.
2804 return nullptr;
2805 }
2806 return sdesc->description()->GetContentByName(
2807 *transceiver->internal()->mid());
2808 } else {
2809 // Plan B only allows at most one audio and one video section, so use the
2810 // first media section of that type.
2811 return cricket::GetFirstMediaContent(sdesc->description()->contents(),
Steve Anton69470252018-02-09 11:43:08 -08002812 transceiver->media_type());
Steve Antoned10bd92017-12-05 10:52:59 -08002813 }
2814}
2815
deadbeef46c73892016-11-16 19:42:04 -08002816PeerConnectionInterface::RTCConfiguration PeerConnection::GetConfiguration() {
2817 return configuration_;
2818}
2819
deadbeef293e9262017-01-11 12:28:30 -08002820bool PeerConnection::SetConfiguration(const RTCConfiguration& configuration,
2821 RTCError* error) {
Peter Boström1a9d6152015-12-08 22:15:17 +01002822 TRACE_EVENT0("webrtc", "PeerConnection::SetConfiguration");
deadbeef6de92f92016-12-12 18:49:32 -08002823
Steve Anton75737c02017-11-06 10:37:17 -08002824 if (local_description() && configuration.ice_candidate_pool_size !=
2825 configuration_.ice_candidate_pool_size) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01002826 RTC_LOG(LS_ERROR) << "Can't change candidate pool size after calling "
2827 "SetLocalDescription.";
deadbeef293e9262017-01-11 12:28:30 -08002828 return SafeSetError(RTCErrorType::INVALID_MODIFICATION, error);
buildbot@webrtc.org41451d42014-05-03 05:39:45 +00002829 }
Taylor Brandstettera1c30352016-05-13 08:15:11 -07002830
deadbeef293e9262017-01-11 12:28:30 -08002831 // The simplest (and most future-compatible) way to tell if the config was
2832 // modified in an invalid way is to copy each property we do support
2833 // modifying, then use operator==. There are far more properties we don't
2834 // support modifying than those we do, and more could be added.
2835 RTCConfiguration modified_config = configuration_;
2836 modified_config.servers = configuration.servers;
2837 modified_config.type = configuration.type;
2838 modified_config.ice_candidate_pool_size =
2839 configuration.ice_candidate_pool_size;
2840 modified_config.prune_turn_ports = configuration.prune_turn_ports;
skvladd1f5fda2017-02-03 16:54:05 -08002841 modified_config.ice_check_min_interval = configuration.ice_check_min_interval;
Qingsi Wange6826d22018-03-08 14:55:14 -08002842 modified_config.ice_check_interval_strong_connectivity =
2843 configuration.ice_check_interval_strong_connectivity;
2844 modified_config.ice_check_interval_weak_connectivity =
2845 configuration.ice_check_interval_weak_connectivity;
Qingsi Wang22e623a2018-03-13 10:53:57 -07002846 modified_config.ice_unwritable_timeout = configuration.ice_unwritable_timeout;
2847 modified_config.ice_unwritable_min_checks =
2848 configuration.ice_unwritable_min_checks;
Qingsi Wangdb53f8e2018-02-20 14:45:49 -08002849 modified_config.stun_candidate_keepalive_interval =
2850 configuration.stun_candidate_keepalive_interval;
Jonas Orelandbdcee282017-10-10 14:01:40 +02002851 modified_config.turn_customizer = configuration.turn_customizer;
Qingsi Wang9a5c6f82018-02-01 10:38:40 -08002852 modified_config.network_preference = configuration.network_preference;
deadbeef293e9262017-01-11 12:28:30 -08002853 if (configuration != modified_config) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01002854 RTC_LOG(LS_ERROR) << "Modifying the configuration in an unsupported way.";
deadbeef293e9262017-01-11 12:28:30 -08002855 return SafeSetError(RTCErrorType::INVALID_MODIFICATION, error);
2856 }
2857
Steve Anton038834f2017-07-14 15:59:59 -07002858 // Validate the modified configuration.
2859 RTCError validate_error = ValidateConfiguration(modified_config);
2860 if (!validate_error.ok()) {
2861 return SafeSetError(std::move(validate_error), error);
2862 }
2863
deadbeef293e9262017-01-11 12:28:30 -08002864 // Note that this isn't possible through chromium, since it's an unsigned
2865 // short in WebIDL.
2866 if (configuration.ice_candidate_pool_size < 0 ||
2867 configuration.ice_candidate_pool_size > UINT16_MAX) {
2868 return SafeSetError(RTCErrorType::INVALID_RANGE, error);
2869 }
2870
2871 // Parse ICE servers before hopping to network thread.
2872 cricket::ServerAddresses stun_servers;
2873 std::vector<cricket::RelayServerConfig> turn_servers;
2874 RTCErrorType parse_error =
2875 ParseIceServers(configuration.servers, &stun_servers, &turn_servers);
2876 if (parse_error != RTCErrorType::NONE) {
2877 return SafeSetError(parse_error, error);
2878 }
2879
2880 // In theory this shouldn't fail.
2881 if (!network_thread()->Invoke<bool>(
2882 RTC_FROM_HERE,
2883 rtc::Bind(&PeerConnection::ReconfigurePortAllocator_n, this,
2884 stun_servers, turn_servers, modified_config.type,
2885 modified_config.ice_candidate_pool_size,
Jonas Orelandbdcee282017-10-10 14:01:40 +02002886 modified_config.prune_turn_ports,
Qingsi Wangdb53f8e2018-02-20 14:45:49 -08002887 modified_config.turn_customizer,
2888 modified_config.stun_candidate_keepalive_interval))) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01002889 RTC_LOG(LS_ERROR) << "Failed to apply configuration to PortAllocator.";
deadbeef293e9262017-01-11 12:28:30 -08002890 return SafeSetError(RTCErrorType::INTERNAL_ERROR, error);
2891 }
Honghai Zhang4cedf2b2016-08-31 08:18:11 -07002892
deadbeefd1a38b52016-12-10 13:15:33 -08002893 // As described in JSEP, calling setConfiguration with new ICE servers or
2894 // candidate policy must set a "needs-ice-restart" bit so that the next offer
2895 // triggers an ICE restart which will pick up the changes.
deadbeef293e9262017-01-11 12:28:30 -08002896 if (modified_config.servers != configuration_.servers ||
2897 modified_config.type != configuration_.type ||
2898 modified_config.prune_turn_ports != configuration_.prune_turn_ports) {
Steve Antond25da372017-11-06 14:50:29 -08002899 transport_controller_->SetNeedsIceRestartFlag();
deadbeefd1a38b52016-12-10 13:15:33 -08002900 }
skvladd1f5fda2017-02-03 16:54:05 -08002901
Qingsi Wang9c98f0c2018-02-15 15:10:59 -08002902 transport_controller_->SetIceConfig(ParseIceConfig(modified_config));
skvladd1f5fda2017-02-03 16:54:05 -08002903
deadbeef293e9262017-01-11 12:28:30 -08002904 configuration_ = modified_config;
2905 return SafeSetError(RTCErrorType::NONE, error);
buildbot@webrtc.org41451d42014-05-03 05:39:45 +00002906}
2907
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002908bool PeerConnection::AddIceCandidate(
2909 const IceCandidateInterface* ice_candidate) {
Peter Boström1a9d6152015-12-08 22:15:17 +01002910 TRACE_EVENT0("webrtc", "PeerConnection::AddIceCandidate");
zhihuang29ff8442016-07-27 11:07:25 -07002911 if (IsClosed()) {
2912 return false;
2913 }
Steve Antond25da372017-11-06 14:50:29 -08002914
2915 if (!remote_description()) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01002916 RTC_LOG(LS_ERROR) << "ProcessIceMessage: ICE candidates can't be added "
Jonas Olsson45cc8902018-02-13 10:37:07 +01002917 "without any remote session description.";
Steve Antond25da372017-11-06 14:50:29 -08002918 return false;
2919 }
2920
2921 if (!ice_candidate) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01002922 RTC_LOG(LS_ERROR) << "ProcessIceMessage: Candidate is NULL.";
Steve Antond25da372017-11-06 14:50:29 -08002923 return false;
2924 }
2925
2926 bool valid = false;
2927 bool ready = ReadyToUseRemoteCandidate(ice_candidate, nullptr, &valid);
2928 if (!valid) {
2929 return false;
2930 }
2931
2932 // Add this candidate to the remote session description.
2933 if (!mutable_remote_description()->AddCandidate(ice_candidate)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01002934 RTC_LOG(LS_ERROR) << "ProcessIceMessage: Candidate cannot be used.";
Steve Antond25da372017-11-06 14:50:29 -08002935 return false;
2936 }
2937
2938 if (ready) {
2939 return UseCandidate(ice_candidate);
2940 } else {
Mirko Bonadei675513b2017-11-09 11:09:25 +01002941 RTC_LOG(LS_INFO) << "ProcessIceMessage: Not ready to use candidate.";
Steve Antond25da372017-11-06 14:50:29 -08002942 return true;
2943 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002944}
2945
Honghai Zhang7fb69db2016-03-14 11:59:18 -07002946bool PeerConnection::RemoveIceCandidates(
2947 const std::vector<cricket::Candidate>& candidates) {
2948 TRACE_EVENT0("webrtc", "PeerConnection::RemoveIceCandidates");
Steve Antond25da372017-11-06 14:50:29 -08002949 if (!remote_description()) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01002950 RTC_LOG(LS_ERROR) << "RemoveRemoteIceCandidates: ICE candidates can't be "
Jonas Olsson45cc8902018-02-13 10:37:07 +01002951 "removed without any remote session description.";
Steve Antond25da372017-11-06 14:50:29 -08002952 return false;
2953 }
2954
2955 if (candidates.empty()) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01002956 RTC_LOG(LS_ERROR) << "RemoveRemoteIceCandidates: candidates are empty.";
Steve Antond25da372017-11-06 14:50:29 -08002957 return false;
2958 }
2959
2960 size_t number_removed =
2961 mutable_remote_description()->RemoveCandidates(candidates);
2962 if (number_removed != candidates.size()) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01002963 RTC_LOG(LS_ERROR)
2964 << "RemoveRemoteIceCandidates: Failed to remove candidates. "
Jonas Olsson45cc8902018-02-13 10:37:07 +01002965 "Requested "
2966 << candidates.size() << " but only " << number_removed
Mirko Bonadei675513b2017-11-09 11:09:25 +01002967 << " are removed.";
Steve Antond25da372017-11-06 14:50:29 -08002968 }
2969
2970 // Remove the candidates from the transport controller.
Zhi Huange830e682018-03-30 10:48:35 -07002971 RTCError error = transport_controller_->RemoveRemoteCandidates(candidates);
2972 if (!error.ok()) {
2973 RTC_LOG(LS_ERROR) << "Error when removing remote candidates: "
2974 << error.message();
Steve Antond25da372017-11-06 14:50:29 -08002975 }
2976 return true;
Honghai Zhang7fb69db2016-03-14 11:59:18 -07002977}
2978
buildbot@webrtc.org1567b8c2014-05-08 19:54:16 +00002979void PeerConnection::RegisterUMAObserver(UMAObserver* observer) {
Peter Boström1a9d6152015-12-08 22:15:17 +01002980 TRACE_EVENT0("webrtc", "PeerConnection::RegisterUmaObserver");
Patrik Höglund3dc41062018-04-11 11:13:57 +00002981 uma_observer_ = observer;
2982
2983 if (transport_controller()) {
2984 transport_controller()->SetMetricsObserver(uma_observer_);
2985 }
2986
2987 for (auto transceiver : transceivers_) {
2988 auto* channel = transceiver->internal()->channel();
2989 if (channel) {
2990 channel->SetMetricsObserver(uma_observer_);
2991 }
2992 }
2993
mallinath@webrtc.orgd37bcfa2014-05-12 23:10:18 +00002994 // Send information about IPv4/IPv6 status.
deadbeef293e9262017-01-11 12:28:30 -08002995 if (uma_observer_) {
Patrik Höglund3dc41062018-04-11 11:13:57 +00002996 port_allocator_->SetMetricsObserver(uma_observer_);
2997 if (port_allocator_->flags() & cricket::PORTALLOCATOR_ENABLE_IPV6) {
Guo-wei Shiehdfbe6792015-09-03 17:12:07 -07002998 uma_observer_->IncrementEnumCounter(
2999 kEnumCounterAddressFamily, kPeerConnection_IPv6,
3000 kPeerConnectionAddressFamilyCounter_Max);
mallinath@webrtc.orgb445f262014-05-23 22:19:37 +00003001 } else {
Guo-wei Shiehdfbe6792015-09-03 17:12:07 -07003002 uma_observer_->IncrementEnumCounter(
3003 kEnumCounterAddressFamily, kPeerConnection_IPv4,
3004 kPeerConnectionAddressFamilyCounter_Max);
mallinath@webrtc.orgd37bcfa2014-05-12 23:10:18 +00003005 }
3006 }
buildbot@webrtc.org1567b8c2014-05-08 19:54:16 +00003007}
3008
zstein4b979802017-06-02 14:37:37 -07003009RTCError PeerConnection::SetBitrate(const BitrateParameters& bitrate) {
Steve Anton978b8762017-09-29 12:15:02 -07003010 if (!worker_thread()->IsCurrent()) {
3011 return worker_thread()->Invoke<RTCError>(
zstein4b979802017-06-02 14:37:37 -07003012 RTC_FROM_HERE, rtc::Bind(&PeerConnection::SetBitrate, this, bitrate));
3013 }
3014
3015 const bool has_min = static_cast<bool>(bitrate.min_bitrate_bps);
3016 const bool has_current = static_cast<bool>(bitrate.current_bitrate_bps);
3017 const bool has_max = static_cast<bool>(bitrate.max_bitrate_bps);
3018 if (has_min && *bitrate.min_bitrate_bps < 0) {
3019 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
3020 "min_bitrate_bps <= 0");
3021 }
3022 if (has_current) {
3023 if (has_min && *bitrate.current_bitrate_bps < *bitrate.min_bitrate_bps) {
3024 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
3025 "current_bitrate_bps < min_bitrate_bps");
3026 } else if (*bitrate.current_bitrate_bps < 0) {
3027 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
3028 "curent_bitrate_bps < 0");
3029 }
3030 }
3031 if (has_max) {
3032 if (has_current &&
3033 *bitrate.max_bitrate_bps < *bitrate.current_bitrate_bps) {
3034 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
3035 "max_bitrate_bps < current_bitrate_bps");
3036 } else if (has_min && *bitrate.max_bitrate_bps < *bitrate.min_bitrate_bps) {
3037 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
3038 "max_bitrate_bps < min_bitrate_bps");
3039 } else if (*bitrate.max_bitrate_bps < 0) {
3040 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
3041 "max_bitrate_bps < 0");
3042 }
3043 }
3044
Sebastian Janssonfc8d26b2018-02-21 09:52:06 +01003045 BitrateConstraintsMask mask;
zstein4b979802017-06-02 14:37:37 -07003046 mask.min_bitrate_bps = bitrate.min_bitrate_bps;
3047 mask.start_bitrate_bps = bitrate.current_bitrate_bps;
3048 mask.max_bitrate_bps = bitrate.max_bitrate_bps;
3049
3050 RTC_DCHECK(call_.get());
Sebastian Jansson8f83b422018-02-21 13:07:13 +01003051 call_->GetTransportControllerSend()->SetClientBitratePreferences(mask);
zstein4b979802017-06-02 14:37:37 -07003052
3053 return RTCError::OK();
3054}
3055
Alex Narest78609d52017-10-20 10:37:47 +02003056void PeerConnection::SetBitrateAllocationStrategy(
3057 std::unique_ptr<rtc::BitrateAllocationStrategy>
3058 bitrate_allocation_strategy) {
3059 rtc::Thread* worker_thread = factory_->worker_thread();
3060 if (!worker_thread->IsCurrent()) {
3061 rtc::BitrateAllocationStrategy* strategy_raw =
3062 bitrate_allocation_strategy.release();
3063 auto functor = [this, strategy_raw]() {
3064 call_->SetBitrateAllocationStrategy(
3065 rtc::WrapUnique<rtc::BitrateAllocationStrategy>(strategy_raw));
3066 };
3067 worker_thread->Invoke<void>(RTC_FROM_HERE, functor);
3068 return;
3069 }
3070 RTC_DCHECK(call_.get());
3071 call_->SetBitrateAllocationStrategy(std::move(bitrate_allocation_strategy));
3072}
3073
henrika5f6bf242017-11-01 11:06:56 +01003074void PeerConnection::SetAudioPlayout(bool playout) {
3075 if (!worker_thread()->IsCurrent()) {
3076 worker_thread()->Invoke<void>(
3077 RTC_FROM_HERE,
3078 rtc::Bind(&PeerConnection::SetAudioPlayout, this, playout));
3079 return;
3080 }
3081 auto audio_state =
3082 factory_->channel_manager()->media_engine()->GetAudioState();
3083 audio_state->SetPlayout(playout);
3084}
3085
3086void PeerConnection::SetAudioRecording(bool recording) {
3087 if (!worker_thread()->IsCurrent()) {
3088 worker_thread()->Invoke<void>(
3089 RTC_FROM_HERE,
3090 rtc::Bind(&PeerConnection::SetAudioRecording, this, recording));
3091 return;
3092 }
3093 auto audio_state =
3094 factory_->channel_manager()->media_engine()->GetAudioState();
3095 audio_state->SetRecording(recording);
3096}
3097
Steve Anton8c0f7a72017-10-03 10:03:10 -07003098std::unique_ptr<rtc::SSLCertificate>
3099PeerConnection::GetRemoteAudioSSLCertificate() {
Taylor Brandstetterc3928662018-02-23 13:04:51 -08003100 std::unique_ptr<rtc::SSLCertChain> chain = GetRemoteAudioSSLCertChain();
3101 if (!chain || !chain->GetSize()) {
Steve Anton8c0f7a72017-10-03 10:03:10 -07003102 return nullptr;
3103 }
Taylor Brandstetterc3928662018-02-23 13:04:51 -08003104 return chain->Get(0).GetUniqueReference();
Steve Anton8c0f7a72017-10-03 10:03:10 -07003105}
3106
Zhi Huang70b820f2018-01-27 14:16:15 -08003107std::unique_ptr<rtc::SSLCertChain>
3108PeerConnection::GetRemoteAudioSSLCertChain() {
Steve Antonafb0bb72018-02-20 11:35:37 -08003109 auto audio_transceiver = GetFirstAudioTransceiver();
3110 if (!audio_transceiver || !audio_transceiver->internal()->channel()) {
Zhi Huang70b820f2018-01-27 14:16:15 -08003111 return nullptr;
3112 }
Zhi Huang70b820f2018-01-27 14:16:15 -08003113 return transport_controller_->GetRemoteSSLCertChain(
Steve Antonafb0bb72018-02-20 11:35:37 -08003114 audio_transceiver->internal()->channel()->transport_name());
3115}
3116
3117rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
3118PeerConnection::GetFirstAudioTransceiver() const {
3119 for (auto transceiver : transceivers_) {
3120 if (transceiver->media_type() == cricket::MEDIA_TYPE_AUDIO) {
3121 return transceiver;
3122 }
3123 }
3124 return nullptr;
Zhi Huang70b820f2018-01-27 14:16:15 -08003125}
3126
ivoc14d5dbe2016-07-04 07:06:55 -07003127bool PeerConnection::StartRtcEventLog(rtc::PlatformFile file,
3128 int64_t max_size_bytes) {
Elad Alon99c3fe52017-10-13 16:29:40 +02003129 // TODO(eladalon): It would be better to not allow negative values into PC.
3130 const size_t max_size = (max_size_bytes < 0)
3131 ? RtcEventLog::kUnlimitedOutput
3132 : rtc::saturated_cast<size_t>(max_size_bytes);
3133 return StartRtcEventLog(
Bjorn Tereliusde939432017-11-20 17:38:14 +01003134 rtc::MakeUnique<RtcEventLogOutputFile>(file, max_size),
3135 webrtc::RtcEventLog::kImmediateOutput);
Elad Alon99c3fe52017-10-13 16:29:40 +02003136}
3137
Bjorn Tereliusde939432017-11-20 17:38:14 +01003138bool PeerConnection::StartRtcEventLog(std::unique_ptr<RtcEventLogOutput> output,
3139 int64_t output_period_ms) {
Karl Wibergd6b48192017-10-16 23:01:06 +02003140 // TODO(eladalon): In C++14, this can be done with a lambda.
3141 struct Functor {
Bjorn Tereliusde939432017-11-20 17:38:14 +01003142 bool operator()() {
3143 return pc->StartRtcEventLog_w(std::move(output), output_period_ms);
3144 }
Karl Wibergd6b48192017-10-16 23:01:06 +02003145 PeerConnection* const pc;
3146 std::unique_ptr<RtcEventLogOutput> output;
Bjorn Tereliusde939432017-11-20 17:38:14 +01003147 const int64_t output_period_ms;
Elad Alon99c3fe52017-10-13 16:29:40 +02003148 };
Bjorn Tereliusde939432017-11-20 17:38:14 +01003149 return worker_thread()->Invoke<bool>(
3150 RTC_FROM_HERE, Functor{this, std::move(output), output_period_ms});
ivoc14d5dbe2016-07-04 07:06:55 -07003151}
3152
3153void PeerConnection::StopRtcEventLog() {
Steve Anton978b8762017-09-29 12:15:02 -07003154 worker_thread()->Invoke<void>(
ivoc14d5dbe2016-07-04 07:06:55 -07003155 RTC_FROM_HERE, rtc::Bind(&PeerConnection::StopRtcEventLog_w, this));
3156}
3157
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003158const SessionDescriptionInterface* PeerConnection::local_description() const {
Steve Anton75737c02017-11-06 10:37:17 -08003159 return pending_local_description_ ? pending_local_description_.get()
3160 : current_local_description_.get();
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003161}
3162
3163const SessionDescriptionInterface* PeerConnection::remote_description() const {
Steve Anton75737c02017-11-06 10:37:17 -08003164 return pending_remote_description_ ? pending_remote_description_.get()
3165 : current_remote_description_.get();
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003166}
3167
deadbeeffe4a8a42016-12-20 17:56:17 -08003168const SessionDescriptionInterface* PeerConnection::current_local_description()
3169 const {
Steve Anton75737c02017-11-06 10:37:17 -08003170 return current_local_description_.get();
deadbeeffe4a8a42016-12-20 17:56:17 -08003171}
3172
3173const SessionDescriptionInterface* PeerConnection::current_remote_description()
3174 const {
Steve Anton75737c02017-11-06 10:37:17 -08003175 return current_remote_description_.get();
deadbeeffe4a8a42016-12-20 17:56:17 -08003176}
3177
3178const SessionDescriptionInterface* PeerConnection::pending_local_description()
3179 const {
Steve Anton75737c02017-11-06 10:37:17 -08003180 return pending_local_description_.get();
deadbeeffe4a8a42016-12-20 17:56:17 -08003181}
3182
3183const SessionDescriptionInterface* PeerConnection::pending_remote_description()
3184 const {
Steve Anton75737c02017-11-06 10:37:17 -08003185 return pending_remote_description_.get();
deadbeeffe4a8a42016-12-20 17:56:17 -08003186}
3187
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003188void PeerConnection::Close() {
Peter Boström1a9d6152015-12-08 22:15:17 +01003189 TRACE_EVENT0("webrtc", "PeerConnection::Close");
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003190 // Update stats here so that we have the most recent stats for tracks and
3191 // streams before the channels are closed.
tommi@webrtc.org03505bc2014-07-14 20:15:26 +00003192 stats_->UpdateStats(kStatsOutputLevelStandard);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003193
Steve Anton75737c02017-11-06 10:37:17 -08003194 ChangeSignalingState(PeerConnectionInterface::kClosed);
Steve Anton3fe1b152017-12-12 10:20:08 -08003195
Steve Anton8af21862017-12-15 11:20:13 -08003196 for (auto transceiver : transceivers_) {
3197 transceiver->Stop();
3198 }
3199 DestroyAllChannels();
Steve Anton75737c02017-11-06 10:37:17 -08003200
Qingsi Wang93a84392018-01-30 17:13:09 -08003201 // The event log is used in the transport controller, which must be outlived
3202 // by the former. CreateOffer by the peer connection is implemented
3203 // asynchronously and if the peer connection is closed without resetting the
3204 // WebRTC session description factory, the session description factory would
3205 // call the transport controller.
3206 webrtc_session_desc_factory_.reset();
3207 transport_controller_.reset();
3208
deadbeef42a42632017-03-10 15:18:00 -08003209 network_thread()->Invoke<void>(
3210 RTC_FROM_HERE,
3211 rtc::Bind(&cricket::PortAllocator::DiscardCandidatePool,
3212 port_allocator_.get()));
nisseeaabdf62017-05-05 02:23:02 -07003213
Steve Anton978b8762017-09-29 12:15:02 -07003214 worker_thread()->Invoke<void>(RTC_FROM_HERE, [this] {
eladalon248fd4f2017-09-06 05:18:15 -07003215 call_.reset();
3216 // The event log must outlive call (and any other object that uses it).
3217 event_log_.reset();
3218 });
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003219}
3220
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +00003221void PeerConnection::OnMessage(rtc::Message* msg) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003222 switch (msg->message_id) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003223 case MSG_SET_SESSIONDESCRIPTION_SUCCESS: {
3224 SetSessionDescriptionMsg* param =
3225 static_cast<SetSessionDescriptionMsg*>(msg->pdata);
3226 param->observer->OnSuccess();
3227 delete param;
3228 break;
3229 }
3230 case MSG_SET_SESSIONDESCRIPTION_FAILED: {
3231 SetSessionDescriptionMsg* param =
3232 static_cast<SetSessionDescriptionMsg*>(msg->pdata);
Harald Alvestrand5081c0c2018-03-09 15:18:03 +01003233 param->observer->OnFailure(std::move(param->error));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003234 delete param;
3235 break;
3236 }
deadbeefab9b2d12015-10-14 11:33:11 -07003237 case MSG_CREATE_SESSIONDESCRIPTION_FAILED: {
3238 CreateSessionDescriptionMsg* param =
3239 static_cast<CreateSessionDescriptionMsg*>(msg->pdata);
Harald Alvestrand5081c0c2018-03-09 15:18:03 +01003240 param->observer->OnFailure(std::move(param->error));
deadbeefab9b2d12015-10-14 11:33:11 -07003241 delete param;
3242 break;
3243 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003244 case MSG_GETSTATS: {
3245 GetStatsMsg* param = static_cast<GetStatsMsg*>(msg->pdata);
nissee8abe3e2017-01-18 05:00:34 -08003246 StatsReports reports;
3247 stats_->GetStats(param->track, &reports);
3248 param->observer->OnComplete(reports);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003249 delete param;
3250 break;
3251 }
deadbeefbd292462015-12-14 18:15:29 -08003252 case MSG_FREE_DATACHANNELS: {
3253 sctp_data_channels_to_free_.clear();
3254 break;
3255 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003256 default:
nisseeb4ca4e2017-01-12 02:24:27 -08003257 RTC_NOTREACHED() << "Not implemented";
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003258 break;
3259 }
3260}
3261
Steve Antonafb0bb72018-02-20 11:35:37 -08003262cricket::VoiceMediaChannel* PeerConnection::voice_media_channel() const {
3263 RTC_DCHECK(!IsUnifiedPlan());
3264 auto* voice_channel = static_cast<cricket::VoiceChannel*>(
3265 GetAudioTransceiver()->internal()->channel());
3266 if (voice_channel) {
3267 return voice_channel->media_channel();
3268 } else {
3269 return nullptr;
3270 }
3271}
3272
3273cricket::VideoMediaChannel* PeerConnection::video_media_channel() const {
3274 RTC_DCHECK(!IsUnifiedPlan());
3275 auto* video_channel = static_cast<cricket::VideoChannel*>(
3276 GetVideoTransceiver()->internal()->channel());
3277 if (video_channel) {
3278 return video_channel->media_channel();
3279 } else {
3280 return nullptr;
3281 }
3282}
3283
Steve Anton4171afb2017-11-20 10:20:22 -08003284void PeerConnection::CreateAudioReceiver(
3285 MediaStreamInterface* stream,
3286 const RtpSenderInfo& remote_sender_info) {
Henrik Boström9e6fd2b2017-11-21 13:41:51 +01003287 std::vector<rtc::scoped_refptr<MediaStreamInterface>> streams;
3288 streams.push_back(rtc::scoped_refptr<MediaStreamInterface>(stream));
Steve Antond3679212018-01-17 17:41:02 -08003289 auto* audio_receiver = new AudioRtpReceiver(
3290 worker_thread(), remote_sender_info.sender_id, streams);
Steve Anton57858b32018-02-15 15:19:50 -08003291 audio_receiver->SetVoiceMediaChannel(voice_media_channel());
Steve Antond3679212018-01-17 17:41:02 -08003292 audio_receiver->SetupMediaChannel(remote_sender_info.first_ssrc);
3293 auto receiver = RtpReceiverProxyWithInternal<RtpReceiverInternal>::Create(
3294 signaling_thread(), audio_receiver);
Steve Anton4171afb2017-11-20 10:20:22 -08003295 GetAudioTransceiver()->internal()->AddReceiver(receiver);
Henrik Boström9e6fd2b2017-11-21 13:41:51 +01003296 observer_->OnAddTrack(receiver, std::move(streams));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003297}
3298
Steve Anton4171afb2017-11-20 10:20:22 -08003299void PeerConnection::CreateVideoReceiver(
3300 MediaStreamInterface* stream,
3301 const RtpSenderInfo& remote_sender_info) {
Henrik Boström9e6fd2b2017-11-21 13:41:51 +01003302 std::vector<rtc::scoped_refptr<MediaStreamInterface>> streams;
3303 streams.push_back(rtc::scoped_refptr<MediaStreamInterface>(stream));
Steve Antond3679212018-01-17 17:41:02 -08003304 auto* video_receiver = new VideoRtpReceiver(
3305 worker_thread(), remote_sender_info.sender_id, streams);
Steve Anton57858b32018-02-15 15:19:50 -08003306 video_receiver->SetVideoMediaChannel(video_media_channel());
Steve Antond3679212018-01-17 17:41:02 -08003307 video_receiver->SetupMediaChannel(remote_sender_info.first_ssrc);
3308 auto receiver = RtpReceiverProxyWithInternal<RtpReceiverInternal>::Create(
3309 signaling_thread(), video_receiver);
Steve Anton4171afb2017-11-20 10:20:22 -08003310 GetVideoTransceiver()->internal()->AddReceiver(receiver);
Henrik Boström9e6fd2b2017-11-21 13:41:51 +01003311 observer_->OnAddTrack(receiver, std::move(streams));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003312}
3313
deadbeef70ab1a12015-09-28 16:53:55 -07003314// TODO(deadbeef): Keep RtpReceivers around even if track goes away in remote
3315// description.
Henrik Boström933d8b02017-10-10 10:05:16 -07003316rtc::scoped_refptr<RtpReceiverInterface> PeerConnection::RemoveAndStopReceiver(
Steve Anton4171afb2017-11-20 10:20:22 -08003317 const RtpSenderInfo& remote_sender_info) {
3318 auto receiver = FindReceiverById(remote_sender_info.sender_id);
3319 if (!receiver) {
3320 RTC_LOG(LS_WARNING) << "RtpReceiver for track with id "
3321 << remote_sender_info.sender_id << " doesn't exist.";
Henrik Boström933d8b02017-10-10 10:05:16 -07003322 return nullptr;
deadbeef70ab1a12015-09-28 16:53:55 -07003323 }
Steve Anton4171afb2017-11-20 10:20:22 -08003324 if (receiver->media_type() == cricket::MEDIA_TYPE_AUDIO) {
3325 GetAudioTransceiver()->internal()->RemoveReceiver(receiver);
3326 } else {
3327 GetVideoTransceiver()->internal()->RemoveReceiver(receiver);
3328 }
Henrik Boström933d8b02017-10-10 10:05:16 -07003329 return receiver;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003330}
3331
korniltsev.anatolyec390b52017-07-24 17:00:25 -07003332void PeerConnection::AddAudioTrack(AudioTrackInterface* track,
3333 MediaStreamInterface* stream) {
3334 RTC_DCHECK(!IsClosed());
3335 auto sender = FindSenderForTrack(track);
Steve Anton4171afb2017-11-20 10:20:22 -08003336 if (sender) {
korniltsev.anatolyec390b52017-07-24 17:00:25 -07003337 // We already have a sender for this track, so just change the stream_id
3338 // so that it's correct in the next call to CreateOffer.
Seth Hampson5b4f0752018-04-02 16:31:36 -07003339 sender->internal()->set_stream_ids({stream->id()});
korniltsev.anatolyec390b52017-07-24 17:00:25 -07003340 return;
3341 }
3342
3343 // Normal case; we've never seen this track before.
Steve Anton02ee47c2018-01-10 16:26:06 -08003344 auto new_sender =
Seth Hampson13b8bad2018-03-13 16:05:28 -07003345 CreateSender(cricket::MEDIA_TYPE_AUDIO, track, {stream->id()});
Steve Anton57858b32018-02-15 15:19:50 -08003346 new_sender->internal()->SetVoiceMediaChannel(voice_media_channel());
Steve Anton4171afb2017-11-20 10:20:22 -08003347 GetAudioTransceiver()->internal()->AddSender(new_sender);
korniltsev.anatolyec390b52017-07-24 17:00:25 -07003348 // If the sender has already been configured in SDP, we call SetSsrc,
3349 // which will connect the sender to the underlying transport. This can
3350 // occur if a local session description that contains the ID of the sender
3351 // is set before AddStream is called. It can also occur if the local
3352 // session description is not changed and RemoveStream is called, and
3353 // later AddStream is called again with the same stream.
Steve Anton4171afb2017-11-20 10:20:22 -08003354 const RtpSenderInfo* sender_info =
Emircan Uysalerbc609ea2018-03-27 21:57:18 +00003355 FindSenderInfo(local_audio_sender_infos_, stream->id(), track->id());
Steve Anton4171afb2017-11-20 10:20:22 -08003356 if (sender_info) {
3357 new_sender->internal()->SetSsrc(sender_info->first_ssrc);
korniltsev.anatolyec390b52017-07-24 17:00:25 -07003358 }
3359}
3360
3361// TODO(deadbeef): Don't destroy RtpSenders here; they should be kept around
3362// indefinitely, when we have unified plan SDP.
3363void PeerConnection::RemoveAudioTrack(AudioTrackInterface* track,
3364 MediaStreamInterface* stream) {
3365 RTC_DCHECK(!IsClosed());
3366 auto sender = FindSenderForTrack(track);
Steve Anton4171afb2017-11-20 10:20:22 -08003367 if (!sender) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01003368 RTC_LOG(LS_WARNING) << "RtpSender for track with id " << track->id()
3369 << " doesn't exist.";
korniltsev.anatolyec390b52017-07-24 17:00:25 -07003370 return;
3371 }
Steve Anton4171afb2017-11-20 10:20:22 -08003372 GetAudioTransceiver()->internal()->RemoveSender(sender);
korniltsev.anatolyec390b52017-07-24 17:00:25 -07003373}
3374
3375void PeerConnection::AddVideoTrack(VideoTrackInterface* track,
3376 MediaStreamInterface* stream) {
3377 RTC_DCHECK(!IsClosed());
3378 auto sender = FindSenderForTrack(track);
Steve Anton4171afb2017-11-20 10:20:22 -08003379 if (sender) {
korniltsev.anatolyec390b52017-07-24 17:00:25 -07003380 // We already have a sender for this track, so just change the stream_id
3381 // so that it's correct in the next call to CreateOffer.
Seth Hampson5b4f0752018-04-02 16:31:36 -07003382 sender->internal()->set_stream_ids({stream->id()});
korniltsev.anatolyec390b52017-07-24 17:00:25 -07003383 return;
3384 }
3385
3386 // Normal case; we've never seen this track before.
Steve Anton02ee47c2018-01-10 16:26:06 -08003387 auto new_sender =
Seth Hampson13b8bad2018-03-13 16:05:28 -07003388 CreateSender(cricket::MEDIA_TYPE_VIDEO, track, {stream->id()});
Steve Anton57858b32018-02-15 15:19:50 -08003389 new_sender->internal()->SetVideoMediaChannel(video_media_channel());
Steve Anton4171afb2017-11-20 10:20:22 -08003390 GetVideoTransceiver()->internal()->AddSender(new_sender);
3391 const RtpSenderInfo* sender_info =
Emircan Uysalerbc609ea2018-03-27 21:57:18 +00003392 FindSenderInfo(local_video_sender_infos_, stream->id(), track->id());
Steve Anton4171afb2017-11-20 10:20:22 -08003393 if (sender_info) {
3394 new_sender->internal()->SetSsrc(sender_info->first_ssrc);
korniltsev.anatolyec390b52017-07-24 17:00:25 -07003395 }
3396}
3397
3398void PeerConnection::RemoveVideoTrack(VideoTrackInterface* track,
3399 MediaStreamInterface* stream) {
3400 RTC_DCHECK(!IsClosed());
3401 auto sender = FindSenderForTrack(track);
Steve Anton4171afb2017-11-20 10:20:22 -08003402 if (!sender) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01003403 RTC_LOG(LS_WARNING) << "RtpSender for track with id " << track->id()
3404 << " doesn't exist.";
korniltsev.anatolyec390b52017-07-24 17:00:25 -07003405 return;
3406 }
Steve Anton4171afb2017-11-20 10:20:22 -08003407 GetVideoTransceiver()->internal()->RemoveSender(sender);
korniltsev.anatolyec390b52017-07-24 17:00:25 -07003408}
3409
Steve Antonba818672017-11-06 10:21:57 -08003410void PeerConnection::SetIceConnectionState(IceConnectionState new_state) {
deadbeef0a6c4ca2015-10-06 11:38:28 -07003411 RTC_DCHECK(signaling_thread()->IsCurrent());
Steve Antonba818672017-11-06 10:21:57 -08003412 if (ice_connection_state_ == new_state) {
3413 return;
3414 }
3415
deadbeefcbecd352015-09-23 11:50:27 -07003416 // After transitioning to "closed", ignore any additional states from
Steve Antonba818672017-11-06 10:21:57 -08003417 // TransportController (such as "disconnected").
deadbeefab9b2d12015-10-14 11:33:11 -07003418 if (IsClosed()) {
deadbeefcbecd352015-09-23 11:50:27 -07003419 return;
3420 }
Steve Antonba818672017-11-06 10:21:57 -08003421
Mirko Bonadei675513b2017-11-09 11:09:25 +01003422 RTC_LOG(LS_INFO) << "Changing IceConnectionState " << ice_connection_state_
3423 << " => " << new_state;
Steve Antonba818672017-11-06 10:21:57 -08003424 RTC_DCHECK(ice_connection_state_ !=
3425 PeerConnectionInterface::kIceConnectionClosed);
3426
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003427 ice_connection_state_ = new_state;
mallinath@webrtc.orgd3dc4242014-03-01 00:05:52 +00003428 observer_->OnIceConnectionChange(ice_connection_state_);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003429}
3430
3431void PeerConnection::OnIceGatheringChange(
3432 PeerConnectionInterface::IceGatheringState new_state) {
deadbeef0a6c4ca2015-10-06 11:38:28 -07003433 RTC_DCHECK(signaling_thread()->IsCurrent());
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003434 if (IsClosed()) {
3435 return;
3436 }
3437 ice_gathering_state_ = new_state;
mallinath@webrtc.orgd3dc4242014-03-01 00:05:52 +00003438 observer_->OnIceGatheringChange(ice_gathering_state_);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003439}
3440
jbauch81bf7b02017-03-25 08:31:12 -07003441void PeerConnection::OnIceCandidate(
3442 std::unique_ptr<IceCandidateInterface> candidate) {
deadbeef0a6c4ca2015-10-06 11:38:28 -07003443 RTC_DCHECK(signaling_thread()->IsCurrent());
zhihuang29ff8442016-07-27 11:07:25 -07003444 if (IsClosed()) {
3445 return;
3446 }
jbauch81bf7b02017-03-25 08:31:12 -07003447 observer_->OnIceCandidate(candidate.get());
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003448}
3449
Honghai Zhang7fb69db2016-03-14 11:59:18 -07003450void PeerConnection::OnIceCandidatesRemoved(
3451 const std::vector<cricket::Candidate>& candidates) {
3452 RTC_DCHECK(signaling_thread()->IsCurrent());
zhihuang29ff8442016-07-27 11:07:25 -07003453 if (IsClosed()) {
3454 return;
3455 }
Honghai Zhang7fb69db2016-03-14 11:59:18 -07003456 observer_->OnIceCandidatesRemoved(candidates);
3457}
3458
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003459void PeerConnection::ChangeSignalingState(
3460 PeerConnectionInterface::SignalingState signaling_state) {
Steve Antonba818672017-11-06 10:21:57 -08003461 RTC_DCHECK(signaling_thread()->IsCurrent());
3462 if (signaling_state_ == signaling_state) {
3463 return;
3464 }
Mirko Bonadei675513b2017-11-09 11:09:25 +01003465 RTC_LOG(LS_INFO) << "Session: " << session_id() << " Old state: "
3466 << GetSignalingStateString(signaling_state_)
3467 << " New state: "
3468 << GetSignalingStateString(signaling_state);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003469 signaling_state_ = signaling_state;
3470 if (signaling_state == kClosed) {
3471 ice_connection_state_ = kIceConnectionClosed;
3472 observer_->OnIceConnectionChange(ice_connection_state_);
3473 if (ice_gathering_state_ != kIceGatheringComplete) {
3474 ice_gathering_state_ = kIceGatheringComplete;
3475 observer_->OnIceGatheringChange(ice_gathering_state_);
3476 }
3477 }
3478 observer_->OnSignalingChange(signaling_state_);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003479}
3480
deadbeefeb459812015-12-15 19:24:43 -08003481void PeerConnection::OnAudioTrackAdded(AudioTrackInterface* track,
3482 MediaStreamInterface* stream) {
zhihuang29ff8442016-07-27 11:07:25 -07003483 if (IsClosed()) {
3484 return;
3485 }
korniltsev.anatolyec390b52017-07-24 17:00:25 -07003486 AddAudioTrack(track, stream);
3487 observer_->OnRenegotiationNeeded();
deadbeefeb459812015-12-15 19:24:43 -08003488}
3489
deadbeefeb459812015-12-15 19:24:43 -08003490void PeerConnection::OnAudioTrackRemoved(AudioTrackInterface* track,
3491 MediaStreamInterface* stream) {
zhihuang29ff8442016-07-27 11:07:25 -07003492 if (IsClosed()) {
3493 return;
3494 }
korniltsev.anatolyec390b52017-07-24 17:00:25 -07003495 RemoveAudioTrack(track, stream);
3496 observer_->OnRenegotiationNeeded();
deadbeefeb459812015-12-15 19:24:43 -08003497}
3498
3499void PeerConnection::OnVideoTrackAdded(VideoTrackInterface* track,
3500 MediaStreamInterface* stream) {
zhihuang29ff8442016-07-27 11:07:25 -07003501 if (IsClosed()) {
3502 return;
3503 }
korniltsev.anatolyec390b52017-07-24 17:00:25 -07003504 AddVideoTrack(track, stream);
3505 observer_->OnRenegotiationNeeded();
deadbeefeb459812015-12-15 19:24:43 -08003506}
3507
3508void PeerConnection::OnVideoTrackRemoved(VideoTrackInterface* track,
3509 MediaStreamInterface* stream) {
zhihuang29ff8442016-07-27 11:07:25 -07003510 if (IsClosed()) {
3511 return;
3512 }
korniltsev.anatolyec390b52017-07-24 17:00:25 -07003513 RemoveVideoTrack(track, stream);
3514 observer_->OnRenegotiationNeeded();
deadbeefeb459812015-12-15 19:24:43 -08003515}
3516
Henrik Boström31638672017-11-23 17:48:32 +01003517void PeerConnection::PostSetSessionDescriptionSuccess(
3518 SetSessionDescriptionObserver* observer) {
3519 SetSessionDescriptionMsg* msg = new SetSessionDescriptionMsg(observer);
3520 signaling_thread()->Post(RTC_FROM_HERE, this,
3521 MSG_SET_SESSIONDESCRIPTION_SUCCESS, msg);
3522}
3523
deadbeefab9b2d12015-10-14 11:33:11 -07003524void PeerConnection::PostSetSessionDescriptionFailure(
3525 SetSessionDescriptionObserver* observer,
Harald Alvestrand5081c0c2018-03-09 15:18:03 +01003526 RTCError&& error) {
3527 RTC_DCHECK(!error.ok());
deadbeefab9b2d12015-10-14 11:33:11 -07003528 SetSessionDescriptionMsg* msg = new SetSessionDescriptionMsg(observer);
Harald Alvestrand5081c0c2018-03-09 15:18:03 +01003529 msg->error = std::move(error);
Taylor Brandstetter5d97a9a2016-06-10 14:17:27 -07003530 signaling_thread()->Post(RTC_FROM_HERE, this,
3531 MSG_SET_SESSIONDESCRIPTION_FAILED, msg);
deadbeefab9b2d12015-10-14 11:33:11 -07003532}
3533
3534void PeerConnection::PostCreateSessionDescriptionFailure(
3535 CreateSessionDescriptionObserver* observer,
Harald Alvestrand5081c0c2018-03-09 15:18:03 +01003536 RTCError error) {
3537 RTC_DCHECK(!error.ok());
deadbeefab9b2d12015-10-14 11:33:11 -07003538 CreateSessionDescriptionMsg* msg = new CreateSessionDescriptionMsg(observer);
Harald Alvestrand5081c0c2018-03-09 15:18:03 +01003539 msg->error = std::move(error);
Taylor Brandstetter5d97a9a2016-06-10 14:17:27 -07003540 signaling_thread()->Post(RTC_FROM_HERE, this,
3541 MSG_CREATE_SESSIONDESCRIPTION_FAILED, msg);
deadbeefab9b2d12015-10-14 11:33:11 -07003542}
3543
zhihuang1c378ed2017-08-17 14:10:50 -07003544void PeerConnection::GetOptionsForOffer(
Steve Antondcc3c022017-12-22 16:02:54 -08003545 const PeerConnectionInterface::RTCOfferAnswerOptions& offer_answer_options,
deadbeefab9b2d12015-10-14 11:33:11 -07003546 cricket::MediaSessionOptions* session_options) {
Steve Antondcc3c022017-12-22 16:02:54 -08003547 ExtractSharedMediaSessionOptions(offer_answer_options, session_options);
zhihuang1c378ed2017-08-17 14:10:50 -07003548
Steve Antondcc3c022017-12-22 16:02:54 -08003549 if (IsUnifiedPlan()) {
3550 GetOptionsForUnifiedPlanOffer(offer_answer_options, session_options);
3551 } else {
3552 GetOptionsForPlanBOffer(offer_answer_options, session_options);
3553 }
3554
Steve Antonfa2260d2017-12-28 16:38:23 -08003555 // Intentionally unset the data channel type for RTP data channel with the
3556 // second condition. Otherwise the RTP data channels would be successfully
3557 // negotiated by default and the unit tests in WebRtcDataBrowserTest will fail
3558 // when building with chromium. We want to leave RTP data channels broken, so
3559 // people won't try to use them.
3560 if (!rtp_data_channels_.empty() || data_channel_type() != cricket::DCT_RTP) {
3561 session_options->data_channel_type = data_channel_type();
3562 }
3563
Steve Antondcc3c022017-12-22 16:02:54 -08003564 // Apply ICE restart flag and renomination flag.
3565 for (auto& options : session_options->media_description_options) {
3566 options.transport_options.ice_restart = offer_answer_options.ice_restart;
3567 options.transport_options.enable_ice_renomination =
3568 configuration_.enable_ice_renomination;
3569 }
3570
3571 session_options->rtcp_cname = rtcp_cname_;
3572 session_options->crypto_options = factory_->options().crypto_options;
Steve Antone831b8c2018-02-01 12:22:16 -08003573 session_options->is_unified_plan = IsUnifiedPlan();
Steve Antondcc3c022017-12-22 16:02:54 -08003574}
3575
3576void PeerConnection::GetOptionsForPlanBOffer(
3577 const PeerConnectionInterface::RTCOfferAnswerOptions& offer_answer_options,
3578 cricket::MediaSessionOptions* session_options) {
zhihuang1c378ed2017-08-17 14:10:50 -07003579 // Figure out transceiver directional preferences.
3580 bool send_audio = HasRtpSender(cricket::MEDIA_TYPE_AUDIO);
3581 bool send_video = HasRtpSender(cricket::MEDIA_TYPE_VIDEO);
3582
3583 // By default, generate sendrecv/recvonly m= sections.
3584 bool recv_audio = true;
3585 bool recv_video = true;
3586
3587 // By default, only offer a new m= section if we have media to send with it.
3588 bool offer_new_audio_description = send_audio;
3589 bool offer_new_video_description = send_video;
3590 bool offer_new_data_description = HasDataChannels();
3591
3592 // The "offer_to_receive_X" options allow those defaults to be overridden.
Steve Antondcc3c022017-12-22 16:02:54 -08003593 if (offer_answer_options.offer_to_receive_audio !=
3594 RTCOfferAnswerOptions::kUndefined) {
3595 recv_audio = (offer_answer_options.offer_to_receive_audio > 0);
zhihuang1c378ed2017-08-17 14:10:50 -07003596 offer_new_audio_description =
Steve Antondcc3c022017-12-22 16:02:54 -08003597 offer_new_audio_description ||
3598 (offer_answer_options.offer_to_receive_audio > 0);
zhihuang1c378ed2017-08-17 14:10:50 -07003599 }
Steve Antondcc3c022017-12-22 16:02:54 -08003600 if (offer_answer_options.offer_to_receive_video !=
3601 RTCOfferAnswerOptions::kUndefined) {
3602 recv_video = (offer_answer_options.offer_to_receive_video > 0);
zhihuang1c378ed2017-08-17 14:10:50 -07003603 offer_new_video_description =
Steve Antondcc3c022017-12-22 16:02:54 -08003604 offer_new_video_description ||
3605 (offer_answer_options.offer_to_receive_video > 0);
zhihuang1c378ed2017-08-17 14:10:50 -07003606 }
3607
3608 rtc::Optional<size_t> audio_index;
3609 rtc::Optional<size_t> video_index;
3610 rtc::Optional<size_t> data_index;
3611 // If a current description exists, generate m= sections in the same order,
3612 // using the first audio/video/data section that appears and rejecting
3613 // extraneous ones.
Steve Anton75737c02017-11-06 10:37:17 -08003614 if (local_description()) {
zhihuang1c378ed2017-08-17 14:10:50 -07003615 GenerateMediaDescriptionOptions(
Steve Anton75737c02017-11-06 10:37:17 -08003616 local_description(),
Steve Anton1d03a752017-11-27 14:30:09 -08003617 RtpTransceiverDirectionFromSendRecv(send_audio, recv_audio),
3618 RtpTransceiverDirectionFromSendRecv(send_video, recv_video),
3619 &audio_index, &video_index, &data_index, session_options);
deadbeefab9b2d12015-10-14 11:33:11 -07003620 }
3621
zhihuang1c378ed2017-08-17 14:10:50 -07003622 // Add audio/video/data m= sections to the end if needed.
3623 if (!audio_index && offer_new_audio_description) {
3624 session_options->media_description_options.push_back(
3625 cricket::MediaDescriptionOptions(
3626 cricket::MEDIA_TYPE_AUDIO, cricket::CN_AUDIO,
Steve Anton1d03a752017-11-27 14:30:09 -08003627 RtpTransceiverDirectionFromSendRecv(send_audio, recv_audio),
3628 false));
Oskar Sundbom9b28a032017-11-16 10:53:30 +01003629 audio_index = session_options->media_description_options.size() - 1;
deadbeefc80741f2015-10-22 13:14:45 -07003630 }
zhihuang1c378ed2017-08-17 14:10:50 -07003631 if (!video_index && offer_new_video_description) {
3632 session_options->media_description_options.push_back(
3633 cricket::MediaDescriptionOptions(
3634 cricket::MEDIA_TYPE_VIDEO, cricket::CN_VIDEO,
Steve Anton1d03a752017-11-27 14:30:09 -08003635 RtpTransceiverDirectionFromSendRecv(send_video, recv_video),
3636 false));
Oskar Sundbom9b28a032017-11-16 10:53:30 +01003637 video_index = session_options->media_description_options.size() - 1;
deadbeefc80741f2015-10-22 13:14:45 -07003638 }
zhihuang1c378ed2017-08-17 14:10:50 -07003639 if (!data_index && offer_new_data_description) {
3640 session_options->media_description_options.push_back(
Steve Antonfa2260d2017-12-28 16:38:23 -08003641 GetMediaDescriptionOptionsForActiveData(cricket::CN_DATA));
Oskar Sundbom9b28a032017-11-16 10:53:30 +01003642 data_index = session_options->media_description_options.size() - 1;
zhihuang1c378ed2017-08-17 14:10:50 -07003643 }
3644
3645 cricket::MediaDescriptionOptions* audio_media_description_options =
3646 !audio_index ? nullptr
3647 : &session_options->media_description_options[*audio_index];
3648 cricket::MediaDescriptionOptions* video_media_description_options =
3649 !video_index ? nullptr
3650 : &session_options->media_description_options[*video_index];
zhihuang1c378ed2017-08-17 14:10:50 -07003651
Steve Anton4171afb2017-11-20 10:20:22 -08003652 AddRtpSenderOptions(GetSendersInternal(), audio_media_description_options,
zhihuang1c378ed2017-08-17 14:10:50 -07003653 video_media_description_options);
Steve Antondcc3c022017-12-22 16:02:54 -08003654}
3655
3656// Find a new MID that is not already in |used_mids|, then add it to |used_mids|
3657// and return a reference to it.
3658// Generated MIDs should be no more than 3 bytes long to take up less space in
3659// the RTP packet.
3660static const std::string& AllocateMid(std::set<std::string>* used_mids) {
3661 RTC_DCHECK(used_mids);
3662 // We're boring: just generate MIDs 0, 1, 2, ...
3663 size_t i = 0;
3664 std::set<std::string>::iterator it;
3665 bool inserted;
3666 do {
3667 std::string mid = rtc::ToString(i++);
3668 auto insert_result = used_mids->insert(mid);
3669 it = insert_result.first;
3670 inserted = insert_result.second;
3671 } while (!inserted);
3672 return *it;
3673}
3674
3675static cricket::MediaDescriptionOptions
3676GetMediaDescriptionOptionsForTransceiver(
3677 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
3678 transceiver,
3679 const std::string& mid) {
3680 cricket::MediaDescriptionOptions media_description_options(
Steve Anton69470252018-02-09 11:43:08 -08003681 transceiver->media_type(), mid, transceiver->direction(),
Steve Antondcc3c022017-12-22 16:02:54 -08003682 transceiver->stopped());
Steve Anton5f94aa22018-02-01 10:58:30 -08003683 // This behavior is specified in JSEP. The gist is that:
3684 // 1. The MSID is included if the RtpTransceiver's direction is sendonly or
3685 // sendrecv.
3686 // 2. If the MSID is included, then it must be included in any subsequent
3687 // offer/answer exactly the same until the RtpTransceiver is stopped.
3688 if (!transceiver->stopped() &&
3689 (RtpTransceiverDirectionHasSend(transceiver->direction()) ||
3690 transceiver->internal()->has_ever_been_used_to_send())) {
3691 cricket::SenderOptions sender_options;
3692 sender_options.track_id = transceiver->sender()->id();
3693 sender_options.stream_ids = transceiver->sender()->stream_ids();
3694 // TODO(bugs.webrtc.org/7600): Set num_sim_layers to the number of encodings
3695 // set in the RTP parameters when the transceiver was added.
3696 sender_options.num_sim_layers = 1;
3697 media_description_options.sender_options.push_back(sender_options);
3698 }
Steve Antondcc3c022017-12-22 16:02:54 -08003699 return media_description_options;
3700}
3701
3702void PeerConnection::GetOptionsForUnifiedPlanOffer(
3703 const RTCOfferAnswerOptions& offer_answer_options,
3704 cricket::MediaSessionOptions* session_options) {
3705 // Rules for generating an offer are dictated by JSEP sections 5.2.1 (Initial
3706 // Offers) and 5.2.2 (Subsequent Offers).
3707 RTC_DCHECK_EQ(session_options->media_description_options.size(), 0);
3708 const ContentInfos& local_contents =
3709 (local_description() ? local_description()->description()->contents()
3710 : ContentInfos());
3711 const ContentInfos& remote_contents =
3712 (remote_description() ? remote_description()->description()->contents()
3713 : ContentInfos());
3714 // The mline indices that can be recycled. New transceivers should reuse these
3715 // slots first.
3716 std::queue<size_t> recycleable_mline_indices;
3717 // Track the MIDs used in previous offer/answer exchanges and the current
3718 // offer so that new, unique MIDs are generated.
3719 std::set<std::string> used_mids = seen_mids_;
3720 // First, go through each media section that exists in either the local or
3721 // remote description and generate a media section in this offer for the
3722 // associated transceiver. If a media section can be recycled, generate a
3723 // default, rejected media section here that can be later overwritten.
3724 for (size_t i = 0;
3725 i < std::max(local_contents.size(), remote_contents.size()); ++i) {
3726 // Either |local_content| or |remote_content| is non-null.
3727 const ContentInfo* local_content =
3728 (i < local_contents.size() ? &local_contents[i] : nullptr);
3729 const ContentInfo* remote_content =
3730 (i < remote_contents.size() ? &remote_contents[i] : nullptr);
3731 bool had_been_rejected = (local_content && local_content->rejected) ||
3732 (remote_content && remote_content->rejected);
3733 const std::string& mid =
3734 (local_content ? local_content->name : remote_content->name);
3735 cricket::MediaType media_type =
3736 (local_content ? local_content->media_description()->type()
3737 : remote_content->media_description()->type());
3738 if (media_type == cricket::MEDIA_TYPE_AUDIO ||
3739 media_type == cricket::MEDIA_TYPE_VIDEO) {
3740 auto transceiver = GetAssociatedTransceiver(mid);
3741 RTC_CHECK(transceiver);
3742 // A media section is considered eligible for recycling if it is marked as
3743 // rejected in either the local or remote description.
Seth Hampsonae8a90a2018-02-13 15:33:48 -08003744 if (had_been_rejected && transceiver->stopped()) {
Steve Antondcc3c022017-12-22 16:02:54 -08003745 session_options->media_description_options.push_back(
Steve Anton69470252018-02-09 11:43:08 -08003746 cricket::MediaDescriptionOptions(transceiver->media_type(), mid,
3747 RtpTransceiverDirection::kInactive,
3748 /*stopped=*/true));
Steve Antondcc3c022017-12-22 16:02:54 -08003749 recycleable_mline_indices.push(i);
3750 } else {
3751 session_options->media_description_options.push_back(
3752 GetMediaDescriptionOptionsForTransceiver(transceiver, mid));
3753 // CreateOffer shouldn't really cause any state changes in
3754 // PeerConnection, but we need a way to match new transceivers to new
3755 // media sections in SetLocalDescription and JSEP specifies this is done
3756 // by recording the index of the media section generated for the
3757 // transceiver in the offer.
3758 transceiver->internal()->set_mline_index(i);
3759 }
3760 } else {
3761 RTC_CHECK_EQ(cricket::MEDIA_TYPE_DATA, media_type);
Steve Antonfa2260d2017-12-28 16:38:23 -08003762 RTC_CHECK(GetDataMid());
3763 if (had_been_rejected || mid != *GetDataMid()) {
3764 session_options->media_description_options.push_back(
3765 GetMediaDescriptionOptionsForRejectedData(mid));
3766 } else {
3767 session_options->media_description_options.push_back(
3768 GetMediaDescriptionOptionsForActiveData(mid));
3769 }
Steve Antondcc3c022017-12-22 16:02:54 -08003770 }
3771 }
3772 // Next, look for transceivers that are newly added (that is, are not stopped
3773 // and not associated). Reuse media sections marked as recyclable first,
3774 // otherwise append to the end of the offer. New media sections should be
3775 // added in the order they were added to the PeerConnection.
3776 for (auto transceiver : transceivers_) {
3777 if (transceiver->mid() || transceiver->stopped()) {
3778 continue;
3779 }
3780 size_t mline_index;
3781 if (!recycleable_mline_indices.empty()) {
3782 mline_index = recycleable_mline_indices.front();
3783 recycleable_mline_indices.pop();
3784 session_options->media_description_options[mline_index] =
3785 GetMediaDescriptionOptionsForTransceiver(transceiver,
3786 AllocateMid(&used_mids));
3787 } else {
3788 mline_index = session_options->media_description_options.size();
3789 session_options->media_description_options.push_back(
3790 GetMediaDescriptionOptionsForTransceiver(transceiver,
3791 AllocateMid(&used_mids)));
3792 }
3793 // See comment above for why CreateOffer changes the transceiver's state.
3794 transceiver->internal()->set_mline_index(mline_index);
3795 }
Steve Antonfa2260d2017-12-28 16:38:23 -08003796 // Lastly, add a m-section if we have local data channels and an m section
3797 // does not already exist.
3798 if (!GetDataMid() && HasDataChannels()) {
3799 session_options->media_description_options.push_back(
3800 GetMediaDescriptionOptionsForActiveData(AllocateMid(&used_mids)));
3801 }
Steve Antondcc3c022017-12-22 16:02:54 -08003802}
3803
3804void PeerConnection::GetOptionsForAnswer(
3805 const RTCOfferAnswerOptions& offer_answer_options,
3806 cricket::MediaSessionOptions* session_options) {
3807 ExtractSharedMediaSessionOptions(offer_answer_options, session_options);
3808
3809 if (IsUnifiedPlan()) {
3810 GetOptionsForUnifiedPlanAnswer(offer_answer_options, session_options);
3811 } else {
3812 GetOptionsForPlanBAnswer(offer_answer_options, session_options);
3813 }
3814
Steve Antonfa2260d2017-12-28 16:38:23 -08003815 // Intentionally unset the data channel type for RTP data channel. Otherwise
3816 // the RTP data channels would be successfully negotiated by default and the
3817 // unit tests in WebRtcDataBrowserTest will fail when building with chromium.
3818 // We want to leave RTP data channels broken, so people won't try to use them.
3819 if (!rtp_data_channels_.empty() || data_channel_type() != cricket::DCT_RTP) {
3820 session_options->data_channel_type = data_channel_type();
3821 }
3822
Steve Antondcc3c022017-12-22 16:02:54 -08003823 // Apply ICE renomination flag.
3824 for (auto& options : session_options->media_description_options) {
3825 options.transport_options.enable_ice_renomination =
3826 configuration_.enable_ice_renomination;
3827 }
zhihuang8f65cdf2016-05-06 18:40:30 -07003828
3829 session_options->rtcp_cname = rtcp_cname_;
jbauchcb560652016-08-04 05:20:32 -07003830 session_options->crypto_options = factory_->options().crypto_options;
Steve Antone831b8c2018-02-01 12:22:16 -08003831 session_options->is_unified_plan = IsUnifiedPlan();
deadbeefab9b2d12015-10-14 11:33:11 -07003832}
3833
Steve Antondcc3c022017-12-22 16:02:54 -08003834void PeerConnection::GetOptionsForPlanBAnswer(
3835 const PeerConnectionInterface::RTCOfferAnswerOptions& offer_answer_options,
Honghai Zhang4cedf2b2016-08-31 08:18:11 -07003836 cricket::MediaSessionOptions* session_options) {
zhihuang1c378ed2017-08-17 14:10:50 -07003837 // Figure out transceiver directional preferences.
3838 bool send_audio = HasRtpSender(cricket::MEDIA_TYPE_AUDIO);
3839 bool send_video = HasRtpSender(cricket::MEDIA_TYPE_VIDEO);
3840
3841 // By default, generate sendrecv/recvonly m= sections. The direction is also
3842 // restricted by the direction in the offer.
3843 bool recv_audio = true;
3844 bool recv_video = true;
3845
3846 // The "offer_to_receive_X" options allow those defaults to be overridden.
Steve Antondcc3c022017-12-22 16:02:54 -08003847 if (offer_answer_options.offer_to_receive_audio !=
3848 RTCOfferAnswerOptions::kUndefined) {
3849 recv_audio = (offer_answer_options.offer_to_receive_audio > 0);
deadbeef0ed85b22016-02-23 17:24:52 -08003850 }
Steve Antondcc3c022017-12-22 16:02:54 -08003851 if (offer_answer_options.offer_to_receive_video !=
3852 RTCOfferAnswerOptions::kUndefined) {
3853 recv_video = (offer_answer_options.offer_to_receive_video > 0);
zhihuang1c378ed2017-08-17 14:10:50 -07003854 }
3855
3856 rtc::Optional<size_t> audio_index;
3857 rtc::Optional<size_t> video_index;
3858 rtc::Optional<size_t> data_index;
Steve Antondffead82018-02-06 10:31:29 -08003859
3860 // Generate m= sections that match those in the offer.
3861 // Note that mediasession.cc will handle intersection our preferred
3862 // direction with the offered direction.
3863 GenerateMediaDescriptionOptions(
3864 remote_description(),
3865 RtpTransceiverDirectionFromSendRecv(send_audio, recv_audio),
3866 RtpTransceiverDirectionFromSendRecv(send_video, recv_video), &audio_index,
3867 &video_index, &data_index, session_options);
zhihuang1c378ed2017-08-17 14:10:50 -07003868
3869 cricket::MediaDescriptionOptions* audio_media_description_options =
3870 !audio_index ? nullptr
3871 : &session_options->media_description_options[*audio_index];
3872 cricket::MediaDescriptionOptions* video_media_description_options =
3873 !video_index ? nullptr
3874 : &session_options->media_description_options[*video_index];
zhihuang1c378ed2017-08-17 14:10:50 -07003875
Steve Anton4171afb2017-11-20 10:20:22 -08003876 AddRtpSenderOptions(GetSendersInternal(), audio_media_description_options,
zhihuang1c378ed2017-08-17 14:10:50 -07003877 video_media_description_options);
Steve Antondcc3c022017-12-22 16:02:54 -08003878}
zhihuangaf388472016-11-02 16:49:48 -07003879
Steve Antondcc3c022017-12-22 16:02:54 -08003880void PeerConnection::GetOptionsForUnifiedPlanAnswer(
3881 const PeerConnectionInterface::RTCOfferAnswerOptions& offer_answer_options,
3882 cricket::MediaSessionOptions* session_options) {
3883 // Rules for generating an answer are dictated by JSEP sections 5.3.1 (Initial
3884 // Answers) and 5.3.2 (Subsequent Answers).
3885 RTC_DCHECK(remote_description());
3886 RTC_DCHECK(remote_description()->GetType() == SdpType::kOffer);
3887 for (const ContentInfo& content :
3888 remote_description()->description()->contents()) {
3889 cricket::MediaType media_type = content.media_description()->type();
3890 if (media_type == cricket::MEDIA_TYPE_AUDIO ||
3891 media_type == cricket::MEDIA_TYPE_VIDEO) {
3892 auto transceiver = GetAssociatedTransceiver(content.name);
3893 RTC_CHECK(transceiver);
3894 session_options->media_description_options.push_back(
3895 GetMediaDescriptionOptionsForTransceiver(transceiver, content.name));
3896 } else {
3897 RTC_CHECK_EQ(cricket::MEDIA_TYPE_DATA, media_type);
Steve Antondbf9d032018-01-19 15:23:40 -08003898 // Reject all data sections if data channels are disabled.
3899 // Reject a data section if it has already been rejected.
3900 // Reject all data sections except for the first one.
3901 if (data_channel_type_ == cricket::DCT_NONE || content.rejected ||
3902 content.name != *GetDataMid()) {
Steve Antonfa2260d2017-12-28 16:38:23 -08003903 session_options->media_description_options.push_back(
3904 GetMediaDescriptionOptionsForRejectedData(content.name));
3905 } else {
3906 session_options->media_description_options.push_back(
3907 GetMediaDescriptionOptionsForActiveData(content.name));
3908 }
Steve Antondcc3c022017-12-22 16:02:54 -08003909 }
3910 }
htaa2a49d92016-03-04 02:51:39 -08003911}
3912
zhihuang1c378ed2017-08-17 14:10:50 -07003913void PeerConnection::GenerateMediaDescriptionOptions(
3914 const SessionDescriptionInterface* session_desc,
Steve Anton1d03a752017-11-27 14:30:09 -08003915 RtpTransceiverDirection audio_direction,
3916 RtpTransceiverDirection video_direction,
zhihuang1c378ed2017-08-17 14:10:50 -07003917 rtc::Optional<size_t>* audio_index,
3918 rtc::Optional<size_t>* video_index,
3919 rtc::Optional<size_t>* data_index,
htaa2a49d92016-03-04 02:51:39 -08003920 cricket::MediaSessionOptions* session_options) {
zhihuang1c378ed2017-08-17 14:10:50 -07003921 for (const cricket::ContentInfo& content :
3922 session_desc->description()->contents()) {
3923 if (IsAudioContent(&content)) {
3924 // If we already have an audio m= section, reject this extra one.
3925 if (*audio_index) {
3926 session_options->media_description_options.push_back(
3927 cricket::MediaDescriptionOptions(
3928 cricket::MEDIA_TYPE_AUDIO, content.name,
Steve Anton1d03a752017-11-27 14:30:09 -08003929 RtpTransceiverDirection::kInactive, true));
zhihuang1c378ed2017-08-17 14:10:50 -07003930 } else {
3931 session_options->media_description_options.push_back(
3932 cricket::MediaDescriptionOptions(
3933 cricket::MEDIA_TYPE_AUDIO, content.name, audio_direction,
Steve Anton1d03a752017-11-27 14:30:09 -08003934 audio_direction == RtpTransceiverDirection::kInactive));
Oskar Sundbom9b28a032017-11-16 10:53:30 +01003935 *audio_index = session_options->media_description_options.size() - 1;
zhihuang1c378ed2017-08-17 14:10:50 -07003936 }
3937 } else if (IsVideoContent(&content)) {
3938 // If we already have an video m= section, reject this extra one.
3939 if (*video_index) {
3940 session_options->media_description_options.push_back(
3941 cricket::MediaDescriptionOptions(
3942 cricket::MEDIA_TYPE_VIDEO, content.name,
Steve Anton1d03a752017-11-27 14:30:09 -08003943 RtpTransceiverDirection::kInactive, true));
zhihuang1c378ed2017-08-17 14:10:50 -07003944 } else {
3945 session_options->media_description_options.push_back(
3946 cricket::MediaDescriptionOptions(
3947 cricket::MEDIA_TYPE_VIDEO, content.name, video_direction,
Steve Anton1d03a752017-11-27 14:30:09 -08003948 video_direction == RtpTransceiverDirection::kInactive));
Oskar Sundbom9b28a032017-11-16 10:53:30 +01003949 *video_index = session_options->media_description_options.size() - 1;
zhihuang1c378ed2017-08-17 14:10:50 -07003950 }
3951 } else {
3952 RTC_DCHECK(IsDataContent(&content));
3953 // If we already have an data m= section, reject this extra one.
3954 if (*data_index) {
3955 session_options->media_description_options.push_back(
Steve Antonfa2260d2017-12-28 16:38:23 -08003956 GetMediaDescriptionOptionsForRejectedData(content.name));
zhihuang1c378ed2017-08-17 14:10:50 -07003957 } else {
3958 session_options->media_description_options.push_back(
Steve Antonfa2260d2017-12-28 16:38:23 -08003959 GetMediaDescriptionOptionsForActiveData(content.name));
Oskar Sundbom9b28a032017-11-16 10:53:30 +01003960 *data_index = session_options->media_description_options.size() - 1;
zhihuang1c378ed2017-08-17 14:10:50 -07003961 }
3962 }
htaa2a49d92016-03-04 02:51:39 -08003963 }
deadbeefab9b2d12015-10-14 11:33:11 -07003964}
3965
Steve Antonfa2260d2017-12-28 16:38:23 -08003966cricket::MediaDescriptionOptions
3967PeerConnection::GetMediaDescriptionOptionsForActiveData(
3968 const std::string& mid) const {
3969 // Direction for data sections is meaningless, but legacy endpoints might
3970 // expect sendrecv.
3971 cricket::MediaDescriptionOptions options(cricket::MEDIA_TYPE_DATA, mid,
3972 RtpTransceiverDirection::kSendRecv,
3973 /*stopped=*/false);
3974 AddRtpDataChannelOptions(rtp_data_channels_, &options);
3975 return options;
3976}
3977
3978cricket::MediaDescriptionOptions
3979PeerConnection::GetMediaDescriptionOptionsForRejectedData(
3980 const std::string& mid) const {
3981 cricket::MediaDescriptionOptions options(cricket::MEDIA_TYPE_DATA, mid,
3982 RtpTransceiverDirection::kInactive,
3983 /*stopped=*/true);
3984 AddRtpDataChannelOptions(rtp_data_channels_, &options);
3985 return options;
3986}
3987
3988rtc::Optional<std::string> PeerConnection::GetDataMid() const {
3989 switch (data_channel_type_) {
3990 case cricket::DCT_RTP:
3991 if (!rtp_data_channel_) {
3992 return rtc::nullopt;
3993 }
3994 return rtp_data_channel_->content_name();
3995 case cricket::DCT_SCTP:
Zhi Huange830e682018-03-30 10:48:35 -07003996 return sctp_mid_;
Steve Antonfa2260d2017-12-28 16:38:23 -08003997 default:
3998 return rtc::nullopt;
3999 }
4000}
4001
Steve Anton4171afb2017-11-20 10:20:22 -08004002void PeerConnection::RemoveSenders(cricket::MediaType media_type) {
4003 UpdateLocalSenders(std::vector<cricket::StreamParams>(), media_type);
4004 UpdateRemoteSendersList(std::vector<cricket::StreamParams>(), false,
deadbeefbda7e0b2015-12-08 17:13:40 -08004005 media_type, nullptr);
deadbeeffaac4972015-11-12 15:33:07 -08004006}
4007
Steve Anton4171afb2017-11-20 10:20:22 -08004008void PeerConnection::UpdateRemoteSendersList(
deadbeefab9b2d12015-10-14 11:33:11 -07004009 const cricket::StreamParamsVec& streams,
Steve Anton4171afb2017-11-20 10:20:22 -08004010 bool default_sender_needed,
deadbeefab9b2d12015-10-14 11:33:11 -07004011 cricket::MediaType media_type,
4012 StreamCollection* new_streams) {
Seth Hampson5b4f0752018-04-02 16:31:36 -07004013 RTC_DCHECK(!IsUnifiedPlan());
4014
Steve Anton4171afb2017-11-20 10:20:22 -08004015 std::vector<RtpSenderInfo>* current_senders =
4016 GetRemoteSenderInfos(media_type);
deadbeefab9b2d12015-10-14 11:33:11 -07004017
Steve Anton4171afb2017-11-20 10:20:22 -08004018 // Find removed senders. I.e., senders where the sender id or ssrc don't match
deadbeeffac06552015-11-25 11:26:01 -08004019 // the new StreamParam.
Steve Anton4171afb2017-11-20 10:20:22 -08004020 for (auto sender_it = current_senders->begin();
4021 sender_it != current_senders->end();
4022 /* incremented manually */) {
4023 const RtpSenderInfo& info = *sender_it;
deadbeefab9b2d12015-10-14 11:33:11 -07004024 const cricket::StreamParams* params =
Steve Anton4171afb2017-11-20 10:20:22 -08004025 cricket::GetStreamBySsrc(streams, info.first_ssrc);
Seth Hampson83d676b2018-04-05 18:12:09 -07004026 std::string params_stream_id;
4027 if (params) {
4028 params_stream_id =
4029 (!params->first_stream_id().empty() ? params->first_stream_id()
4030 : kDefaultStreamId);
4031 }
Seth Hampson5b4f0752018-04-02 16:31:36 -07004032 bool sender_exists = params && params->id == info.sender_id &&
Seth Hampson83d676b2018-04-05 18:12:09 -07004033 params_stream_id == info.stream_id;
deadbeefbda7e0b2015-12-08 17:13:40 -08004034 // If this is a default track, and we still need it, don't remove it.
Seth Hampson845e8782018-03-02 11:34:10 -08004035 if ((info.stream_id == kDefaultStreamId && default_sender_needed) ||
Steve Anton4171afb2017-11-20 10:20:22 -08004036 sender_exists) {
4037 ++sender_it;
deadbeefbda7e0b2015-12-08 17:13:40 -08004038 } else {
Steve Anton4171afb2017-11-20 10:20:22 -08004039 OnRemoteSenderRemoved(info, media_type);
4040 sender_it = current_senders->erase(sender_it);
deadbeefab9b2d12015-10-14 11:33:11 -07004041 }
4042 }
4043
Steve Anton4171afb2017-11-20 10:20:22 -08004044 // Find new and active senders.
deadbeefab9b2d12015-10-14 11:33:11 -07004045 for (const cricket::StreamParams& params : streams) {
Seth Hampson5897a6e2018-04-03 11:16:33 -07004046 if (!params.has_ssrcs()) {
4047 // The remote endpoint has streams, but didn't signal ssrcs. For an active
4048 // sender, this means it is coming from a Unified Plan endpoint,so we just
4049 // create a default.
4050 default_sender_needed = true;
4051 break;
4052 }
4053
Seth Hampson845e8782018-03-02 11:34:10 -08004054 // |params.id| is the sender id and the stream id uses the first of
Seth Hampson5b4f0752018-04-02 16:31:36 -07004055 // |params.stream_ids|. The remote description could come from a Unified
Seth Hampson5897a6e2018-04-03 11:16:33 -07004056 // Plan endpoint, with multiple or no stream_ids() signaled. Since this is
4057 // not supported in Plan B, we just take the first here and create the
4058 // default stream ID if none is specified.
Seth Hampson845e8782018-03-02 11:34:10 -08004059 const std::string& stream_id =
Seth Hampson83d676b2018-04-05 18:12:09 -07004060 (!params.first_stream_id().empty() ? params.first_stream_id()
4061 : kDefaultStreamId);
Steve Anton4171afb2017-11-20 10:20:22 -08004062 const std::string& sender_id = params.id;
deadbeefab9b2d12015-10-14 11:33:11 -07004063 uint32_t ssrc = params.first_ssrc();
4064
4065 rtc::scoped_refptr<MediaStreamInterface> stream =
Seth Hampson845e8782018-03-02 11:34:10 -08004066 remote_streams_->find(stream_id);
deadbeefab9b2d12015-10-14 11:33:11 -07004067 if (!stream) {
4068 // This is a new MediaStream. Create a new remote MediaStream.
perkjd61bf802016-03-24 03:16:19 -07004069 stream = MediaStreamProxy::Create(rtc::Thread::Current(),
Seth Hampson845e8782018-03-02 11:34:10 -08004070 MediaStream::Create(stream_id));
deadbeefab9b2d12015-10-14 11:33:11 -07004071 remote_streams_->AddStream(stream);
4072 new_streams->AddStream(stream);
4073 }
4074
Steve Anton4171afb2017-11-20 10:20:22 -08004075 const RtpSenderInfo* sender_info =
Emircan Uysalerbc609ea2018-03-27 21:57:18 +00004076 FindSenderInfo(*current_senders, stream_id, sender_id);
Steve Anton4171afb2017-11-20 10:20:22 -08004077 if (!sender_info) {
Seth Hampson845e8782018-03-02 11:34:10 -08004078 current_senders->push_back(RtpSenderInfo(stream_id, sender_id, ssrc));
Steve Anton4171afb2017-11-20 10:20:22 -08004079 OnRemoteSenderAdded(current_senders->back(), media_type);
deadbeefab9b2d12015-10-14 11:33:11 -07004080 }
4081 }
deadbeefbda7e0b2015-12-08 17:13:40 -08004082
Steve Anton4171afb2017-11-20 10:20:22 -08004083 // Add default sender if necessary.
4084 if (default_sender_needed) {
deadbeefbda7e0b2015-12-08 17:13:40 -08004085 rtc::scoped_refptr<MediaStreamInterface> default_stream =
Seth Hampson845e8782018-03-02 11:34:10 -08004086 remote_streams_->find(kDefaultStreamId);
deadbeefbda7e0b2015-12-08 17:13:40 -08004087 if (!default_stream) {
4088 // Create the new default MediaStream.
perkjd61bf802016-03-24 03:16:19 -07004089 default_stream = MediaStreamProxy::Create(
Seth Hampson845e8782018-03-02 11:34:10 -08004090 rtc::Thread::Current(), MediaStream::Create(kDefaultStreamId));
deadbeefbda7e0b2015-12-08 17:13:40 -08004091 remote_streams_->AddStream(default_stream);
4092 new_streams->AddStream(default_stream);
4093 }
Steve Anton4171afb2017-11-20 10:20:22 -08004094 std::string default_sender_id = (media_type == cricket::MEDIA_TYPE_AUDIO)
4095 ? kDefaultAudioSenderId
4096 : kDefaultVideoSenderId;
Seth Hampson845e8782018-03-02 11:34:10 -08004097 const RtpSenderInfo* default_sender_info =
Emircan Uysalerbc609ea2018-03-27 21:57:18 +00004098 FindSenderInfo(*current_senders, kDefaultStreamId, default_sender_id);
Steve Anton4171afb2017-11-20 10:20:22 -08004099 if (!default_sender_info) {
4100 current_senders->push_back(
Seth Hampson845e8782018-03-02 11:34:10 -08004101 RtpSenderInfo(kDefaultStreamId, default_sender_id, 0));
Steve Anton4171afb2017-11-20 10:20:22 -08004102 OnRemoteSenderAdded(current_senders->back(), media_type);
deadbeefbda7e0b2015-12-08 17:13:40 -08004103 }
4104 }
deadbeefab9b2d12015-10-14 11:33:11 -07004105}
4106
Steve Anton4171afb2017-11-20 10:20:22 -08004107void PeerConnection::OnRemoteSenderAdded(const RtpSenderInfo& sender_info,
4108 cricket::MediaType media_type) {
Steve Anton3d954a62018-04-02 11:27:23 -07004109 RTC_LOG(LS_INFO) << "Creating " << cricket::MediaTypeToString(media_type)
4110 << " receiver for track_id=" << sender_info.sender_id
4111 << " and stream_id=" << sender_info.stream_id;
deadbeefab9b2d12015-10-14 11:33:11 -07004112
Steve Anton3d954a62018-04-02 11:27:23 -07004113 MediaStreamInterface* stream = remote_streams_->find(sender_info.stream_id);
deadbeefab9b2d12015-10-14 11:33:11 -07004114 if (media_type == cricket::MEDIA_TYPE_AUDIO) {
Steve Anton4171afb2017-11-20 10:20:22 -08004115 CreateAudioReceiver(stream, sender_info);
deadbeefab9b2d12015-10-14 11:33:11 -07004116 } else if (media_type == cricket::MEDIA_TYPE_VIDEO) {
Steve Anton4171afb2017-11-20 10:20:22 -08004117 CreateVideoReceiver(stream, sender_info);
deadbeefab9b2d12015-10-14 11:33:11 -07004118 } else {
nisseeb4ca4e2017-01-12 02:24:27 -08004119 RTC_NOTREACHED() << "Invalid media type";
deadbeefab9b2d12015-10-14 11:33:11 -07004120 }
4121}
4122
Steve Anton4171afb2017-11-20 10:20:22 -08004123void PeerConnection::OnRemoteSenderRemoved(const RtpSenderInfo& sender_info,
4124 cricket::MediaType media_type) {
Seth Hampson83d676b2018-04-05 18:12:09 -07004125 RTC_LOG(LS_INFO) << "Removing " << cricket::MediaTypeToString(media_type)
4126 << " receiver for track_id=" << sender_info.sender_id
4127 << " and stream_id=" << sender_info.stream_id;
4128
Seth Hampson845e8782018-03-02 11:34:10 -08004129 MediaStreamInterface* stream = remote_streams_->find(sender_info.stream_id);
deadbeefab9b2d12015-10-14 11:33:11 -07004130
Henrik Boström933d8b02017-10-10 10:05:16 -07004131 rtc::scoped_refptr<RtpReceiverInterface> receiver;
deadbeefab9b2d12015-10-14 11:33:11 -07004132 if (media_type == cricket::MEDIA_TYPE_AUDIO) {
perkjd61bf802016-03-24 03:16:19 -07004133 // When the MediaEngine audio channel is destroyed, the RemoteAudioSource
4134 // will be notified which will end the AudioRtpReceiver::track().
Steve Anton4171afb2017-11-20 10:20:22 -08004135 receiver = RemoveAndStopReceiver(sender_info);
deadbeefab9b2d12015-10-14 11:33:11 -07004136 rtc::scoped_refptr<AudioTrackInterface> audio_track =
Steve Anton4171afb2017-11-20 10:20:22 -08004137 stream->FindAudioTrack(sender_info.sender_id);
deadbeefab9b2d12015-10-14 11:33:11 -07004138 if (audio_track) {
deadbeefab9b2d12015-10-14 11:33:11 -07004139 stream->RemoveTrack(audio_track);
deadbeefab9b2d12015-10-14 11:33:11 -07004140 }
4141 } else if (media_type == cricket::MEDIA_TYPE_VIDEO) {
perkjd61bf802016-03-24 03:16:19 -07004142 // Stopping or destroying a VideoRtpReceiver will end the
4143 // VideoRtpReceiver::track().
Steve Anton4171afb2017-11-20 10:20:22 -08004144 receiver = RemoveAndStopReceiver(sender_info);
deadbeefab9b2d12015-10-14 11:33:11 -07004145 rtc::scoped_refptr<VideoTrackInterface> video_track =
Steve Anton4171afb2017-11-20 10:20:22 -08004146 stream->FindVideoTrack(sender_info.sender_id);
deadbeefab9b2d12015-10-14 11:33:11 -07004147 if (video_track) {
perkjd61bf802016-03-24 03:16:19 -07004148 // There's no guarantee the track is still available, e.g. the track may
4149 // have been removed from the stream by an application.
deadbeefab9b2d12015-10-14 11:33:11 -07004150 stream->RemoveTrack(video_track);
deadbeefab9b2d12015-10-14 11:33:11 -07004151 }
4152 } else {
nisseede5da42017-01-12 05:15:36 -08004153 RTC_NOTREACHED() << "Invalid media type";
deadbeefab9b2d12015-10-14 11:33:11 -07004154 }
Henrik Boström933d8b02017-10-10 10:05:16 -07004155 if (receiver) {
4156 observer_->OnRemoveTrack(receiver);
4157 }
deadbeefab9b2d12015-10-14 11:33:11 -07004158}
4159
4160void PeerConnection::UpdateEndedRemoteMediaStreams() {
4161 std::vector<rtc::scoped_refptr<MediaStreamInterface>> streams_to_remove;
4162 for (size_t i = 0; i < remote_streams_->count(); ++i) {
4163 MediaStreamInterface* stream = remote_streams_->at(i);
4164 if (stream->GetAudioTracks().empty() && stream->GetVideoTracks().empty()) {
4165 streams_to_remove.push_back(stream);
4166 }
4167 }
4168
Taylor Brandstetter98cde262016-05-31 13:02:21 -07004169 for (auto& stream : streams_to_remove) {
deadbeefab9b2d12015-10-14 11:33:11 -07004170 remote_streams_->RemoveStream(stream);
Taylor Brandstetter98cde262016-05-31 13:02:21 -07004171 observer_->OnRemoveStream(std::move(stream));
deadbeefab9b2d12015-10-14 11:33:11 -07004172 }
4173}
4174
Steve Anton4171afb2017-11-20 10:20:22 -08004175void PeerConnection::UpdateLocalSenders(
deadbeefab9b2d12015-10-14 11:33:11 -07004176 const std::vector<cricket::StreamParams>& streams,
4177 cricket::MediaType media_type) {
Steve Anton4171afb2017-11-20 10:20:22 -08004178 std::vector<RtpSenderInfo>* current_senders = GetLocalSenderInfos(media_type);
deadbeefab9b2d12015-10-14 11:33:11 -07004179
Seth Hampson845e8782018-03-02 11:34:10 -08004180 // Find removed tracks. I.e., tracks where the track id, stream id or ssrc
deadbeefab9b2d12015-10-14 11:33:11 -07004181 // don't match the new StreamParam.
Steve Anton4171afb2017-11-20 10:20:22 -08004182 for (auto sender_it = current_senders->begin();
4183 sender_it != current_senders->end();
4184 /* incremented manually */) {
4185 const RtpSenderInfo& info = *sender_it;
deadbeefab9b2d12015-10-14 11:33:11 -07004186 const cricket::StreamParams* params =
Steve Anton4171afb2017-11-20 10:20:22 -08004187 cricket::GetStreamBySsrc(streams, info.first_ssrc);
4188 if (!params || params->id != info.sender_id ||
Seth Hampson845e8782018-03-02 11:34:10 -08004189 params->first_stream_id() != info.stream_id) {
Steve Anton4171afb2017-11-20 10:20:22 -08004190 OnLocalSenderRemoved(info, media_type);
4191 sender_it = current_senders->erase(sender_it);
deadbeefab9b2d12015-10-14 11:33:11 -07004192 } else {
Steve Anton4171afb2017-11-20 10:20:22 -08004193 ++sender_it;
deadbeefab9b2d12015-10-14 11:33:11 -07004194 }
4195 }
4196
Steve Anton4171afb2017-11-20 10:20:22 -08004197 // Find new and active senders.
deadbeefab9b2d12015-10-14 11:33:11 -07004198 for (const cricket::StreamParams& params : streams) {
4199 // The sync_label is the MediaStream label and the |stream.id| is the
Steve Anton4171afb2017-11-20 10:20:22 -08004200 // sender id.
Seth Hampson845e8782018-03-02 11:34:10 -08004201 const std::string& stream_id = params.first_stream_id();
Steve Anton4171afb2017-11-20 10:20:22 -08004202 const std::string& sender_id = params.id;
deadbeefab9b2d12015-10-14 11:33:11 -07004203 uint32_t ssrc = params.first_ssrc();
Steve Anton4171afb2017-11-20 10:20:22 -08004204 const RtpSenderInfo* sender_info =
Emircan Uysalerbc609ea2018-03-27 21:57:18 +00004205 FindSenderInfo(*current_senders, stream_id, sender_id);
Steve Anton4171afb2017-11-20 10:20:22 -08004206 if (!sender_info) {
Seth Hampson845e8782018-03-02 11:34:10 -08004207 current_senders->push_back(RtpSenderInfo(stream_id, sender_id, ssrc));
Steve Anton4171afb2017-11-20 10:20:22 -08004208 OnLocalSenderAdded(current_senders->back(), media_type);
deadbeefab9b2d12015-10-14 11:33:11 -07004209 }
4210 }
4211}
4212
Steve Anton4171afb2017-11-20 10:20:22 -08004213void PeerConnection::OnLocalSenderAdded(const RtpSenderInfo& sender_info,
4214 cricket::MediaType media_type) {
Seth Hampson5b4f0752018-04-02 16:31:36 -07004215 RTC_DCHECK(!IsUnifiedPlan());
Steve Anton4171afb2017-11-20 10:20:22 -08004216 auto sender = FindSenderById(sender_info.sender_id);
deadbeeffac06552015-11-25 11:26:01 -08004217 if (!sender) {
Steve Anton4171afb2017-11-20 10:20:22 -08004218 RTC_LOG(LS_WARNING) << "An unknown RtpSender with id "
4219 << sender_info.sender_id
Mirko Bonadei675513b2017-11-09 11:09:25 +01004220 << " has been configured in the local description.";
deadbeefab9b2d12015-10-14 11:33:11 -07004221 return;
4222 }
4223
deadbeeffac06552015-11-25 11:26:01 -08004224 if (sender->media_type() != media_type) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01004225 RTC_LOG(LS_WARNING) << "An RtpSender has been configured in the local"
Jonas Olsson45cc8902018-02-13 10:37:07 +01004226 " description with an unexpected media type.";
deadbeeffac06552015-11-25 11:26:01 -08004227 return;
deadbeefab9b2d12015-10-14 11:33:11 -07004228 }
deadbeeffac06552015-11-25 11:26:01 -08004229
Seth Hampson5b4f0752018-04-02 16:31:36 -07004230 sender->internal()->set_stream_ids({sender_info.stream_id});
Steve Anton4171afb2017-11-20 10:20:22 -08004231 sender->internal()->SetSsrc(sender_info.first_ssrc);
deadbeefab9b2d12015-10-14 11:33:11 -07004232}
4233
Steve Anton4171afb2017-11-20 10:20:22 -08004234void PeerConnection::OnLocalSenderRemoved(const RtpSenderInfo& sender_info,
4235 cricket::MediaType media_type) {
4236 auto sender = FindSenderById(sender_info.sender_id);
deadbeeffac06552015-11-25 11:26:01 -08004237 if (!sender) {
4238 // This is the normal case. I.e., RemoveStream has been called and the
deadbeefab9b2d12015-10-14 11:33:11 -07004239 // SessionDescriptions has been renegotiated.
4240 return;
4241 }
deadbeeffac06552015-11-25 11:26:01 -08004242
4243 // A sender has been removed from the SessionDescription but it's still
4244 // associated with the PeerConnection. This only occurs if the SDP doesn't
4245 // match with the calls to CreateSender, AddStream and RemoveStream.
4246 if (sender->media_type() != media_type) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01004247 RTC_LOG(LS_WARNING) << "An RtpSender has been configured in the local"
Jonas Olsson45cc8902018-02-13 10:37:07 +01004248 " description with an unexpected media type.";
deadbeeffac06552015-11-25 11:26:01 -08004249 return;
deadbeefab9b2d12015-10-14 11:33:11 -07004250 }
deadbeeffac06552015-11-25 11:26:01 -08004251
Steve Anton4171afb2017-11-20 10:20:22 -08004252 sender->internal()->SetSsrc(0);
deadbeefab9b2d12015-10-14 11:33:11 -07004253}
4254
4255void PeerConnection::UpdateLocalRtpDataChannels(
4256 const cricket::StreamParamsVec& streams) {
4257 std::vector<std::string> existing_channels;
4258
4259 // Find new and active data channels.
4260 for (const cricket::StreamParams& params : streams) {
4261 // |it->sync_label| is actually the data channel label. The reason is that
4262 // we use the same naming of data channels as we do for
4263 // MediaStreams and Tracks.
4264 // For MediaStreams, the sync_label is the MediaStream label and the
4265 // track label is the same as |streamid|.
Seth Hampson845e8782018-03-02 11:34:10 -08004266 const std::string& channel_label = params.first_stream_id();
deadbeefab9b2d12015-10-14 11:33:11 -07004267 auto data_channel_it = rtp_data_channels_.find(channel_label);
nisse7ce109a2017-01-31 00:57:56 -08004268 if (data_channel_it == rtp_data_channels_.end()) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01004269 RTC_LOG(LS_ERROR) << "channel label not found";
deadbeefab9b2d12015-10-14 11:33:11 -07004270 continue;
4271 }
4272 // Set the SSRC the data channel should use for sending.
4273 data_channel_it->second->SetSendSsrc(params.first_ssrc());
4274 existing_channels.push_back(data_channel_it->first);
4275 }
4276
4277 UpdateClosingRtpDataChannels(existing_channels, true);
4278}
4279
4280void PeerConnection::UpdateRemoteRtpDataChannels(
4281 const cricket::StreamParamsVec& streams) {
4282 std::vector<std::string> existing_channels;
4283
4284 // Find new and active data channels.
4285 for (const cricket::StreamParams& params : streams) {
4286 // The data channel label is either the mslabel or the SSRC if the mslabel
4287 // does not exist. Ex a=ssrc:444330170 mslabel:test1.
Seth Hampson845e8782018-03-02 11:34:10 -08004288 std::string label = params.first_stream_id().empty()
deadbeefab9b2d12015-10-14 11:33:11 -07004289 ? rtc::ToString(params.first_ssrc())
Seth Hampson845e8782018-03-02 11:34:10 -08004290 : params.first_stream_id();
deadbeefab9b2d12015-10-14 11:33:11 -07004291 auto data_channel_it = rtp_data_channels_.find(label);
4292 if (data_channel_it == rtp_data_channels_.end()) {
4293 // This is a new data channel.
4294 CreateRemoteRtpDataChannel(label, params.first_ssrc());
4295 } else {
4296 data_channel_it->second->SetReceiveSsrc(params.first_ssrc());
4297 }
4298 existing_channels.push_back(label);
4299 }
4300
4301 UpdateClosingRtpDataChannels(existing_channels, false);
4302}
4303
4304void PeerConnection::UpdateClosingRtpDataChannels(
4305 const std::vector<std::string>& active_channels,
4306 bool is_local_update) {
4307 auto it = rtp_data_channels_.begin();
4308 while (it != rtp_data_channels_.end()) {
4309 DataChannel* data_channel = it->second;
4310 if (std::find(active_channels.begin(), active_channels.end(),
4311 data_channel->label()) != active_channels.end()) {
4312 ++it;
4313 continue;
4314 }
4315
4316 if (is_local_update) {
4317 data_channel->SetSendSsrc(0);
4318 } else {
4319 data_channel->RemotePeerRequestClose();
4320 }
4321
4322 if (data_channel->state() == DataChannel::kClosed) {
4323 rtp_data_channels_.erase(it);
4324 it = rtp_data_channels_.begin();
4325 } else {
4326 ++it;
4327 }
4328 }
4329}
4330
4331void PeerConnection::CreateRemoteRtpDataChannel(const std::string& label,
4332 uint32_t remote_ssrc) {
4333 rtc::scoped_refptr<DataChannel> channel(
4334 InternalCreateDataChannel(label, nullptr));
4335 if (!channel.get()) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01004336 RTC_LOG(LS_WARNING) << "Remote peer requested a DataChannel but"
Jonas Olsson45cc8902018-02-13 10:37:07 +01004337 "CreateDataChannel failed.";
deadbeefab9b2d12015-10-14 11:33:11 -07004338 return;
4339 }
4340 channel->SetReceiveSsrc(remote_ssrc);
deadbeefa601f5c2016-06-06 14:27:39 -07004341 rtc::scoped_refptr<DataChannelInterface> proxy_channel =
4342 DataChannelProxy::Create(signaling_thread(), channel);
Taylor Brandstetter98cde262016-05-31 13:02:21 -07004343 observer_->OnDataChannel(std::move(proxy_channel));
deadbeefab9b2d12015-10-14 11:33:11 -07004344}
4345
4346rtc::scoped_refptr<DataChannel> PeerConnection::InternalCreateDataChannel(
4347 const std::string& label,
4348 const InternalDataChannelInit* config) {
4349 if (IsClosed()) {
4350 return nullptr;
4351 }
Steve Anton75737c02017-11-06 10:37:17 -08004352 if (data_channel_type() == cricket::DCT_NONE) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01004353 RTC_LOG(LS_ERROR)
deadbeefab9b2d12015-10-14 11:33:11 -07004354 << "InternalCreateDataChannel: Data is not supported in this call.";
4355 return nullptr;
4356 }
4357 InternalDataChannelInit new_config =
4358 config ? (*config) : InternalDataChannelInit();
Steve Anton75737c02017-11-06 10:37:17 -08004359 if (data_channel_type() == cricket::DCT_SCTP) {
deadbeefab9b2d12015-10-14 11:33:11 -07004360 if (new_config.id < 0) {
4361 rtc::SSLRole role;
Steve Anton75737c02017-11-06 10:37:17 -08004362 if ((GetSctpSslRole(&role)) &&
deadbeefab9b2d12015-10-14 11:33:11 -07004363 !sid_allocator_.AllocateSid(role, &new_config.id)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01004364 RTC_LOG(LS_ERROR)
4365 << "No id can be allocated for the SCTP data channel.";
deadbeefab9b2d12015-10-14 11:33:11 -07004366 return nullptr;
4367 }
4368 } else if (!sid_allocator_.ReserveSid(new_config.id)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01004369 RTC_LOG(LS_ERROR) << "Failed to create a SCTP data channel "
Jonas Olsson45cc8902018-02-13 10:37:07 +01004370 "because the id is already in use or out of range.";
deadbeefab9b2d12015-10-14 11:33:11 -07004371 return nullptr;
4372 }
4373 }
4374
Steve Anton75737c02017-11-06 10:37:17 -08004375 rtc::scoped_refptr<DataChannel> channel(
4376 DataChannel::Create(this, data_channel_type(), label, new_config));
deadbeefab9b2d12015-10-14 11:33:11 -07004377 if (!channel) {
4378 sid_allocator_.ReleaseSid(new_config.id);
4379 return nullptr;
4380 }
4381
4382 if (channel->data_channel_type() == cricket::DCT_RTP) {
4383 if (rtp_data_channels_.find(channel->label()) != rtp_data_channels_.end()) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01004384 RTC_LOG(LS_ERROR) << "DataChannel with label " << channel->label()
4385 << " already exists.";
deadbeefab9b2d12015-10-14 11:33:11 -07004386 return nullptr;
4387 }
4388 rtp_data_channels_[channel->label()] = channel;
4389 } else {
4390 RTC_DCHECK(channel->data_channel_type() == cricket::DCT_SCTP);
4391 sctp_data_channels_.push_back(channel);
4392 channel->SignalClosed.connect(this,
4393 &PeerConnection::OnSctpDataChannelClosed);
4394 }
4395
Steve Anton2d8609c2018-01-23 16:38:46 -08004396 SignalDataChannelCreated_(channel.get());
deadbeefab9b2d12015-10-14 11:33:11 -07004397 return channel;
4398}
4399
4400bool PeerConnection::HasDataChannels() const {
4401 return !rtp_data_channels_.empty() || !sctp_data_channels_.empty();
4402}
4403
4404void PeerConnection::AllocateSctpSids(rtc::SSLRole role) {
4405 for (const auto& channel : sctp_data_channels_) {
4406 if (channel->id() < 0) {
4407 int sid;
4408 if (!sid_allocator_.AllocateSid(role, &sid)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01004409 RTC_LOG(LS_ERROR) << "Failed to allocate SCTP sid.";
deadbeefab9b2d12015-10-14 11:33:11 -07004410 continue;
4411 }
4412 channel->SetSctpSid(sid);
4413 }
4414 }
4415}
4416
4417void PeerConnection::OnSctpDataChannelClosed(DataChannel* channel) {
deadbeefbd292462015-12-14 18:15:29 -08004418 RTC_DCHECK(signaling_thread()->IsCurrent());
deadbeefab9b2d12015-10-14 11:33:11 -07004419 for (auto it = sctp_data_channels_.begin(); it != sctp_data_channels_.end();
4420 ++it) {
4421 if (it->get() == channel) {
4422 if (channel->id() >= 0) {
4423 sid_allocator_.ReleaseSid(channel->id());
4424 }
deadbeefbd292462015-12-14 18:15:29 -08004425 // Since this method is triggered by a signal from the DataChannel,
4426 // we can't free it directly here; we need to free it asynchronously.
4427 sctp_data_channels_to_free_.push_back(*it);
deadbeefab9b2d12015-10-14 11:33:11 -07004428 sctp_data_channels_.erase(it);
Taylor Brandstetter5d97a9a2016-06-10 14:17:27 -07004429 signaling_thread()->Post(RTC_FROM_HERE, this, MSG_FREE_DATACHANNELS,
4430 nullptr);
deadbeefab9b2d12015-10-14 11:33:11 -07004431 return;
4432 }
4433 }
4434}
4435
deadbeefab9b2d12015-10-14 11:33:11 -07004436void PeerConnection::OnDataChannelDestroyed() {
4437 // Use a temporary copy of the RTP/SCTP DataChannel list because the
4438 // DataChannel may callback to us and try to modify the list.
4439 std::map<std::string, rtc::scoped_refptr<DataChannel>> temp_rtp_dcs;
4440 temp_rtp_dcs.swap(rtp_data_channels_);
4441 for (const auto& kv : temp_rtp_dcs) {
4442 kv.second->OnTransportChannelDestroyed();
4443 }
4444
4445 std::vector<rtc::scoped_refptr<DataChannel>> temp_sctp_dcs;
4446 temp_sctp_dcs.swap(sctp_data_channels_);
4447 for (const auto& channel : temp_sctp_dcs) {
4448 channel->OnTransportChannelDestroyed();
4449 }
4450}
4451
4452void PeerConnection::OnDataChannelOpenMessage(
4453 const std::string& label,
4454 const InternalDataChannelInit& config) {
4455 rtc::scoped_refptr<DataChannel> channel(
4456 InternalCreateDataChannel(label, &config));
4457 if (!channel.get()) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01004458 RTC_LOG(LS_ERROR) << "Failed to create DataChannel from the OPEN message.";
deadbeefab9b2d12015-10-14 11:33:11 -07004459 return;
4460 }
4461
deadbeefa601f5c2016-06-06 14:27:39 -07004462 rtc::scoped_refptr<DataChannelInterface> proxy_channel =
4463 DataChannelProxy::Create(signaling_thread(), channel);
Taylor Brandstetter98cde262016-05-31 13:02:21 -07004464 observer_->OnDataChannel(std::move(proxy_channel));
deadbeefab9b2d12015-10-14 11:33:11 -07004465}
4466
Steve Anton4171afb2017-11-20 10:20:22 -08004467rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
4468PeerConnection::GetAudioTransceiver() const {
4469 // This method only works with Plan B SDP, where there is a single
4470 // audio/video transceiver.
4471 RTC_DCHECK(!IsUnifiedPlan());
4472 for (auto transceiver : transceivers_) {
Steve Anton69470252018-02-09 11:43:08 -08004473 if (transceiver->media_type() == cricket::MEDIA_TYPE_AUDIO) {
Steve Anton4171afb2017-11-20 10:20:22 -08004474 return transceiver;
4475 }
4476 }
4477 RTC_NOTREACHED();
4478 return nullptr;
4479}
4480
4481rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
4482PeerConnection::GetVideoTransceiver() const {
4483 // This method only works with Plan B SDP, where there is a single
4484 // audio/video transceiver.
4485 RTC_DCHECK(!IsUnifiedPlan());
4486 for (auto transceiver : transceivers_) {
Steve Anton69470252018-02-09 11:43:08 -08004487 if (transceiver->media_type() == cricket::MEDIA_TYPE_VIDEO) {
Steve Anton4171afb2017-11-20 10:20:22 -08004488 return transceiver;
4489 }
4490 }
4491 RTC_NOTREACHED();
4492 return nullptr;
4493}
4494
4495// TODO(bugs.webrtc.org/7600): Remove this when multiple transceivers with
4496// individual transceiver directions are supported.
zhihuang1c378ed2017-08-17 14:10:50 -07004497bool PeerConnection::HasRtpSender(cricket::MediaType type) const {
Steve Anton4171afb2017-11-20 10:20:22 -08004498 switch (type) {
4499 case cricket::MEDIA_TYPE_AUDIO:
4500 return !GetAudioTransceiver()->internal()->senders().empty();
4501 case cricket::MEDIA_TYPE_VIDEO:
4502 return !GetVideoTransceiver()->internal()->senders().empty();
4503 case cricket::MEDIA_TYPE_DATA:
4504 return false;
4505 }
4506 RTC_NOTREACHED();
4507 return false;
zhihuang1c378ed2017-08-17 14:10:50 -07004508}
4509
Steve Anton4171afb2017-11-20 10:20:22 -08004510rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
4511PeerConnection::FindSenderForTrack(MediaStreamTrackInterface* track) const {
4512 for (auto transceiver : transceivers_) {
4513 for (auto sender : transceiver->internal()->senders()) {
4514 if (sender->track() == track) {
4515 return sender;
4516 }
4517 }
4518 }
4519 return nullptr;
deadbeeffac06552015-11-25 11:26:01 -08004520}
4521
Steve Anton4171afb2017-11-20 10:20:22 -08004522rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
4523PeerConnection::FindSenderById(const std::string& sender_id) const {
4524 for (auto transceiver : transceivers_) {
4525 for (auto sender : transceiver->internal()->senders()) {
4526 if (sender->id() == sender_id) {
4527 return sender;
4528 }
4529 }
4530 }
4531 return nullptr;
deadbeef70ab1a12015-09-28 16:53:55 -07004532}
4533
Steve Anton4171afb2017-11-20 10:20:22 -08004534rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
4535PeerConnection::FindReceiverById(const std::string& receiver_id) const {
4536 for (auto transceiver : transceivers_) {
4537 for (auto receiver : transceiver->internal()->receivers()) {
4538 if (receiver->id() == receiver_id) {
4539 return receiver;
4540 }
4541 }
4542 }
4543 return nullptr;
deadbeef70ab1a12015-09-28 16:53:55 -07004544}
4545
Steve Anton4171afb2017-11-20 10:20:22 -08004546std::vector<PeerConnection::RtpSenderInfo>*
4547PeerConnection::GetRemoteSenderInfos(cricket::MediaType media_type) {
4548 RTC_DCHECK(media_type == cricket::MEDIA_TYPE_AUDIO ||
4549 media_type == cricket::MEDIA_TYPE_VIDEO);
4550 return (media_type == cricket::MEDIA_TYPE_AUDIO)
4551 ? &remote_audio_sender_infos_
4552 : &remote_video_sender_infos_;
4553}
4554
4555std::vector<PeerConnection::RtpSenderInfo>* PeerConnection::GetLocalSenderInfos(
deadbeefab9b2d12015-10-14 11:33:11 -07004556 cricket::MediaType media_type) {
4557 RTC_DCHECK(media_type == cricket::MEDIA_TYPE_AUDIO ||
4558 media_type == cricket::MEDIA_TYPE_VIDEO);
Steve Anton4171afb2017-11-20 10:20:22 -08004559 return (media_type == cricket::MEDIA_TYPE_AUDIO) ? &local_audio_sender_infos_
4560 : &local_video_sender_infos_;
deadbeefab9b2d12015-10-14 11:33:11 -07004561}
4562
Steve Anton4171afb2017-11-20 10:20:22 -08004563const PeerConnection::RtpSenderInfo* PeerConnection::FindSenderInfo(
4564 const std::vector<PeerConnection::RtpSenderInfo>& infos,
Emircan Uysalerbc609ea2018-03-27 21:57:18 +00004565 const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -08004566 const std::string sender_id) const {
4567 for (const RtpSenderInfo& sender_info : infos) {
Emircan Uysalerbc609ea2018-03-27 21:57:18 +00004568 if (sender_info.stream_id == stream_id &&
4569 sender_info.sender_id == sender_id) {
Steve Anton4171afb2017-11-20 10:20:22 -08004570 return &sender_info;
deadbeefab9b2d12015-10-14 11:33:11 -07004571 }
4572 }
4573 return nullptr;
4574}
4575
4576DataChannel* PeerConnection::FindDataChannelBySid(int sid) const {
4577 for (const auto& channel : sctp_data_channels_) {
4578 if (channel->id() == sid) {
4579 return channel;
4580 }
4581 }
4582 return nullptr;
4583}
4584
deadbeef91dd5672016-05-18 16:55:30 -07004585bool PeerConnection::InitializePortAllocator_n(
Taylor Brandstettera1c30352016-05-13 08:15:11 -07004586 const RTCConfiguration& configuration) {
4587 cricket::ServerAddresses stun_servers;
4588 std::vector<cricket::RelayServerConfig> turn_servers;
deadbeef293e9262017-01-11 12:28:30 -08004589 if (ParseIceServers(configuration.servers, &stun_servers, &turn_servers) !=
4590 RTCErrorType::NONE) {
Taylor Brandstettera1c30352016-05-13 08:15:11 -07004591 return false;
4592 }
4593
Taylor Brandstetterf8e65772016-06-27 17:20:15 -07004594 port_allocator_->Initialize();
Patrik Höglund3dc41062018-04-11 11:13:57 +00004595
Taylor Brandstettera1c30352016-05-13 08:15:11 -07004596 // To handle both internal and externally created port allocator, we will
4597 // enable BUNDLE here.
Patrik Höglund3dc41062018-04-11 11:13:57 +00004598 int portallocator_flags = port_allocator_->flags();
4599 portallocator_flags |= cricket::PORTALLOCATOR_ENABLE_SHARED_SOCKET |
4600 cricket::PORTALLOCATOR_ENABLE_IPV6 |
4601 cricket::PORTALLOCATOR_ENABLE_IPV6_ON_WIFI;
Taylor Brandstettera1c30352016-05-13 08:15:11 -07004602 // If the disable-IPv6 flag was specified, we'll not override it
4603 // by experiment.
4604 if (configuration.disable_ipv6) {
Patrik Höglund3dc41062018-04-11 11:13:57 +00004605 portallocator_flags &= ~(cricket::PORTALLOCATOR_ENABLE_IPV6);
sprangc1b57a12017-02-28 08:50:47 -08004606 } else if (webrtc::field_trial::FindFullName("WebRTC-IPv6Default")
4607 .find("Disabled") == 0) {
Patrik Höglund3dc41062018-04-11 11:13:57 +00004608 portallocator_flags &= ~(cricket::PORTALLOCATOR_ENABLE_IPV6);
Taylor Brandstettera1c30352016-05-13 08:15:11 -07004609 }
4610
zhihuangb09b3f92017-03-07 14:40:51 -08004611 if (configuration.disable_ipv6_on_wifi) {
Patrik Höglund3dc41062018-04-11 11:13:57 +00004612 portallocator_flags &= ~(cricket::PORTALLOCATOR_ENABLE_IPV6_ON_WIFI);
Mirko Bonadei675513b2017-11-09 11:09:25 +01004613 RTC_LOG(LS_INFO) << "IPv6 candidates on Wi-Fi are disabled.";
zhihuangb09b3f92017-03-07 14:40:51 -08004614 }
4615
Taylor Brandstettera1c30352016-05-13 08:15:11 -07004616 if (configuration.tcp_candidate_policy == kTcpCandidatePolicyDisabled) {
Patrik Höglund3dc41062018-04-11 11:13:57 +00004617 portallocator_flags |= cricket::PORTALLOCATOR_DISABLE_TCP;
Mirko Bonadei675513b2017-11-09 11:09:25 +01004618 RTC_LOG(LS_INFO) << "TCP candidates are disabled.";
Taylor Brandstettera1c30352016-05-13 08:15:11 -07004619 }
4620
honghaiz60347052016-05-31 18:29:12 -07004621 if (configuration.candidate_network_policy ==
4622 kCandidateNetworkPolicyLowCost) {
Patrik Höglund3dc41062018-04-11 11:13:57 +00004623 portallocator_flags |= cricket::PORTALLOCATOR_DISABLE_COSTLY_NETWORKS;
Mirko Bonadei675513b2017-11-09 11:09:25 +01004624 RTC_LOG(LS_INFO) << "Do not gather candidates on high-cost networks";
honghaiz60347052016-05-31 18:29:12 -07004625 }
4626
Daniel Lazarenko2870b0a2018-01-25 10:30:22 +01004627 if (configuration.disable_link_local_networks) {
Patrik Höglund3dc41062018-04-11 11:13:57 +00004628 portallocator_flags |= cricket::PORTALLOCATOR_DISABLE_LINK_LOCAL_NETWORKS;
Daniel Lazarenko2870b0a2018-01-25 10:30:22 +01004629 RTC_LOG(LS_INFO) << "Disable candidates on link-local network interfaces.";
4630 }
4631
Patrik Höglund3dc41062018-04-11 11:13:57 +00004632 port_allocator_->set_flags(portallocator_flags);
Taylor Brandstettera1c30352016-05-13 08:15:11 -07004633 // No step delay is used while allocating ports.
4634 port_allocator_->set_step_delay(cricket::kMinimumStepDelay);
4635 port_allocator_->set_candidate_filter(
4636 ConvertIceTransportTypeToCandidateFilter(configuration.type));
deadbeefd21eab32017-07-26 16:50:11 -07004637 port_allocator_->set_max_ipv6_networks(configuration.max_ipv6_networks);
Taylor Brandstettera1c30352016-05-13 08:15:11 -07004638
4639 // Call this last since it may create pooled allocator sessions using the
4640 // properties set above.
Qingsi Wangdb53f8e2018-02-20 14:45:49 -08004641 port_allocator_->SetConfiguration(
4642 stun_servers, turn_servers, configuration.ice_candidate_pool_size,
4643 configuration.prune_turn_ports, configuration.turn_customizer,
4644 configuration.stun_candidate_keepalive_interval);
Taylor Brandstettera1c30352016-05-13 08:15:11 -07004645 return true;
4646}
4647
deadbeef91dd5672016-05-18 16:55:30 -07004648bool PeerConnection::ReconfigurePortAllocator_n(
deadbeef293e9262017-01-11 12:28:30 -08004649 const cricket::ServerAddresses& stun_servers,
4650 const std::vector<cricket::RelayServerConfig>& turn_servers,
4651 IceTransportsType type,
4652 int candidate_pool_size,
Jonas Orelandbdcee282017-10-10 14:01:40 +02004653 bool prune_turn_ports,
Qingsi Wangdb53f8e2018-02-20 14:45:49 -08004654 webrtc::TurnCustomizer* turn_customizer,
4655 rtc::Optional<int> stun_candidate_keepalive_interval) {
Taylor Brandstettera1c30352016-05-13 08:15:11 -07004656 port_allocator_->set_candidate_filter(
deadbeef293e9262017-01-11 12:28:30 -08004657 ConvertIceTransportTypeToCandidateFilter(type));
Taylor Brandstettera1c30352016-05-13 08:15:11 -07004658 // Call this last since it may create pooled allocator sessions using the
4659 // candidate filter set above.
deadbeef6de92f92016-12-12 18:49:32 -08004660 return port_allocator_->SetConfiguration(
Jonas Orelandbdcee282017-10-10 14:01:40 +02004661 stun_servers, turn_servers, candidate_pool_size, prune_turn_ports,
Qingsi Wangdb53f8e2018-02-20 14:45:49 -08004662 turn_customizer, stun_candidate_keepalive_interval);
Taylor Brandstettera1c30352016-05-13 08:15:11 -07004663}
4664
Steve Antonba818672017-11-06 10:21:57 -08004665cricket::ChannelManager* PeerConnection::channel_manager() const {
4666 return factory_->channel_manager();
4667}
4668
4669MetricsObserverInterface* PeerConnection::metrics_observer() const {
4670 return uma_observer_;
4671}
4672
Elad Alon99c3fe52017-10-13 16:29:40 +02004673bool PeerConnection::StartRtcEventLog_w(
Bjorn Tereliusde939432017-11-20 17:38:14 +01004674 std::unique_ptr<RtcEventLogOutput> output,
4675 int64_t output_period_ms) {
zhihuang77985012017-02-07 15:45:16 -08004676 if (!event_log_) {
4677 return false;
4678 }
Bjorn Tereliusde939432017-11-20 17:38:14 +01004679 return event_log_->StartLogging(std::move(output), output_period_ms);
ivoc14d5dbe2016-07-04 07:06:55 -07004680}
4681
4682void PeerConnection::StopRtcEventLog_w() {
zhihuang77985012017-02-07 15:45:16 -08004683 if (event_log_) {
4684 event_log_->StopLogging();
4685 }
ivoc14d5dbe2016-07-04 07:06:55 -07004686}
nisseeaabdf62017-05-05 02:23:02 -07004687
Steve Anton75737c02017-11-06 10:37:17 -08004688cricket::BaseChannel* PeerConnection::GetChannel(
4689 const std::string& content_name) {
Steve Antondcc3c022017-12-22 16:02:54 -08004690 for (auto transceiver : transceivers_) {
4691 cricket::BaseChannel* channel = transceiver->internal()->channel();
4692 if (channel && channel->content_name() == content_name) {
4693 return channel;
4694 }
Steve Anton75737c02017-11-06 10:37:17 -08004695 }
4696 if (rtp_data_channel() &&
4697 rtp_data_channel()->content_name() == content_name) {
4698 return rtp_data_channel();
4699 }
4700 return nullptr;
4701}
4702
4703bool PeerConnection::GetSctpSslRole(rtc::SSLRole* role) {
4704 if (!local_description() || !remote_description()) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01004705 RTC_LOG(LS_INFO)
4706 << "Local and Remote descriptions must be applied to get the "
Jonas Olsson45cc8902018-02-13 10:37:07 +01004707 "SSL Role of the SCTP transport.";
Steve Anton75737c02017-11-06 10:37:17 -08004708 return false;
4709 }
4710 if (!sctp_transport_) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01004711 RTC_LOG(LS_INFO) << "Non-rejected SCTP m= section is needed to get the "
Jonas Olsson45cc8902018-02-13 10:37:07 +01004712 "SSL Role of the SCTP transport.";
Steve Anton75737c02017-11-06 10:37:17 -08004713 return false;
4714 }
4715
Zhi Huange830e682018-03-30 10:48:35 -07004716 auto dtls_role = transport_controller_->GetDtlsRole(*sctp_mid_);
4717 if (dtls_role) {
4718 *role = *dtls_role;
4719 return true;
4720 }
4721 return false;
Steve Anton75737c02017-11-06 10:37:17 -08004722}
4723
4724bool PeerConnection::GetSslRole(const std::string& content_name,
4725 rtc::SSLRole* role) {
4726 if (!local_description() || !remote_description()) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01004727 RTC_LOG(LS_INFO)
4728 << "Local and Remote descriptions must be applied to get the "
Jonas Olsson45cc8902018-02-13 10:37:07 +01004729 "SSL Role of the session.";
Steve Anton75737c02017-11-06 10:37:17 -08004730 return false;
4731 }
4732
Zhi Huange830e682018-03-30 10:48:35 -07004733 auto dtls_role = transport_controller_->GetDtlsRole(content_name);
4734 if (dtls_role) {
4735 *role = *dtls_role;
4736 return true;
4737 }
4738 return false;
Steve Anton75737c02017-11-06 10:37:17 -08004739}
4740
Steve Antonf8470812017-12-04 10:46:21 -08004741void PeerConnection::SetSessionError(SessionError error,
4742 const std::string& error_desc) {
4743 RTC_DCHECK_RUN_ON(signaling_thread());
4744 if (error != session_error_) {
4745 session_error_ = error;
4746 session_error_desc_ = error_desc;
Steve Anton75737c02017-11-06 10:37:17 -08004747 }
4748}
4749
Zhi Huange830e682018-03-30 10:48:35 -07004750RTCError PeerConnection::UpdateSessionState(
4751 SdpType type,
4752 cricket::ContentSource source,
4753 const cricket::SessionDescription* description) {
Steve Anton8a006912017-12-04 15:25:56 -08004754 RTC_DCHECK_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08004755
4756 // If there's already a pending error then no state transition should happen.
4757 // But all call-sites should be verifying this before calling us!
Steve Antonf8470812017-12-04 10:46:21 -08004758 RTC_DCHECK(session_error() == SessionError::kNone);
Steve Anton6d6a2ae2017-12-04 17:19:47 -08004759
Steve Anton6d6a2ae2017-12-04 17:19:47 -08004760 // If this is answer-ish we're ready to let media flow.
Steve Anton3828c062017-12-06 10:34:51 -08004761 if (type == SdpType::kPrAnswer || type == SdpType::kAnswer) {
Steve Antoned10bd92017-12-05 10:52:59 -08004762 EnableSending();
Steve Anton6d6a2ae2017-12-04 17:19:47 -08004763 }
4764
4765 // Update the signaling state according to the specified state machine (see
4766 // https://w3c.github.io/webrtc-pc/#rtcsignalingstate-enum).
Steve Anton3828c062017-12-06 10:34:51 -08004767 if (type == SdpType::kOffer) {
Steve Anton6d6a2ae2017-12-04 17:19:47 -08004768 ChangeSignalingState(source == cricket::CS_LOCAL
4769 ? PeerConnectionInterface::kHaveLocalOffer
4770 : PeerConnectionInterface::kHaveRemoteOffer);
Steve Anton3828c062017-12-06 10:34:51 -08004771 } else if (type == SdpType::kPrAnswer) {
Steve Anton6d6a2ae2017-12-04 17:19:47 -08004772 ChangeSignalingState(source == cricket::CS_LOCAL
4773 ? PeerConnectionInterface::kHaveLocalPrAnswer
4774 : PeerConnectionInterface::kHaveRemotePrAnswer);
4775 } else {
Steve Anton3828c062017-12-06 10:34:51 -08004776 RTC_DCHECK(type == SdpType::kAnswer);
Steve Anton6d6a2ae2017-12-04 17:19:47 -08004777 ChangeSignalingState(PeerConnectionInterface::kStable);
4778 }
4779
4780 // Update internal objects according to the session description's media
4781 // descriptions.
Zhi Huange830e682018-03-30 10:48:35 -07004782 RTCError error = PushdownMediaDescription(type, source);
Steve Anton6d6a2ae2017-12-04 17:19:47 -08004783 if (!error.ok()) {
Steve Anton80dd7b52018-02-16 17:08:42 -08004784 return error;
Steve Anton6d6a2ae2017-12-04 17:19:47 -08004785 }
4786
Steve Anton8a006912017-12-04 15:25:56 -08004787 return RTCError::OK();
Steve Anton75737c02017-11-06 10:37:17 -08004788}
4789
Steve Anton8a006912017-12-04 15:25:56 -08004790RTCError PeerConnection::PushdownMediaDescription(
Steve Anton3828c062017-12-06 10:34:51 -08004791 SdpType type,
Steve Anton8a006912017-12-04 15:25:56 -08004792 cricket::ContentSource source) {
Steve Antoned10bd92017-12-05 10:52:59 -08004793 const SessionDescriptionInterface* sdesc =
4794 (source == cricket::CS_LOCAL ? local_description()
4795 : remote_description());
Steve Anton75737c02017-11-06 10:37:17 -08004796 RTC_DCHECK(sdesc);
Steve Antoned10bd92017-12-05 10:52:59 -08004797
4798 // Push down the new SDP media section for each audio/video transceiver.
4799 for (auto transceiver : transceivers_) {
Steve Anton75737c02017-11-06 10:37:17 -08004800 const ContentInfo* content_info =
Steve Antoned10bd92017-12-05 10:52:59 -08004801 FindMediaSectionForTransceiver(transceiver, sdesc);
4802 cricket::BaseChannel* channel = transceiver->internal()->channel();
4803 if (!channel || !content_info || content_info->rejected) {
Steve Anton75737c02017-11-06 10:37:17 -08004804 continue;
4805 }
4806 const MediaContentDescription* content_desc =
Steve Antonb1c1de12017-12-21 15:14:30 -08004807 content_info->media_description();
Steve Antoned10bd92017-12-05 10:52:59 -08004808 if (!content_desc) {
4809 continue;
4810 }
4811 std::string error;
4812 bool success =
4813 (source == cricket::CS_LOCAL)
Steve Anton3828c062017-12-06 10:34:51 -08004814 ? channel->SetLocalContent(content_desc, type, &error)
4815 : channel->SetRemoteContent(content_desc, type, &error);
Steve Antoned10bd92017-12-05 10:52:59 -08004816 if (!success) {
4817 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, std::move(error));
4818 }
4819 }
4820
4821 // If using the RtpDataChannel, push down the new SDP section for it too.
4822 if (rtp_data_channel_) {
4823 const ContentInfo* data_content =
4824 cricket::GetFirstDataContent(sdesc->description());
4825 if (data_content && !data_content->rejected) {
4826 const MediaContentDescription* data_desc =
Steve Antonb1c1de12017-12-21 15:14:30 -08004827 data_content->media_description();
Steve Antoned10bd92017-12-05 10:52:59 -08004828 if (data_desc) {
4829 std::string error;
4830 bool success =
4831 (source == cricket::CS_LOCAL)
Steve Anton3828c062017-12-06 10:34:51 -08004832 ? rtp_data_channel_->SetLocalContent(data_desc, type, &error)
4833 : rtp_data_channel_->SetRemoteContent(data_desc, type,
Steve Antoned10bd92017-12-05 10:52:59 -08004834 &error);
4835 if (!success) {
4836 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
4837 std::move(error));
4838 }
Steve Anton75737c02017-11-06 10:37:17 -08004839 }
4840 }
4841 }
Steve Antoned10bd92017-12-05 10:52:59 -08004842
Steve Anton75737c02017-11-06 10:37:17 -08004843 // Need complete offer/answer with an SCTP m= section before starting SCTP,
4844 // according to https://tools.ietf.org/html/draft-ietf-mmusic-sctp-sdp-19
4845 if (sctp_transport_ && local_description() && remote_description() &&
4846 cricket::GetFirstDataContent(local_description()->description()) &&
4847 cricket::GetFirstDataContent(remote_description()->description())) {
Steve Anton8a006912017-12-04 15:25:56 -08004848 bool success = network_thread()->Invoke<bool>(
Steve Anton75737c02017-11-06 10:37:17 -08004849 RTC_FROM_HERE,
4850 rtc::Bind(&PeerConnection::PushdownSctpParameters_n, this, source));
Steve Anton8a006912017-12-04 15:25:56 -08004851 if (!success) {
4852 LOG_AND_RETURN_ERROR(RTCErrorType::INTERNAL_ERROR,
4853 "Failed to push down SCTP parameters.");
4854 }
Steve Anton75737c02017-11-06 10:37:17 -08004855 }
Steve Antoned10bd92017-12-05 10:52:59 -08004856
Steve Anton8a006912017-12-04 15:25:56 -08004857 return RTCError::OK();
Steve Anton75737c02017-11-06 10:37:17 -08004858}
4859
4860bool PeerConnection::PushdownSctpParameters_n(cricket::ContentSource source) {
4861 RTC_DCHECK(network_thread()->IsCurrent());
4862 RTC_DCHECK(local_description());
4863 RTC_DCHECK(remote_description());
4864 // Apply the SCTP port (which is hidden inside a DataCodec structure...)
4865 // When we support "max-message-size", that would also be pushed down here.
4866 return sctp_transport_->Start(
4867 GetSctpPort(local_description()->description()),
4868 GetSctpPort(remote_description()->description()));
4869}
4870
Steve Anton8a006912017-12-04 15:25:56 -08004871RTCError PeerConnection::PushdownTransportDescription(
4872 cricket::ContentSource source,
Steve Anton3828c062017-12-06 10:34:51 -08004873 SdpType type) {
Steve Anton8a006912017-12-04 15:25:56 -08004874 RTC_DCHECK_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08004875
Zhi Huange830e682018-03-30 10:48:35 -07004876 if (source == cricket::CS_LOCAL) {
4877 const SessionDescriptionInterface* sdesc = local_description();
4878 RTC_DCHECK(sdesc);
4879 return transport_controller_->SetLocalDescription(type,
4880 sdesc->description());
4881 } else {
4882 const SessionDescriptionInterface* sdesc = remote_description();
4883 RTC_DCHECK(sdesc);
4884 return transport_controller_->SetRemoteDescription(type,
4885 sdesc->description());
Steve Anton75737c02017-11-06 10:37:17 -08004886 }
Steve Anton75737c02017-11-06 10:37:17 -08004887}
4888
4889bool PeerConnection::GetTransportDescription(
4890 const SessionDescription* description,
4891 const std::string& content_name,
4892 cricket::TransportDescription* tdesc) {
4893 if (!description || !tdesc) {
4894 return false;
4895 }
4896 const TransportInfo* transport_info =
4897 description->GetTransportInfoByName(content_name);
4898 if (!transport_info) {
4899 return false;
4900 }
4901 *tdesc = transport_info->description;
4902 return true;
4903}
4904
Steve Anton75737c02017-11-06 10:37:17 -08004905cricket::IceConfig PeerConnection::ParseIceConfig(
4906 const PeerConnectionInterface::RTCConfiguration& config) const {
4907 cricket::ContinualGatheringPolicy gathering_policy;
4908 // TODO(honghaiz): Add the third continual gathering policy in
4909 // PeerConnectionInterface and map it to GATHER_CONTINUALLY_AND_RECOVER.
4910 switch (config.continual_gathering_policy) {
4911 case PeerConnectionInterface::GATHER_ONCE:
4912 gathering_policy = cricket::GATHER_ONCE;
4913 break;
4914 case PeerConnectionInterface::GATHER_CONTINUALLY:
4915 gathering_policy = cricket::GATHER_CONTINUALLY;
4916 break;
4917 default:
4918 RTC_NOTREACHED();
4919 gathering_policy = cricket::GATHER_ONCE;
4920 }
Qingsi Wang9a5c6f82018-02-01 10:38:40 -08004921
Steve Anton75737c02017-11-06 10:37:17 -08004922 cricket::IceConfig ice_config;
Qingsi Wang866e08d2018-03-22 17:54:23 -07004923 ice_config.receiving_timeout = RTCConfigurationToIceConfigOptionalInt(
4924 config.ice_connection_receiving_timeout);
Steve Anton75737c02017-11-06 10:37:17 -08004925 ice_config.prioritize_most_likely_candidate_pairs =
4926 config.prioritize_most_likely_ice_candidate_pairs;
4927 ice_config.backup_connection_ping_interval =
Qingsi Wang866e08d2018-03-22 17:54:23 -07004928 RTCConfigurationToIceConfigOptionalInt(
4929 config.ice_backup_candidate_pair_ping_interval);
Steve Anton75737c02017-11-06 10:37:17 -08004930 ice_config.continual_gathering_policy = gathering_policy;
4931 ice_config.presume_writable_when_fully_relayed =
4932 config.presume_writable_when_fully_relayed;
Qingsi Wange6826d22018-03-08 14:55:14 -08004933 ice_config.ice_check_interval_strong_connectivity =
4934 config.ice_check_interval_strong_connectivity;
4935 ice_config.ice_check_interval_weak_connectivity =
4936 config.ice_check_interval_weak_connectivity;
Steve Anton75737c02017-11-06 10:37:17 -08004937 ice_config.ice_check_min_interval = config.ice_check_min_interval;
Qingsi Wangdb53f8e2018-02-20 14:45:49 -08004938 ice_config.stun_keepalive_interval = config.stun_candidate_keepalive_interval;
Steve Anton75737c02017-11-06 10:37:17 -08004939 ice_config.regather_all_networks_interval_range =
4940 config.ice_regather_interval_range;
Qingsi Wang9a5c6f82018-02-01 10:38:40 -08004941 ice_config.network_preference = config.network_preference;
Steve Anton75737c02017-11-06 10:37:17 -08004942 return ice_config;
4943}
4944
Steve Anton75737c02017-11-06 10:37:17 -08004945bool PeerConnection::GetLocalTrackIdBySsrc(uint32_t ssrc,
4946 std::string* track_id) {
4947 if (!local_description()) {
4948 return false;
4949 }
4950 return webrtc::GetTrackIdBySsrc(local_description()->description(), ssrc,
4951 track_id);
4952}
4953
4954bool PeerConnection::GetRemoteTrackIdBySsrc(uint32_t ssrc,
4955 std::string* track_id) {
4956 if (!remote_description()) {
4957 return false;
4958 }
4959 return webrtc::GetTrackIdBySsrc(remote_description()->description(), ssrc,
4960 track_id);
4961}
4962
4963bool PeerConnection::SendData(const cricket::SendDataParams& params,
4964 const rtc::CopyOnWriteBuffer& payload,
4965 cricket::SendDataResult* result) {
4966 if (!rtp_data_channel_ && !sctp_transport_) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01004967 RTC_LOG(LS_ERROR) << "SendData called when rtp_data_channel_ "
Jonas Olsson45cc8902018-02-13 10:37:07 +01004968 "and sctp_transport_ are NULL.";
Steve Anton75737c02017-11-06 10:37:17 -08004969 return false;
4970 }
4971 return rtp_data_channel_
4972 ? rtp_data_channel_->SendData(params, payload, result)
4973 : network_thread()->Invoke<bool>(
4974 RTC_FROM_HERE,
4975 Bind(&cricket::SctpTransportInternal::SendData,
4976 sctp_transport_.get(), params, payload, result));
4977}
4978
4979bool PeerConnection::ConnectDataChannel(DataChannel* webrtc_data_channel) {
4980 if (!rtp_data_channel_ && !sctp_transport_) {
4981 // Don't log an error here, because DataChannels are expected to call
4982 // ConnectDataChannel in this state. It's the only way to initially tell
4983 // whether or not the underlying transport is ready.
4984 return false;
4985 }
4986 if (rtp_data_channel_) {
4987 rtp_data_channel_->SignalReadyToSendData.connect(
4988 webrtc_data_channel, &DataChannel::OnChannelReady);
4989 rtp_data_channel_->SignalDataReceived.connect(webrtc_data_channel,
4990 &DataChannel::OnDataReceived);
4991 } else {
4992 SignalSctpReadyToSendData.connect(webrtc_data_channel,
4993 &DataChannel::OnChannelReady);
4994 SignalSctpDataReceived.connect(webrtc_data_channel,
4995 &DataChannel::OnDataReceived);
4996 SignalSctpStreamClosedRemotely.connect(
4997 webrtc_data_channel, &DataChannel::OnStreamClosedRemotely);
4998 }
4999 return true;
5000}
5001
5002void PeerConnection::DisconnectDataChannel(DataChannel* webrtc_data_channel) {
5003 if (!rtp_data_channel_ && !sctp_transport_) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01005004 RTC_LOG(LS_ERROR)
5005 << "DisconnectDataChannel called when rtp_data_channel_ and "
5006 "sctp_transport_ are NULL.";
Steve Anton75737c02017-11-06 10:37:17 -08005007 return;
5008 }
5009 if (rtp_data_channel_) {
5010 rtp_data_channel_->SignalReadyToSendData.disconnect(webrtc_data_channel);
5011 rtp_data_channel_->SignalDataReceived.disconnect(webrtc_data_channel);
5012 } else {
5013 SignalSctpReadyToSendData.disconnect(webrtc_data_channel);
5014 SignalSctpDataReceived.disconnect(webrtc_data_channel);
5015 SignalSctpStreamClosedRemotely.disconnect(webrtc_data_channel);
5016 }
5017}
5018
5019void PeerConnection::AddSctpDataStream(int sid) {
5020 if (!sctp_transport_) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01005021 RTC_LOG(LS_ERROR)
5022 << "AddSctpDataStream called when sctp_transport_ is NULL.";
Steve Anton75737c02017-11-06 10:37:17 -08005023 return;
5024 }
5025 network_thread()->Invoke<void>(
5026 RTC_FROM_HERE, rtc::Bind(&cricket::SctpTransportInternal::OpenStream,
5027 sctp_transport_.get(), sid));
5028}
5029
5030void PeerConnection::RemoveSctpDataStream(int sid) {
5031 if (!sctp_transport_) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01005032 RTC_LOG(LS_ERROR) << "RemoveSctpDataStream called when sctp_transport_ is "
Jonas Olsson45cc8902018-02-13 10:37:07 +01005033 "NULL.";
Steve Anton75737c02017-11-06 10:37:17 -08005034 return;
5035 }
5036 network_thread()->Invoke<void>(
5037 RTC_FROM_HERE, rtc::Bind(&cricket::SctpTransportInternal::ResetStream,
5038 sctp_transport_.get(), sid));
5039}
5040
5041bool PeerConnection::ReadyToSendData() const {
5042 return (rtp_data_channel_ && rtp_data_channel_->ready_to_send_data()) ||
5043 sctp_ready_to_send_data_;
5044}
5045
Zhi Huange830e682018-03-30 10:48:35 -07005046rtc::Optional<std::string> PeerConnection::sctp_transport_name() const {
5047 if (sctp_mid_ && transport_controller_) {
5048 auto dtls_transport = transport_controller_->GetDtlsTransport(*sctp_mid_);
5049 if (dtls_transport) {
5050 return dtls_transport->transport_name();
5051 }
5052 return rtc::Optional<std::string>();
5053 }
5054 return rtc::Optional<std::string>();
5055}
5056
Qingsi Wang72a43a12018-02-20 16:03:18 -08005057cricket::CandidateStatsList PeerConnection::GetPooledCandidateStats() const {
5058 cricket::CandidateStatsList candidate_states_list;
Patrik Höglund3dc41062018-04-11 11:13:57 +00005059 port_allocator_->GetCandidateStatsFromPooledSessions(&candidate_states_list);
Qingsi Wang72a43a12018-02-20 16:03:18 -08005060 return candidate_states_list;
5061}
5062
Steve Anton5dfde182018-02-06 10:34:40 -08005063std::map<std::string, std::string> PeerConnection::GetTransportNamesByMid()
5064 const {
5065 std::map<std::string, std::string> transport_names_by_mid;
5066 for (auto transceiver : transceivers_) {
5067 cricket::BaseChannel* channel = transceiver->internal()->channel();
5068 if (channel) {
5069 transport_names_by_mid[channel->content_name()] =
5070 channel->transport_name();
5071 }
Steve Anton75737c02017-11-06 10:37:17 -08005072 }
Steve Anton5dfde182018-02-06 10:34:40 -08005073 if (rtp_data_channel_) {
5074 transport_names_by_mid[rtp_data_channel_->content_name()] =
5075 rtp_data_channel_->transport_name();
Steve Anton75737c02017-11-06 10:37:17 -08005076 }
5077 if (sctp_transport_) {
Zhi Huange830e682018-03-30 10:48:35 -07005078 rtc::Optional<std::string> transport_name = sctp_transport_name();
5079 RTC_DCHECK(transport_name);
5080 transport_names_by_mid[*sctp_mid_] = *transport_name;
Steve Anton75737c02017-11-06 10:37:17 -08005081 }
Steve Anton5dfde182018-02-06 10:34:40 -08005082 return transport_names_by_mid;
Steve Anton75737c02017-11-06 10:37:17 -08005083}
5084
Steve Anton5dfde182018-02-06 10:34:40 -08005085std::map<std::string, cricket::TransportStats>
5086PeerConnection::GetTransportStatsByNames(
5087 const std::set<std::string>& transport_names) {
5088 if (!network_thread()->IsCurrent()) {
5089 return network_thread()
5090 ->Invoke<std::map<std::string, cricket::TransportStats>>(
5091 RTC_FROM_HERE,
5092 [&] { return GetTransportStatsByNames(transport_names); });
Steve Anton75737c02017-11-06 10:37:17 -08005093 }
Steve Anton5dfde182018-02-06 10:34:40 -08005094 std::map<std::string, cricket::TransportStats> transport_stats_by_name;
5095 for (const std::string& transport_name : transport_names) {
5096 cricket::TransportStats transport_stats;
5097 bool success =
5098 transport_controller_->GetStats(transport_name, &transport_stats);
5099 if (success) {
5100 transport_stats_by_name[transport_name] = std::move(transport_stats);
5101 } else {
5102 RTC_LOG(LS_ERROR) << "Failed to get transport stats for transport_name="
5103 << transport_name;
5104 }
5105 }
5106 return transport_stats_by_name;
Steve Anton75737c02017-11-06 10:37:17 -08005107}
5108
5109bool PeerConnection::GetLocalCertificate(
5110 const std::string& transport_name,
5111 rtc::scoped_refptr<rtc::RTCCertificate>* certificate) {
Zhi Huange830e682018-03-30 10:48:35 -07005112 if (!certificate) {
5113 return false;
5114 }
5115 *certificate = transport_controller_->GetLocalCertificate(transport_name);
5116 return *certificate != nullptr;
Steve Anton75737c02017-11-06 10:37:17 -08005117}
5118
Taylor Brandstetterc3928662018-02-23 13:04:51 -08005119std::unique_ptr<rtc::SSLCertChain> PeerConnection::GetRemoteSSLCertChain(
Steve Anton75737c02017-11-06 10:37:17 -08005120 const std::string& transport_name) {
Taylor Brandstetterc3928662018-02-23 13:04:51 -08005121 return transport_controller_->GetRemoteSSLCertChain(transport_name);
Steve Anton75737c02017-11-06 10:37:17 -08005122}
5123
5124cricket::DataChannelType PeerConnection::data_channel_type() const {
5125 return data_channel_type_;
5126}
5127
5128bool PeerConnection::IceRestartPending(const std::string& content_name) const {
5129 return pending_ice_restarts_.find(content_name) !=
5130 pending_ice_restarts_.end();
5131}
5132
Steve Anton75737c02017-11-06 10:37:17 -08005133bool PeerConnection::NeedsIceRestart(const std::string& content_name) const {
5134 return transport_controller_->NeedsIceRestart(content_name);
5135}
5136
5137void PeerConnection::OnCertificateReady(
5138 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate) {
5139 transport_controller_->SetLocalCertificate(certificate);
5140}
5141
5142void PeerConnection::OnDtlsSrtpSetupFailure(cricket::BaseChannel*, bool rtcp) {
Steve Antonf8470812017-12-04 10:46:21 -08005143 SetSessionError(SessionError::kTransport,
5144 rtcp ? kDtlsSrtpSetupFailureRtcp : kDtlsSrtpSetupFailureRtp);
Steve Anton75737c02017-11-06 10:37:17 -08005145}
5146
5147void PeerConnection::OnTransportControllerConnectionState(
5148 cricket::IceConnectionState state) {
5149 switch (state) {
5150 case cricket::kIceConnectionConnecting:
5151 // If the current state is Connected or Completed, then there were
5152 // writable channels but now there are not, so the next state must
5153 // be Disconnected.
5154 // kIceConnectionConnecting is currently used as the default,
5155 // un-connected state by the TransportController, so its only use is
5156 // detecting disconnections.
5157 if (ice_connection_state_ ==
5158 PeerConnectionInterface::kIceConnectionConnected ||
5159 ice_connection_state_ ==
5160 PeerConnectionInterface::kIceConnectionCompleted) {
5161 SetIceConnectionState(
5162 PeerConnectionInterface::kIceConnectionDisconnected);
5163 }
5164 break;
5165 case cricket::kIceConnectionFailed:
5166 SetIceConnectionState(PeerConnectionInterface::kIceConnectionFailed);
5167 break;
5168 case cricket::kIceConnectionConnected:
Mirko Bonadei675513b2017-11-09 11:09:25 +01005169 RTC_LOG(LS_INFO) << "Changing to ICE connected state because "
Jonas Olsson45cc8902018-02-13 10:37:07 +01005170 "all transports are writable.";
Steve Anton75737c02017-11-06 10:37:17 -08005171 SetIceConnectionState(PeerConnectionInterface::kIceConnectionConnected);
5172 break;
5173 case cricket::kIceConnectionCompleted:
Mirko Bonadei675513b2017-11-09 11:09:25 +01005174 RTC_LOG(LS_INFO) << "Changing to ICE completed state because "
Jonas Olsson45cc8902018-02-13 10:37:07 +01005175 "all transports are complete.";
Steve Anton75737c02017-11-06 10:37:17 -08005176 if (ice_connection_state_ !=
5177 PeerConnectionInterface::kIceConnectionConnected) {
5178 // If jumping directly from "checking" to "connected",
5179 // signal "connected" first.
5180 SetIceConnectionState(PeerConnectionInterface::kIceConnectionConnected);
5181 }
5182 SetIceConnectionState(PeerConnectionInterface::kIceConnectionCompleted);
5183 if (metrics_observer()) {
5184 ReportTransportStats();
5185 }
5186 break;
5187 default:
5188 RTC_NOTREACHED();
5189 }
5190}
5191
5192void PeerConnection::OnTransportControllerCandidatesGathered(
5193 const std::string& transport_name,
5194 const cricket::Candidates& candidates) {
5195 RTC_DCHECK(signaling_thread()->IsCurrent());
5196 int sdp_mline_index;
5197 if (!GetLocalCandidateMediaIndex(transport_name, &sdp_mline_index)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01005198 RTC_LOG(LS_ERROR)
5199 << "OnTransportControllerCandidatesGathered: content name "
5200 << transport_name << " not found";
Steve Anton75737c02017-11-06 10:37:17 -08005201 return;
5202 }
5203
5204 for (cricket::Candidates::const_iterator citer = candidates.begin();
5205 citer != candidates.end(); ++citer) {
5206 // Use transport_name as the candidate media id.
5207 std::unique_ptr<JsepIceCandidate> candidate(
5208 new JsepIceCandidate(transport_name, sdp_mline_index, *citer));
5209 if (local_description()) {
5210 mutable_local_description()->AddCandidate(candidate.get());
5211 }
5212 OnIceCandidate(std::move(candidate));
5213 }
5214}
5215
5216void PeerConnection::OnTransportControllerCandidatesRemoved(
5217 const std::vector<cricket::Candidate>& candidates) {
5218 RTC_DCHECK(signaling_thread()->IsCurrent());
5219 // Sanity check.
5220 for (const cricket::Candidate& candidate : candidates) {
5221 if (candidate.transport_name().empty()) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01005222 RTC_LOG(LS_ERROR) << "OnTransportControllerCandidatesRemoved: "
Jonas Olsson45cc8902018-02-13 10:37:07 +01005223 "empty content name in candidate "
Mirko Bonadei675513b2017-11-09 11:09:25 +01005224 << candidate.ToString();
Steve Anton75737c02017-11-06 10:37:17 -08005225 return;
5226 }
5227 }
5228
5229 if (local_description()) {
5230 mutable_local_description()->RemoveCandidates(candidates);
5231 }
5232 OnIceCandidatesRemoved(candidates);
5233}
5234
5235void PeerConnection::OnTransportControllerDtlsHandshakeError(
5236 rtc::SSLHandshakeError error) {
5237 if (metrics_observer()) {
5238 metrics_observer()->IncrementEnumCounter(
5239 webrtc::kEnumCounterDtlsHandshakeError, static_cast<int>(error),
5240 static_cast<int>(rtc::SSLHandshakeError::MAX_VALUE));
5241 }
5242}
5243
Steve Antoned10bd92017-12-05 10:52:59 -08005244void PeerConnection::EnableSending() {
5245 for (auto transceiver : transceivers_) {
5246 cricket::BaseChannel* channel = transceiver->internal()->channel();
5247 if (channel && !channel->enabled()) {
5248 channel->Enable(true);
5249 }
Steve Anton75737c02017-11-06 10:37:17 -08005250 }
5251
Steve Anton4171afb2017-11-20 10:20:22 -08005252 if (rtp_data_channel_ && !rtp_data_channel_->enabled()) {
Steve Anton75737c02017-11-06 10:37:17 -08005253 rtp_data_channel_->Enable(true);
Steve Anton4171afb2017-11-20 10:20:22 -08005254 }
Steve Anton75737c02017-11-06 10:37:17 -08005255}
5256
5257// Returns the media index for a local ice candidate given the content name.
5258bool PeerConnection::GetLocalCandidateMediaIndex(
5259 const std::string& content_name,
5260 int* sdp_mline_index) {
5261 if (!local_description() || !sdp_mline_index) {
5262 return false;
5263 }
5264
5265 bool content_found = false;
5266 const ContentInfos& contents = local_description()->description()->contents();
5267 for (size_t index = 0; index < contents.size(); ++index) {
5268 if (contents[index].name == content_name) {
5269 *sdp_mline_index = static_cast<int>(index);
5270 content_found = true;
5271 break;
5272 }
5273 }
5274 return content_found;
5275}
5276
5277bool PeerConnection::UseCandidatesInSessionDescription(
5278 const SessionDescriptionInterface* remote_desc) {
5279 if (!remote_desc) {
5280 return true;
5281 }
5282 bool ret = true;
5283
5284 for (size_t m = 0; m < remote_desc->number_of_mediasections(); ++m) {
5285 const IceCandidateCollection* candidates = remote_desc->candidates(m);
5286 for (size_t n = 0; n < candidates->count(); ++n) {
5287 const IceCandidateInterface* candidate = candidates->at(n);
5288 bool valid = false;
5289 if (!ReadyToUseRemoteCandidate(candidate, remote_desc, &valid)) {
5290 if (valid) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01005291 RTC_LOG(LS_INFO)
5292 << "UseCandidatesInSessionDescription: Not ready to use "
Jonas Olsson45cc8902018-02-13 10:37:07 +01005293 "candidate.";
Steve Anton75737c02017-11-06 10:37:17 -08005294 }
5295 continue;
5296 }
5297 ret = UseCandidate(candidate);
5298 if (!ret) {
5299 break;
5300 }
5301 }
5302 }
5303 return ret;
5304}
5305
5306bool PeerConnection::UseCandidate(const IceCandidateInterface* candidate) {
5307 size_t mediacontent_index = static_cast<size_t>(candidate->sdp_mline_index());
5308 size_t remote_content_size =
5309 remote_description()->description()->contents().size();
5310 if (mediacontent_index >= remote_content_size) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01005311 RTC_LOG(LS_ERROR) << "UseCandidate: Invalid candidate media index.";
Steve Anton75737c02017-11-06 10:37:17 -08005312 return false;
5313 }
5314
5315 cricket::ContentInfo content =
5316 remote_description()->description()->contents()[mediacontent_index];
5317 std::vector<cricket::Candidate> candidates;
5318 candidates.push_back(candidate->candidate());
5319 // Invoking BaseSession method to handle remote candidates.
Zhi Huange830e682018-03-30 10:48:35 -07005320 RTCError error =
5321 transport_controller_->AddRemoteCandidates(content.name, candidates);
Henrik Boström5d8f8fa2018-04-13 15:22:50 +00005322 if (error.ok()) {
5323 // Candidates successfully submitted for checking.
5324 if (ice_connection_state_ == PeerConnectionInterface::kIceConnectionNew ||
5325 ice_connection_state_ ==
5326 PeerConnectionInterface::kIceConnectionDisconnected) {
5327 // If state is New, then the session has just gotten its first remote ICE
5328 // candidates, so go to Checking.
5329 // If state is Disconnected, the session is re-using old candidates or
5330 // receiving additional ones, so go to Checking.
5331 // If state is Connected, stay Connected.
5332 // TODO(bemasc): If state is Connected, and the new candidates are for a
5333 // newly added transport, then the state actually _should_ move to
5334 // checking. Add a way to distinguish that case.
5335 SetIceConnectionState(PeerConnectionInterface::kIceConnectionChecking);
5336 }
5337 // TODO(bemasc): If state is Completed, go back to Connected.
5338 } else if (error.message()) {
Zhi Huange830e682018-03-30 10:48:35 -07005339 RTC_LOG(LS_WARNING) << error.message();
Steve Anton75737c02017-11-06 10:37:17 -08005340 }
5341 return true;
5342}
5343
5344void PeerConnection::RemoveUnusedChannels(const SessionDescription* desc) {
Steve Anton75737c02017-11-06 10:37:17 -08005345 // Destroy video channel first since it may have a pointer to the
5346 // voice channel.
5347 const cricket::ContentInfo* video_info = cricket::GetFirstVideoContent(desc);
Steve Anton6fec8802017-12-04 10:37:29 -08005348 if (!video_info || video_info->rejected) {
5349 DestroyTransceiverChannel(GetVideoTransceiver());
Steve Anton75737c02017-11-06 10:37:17 -08005350 }
5351
Steve Anton6fec8802017-12-04 10:37:29 -08005352 const cricket::ContentInfo* audio_info = cricket::GetFirstAudioContent(desc);
5353 if (!audio_info || audio_info->rejected) {
5354 DestroyTransceiverChannel(GetAudioTransceiver());
Steve Anton75737c02017-11-06 10:37:17 -08005355 }
5356
5357 const cricket::ContentInfo* data_info = cricket::GetFirstDataContent(desc);
5358 if (!data_info || data_info->rejected) {
Steve Anton6fec8802017-12-04 10:37:29 -08005359 DestroyDataChannel();
Steve Anton75737c02017-11-06 10:37:17 -08005360 }
5361}
5362
Steve Antondcc3c022017-12-22 16:02:54 -08005363RTCErrorOr<const cricket::ContentGroup*> PeerConnection::GetEarlyBundleGroup(
5364 const SessionDescription& desc) const {
Steve Anton75737c02017-11-06 10:37:17 -08005365 const cricket::ContentGroup* bundle_group = nullptr;
5366 if (configuration_.bundle_policy ==
5367 PeerConnectionInterface::kBundlePolicyMaxBundle) {
Steve Antondcc3c022017-12-22 16:02:54 -08005368 bundle_group = desc.GetGroupByName(cricket::GROUP_TYPE_BUNDLE);
Steve Anton75737c02017-11-06 10:37:17 -08005369 if (!bundle_group) {
Steve Anton8a006912017-12-04 15:25:56 -08005370 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
5371 "max-bundle configured but session description "
5372 "has no BUNDLE group");
Steve Anton75737c02017-11-06 10:37:17 -08005373 }
5374 }
Steve Antondcc3c022017-12-22 16:02:54 -08005375 return std::move(bundle_group);
5376}
5377
5378RTCError PeerConnection::CreateChannels(const SessionDescription& desc) {
Zhi Huange830e682018-03-30 10:48:35 -07005379 // Creating the media channels. Transports should already have been created
5380 // at this point.
Steve Antondcc3c022017-12-22 16:02:54 -08005381 const cricket::ContentInfo* voice = cricket::GetFirstAudioContent(&desc);
Steve Antoneda6ccd2017-12-04 10:21:55 -08005382 if (voice && !voice->rejected &&
5383 !GetAudioTransceiver()->internal()->channel()) {
Zhi Huange830e682018-03-30 10:48:35 -07005384 cricket::VoiceChannel* voice_channel = CreateVoiceChannel(voice->name);
Steve Antoneda6ccd2017-12-04 10:21:55 -08005385 if (!voice_channel) {
Steve Anton8a006912017-12-04 15:25:56 -08005386 LOG_AND_RETURN_ERROR(RTCErrorType::INTERNAL_ERROR,
5387 "Failed to create voice channel.");
Steve Antoneda6ccd2017-12-04 10:21:55 -08005388 }
5389 GetAudioTransceiver()->internal()->SetChannel(voice_channel);
5390 }
5391
Steve Antondcc3c022017-12-22 16:02:54 -08005392 const cricket::ContentInfo* video = cricket::GetFirstVideoContent(&desc);
Steve Antoneda6ccd2017-12-04 10:21:55 -08005393 if (video && !video->rejected &&
5394 !GetVideoTransceiver()->internal()->channel()) {
Zhi Huange830e682018-03-30 10:48:35 -07005395 cricket::VideoChannel* video_channel = CreateVideoChannel(video->name);
Steve Antoneda6ccd2017-12-04 10:21:55 -08005396 if (!video_channel) {
Steve Anton8a006912017-12-04 15:25:56 -08005397 LOG_AND_RETURN_ERROR(RTCErrorType::INTERNAL_ERROR,
5398 "Failed to create video channel.");
Steve Anton75737c02017-11-06 10:37:17 -08005399 }
Steve Antoneda6ccd2017-12-04 10:21:55 -08005400 GetVideoTransceiver()->internal()->SetChannel(video_channel);
Steve Anton75737c02017-11-06 10:37:17 -08005401 }
5402
Steve Antondcc3c022017-12-22 16:02:54 -08005403 const cricket::ContentInfo* data = cricket::GetFirstDataContent(&desc);
Steve Anton75737c02017-11-06 10:37:17 -08005404 if (data_channel_type_ != cricket::DCT_NONE && data && !data->rejected &&
5405 !rtp_data_channel_ && !sctp_transport_) {
Zhi Huange830e682018-03-30 10:48:35 -07005406 if (!CreateDataChannel(data->name)) {
Steve Anton8a006912017-12-04 15:25:56 -08005407 LOG_AND_RETURN_ERROR(RTCErrorType::INTERNAL_ERROR,
5408 "Failed to create data channel.");
Steve Anton75737c02017-11-06 10:37:17 -08005409 }
5410 }
5411
Steve Anton8a006912017-12-04 15:25:56 -08005412 return RTCError::OK();
Steve Anton75737c02017-11-06 10:37:17 -08005413}
5414
Steve Anton4171afb2017-11-20 10:20:22 -08005415// TODO(steveanton): Perhaps this should be managed by the RtpTransceiver.
Steve Antoneda6ccd2017-12-04 10:21:55 -08005416cricket::VoiceChannel* PeerConnection::CreateVoiceChannel(
Zhi Huange830e682018-03-30 10:48:35 -07005417 const std::string& mid) {
5418 RtpTransportInternal* rtp_transport =
5419 transport_controller_->GetRtpTransport(mid);
5420 RTC_DCHECK(rtp_transport);
Steve Anton75737c02017-11-06 10:37:17 -08005421 cricket::VoiceChannel* voice_channel = channel_manager()->CreateVoiceChannel(
Zhi Huange830e682018-03-30 10:48:35 -07005422 call_.get(), configuration_.media_config, rtp_transport,
5423 signaling_thread(), mid, SrtpRequired(),
5424 factory_->options().crypto_options, audio_options_);
Steve Anton75737c02017-11-06 10:37:17 -08005425 if (!voice_channel) {
Steve Antoneda6ccd2017-12-04 10:21:55 -08005426 return nullptr;
Steve Anton75737c02017-11-06 10:37:17 -08005427 }
Steve Anton75737c02017-11-06 10:37:17 -08005428 voice_channel->SignalDtlsSrtpSetupFailure.connect(
5429 this, &PeerConnection::OnDtlsSrtpSetupFailure);
Steve Anton75737c02017-11-06 10:37:17 -08005430 voice_channel->SignalSentPacket.connect(this,
5431 &PeerConnection::OnSentPacket_w);
Zhi Huange830e682018-03-30 10:48:35 -07005432 voice_channel->SetRtpTransport(rtp_transport);
5433 if (factory_->options().disable_encryption) {
5434 voice_channel->DisableEncryption(true);
5435 }
Steve Antondb67ba12018-03-19 17:41:42 -07005436 if (uma_observer_) {
5437 voice_channel->SetMetricsObserver(uma_observer_);
5438 }
Steve Anton4171afb2017-11-20 10:20:22 -08005439
Steve Antoneda6ccd2017-12-04 10:21:55 -08005440 return voice_channel;
Steve Anton75737c02017-11-06 10:37:17 -08005441}
5442
Steve Anton4171afb2017-11-20 10:20:22 -08005443// TODO(steveanton): Perhaps this should be managed by the RtpTransceiver.
Steve Antoneda6ccd2017-12-04 10:21:55 -08005444cricket::VideoChannel* PeerConnection::CreateVideoChannel(
Zhi Huange830e682018-03-30 10:48:35 -07005445 const std::string& mid) {
5446 RtpTransportInternal* rtp_transport =
5447 transport_controller_->GetRtpTransport(mid);
5448 RTC_DCHECK(rtp_transport);
Steve Anton75737c02017-11-06 10:37:17 -08005449 cricket::VideoChannel* video_channel = channel_manager()->CreateVideoChannel(
Zhi Huange830e682018-03-30 10:48:35 -07005450 call_.get(), configuration_.media_config, rtp_transport,
5451 signaling_thread(), mid, SrtpRequired(),
5452 factory_->options().crypto_options, video_options_);
Steve Anton75737c02017-11-06 10:37:17 -08005453 if (!video_channel) {
Steve Antoneda6ccd2017-12-04 10:21:55 -08005454 return nullptr;
Steve Anton75737c02017-11-06 10:37:17 -08005455 }
Steve Anton75737c02017-11-06 10:37:17 -08005456 video_channel->SignalDtlsSrtpSetupFailure.connect(
5457 this, &PeerConnection::OnDtlsSrtpSetupFailure);
Steve Anton75737c02017-11-06 10:37:17 -08005458 video_channel->SignalSentPacket.connect(this,
5459 &PeerConnection::OnSentPacket_w);
Zhi Huange830e682018-03-30 10:48:35 -07005460 video_channel->SetRtpTransport(rtp_transport);
5461 if (factory_->options().disable_encryption) {
5462 video_channel->DisableEncryption(true);
5463 }
Steve Antondb67ba12018-03-19 17:41:42 -07005464 if (uma_observer_) {
5465 video_channel->SetMetricsObserver(uma_observer_);
5466 }
Steve Anton4171afb2017-11-20 10:20:22 -08005467
Steve Antoneda6ccd2017-12-04 10:21:55 -08005468 return video_channel;
Steve Anton75737c02017-11-06 10:37:17 -08005469}
5470
Zhi Huange830e682018-03-30 10:48:35 -07005471bool PeerConnection::CreateDataChannel(const std::string& mid) {
Steve Anton75737c02017-11-06 10:37:17 -08005472 bool sctp = (data_channel_type_ == cricket::DCT_SCTP);
5473 if (sctp) {
5474 if (!sctp_factory_) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01005475 RTC_LOG(LS_ERROR)
Steve Anton75737c02017-11-06 10:37:17 -08005476 << "Trying to create SCTP transport, but didn't compile with "
5477 "SCTP support (HAVE_SCTP)";
5478 return false;
5479 }
5480 if (!network_thread()->Invoke<bool>(
Zhi Huange830e682018-03-30 10:48:35 -07005481 RTC_FROM_HERE,
5482 rtc::Bind(&PeerConnection::CreateSctpTransport_n, this, mid))) {
Steve Anton75737c02017-11-06 10:37:17 -08005483 return false;
5484 }
Steve Antoneda6ccd2017-12-04 10:21:55 -08005485 for (const auto& channel : sctp_data_channels_) {
5486 channel->OnTransportChannelCreated();
5487 }
Steve Anton75737c02017-11-06 10:37:17 -08005488 } else {
Zhi Huange830e682018-03-30 10:48:35 -07005489 RtpTransportInternal* rtp_transport =
5490 transport_controller_->GetRtpTransport(mid);
5491 RTC_DCHECK(rtp_transport);
Steve Anton75737c02017-11-06 10:37:17 -08005492 rtp_data_channel_ = channel_manager()->CreateRtpDataChannel(
Zhi Huange830e682018-03-30 10:48:35 -07005493 configuration_.media_config, rtp_transport, signaling_thread(), mid,
5494 SrtpRequired(), factory_->options().crypto_options);
Steve Anton75737c02017-11-06 10:37:17 -08005495 if (!rtp_data_channel_) {
Steve Anton75737c02017-11-06 10:37:17 -08005496 return false;
5497 }
Steve Anton75737c02017-11-06 10:37:17 -08005498 rtp_data_channel_->SignalDtlsSrtpSetupFailure.connect(
5499 this, &PeerConnection::OnDtlsSrtpSetupFailure);
5500 rtp_data_channel_->SignalSentPacket.connect(
5501 this, &PeerConnection::OnSentPacket_w);
Zhi Huange830e682018-03-30 10:48:35 -07005502 rtp_data_channel_->SetRtpTransport(rtp_transport);
5503 if (factory_->options().disable_encryption) {
5504 rtp_data_channel_->DisableEncryption(true);
5505 }
Steve Antondb67ba12018-03-19 17:41:42 -07005506 if (uma_observer_) {
5507 rtp_data_channel_->SetMetricsObserver(uma_observer_);
5508 }
Steve Anton75737c02017-11-06 10:37:17 -08005509 }
5510
Steve Anton75737c02017-11-06 10:37:17 -08005511 return true;
5512}
5513
5514Call::Stats PeerConnection::GetCallStats() {
5515 if (!worker_thread()->IsCurrent()) {
5516 return worker_thread()->Invoke<Call::Stats>(
5517 RTC_FROM_HERE, rtc::Bind(&PeerConnection::GetCallStats, this));
5518 }
5519 if (call_) {
5520 return call_->GetStats();
5521 } else {
5522 return Call::Stats();
5523 }
5524}
5525
Zhi Huange830e682018-03-30 10:48:35 -07005526bool PeerConnection::CreateSctpTransport_n(const std::string& mid) {
Steve Anton75737c02017-11-06 10:37:17 -08005527 RTC_DCHECK(network_thread()->IsCurrent());
5528 RTC_DCHECK(sctp_factory_);
Zhi Huang644fde42018-04-02 19:16:26 -07005529 cricket::DtlsTransportInternal* dtls_transport =
Zhi Huange830e682018-03-30 10:48:35 -07005530 transport_controller_->GetDtlsTransport(mid);
Zhi Huang644fde42018-04-02 19:16:26 -07005531 RTC_DCHECK(dtls_transport);
5532 sctp_transport_ = sctp_factory_->CreateSctpTransport(dtls_transport);
Steve Anton75737c02017-11-06 10:37:17 -08005533 RTC_DCHECK(sctp_transport_);
5534 sctp_invoker_.reset(new rtc::AsyncInvoker());
5535 sctp_transport_->SignalReadyToSendData.connect(
5536 this, &PeerConnection::OnSctpTransportReadyToSendData_n);
5537 sctp_transport_->SignalDataReceived.connect(
5538 this, &PeerConnection::OnSctpTransportDataReceived_n);
5539 sctp_transport_->SignalStreamClosedRemotely.connect(
5540 this, &PeerConnection::OnSctpStreamClosedRemotely_n);
Zhi Huange830e682018-03-30 10:48:35 -07005541 sctp_mid_ = mid;
Zhi Huang644fde42018-04-02 19:16:26 -07005542 sctp_transport_->SetDtlsTransport(dtls_transport);
Zhi Huange830e682018-03-30 10:48:35 -07005543 return true;
Steve Anton75737c02017-11-06 10:37:17 -08005544}
5545
5546void PeerConnection::DestroySctpTransport_n() {
5547 RTC_DCHECK(network_thread()->IsCurrent());
5548 sctp_transport_.reset(nullptr);
Zhi Huange830e682018-03-30 10:48:35 -07005549 sctp_mid_.reset();
Steve Anton75737c02017-11-06 10:37:17 -08005550 sctp_invoker_.reset(nullptr);
5551 sctp_ready_to_send_data_ = false;
5552}
5553
5554void PeerConnection::OnSctpTransportReadyToSendData_n() {
5555 RTC_DCHECK(data_channel_type_ == cricket::DCT_SCTP);
5556 RTC_DCHECK(network_thread()->IsCurrent());
5557 // Note: Cannot use rtc::Bind here because it will grab a reference to
5558 // PeerConnection and potentially cause PeerConnection to live longer than
5559 // expected. It is safe not to grab a reference since the sctp_invoker_ will
5560 // be destroyed before PeerConnection is destroyed, and at that point all
5561 // pending tasks will be cleared.
5562 sctp_invoker_->AsyncInvoke<void>(RTC_FROM_HERE, signaling_thread(), [this] {
5563 OnSctpTransportReadyToSendData_s(true);
5564 });
5565}
5566
5567void PeerConnection::OnSctpTransportReadyToSendData_s(bool ready) {
5568 RTC_DCHECK(signaling_thread()->IsCurrent());
5569 sctp_ready_to_send_data_ = ready;
5570 SignalSctpReadyToSendData(ready);
5571}
5572
5573void PeerConnection::OnSctpTransportDataReceived_n(
5574 const cricket::ReceiveDataParams& params,
5575 const rtc::CopyOnWriteBuffer& payload) {
5576 RTC_DCHECK(data_channel_type_ == cricket::DCT_SCTP);
5577 RTC_DCHECK(network_thread()->IsCurrent());
5578 // Note: Cannot use rtc::Bind here because it will grab a reference to
5579 // PeerConnection and potentially cause PeerConnection to live longer than
5580 // expected. It is safe not to grab a reference since the sctp_invoker_ will
5581 // be destroyed before PeerConnection is destroyed, and at that point all
5582 // pending tasks will be cleared.
5583 sctp_invoker_->AsyncInvoke<void>(
5584 RTC_FROM_HERE, signaling_thread(), [this, params, payload] {
5585 OnSctpTransportDataReceived_s(params, payload);
5586 });
5587}
5588
5589void PeerConnection::OnSctpTransportDataReceived_s(
5590 const cricket::ReceiveDataParams& params,
5591 const rtc::CopyOnWriteBuffer& payload) {
5592 RTC_DCHECK(signaling_thread()->IsCurrent());
5593 if (params.type == cricket::DMT_CONTROL && IsOpenMessage(payload)) {
5594 // Received OPEN message; parse and signal that a new data channel should
5595 // be created.
5596 std::string label;
5597 InternalDataChannelInit config;
5598 config.id = params.ssrc;
5599 if (!ParseDataChannelOpenMessage(payload, &label, &config)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01005600 RTC_LOG(LS_WARNING) << "Failed to parse the OPEN message for sid "
5601 << params.ssrc;
Steve Anton75737c02017-11-06 10:37:17 -08005602 return;
5603 }
5604 config.open_handshake_role = InternalDataChannelInit::kAcker;
5605 OnDataChannelOpenMessage(label, config);
5606 } else {
5607 // Otherwise just forward the signal.
5608 SignalSctpDataReceived(params, payload);
5609 }
5610}
5611
5612void PeerConnection::OnSctpStreamClosedRemotely_n(int sid) {
5613 RTC_DCHECK(data_channel_type_ == cricket::DCT_SCTP);
5614 RTC_DCHECK(network_thread()->IsCurrent());
5615 sctp_invoker_->AsyncInvoke<void>(
5616 RTC_FROM_HERE, signaling_thread(),
5617 rtc::Bind(&sigslot::signal1<int>::operator(),
5618 &SignalSctpStreamClosedRemotely, sid));
5619}
5620
5621// Returns false if bundle is enabled and rtcp_mux is disabled.
5622bool PeerConnection::ValidateBundleSettings(const SessionDescription* desc) {
5623 bool bundle_enabled = desc->HasGroup(cricket::GROUP_TYPE_BUNDLE);
5624 if (!bundle_enabled)
5625 return true;
5626
5627 const cricket::ContentGroup* bundle_group =
5628 desc->GetGroupByName(cricket::GROUP_TYPE_BUNDLE);
5629 RTC_DCHECK(bundle_group != NULL);
5630
5631 const cricket::ContentInfos& contents = desc->contents();
5632 for (cricket::ContentInfos::const_iterator citer = contents.begin();
5633 citer != contents.end(); ++citer) {
5634 const cricket::ContentInfo* content = (&*citer);
5635 RTC_DCHECK(content != NULL);
5636 if (bundle_group->HasContentName(content->name) && !content->rejected &&
Steve Anton5adfafd2017-12-20 16:34:00 -08005637 content->type == MediaProtocolType::kRtp) {
Steve Anton75737c02017-11-06 10:37:17 -08005638 if (!HasRtcpMuxEnabled(content))
5639 return false;
5640 }
5641 }
5642 // RTCP-MUX is enabled in all the contents.
5643 return true;
5644}
5645
5646bool PeerConnection::HasRtcpMuxEnabled(const cricket::ContentInfo* content) {
Steve Antonb1c1de12017-12-21 15:14:30 -08005647 return content->media_description()->rtcp_mux();
Steve Anton75737c02017-11-06 10:37:17 -08005648}
5649
Steve Anton8a006912017-12-04 15:25:56 -08005650RTCError PeerConnection::ValidateSessionDescription(
Steve Anton75737c02017-11-06 10:37:17 -08005651 const SessionDescriptionInterface* sdesc,
Steve Anton8a006912017-12-04 15:25:56 -08005652 cricket::ContentSource source) {
Steve Antonf8470812017-12-04 10:46:21 -08005653 if (session_error() != SessionError::kNone) {
Steve Anton8a006912017-12-04 15:25:56 -08005654 LOG_AND_RETURN_ERROR(RTCErrorType::INTERNAL_ERROR, GetSessionErrorMsg());
Steve Anton75737c02017-11-06 10:37:17 -08005655 }
5656
5657 if (!sdesc || !sdesc->description()) {
Steve Anton8a006912017-12-04 15:25:56 -08005658 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER, kInvalidSdp);
Steve Anton75737c02017-11-06 10:37:17 -08005659 }
5660
Steve Anton3828c062017-12-06 10:34:51 -08005661 SdpType type = sdesc->GetType();
5662 if ((source == cricket::CS_LOCAL && !ExpectSetLocalDescription(type)) ||
5663 (source == cricket::CS_REMOTE && !ExpectSetRemoteDescription(type))) {
Steve Anton8a006912017-12-04 15:25:56 -08005664 LOG_AND_RETURN_ERROR(
Harald Alvestrand5081c0c2018-03-09 15:18:03 +01005665 RTCErrorType::INVALID_STATE,
Steve Anton8a006912017-12-04 15:25:56 -08005666 "Called in wrong state: " + GetSignalingStateString(signaling_state()));
Steve Anton75737c02017-11-06 10:37:17 -08005667 }
5668
5669 // Verify crypto settings.
5670 std::string crypto_error;
Steve Anton8a006912017-12-04 15:25:56 -08005671 if (webrtc_session_desc_factory_->SdesPolicy() == cricket::SEC_REQUIRED ||
5672 dtls_enabled_) {
Harald Alvestrand194939b2018-01-24 16:04:13 +01005673 RTCError crypto_error =
5674 VerifyCrypto(sdesc->description(), dtls_enabled_, uma_observer_);
Steve Anton8a006912017-12-04 15:25:56 -08005675 if (!crypto_error.ok()) {
5676 return crypto_error;
5677 }
Steve Anton75737c02017-11-06 10:37:17 -08005678 }
5679
5680 // Verify ice-ufrag and ice-pwd.
5681 if (!VerifyIceUfragPwdPresent(sdesc->description())) {
Steve Anton8a006912017-12-04 15:25:56 -08005682 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
5683 kSdpWithoutIceUfragPwd);
Steve Anton75737c02017-11-06 10:37:17 -08005684 }
5685
5686 if (!ValidateBundleSettings(sdesc->description())) {
Steve Anton8a006912017-12-04 15:25:56 -08005687 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
5688 kBundleWithoutRtcpMux);
Steve Anton75737c02017-11-06 10:37:17 -08005689 }
5690
5691 // TODO(skvlad): When the local rtcp-mux policy is Require, reject any
5692 // m-lines that do not rtcp-mux enabled.
5693
5694 // Verify m-lines in Answer when compared against Offer.
Steve Anton3828c062017-12-06 10:34:51 -08005695 if (type == SdpType::kPrAnswer || type == SdpType::kAnswer) {
Seth Hampsonae8a90a2018-02-13 15:33:48 -08005696 // With an answer we want to compare the new answer session description with
5697 // the offer's session description from the current negotiation.
Steve Anton75737c02017-11-06 10:37:17 -08005698 const cricket::SessionDescription* offer_desc =
5699 (source == cricket::CS_LOCAL) ? remote_description()->description()
5700 : local_description()->description();
Seth Hampsonae8a90a2018-02-13 15:33:48 -08005701 if (!MediaSectionsHaveSameCount(*offer_desc, *sdesc->description()) ||
5702 !MediaSectionsInSameOrder(*offer_desc, nullptr, *sdesc->description(),
5703 type)) {
Steve Anton8a006912017-12-04 15:25:56 -08005704 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
5705 kMlineMismatchInAnswer);
Steve Anton75737c02017-11-06 10:37:17 -08005706 }
5707 } else {
Steve Anton75737c02017-11-06 10:37:17 -08005708 // The re-offers should respect the order of m= sections in current
5709 // description. See RFC3264 Section 8 paragraph 4 for more details.
Seth Hampsonae8a90a2018-02-13 15:33:48 -08005710 // With a re-offer, either the current local or current remote descriptions
5711 // could be the most up to date, so we would like to check against both of
5712 // them if they exist. It could be the case that one of them has a 0 port
5713 // for a media section, but the other does not. This is important to check
5714 // against in the case that we are recycling an m= section.
5715 const cricket::SessionDescription* current_desc = nullptr;
5716 const cricket::SessionDescription* secondary_current_desc = nullptr;
5717 if (local_description()) {
5718 current_desc = local_description()->description();
5719 if (remote_description()) {
5720 secondary_current_desc = remote_description()->description();
5721 }
5722 } else if (remote_description()) {
5723 current_desc = remote_description()->description();
5724 }
Steve Anton75737c02017-11-06 10:37:17 -08005725 if (current_desc &&
Seth Hampsonae8a90a2018-02-13 15:33:48 -08005726 !MediaSectionsInSameOrder(*current_desc, secondary_current_desc,
5727 *sdesc->description(), type)) {
Steve Anton8a006912017-12-04 15:25:56 -08005728 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
5729 kMlineMismatchInSubsequentOffer);
Steve Anton75737c02017-11-06 10:37:17 -08005730 }
5731 }
5732
Steve Antonba42e992018-04-09 14:10:01 -07005733 if (IsUnifiedPlan()) {
5734 // Ensure that each audio and video media section has at most one
5735 // "StreamParams". This will return an error if receiving a session
5736 // description from a "Plan B" endpoint which adds multiple tracks of the
5737 // same type. With Unified Plan, there can only be at most one track per
5738 // media section.
5739 for (const ContentInfo& content : sdesc->description()->contents()) {
5740 const MediaContentDescription& desc = *content.description;
5741 if ((desc.type() == cricket::MEDIA_TYPE_AUDIO ||
5742 desc.type() == cricket::MEDIA_TYPE_VIDEO) &&
5743 desc.streams().size() > 1u) {
5744 LOG_AND_RETURN_ERROR(RTCErrorType::INVALID_PARAMETER,
5745 "Media section has more than one track specified "
5746 "with a=ssrc lines which is not supported with "
5747 "Unified Plan.");
5748 }
5749 }
5750 }
5751
Steve Anton8a006912017-12-04 15:25:56 -08005752 return RTCError::OK();
Steve Anton75737c02017-11-06 10:37:17 -08005753}
5754
Steve Anton3828c062017-12-06 10:34:51 -08005755bool PeerConnection::ExpectSetLocalDescription(SdpType type) {
Steve Anton75737c02017-11-06 10:37:17 -08005756 PeerConnectionInterface::SignalingState state = signaling_state();
Steve Anton3828c062017-12-06 10:34:51 -08005757 if (type == SdpType::kOffer) {
Steve Anton75737c02017-11-06 10:37:17 -08005758 return (state == PeerConnectionInterface::kStable) ||
5759 (state == PeerConnectionInterface::kHaveLocalOffer);
Steve Anton20393062017-12-04 16:24:52 -08005760 } else {
Steve Anton3828c062017-12-06 10:34:51 -08005761 RTC_DCHECK(type == SdpType::kPrAnswer || type == SdpType::kAnswer);
Steve Anton75737c02017-11-06 10:37:17 -08005762 return (state == PeerConnectionInterface::kHaveRemoteOffer) ||
5763 (state == PeerConnectionInterface::kHaveLocalPrAnswer);
5764 }
5765}
5766
Steve Anton3828c062017-12-06 10:34:51 -08005767bool PeerConnection::ExpectSetRemoteDescription(SdpType type) {
Steve Anton75737c02017-11-06 10:37:17 -08005768 PeerConnectionInterface::SignalingState state = signaling_state();
Steve Anton3828c062017-12-06 10:34:51 -08005769 if (type == SdpType::kOffer) {
Steve Anton75737c02017-11-06 10:37:17 -08005770 return (state == PeerConnectionInterface::kStable) ||
5771 (state == PeerConnectionInterface::kHaveRemoteOffer);
Steve Anton20393062017-12-04 16:24:52 -08005772 } else {
Steve Anton3828c062017-12-06 10:34:51 -08005773 RTC_DCHECK(type == SdpType::kPrAnswer || type == SdpType::kAnswer);
Steve Anton75737c02017-11-06 10:37:17 -08005774 return (state == PeerConnectionInterface::kHaveLocalOffer) ||
5775 (state == PeerConnectionInterface::kHaveRemotePrAnswer);
5776 }
5777}
5778
Steve Antonf8470812017-12-04 10:46:21 -08005779const char* PeerConnection::SessionErrorToString(SessionError error) const {
5780 switch (error) {
5781 case SessionError::kNone:
5782 return "ERROR_NONE";
5783 case SessionError::kContent:
5784 return "ERROR_CONTENT";
5785 case SessionError::kTransport:
5786 return "ERROR_TRANSPORT";
5787 }
5788 RTC_NOTREACHED();
5789 return "";
5790}
5791
Steve Anton75737c02017-11-06 10:37:17 -08005792std::string PeerConnection::GetSessionErrorMsg() {
5793 std::ostringstream desc;
Steve Antonf8470812017-12-04 10:46:21 -08005794 desc << kSessionError << SessionErrorToString(session_error()) << ". ";
5795 desc << kSessionErrorDesc << session_error_desc() << ".";
Steve Anton75737c02017-11-06 10:37:17 -08005796 return desc.str();
5797}
5798
Steve Anton8e20f172018-03-06 10:55:04 -08005799void PeerConnection::ReportSdpFormatReceived(
5800 const SessionDescriptionInterface& remote_offer) {
5801 if (!uma_observer_) {
5802 return;
5803 }
5804 int num_audio_mlines = 0;
5805 int num_video_mlines = 0;
5806 int num_audio_tracks = 0;
5807 int num_video_tracks = 0;
5808 for (const ContentInfo& content : remote_offer.description()->contents()) {
5809 cricket::MediaType media_type = content.media_description()->type();
5810 int num_tracks = std::max(
5811 1, static_cast<int>(content.media_description()->streams().size()));
5812 if (media_type == cricket::MEDIA_TYPE_AUDIO) {
5813 num_audio_mlines += 1;
5814 num_audio_tracks += num_tracks;
5815 } else if (media_type == cricket::MEDIA_TYPE_VIDEO) {
5816 num_video_mlines += 1;
5817 num_video_tracks += num_tracks;
5818 }
5819 }
5820 SdpFormatReceived format = kSdpFormatReceivedNoTracks;
5821 if (num_audio_mlines > 1 || num_video_mlines > 1) {
5822 format = kSdpFormatReceivedComplexUnifiedPlan;
5823 } else if (num_audio_tracks > 1 || num_video_tracks > 1) {
5824 format = kSdpFormatReceivedComplexPlanB;
5825 } else if (num_audio_tracks > 0 || num_video_tracks > 0) {
5826 format = kSdpFormatReceivedSimple;
5827 }
5828 uma_observer_->IncrementEnumCounter(kEnumCounterSdpFormatReceived, format,
5829 kSdpFormatReceivedMax);
5830}
5831
Steve Anton0ffaaa22018-02-23 10:31:30 -08005832void PeerConnection::ReportNegotiatedSdpSemantics(
5833 const SessionDescriptionInterface& answer) {
5834 if (!uma_observer_) {
5835 return;
5836 }
5837 switch (answer.description()->msid_signaling()) {
5838 case 0:
5839 uma_observer_->IncrementEnumCounter(kEnumCounterSdpSemanticNegotiated,
5840 kSdpSemanticNegotiatedNone,
5841 kSdpSemanticNegotiatedMax);
5842 break;
5843 case cricket::kMsidSignalingMediaSection:
5844 uma_observer_->IncrementEnumCounter(kEnumCounterSdpSemanticNegotiated,
5845 kSdpSemanticNegotiatedUnifiedPlan,
5846 kSdpSemanticNegotiatedMax);
5847 break;
5848 case cricket::kMsidSignalingSsrcAttribute:
5849 uma_observer_->IncrementEnumCounter(kEnumCounterSdpSemanticNegotiated,
5850 kSdpSemanticNegotiatedPlanB,
5851 kSdpSemanticNegotiatedMax);
5852 break;
5853 case cricket::kMsidSignalingMediaSection |
5854 cricket::kMsidSignalingSsrcAttribute:
5855 uma_observer_->IncrementEnumCounter(kEnumCounterSdpSemanticNegotiated,
5856 kSdpSemanticNegotiatedMixed,
5857 kSdpSemanticNegotiatedMax);
5858 break;
5859 default:
5860 RTC_NOTREACHED();
5861 }
5862}
5863
Steve Anton75737c02017-11-06 10:37:17 -08005864// We need to check the local/remote description for the Transport instead of
5865// the session, because a new Transport added during renegotiation may have
5866// them unset while the session has them set from the previous negotiation.
5867// Not doing so may trigger the auto generation of transport description and
5868// mess up DTLS identity information, ICE credential, etc.
5869bool PeerConnection::ReadyToUseRemoteCandidate(
5870 const IceCandidateInterface* candidate,
5871 const SessionDescriptionInterface* remote_desc,
5872 bool* valid) {
5873 *valid = true;
5874
5875 const SessionDescriptionInterface* current_remote_desc =
5876 remote_desc ? remote_desc : remote_description();
5877
5878 if (!current_remote_desc) {
5879 return false;
5880 }
5881
5882 size_t mediacontent_index = static_cast<size_t>(candidate->sdp_mline_index());
5883 size_t remote_content_size =
5884 current_remote_desc->description()->contents().size();
5885 if (mediacontent_index >= remote_content_size) {
Mirko Bonadei675513b2017-11-09 11:09:25 +01005886 RTC_LOG(LS_ERROR)
5887 << "ReadyToUseRemoteCandidate: Invalid candidate media index "
5888 << mediacontent_index;
Steve Anton75737c02017-11-06 10:37:17 -08005889
5890 *valid = false;
5891 return false;
5892 }
5893
5894 cricket::ContentInfo content =
5895 current_remote_desc->description()->contents()[mediacontent_index];
5896
5897 const std::string transport_name = GetTransportName(content.name);
5898 if (transport_name.empty()) {
5899 return false;
5900 }
Zhi Huange830e682018-03-30 10:48:35 -07005901 return true;
Steve Anton75737c02017-11-06 10:37:17 -08005902}
5903
5904bool PeerConnection::SrtpRequired() const {
5905 return dtls_enabled_ ||
5906 webrtc_session_desc_factory_->SdesPolicy() == cricket::SEC_REQUIRED;
5907}
5908
5909void PeerConnection::OnTransportControllerGatheringState(
5910 cricket::IceGatheringState state) {
5911 RTC_DCHECK(signaling_thread()->IsCurrent());
5912 if (state == cricket::kIceGatheringGathering) {
5913 OnIceGatheringChange(PeerConnectionInterface::kIceGatheringGathering);
5914 } else if (state == cricket::kIceGatheringComplete) {
5915 OnIceGatheringChange(PeerConnectionInterface::kIceGatheringComplete);
5916 }
5917}
5918
5919void PeerConnection::ReportTransportStats() {
Steve Antonc7b964c2018-02-01 14:39:45 -08005920 std::map<std::string, std::set<cricket::MediaType>>
5921 media_types_by_transport_name;
5922 for (auto transceiver : transceivers_) {
5923 if (transceiver->internal()->channel()) {
5924 const std::string& transport_name =
5925 transceiver->internal()->channel()->transport_name();
5926 media_types_by_transport_name[transport_name].insert(
Steve Anton69470252018-02-09 11:43:08 -08005927 transceiver->media_type());
Steve Antonc7b964c2018-02-01 14:39:45 -08005928 }
Steve Anton75737c02017-11-06 10:37:17 -08005929 }
5930 if (rtp_data_channel()) {
Steve Antonc7b964c2018-02-01 14:39:45 -08005931 media_types_by_transport_name[rtp_data_channel()->transport_name()].insert(
5932 cricket::MEDIA_TYPE_DATA);
Steve Anton75737c02017-11-06 10:37:17 -08005933 }
Zhi Huange830e682018-03-30 10:48:35 -07005934
5935 rtc::Optional<std::string> transport_name = sctp_transport_name();
5936 if (transport_name) {
5937 media_types_by_transport_name[*transport_name].insert(
Steve Antonc7b964c2018-02-01 14:39:45 -08005938 cricket::MEDIA_TYPE_DATA);
Steve Anton75737c02017-11-06 10:37:17 -08005939 }
Zhi Huange830e682018-03-30 10:48:35 -07005940
Steve Antonc7b964c2018-02-01 14:39:45 -08005941 for (const auto& entry : media_types_by_transport_name) {
5942 const std::string& transport_name = entry.first;
5943 const std::set<cricket::MediaType> media_types = entry.second;
Steve Anton75737c02017-11-06 10:37:17 -08005944 cricket::TransportStats stats;
Steve Antonc7b964c2018-02-01 14:39:45 -08005945 if (transport_controller_->GetStats(transport_name, &stats)) {
Steve Anton75737c02017-11-06 10:37:17 -08005946 ReportBestConnectionState(stats);
Steve Antonc7b964c2018-02-01 14:39:45 -08005947 ReportNegotiatedCiphers(stats, media_types);
Steve Anton75737c02017-11-06 10:37:17 -08005948 }
5949 }
5950}
5951// Walk through the ConnectionInfos to gather best connection usage
5952// for IPv4 and IPv6.
5953void PeerConnection::ReportBestConnectionState(
5954 const cricket::TransportStats& stats) {
5955 RTC_DCHECK(metrics_observer());
Steve Antonc7b964c2018-02-01 14:39:45 -08005956 for (const cricket::TransportChannelStats& channel_stats :
5957 stats.channel_stats) {
5958 for (const cricket::ConnectionInfo& connection_info :
5959 channel_stats.connection_infos) {
5960 if (!connection_info.best_connection) {
Steve Anton75737c02017-11-06 10:37:17 -08005961 continue;
5962 }
5963
5964 PeerConnectionEnumCounterType type = kPeerConnectionEnumCounterMax;
Steve Antonc7b964c2018-02-01 14:39:45 -08005965 const cricket::Candidate& local = connection_info.local_candidate;
5966 const cricket::Candidate& remote = connection_info.remote_candidate;
Steve Anton75737c02017-11-06 10:37:17 -08005967
5968 // Increment the counter for IceCandidatePairType.
5969 if (local.protocol() == cricket::TCP_PROTOCOL_NAME ||
5970 (local.type() == RELAY_PORT_TYPE &&
5971 local.relay_protocol() == cricket::TCP_PROTOCOL_NAME)) {
5972 type = kEnumCounterIceCandidatePairTypeTcp;
5973 } else if (local.protocol() == cricket::UDP_PROTOCOL_NAME) {
5974 type = kEnumCounterIceCandidatePairTypeUdp;
5975 } else {
5976 RTC_CHECK(0);
5977 }
5978 metrics_observer()->IncrementEnumCounter(
5979 type, GetIceCandidatePairCounter(local, remote),
5980 kIceCandidatePairMax);
5981
5982 // Increment the counter for IP type.
5983 if (local.address().family() == AF_INET) {
5984 metrics_observer()->IncrementEnumCounter(
5985 kEnumCounterAddressFamily, kBestConnections_IPv4,
5986 kPeerConnectionAddressFamilyCounter_Max);
5987
5988 } else if (local.address().family() == AF_INET6) {
5989 metrics_observer()->IncrementEnumCounter(
5990 kEnumCounterAddressFamily, kBestConnections_IPv6,
5991 kPeerConnectionAddressFamilyCounter_Max);
5992 } else {
5993 RTC_CHECK(0);
5994 }
5995
5996 return;
5997 }
5998 }
5999}
6000
6001void PeerConnection::ReportNegotiatedCiphers(
Steve Antonc7b964c2018-02-01 14:39:45 -08006002 const cricket::TransportStats& stats,
6003 const std::set<cricket::MediaType>& media_types) {
Steve Anton75737c02017-11-06 10:37:17 -08006004 RTC_DCHECK(metrics_observer());
6005 if (!dtls_enabled_ || stats.channel_stats.empty()) {
6006 return;
6007 }
6008
6009 int srtp_crypto_suite = stats.channel_stats[0].srtp_crypto_suite;
6010 int ssl_cipher_suite = stats.channel_stats[0].ssl_cipher_suite;
6011 if (srtp_crypto_suite == rtc::SRTP_INVALID_CRYPTO_SUITE &&
6012 ssl_cipher_suite == rtc::TLS_NULL_WITH_NULL_NULL) {
6013 return;
6014 }
6015
Steve Antonc7b964c2018-02-01 14:39:45 -08006016 for (cricket::MediaType media_type : media_types) {
6017 PeerConnectionEnumCounterType srtp_counter_type;
6018 PeerConnectionEnumCounterType ssl_counter_type;
6019 switch (media_type) {
6020 case cricket::MEDIA_TYPE_AUDIO:
6021 srtp_counter_type = kEnumCounterAudioSrtpCipher;
6022 ssl_counter_type = kEnumCounterAudioSslCipher;
6023 break;
6024 case cricket::MEDIA_TYPE_VIDEO:
6025 srtp_counter_type = kEnumCounterVideoSrtpCipher;
6026 ssl_counter_type = kEnumCounterVideoSslCipher;
6027 break;
6028 case cricket::MEDIA_TYPE_DATA:
6029 srtp_counter_type = kEnumCounterDataSrtpCipher;
6030 ssl_counter_type = kEnumCounterDataSslCipher;
6031 break;
6032 default:
6033 RTC_NOTREACHED();
6034 continue;
6035 }
6036 if (srtp_crypto_suite != rtc::SRTP_INVALID_CRYPTO_SUITE) {
6037 metrics_observer()->IncrementSparseEnumCounter(srtp_counter_type,
6038 srtp_crypto_suite);
6039 }
6040 if (ssl_cipher_suite != rtc::TLS_NULL_WITH_NULL_NULL) {
6041 metrics_observer()->IncrementSparseEnumCounter(ssl_counter_type,
6042 ssl_cipher_suite);
6043 }
Steve Anton75737c02017-11-06 10:37:17 -08006044 }
6045}
6046
6047void PeerConnection::OnSentPacket_w(const rtc::SentPacket& sent_packet) {
6048 RTC_DCHECK(worker_thread()->IsCurrent());
6049 RTC_DCHECK(call_);
6050 call_->OnSentPacket(sent_packet);
6051}
6052
6053const std::string PeerConnection::GetTransportName(
6054 const std::string& content_name) {
6055 cricket::BaseChannel* channel = GetChannel(content_name);
Steve Anton6fec8802017-12-04 10:37:29 -08006056 if (channel) {
6057 return channel->transport_name();
Steve Anton75737c02017-11-06 10:37:17 -08006058 }
Steve Anton6fec8802017-12-04 10:37:29 -08006059 if (sctp_transport_) {
Zhi Huange830e682018-03-30 10:48:35 -07006060 RTC_DCHECK(sctp_mid_);
6061 if (content_name == *sctp_mid_) {
6062 return *sctp_transport_name();
Steve Anton6fec8802017-12-04 10:37:29 -08006063 }
6064 }
6065 // Return an empty string if failed to retrieve the transport name.
6066 return "";
Steve Anton75737c02017-11-06 10:37:17 -08006067}
6068
Steve Anton6fec8802017-12-04 10:37:29 -08006069void PeerConnection::DestroyTransceiverChannel(
6070 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
6071 transceiver) {
6072 RTC_DCHECK(transceiver);
Steve Anton75737c02017-11-06 10:37:17 -08006073
Steve Anton6fec8802017-12-04 10:37:29 -08006074 cricket::BaseChannel* channel = transceiver->internal()->channel();
6075 if (channel) {
6076 transceiver->internal()->SetChannel(nullptr);
6077 DestroyBaseChannel(channel);
Steve Anton75737c02017-11-06 10:37:17 -08006078 }
6079}
6080
6081void PeerConnection::DestroyDataChannel() {
Steve Anton6fec8802017-12-04 10:37:29 -08006082 if (rtp_data_channel_) {
6083 OnDataChannelDestroyed();
6084 DestroyBaseChannel(rtp_data_channel_);
6085 rtp_data_channel_ = nullptr;
6086 }
6087
6088 // Note: Cannot use rtc::Bind to create a functor to invoke because it will
6089 // grab a reference to this PeerConnection. If this is called from the
6090 // PeerConnection destructor, the RefCountedObject vtable will have already
6091 // been destroyed (since it is a subclass of PeerConnection) and using
6092 // rtc::Bind will cause "Pure virtual function called" error to appear.
6093
6094 if (sctp_transport_) {
6095 OnDataChannelDestroyed();
6096 network_thread()->Invoke<void>(RTC_FROM_HERE,
6097 [this] { DestroySctpTransport_n(); });
6098 }
6099}
6100
6101void PeerConnection::DestroyBaseChannel(cricket::BaseChannel* channel) {
6102 RTC_DCHECK(channel);
Steve Anton6fec8802017-12-04 10:37:29 -08006103
6104 switch (channel->media_type()) {
6105 case cricket::MEDIA_TYPE_AUDIO:
6106 channel_manager()->DestroyVoiceChannel(
6107 static_cast<cricket::VoiceChannel*>(channel));
6108 break;
6109 case cricket::MEDIA_TYPE_VIDEO:
6110 channel_manager()->DestroyVideoChannel(
6111 static_cast<cricket::VideoChannel*>(channel));
6112 break;
6113 case cricket::MEDIA_TYPE_DATA:
6114 channel_manager()->DestroyRtpDataChannel(
6115 static_cast<cricket::RtpDataChannel*>(channel));
6116 break;
6117 default:
6118 RTC_NOTREACHED() << "Unknown media type: " << channel->media_type();
6119 break;
6120 }
Zhi Huange830e682018-03-30 10:48:35 -07006121}
Steve Anton6fec8802017-12-04 10:37:29 -08006122
Zhi Huange830e682018-03-30 10:48:35 -07006123void PeerConnection::OnRtpTransportChanged(
6124 const std::string& mid,
6125 RtpTransportInternal* rtp_transport) {
6126 auto base_channel = GetChannel(mid);
6127 if (base_channel) {
6128 base_channel->SetRtpTransport(rtp_transport);
6129 }
6130}
Steve Anton6fec8802017-12-04 10:37:29 -08006131
Zhi Huange830e682018-03-30 10:48:35 -07006132void PeerConnection::OnDtlsTransportChanged(
6133 const std::string& mid,
6134 cricket::DtlsTransportInternal* dtls_transport) {
6135 if (sctp_transport_) {
6136 RTC_DCHECK(mid == sctp_mid_);
Zhi Huang644fde42018-04-02 19:16:26 -07006137 sctp_transport_->SetDtlsTransport(dtls_transport);
Steve Anton75737c02017-11-06 10:37:17 -08006138 }
6139}
6140
Harald Alvestrand89061872018-01-02 14:08:34 +01006141void PeerConnection::ClearStatsCache() {
6142 if (stats_collector_) {
6143 stats_collector_->ClearCachedStatsReport();
6144 }
6145}
6146
henrike@webrtc.org28e20752013-07-10 00:45:36 +00006147} // namespace webrtc