blob: 2d07893adc27c73a53d8ba4018488b64790dd791 [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>
perkjd61bf802016-03-24 03:16:19 -070018#include <vector>
henrike@webrtc.org28e20752013-07-10 00:45:36 +000019
Piotr (Peter) Slatalae0c2e972018-10-08 09:43:21 -070020#include "api/media_transport_interface.h"
Steve Anton10542f22019-01-11 09:11:00 -080021#include "api/peer_connection_interface.h"
22#include "api/turn_customizer.h"
23#include "pc/ice_server_parsing.h"
24#include "pc/jsep_transport_controller.h"
25#include "pc/peer_connection_factory.h"
26#include "pc/peer_connection_internal.h"
27#include "pc/rtc_stats_collector.h"
28#include "pc/rtp_transceiver.h"
Harald Alvestrandc85328f2019-02-28 07:51:00 +010029#include "pc/sctp_transport.h"
Steve Anton10542f22019-01-11 09:11:00 -080030#include "pc/stats_collector.h"
31#include "pc/stream_collection.h"
Steve Anton10542f22019-01-11 09:11:00 -080032#include "pc/webrtc_session_description_factory.h"
Karl Wiberg5966c502019-02-21 23:55:09 +010033#include "rtc_base/race_checker.h"
Amit Hilbuchdbb49df2019-01-23 14:54:24 -080034#include "rtc_base/unique_id_generator.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000035
36namespace webrtc {
henrike@webrtc.org28e20752013-07-10 00:45:36 +000037
deadbeefeb459812015-12-15 19:24:43 -080038class MediaStreamObserver;
perkjf0dcfe22016-03-10 18:32:00 +010039class VideoRtpReceiver;
skvlad11a9cbf2016-10-07 11:53:05 -070040class RtcEventLog;
deadbeefab9b2d12015-10-14 11:33:11 -070041
Steve Anton75737c02017-11-06 10:37:17 -080042// PeerConnection is the implementation of the PeerConnection object as defined
43// by the PeerConnectionInterface API surface.
44// The class currently is solely responsible for the following:
45// - Managing the session state machine (signaling state).
46// - Creating and initializing lower-level objects, like PortAllocator and
47// BaseChannels.
48// - Owning and managing the life cycle of the RtpSender/RtpReceiver and track
49// objects.
50// - Tracking the current and pending local/remote session descriptions.
51// The class currently is jointly responsible for the following:
52// - Parsing and interpreting SDP.
53// - Generating offers and answers based on the current state.
54// - The ICE state machine.
55// - Generating stats.
Steve Anton2d8609c2018-01-23 16:38:46 -080056class PeerConnection : public PeerConnectionInternal,
Steve Anton75737c02017-11-06 10:37:17 -080057 public DataChannelProviderInterface,
Bjorn Mellem175aa2e2018-11-08 11:23:22 -080058 public DataChannelSink,
Zhi Huang365381f2018-04-13 16:44:34 -070059 public JsepTransportController::Observer,
Steve Antonad182762018-09-05 20:22:40 +000060 public rtc::MessageHandler,
henrike@webrtc.org28e20752013-07-10 00:45:36 +000061 public sigslot::has_slots<> {
62 public:
Harald Alvestrand8ebba742018-05-31 14:00:34 +020063 enum class UsageEvent : int {
64 TURN_SERVER_ADDED = 0x01,
65 STUN_SERVER_ADDED = 0x02,
66 DATA_ADDED = 0x04,
67 AUDIO_ADDED = 0x08,
68 VIDEO_ADDED = 0x10,
69 SET_LOCAL_DESCRIPTION_CALLED = 0x20,
70 SET_REMOTE_DESCRIPTION_CALLED = 0x40,
71 CANDIDATE_COLLECTED = 0x80,
72 REMOTE_CANDIDATE_ADDED = 0x100,
73 ICE_STATE_CONNECTED = 0x200,
Qingsi Wang7fc821d2018-07-12 12:54:53 -070074 CLOSE_CALLED = 0x400,
Harald Alvestrand056d8112018-07-16 19:18:58 +020075 PRIVATE_CANDIDATE_COLLECTED = 0x800,
76 MAX_VALUE = 0x1000,
Harald Alvestrand8ebba742018-05-31 14:00:34 +020077 };
78
zhihuang38ede132017-06-15 12:52:32 -070079 explicit PeerConnection(PeerConnectionFactory* factory,
80 std::unique_ptr<RtcEventLog> event_log,
81 std::unique_ptr<Call> call);
henrike@webrtc.org28e20752013-07-10 00:45:36 +000082
deadbeef653b8e02015-11-11 12:55:10 -080083 bool Initialize(
84 const PeerConnectionInterface::RTCConfiguration& configuration,
Benjamin Wrightcab58882018-05-02 15:12:47 -070085 PeerConnectionDependencies dependencies);
deadbeef653b8e02015-11-11 12:55:10 -080086
deadbeefa67696b2015-09-29 11:56:26 -070087 rtc::scoped_refptr<StreamCollectionInterface> local_streams() override;
88 rtc::scoped_refptr<StreamCollectionInterface> remote_streams() override;
89 bool AddStream(MediaStreamInterface* local_stream) override;
90 void RemoveStream(MediaStreamInterface* local_stream) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000091
Steve Anton2d6c76a2018-01-05 17:10:52 -080092 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrack(
Steve Antonf9381f02017-12-14 10:23:57 -080093 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -080094 const std::vector<std::string>& stream_ids) override;
deadbeefe1f9d832016-01-14 15:35:42 -080095 bool RemoveTrack(RtpSenderInterface* sender) override;
Steve Anton24db5732018-07-23 10:27:33 -070096 RTCError RemoveTrackNew(
97 rtc::scoped_refptr<RtpSenderInterface> sender) override;
deadbeefe1f9d832016-01-14 15:35:42 -080098
Steve Anton9158ef62017-11-27 13:01:52 -080099 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
100 rtc::scoped_refptr<MediaStreamTrackInterface> track) override;
101 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
102 rtc::scoped_refptr<MediaStreamTrackInterface> track,
103 const RtpTransceiverInit& init) override;
104 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
105 cricket::MediaType media_type) override;
106 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
107 cricket::MediaType media_type,
108 const RtpTransceiverInit& init) override;
109
Steve Anton8c0f7a72017-10-03 10:03:10 -0700110 // Gets the DTLS SSL certificate associated with the audio transport on the
111 // remote side. This will become populated once the DTLS connection with the
112 // peer has been completed, as indicated by the ICE connection state
113 // transitioning to kIceConnectionCompleted.
114 // Note that this will be removed once we implement RTCDtlsTransport which
115 // has standardized method for getting this information.
116 // See https://www.w3.org/TR/webrtc/#rtcdtlstransport-interface
117 std::unique_ptr<rtc::SSLCertificate> GetRemoteAudioSSLCertificate();
118
Zhi Huang70b820f2018-01-27 14:16:15 -0800119 // Version of the above method that returns the full certificate chain.
120 std::unique_ptr<rtc::SSLCertChain> GetRemoteAudioSSLCertChain();
121
deadbeeffac06552015-11-25 11:26:01 -0800122 rtc::scoped_refptr<RtpSenderInterface> CreateSender(
deadbeefbd7d8f72015-12-18 16:58:44 -0800123 const std::string& kind,
124 const std::string& stream_id) override;
deadbeeffac06552015-11-25 11:26:01 -0800125
deadbeef70ab1a12015-09-28 16:53:55 -0700126 std::vector<rtc::scoped_refptr<RtpSenderInterface>> GetSenders()
127 const override;
128 std::vector<rtc::scoped_refptr<RtpReceiverInterface>> GetReceivers()
129 const override;
Steve Anton9158ef62017-11-27 13:01:52 -0800130 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>> GetTransceivers()
131 const override;
deadbeef70ab1a12015-09-28 16:53:55 -0700132
deadbeefa67696b2015-09-29 11:56:26 -0700133 rtc::scoped_refptr<DataChannelInterface> CreateDataChannel(
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000134 const std::string& label,
deadbeefa67696b2015-09-29 11:56:26 -0700135 const DataChannelInit* config) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100136 // WARNING: LEGACY. See peerconnectioninterface.h
deadbeefa67696b2015-09-29 11:56:26 -0700137 bool GetStats(StatsObserver* observer,
138 webrtc::MediaStreamTrackInterface* track,
139 StatsOutputLevel level) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100140 // Spec-complaint GetStats(). See peerconnectioninterface.h
hbos74e1a4f2016-09-15 23:33:01 -0700141 void GetStats(RTCStatsCollectorCallback* callback) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100142 void GetStats(
143 rtc::scoped_refptr<RtpSenderInterface> selector,
144 rtc::scoped_refptr<RTCStatsCollectorCallback> callback) override;
145 void GetStats(
146 rtc::scoped_refptr<RtpReceiverInterface> selector,
147 rtc::scoped_refptr<RTCStatsCollectorCallback> callback) override;
Harald Alvestrand89061872018-01-02 14:08:34 +0100148 void ClearStatsCache() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000149
deadbeefa67696b2015-09-29 11:56:26 -0700150 SignalingState signaling_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000151
deadbeefa67696b2015-09-29 11:56:26 -0700152 IceConnectionState ice_connection_state() override;
Jonas Olsson12046902018-12-06 11:25:14 +0100153 IceConnectionState standardized_ice_connection_state() override;
Jonas Olsson635474e2018-10-18 15:58:17 +0200154 PeerConnectionState peer_connection_state() override;
deadbeefa67696b2015-09-29 11:56:26 -0700155 IceGatheringState ice_gathering_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000156
deadbeefa67696b2015-09-29 11:56:26 -0700157 const SessionDescriptionInterface* local_description() const override;
158 const SessionDescriptionInterface* remote_description() const override;
deadbeeffe4a8a42016-12-20 17:56:17 -0800159 const SessionDescriptionInterface* current_local_description() const override;
160 const SessionDescriptionInterface* current_remote_description()
161 const override;
162 const SessionDescriptionInterface* pending_local_description() const override;
163 const SessionDescriptionInterface* pending_remote_description()
164 const override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000165
166 // JSEP01
deadbeefa67696b2015-09-29 11:56:26 -0700167 void CreateOffer(CreateSessionDescriptionObserver* observer,
168 const RTCOfferAnswerOptions& options) override;
htaa2a49d92016-03-04 02:51:39 -0800169 void CreateAnswer(CreateSessionDescriptionObserver* observer,
170 const RTCOfferAnswerOptions& options) override;
deadbeefa67696b2015-09-29 11:56:26 -0700171 void SetLocalDescription(SetSessionDescriptionObserver* observer,
172 SessionDescriptionInterface* desc) override;
Henrik Boströma4ecf552017-11-23 14:17:07 +0000173 void SetRemoteDescription(SetSessionDescriptionObserver* observer,
174 SessionDescriptionInterface* desc) override;
Henrik Boström31638672017-11-23 17:48:32 +0100175 void SetRemoteDescription(
176 std::unique_ptr<SessionDescriptionInterface> desc,
177 rtc::scoped_refptr<SetRemoteDescriptionObserverInterface> observer)
178 override;
deadbeef46c73892016-11-16 19:42:04 -0800179 PeerConnectionInterface::RTCConfiguration GetConfiguration() override;
deadbeefa67696b2015-09-29 11:56:26 -0700180 bool SetConfiguration(
deadbeef293e9262017-01-11 12:28:30 -0800181 const PeerConnectionInterface::RTCConfiguration& configuration,
182 RTCError* error) override;
183 bool SetConfiguration(
184 const PeerConnectionInterface::RTCConfiguration& configuration) override {
185 return SetConfiguration(configuration, nullptr);
186 }
deadbeefa67696b2015-09-29 11:56:26 -0700187 bool AddIceCandidate(const IceCandidateInterface* candidate) override;
Honghai Zhang7fb69db2016-03-14 11:59:18 -0700188 bool RemoveIceCandidates(
189 const std::vector<cricket::Candidate>& candidates) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000190
Niels Möller0c4f7be2018-05-07 14:01:37 +0200191 RTCError SetBitrate(const BitrateSettings& bitrate) override;
zstein4b979802017-06-02 14:37:37 -0700192
Alex Narest78609d52017-10-20 10:37:47 +0200193 void SetBitrateAllocationStrategy(
194 std::unique_ptr<rtc::BitrateAllocationStrategy>
195 bitrate_allocation_strategy) override;
196
henrika5f6bf242017-11-01 11:06:56 +0100197 void SetAudioPlayout(bool playout) override;
198 void SetAudioRecording(bool recording) override;
199
Harald Alvestrandad88c882018-11-28 16:47:46 +0100200 rtc::scoped_refptr<DtlsTransportInterface> LookupDtlsTransportByMid(
201 const std::string& mid) override;
Harald Alvestrand4a7b3ac2019-01-17 10:39:40 +0100202 rtc::scoped_refptr<DtlsTransport> LookupDtlsTransportByMidInternal(
203 const std::string& mid);
Harald Alvestrandad88c882018-11-28 16:47:46 +0100204
Harald Alvestrandc85328f2019-02-28 07:51:00 +0100205 rtc::scoped_refptr<SctpTransportInterface> GetSctpTransport() const override;
206
Elad Alon99c3fe52017-10-13 16:29:40 +0200207 RTC_DEPRECATED bool StartRtcEventLog(rtc::PlatformFile file,
208 int64_t max_size_bytes) override;
Bjorn Tereliusde939432017-11-20 17:38:14 +0100209 bool StartRtcEventLog(std::unique_ptr<RtcEventLogOutput> output,
210 int64_t output_period_ms) override;
ivoc14d5dbe2016-07-04 07:06:55 -0700211 void StopRtcEventLog() override;
212
deadbeefa67696b2015-09-29 11:56:26 -0700213 void Close() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000214
Steve Anton2d8609c2018-01-23 16:38:46 -0800215 // PeerConnectionInternal implementation.
Karl Wiberg4ae63472019-02-22 00:57:06 +0100216 rtc::Thread* network_thread() const final {
Steve Anton2d8609c2018-01-23 16:38:46 -0800217 return factory_->network_thread();
218 }
Karl Wiberg4ae63472019-02-22 00:57:06 +0100219 rtc::Thread* worker_thread() const final { return factory_->worker_thread(); }
220 rtc::Thread* signaling_thread() const final {
Steve Anton2d8609c2018-01-23 16:38:46 -0800221 return factory_->signaling_thread();
perkjd61bf802016-03-24 03:16:19 -0700222 }
deadbeefab9b2d12015-10-14 11:33:11 -0700223
Steve Antonbe5e2082018-01-24 15:29:17 -0800224 std::string session_id() const override { return session_id_; }
Steve Anton75737c02017-11-06 10:37:17 -0800225
Steve Anton2d8609c2018-01-23 16:38:46 -0800226 bool initial_offerer() const override {
Zhi Huange830e682018-03-30 10:48:35 -0700227 return transport_controller_ && transport_controller_->initial_offerer();
Steve Anton2d8609c2018-01-23 16:38:46 -0800228 }
Steve Anton75737c02017-11-06 10:37:17 -0800229
Steve Anton2d8609c2018-01-23 16:38:46 -0800230 std::vector<
231 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Steve Antonb8867112018-02-13 10:07:54 -0800232 GetTransceiversInternal() const override {
Steve Anton2d8609c2018-01-23 16:38:46 -0800233 return transceivers_;
234 }
235
Steve Antona41959e2018-11-28 11:15:33 -0800236 absl::string_view GetLocalTrackIdBySsrc(uint32_t ssrc) override;
237 absl::string_view GetRemoteTrackIdBySsrc(uint32_t ssrc) override;
Steve Anton2d8609c2018-01-23 16:38:46 -0800238
239 sigslot::signal1<DataChannel*>& SignalDataChannelCreated() override {
240 return SignalDataChannelCreated_;
241 }
242
243 cricket::RtpDataChannel* rtp_data_channel() const override {
Steve Anton75737c02017-11-06 10:37:17 -0800244 return rtp_data_channel_;
Steve Anton978b8762017-09-29 12:15:02 -0700245 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800246
Steve Antonbe5e2082018-01-24 15:29:17 -0800247 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels()
Steve Anton2d8609c2018-01-23 16:38:46 -0800248 const override {
249 return sctp_data_channels_;
250 }
251
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200252 absl::optional<std::string> sctp_content_name() const override {
Zhi Huange830e682018-03-30 10:48:35 -0700253 return sctp_mid_;
Steve Anton75737c02017-11-06 10:37:17 -0800254 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800255
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200256 absl::optional<std::string> sctp_transport_name() const override;
Steve Anton75737c02017-11-06 10:37:17 -0800257
Qingsi Wang72a43a12018-02-20 16:03:18 -0800258 cricket::CandidateStatsList GetPooledCandidateStats() const override;
Steve Anton5dfde182018-02-06 10:34:40 -0800259 std::map<std::string, std::string> GetTransportNamesByMid() const override;
260 std::map<std::string, cricket::TransportStats> GetTransportStatsByNames(
261 const std::set<std::string>& transport_names) override;
Steve Anton2d8609c2018-01-23 16:38:46 -0800262 Call::Stats GetCallStats() override;
Steve Anton75737c02017-11-06 10:37:17 -0800263
Steve Anton2d8609c2018-01-23 16:38:46 -0800264 bool GetLocalCertificate(
265 const std::string& transport_name,
266 rtc::scoped_refptr<rtc::RTCCertificate>* certificate) override;
Taylor Brandstetterc3928662018-02-23 13:04:51 -0800267 std::unique_ptr<rtc::SSLCertChain> GetRemoteSSLCertChain(
Steve Anton2d8609c2018-01-23 16:38:46 -0800268 const std::string& transport_name) override;
269 bool IceRestartPending(const std::string& content_name) const override;
270 bool NeedsIceRestart(const std::string& content_name) const override;
271 bool GetSslRole(const std::string& content_name, rtc::SSLRole* role) override;
Steve Anton7464fca2018-01-19 11:10:37 -0800272
Harald Alvestrand19793842018-06-25 12:03:50 +0200273 void ReturnHistogramVeryQuicklyForTesting() {
274 return_histogram_very_quickly_ = true;
275 }
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +0200276 void RequestUsagePatternReportForTesting();
Harald Alvestrand19793842018-06-25 12:03:50 +0200277
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000278 protected:
deadbeefa67696b2015-09-29 11:56:26 -0700279 ~PeerConnection() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000280
281 private:
Henrik Boström31638672017-11-23 17:48:32 +0100282 class SetRemoteDescriptionObserverAdapter;
283 friend class SetRemoteDescriptionObserverAdapter;
284
Steve Anton4171afb2017-11-20 10:20:22 -0800285 struct RtpSenderInfo {
286 RtpSenderInfo() : first_ssrc(0) {}
Seth Hampson845e8782018-03-02 11:34:10 -0800287 RtpSenderInfo(const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -0800288 const std::string sender_id,
289 uint32_t ssrc)
Seth Hampson845e8782018-03-02 11:34:10 -0800290 : stream_id(stream_id), sender_id(sender_id), first_ssrc(ssrc) {}
Steve Anton4171afb2017-11-20 10:20:22 -0800291 bool operator==(const RtpSenderInfo& other) {
Seth Hampson845e8782018-03-02 11:34:10 -0800292 return this->stream_id == other.stream_id &&
Steve Anton4171afb2017-11-20 10:20:22 -0800293 this->sender_id == other.sender_id &&
294 this->first_ssrc == other.first_ssrc;
deadbeefbda7e0b2015-12-08 17:13:40 -0800295 }
Seth Hampson845e8782018-03-02 11:34:10 -0800296 std::string stream_id;
Steve Anton4171afb2017-11-20 10:20:22 -0800297 std::string sender_id;
298 // An RtpSender can have many SSRCs. The first one is used as a sort of ID
299 // for communicating with the lower layers.
300 uint32_t first_ssrc;
deadbeefab9b2d12015-10-14 11:33:11 -0700301 };
deadbeefab9b2d12015-10-14 11:33:11 -0700302
Steve Antonad182762018-09-05 20:22:40 +0000303 // Implements MessageHandler.
304 void OnMessage(rtc::Message* msg) override;
305
Steve Antonafb0bb72018-02-20 11:35:37 -0800306 // Plan B helpers for getting the voice/video media channels for the single
307 // audio/video transceiver, if it exists.
Karl Wiberg5966c502019-02-21 23:55:09 +0100308 cricket::VoiceMediaChannel* voice_media_channel() const
309 RTC_RUN_ON(signaling_thread());
310 cricket::VideoMediaChannel* video_media_channel() const
311 RTC_RUN_ON(signaling_thread());
Steve Anton60776752018-01-10 11:51:34 -0800312
Steve Anton4171afb2017-11-20 10:20:22 -0800313 std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>>
314 GetSendersInternal() const;
315 std::vector<
316 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>>
317 GetReceiversInternal() const;
318
319 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100320 GetAudioTransceiver() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800321 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100322 GetVideoTransceiver() const RTC_RUN_ON(signaling_thread());
Steve Anton4171afb2017-11-20 10:20:22 -0800323
Steve Antonafb0bb72018-02-20 11:35:37 -0800324 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
325 GetFirstAudioTransceiver() const;
326
deadbeefab9b2d12015-10-14 11:33:11 -0700327 void CreateAudioReceiver(MediaStreamInterface* stream,
Karl Wiberg744310f2019-02-14 10:18:56 +0100328 const RtpSenderInfo& remote_sender_info)
329 RTC_RUN_ON(signaling_thread());
perkjf0dcfe22016-03-10 18:32:00 +0100330
deadbeefab9b2d12015-10-14 11:33:11 -0700331 void CreateVideoReceiver(MediaStreamInterface* stream,
Karl Wiberg744310f2019-02-14 10:18:56 +0100332 const RtpSenderInfo& remote_sender_info)
333 RTC_RUN_ON(signaling_thread());
Henrik Boström933d8b02017-10-10 10:05:16 -0700334 rtc::scoped_refptr<RtpReceiverInterface> RemoveAndStopReceiver(
Karl Wiberg5966c502019-02-21 23:55:09 +0100335 const RtpSenderInfo& remote_sender_info) RTC_RUN_ON(signaling_thread());
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700336
337 // May be called either by AddStream/RemoveStream, or when a track is
338 // added/removed from a stream previously added via AddStream.
Karl Wiberg5966c502019-02-21 23:55:09 +0100339 void AddAudioTrack(AudioTrackInterface* track, MediaStreamInterface* stream)
340 RTC_RUN_ON(signaling_thread());
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700341 void RemoveAudioTrack(AudioTrackInterface* track,
Karl Wiberg5966c502019-02-21 23:55:09 +0100342 MediaStreamInterface* stream)
343 RTC_RUN_ON(signaling_thread());
344 void AddVideoTrack(VideoTrackInterface* track, MediaStreamInterface* stream)
345 RTC_RUN_ON(signaling_thread());
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700346 void RemoveVideoTrack(VideoTrackInterface* track,
Karl Wiberg5966c502019-02-21 23:55:09 +0100347 MediaStreamInterface* stream)
348 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000349
Steve Antonf9381f02017-12-14 10:23:57 -0800350 // AddTrack implementation when Unified Plan is specified.
351 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackUnifiedPlan(
352 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -0800353 const std::vector<std::string>& stream_ids);
Steve Antonf9381f02017-12-14 10:23:57 -0800354 // AddTrack implementation when Plan B is specified.
355 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackPlanB(
356 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Karl Wiberg5966c502019-02-21 23:55:09 +0100357 const std::vector<std::string>& stream_ids)
358 RTC_RUN_ON(signaling_thread());
Steve Antonf9381f02017-12-14 10:23:57 -0800359
360 // Returns the first RtpTransceiver suitable for a newly added track, if such
361 // transceiver is available.
362 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
363 FindFirstTransceiverForAddedTrack(
364 rtc::scoped_refptr<MediaStreamTrackInterface> track);
365
Steve Antonf9381f02017-12-14 10:23:57 -0800366 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
367 FindTransceiverBySender(rtc::scoped_refptr<RtpSenderInterface> sender);
368
Steve Anton22da89f2018-01-25 13:58:07 -0800369 // Internal implementation for AddTransceiver family of methods. If
370 // |fire_callback| is set, fires OnRenegotiationNeeded callback if successful.
Steve Anton9158ef62017-11-27 13:01:52 -0800371 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
372 cricket::MediaType media_type,
373 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Steve Anton22da89f2018-01-25 13:58:07 -0800374 const RtpTransceiverInit& init,
Karl Wiberg744310f2019-02-14 10:18:56 +0100375 bool fire_callback = true) RTC_RUN_ON(signaling_thread());
Steve Anton9158ef62017-11-27 13:01:52 -0800376
Steve Anton02ee47c2018-01-10 16:26:06 -0800377 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
378 CreateSender(cricket::MediaType media_type,
Steve Anton111fdfd2018-06-25 13:03:36 -0700379 const std::string& id,
Steve Anton02ee47c2018-01-10 16:26:06 -0800380 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Florent Castelli892acf02018-10-01 22:47:20 +0200381 const std::vector<std::string>& stream_ids,
382 const std::vector<RtpEncodingParameters>& send_encodings);
Steve Anton02ee47c2018-01-10 16:26:06 -0800383
384 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
385 CreateReceiver(cricket::MediaType media_type, const std::string& receiver_id);
386
Steve Antonf9381f02017-12-14 10:23:57 -0800387 // Create a new RtpTransceiver of the given type and add it to the list of
388 // transceivers.
389 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Steve Anton02ee47c2018-01-10 16:26:06 -0800390 CreateAndAddTransceiver(
391 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> sender,
392 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
393 receiver);
Steve Antonf9381f02017-12-14 10:23:57 -0800394
Karl Wiberg744310f2019-02-14 10:18:56 +0100395 void SetIceConnectionState(IceConnectionState new_state)
396 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200397 void SetStandardizedIceConnectionState(
Karl Wiberg744310f2019-02-14 10:18:56 +0100398 PeerConnectionInterface::IceConnectionState new_state)
399 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200400 void SetConnectionState(
Karl Wiberg744310f2019-02-14 10:18:56 +0100401 PeerConnectionInterface::PeerConnectionState new_state)
402 RTC_RUN_ON(signaling_thread());
Jonas Olsson635474e2018-10-18 15:58:17 +0200403
Steve Antonba818672017-11-06 10:21:57 -0800404 // Called any time the IceGatheringState changes
Karl Wiberg744310f2019-02-14 10:18:56 +0100405 void OnIceGatheringChange(IceGatheringState new_state)
406 RTC_RUN_ON(signaling_thread());
Steve Antonba818672017-11-06 10:21:57 -0800407 // New ICE candidate has been gathered.
Karl Wiberg744310f2019-02-14 10:18:56 +0100408 void OnIceCandidate(std::unique_ptr<IceCandidateInterface> candidate)
409 RTC_RUN_ON(signaling_thread());
Steve Antonba818672017-11-06 10:21:57 -0800410 // Some local ICE candidates have been removed.
Karl Wiberg744310f2019-02-14 10:18:56 +0100411 void OnIceCandidatesRemoved(const std::vector<cricket::Candidate>& candidates)
412 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000413
Steve Antonba818672017-11-06 10:21:57 -0800414 // Update the state, signaling if necessary.
Karl Wiberg744310f2019-02-14 10:18:56 +0100415 void ChangeSignalingState(SignalingState signaling_state)
416 RTC_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000417
deadbeefeb459812015-12-15 19:24:43 -0800418 // Signals from MediaStreamObserver.
419 void OnAudioTrackAdded(AudioTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100420 MediaStreamInterface* stream)
421 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800422 void OnAudioTrackRemoved(AudioTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100423 MediaStreamInterface* stream)
424 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800425 void OnVideoTrackAdded(VideoTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100426 MediaStreamInterface* stream)
427 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800428 void OnVideoTrackRemoved(VideoTrackInterface* track,
Karl Wiberg744310f2019-02-14 10:18:56 +0100429 MediaStreamInterface* stream)
430 RTC_RUN_ON(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -0800431
Henrik Boström31638672017-11-23 17:48:32 +0100432 void PostSetSessionDescriptionSuccess(
433 SetSessionDescriptionObserver* observer);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000434 void PostSetSessionDescriptionFailure(SetSessionDescriptionObserver* observer,
Steve Antonad182762018-09-05 20:22:40 +0000435 RTCError&& error);
deadbeefab9b2d12015-10-14 11:33:11 -0700436 void PostCreateSessionDescriptionFailure(
437 CreateSessionDescriptionObserver* observer,
Harald Alvestrand5081c0c2018-03-09 15:18:03 +0100438 RTCError error);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000439
Steve Anton8a006912017-12-04 15:25:56 -0800440 // Synchronous implementations of SetLocalDescription/SetRemoteDescription
441 // that return an RTCError instead of invoking a callback.
442 RTCError ApplyLocalDescription(
443 std::unique_ptr<SessionDescriptionInterface> desc);
444 RTCError ApplyRemoteDescription(
445 std::unique_ptr<SessionDescriptionInterface> desc);
446
Steve Antondcc3c022017-12-22 16:02:54 -0800447 // Updates the local RtpTransceivers according to the JSEP rules. Called as
448 // part of setting the local/remote description.
449 RTCError UpdateTransceiversAndDataChannels(
450 cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800451 const SessionDescriptionInterface& new_session,
452 const SessionDescriptionInterface* old_local_description,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100453 const SessionDescriptionInterface* old_remote_description)
454 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800455
456 // Either creates or destroys the transceiver's BaseChannel according to the
457 // given media section.
458 RTCError UpdateTransceiverChannel(
459 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
460 transceiver,
461 const cricket::ContentInfo& content,
Karl Wiberg5966c502019-02-21 23:55:09 +0100462 const cricket::ContentGroup* bundle_group) RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800463
Steve Antonfa2260d2017-12-28 16:38:23 -0800464 // Either creates or destroys the local data channel according to the given
465 // media section.
466 RTCError UpdateDataChannel(cricket::ContentSource source,
467 const cricket::ContentInfo& content,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100468 const cricket::ContentGroup* bundle_group)
469 RTC_RUN_ON(signaling_thread());
Steve Antonfa2260d2017-12-28 16:38:23 -0800470
Steve Antondcc3c022017-12-22 16:02:54 -0800471 // Associate the given transceiver according to the JSEP rules.
472 RTCErrorOr<
473 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
474 AssociateTransceiver(cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800475 SdpType type,
Steve Antondcc3c022017-12-22 16:02:54 -0800476 size_t mline_index,
477 const cricket::ContentInfo& content,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800478 const cricket::ContentInfo* old_local_content,
Karl Wiberg5966c502019-02-21 23:55:09 +0100479 const cricket::ContentInfo* old_remote_content)
480 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800481
482 // Returns the RtpTransceiver, if found, that is associated to the given MID.
483 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100484 GetAssociatedTransceiver(const std::string& mid) const
485 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800486
487 // Returns the RtpTransceiver, if found, that was assigned to the given mline
488 // index in CreateOffer.
489 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100490 GetTransceiverByMLineIndex(size_t mline_index) const
491 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800492
493 // Returns an RtpTransciever, if available, that can be used to receive the
494 // given media type according to JSEP rules.
495 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Karl Wiberg5966c502019-02-21 23:55:09 +0100496 FindAvailableTransceiverToReceive(cricket::MediaType media_type) const
497 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800498
Steve Antoned10bd92017-12-05 10:52:59 -0800499 // Returns the media section in the given session description that is
500 // associated with the RtpTransceiver. Returns null if none found or this
501 // RtpTransceiver is not associated. Logic varies depending on the
502 // SdpSemantics specified in the configuration.
503 const cricket::ContentInfo* FindMediaSectionForTransceiver(
504 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
505 transceiver,
Karl Wiberg5966c502019-02-21 23:55:09 +0100506 const SessionDescriptionInterface* sdesc) const
507 RTC_RUN_ON(signaling_thread());
Steve Antoned10bd92017-12-05 10:52:59 -0800508
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100509 // Runs the algorithm **set the associated remote streams** specified in
510 // https://w3c.github.io/webrtc-pc/#set-associated-remote-streams.
511 void SetAssociatedRemoteStreams(
512 rtc::scoped_refptr<RtpReceiverInternal> receiver,
513 const std::vector<std::string>& stream_ids,
514 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* added_streams,
Karl Wiberg1e1e1022019-03-22 14:27:22 +0100515 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams)
516 RTC_RUN_ON(signaling_thread());
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100517
Steve Anton0f5400a2018-07-17 14:25:36 -0700518 // Runs the algorithm **process the removal of a remote track** specified in
519 // the WebRTC specification.
520 // This method will update the following lists:
521 // |remove_list| is the list of transceivers for which the receiving track is
522 // being removed.
523 // |removed_streams| is the list of streams which no longer have a receiving
524 // track so should be removed.
525 // https://w3c.github.io/webrtc-pc/#process-remote-track-removal
526 void ProcessRemovalOfRemoteTrack(
527 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
528 transceiver,
529 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>>* remove_list,
Karl Wiberg1e1e1022019-03-22 14:27:22 +0100530 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams)
531 RTC_RUN_ON(signaling_thread());
Steve Anton0f5400a2018-07-17 14:25:36 -0700532
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100533 void RemoveRemoteStreamsIfEmpty(
534 const std::vector<rtc::scoped_refptr<MediaStreamInterface>>&
535 remote_streams,
Karl Wiberg1e1e1022019-03-22 14:27:22 +0100536 std::vector<rtc::scoped_refptr<MediaStreamInterface>>* removed_streams)
537 RTC_RUN_ON(signaling_thread());
Henrik Boströmafa07dd2018-12-20 11:06:02 +0100538
Steve Anton52d86772018-02-20 15:48:12 -0800539 void OnNegotiationNeeded();
540
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000541 bool IsClosed() const {
Karl Wiberg8d2e2282019-02-17 13:00:07 +0100542 RTC_DCHECK_RUN_ON(signaling_thread());
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000543 return signaling_state_ == PeerConnectionInterface::kClosed;
544 }
545
deadbeefab9b2d12015-10-14 11:33:11 -0700546 // Returns a MediaSessionOptions struct with options decided by |options|,
547 // the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800548 void GetOptionsForOffer(const PeerConnectionInterface::RTCOfferAnswerOptions&
549 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100550 cricket::MediaSessionOptions* session_options)
551 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800552 void GetOptionsForPlanBOffer(
553 const PeerConnectionInterface::RTCOfferAnswerOptions&
554 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100555 cricket::MediaSessionOptions* session_options)
556 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800557 void GetOptionsForUnifiedPlanOffer(
558 const PeerConnectionInterface::RTCOfferAnswerOptions&
559 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100560 cricket::MediaSessionOptions* session_options)
561 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700562
Karl Wiberg5966c502019-02-21 23:55:09 +0100563 RTCError HandleLegacyOfferOptions(const RTCOfferAnswerOptions& options)
564 RTC_RUN_ON(signaling_thread());
Steve Anton22da89f2018-01-25 13:58:07 -0800565 void RemoveRecvDirectionFromReceivingTransceiversOfType(
566 cricket::MediaType media_type);
567 void AddUpToOneReceivingTransceiverOfType(cricket::MediaType media_type);
568 std::vector<
569 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
570 GetReceivingTransceiversOfType(cricket::MediaType media_type);
571
deadbeefab9b2d12015-10-14 11:33:11 -0700572 // Returns a MediaSessionOptions struct with options decided by
573 // |constraints|, the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800574 void GetOptionsForAnswer(const RTCOfferAnswerOptions& offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100575 cricket::MediaSessionOptions* session_options)
576 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800577 void GetOptionsForPlanBAnswer(
578 const PeerConnectionInterface::RTCOfferAnswerOptions&
579 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100580 cricket::MediaSessionOptions* session_options)
581 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800582 void GetOptionsForUnifiedPlanAnswer(
583 const PeerConnectionInterface::RTCOfferAnswerOptions&
584 offer_answer_options,
Karl Wiberg5966c502019-02-21 23:55:09 +0100585 cricket::MediaSessionOptions* session_options)
586 RTC_RUN_ON(signaling_thread());
htaa2a49d92016-03-04 02:51:39 -0800587
zhihuang1c378ed2017-08-17 14:10:50 -0700588 // Generates MediaDescriptionOptions for the |session_opts| based on existing
589 // local description or remote description.
590 void GenerateMediaDescriptionOptions(
591 const SessionDescriptionInterface* session_desc,
Steve Anton1d03a752017-11-27 14:30:09 -0800592 RtpTransceiverDirection audio_direction,
593 RtpTransceiverDirection video_direction,
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200594 absl::optional<size_t>* audio_index,
595 absl::optional<size_t>* video_index,
596 absl::optional<size_t>* data_index,
htaa2a49d92016-03-04 02:51:39 -0800597 cricket::MediaSessionOptions* session_options);
deadbeefab9b2d12015-10-14 11:33:11 -0700598
Steve Antonfa2260d2017-12-28 16:38:23 -0800599 // Generates the active MediaDescriptionOptions for the local data channel
600 // given the specified MID.
601 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForActiveData(
602 const std::string& mid) const;
603
604 // Generates the rejected MediaDescriptionOptions for the local data channel
605 // given the specified MID.
606 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForRejectedData(
607 const std::string& mid) const;
608
609 // Returns the MID for the data section associated with either the
610 // RtpDataChannel or SCTP data channel, if it has been set. If no data
611 // channels are configured this will return nullopt.
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200612 absl::optional<std::string> GetDataMid() const;
Steve Antonfa2260d2017-12-28 16:38:23 -0800613
Steve Anton4171afb2017-11-20 10:20:22 -0800614 // Remove all local and remote senders of type |media_type|.
deadbeeffaac4972015-11-12 15:33:07 -0800615 // Called when a media type is rejected (m-line set to port 0).
Karl Wiberg744310f2019-02-14 10:18:56 +0100616 void RemoveSenders(cricket::MediaType media_type)
617 RTC_RUN_ON(signaling_thread());
deadbeeffaac4972015-11-12 15:33:07 -0800618
deadbeefbda7e0b2015-12-08 17:13:40 -0800619 // Makes sure a MediaStreamTrack is created for each StreamParam in |streams|,
620 // and existing MediaStreamTracks are removed if there is no corresponding
621 // StreamParam. If |default_track_needed| is true, a default MediaStreamTrack
622 // is created if it doesn't exist; if false, it's removed if it exists.
623 // |media_type| is the type of the |streams| and can be either audio or video.
deadbeefab9b2d12015-10-14 11:33:11 -0700624 // If a new MediaStream is created it is added to |new_streams|.
Steve Anton4171afb2017-11-20 10:20:22 -0800625 void UpdateRemoteSendersList(
deadbeefab9b2d12015-10-14 11:33:11 -0700626 const std::vector<cricket::StreamParams>& streams,
deadbeefbda7e0b2015-12-08 17:13:40 -0800627 bool default_track_needed,
deadbeefab9b2d12015-10-14 11:33:11 -0700628 cricket::MediaType media_type,
Karl Wiberg744310f2019-02-14 10:18:56 +0100629 StreamCollection* new_streams) RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700630
Steve Anton4171afb2017-11-20 10:20:22 -0800631 // Triggered when a remote sender has been seen for the first time in a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700632 // session description. It creates a remote MediaStreamTrackInterface
633 // implementation and triggers CreateAudioReceiver or CreateVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800634 void OnRemoteSenderAdded(const RtpSenderInfo& sender_info,
Karl Wiberg744310f2019-02-14 10:18:56 +0100635 cricket::MediaType media_type)
636 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700637
Steve Anton4171afb2017-11-20 10:20:22 -0800638 // Triggered when a remote sender has been removed from a remote session
639 // description. It removes the remote sender with id |sender_id| from a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700640 // MediaStream and triggers DestroyAudioReceiver or DestroyVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800641 void OnRemoteSenderRemoved(const RtpSenderInfo& sender_info,
Karl Wiberg744310f2019-02-14 10:18:56 +0100642 cricket::MediaType media_type)
643 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700644
645 // Finds remote MediaStreams without any tracks and removes them from
646 // |remote_streams_| and notifies the observer that the MediaStreams no longer
647 // exist.
Karl Wiberg744310f2019-02-14 10:18:56 +0100648 void UpdateEndedRemoteMediaStreams() RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700649
deadbeefab9b2d12015-10-14 11:33:11 -0700650 // Loops through the vector of |streams| and finds added and removed
651 // StreamParams since last time this method was called.
Steve Anton4171afb2017-11-20 10:20:22 -0800652 // For each new or removed StreamParam, OnLocalSenderSeen or
653 // OnLocalSenderRemoved is invoked.
654 void UpdateLocalSenders(const std::vector<cricket::StreamParams>& streams,
Karl Wiberg5966c502019-02-21 23:55:09 +0100655 cricket::MediaType media_type)
656 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700657
Steve Anton4171afb2017-11-20 10:20:22 -0800658 // Triggered when a local sender has been seen for the first time in a local
deadbeefab9b2d12015-10-14 11:33:11 -0700659 // session description.
660 // This method triggers CreateAudioSender or CreateVideoSender if the rtp
661 // streams in the local SessionDescription can be mapped to a MediaStreamTrack
662 // in a MediaStream in |local_streams_|
Steve Anton4171afb2017-11-20 10:20:22 -0800663 void OnLocalSenderAdded(const RtpSenderInfo& sender_info,
Karl Wiberg5966c502019-02-21 23:55:09 +0100664 cricket::MediaType media_type)
665 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700666
Steve Anton4171afb2017-11-20 10:20:22 -0800667 // Triggered when a local sender has been removed from a local session
deadbeefab9b2d12015-10-14 11:33:11 -0700668 // description.
669 // This method triggers DestroyAudioSender or DestroyVideoSender if a stream
670 // has been removed from the local SessionDescription and the stream can be
671 // mapped to a MediaStreamTrack in a MediaStream in |local_streams_|.
Steve Anton4171afb2017-11-20 10:20:22 -0800672 void OnLocalSenderRemoved(const RtpSenderInfo& sender_info,
673 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700674
675 void UpdateLocalRtpDataChannels(const cricket::StreamParamsVec& streams);
Karl Wiberg106d92d2019-02-14 10:17:47 +0100676 void UpdateRemoteRtpDataChannels(const cricket::StreamParamsVec& streams)
677 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700678 void UpdateClosingRtpDataChannels(
679 const std::vector<std::string>& active_channels,
680 bool is_local_update);
681 void CreateRemoteRtpDataChannel(const std::string& label,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100682 uint32_t remote_ssrc)
683 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700684
685 // Creates channel and adds it to the collection of DataChannels that will
686 // be offered in a SessionDescription.
687 rtc::scoped_refptr<DataChannel> InternalCreateDataChannel(
688 const std::string& label,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100689 const InternalDataChannelInit* config) RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700690
691 // Checks if any data channel has been added.
692 bool HasDataChannels() const;
693
694 void AllocateSctpSids(rtc::SSLRole role);
695 void OnSctpDataChannelClosed(DataChannel* channel);
696
deadbeefab9b2d12015-10-14 11:33:11 -0700697 void OnDataChannelDestroyed();
Steve Antonba818672017-11-06 10:21:57 -0800698 // Called when a valid data channel OPEN message is received.
deadbeefab9b2d12015-10-14 11:33:11 -0700699 void OnDataChannelOpenMessage(const std::string& label,
Karl Wiberg106d92d2019-02-14 10:17:47 +0100700 const InternalDataChannelInit& config)
701 RTC_RUN_ON(signaling_thread());
702
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800703 // Parses and handles open messages. Returns true if the message is an open
704 // message, false otherwise.
705 bool HandleOpenMessage_s(const cricket::ReceiveDataParams& params,
706 const rtc::CopyOnWriteBuffer& buffer)
707 RTC_RUN_ON(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -0700708
Steve Anton4171afb2017-11-20 10:20:22 -0800709 // Returns true if the PeerConnection is configured to use Unified Plan
710 // semantics for creating offers/answers and setting local/remote
711 // descriptions. If this is true the RtpTransceiver API will also be available
712 // to the user. If this is false, Plan B semantics are assumed.
Steve Anton79e79602017-11-20 10:25:56 -0800713 // TODO(bugs.webrtc.org/8530): Flip the default to be Unified Plan once
714 // sufficient time has passed.
Karl Wiberg5966c502019-02-21 23:55:09 +0100715 bool IsUnifiedPlan() const RTC_RUN_ON(signaling_thread()) {
Steve Anton79e79602017-11-20 10:25:56 -0800716 return configuration_.sdp_semantics == SdpSemantics::kUnifiedPlan;
717 }
Steve Anton4171afb2017-11-20 10:20:22 -0800718
Steve Anton06817cd2018-12-18 15:55:30 -0800719 // The offer/answer machinery assumes the media section MID is present and
720 // unique. To support legacy end points that do not supply a=mid lines, this
721 // method will modify the session description to add MIDs generated according
722 // to the SDP semantics.
Karl Wiberg5966c502019-02-21 23:55:09 +0100723 void FillInMissingRemoteMids(cricket::SessionDescription* remote_description)
724 RTC_RUN_ON(signaling_thread());
Steve Anton06817cd2018-12-18 15:55:30 -0800725
Steve Anton4171afb2017-11-20 10:20:22 -0800726 // Is there an RtpSender of the given type?
Karl Wiberg5966c502019-02-21 23:55:09 +0100727 bool HasRtpSender(cricket::MediaType type) const
728 RTC_RUN_ON(signaling_thread());
deadbeeffac06552015-11-25 11:26:01 -0800729
Steve Anton4171afb2017-11-20 10:20:22 -0800730 // Return the RtpSender with the given track attached.
731 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
732 FindSenderForTrack(MediaStreamTrackInterface* track) const;
deadbeef70ab1a12015-09-28 16:53:55 -0700733
Steve Anton4171afb2017-11-20 10:20:22 -0800734 // Return the RtpSender with the given id, or null if none exists.
735 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
736 FindSenderById(const std::string& sender_id) const;
737
738 // Return the RtpReceiver with the given id, or null if none exists.
739 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
740 FindReceiverById(const std::string& receiver_id) const;
741
742 std::vector<RtpSenderInfo>* GetRemoteSenderInfos(
743 cricket::MediaType media_type);
744 std::vector<RtpSenderInfo>* GetLocalSenderInfos(
745 cricket::MediaType media_type);
746 const RtpSenderInfo* FindSenderInfo(const std::vector<RtpSenderInfo>& infos,
Emircan Uysalerbc609ea2018-03-27 21:57:18 +0000747 const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -0800748 const std::string sender_id) const;
deadbeefab9b2d12015-10-14 11:33:11 -0700749
750 // Returns the specified SCTP DataChannel in sctp_data_channels_,
751 // or nullptr if not found.
752 DataChannel* FindDataChannelBySid(int sid) const;
753
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700754 // Called when first configuring the port allocator.
Karl Wibergfb3be392019-03-22 14:13:22 +0100755 struct InitializePortAllocatorResult {
756 bool enable_ipv6;
757 };
758 InitializePortAllocatorResult InitializePortAllocator_n(
Harald Alvestrandb2a74782018-06-28 13:54:07 +0200759 const cricket::ServerAddresses& stun_servers,
760 const std::vector<cricket::RelayServerConfig>& turn_servers,
761 const RTCConfiguration& configuration);
deadbeef293e9262017-01-11 12:28:30 -0800762 // Called when SetConfiguration is called to apply the supported subset
763 // of the configuration on the network thread.
764 bool ReconfigurePortAllocator_n(
765 const cricket::ServerAddresses& stun_servers,
766 const std::vector<cricket::RelayServerConfig>& turn_servers,
767 IceTransportsType type,
768 int candidate_pool_size,
Jonas Orelandbdcee282017-10-10 14:01:40 +0200769 bool prune_turn_ports,
Qingsi Wangdb53f8e2018-02-20 14:45:49 -0800770 webrtc::TurnCustomizer* turn_customizer,
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200771 absl::optional<int> stun_candidate_keepalive_interval);
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700772
Elad Alon99c3fe52017-10-13 16:29:40 +0200773 // Starts output of an RTC event log to the given output object.
ivoc14d5dbe2016-07-04 07:06:55 -0700774 // This function should only be called from the worker thread.
Bjorn Tereliusde939432017-11-20 17:38:14 +0100775 bool StartRtcEventLog_w(std::unique_ptr<RtcEventLogOutput> output,
776 int64_t output_period_ms);
Elad Alon99c3fe52017-10-13 16:29:40 +0200777
Elad Alonacb24172017-10-06 14:32:13 +0200778 // Stops recording an RTC event log.
ivoc14d5dbe2016-07-04 07:06:55 -0700779 // This function should only be called from the worker thread.
780 void StopRtcEventLog_w();
781
Steve Anton038834f2017-07-14 15:59:59 -0700782 // Ensures the configuration doesn't have any parameters with invalid values,
783 // or values that conflict with other parameters.
784 //
785 // Returns RTCError::OK() if there are no issues.
786 RTCError ValidateConfiguration(const RTCConfiguration& config) const;
787
Steve Antonba818672017-11-06 10:21:57 -0800788 cricket::ChannelManager* channel_manager() const;
Steve Antonba818672017-11-06 10:21:57 -0800789
Steve Antonf8470812017-12-04 10:46:21 -0800790 enum class SessionError {
791 kNone, // No error.
792 kContent, // Error in BaseChannel SetLocalContent/SetRemoteContent.
793 kTransport, // Error from the underlying transport.
794 };
795
Steve Anton75737c02017-11-06 10:37:17 -0800796 // Returns the last error in the session. See the enum above for details.
Steve Antonf8470812017-12-04 10:46:21 -0800797 SessionError session_error() const { return session_error_; }
798 const std::string& session_error_desc() const { return session_error_desc_; }
Steve Anton75737c02017-11-06 10:37:17 -0800799
Amit Hilbuchdd9390c2018-11-13 16:26:05 -0800800 cricket::ChannelInterface* GetChannel(const std::string& content_name);
Steve Anton75737c02017-11-06 10:37:17 -0800801
802 // Get current SSL role used by SCTP's underlying transport.
803 bool GetSctpSslRole(rtc::SSLRole* role);
804
Steve Anton75737c02017-11-06 10:37:17 -0800805 cricket::IceConfig ParseIceConfig(
806 const PeerConnectionInterface::RTCConfiguration& config) const;
807
Steve Anton75737c02017-11-06 10:37:17 -0800808 // Implements DataChannelProviderInterface.
809 bool SendData(const cricket::SendDataParams& params,
810 const rtc::CopyOnWriteBuffer& payload,
811 cricket::SendDataResult* result) override;
812 bool ConnectDataChannel(DataChannel* webrtc_data_channel) override;
813 void DisconnectDataChannel(DataChannel* webrtc_data_channel) override;
814 void AddSctpDataStream(int sid) override;
815 void RemoveSctpDataStream(int sid) override;
816 bool ReadyToSendData() const override;
817
818 cricket::DataChannelType data_channel_type() const;
819
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800820 // Implements DataChannelSink.
821 void OnDataReceived(int channel_id,
822 DataMessageType type,
823 const rtc::CopyOnWriteBuffer& buffer) override;
824 void OnChannelClosing(int channel_id) override;
825 void OnChannelClosed(int channel_id) override;
826
Steve Anton75737c02017-11-06 10:37:17 -0800827 // Called when an RTCCertificate is generated or retrieved by
828 // WebRTCSessionDescriptionFactory. Should happen before setLocalDescription.
829 void OnCertificateReady(
830 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate);
831 void OnDtlsSrtpSetupFailure(cricket::BaseChannel*, bool rtcp);
832
Steve Anton75737c02017-11-06 10:37:17 -0800833 // Non-const versions of local_description()/remote_description(), for use
834 // internally.
835 SessionDescriptionInterface* mutable_local_description() {
836 return pending_local_description_ ? pending_local_description_.get()
837 : current_local_description_.get();
838 }
839 SessionDescriptionInterface* mutable_remote_description() {
840 return pending_remote_description_ ? pending_remote_description_.get()
841 : current_remote_description_.get();
842 }
843
844 // Updates the error state, signaling if necessary.
Steve Antonf8470812017-12-04 10:46:21 -0800845 void SetSessionError(SessionError error, const std::string& error_desc);
Steve Anton75737c02017-11-06 10:37:17 -0800846
Zhi Huange830e682018-03-30 10:48:35 -0700847 RTCError UpdateSessionState(SdpType type,
848 cricket::ContentSource source,
849 const cricket::SessionDescription* description);
Steve Anton75737c02017-11-06 10:37:17 -0800850 // Push the media parts of the local or remote session description
851 // down to all of the channels.
Karl Wiberg5966c502019-02-21 23:55:09 +0100852 RTCError PushdownMediaDescription(SdpType type, cricket::ContentSource source)
853 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800854 bool PushdownSctpParameters_n(cricket::ContentSource source);
855
Steve Anton8a006912017-12-04 15:25:56 -0800856 RTCError PushdownTransportDescription(cricket::ContentSource source,
Steve Anton3828c062017-12-06 10:34:51 -0800857 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800858
859 // Returns true and the TransportInfo of the given |content_name|
860 // from |description|. Returns false if it's not available.
861 static bool GetTransportDescription(
862 const cricket::SessionDescription* description,
863 const std::string& content_name,
864 cricket::TransportDescription* info);
865
Steve Anton75737c02017-11-06 10:37:17 -0800866 // Enables media channels to allow sending of media.
Steve Antoned10bd92017-12-05 10:52:59 -0800867 // This enables media to flow on all configured audio/video channels and the
868 // RtpDataChannel.
869 void EnableSending();
Steve Anton3fe1b152017-12-12 10:20:08 -0800870
Steve Anton8af21862017-12-15 11:20:13 -0800871 // Destroys all BaseChannels and destroys the SCTP data channel, if present.
872 void DestroyAllChannels();
Steve Anton3fe1b152017-12-12 10:20:08 -0800873
Steve Anton75737c02017-11-06 10:37:17 -0800874 // Returns the media index for a local ice candidate given the content name.
875 // Returns false if the local session description does not have a media
876 // content called |content_name|.
877 bool GetLocalCandidateMediaIndex(const std::string& content_name,
878 int* sdp_mline_index);
879 // Uses all remote candidates in |remote_desc| in this session.
880 bool UseCandidatesInSessionDescription(
Karl Wiberg744310f2019-02-14 10:18:56 +0100881 const SessionDescriptionInterface* remote_desc)
882 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800883 // Uses |candidate| in this session.
Karl Wiberg744310f2019-02-14 10:18:56 +0100884 bool UseCandidate(const IceCandidateInterface* candidate)
885 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800886 // Deletes the corresponding channel of contents that don't exist in |desc|.
887 // |desc| can be null. This means that all channels are deleted.
Karl Wiberg5966c502019-02-21 23:55:09 +0100888 void RemoveUnusedChannels(const cricket::SessionDescription* desc)
889 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800890
891 // Allocates media channels based on the |desc|. If |desc| doesn't have
892 // the BUNDLE option, this method will disable BUNDLE in PortAllocator.
893 // This method will also delete any existing media channels before creating.
Karl Wiberg5966c502019-02-21 23:55:09 +0100894 RTCError CreateChannels(const cricket::SessionDescription& desc)
895 RTC_RUN_ON(signaling_thread());
Steve Antondcc3c022017-12-22 16:02:54 -0800896
897 // If the BUNDLE policy is max-bundle, then we know for sure that all
898 // transports will be bundled from the start. This method returns the BUNDLE
899 // group if that's the case, or null if BUNDLE will be negotiated later. An
900 // error is returned if max-bundle is specified but the session description
901 // does not have a BUNDLE group.
902 RTCErrorOr<const cricket::ContentGroup*> GetEarlyBundleGroup(
Karl Wiberg5966c502019-02-21 23:55:09 +0100903 const cricket::SessionDescription& desc) const
904 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800905
906 // Helper methods to create media channels.
Karl Wiberg5966c502019-02-21 23:55:09 +0100907 cricket::VoiceChannel* CreateVoiceChannel(const std::string& mid)
908 RTC_RUN_ON(signaling_thread());
909 cricket::VideoChannel* CreateVideoChannel(const std::string& mid)
910 RTC_RUN_ON(signaling_thread());
911 bool CreateDataChannel(const std::string& mid) RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800912
Zhi Huange830e682018-03-30 10:48:35 -0700913 bool CreateSctpTransport_n(const std::string& mid);
Steve Anton75737c02017-11-06 10:37:17 -0800914 // For bundling.
Steve Anton75737c02017-11-06 10:37:17 -0800915 void DestroySctpTransport_n();
916 // SctpTransport signal handlers. Needed to marshal signals from the network
917 // to signaling thread.
918 void OnSctpTransportReadyToSendData_n();
919 // This may be called with "false" if the direction of the m= section causes
920 // us to tear down the SCTP connection.
921 void OnSctpTransportReadyToSendData_s(bool ready);
922 void OnSctpTransportDataReceived_n(const cricket::ReceiveDataParams& params,
923 const rtc::CopyOnWriteBuffer& payload);
924 // Beyond just firing the signal to the signaling thread, listens to SCTP
925 // CONTROL messages on unused SIDs and processes them as OPEN messages.
926 void OnSctpTransportDataReceived_s(const cricket::ReceiveDataParams& params,
927 const rtc::CopyOnWriteBuffer& payload);
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700928 void OnSctpClosingProcedureStartedRemotely_n(int sid);
929 void OnSctpClosingProcedureComplete_n(int sid);
Steve Anton75737c02017-11-06 10:37:17 -0800930
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800931 bool SetupMediaTransportForDataChannels_n(const std::string& mid)
932 RTC_RUN_ON(network_thread());
933 void OnMediaTransportStateChanged_n() RTC_RUN_ON(network_thread());
934 void TeardownMediaTransportForDataChannels_n() RTC_RUN_ON(network_thread());
935
Steve Anton75737c02017-11-06 10:37:17 -0800936 bool ValidateBundleSettings(const cricket::SessionDescription* desc);
937 bool HasRtcpMuxEnabled(const cricket::ContentInfo* content);
938 // Below methods are helper methods which verifies SDP.
Steve Anton8a006912017-12-04 15:25:56 -0800939 RTCError ValidateSessionDescription(const SessionDescriptionInterface* sdesc,
Karl Wiberg5966c502019-02-21 23:55:09 +0100940 cricket::ContentSource source)
941 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800942
Steve Anton3828c062017-12-06 10:34:51 -0800943 // Check if a call to SetLocalDescription is acceptable with a session
944 // description of the given type.
945 bool ExpectSetLocalDescription(SdpType type);
946 // Check if a call to SetRemoteDescription is acceptable with a session
947 // description of the given type.
948 bool ExpectSetRemoteDescription(SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800949 // Verifies a=setup attribute as per RFC 5763.
950 bool ValidateDtlsSetupAttribute(const cricket::SessionDescription* desc,
Steve Anton3828c062017-12-06 10:34:51 -0800951 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800952
953 // Returns true if we are ready to push down the remote candidate.
954 // |remote_desc| is the new remote description, or NULL if the current remote
955 // description should be used. Output |valid| is true if the candidate media
956 // index is valid.
957 bool ReadyToUseRemoteCandidate(const IceCandidateInterface* candidate,
958 const SessionDescriptionInterface* remote_desc,
959 bool* valid);
960
961 // Returns true if SRTP (either using DTLS-SRTP or SDES) is required by
962 // this session.
963 bool SrtpRequired() const;
964
Zhi Huange830e682018-03-30 10:48:35 -0700965 // JsepTransportController signal handlers.
Karl Wiberg744310f2019-02-14 10:18:56 +0100966 void OnTransportControllerConnectionState(cricket::IceConnectionState state)
967 RTC_RUN_ON(signaling_thread());
968 void OnTransportControllerGatheringState(cricket::IceGatheringState state)
969 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800970 void OnTransportControllerCandidatesGathered(
971 const std::string& transport_name,
Karl Wiberg744310f2019-02-14 10:18:56 +0100972 const std::vector<cricket::Candidate>& candidates)
973 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800974 void OnTransportControllerCandidatesRemoved(
Karl Wiberg744310f2019-02-14 10:18:56 +0100975 const std::vector<cricket::Candidate>& candidates)
976 RTC_RUN_ON(signaling_thread());
Steve Anton75737c02017-11-06 10:37:17 -0800977 void OnTransportControllerDtlsHandshakeError(rtc::SSLHandshakeError error);
978
Steve Antonf8470812017-12-04 10:46:21 -0800979 const char* SessionErrorToString(SessionError error) const;
Steve Anton75737c02017-11-06 10:37:17 -0800980 std::string GetSessionErrorMsg();
981
Steve Anton8e20f172018-03-06 10:55:04 -0800982 // Report the UMA metric SdpFormatReceived for the given remote offer.
983 void ReportSdpFormatReceived(const SessionDescriptionInterface& remote_offer);
984
Steve Anton0ffaaa22018-02-23 10:31:30 -0800985 // Report inferred negotiated SDP semantics from a local/remote answer to the
986 // UMA observer.
987 void ReportNegotiatedSdpSemantics(const SessionDescriptionInterface& answer);
988
Steve Anton75737c02017-11-06 10:37:17 -0800989 // Invoked when TransportController connection completion is signaled.
990 // Reports stats for all transports in use.
991 void ReportTransportStats();
992
993 // Gather the usage of IPv4/IPv6 as best connection.
994 void ReportBestConnectionState(const cricket::TransportStats& stats);
995
Steve Antonc7b964c2018-02-01 14:39:45 -0800996 void ReportNegotiatedCiphers(const cricket::TransportStats& stats,
997 const std::set<cricket::MediaType>& media_types);
Steve Anton75737c02017-11-06 10:37:17 -0800998
Harald Alvestrand8ebba742018-05-31 14:00:34 +0200999 void NoteUsageEvent(UsageEvent event);
Karl Wiberg744310f2019-02-14 10:18:56 +01001000 void ReportUsagePattern() const RTC_RUN_ON(signaling_thread());
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001001
Steve Anton75737c02017-11-06 10:37:17 -08001002 void OnSentPacket_w(const rtc::SentPacket& sent_packet);
1003
1004 const std::string GetTransportName(const std::string& content_name);
1005
Steve Anton6fec8802017-12-04 10:37:29 -08001006 // Destroys and clears the BaseChannel associated with the given transceiver,
1007 // if such channel is set.
1008 void DestroyTransceiverChannel(
1009 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
1010 transceiver);
1011
1012 // Destroys the RTP data channel and/or the SCTP data channel and clears it.
Steve Anton75737c02017-11-06 10:37:17 -08001013 void DestroyDataChannel();
1014
Amit Hilbuchdd9390c2018-11-13 16:26:05 -08001015 // Destroys the given ChannelInterface.
1016 // The channel cannot be accessed after this method is called.
1017 void DestroyChannelInterface(cricket::ChannelInterface* channel);
Steve Anton6fec8802017-12-04 10:37:29 -08001018
Zhi Huang365381f2018-04-13 16:44:34 -07001019 // JsepTransportController::Observer override.
Taylor Brandstettercbaa2542018-04-16 16:42:14 -07001020 //
1021 // Called by |transport_controller_| when processing transport information
1022 // from a session description, and the mapping from m= sections to transports
1023 // changed (as a result of BUNDLE negotiation, or m= sections being
1024 // rejected).
Piotr (Peter) Slatalacc8e8bb2018-11-15 08:26:19 -08001025 bool OnTransportChanged(const std::string& mid,
1026 RtpTransportInternal* rtp_transport,
Harald Alvestrandc85328f2019-02-28 07:51:00 +01001027 rtc::scoped_refptr<DtlsTransport> dtls_transport,
Piotr (Peter) Slatalacc8e8bb2018-11-15 08:26:19 -08001028 MediaTransportInterface* media_transport) override;
Zhi Huange830e682018-03-30 10:48:35 -07001029
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +02001030 // Returns the observer. Will crash on CHECK if the observer is removed.
Karl Wiberg744310f2019-02-14 10:18:56 +01001031 PeerConnectionObserver* Observer() const RTC_RUN_ON(signaling_thread());
Harald Alvestrand7a1c7f72018-08-01 10:50:16 +02001032
Benjamin Wright8c27cca2018-10-25 10:16:44 -07001033 // Returns the CryptoOptions for this PeerConnection. This will always
1034 // return the RTCConfiguration.crypto_options if set and will only default
1035 // back to the PeerConnectionFactory settings if nothing was set.
Karl Wiberg5966c502019-02-21 23:55:09 +01001036 CryptoOptions GetCryptoOptions() RTC_RUN_ON(signaling_thread());
Benjamin Wright8c27cca2018-10-25 10:16:44 -07001037
Anton Sukhanov98a462c2018-10-17 13:15:42 -07001038 // Returns rtp transport, result can not be nullptr.
1039 RtpTransportInternal* GetRtpTransport(const std::string& mid) {
1040 auto rtp_transport = transport_controller_->GetRtpTransport(mid);
1041 RTC_DCHECK(rtp_transport);
1042 return rtp_transport;
1043 }
1044
1045 // Returns media transport, if PeerConnection was created with configuration
1046 // to use media transport. Otherwise returns nullptr.
Karl Wiberg5966c502019-02-21 23:55:09 +01001047 MediaTransportInterface* GetMediaTransport(const std::string& mid)
1048 RTC_RUN_ON(signaling_thread()) {
Anton Sukhanov98a462c2018-10-17 13:15:42 -07001049 auto media_transport = transport_controller_->GetMediaTransport(mid);
Bjorn Mellema9bbd862018-11-02 09:07:48 -07001050 RTC_DCHECK((configuration_.use_media_transport ||
1051 configuration_.use_media_transport_for_data_channels) ==
Piotr (Peter) Slatala97fc11f2018-10-18 12:57:59 -07001052 (media_transport != nullptr))
1053 << "configuration_.use_media_transport="
1054 << configuration_.use_media_transport
Bjorn Mellema9bbd862018-11-02 09:07:48 -07001055 << ", configuration_.use_media_transport_for_data_channels="
1056 << configuration_.use_media_transport_for_data_channels
Piotr (Peter) Slatala97fc11f2018-10-18 12:57:59 -07001057 << ", (media_transport != nullptr)=" << (media_transport != nullptr);
Anton Sukhanov98a462c2018-10-17 13:15:42 -07001058 return media_transport;
1059 }
1060
Karl Wiberg106d92d2019-02-14 10:17:47 +01001061 sigslot::signal1<DataChannel*> SignalDataChannelCreated_
1062 RTC_GUARDED_BY(signaling_thread());
Steve Anton2d8609c2018-01-23 16:38:46 -08001063
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001064 // Storing the factory as a scoped reference pointer ensures that the memory
1065 // in the PeerConnectionFactoryImpl remains available as long as the
1066 // PeerConnection is running. It is passed to PeerConnection as a raw pointer.
1067 // However, since the reference counting is done in the
deadbeefab9b2d12015-10-14 11:33:11 -07001068 // PeerConnectionFactoryInterface all instances created using the raw pointer
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001069 // will refer to the same reference count.
Karl Wiberg744310f2019-02-14 10:18:56 +01001070 const rtc::scoped_refptr<PeerConnectionFactory> factory_;
1071 PeerConnectionObserver* observer_ RTC_GUARDED_BY(signaling_thread()) =
1072 nullptr;
terelius33860252017-05-12 23:37:18 -07001073
1074 // The EventLog needs to outlive |call_| (and any other object that uses it).
Karl Wibergb03ab712019-02-14 11:59:57 +01001075 std::unique_ptr<RtcEventLog> event_log_ RTC_GUARDED_BY(worker_thread());
1076
1077 // Points to the same thing as `event_log_`. Since it's const, we may read the
1078 // pointer (but not touch the object) from any thread.
1079 RtcEventLog* const event_log_ptr_ RTC_PT_GUARDED_BY(worker_thread());
terelius33860252017-05-12 23:37:18 -07001080
Karl Wiberg8d2e2282019-02-17 13:00:07 +01001081 SignalingState signaling_state_ RTC_GUARDED_BY(signaling_thread()) = kStable;
1082 IceConnectionState ice_connection_state_ RTC_GUARDED_BY(signaling_thread()) =
1083 kIceConnectionNew;
1084 PeerConnectionInterface::IceConnectionState standardized_ice_connection_state_
1085 RTC_GUARDED_BY(signaling_thread()) = kIceConnectionNew;
1086 PeerConnectionInterface::PeerConnectionState connection_state_
1087 RTC_GUARDED_BY(signaling_thread()) = PeerConnectionState::kNew;
Jonas Olsson635474e2018-10-18 15:58:17 +02001088
Karl Wiberg8d2e2282019-02-17 13:00:07 +01001089 IceGatheringState ice_gathering_state_ RTC_GUARDED_BY(signaling_thread()) =
1090 kIceGatheringNew;
Karl Wiberg5966c502019-02-21 23:55:09 +01001091 PeerConnectionInterface::RTCConfiguration configuration_
1092 RTC_GUARDED_BY(signaling_thread());
1093
1094 // Cache configuration_.use_media_transport so that we can access it from
1095 // other threads.
1096 // TODO(bugs.webrtc.org/9987): Caching just this bool and allowing the data
1097 // it's derived from to change is not necessarily sound. Stop doing it.
1098 rtc::RaceChecker use_media_transport_race_checker_;
1099 bool use_media_transport_ RTC_GUARDED_BY(use_media_transport_race_checker_) =
1100 configuration_.use_media_transport;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001101
Zach Steine20867f2018-08-02 13:20:15 -07001102 // TODO(zstein): |async_resolver_factory_| can currently be nullptr if it
1103 // is not injected. It should be required once chromium supplies it.
Karl Wibergfb3be392019-03-22 14:13:22 +01001104 std::unique_ptr<AsyncResolverFactory> async_resolver_factory_
1105 RTC_GUARDED_BY(signaling_thread());
1106 std::unique_ptr<cricket::PortAllocator>
1107 port_allocator_; // TODO(bugs.webrtc.org/9987): Accessed on both
1108 // signaling and network thread.
1109 std::unique_ptr<rtc::SSLCertificateVerifier>
1110 tls_cert_verifier_; // TODO(bugs.webrtc.org/9987): Accessed on both
1111 // signaling and network thread.
deadbeefab9b2d12015-10-14 11:33:11 -07001112
zhihuang8f65cdf2016-05-06 18:40:30 -07001113 // One PeerConnection has only one RTCP CNAME.
1114 // https://tools.ietf.org/html/draft-ietf-rtcweb-rtp-usage-26#section-4.9
Karl Wibergfb3be392019-03-22 14:13:22 +01001115 const std::string rtcp_cname_;
zhihuang8f65cdf2016-05-06 18:40:30 -07001116
deadbeefab9b2d12015-10-14 11:33:11 -07001117 // Streams added via AddStream.
Karl Wiberg1e1e1022019-03-22 14:27:22 +01001118 const rtc::scoped_refptr<StreamCollection> local_streams_
1119 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001120 // Streams created as a result of SetRemoteDescription.
Karl Wiberg1e1e1022019-03-22 14:27:22 +01001121 const rtc::scoped_refptr<StreamCollection> remote_streams_
1122 RTC_GUARDED_BY(signaling_thread());
deadbeefab9b2d12015-10-14 11:33:11 -07001123
Karl Wiberg1e1e1022019-03-22 14:27:22 +01001124 std::vector<std::unique_ptr<MediaStreamObserver>> stream_observers_
1125 RTC_GUARDED_BY(signaling_thread());
deadbeefeb459812015-12-15 19:24:43 -08001126
Steve Anton4171afb2017-11-20 10:20:22 -08001127 // These lists store sender info seen in local/remote descriptions.
1128 std::vector<RtpSenderInfo> remote_audio_sender_infos_;
1129 std::vector<RtpSenderInfo> remote_video_sender_infos_;
1130 std::vector<RtpSenderInfo> local_audio_sender_infos_;
1131 std::vector<RtpSenderInfo> local_video_sender_infos_;
deadbeefab9b2d12015-10-14 11:33:11 -07001132
1133 SctpSidAllocator sid_allocator_;
1134 // label -> DataChannel
1135 std::map<std::string, rtc::scoped_refptr<DataChannel>> rtp_data_channels_;
1136 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_;
deadbeefbd292462015-12-14 18:15:29 -08001137 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_to_free_;
deadbeefab9b2d12015-10-14 11:33:11 -07001138
deadbeefbda7e0b2015-12-08 17:13:40 -08001139 bool remote_peer_supports_msid_ = false;
deadbeef70ab1a12015-09-28 16:53:55 -07001140
terelius33860252017-05-12 23:37:18 -07001141 std::unique_ptr<Call> call_;
terelius33860252017-05-12 23:37:18 -07001142 std::unique_ptr<StatsCollector> stats_; // A pointer is passed to senders_
1143 rtc::scoped_refptr<RTCStatsCollector> stats_collector_;
1144
deadbeefa601f5c2016-06-06 14:27:39 -07001145 std::vector<
Steve Anton4171afb2017-11-20 10:20:22 -08001146 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
1147 transceivers_;
Henrik Boström5b147782018-12-04 11:25:05 +01001148 // In Unified Plan, if we encounter remote SDP that does not contain an a=msid
1149 // line we create and use a stream with a random ID for our receivers. This is
1150 // to support legacy endpoints that do not support the a=msid attribute (as
1151 // opposed to streamless tracks with "a=msid:-").
1152 rtc::scoped_refptr<MediaStreamInterface> missing_msid_default_stream_;
Amit Hilbuchae3df542019-01-07 12:13:08 -08001153 // MIDs will be generated using this generator which will keep track of
1154 // all the MIDs that have been seen over the life of the PeerConnection.
Amit Hilbuchdbb49df2019-01-23 14:54:24 -08001155 rtc::UniqueStringGenerator mid_generator_;
Steve Anton75737c02017-11-06 10:37:17 -08001156
Steve Antonf8470812017-12-04 10:46:21 -08001157 SessionError session_error_ = SessionError::kNone;
1158 std::string session_error_desc_;
Steve Anton75737c02017-11-06 10:37:17 -08001159
1160 std::string session_id_;
Steve Anton75737c02017-11-06 10:37:17 -08001161
Zhi Huange830e682018-03-30 10:48:35 -07001162 std::unique_ptr<JsepTransportController> transport_controller_;
Steve Anton75737c02017-11-06 10:37:17 -08001163 std::unique_ptr<cricket::SctpTransportInternalFactory> sctp_factory_;
Steve Anton75737c02017-11-06 10:37:17 -08001164 // |rtp_data_channel_| is used if in RTP data channel mode, |sctp_transport_|
1165 // when using SCTP.
1166 cricket::RtpDataChannel* rtp_data_channel_ = nullptr;
1167
Harald Alvestrandc85328f2019-02-28 07:51:00 +01001168 cricket::SctpTransportInternal* cricket_sctp_transport() {
1169 return sctp_transport_->internal();
1170 }
1171 rtc::scoped_refptr<SctpTransport> sctp_transport_;
Zhi Huange830e682018-03-30 10:48:35 -07001172 // |sctp_mid_| is the content name (MID) in SDP.
Danil Chapovalov66cadcc2018-06-19 16:47:43 +02001173 absl::optional<std::string> sctp_mid_;
Steve Anton75737c02017-11-06 10:37:17 -08001174 // Value cached on signaling thread. Only updated when SctpReadyToSendData
1175 // fires on the signaling thread.
1176 bool sctp_ready_to_send_data_ = false;
1177 // Same as signals provided by SctpTransport, but these are guaranteed to
1178 // fire on the signaling thread, whereas SctpTransport fires on the networking
1179 // thread.
1180 // |sctp_invoker_| is used so that any signals queued on the signaling thread
1181 // from the network thread are immediately discarded if the SctpTransport is
1182 // destroyed (due to m= section being rejected).
1183 // TODO(deadbeef): Use a proxy object to ensure that method calls/signals
1184 // are marshalled to the right thread. Could almost use proxy.h for this,
1185 // but it doesn't have a mechanism for marshalling sigslot::signals
1186 std::unique_ptr<rtc::AsyncInvoker> sctp_invoker_;
1187 sigslot::signal1<bool> SignalSctpReadyToSendData;
1188 sigslot::signal2<const cricket::ReceiveDataParams&,
1189 const rtc::CopyOnWriteBuffer&>
1190 SignalSctpDataReceived;
Taylor Brandstettercdd05f02018-05-31 13:23:32 -07001191 sigslot::signal1<int> SignalSctpClosingProcedureStartedRemotely;
1192 sigslot::signal1<int> SignalSctpClosingProcedureComplete;
Steve Anton75737c02017-11-06 10:37:17 -08001193
Bjorn Mellem175aa2e2018-11-08 11:23:22 -08001194 // Whether this peer is the caller. Set when the local description is applied.
1195 absl::optional<bool> is_caller_ RTC_GUARDED_BY(signaling_thread());
1196
1197 // Content name (MID) for media transport data channels in SDP.
1198 absl::optional<std::string> media_transport_data_mid_;
1199
1200 // Media transport used for data channels. Thread-safe.
1201 MediaTransportInterface* media_transport_ = nullptr;
1202
1203 // Cached value of whether the media transport is ready to send.
1204 bool media_transport_ready_to_send_data_ RTC_GUARDED_BY(signaling_thread()) =
1205 false;
1206
1207 // Used to invoke media transport signals on the signaling thread.
1208 std::unique_ptr<rtc::AsyncInvoker> media_transport_invoker_;
1209
1210 // Identical to the signals for SCTP, but from media transport:
1211 sigslot::signal1<bool> SignalMediaTransportWritable_s
1212 RTC_GUARDED_BY(signaling_thread());
1213 sigslot::signal2<const cricket::ReceiveDataParams&,
1214 const rtc::CopyOnWriteBuffer&>
1215 SignalMediaTransportReceivedData_s RTC_GUARDED_BY(signaling_thread());
1216 sigslot::signal1<int> SignalMediaTransportChannelClosing_s
1217 RTC_GUARDED_BY(signaling_thread());
1218 sigslot::signal1<int> SignalMediaTransportChannelClosed_s
1219 RTC_GUARDED_BY(signaling_thread());
1220
Steve Anton75737c02017-11-06 10:37:17 -08001221 std::unique_ptr<SessionDescriptionInterface> current_local_description_;
1222 std::unique_ptr<SessionDescriptionInterface> pending_local_description_;
1223 std::unique_ptr<SessionDescriptionInterface> current_remote_description_;
1224 std::unique_ptr<SessionDescriptionInterface> pending_remote_description_;
1225 bool dtls_enabled_ = false;
1226 // Specifies which kind of data channel is allowed. This is controlled
1227 // by the chrome command-line flag and constraints:
1228 // 1. If chrome command-line switch 'enable-sctp-data-channels' is enabled,
1229 // constraint kEnableDtlsSrtp is true, and constaint kEnableRtpDataChannels is
1230 // not set or false, SCTP is allowed (DCT_SCTP);
1231 // 2. If constraint kEnableRtpDataChannels is true, RTP is allowed (DCT_RTP);
1232 // 3. If both 1&2 are false, data channel is not allowed (DCT_NONE).
1233 cricket::DataChannelType data_channel_type_ = cricket::DCT_NONE;
1234 // List of content names for which the remote side triggered an ICE restart.
1235 std::set<std::string> pending_ice_restarts_;
1236
1237 std::unique_ptr<WebRtcSessionDescriptionFactory> webrtc_session_desc_factory_;
1238
1239 // Member variables for caching global options.
1240 cricket::AudioOptions audio_options_;
1241 cricket::VideoOptions video_options_;
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001242
1243 int usage_event_accumulator_ = 0;
Harald Alvestrand19793842018-06-25 12:03:50 +02001244 bool return_histogram_very_quickly_ = false;
Amit Hilbuchbcd39d42019-01-25 17:13:56 -08001245
1246 // This object should be used to generate any SSRC that is not explicitly
1247 // specified by the user (or by the remote party).
1248 // The generator is not used directly, instead it is passed on to the
1249 // channel manager and the session description factory.
1250 rtc::UniqueRandomIdGenerator ssrc_generator_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001251};
1252
1253} // namespace webrtc
1254
Steve Anton10542f22019-01-11 09:11:00 -08001255#endif // PC_PEER_CONNECTION_H_