blob: 9065982f007268ac741269b923ac7ffba616110e [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
Steve Anton10542f22019-01-11 09:11:00 -080011#ifndef PC_PEER_CONNECTION_H_
12#define PC_PEER_CONNECTION_H_
henrike@webrtc.org28e20752013-07-10 00:45:36 +000013
perkjd61bf802016-03-24 03:16:19 -070014#include <map>
kwibergd1fe2812016-04-27 06:47:29 -070015#include <memory>
Steve Anton75737c02017-11-06 10:37:17 -080016#include <set>
17#include <string>
Henrik Boström79b69802019-07-18 11:16:56 +020018#include <utility>
perkjd61bf802016-03-24 03:16:19 -070019#include <vector>
henrike@webrtc.org28e20752013-07-10 00:45:36 +000020
Steve Anton10542f22019-01-11 09:11:00 -080021#include "api/peer_connection_interface.h"
Niels Möller65f17ca2019-09-12 13:59:36 +020022#include "api/transport/data_channel_transport_interface.h"
Steve Anton10542f22019-01-11 09:11:00 -080023#include "api/turn_customizer.h"
Harald Alvestrand05e4d082019-12-03 14:04:21 +010024#include "pc/data_channel_controller.h"
Steve Anton10542f22019-01-11 09:11:00 -080025#include "pc/ice_server_parsing.h"
26#include "pc/jsep_transport_controller.h"
27#include "pc/peer_connection_factory.h"
28#include "pc/peer_connection_internal.h"
29#include "pc/rtc_stats_collector.h"
Guido Urdaneta1ff16c82019-05-20 19:31:53 +020030#include "pc/rtp_sender.h"
Steve Anton10542f22019-01-11 09:11:00 -080031#include "pc/rtp_transceiver.h"
Harald Alvestrandc85328f2019-02-28 07:51:00 +010032#include "pc/sctp_transport.h"
Steve Anton10542f22019-01-11 09:11:00 -080033#include "pc/stats_collector.h"
34#include "pc/stream_collection.h"
Steve Anton10542f22019-01-11 09:11:00 -080035#include "pc/webrtc_session_description_factory.h"
Jonas Olsson0182a032019-07-09 12:31:20 +020036#include "rtc_base/experiments/field_trial_parser.h"
Henrik Boströma3728d32019-10-28 12:09:49 +010037#include "rtc_base/operations_chain.h"
Karl Wiberg5966c502019-02-21 23:55:09 +010038#include "rtc_base/race_checker.h"
Amit Hilbuchdbb49df2019-01-23 14:54:24 -080039#include "rtc_base/unique_id_generator.h"
Henrik Boströma3728d32019-10-28 12:09:49 +010040#include "rtc_base/weak_ptr.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000041
42namespace webrtc {
henrike@webrtc.org28e20752013-07-10 00:45:36 +000043
deadbeefeb459812015-12-15 19:24:43 -080044class MediaStreamObserver;
perkjf0dcfe22016-03-10 18:32:00 +010045class VideoRtpReceiver;
skvlad11a9cbf2016-10-07 11:53:05 -070046class RtcEventLog;
deadbeefab9b2d12015-10-14 11:33:11 -070047
Steve Anton75737c02017-11-06 10:37:17 -080048// PeerConnection is the implementation of the PeerConnection object as defined
49// by the PeerConnectionInterface API surface.
50// The class currently is solely responsible for the following:
51// - Managing the session state machine (signaling state).
52// - Creating and initializing lower-level objects, like PortAllocator and
53// BaseChannels.
54// - Owning and managing the life cycle of the RtpSender/RtpReceiver and track
55// objects.
56// - Tracking the current and pending local/remote session descriptions.
57// The class currently is jointly responsible for the following:
58// - Parsing and interpreting SDP.
59// - Generating offers and answers based on the current state.
60// - The ICE state machine.
61// - Generating stats.
Steve Anton2d8609c2018-01-23 16:38:46 -080062class PeerConnection : public PeerConnectionInternal,
Zhi Huang365381f2018-04-13 16:44:34 -070063 public JsepTransportController::Observer,
Guido Urdaneta1ff16c82019-05-20 19:31:53 +020064 public RtpSenderBase::SetStreamsObserver,
Steve Antonad182762018-09-05 20:22:40 +000065 public rtc::MessageHandler,
henrike@webrtc.org28e20752013-07-10 00:45:36 +000066 public sigslot::has_slots<> {
67 public:
Qingsi Wang1ba5dec2019-08-19 11:57:17 -070068 // A bit in the usage pattern is registered when its defining event occurs at
69 // least once.
Harald Alvestrand8ebba742018-05-31 14:00:34 +020070 enum class UsageEvent : int {
71 TURN_SERVER_ADDED = 0x01,
72 STUN_SERVER_ADDED = 0x02,
73 DATA_ADDED = 0x04,
74 AUDIO_ADDED = 0x08,
75 VIDEO_ADDED = 0x10,
Qingsi Wang1ba5dec2019-08-19 11:57:17 -070076 // |SetLocalDescription| returns successfully.
77 SET_LOCAL_DESCRIPTION_SUCCEEDED = 0x20,
78 // |SetRemoteDescription| returns successfully.
79 SET_REMOTE_DESCRIPTION_SUCCEEDED = 0x40,
80 // A local candidate (with type host, server-reflexive, or relay) is
81 // collected.
Harald Alvestrand8ebba742018-05-31 14:00:34 +020082 CANDIDATE_COLLECTED = 0x80,
Qingsi Wang1ba5dec2019-08-19 11:57:17 -070083 // A remote candidate is successfully added via |AddIceCandidate|.
84 ADD_ICE_CANDIDATE_SUCCEEDED = 0x100,
Harald Alvestrand8ebba742018-05-31 14:00:34 +020085 ICE_STATE_CONNECTED = 0x200,
Qingsi Wang7fc821d2018-07-12 12:54:53 -070086 CLOSE_CALLED = 0x400,
Qingsi Wang1ba5dec2019-08-19 11:57:17 -070087 // A local candidate with private IP is collected.
Harald Alvestrand056d8112018-07-16 19:18:58 +020088 PRIVATE_CANDIDATE_COLLECTED = 0x800,
Qingsi Wang1ba5dec2019-08-19 11:57:17 -070089 // A remote candidate with private IP is added, either via AddiceCandidate
90 // or from the remote description.
Jeroen de Borstaf242c82019-04-24 13:13:48 -070091 REMOTE_PRIVATE_CANDIDATE_ADDED = 0x1000,
Qingsi Wang1ba5dec2019-08-19 11:57:17 -070092 // A local mDNS candidate is collected.
Jeroen de Borstaf242c82019-04-24 13:13:48 -070093 MDNS_CANDIDATE_COLLECTED = 0x2000,
Qingsi Wang1ba5dec2019-08-19 11:57:17 -070094 // A remote mDNS candidate is added, either via AddIceCandidate or from the
95 // remote description.
Jeroen de Borstaf242c82019-04-24 13:13:48 -070096 REMOTE_MDNS_CANDIDATE_ADDED = 0x4000,
Qingsi Wang1ba5dec2019-08-19 11:57:17 -070097 // A local candidate with IPv6 address is collected.
98 IPV6_CANDIDATE_COLLECTED = 0x8000,
99 // A remote candidate with IPv6 address is added, either via AddIceCandidate
100 // or from the remote description.
101 REMOTE_IPV6_CANDIDATE_ADDED = 0x10000,
102 // A remote candidate (with type host, server-reflexive, or relay) is
103 // successfully added, either via AddIceCandidate or from the remote
104 // description.
105 REMOTE_CANDIDATE_ADDED = 0x20000,
Qingsi Wangcc46b102019-09-12 11:19:01 -0700106 // An explicit host-host candidate pair is selected, i.e. both the local and
107 // the remote candidates have the host type. This does not include candidate
108 // pairs formed with equivalent prflx remote candidates, e.g. a host-prflx
109 // pair where the prflx candidate has the same base as a host candidate of
110 // the remote peer.
111 DIRECT_CONNECTION_SELECTED = 0x40000,
112 MAX_VALUE = 0x80000,
Harald Alvestrand8ebba742018-05-31 14:00:34 +0200113 };
114
zhihuang38ede132017-06-15 12:52:32 -0700115 explicit PeerConnection(PeerConnectionFactory* factory,
116 std::unique_ptr<RtcEventLog> event_log,
117 std::unique_ptr<Call> call);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000118
deadbeef653b8e02015-11-11 12:55:10 -0800119 bool Initialize(
120 const PeerConnectionInterface::RTCConfiguration& configuration,
Benjamin Wrightcab58882018-05-02 15:12:47 -0700121 PeerConnectionDependencies dependencies);
deadbeef653b8e02015-11-11 12:55:10 -0800122
deadbeefa67696b2015-09-29 11:56:26 -0700123 rtc::scoped_refptr<StreamCollectionInterface> local_streams() override;
124 rtc::scoped_refptr<StreamCollectionInterface> remote_streams() override;
125 bool AddStream(MediaStreamInterface* local_stream) override;
126 void RemoveStream(MediaStreamInterface* local_stream) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000127
Steve Anton2d6c76a2018-01-05 17:10:52 -0800128 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrack(
Steve Antonf9381f02017-12-14 10:23:57 -0800129 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -0800130 const std::vector<std::string>& stream_ids) override;
deadbeefe1f9d832016-01-14 15:35:42 -0800131 bool RemoveTrack(RtpSenderInterface* sender) override;
Steve Anton24db5732018-07-23 10:27:33 -0700132 RTCError RemoveTrackNew(
133 rtc::scoped_refptr<RtpSenderInterface> sender) override;
deadbeefe1f9d832016-01-14 15:35:42 -0800134
Steve Anton9158ef62017-11-27 13:01:52 -0800135 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
136 rtc::scoped_refptr<MediaStreamTrackInterface> track) override;
137 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
138 rtc::scoped_refptr<MediaStreamTrackInterface> track,
139 const RtpTransceiverInit& init) override;
140 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
141 cricket::MediaType media_type) override;
142 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
143 cricket::MediaType media_type,
144 const RtpTransceiverInit& init) override;
145
Steve Anton8c0f7a72017-10-03 10:03:10 -0700146 // Gets the DTLS SSL certificate associated with the audio transport on the
147 // remote side. This will become populated once the DTLS connection with the
148 // peer has been completed, as indicated by the ICE connection state
149 // transitioning to kIceConnectionCompleted.
150 // Note that this will be removed once we implement RTCDtlsTransport which
151 // has standardized method for getting this information.
152 // See https://www.w3.org/TR/webrtc/#rtcdtlstransport-interface
153 std::unique_ptr<rtc::SSLCertificate> GetRemoteAudioSSLCertificate();
154
Zhi Huang70b820f2018-01-27 14:16:15 -0800155 // Version of the above method that returns the full certificate chain.
156 std::unique_ptr<rtc::SSLCertChain> GetRemoteAudioSSLCertChain();
157
deadbeeffac06552015-11-25 11:26:01 -0800158 rtc::scoped_refptr<RtpSenderInterface> CreateSender(
deadbeefbd7d8f72015-12-18 16:58:44 -0800159 const std::string& kind,
160 const std::string& stream_id) override;
deadbeeffac06552015-11-25 11:26:01 -0800161
deadbeef70ab1a12015-09-28 16:53:55 -0700162 std::vector<rtc::scoped_refptr<RtpSenderInterface>> GetSenders()
163 const override;
164 std::vector<rtc::scoped_refptr<RtpReceiverInterface>> GetReceivers()
165 const override;
Steve Anton9158ef62017-11-27 13:01:52 -0800166 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>> GetTransceivers()
167 const override;
deadbeef70ab1a12015-09-28 16:53:55 -0700168
deadbeefa67696b2015-09-29 11:56:26 -0700169 rtc::scoped_refptr<DataChannelInterface> CreateDataChannel(
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000170 const std::string& label,
deadbeefa67696b2015-09-29 11:56:26 -0700171 const DataChannelInit* config) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100172 // WARNING: LEGACY. See peerconnectioninterface.h
deadbeefa67696b2015-09-29 11:56:26 -0700173 bool GetStats(StatsObserver* observer,
174 webrtc::MediaStreamTrackInterface* track,
175 StatsOutputLevel level) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100176 // Spec-complaint GetStats(). See peerconnectioninterface.h
hbos74e1a4f2016-09-15 23:33:01 -0700177 void GetStats(RTCStatsCollectorCallback* callback) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100178 void GetStats(
179 rtc::scoped_refptr<RtpSenderInterface> selector,
180 rtc::scoped_refptr<RTCStatsCollectorCallback> callback) override;
181 void GetStats(
182 rtc::scoped_refptr<RtpReceiverInterface> selector,
183 rtc::scoped_refptr<RTCStatsCollectorCallback> callback) override;
Harald Alvestrand89061872018-01-02 14:08:34 +0100184 void ClearStatsCache() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000185
deadbeefa67696b2015-09-29 11:56:26 -0700186 SignalingState signaling_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000187
deadbeefa67696b2015-09-29 11:56:26 -0700188 IceConnectionState ice_connection_state() override;
Jonas Olsson12046902018-12-06 11:25:14 +0100189 IceConnectionState standardized_ice_connection_state() override;
Jonas Olsson635474e2018-10-18 15:58:17 +0200190 PeerConnectionState peer_connection_state() override;
deadbeefa67696b2015-09-29 11:56:26 -0700191 IceGatheringState ice_gathering_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000192
deadbeefa67696b2015-09-29 11:56:26 -0700193 const SessionDescriptionInterface* local_description() const override;
194 const SessionDescriptionInterface* remote_description() const override;
deadbeeffe4a8a42016-12-20 17:56:17 -0800195 const SessionDescriptionInterface* current_local_description() const override;
196 const SessionDescriptionInterface* current_remote_description()
197 const override;
198 const SessionDescriptionInterface* pending_local_description() const override;
199 const SessionDescriptionInterface* pending_remote_description()
200 const override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000201
Henrik Boström79b69802019-07-18 11:16:56 +0200202 void RestartIce() override;
203
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000204 // JSEP01
deadbeefa67696b2015-09-29 11:56:26 -0700205 void CreateOffer(CreateSessionDescriptionObserver* observer,
206 const RTCOfferAnswerOptions& options) override;
htaa2a49d92016-03-04 02:51:39 -0800207 void CreateAnswer(CreateSessionDescriptionObserver* observer,
208 const RTCOfferAnswerOptions& options) override;
deadbeefa67696b2015-09-29 11:56:26 -0700209 void SetLocalDescription(SetSessionDescriptionObserver* observer,
210 SessionDescriptionInterface* desc) override;
Henrik Boström4e196702019-10-30 10:35:50 +0100211 void SetLocalDescription(SetSessionDescriptionObserver* observer) override;
Henrik Boströma4ecf552017-11-23 14:17:07 +0000212 void SetRemoteDescription(SetSessionDescriptionObserver* observer,
213 SessionDescriptionInterface* desc) override;
Henrik Boström31638672017-11-23 17:48:32 +0100214 void SetRemoteDescription(
215 std::unique_ptr<SessionDescriptionInterface> desc,
216 rtc::scoped_refptr<SetRemoteDescriptionObserverInterface> observer)
217 override;
deadbeef46c73892016-11-16 19:42:04 -0800218 PeerConnectionInterface::RTCConfiguration GetConfiguration() override;
Niels Möller2579f0c2019-08-19 09:58:17 +0200219 RTCError SetConfiguration(
220 const PeerConnectionInterface::RTCConfiguration& configuration) override;
deadbeefa67696b2015-09-29 11:56:26 -0700221 bool AddIceCandidate(const IceCandidateInterface* candidate) override;
Henrik Boströmee6f4f62019-11-06 12:36:12 +0100222 void AddIceCandidate(std::unique_ptr<IceCandidateInterface> candidate,
223 std::function<void(RTCError)> callback) override;
Honghai Zhang7fb69db2016-03-14 11:59:18 -0700224 bool RemoveIceCandidates(
225 const std::vector<cricket::Candidate>& candidates) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000226
Niels Möller0c4f7be2018-05-07 14:01:37 +0200227 RTCError SetBitrate(const BitrateSettings& bitrate) override;
zstein4b979802017-06-02 14:37:37 -0700228
henrika5f6bf242017-11-01 11:06:56 +0100229 void SetAudioPlayout(bool playout) override;
230 void SetAudioRecording(bool recording) override;
231
Harald Alvestrandad88c882018-11-28 16:47:46 +0100232 rtc::scoped_refptr<DtlsTransportInterface> LookupDtlsTransportByMid(
233 const std::string& mid) override;
Harald Alvestrand4a7b3ac2019-01-17 10:39:40 +0100234 rtc::scoped_refptr<DtlsTransport> LookupDtlsTransportByMidInternal(
235 const std::string& mid);
Harald Alvestrandad88c882018-11-28 16:47:46 +0100236
Harald Alvestrandc85328f2019-02-28 07:51:00 +0100237 rtc::scoped_refptr<SctpTransportInterface> GetSctpTransport() const override;
238
Bjorn Tereliusde939432017-11-20 17:38:14 +0100239 bool StartRtcEventLog(std::unique_ptr<RtcEventLogOutput> output,
240 int64_t output_period_ms) override;
Niels Möllerf00ca1a2019-05-10 11:33:12 +0200241 bool StartRtcEventLog(std::unique_ptr<RtcEventLogOutput> output) override;
ivoc14d5dbe2016-07-04 07:06:55 -0700242 void StopRtcEventLog() override;
243
deadbeefa67696b2015-09-29 11:56:26 -0700244 void Close() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000245
Steve Anton2d8609c2018-01-23 16:38:46 -0800246 // PeerConnectionInternal implementation.
Karl Wiberg4ae63472019-02-22 00:57:06 +0100247 rtc::Thread* network_thread() const final {
Steve Anton2d8609c2018-01-23 16:38:46 -0800248 return factory_->network_thread();
249 }
Karl Wiberg4ae63472019-02-22 00:57:06 +0100250 rtc::Thread* worker_thread() const final { return factory_->worker_thread(); }
251 rtc::Thread* signaling_thread() const final {
Steve Anton2d8609c2018-01-23 16:38:46 -0800252 return factory_->signaling_thread();
perkjd61bf802016-03-24 03:16:19 -0700253 }
deadbeefab9b2d12015-10-14 11:33:11 -0700254
Karl Wiberga58e1692019-03-26 13:33:43 +0100255 std::string session_id() const override {
256 RTC_DCHECK_RUN_ON(signaling_thread());
257 return session_id_;
258 }
Steve Anton75737c02017-11-06 10:37:17 -0800259
Steve Anton2d8609c2018-01-23 16:38:46 -0800260 bool initial_offerer() const override {
Karl Wiberg2cc368f2019-04-02 11:31:56 +0200261 RTC_DCHECK_RUN_ON(signaling_thread());
Zhi Huange830e682018-03-30 10:48:35 -0700262 return transport_controller_ && transport_controller_->initial_offerer();
Steve Anton2d8609c2018-01-23 16:38:46 -0800263 }
Steve Anton75737c02017-11-06 10:37:17 -0800264
Steve Anton2d8609c2018-01-23 16:38:46 -0800265 std::vector<
266 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Steve Antonb8867112018-02-13 10:07:54 -0800267 GetTransceiversInternal() const override {
Karl Wiberga58e1692019-03-26 13:33:43 +0100268 RTC_DCHECK_RUN_ON(signaling_thread());
Steve Anton2d8609c2018-01-23 16:38:46 -0800269 return transceivers_;
270 }
271
Steve Anton2d8609c2018-01-23 16:38:46 -0800272 sigslot::signal1<DataChannel*>& SignalDataChannelCreated() override {
Harald Alvestrand05e4d082019-12-03 14:04:21 +0100273 return data_channel_controller_.SignalDataChannelCreated();
Steve Anton2d8609c2018-01-23 16:38:46 -0800274 }
275
276 cricket::RtpDataChannel* rtp_data_channel() const override {
Harald Alvestrand00cf34c2019-12-02 09:56:02 +0100277 return data_channel_controller_.rtp_data_channel();
Steve Anton978b8762017-09-29 12:15:02 -0700278 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800279
Steve Antonbe5e2082018-01-24 15:29:17 -0800280 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels()
Steve Anton2d8609c2018-01-23 16:38:46 -0800281 const override {
Karl Wiberg85a4a932019-03-22 15:29:58 +0100282 RTC_DCHECK_RUN_ON(signaling_thread());
Harald Alvestrand05e4d082019-12-03 14:04:21 +0100283 return *data_channel_controller_.sctp_data_channels();
Steve Anton2d8609c2018-01-23 16:38:46 -0800284 }
285
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200286 absl::optional<std::string> sctp_content_name() const override {
Karl Wiberg2cc368f2019-04-02 11:31:56 +0200287 RTC_DCHECK_RUN_ON(signaling_thread());
Zhi Huange830e682018-03-30 10:48:35 -0700288 return sctp_mid_;
Steve Anton75737c02017-11-06 10:37:17 -0800289 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800290
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200291 absl::optional<std::string> sctp_transport_name() const override;
Steve Anton75737c02017-11-06 10:37:17 -0800292
Qingsi Wang72a43a12018-02-20 16:03:18 -0800293 cricket::CandidateStatsList GetPooledCandidateStats() const override;
Steve Anton5dfde182018-02-06 10:34:40 -0800294 std::map<std::string, std::string> GetTransportNamesByMid() const override;
295 std::map<std::string, cricket::TransportStats> GetTransportStatsByNames(
296 const std::set<std::string>& transport_names) override;
Steve Anton2d8609c2018-01-23 16:38:46 -0800297 Call::Stats GetCallStats() override;
Steve Anton75737c02017-11-06 10:37:17 -0800298
Steve Anton2d8609c2018-01-23 16:38:46 -0800299 bool GetLocalCertificate(
300 const std::string& transport_name,
301 rtc::scoped_refptr<rtc::RTCCertificate>* certificate) override;
Taylor Brandstetterc3928662018-02-23 13:04:51 -0800302 std::unique_ptr<rtc::SSLCertChain> GetRemoteSSLCertChain(
Steve Anton2d8609c2018-01-23 16:38:46 -0800303 const std::string& transport_name) override;
304 bool IceRestartPending(const std::string& content_name) const override;
305 bool NeedsIceRestart(const std::string& content_name) const override;
306 bool GetSslRole(const std::string& content_name, rtc::SSLRole* role) override;
Steve Anton7464fca2018-01-19 11:10:37 -0800307
Harald Alvestrand05e4d082019-12-03 14:04:21 +0100308 // Functions needed by DataChannelController
309 void NoteDataAddedEvent() { NoteUsageEvent(UsageEvent::DATA_ADDED); }
310 // Returns the observer. Will crash on CHECK if the observer is removed.
311 PeerConnectionObserver* Observer() const;
312 bool IsClosed() const {
313 RTC_DCHECK_RUN_ON(signaling_thread());
314 return signaling_state_ == PeerConnectionInterface::kClosed;
315 }
316 // Get current SSL role used by SCTP's underlying transport.
317 bool GetSctpSslRole(rtc::SSLRole* role);
318 // Handler for the "channel closed" signal
319 void OnSctpDataChannelClosed(DataChannel* channel);
Harald Alvestrand05e4d082019-12-03 14:04:21 +0100320
321 // Functions made public for testing.
Harald Alvestrand19793842018-06-25 12:03:50 +0200322 void ReturnHistogramVeryQuicklyForTesting() {
Karl Wibergf73f7d62019-04-08 15:36:53 +0200323 RTC_DCHECK_RUN_ON(signaling_thread());
Harald Alvestrand19793842018-06-25 12:03:50 +0200324 return_histogram_very_quickly_ = true;
325 }
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +0200326 void RequestUsagePatternReportForTesting();
Harald Alvestrand19793842018-06-25 12:03:50 +0200327
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000328 protected:
deadbeefa67696b2015-09-29 11:56:26 -0700329 ~PeerConnection() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000330
331 private:
Henrik Boström4e196702019-10-30 10:35:50 +0100332 class ImplicitCreateSessionDescriptionObserver;
333 friend class ImplicitCreateSessionDescriptionObserver;
Henrik Boström31638672017-11-23 17:48:32 +0100334 class SetRemoteDescriptionObserverAdapter;
335 friend class SetRemoteDescriptionObserverAdapter;
Harald Alvestrand05e4d082019-12-03 14:04:21 +0100336
Henrik Boström79b69802019-07-18 11:16:56 +0200337 // Represents the [[LocalIceCredentialsToReplace]] internal slot in the spec.
338 // It makes the next CreateOffer() produce new ICE credentials even if
339 // RTCOfferAnswerOptions::ice_restart is false.
340 // https://w3c.github.io/webrtc-pc/#dfn-localufragstoreplace
341 // TODO(hbos): When JsepTransportController/JsepTransport supports rollback,
342 // move this type of logic to JsepTransportController/JsepTransport.
343 class LocalIceCredentialsToReplace;
Henrik Boström31638672017-11-23 17:48:32 +0100344
Steve Anton4171afb2017-11-20 10:20:22 -0800345 struct RtpSenderInfo {
346 RtpSenderInfo() : first_ssrc(0) {}
Seth Hampson845e8782018-03-02 11:34:10 -0800347 RtpSenderInfo(const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -0800348 const std::string sender_id,
349 uint32_t ssrc)
Seth Hampson845e8782018-03-02 11:34:10 -0800350 : stream_id(stream_id), sender_id(sender_id), first_ssrc(ssrc) {}
Steve Anton4171afb2017-11-20 10:20:22 -0800351 bool operator==(const RtpSenderInfo& other) {
Seth Hampson845e8782018-03-02 11:34:10 -0800352 return this->stream_id == other.stream_id &&
Steve Anton4171afb2017-11-20 10:20:22 -0800353 this->sender_id == other.sender_id &&
354 this->first_ssrc == other.first_ssrc;
deadbeefbda7e0b2015-12-08 17:13:40 -0800355 }
Seth Hampson845e8782018-03-02 11:34:10 -0800356 std::string stream_id;
Steve Anton4171afb2017-11-20 10:20:22 -0800357 std::string sender_id;
358 // An RtpSender can have many SSRCs. The first one is used as a sort of ID
359 // for communicating with the lower layers.
360 uint32_t first_ssrc;
deadbeefab9b2d12015-10-14 11:33:11 -0700361 };
deadbeefab9b2d12015-10-14 11:33:11 -0700362
Bjorn A Mellem5985a042019-06-28 14:19:38 -0700363 // Field-trial based configuration for datagram transport.
364 struct DatagramTransportConfig {
365 explicit DatagramTransportConfig(const std::string& field_trial)
366 : enabled("enabled", true), default_value("default_value", false) {
367 ParseFieldTrial({&enabled, &default_value}, field_trial);
368 }
369
370 // Whether datagram transport support is enabled at all. Defaults to true,
371 // allowing datagram transport to be used if (a) the application provides a
372 // factory for it and (b) the configuration specifies its use. This flag
373 // provides a kill-switch to force-disable datagram transport across all
374 // applications, without code changes.
375 FieldTrialFlag enabled;
376
377 // Whether the datagram transport is enabled or disabled by default.
378 // Defaults to false, meaning that applications must configure use of
379 // datagram transport through RTCConfiguration. If set to true,
380 // applications will use the datagram transport by default (but may still
381 // explicitly configure themselves not to use it through RTCConfiguration).
382 FieldTrialFlag default_value;
383 };
384
Bjorn A Mellemb689af42019-08-21 10:44:59 -0700385 // Field-trial based configuration for datagram transport data channels.
386 struct DatagramTransportDataChannelConfig {
387 explicit DatagramTransportDataChannelConfig(const std::string& field_trial)
Bjorn A Mellem7da4e562019-09-26 11:02:11 -0700388 : enabled("enabled", true),
389 default_value("default_value", false),
390 receive_only("receive_only", false) {
391 ParseFieldTrial({&enabled, &default_value, &receive_only}, field_trial);
Bjorn A Mellemb689af42019-08-21 10:44:59 -0700392 }
393
394 // Whether datagram transport data channel support is enabled at all.
395 // Defaults to true, allowing datagram transport to be used if (a) the
396 // application provides a factory for it and (b) the configuration specifies
397 // its use. This flag provides a kill-switch to force-disable datagram
398 // transport across all applications, without code changes.
399 FieldTrialFlag enabled;
400
401 // Whether the datagram transport data channels are enabled or disabled by
402 // default. Defaults to false, meaning that applications must configure use
403 // of datagram transport through RTCConfiguration. If set to true,
404 // applications will use the datagram transport by default (but may still
405 // explicitly configure themselves not to use it through RTCConfiguration).
406 FieldTrialFlag default_value;
Bjorn A Mellem7da4e562019-09-26 11:02:11 -0700407
408 // Whether the datagram transport is enabled in receive-only mode. If true,
409 // and if the datagram transport is enabled, it will only be used when
410 // receiving incoming calls, not when placing outgoing calls.
411 FieldTrialFlag receive_only;
Bjorn A Mellemb689af42019-08-21 10:44:59 -0700412 };
413
Eldar Rello5ab79e62019-10-09 18:29:44 +0300414 // Captures partial state to be used for rollback. Applicable only in
415 // Unified Plan.
416 class TransceiverStableState {
417 public:
418 TransceiverStableState() {}
Eldar Rello353a7182019-11-25 18:49:44 +0200419 void set_newly_created();
420 void SetMSectionIfUnset(absl::optional<std::string> mid,
421 absl::optional<size_t> mline_index);
422 void SetRemoteStreamIdsIfUnset(const std::vector<std::string>& ids);
Eldar Rello5ab79e62019-10-09 18:29:44 +0300423 absl::optional<std::string> mid() const { return mid_; }
424 absl::optional<size_t> mline_index() const { return mline_index_; }
Eldar Rello353a7182019-11-25 18:49:44 +0200425 absl::optional<std::vector<std::string>> remote_stream_ids() const {
426 return remote_stream_ids_;
427 }
428 bool has_m_section() const { return has_m_section_; }
Eldar Rello5ab79e62019-10-09 18:29:44 +0300429 bool newly_created() const { return newly_created_; }
430
431 private:
Eldar Rello5ab79e62019-10-09 18:29:44 +0300432 absl::optional<std::string> mid_;
433 absl::optional<size_t> mline_index_;
Eldar Rello353a7182019-11-25 18:49:44 +0200434 absl::optional<std::vector<std::string>> remote_stream_ids_;
435 // Indicates that mid value from stable state has been captured and
436 // that rollback has to restore the transceiver. Also protects against
437 // subsequent overwrites.
438 bool has_m_section_ = false;
Eldar Rello5ab79e62019-10-09 18:29:44 +0300439 // Indicates that the transceiver was created as part of applying a
440 // description to track potential need for removing transceiver during
441 // rollback.
442 bool newly_created_ = false;
443 };
444
Steve Antonad182762018-09-05 20:22:40 +0000445 // Implements MessageHandler.
446 void OnMessage(rtc::Message* msg) override;
447
Steve Antonafb0bb72018-02-20 11:35:37 -0800448 // Plan B helpers for getting the voice/video media channels for the single
449 // audio/video transceiver, if it exists.
Karl Wiberg5966c502019-02-21 23:55:09 +0100450 cricket::VoiceMediaChannel* voice_media_channel() const
451 RTC_RUN_ON(signaling_thread());
452 cricket::VideoMediaChannel* video_media_channel() const
453 RTC_RUN_ON(signaling_thread());
Steve Anton60776752018-01-10 11:51:34 -0800454
Steve Anton4171afb2017-11-20 10:20:22 -0800455 std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100456 GetSendersInternal() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800457 std::vector<
458 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100459 GetReceiversInternal() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800460
461 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100462 GetAudioTransceiver() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800463 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100464 GetVideoTransceiver() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800465
Steve Antonafb0bb72018-02-20 11:35:37 -0800466 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100467 GetFirstAudioTransceiver() const RTC_RUN_ON(signaling_thread());
Steve Antonafb0bb72018-02-20 11:35:37 -0800468
Henrik Boströma3728d32019-10-28 12:09:49 +0100469 // Implementation of the offer/answer exchange operations. These are chained
470 // onto the |operations_chain_| when the public CreateOffer(), CreateAnswer(),
471 // SetLocalDescription() and SetRemoteDescription() methods are invoked.
472 void DoCreateOffer(
473 const RTCOfferAnswerOptions& options,
474 rtc::scoped_refptr<CreateSessionDescriptionObserver> observer);
475 void DoCreateAnswer(
476 const RTCOfferAnswerOptions& options,
477 rtc::scoped_refptr<CreateSessionDescriptionObserver> observer);
478 void DoSetLocalDescription(
479 std::unique_ptr<SessionDescriptionInterface> desc,
480 rtc::scoped_refptr<SetSessionDescriptionObserver> observer);
481 void DoSetRemoteDescription(
482 std::unique_ptr<SessionDescriptionInterface> desc,
483 rtc::scoped_refptr<SetRemoteDescriptionObserverInterface> observer);
484
deadbeefab9b2d12015-10-14 11:33:11 -0700485 void CreateAudioReceiver(MediaStreamInterface* stream,
Karl Wiberg744310f2019-02-14 10:18:56 +0100486 const RtpSenderInfo& remote_sender_info)
487 RTC_RUN_ON(signaling_thread());
perkjf0dcfe22016-03-10 18:32:00 +0100488
deadbeefab9b2d12015-10-14 11:33:11 -0700489 void CreateVideoReceiver(MediaStreamInterface* stream,
Karl Wiberg744310f2019-02-14 10:18:56 +0100490 const RtpSenderInfo& remote_sender_info)
491 RTC_RUN_ON(signaling_thread());
Henrik Boström933d8b02017-10-10 10:05:16 -0700492 rtc::scoped_refptr<RtpReceiverInterface> RemoveAndStopReceiver(
Karl Wiberg5966c502019-02-21 23:55:09 +0100493 const RtpSenderInfo& remote_sender_info) RTC_RUN_ON(signaling_thread());
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700494
495 // May be called either by AddStream/RemoveStream, or when a track is
496 // added/removed from a stream previously added via AddStream.
Karl Wiberg5966c502019-02-21 23:55:09 +0100497 void AddAudioTrack(AudioTrackInterface* track, MediaStreamInterface* stream)
498 RTC_RUN_ON(signaling_thread());
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700499 void RemoveAudioTrack(AudioTrackInterface* track,
Karl Wiberg5966c502019-02-21 23:55:09 +0100500 MediaStreamInterface* stream)
501 RTC_RUN_ON(signaling_thread());
502 void AddVideoTrack(VideoTrackInterface* track, MediaStreamInterface* stream)
503 RTC_RUN_ON(signaling_thread());
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700504 void RemoveVideoTrack(VideoTrackInterface* track,
Karl Wiberg5966c502019-02-21 23:55:09 +0100505 MediaStreamInterface* stream)
506 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000507
Steve Antonf9381f02017-12-14 10:23:57 -0800508 // AddTrack implementation when Unified Plan is specified.
509 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackUnifiedPlan(
510 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Karl Wiberga58e1692019-03-26 13:33:43 +0100511 const std::vector<std::string>& stream_ids)
512 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800513 // AddTrack implementation when Plan B is specified.
514 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackPlanB(
515 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Karl Wiberg5966c502019-02-21 23:55:09 +0100516 const std::vector<std::string>& stream_ids)
517 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800518
519 // Returns the first RtpTransceiver suitable for a newly added track, if such
520 // transceiver is available.
521 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
522 FindFirstTransceiverForAddedTrack(
Karl Wiberga58e1692019-03-26 13:33:43 +0100523 rtc::scoped_refptr<MediaStreamTrackInterface> track)
524 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800525
Steve Antonf9381f02017-12-14 10:23:57 -0800526 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100527 FindTransceiverBySender(rtc::scoped_refptr<RtpSenderInterface> sender)
528 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800529
Steve Anton22da89f2018-01-25 13:58:07 -0800530 // Internal implementation for AddTransceiver family of methods. If
531 // |fire_callback| is set, fires OnRenegotiationNeeded callback if successful.
Steve Anton9158ef62017-11-27 13:01:52 -0800532 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
533 cricket::MediaType media_type,
534 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Steve Anton22da89f2018-01-25 13:58:07 -0800535 const RtpTransceiverInit& init,
Karl Wiberg744310f2019-02-14 10:18:56 +0100536 bool fire_callback = true) RTC_RUN_ON(signaling_thread());
Steve Anton9158ef62017-11-27 13:01:52 -0800537
Steve Anton02ee47c2018-01-10 16:26:06 -0800538 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
539 CreateSender(cricket::MediaType media_type,
Steve Anton111fdfd2018-06-25 13:03:36 -0700540 const std::string& id,
Steve Anton02ee47c2018-01-10 16:26:06 -0800541 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Florent Castelli892acf02018-10-01 22:47:20 +0200542 const std::vector<std::string>& stream_ids,
543 const std::vector<RtpEncodingParameters>& send_encodings);
Steve Anton02ee47c2018-01-10 16:26:06 -0800544
545 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
546 CreateReceiver(cricket::MediaType media_type, const std::string& receiver_id);
547
Steve Antonf9381f02017-12-14 10:23:57 -0800548 // Create a new RtpTransceiver of the given type and add it to the list of
549 // transceivers.
550 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Steve Anton02ee47c2018-01-10 16:26:06 -0800551 CreateAndAddTransceiver(
552 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> sender,
553 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100554 receiver) RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800555
Karl Wiberg744310f2019-02-14 10:18:56 +0100556 void SetIceConnectionState(IceConnectionState new_state)
557 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200558 void SetStandardizedIceConnectionState(
Karl Wiberg744310f2019-02-14 10:18:56 +0100559 PeerConnectionInterface::IceConnectionState new_state)
560 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200561 void SetConnectionState(
Karl Wiberg744310f2019-02-14 10:18:56 +0100562 PeerConnectionInterface::PeerConnectionState new_state)
563 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200564
Eldar Relloda13ea22019-06-01 12:23:43 +0300565 // Called any time the IceGatheringState changes.
Karl Wiberg744310f2019-02-14 10:18:56 +0100566 void OnIceGatheringChange(IceGatheringState new_state)
567 RTC_RUN_ON(signaling_thread());
Steve Antonba818672017-11-06 10:21:57 -0800568 // New ICE candidate has been gathered.
Karl Wiberg744310f2019-02-14 10:18:56 +0100569 void OnIceCandidate(std::unique_ptr<IceCandidateInterface> candidate)
570 RTC_RUN_ON(signaling_thread());
Eldar Relloda13ea22019-06-01 12:23:43 +0300571 // Gathering of an ICE candidate failed.
Eldar Rello0095d372019-12-02 22:22:07 +0200572 void OnIceCandidateError(const std::string& address,
573 int port,
Eldar Relloda13ea22019-06-01 12:23:43 +0300574 const std::string& url,
575 int error_code,
576 const std::string& error_text)
577 RTC_RUN_ON(signaling_thread());
Steve Antonba818672017-11-06 10:21:57 -0800578 // Some local ICE candidates have been removed.
Karl Wiberg744310f2019-02-14 10:18:56 +0100579 void OnIceCandidatesRemoved(const std::vector<cricket::Candidate>& candidates)
580 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000581
Alex Drake00c7ecf2019-08-06 10:54:47 -0700582 void OnSelectedCandidatePairChanged(
583 const cricket::CandidatePairChangeEvent& event)
584 RTC_RUN_ON(signaling_thread());
585
Steve Antonba818672017-11-06 10:21:57 -0800586 // Update the state, signaling if necessary.
Karl Wiberg744310f2019-02-14 10:18:56 +0100587 void ChangeSignalingState(SignalingState signaling_state)
588 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000589
deadbeefeb459812015-12-15 19:24:43 -0800590 // Signals from MediaStreamObserver.
591 void OnAudioTrackAdded(AudioTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100592 MediaStreamInterface* stream)
593 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800594 void OnAudioTrackRemoved(AudioTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100595 MediaStreamInterface* stream)
596 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800597 void OnVideoTrackAdded(VideoTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100598 MediaStreamInterface* stream)
599 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800600 void OnVideoTrackRemoved(VideoTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100601 MediaStreamInterface* stream)
602 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800603
Henrik Boström31638672017-11-23 17:48:32 +0100604 void PostSetSessionDescriptionSuccess(
605 SetSessionDescriptionObserver* observer);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000606 void PostSetSessionDescriptionFailure(SetSessionDescriptionObserver* observer,
Steve Antonad182762018-09-05 20:22:40 +0000607 RTCError&& error);
deadbeefab9b2d12015-10-14 11:33:11 -0700608 void PostCreateSessionDescriptionFailure(
609 CreateSessionDescriptionObserver* observer,
Harald Alvestrand5081c0c2018-03-09 15:18:03 +0100610 RTCError error);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000611
Steve Anton8a006912017-12-04 15:25:56 -0800612 // Synchronous implementations of SetLocalDescription/SetRemoteDescription
613 // that return an RTCError instead of invoking a callback.
614 RTCError ApplyLocalDescription(
615 std::unique_ptr<SessionDescriptionInterface> desc);
616 RTCError ApplyRemoteDescription(
617 std::unique_ptr<SessionDescriptionInterface> desc);
618
Steve Antondcc3c022017-12-22 16:02:54 -0800619 // Updates the local RtpTransceivers according to the JSEP rules. Called as
620 // part of setting the local/remote description.
621 RTCError UpdateTransceiversAndDataChannels(
622 cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800623 const SessionDescriptionInterface& new_session,
624 const SessionDescriptionInterface* old_local_description,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100625 const SessionDescriptionInterface* old_remote_description)
626 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800627
628 // Either creates or destroys the transceiver's BaseChannel according to the
629 // given media section.
630 RTCError UpdateTransceiverChannel(
631 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
632 transceiver,
633 const cricket::ContentInfo& content,
Karl Wiberg5966c502019-02-21 23:55:09 +0100634 const cricket::ContentGroup* bundle_group) RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800635
Steve Antonfa2260d2017-12-28 16:38:23 -0800636 // Either creates or destroys the local data channel according to the given
637 // media section.
638 RTCError UpdateDataChannel(cricket::ContentSource source,
639 const cricket::ContentInfo& content,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100640 const cricket::ContentGroup* bundle_group)
641 RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800642
Steve Antondcc3c022017-12-22 16:02:54 -0800643 // Associate the given transceiver according to the JSEP rules.
644 RTCErrorOr<
645 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
646 AssociateTransceiver(cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800647 SdpType type,
Steve Antondcc3c022017-12-22 16:02:54 -0800648 size_t mline_index,
649 const cricket::ContentInfo& content,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800650 const cricket::ContentInfo* old_local_content,
Karl Wiberg5966c502019-02-21 23:55:09 +0100651 const cricket::ContentInfo* old_remote_content)
652 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800653
654 // Returns the RtpTransceiver, if found, that is associated to the given MID.
655 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100656 GetAssociatedTransceiver(const std::string& mid) const
657 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800658
659 // Returns the RtpTransceiver, if found, that was assigned to the given mline
660 // index in CreateOffer.
661 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100662 GetTransceiverByMLineIndex(size_t mline_index) const
663 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800664
665 // Returns an RtpTransciever, if available, that can be used to receive the
666 // given media type according to JSEP rules.
667 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100668 FindAvailableTransceiverToReceive(cricket::MediaType media_type) const
669 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800670
Steve Antoned10bd92017-12-05 10:52:59 -0800671 // Returns the media section in the given session description that is
672 // associated with the RtpTransceiver. Returns null if none found or this
673 // RtpTransceiver is not associated. Logic varies depending on the
674 // SdpSemantics specified in the configuration.
675 const cricket::ContentInfo* FindMediaSectionForTransceiver(
676 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
677 transceiver,
Karl Wiberg5966c502019-02-21 23:55:09 +0100678 const SessionDescriptionInterface* sdesc) const
679 RTC_RUN_ON(signaling_thread());
Steve Antoned10bd92017-12-05 10:52:59 -0800680
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100681 // Runs the algorithm **set the associated remote streams** specified in
682 // https://w3c.github.io/webrtc-pc/#set-associated-remote-streams.
683 void SetAssociatedRemoteStreams(
684 rtc::scoped_refptr<RtpReceiverInternal> receiver,
685 const std::vector<std::string>& stream_ids,
686 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* added_streams,
Karl Wiberg1e1e1022019-03-22 14:27:22 +0100687 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams)
688 RTC_RUN_ON(signaling_thread());
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100689
Steve Anton0f5400a2018-07-17 14:25:36 -0700690 // Runs the algorithm **process the removal of a remote track** specified in
691 // the WebRTC specification.
692 // This method will update the following lists:
693 // |remove_list| is the list of transceivers for which the receiving track is
694 // being removed.
695 // |removed_streams| is the list of streams which no longer have a receiving
696 // track so should be removed.
697 // https://w3c.github.io/webrtc-pc/#process-remote-track-removal
698 void ProcessRemovalOfRemoteTrack(
699 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
700 transceiver,
701 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>>* remove_list,
Karl Wiberg1e1e1022019-03-22 14:27:22 +0100702 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams)
703 RTC_RUN_ON(signaling_thread());
Steve Anton0f5400a2018-07-17 14:25:36 -0700704
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100705 void RemoveRemoteStreamsIfEmpty(
706 const std::vector<rtc::scoped_refptr<MediaStreamInterface>>&
707 remote_streams,
Karl Wiberg1e1e1022019-03-22 14:27:22 +0100708 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams)
709 RTC_RUN_ON(signaling_thread());
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100710
Steve Anton52d86772018-02-20 15:48:12 -0800711 void OnNegotiationNeeded();
712
deadbeefab9b2d12015-10-14 11:33:11 -0700713 // Returns a MediaSessionOptions struct with options decided by |options|,
714 // the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800715 void GetOptionsForOffer(const PeerConnectionInterface::RTCOfferAnswerOptions&
716 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100717 cricket::MediaSessionOptions* session_options)
718 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800719 void GetOptionsForPlanBOffer(
720 const PeerConnectionInterface::RTCOfferAnswerOptions&
721 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100722 cricket::MediaSessionOptions* session_options)
723 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800724 void GetOptionsForUnifiedPlanOffer(
725 const PeerConnectionInterface::RTCOfferAnswerOptions&
726 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100727 cricket::MediaSessionOptions* session_options)
728 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700729
Karl Wiberg5966c502019-02-21 23:55:09 +0100730 RTCError HandleLegacyOfferOptions(const RTCOfferAnswerOptions& options)
731 RTC_RUN_ON(signaling_thread());
Steve Anton22da89f2018-01-25 13:58:07 -0800732 void RemoveRecvDirectionFromReceivingTransceiversOfType(
Karl Wiberga58e1692019-03-26 13:33:43 +0100733 cricket::MediaType media_type) RTC_RUN_ON(signaling_thread());
Steve Anton22da89f2018-01-25 13:58:07 -0800734 void AddUpToOneReceivingTransceiverOfType(cricket::MediaType media_type);
735 std::vector<
736 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100737 GetReceivingTransceiversOfType(cricket::MediaType media_type)
738 RTC_RUN_ON(signaling_thread());
Steve Anton22da89f2018-01-25 13:58:07 -0800739
deadbeefab9b2d12015-10-14 11:33:11 -0700740 // Returns a MediaSessionOptions struct with options decided by
741 // |constraints|, the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800742 void GetOptionsForAnswer(const RTCOfferAnswerOptions& offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100743 cricket::MediaSessionOptions* session_options)
744 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800745 void GetOptionsForPlanBAnswer(
746 const PeerConnectionInterface::RTCOfferAnswerOptions&
747 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100748 cricket::MediaSessionOptions* session_options)
749 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800750 void GetOptionsForUnifiedPlanAnswer(
751 const PeerConnectionInterface::RTCOfferAnswerOptions&
752 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100753 cricket::MediaSessionOptions* session_options)
754 RTC_RUN_ON(signaling_thread());
htaa2a49d92016-03-04 02:51:39 -0800755
zhihuang1c378ed2017-08-17 14:10:50 -0700756 // Generates MediaDescriptionOptions for the |session_opts| based on existing
757 // local description or remote description.
758 void GenerateMediaDescriptionOptions(
759 const SessionDescriptionInterface* session_desc,
Steve Anton1d03a752017-11-27 14:30:09 -0800760 RtpTransceiverDirection audio_direction,
761 RtpTransceiverDirection video_direction,
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200762 absl::optional<size_t>* audio_index,
763 absl::optional<size_t>* video_index,
764 absl::optional<size_t>* data_index,
Karl Wiberg85a4a932019-03-22 15:29:58 +0100765 cricket::MediaSessionOptions* session_options)
766 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700767
Steve Antonfa2260d2017-12-28 16:38:23 -0800768 // Generates the active MediaDescriptionOptions for the local data channel
769 // given the specified MID.
770 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForActiveData(
Karl Wiberg85a4a932019-03-22 15:29:58 +0100771 const std::string& mid) const RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800772
773 // Generates the rejected MediaDescriptionOptions for the local data channel
774 // given the specified MID.
775 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForRejectedData(
Karl Wiberg85a4a932019-03-22 15:29:58 +0100776 const std::string& mid) const RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800777
778 // Returns the MID for the data section associated with either the
779 // RtpDataChannel or SCTP data channel, if it has been set. If no data
780 // channels are configured this will return nullopt.
Karl Wiberg2cc368f2019-04-02 11:31:56 +0200781 absl::optional<std::string> GetDataMid() const RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800782
Steve Anton4171afb2017-11-20 10:20:22 -0800783 // Remove all local and remote senders of type |media_type|.
deadbeeffaac4972015-11-12 15:33:07 -0800784 // Called when a media type is rejected (m-line set to port 0).
Karl Wiberg744310f2019-02-14 10:18:56 +0100785 void RemoveSenders(cricket::MediaType media_type)
786 RTC_RUN_ON(signaling_thread());
deadbeeffaac4972015-11-12 15:33:07 -0800787
deadbeefbda7e0b2015-12-08 17:13:40 -0800788 // Makes sure a MediaStreamTrack is created for each StreamParam in |streams|,
789 // and existing MediaStreamTracks are removed if there is no corresponding
790 // StreamParam. If |default_track_needed| is true, a default MediaStreamTrack
791 // is created if it doesn't exist; if false, it's removed if it exists.
792 // |media_type| is the type of the |streams| and can be either audio or video.
deadbeefab9b2d12015-10-14 11:33:11 -0700793 // If a new MediaStream is created it is added to |new_streams|.
Steve Anton4171afb2017-11-20 10:20:22 -0800794 void UpdateRemoteSendersList(
deadbeefab9b2d12015-10-14 11:33:11 -0700795 const std::vector<cricket::StreamParams>& streams,
deadbeefbda7e0b2015-12-08 17:13:40 -0800796 bool default_track_needed,
deadbeefab9b2d12015-10-14 11:33:11 -0700797 cricket::MediaType media_type,
Karl Wiberg744310f2019-02-14 10:18:56 +0100798 StreamCollection* new_streams) RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700799
Steve Anton4171afb2017-11-20 10:20:22 -0800800 // Triggered when a remote sender has been seen for the first time in a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700801 // session description. It creates a remote MediaStreamTrackInterface
802 // implementation and triggers CreateAudioReceiver or CreateVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800803 void OnRemoteSenderAdded(const RtpSenderInfo& sender_info,
Karl Wiberg744310f2019-02-14 10:18:56 +0100804 cricket::MediaType media_type)
805 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700806
Steve Anton4171afb2017-11-20 10:20:22 -0800807 // Triggered when a remote sender has been removed from a remote session
808 // description. It removes the remote sender with id |sender_id| from a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700809 // MediaStream and triggers DestroyAudioReceiver or DestroyVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800810 void OnRemoteSenderRemoved(const RtpSenderInfo& sender_info,
Karl Wiberg744310f2019-02-14 10:18:56 +0100811 cricket::MediaType media_type)
812 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700813
814 // Finds remote MediaStreams without any tracks and removes them from
815 // |remote_streams_| and notifies the observer that the MediaStreams no longer
816 // exist.
Karl Wiberg744310f2019-02-14 10:18:56 +0100817 void UpdateEndedRemoteMediaStreams() RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700818
deadbeefab9b2d12015-10-14 11:33:11 -0700819 // Loops through the vector of |streams| and finds added and removed
820 // StreamParams since last time this method was called.
Steve Anton4171afb2017-11-20 10:20:22 -0800821 // For each new or removed StreamParam, OnLocalSenderSeen or
822 // OnLocalSenderRemoved is invoked.
823 void UpdateLocalSenders(const std::vector<cricket::StreamParams>& streams,
Karl Wiberg5966c502019-02-21 23:55:09 +0100824 cricket::MediaType media_type)
825 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700826
Steve Anton4171afb2017-11-20 10:20:22 -0800827 // Triggered when a local sender has been seen for the first time in a local
deadbeefab9b2d12015-10-14 11:33:11 -0700828 // session description.
829 // This method triggers CreateAudioSender or CreateVideoSender if the rtp
830 // streams in the local SessionDescription can be mapped to a MediaStreamTrack
831 // in a MediaStream in |local_streams_|
Steve Anton4171afb2017-11-20 10:20:22 -0800832 void OnLocalSenderAdded(const RtpSenderInfo& sender_info,
Karl Wiberg5966c502019-02-21 23:55:09 +0100833 cricket::MediaType media_type)
834 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700835
Steve Anton4171afb2017-11-20 10:20:22 -0800836 // Triggered when a local sender has been removed from a local session
deadbeefab9b2d12015-10-14 11:33:11 -0700837 // description.
838 // This method triggers DestroyAudioSender or DestroyVideoSender if a stream
839 // has been removed from the local SessionDescription and the stream can be
840 // mapped to a MediaStreamTrack in a MediaStream in |local_streams_|.
Steve Anton4171afb2017-11-20 10:20:22 -0800841 void OnLocalSenderRemoved(const RtpSenderInfo& sender_info,
Karl Wiberga58e1692019-03-26 13:33:43 +0100842 cricket::MediaType media_type)
843 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700844
Steve Anton4171afb2017-11-20 10:20:22 -0800845 // Returns true if the PeerConnection is configured to use Unified Plan
846 // semantics for creating offers/answers and setting local/remote
847 // descriptions. If this is true the RtpTransceiver API will also be available
848 // to the user. If this is false, Plan B semantics are assumed.
Steve Anton79e79602017-11-20 10:25:56 -0800849 // TODO(bugs.webrtc.org/8530): Flip the default to be Unified Plan once
850 // sufficient time has passed.
Karl Wiberg5966c502019-02-21 23:55:09 +0100851 bool IsUnifiedPlan() const RTC_RUN_ON(signaling_thread()) {
Steve Anton79e79602017-11-20 10:25:56 -0800852 return configuration_.sdp_semantics == SdpSemantics::kUnifiedPlan;
853 }
Steve Anton4171afb2017-11-20 10:20:22 -0800854
Steve Anton06817cd2018-12-18 15:55:30 -0800855 // The offer/answer machinery assumes the media section MID is present and
856 // unique. To support legacy end points that do not supply a=mid lines, this
857 // method will modify the session description to add MIDs generated according
858 // to the SDP semantics.
Karl Wiberg5966c502019-02-21 23:55:09 +0100859 void FillInMissingRemoteMids(cricket::SessionDescription* remote_description)
860 RTC_RUN_ON(signaling_thread());
Steve Anton06817cd2018-12-18 15:55:30 -0800861
Steve Anton4171afb2017-11-20 10:20:22 -0800862 // Is there an RtpSender of the given type?
Karl Wiberg5966c502019-02-21 23:55:09 +0100863 bool HasRtpSender(cricket::MediaType type) const
864 RTC_RUN_ON(signaling_thread());
deadbeeffac06552015-11-25 11:26:01 -0800865
Steve Anton4171afb2017-11-20 10:20:22 -0800866 // Return the RtpSender with the given track attached.
867 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100868 FindSenderForTrack(MediaStreamTrackInterface* track) const
869 RTC_RUN_ON(signaling_thread());
deadbeef70ab1a12015-09-28 16:53:55 -0700870
Steve Anton4171afb2017-11-20 10:20:22 -0800871 // Return the RtpSender with the given id, or null if none exists.
872 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100873 FindSenderById(const std::string& sender_id) const
874 RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800875
876 // Return the RtpReceiver with the given id, or null if none exists.
877 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
Karl Wiberga58e1692019-03-26 13:33:43 +0100878 FindReceiverById(const std::string& receiver_id) const
879 RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800880
881 std::vector<RtpSenderInfo>* GetRemoteSenderInfos(
882 cricket::MediaType media_type);
883 std::vector<RtpSenderInfo>* GetLocalSenderInfos(
884 cricket::MediaType media_type);
885 const RtpSenderInfo* FindSenderInfo(const std::vector<RtpSenderInfo>& infos,
Emircan Uysalerbc609ea2018-03-27 21:57:18 +0000886 const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -0800887 const std::string sender_id) const;
deadbeefab9b2d12015-10-14 11:33:11 -0700888
889 // Returns the specified SCTP DataChannel in sctp_data_channels_,
890 // or nullptr if not found.
Karl Wiberg85a4a932019-03-22 15:29:58 +0100891 DataChannel* FindDataChannelBySid(int sid) const
892 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700893
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700894 // Called when first configuring the port allocator.
Karl Wibergfb3be392019-03-22 14:13:22 +0100895 struct InitializePortAllocatorResult {
896 bool enable_ipv6;
897 };
898 InitializePortAllocatorResult InitializePortAllocator_n(
Harald Alvestrandb2a74782018-06-28 13:54:07 +0200899 const cricket::ServerAddresses& stun_servers,
900 const std::vector<cricket::RelayServerConfig>& turn_servers,
901 const RTCConfiguration& configuration);
deadbeef293e9262017-01-11 12:28:30 -0800902 // Called when SetConfiguration is called to apply the supported subset
903 // of the configuration on the network thread.
904 bool ReconfigurePortAllocator_n(
905 const cricket::ServerAddresses& stun_servers,
906 const std::vector<cricket::RelayServerConfig>& turn_servers,
907 IceTransportsType type,
908 int candidate_pool_size,
Honghai Zhangf8998cf2019-10-14 11:27:50 -0700909 PortPrunePolicy turn_port_prune_policy,
Qingsi Wangdb53f8e2018-02-20 14:45:49 -0800910 webrtc::TurnCustomizer* turn_customizer,
Karl Wiberg739506e2019-04-03 11:37:28 +0200911 absl::optional<int> stun_candidate_keepalive_interval,
912 bool have_local_description);
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700913
Elad Alon99c3fe52017-10-13 16:29:40 +0200914 // Starts output of an RTC event log to the given output object.
ivoc14d5dbe2016-07-04 07:06:55 -0700915 // This function should only be called from the worker thread.
Bjorn Tereliusde939432017-11-20 17:38:14 +0100916 bool StartRtcEventLog_w(std::unique_ptr<RtcEventLogOutput> output,
917 int64_t output_period_ms);
Elad Alon99c3fe52017-10-13 16:29:40 +0200918
Elad Alonacb24172017-10-06 14:32:13 +0200919 // Stops recording an RTC event log.
ivoc14d5dbe2016-07-04 07:06:55 -0700920 // This function should only be called from the worker thread.
921 void StopRtcEventLog_w();
922
Steve Anton038834f2017-07-14 15:59:59 -0700923 // Ensures the configuration doesn't have any parameters with invalid values,
924 // or values that conflict with other parameters.
925 //
926 // Returns RTCError::OK() if there are no issues.
927 RTCError ValidateConfiguration(const RTCConfiguration& config) const;
928
Steve Antonba818672017-11-06 10:21:57 -0800929 cricket::ChannelManager* channel_manager() const;
Steve Antonba818672017-11-06 10:21:57 -0800930
Steve Antonf8470812017-12-04 10:46:21 -0800931 enum class SessionError {
932 kNone, // No error.
933 kContent, // Error in BaseChannel SetLocalContent/SetRemoteContent.
934 kTransport, // Error from the underlying transport.
935 };
936
Steve Anton75737c02017-11-06 10:37:17 -0800937 // Returns the last error in the session. See the enum above for details.
Karl Wiberga58e1692019-03-26 13:33:43 +0100938 SessionError session_error() const RTC_RUN_ON(signaling_thread()) {
939 return session_error_;
940 }
Steve Antonf8470812017-12-04 10:46:21 -0800941 const std::string& session_error_desc() const { return session_error_desc_; }
Steve Anton75737c02017-11-06 10:37:17 -0800942
Amit Hilbuchdd9390c2018-11-13 16:26:05 -0800943 cricket::ChannelInterface* GetChannel(const std::string& content_name);
Steve Anton75737c02017-11-06 10:37:17 -0800944
Steve Anton75737c02017-11-06 10:37:17 -0800945 cricket::IceConfig ParseIceConfig(
946 const PeerConnectionInterface::RTCConfiguration& config) const;
947
Steve Anton75737c02017-11-06 10:37:17 -0800948 cricket::DataChannelType data_channel_type() const;
949
Steve Anton75737c02017-11-06 10:37:17 -0800950 // Called when an RTCCertificate is generated or retrieved by
951 // WebRTCSessionDescriptionFactory. Should happen before setLocalDescription.
952 void OnCertificateReady(
953 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate);
954 void OnDtlsSrtpSetupFailure(cricket::BaseChannel*, bool rtcp);
955
Steve Anton75737c02017-11-06 10:37:17 -0800956 // Non-const versions of local_description()/remote_description(), for use
957 // internally.
Karl Wiberg739506e2019-04-03 11:37:28 +0200958 SessionDescriptionInterface* mutable_local_description()
959 RTC_RUN_ON(signaling_thread()) {
Steve Anton75737c02017-11-06 10:37:17 -0800960 return pending_local_description_ ? pending_local_description_.get()
961 : current_local_description_.get();
962 }
Karl Wiberg739506e2019-04-03 11:37:28 +0200963 SessionDescriptionInterface* mutable_remote_description()
964 RTC_RUN_ON(signaling_thread()) {
Steve Anton75737c02017-11-06 10:37:17 -0800965 return pending_remote_description_ ? pending_remote_description_.get()
966 : current_remote_description_.get();
967 }
968
969 // Updates the error state, signaling if necessary.
Steve Antonf8470812017-12-04 10:46:21 -0800970 void SetSessionError(SessionError error, const std::string& error_desc);
Steve Anton75737c02017-11-06 10:37:17 -0800971
Zhi Huange830e682018-03-30 10:48:35 -0700972 RTCError UpdateSessionState(SdpType type,
973 cricket::ContentSource source,
974 const cricket::SessionDescription* description);
Steve Anton75737c02017-11-06 10:37:17 -0800975 // Push the media parts of the local or remote session description
976 // down to all of the channels.
Karl Wiberg5966c502019-02-21 23:55:09 +0100977 RTCError PushdownMediaDescription(SdpType type, cricket::ContentSource source)
978 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800979
Steve Anton8a006912017-12-04 15:25:56 -0800980 RTCError PushdownTransportDescription(cricket::ContentSource source,
Steve Anton3828c062017-12-06 10:34:51 -0800981 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800982
983 // Returns true and the TransportInfo of the given |content_name|
984 // from |description|. Returns false if it's not available.
985 static bool GetTransportDescription(
986 const cricket::SessionDescription* description,
987 const std::string& content_name,
988 cricket::TransportDescription* info);
989
Steve Anton75737c02017-11-06 10:37:17 -0800990 // Enables media channels to allow sending of media.
Steve Antoned10bd92017-12-05 10:52:59 -0800991 // This enables media to flow on all configured audio/video channels and the
992 // RtpDataChannel.
Karl Wiberga58e1692019-03-26 13:33:43 +0100993 void EnableSending() RTC_RUN_ON(signaling_thread());
Steve Anton3fe1b152017-12-12 10:20:08 -0800994
Steve Anton8af21862017-12-15 11:20:13 -0800995 // Destroys all BaseChannels and destroys the SCTP data channel, if present.
Karl Wiberg85a4a932019-03-22 15:29:58 +0100996 void DestroyAllChannels() RTC_RUN_ON(signaling_thread());
Steve Anton3fe1b152017-12-12 10:20:08 -0800997
Steve Anton75737c02017-11-06 10:37:17 -0800998 // Returns the media index for a local ice candidate given the content name.
999 // Returns false if the local session description does not have a media
1000 // content called |content_name|.
1001 bool GetLocalCandidateMediaIndex(const std::string& content_name,
Karl Wiberg739506e2019-04-03 11:37:28 +02001002 int* sdp_mline_index)
1003 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001004 // Uses all remote candidates in |remote_desc| in this session.
1005 bool UseCandidatesInSessionDescription(
Karl Wiberg744310f2019-02-14 10:18:56 +01001006 const SessionDescriptionInterface* remote_desc)
1007 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001008 // Uses |candidate| in this session.
Karl Wiberg744310f2019-02-14 10:18:56 +01001009 bool UseCandidate(const IceCandidateInterface* candidate)
1010 RTC_RUN_ON(signaling_thread());
Guido Urdaneta41633172019-05-23 20:12:29 +02001011 RTCErrorOr<const cricket::ContentInfo*> FindContentInfo(
1012 const SessionDescriptionInterface* description,
1013 const IceCandidateInterface* candidate) RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001014 // Deletes the corresponding channel of contents that don't exist in |desc|.
1015 // |desc| can be null. This means that all channels are deleted.
Karl Wiberg5966c502019-02-21 23:55:09 +01001016 void RemoveUnusedChannels(const cricket::SessionDescription* desc)
1017 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001018
1019 // Allocates media channels based on the |desc|. If |desc| doesn't have
1020 // the BUNDLE option, this method will disable BUNDLE in PortAllocator.
1021 // This method will also delete any existing media channels before creating.
Karl Wiberg5966c502019-02-21 23:55:09 +01001022 RTCError CreateChannels(const cricket::SessionDescription& desc)
1023 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -08001024
1025 // If the BUNDLE policy is max-bundle, then we know for sure that all
1026 // transports will be bundled from the start. This method returns the BUNDLE
1027 // group if that's the case, or null if BUNDLE will be negotiated later. An
1028 // error is returned if max-bundle is specified but the session description
1029 // does not have a BUNDLE group.
1030 RTCErrorOr<const cricket::ContentGroup*> GetEarlyBundleGroup(
Karl Wiberg5966c502019-02-21 23:55:09 +01001031 const cricket::SessionDescription& desc) const
1032 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001033
1034 // Helper methods to create media channels.
Karl Wiberg5966c502019-02-21 23:55:09 +01001035 cricket::VoiceChannel* CreateVoiceChannel(const std::string& mid)
1036 RTC_RUN_ON(signaling_thread());
1037 cricket::VideoChannel* CreateVideoChannel(const std::string& mid)
1038 RTC_RUN_ON(signaling_thread());
1039 bool CreateDataChannel(const std::string& mid) RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001040
Bjorn A Mellemb689af42019-08-21 10:44:59 -07001041 bool SetupDataChannelTransport_n(const std::string& mid)
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001042 RTC_RUN_ON(network_thread());
Bjorn A Mellemb689af42019-08-21 10:44:59 -07001043 void TeardownDataChannelTransport_n() RTC_RUN_ON(network_thread());
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001044
Steve Anton75737c02017-11-06 10:37:17 -08001045 bool ValidateBundleSettings(const cricket::SessionDescription* desc);
1046 bool HasRtcpMuxEnabled(const cricket::ContentInfo* content);
1047 // Below methods are helper methods which verifies SDP.
Steve Anton8a006912017-12-04 15:25:56 -08001048 RTCError ValidateSessionDescription(const SessionDescriptionInterface* sdesc,
Karl Wiberg5966c502019-02-21 23:55:09 +01001049 cricket::ContentSource source)
1050 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001051
Steve Anton3828c062017-12-06 10:34:51 -08001052 // Check if a call to SetLocalDescription is acceptable with a session
1053 // description of the given type.
1054 bool ExpectSetLocalDescription(SdpType type);
1055 // Check if a call to SetRemoteDescription is acceptable with a session
1056 // description of the given type.
1057 bool ExpectSetRemoteDescription(SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -08001058 // Verifies a=setup attribute as per RFC 5763.
1059 bool ValidateDtlsSetupAttribute(const cricket::SessionDescription* desc,
Steve Anton3828c062017-12-06 10:34:51 -08001060 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -08001061
1062 // Returns true if we are ready to push down the remote candidate.
1063 // |remote_desc| is the new remote description, or NULL if the current remote
1064 // description should be used. Output |valid| is true if the candidate media
1065 // index is valid.
1066 bool ReadyToUseRemoteCandidate(const IceCandidateInterface* candidate,
1067 const SessionDescriptionInterface* remote_desc,
Karl Wiberga58e1692019-03-26 13:33:43 +01001068 bool* valid) RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001069
1070 // Returns true if SRTP (either using DTLS-SRTP or SDES) is required by
1071 // this session.
Karl Wiberg739506e2019-04-03 11:37:28 +02001072 bool SrtpRequired() const RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001073
Zhi Huange830e682018-03-30 10:48:35 -07001074 // JsepTransportController signal handlers.
Karl Wiberg744310f2019-02-14 10:18:56 +01001075 void OnTransportControllerConnectionState(cricket::IceConnectionState state)
1076 RTC_RUN_ON(signaling_thread());
1077 void OnTransportControllerGatheringState(cricket::IceGatheringState state)
1078 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001079 void OnTransportControllerCandidatesGathered(
1080 const std::string& transport_name,
Karl Wiberg744310f2019-02-14 10:18:56 +01001081 const std::vector<cricket::Candidate>& candidates)
1082 RTC_RUN_ON(signaling_thread());
Eldar Relloda13ea22019-06-01 12:23:43 +03001083 void OnTransportControllerCandidateError(
1084 const cricket::IceCandidateErrorEvent& event)
1085 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001086 void OnTransportControllerCandidatesRemoved(
Karl Wiberg744310f2019-02-14 10:18:56 +01001087 const std::vector<cricket::Candidate>& candidates)
1088 RTC_RUN_ON(signaling_thread());
Alex Drake00c7ecf2019-08-06 10:54:47 -07001089 void OnTransportControllerCandidateChanged(
1090 const cricket::CandidatePairChangeEvent& event)
1091 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001092 void OnTransportControllerDtlsHandshakeError(rtc::SSLHandshakeError error);
1093
Steve Antonf8470812017-12-04 10:46:21 -08001094 const char* SessionErrorToString(SessionError error) const;
Karl Wiberga58e1692019-03-26 13:33:43 +01001095 std::string GetSessionErrorMsg() RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001096
Steve Anton8e20f172018-03-06 10:55:04 -08001097 // Report the UMA metric SdpFormatReceived for the given remote offer.
1098 void ReportSdpFormatReceived(const SessionDescriptionInterface& remote_offer);
1099
Steve Anton0ffaaa22018-02-23 10:31:30 -08001100 // Report inferred negotiated SDP semantics from a local/remote answer to the
1101 // UMA observer.
1102 void ReportNegotiatedSdpSemantics(const SessionDescriptionInterface& answer);
1103
Steve Anton75737c02017-11-06 10:37:17 -08001104 // Invoked when TransportController connection completion is signaled.
1105 // Reports stats for all transports in use.
Karl Wiberga58e1692019-03-26 13:33:43 +01001106 void ReportTransportStats() RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001107
1108 // Gather the usage of IPv4/IPv6 as best connection.
1109 void ReportBestConnectionState(const cricket::TransportStats& stats);
1110
Steve Antonc7b964c2018-02-01 14:39:45 -08001111 void ReportNegotiatedCiphers(const cricket::TransportStats& stats,
Karl Wiberg739506e2019-04-03 11:37:28 +02001112 const std::set<cricket::MediaType>& media_types)
1113 RTC_RUN_ON(signaling_thread());
Qingsi Wang1ba5dec2019-08-19 11:57:17 -07001114 void ReportIceCandidateCollected(const cricket::Candidate& candidate)
1115 RTC_RUN_ON(signaling_thread());
1116 void ReportRemoteIceCandidateAdded(const cricket::Candidate& candidate)
1117 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001118
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001119 void NoteUsageEvent(UsageEvent event);
Karl Wiberg744310f2019-02-14 10:18:56 +01001120 void ReportUsagePattern() const RTC_RUN_ON(signaling_thread());
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001121
Steve Anton75737c02017-11-06 10:37:17 -08001122 void OnSentPacket_w(const rtc::SentPacket& sent_packet);
1123
Karl Wiberga58e1692019-03-26 13:33:43 +01001124 const std::string GetTransportName(const std::string& content_name)
1125 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001126
Harald Alvestrand408cb4b2019-11-16 12:09:08 +01001127 // Functions for dealing with transports.
1128 // Note that cricket code uses the term "channel" for what other code
1129 // refers to as "transport".
1130
Steve Anton6fec8802017-12-04 10:37:29 -08001131 // Destroys and clears the BaseChannel associated with the given transceiver,
1132 // if such channel is set.
1133 void DestroyTransceiverChannel(
1134 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
1135 transceiver);
1136
Harald Alvestrand408cb4b2019-11-16 12:09:08 +01001137 // Destroys the RTP data channel transport and/or the SCTP data channel
1138 // transport and clears it.
1139 void DestroyDataChannelTransport() RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001140
Amit Hilbuchdd9390c2018-11-13 16:26:05 -08001141 // Destroys the given ChannelInterface.
1142 // The channel cannot be accessed after this method is called.
1143 void DestroyChannelInterface(cricket::ChannelInterface* channel);
Steve Anton6fec8802017-12-04 10:37:29 -08001144
Zhi Huang365381f2018-04-13 16:44:34 -07001145 // JsepTransportController::Observer override.
Taylor Brandstettercbaa2542018-04-16 16:42:14 -07001146 //
1147 // Called by |transport_controller_| when processing transport information
1148 // from a session description, and the mapping from m= sections to transports
1149 // changed (as a result of BUNDLE negotiation, or m= sections being
1150 // rejected).
Bjorn A Mellemb689af42019-08-21 10:44:59 -07001151 bool OnTransportChanged(
1152 const std::string& mid,
1153 RtpTransportInternal* rtp_transport,
1154 rtc::scoped_refptr<DtlsTransport> dtls_transport,
Bjorn A Mellembc3eebc2019-09-23 14:53:54 -07001155 DataChannelTransportInterface* data_channel_transport) override;
Zhi Huange830e682018-03-30 10:48:35 -07001156
Guido Urdaneta1ff16c82019-05-20 19:31:53 +02001157 // RtpSenderBase::SetStreamsObserver override.
1158 void OnSetStreams() override;
1159
Benjamin Wright8c27cca2018-10-25 10:16:44 -07001160 // Returns the CryptoOptions for this PeerConnection. This will always
1161 // return the RTCConfiguration.crypto_options if set and will only default
1162 // back to the PeerConnectionFactory settings if nothing was set.
Karl Wiberg5966c502019-02-21 23:55:09 +01001163 CryptoOptions GetCryptoOptions() RTC_RUN_ON(signaling_thread());
Benjamin Wright8c27cca2018-10-25 10:16:44 -07001164
Anton Sukhanov98a462c2018-10-17 13:15:42 -07001165 // Returns rtp transport, result can not be nullptr.
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001166 RtpTransportInternal* GetRtpTransport(const std::string& mid)
1167 RTC_RUN_ON(signaling_thread()) {
Anton Sukhanov98a462c2018-10-17 13:15:42 -07001168 auto rtp_transport = transport_controller_->GetRtpTransport(mid);
1169 RTC_DCHECK(rtp_transport);
1170 return rtp_transport;
1171 }
1172
Guido Urdaneta70c2db12019-04-16 12:24:14 +02001173 void UpdateNegotiationNeeded();
1174 bool CheckIfNegotiationIsNeeded();
Eldar Relloead0ec92019-10-21 23:01:31 +03001175
1176 // | sdp_type | is the type of the SDP that caused the rollback.
1177 RTCError Rollback(SdpType sdp_type);
Guido Urdaneta70c2db12019-04-16 12:24:14 +02001178
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001179 // Storing the factory as a scoped reference pointer ensures that the memory
1180 // in the PeerConnectionFactoryImpl remains available as long as the
1181 // PeerConnection is running. It is passed to PeerConnection as a raw pointer.
1182 // However, since the reference counting is done in the
deadbeefab9b2d12015-10-14 11:33:11 -07001183 // PeerConnectionFactoryInterface all instances created using the raw pointer
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001184 // will refer to the same reference count.
Karl Wiberg744310f2019-02-14 10:18:56 +01001185 const rtc::scoped_refptr<PeerConnectionFactory> factory_;
1186 PeerConnectionObserver* observer_ RTC_GUARDED_BY(signaling_thread()) =
1187 nullptr;
terelius33860252017-05-12 23:37:18 -07001188
1189 // The EventLog needs to outlive |call_| (and any other object that uses it).
Karl Wibergb03ab712019-02-14 11:59:57 +01001190 std::unique_ptr<RtcEventLog> event_log_ RTC_GUARDED_BY(worker_thread());
1191
1192 // Points to the same thing as `event_log_`. Since it's const, we may read the
1193 // pointer (but not touch the object) from any thread.
1194 RtcEventLog* const event_log_ptr_ RTC_PT_GUARDED_BY(worker_thread());
terelius33860252017-05-12 23:37:18 -07001195
Henrik Boströma3728d32019-10-28 12:09:49 +01001196 // The operations chain is used by the offer/answer exchange methods to ensure
1197 // they are executed in the right order. For example, if
1198 // SetRemoteDescription() is invoked while CreateOffer() is still pending, the
1199 // SRD operation will not start until CreateOffer() has completed. See
1200 // https://w3c.github.io/webrtc-pc/#dfn-operations-chain.
1201 rtc::scoped_refptr<rtc::OperationsChain> operations_chain_
1202 RTC_GUARDED_BY(signaling_thread());
1203
Karl Wiberg8d2e2282019-02-17 13:00:07 +01001204 SignalingState signaling_state_ RTC_GUARDED_BY(signaling_thread()) = kStable;
1205 IceConnectionState ice_connection_state_ RTC_GUARDED_BY(signaling_thread()) =
1206 kIceConnectionNew;
1207 PeerConnectionInterface::IceConnectionState standardized_ice_connection_state_
1208 RTC_GUARDED_BY(signaling_thread()) = kIceConnectionNew;
1209 PeerConnectionInterface::PeerConnectionState connection_state_
1210 RTC_GUARDED_BY(signaling_thread()) = PeerConnectionState::kNew;
Jonas Olsson635474e2018-10-18 15:58:17 +02001211
Karl Wiberg8d2e2282019-02-17 13:00:07 +01001212 IceGatheringState ice_gathering_state_ RTC_GUARDED_BY(signaling_thread()) =
1213 kIceGatheringNew;
Karl Wiberg5966c502019-02-21 23:55:09 +01001214 PeerConnectionInterface::RTCConfiguration configuration_
1215 RTC_GUARDED_BY(signaling_thread());
1216
Bjorn A Mellem5985a042019-06-28 14:19:38 -07001217 // Field-trial based configuration for datagram transport.
1218 const DatagramTransportConfig datagram_transport_config_;
1219
Bjorn A Mellemb689af42019-08-21 10:44:59 -07001220 // Field-trial based configuration for datagram transport data channels.
Bjorn A Mellem7da4e562019-09-26 11:02:11 -07001221 const DatagramTransportDataChannelConfig
1222 datagram_transport_data_channel_config_;
Bjorn A Mellemb689af42019-08-21 10:44:59 -07001223
Bjorn A Mellem5985a042019-06-28 14:19:38 -07001224 // Final, resolved value for whether datagram transport is in use.
1225 bool use_datagram_transport_ RTC_GUARDED_BY(signaling_thread()) = false;
1226
Bjorn A Mellemb689af42019-08-21 10:44:59 -07001227 // Equivalent of |use_datagram_transport_|, but for its use with data
1228 // channels.
1229 bool use_datagram_transport_for_data_channels_
1230 RTC_GUARDED_BY(signaling_thread()) = false;
1231
Bjorn A Mellem7da4e562019-09-26 11:02:11 -07001232 // Resolved value of whether to use data channels only for incoming calls.
1233 bool use_datagram_transport_for_data_channels_receive_only_
1234 RTC_GUARDED_BY(signaling_thread()) = false;
1235
Zach Steine20867f2018-08-02 13:20:15 -07001236 // TODO(zstein): |async_resolver_factory_| can currently be nullptr if it
1237 // is not injected. It should be required once chromium supplies it.
Karl Wibergfb3be392019-03-22 14:13:22 +01001238 std::unique_ptr<AsyncResolverFactory> async_resolver_factory_
1239 RTC_GUARDED_BY(signaling_thread());
1240 std::unique_ptr<cricket::PortAllocator>
1241 port_allocator_; // TODO(bugs.webrtc.org/9987): Accessed on both
1242 // signaling and network thread.
Qingsi Wang25ec8882019-11-15 12:33:05 -08001243 std::unique_ptr<webrtc::IceTransportFactory>
1244 ice_transport_factory_; // TODO(bugs.webrtc.org/9987): Accessed on the
1245 // signaling thread but the underlying raw
1246 // pointer is given to
1247 // |jsep_transport_controller_| and used on the
1248 // network thread.
Karl Wibergfb3be392019-03-22 14:13:22 +01001249 std::unique_ptr<rtc::SSLCertificateVerifier>
1250 tls_cert_verifier_; // TODO(bugs.webrtc.org/9987): Accessed on both
1251 // signaling and network thread.
deadbeefab9b2d12015-10-14 11:33:11 -07001252
zhihuang8f65cdf2016-05-06 18:40:30 -07001253 // One PeerConnection has only one RTCP CNAME.
1254 // https://tools.ietf.org/html/draft-ietf-rtcweb-rtp-usage-26#section-4.9
Karl Wibergfb3be392019-03-22 14:13:22 +01001255 const std::string rtcp_cname_;
zhihuang8f65cdf2016-05-06 18:40:30 -07001256
deadbeefab9b2d12015-10-14 11:33:11 -07001257 // Streams added via AddStream.
Karl Wiberg1e1e1022019-03-22 14:27:22 +01001258 const rtc::scoped_refptr<StreamCollection> local_streams_
1259 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001260 // Streams created as a result of SetRemoteDescription.
Karl Wiberg1e1e1022019-03-22 14:27:22 +01001261 const rtc::scoped_refptr<StreamCollection> remote_streams_
1262 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001263
Karl Wiberg1e1e1022019-03-22 14:27:22 +01001264 std::vector<std::unique_ptr<MediaStreamObserver>> stream_observers_
1265 RTC_GUARDED_BY(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -08001266
Steve Anton4171afb2017-11-20 10:20:22 -08001267 // These lists store sender info seen in local/remote descriptions.
Karl Wibergc70999e2019-03-22 15:14:27 +01001268 std::vector<RtpSenderInfo> remote_audio_sender_infos_
1269 RTC_GUARDED_BY(signaling_thread());
1270 std::vector<RtpSenderInfo> remote_video_sender_infos_
1271 RTC_GUARDED_BY(signaling_thread());
1272 std::vector<RtpSenderInfo> local_audio_sender_infos_
1273 RTC_GUARDED_BY(signaling_thread());
1274 std::vector<RtpSenderInfo> local_video_sender_infos_
1275 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001276
Karl Wiberg85a4a932019-03-22 15:29:58 +01001277 bool remote_peer_supports_msid_ RTC_GUARDED_BY(signaling_thread()) = false;
deadbeef70ab1a12015-09-28 16:53:55 -07001278
Karl Wibergac025892019-03-26 13:08:37 +01001279 // The unique_ptr belongs to the worker thread, but the Call object manages
1280 // its own thread safety.
Karl Wiberg6cab5c82019-03-26 09:57:01 +01001281 std::unique_ptr<Call> call_ RTC_GUARDED_BY(worker_thread());
1282
Sebastian Jansson1b83a9e2019-09-18 18:22:12 +02001283 rtc::AsyncInvoker rtcp_invoker_ RTC_GUARDED_BY(network_thread());
1284
Karl Wiberg6cab5c82019-03-26 09:57:01 +01001285 // Points to the same thing as `call_`. Since it's const, we may read the
Karl Wibergac025892019-03-26 13:08:37 +01001286 // pointer from any thread.
1287 Call* const call_ptr_;
Karl Wiberg6cab5c82019-03-26 09:57:01 +01001288
1289 std::unique_ptr<StatsCollector> stats_
1290 RTC_GUARDED_BY(signaling_thread()); // A pointer is passed to senders_
1291 rtc::scoped_refptr<RTCStatsCollector> stats_collector_
1292 RTC_GUARDED_BY(signaling_thread());
Eldar Rello5ab79e62019-10-09 18:29:44 +03001293 // Holds changes made to transceivers during applying descriptors for
1294 // potential rollback. Gets cleared once signaling state goes to stable.
1295 std::map<rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>,
1296 TransceiverStableState>
1297 transceiver_stable_states_by_transceivers_;
Eldar Rello353a7182019-11-25 18:49:44 +02001298 // Holds remote stream ids for transceivers from stable state.
1299 std::map<rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>,
1300 std::vector<std::string>>
1301 remote_stream_ids_by_transceivers_;
deadbeefa601f5c2016-06-06 14:27:39 -07001302 std::vector<
Steve Anton4171afb2017-11-20 10:20:22 -08001303 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001304 transceivers_; // TODO(bugs.webrtc.org/9987): Accessed on both signaling
1305 // and network thread.
1306
Henrik Boström5b147782018-12-04 11:25:05 +01001307 // In Unified Plan, if we encounter remote SDP that does not contain an a=msid
1308 // line we create and use a stream with a random ID for our receivers. This is
1309 // to support legacy endpoints that do not support the a=msid attribute (as
1310 // opposed to streamless tracks with "a=msid:-").
Karl Wiberga58e1692019-03-26 13:33:43 +01001311 rtc::scoped_refptr<MediaStreamInterface> missing_msid_default_stream_
1312 RTC_GUARDED_BY(signaling_thread());
Amit Hilbuchae3df542019-01-07 12:13:08 -08001313 // MIDs will be generated using this generator which will keep track of
1314 // all the MIDs that have been seen over the life of the PeerConnection.
Karl Wiberga58e1692019-03-26 13:33:43 +01001315 rtc::UniqueStringGenerator mid_generator_ RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001316
Karl Wiberga58e1692019-03-26 13:33:43 +01001317 SessionError session_error_ RTC_GUARDED_BY(signaling_thread()) =
1318 SessionError::kNone;
1319 std::string session_error_desc_ RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001320
Karl Wiberga58e1692019-03-26 13:33:43 +01001321 std::string session_id_ RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001322
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001323 std::unique_ptr<JsepTransportController>
1324 transport_controller_; // TODO(bugs.webrtc.org/9987): Accessed on both
1325 // signaling and network thread.
1326 std::unique_ptr<cricket::SctpTransportInternalFactory>
1327 sctp_factory_; // TODO(bugs.webrtc.org/9987): Accessed on both
1328 // signaling and network thread.
Steve Anton75737c02017-11-06 10:37:17 -08001329
Zhi Huange830e682018-03-30 10:48:35 -07001330 // |sctp_mid_| is the content name (MID) in SDP.
Bjorn A Mellemb689af42019-08-21 10:44:59 -07001331 // Note: this is used as the data channel MID by both SCTP and data channel
1332 // transports. It is set when either transport is initialized and unset when
1333 // both transports are deleted.
Karl Wiberg2cc368f2019-04-02 11:31:56 +02001334 absl::optional<std::string>
1335 sctp_mid_; // TODO(bugs.webrtc.org/9987): Accessed on both signaling
1336 // and network thread.
1337
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001338 // Whether this peer is the caller. Set when the local description is applied.
1339 absl::optional<bool> is_caller_ RTC_GUARDED_BY(signaling_thread());
1340
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001341
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001342
Karl Wiberg739506e2019-04-03 11:37:28 +02001343 std::unique_ptr<SessionDescriptionInterface> current_local_description_
1344 RTC_GUARDED_BY(signaling_thread());
1345 std::unique_ptr<SessionDescriptionInterface> pending_local_description_
1346 RTC_GUARDED_BY(signaling_thread());
1347 std::unique_ptr<SessionDescriptionInterface> current_remote_description_
1348 RTC_GUARDED_BY(signaling_thread());
1349 std::unique_ptr<SessionDescriptionInterface> pending_remote_description_
1350 RTC_GUARDED_BY(signaling_thread());
1351 bool dtls_enabled_ RTC_GUARDED_BY(signaling_thread()) = false;
Steve Anton75737c02017-11-06 10:37:17 -08001352
Karl Wibergf73f7d62019-04-08 15:36:53 +02001353 // List of content names for which the remote side triggered an ICE restart.
1354 std::set<std::string> pending_ice_restarts_
1355 RTC_GUARDED_BY(signaling_thread());
1356
1357 std::unique_ptr<WebRtcSessionDescriptionFactory> webrtc_session_desc_factory_
1358 RTC_GUARDED_BY(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -08001359
1360 // Member variables for caching global options.
Karl Wibergf73f7d62019-04-08 15:36:53 +02001361 cricket::AudioOptions audio_options_ RTC_GUARDED_BY(signaling_thread());
1362 cricket::VideoOptions video_options_ RTC_GUARDED_BY(signaling_thread());
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001363
Karl Wibergf73f7d62019-04-08 15:36:53 +02001364 int usage_event_accumulator_ RTC_GUARDED_BY(signaling_thread()) = 0;
1365 bool return_histogram_very_quickly_ RTC_GUARDED_BY(signaling_thread()) =
1366 false;
Amit Hilbuchbcd39d42019-01-25 17:13:56 -08001367
1368 // This object should be used to generate any SSRC that is not explicitly
1369 // specified by the user (or by the remote party).
1370 // The generator is not used directly, instead it is passed on to the
1371 // channel manager and the session description factory.
Karl Wibergf73f7d62019-04-08 15:36:53 +02001372 rtc::UniqueRandomIdGenerator ssrc_generator_
1373 RTC_GUARDED_BY(signaling_thread());
Jonas Orelanda3aa9bd2019-04-17 07:38:40 +02001374
1375 // A video bitrate allocator factory.
1376 // This can injected using the PeerConnectionDependencies,
1377 // or else the CreateBuiltinVideoBitrateAllocatorFactory() will be called.
1378 // Note that one can still choose to override this in a MediaEngine
1379 // if one wants too.
1380 std::unique_ptr<webrtc::VideoBitrateAllocatorFactory>
1381 video_bitrate_allocator_factory_;
1382
Henrik Boström79b69802019-07-18 11:16:56 +02001383 std::unique_ptr<LocalIceCredentialsToReplace>
1384 local_ice_credentials_to_replace_ RTC_GUARDED_BY(signaling_thread());
Guido Urdaneta70c2db12019-04-16 12:24:14 +02001385 bool is_negotiation_needed_ RTC_GUARDED_BY(signaling_thread()) = false;
Henrik Boströma3728d32019-10-28 12:09:49 +01001386
Harald Alvestrand00cf34c2019-12-02 09:56:02 +01001387 DataChannelController data_channel_controller_;
Henrik Boströma3728d32019-10-28 12:09:49 +01001388 rtc::WeakPtrFactory<PeerConnection> weak_ptr_factory_
1389 RTC_GUARDED_BY(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001390};
1391
1392} // namespace webrtc
1393
Steve Anton10542f22019-01-11 09:11:00 -08001394#endif // PC_PEER_CONNECTION_H_