blob: 7d7315d4e4a4e009e036ca94bbf0fe1c9d45fe0d [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001/*
kjellanderb24317b2016-02-10 07:54:43 -08002 * Copyright 2012 The WebRTC project authors. All Rights Reserved.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003 *
kjellanderb24317b2016-02-10 07:54:43 -08004 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00009 */
10
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef PC_PEERCONNECTION_H_
12#define PC_PEERCONNECTION_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
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020020#include "api/peerconnectioninterface.h"
Jonas Orelandbdcee282017-10-10 14:01:40 +020021#include "api/turncustomizer.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020022#include "pc/iceserverparsing.h"
Zhi Huange830e682018-03-30 10:48:35 -070023#include "pc/jseptransportcontroller.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020024#include "pc/peerconnectionfactory.h"
Steve Anton2d8609c2018-01-23 16:38:46 -080025#include "pc/peerconnectioninternal.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020026#include "pc/rtcstatscollector.h"
Steve Anton4171afb2017-11-20 10:20:22 -080027#include "pc/rtptransceiver.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020028#include "pc/statscollector.h"
29#include "pc/streamcollection.h"
Steve Anton75737c02017-11-06 10:37:17 -080030#include "pc/webrtcsessiondescriptionfactory.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000031
32namespace webrtc {
henrike@webrtc.org28e20752013-07-10 00:45:36 +000033
deadbeefeb459812015-12-15 19:24:43 -080034class MediaStreamObserver;
perkjf0dcfe22016-03-10 18:32:00 +010035class VideoRtpReceiver;
skvlad11a9cbf2016-10-07 11:53:05 -070036class RtcEventLog;
deadbeefab9b2d12015-10-14 11:33:11 -070037
Steve Anton75737c02017-11-06 10:37:17 -080038// PeerConnection is the implementation of the PeerConnection object as defined
39// by the PeerConnectionInterface API surface.
40// The class currently is solely responsible for the following:
41// - Managing the session state machine (signaling state).
42// - Creating and initializing lower-level objects, like PortAllocator and
43// BaseChannels.
44// - Owning and managing the life cycle of the RtpSender/RtpReceiver and track
45// objects.
46// - Tracking the current and pending local/remote session descriptions.
47// The class currently is jointly responsible for the following:
48// - Parsing and interpreting SDP.
49// - Generating offers and answers based on the current state.
50// - The ICE state machine.
51// - Generating stats.
Steve Anton2d8609c2018-01-23 16:38:46 -080052class PeerConnection : public PeerConnectionInternal,
Steve Anton75737c02017-11-06 10:37:17 -080053 public DataChannelProviderInterface,
Zhi Huang365381f2018-04-13 16:44:34 -070054 public JsepTransportController::Observer,
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +000055 public rtc::MessageHandler,
henrike@webrtc.org28e20752013-07-10 00:45:36 +000056 public sigslot::has_slots<> {
57 public:
Harald Alvestrand8ebba742018-05-31 14:00:34 +020058 enum class UsageEvent : int {
59 TURN_SERVER_ADDED = 0x01,
60 STUN_SERVER_ADDED = 0x02,
61 DATA_ADDED = 0x04,
62 AUDIO_ADDED = 0x08,
63 VIDEO_ADDED = 0x10,
64 SET_LOCAL_DESCRIPTION_CALLED = 0x20,
65 SET_REMOTE_DESCRIPTION_CALLED = 0x40,
66 CANDIDATE_COLLECTED = 0x80,
67 REMOTE_CANDIDATE_ADDED = 0x100,
68 ICE_STATE_CONNECTED = 0x200,
69 CLOSE_CALLED = 0x400
70 };
71
zhihuang38ede132017-06-15 12:52:32 -070072 explicit PeerConnection(PeerConnectionFactory* factory,
73 std::unique_ptr<RtcEventLog> event_log,
74 std::unique_ptr<Call> call);
henrike@webrtc.org28e20752013-07-10 00:45:36 +000075
deadbeef653b8e02015-11-11 12:55:10 -080076 bool Initialize(
77 const PeerConnectionInterface::RTCConfiguration& configuration,
Benjamin Wrightcab58882018-05-02 15:12:47 -070078 PeerConnectionDependencies dependencies);
deadbeef653b8e02015-11-11 12:55:10 -080079
deadbeefa67696b2015-09-29 11:56:26 -070080 rtc::scoped_refptr<StreamCollectionInterface> local_streams() override;
81 rtc::scoped_refptr<StreamCollectionInterface> remote_streams() override;
82 bool AddStream(MediaStreamInterface* local_stream) override;
83 void RemoveStream(MediaStreamInterface* local_stream) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000084
Steve Anton2d6c76a2018-01-05 17:10:52 -080085 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrack(
Steve Antonf9381f02017-12-14 10:23:57 -080086 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -080087 const std::vector<std::string>& stream_ids) override;
deadbeefe1f9d832016-01-14 15:35:42 -080088 rtc::scoped_refptr<RtpSenderInterface> AddTrack(
89 MediaStreamTrackInterface* track,
90 std::vector<MediaStreamInterface*> streams) override;
91 bool RemoveTrack(RtpSenderInterface* sender) override;
92
Steve Anton9158ef62017-11-27 13:01:52 -080093 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
94 rtc::scoped_refptr<MediaStreamTrackInterface> track) override;
95 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
96 rtc::scoped_refptr<MediaStreamTrackInterface> track,
97 const RtpTransceiverInit& init) override;
98 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
99 cricket::MediaType media_type) override;
100 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
101 cricket::MediaType media_type,
102 const RtpTransceiverInit& init) override;
103
Steve Anton8c0f7a72017-10-03 10:03:10 -0700104 // Gets the DTLS SSL certificate associated with the audio transport on the
105 // remote side. This will become populated once the DTLS connection with the
106 // peer has been completed, as indicated by the ICE connection state
107 // transitioning to kIceConnectionCompleted.
108 // Note that this will be removed once we implement RTCDtlsTransport which
109 // has standardized method for getting this information.
110 // See https://www.w3.org/TR/webrtc/#rtcdtlstransport-interface
111 std::unique_ptr<rtc::SSLCertificate> GetRemoteAudioSSLCertificate();
112
Zhi Huang70b820f2018-01-27 14:16:15 -0800113 // Version of the above method that returns the full certificate chain.
114 std::unique_ptr<rtc::SSLCertChain> GetRemoteAudioSSLCertChain();
115
deadbeeffac06552015-11-25 11:26:01 -0800116 rtc::scoped_refptr<RtpSenderInterface> CreateSender(
deadbeefbd7d8f72015-12-18 16:58:44 -0800117 const std::string& kind,
118 const std::string& stream_id) override;
deadbeeffac06552015-11-25 11:26:01 -0800119
deadbeef70ab1a12015-09-28 16:53:55 -0700120 std::vector<rtc::scoped_refptr<RtpSenderInterface>> GetSenders()
121 const override;
122 std::vector<rtc::scoped_refptr<RtpReceiverInterface>> GetReceivers()
123 const override;
Steve Anton9158ef62017-11-27 13:01:52 -0800124 std::vector<rtc::scoped_refptr<RtpTransceiverInterface>> GetTransceivers()
125 const override;
deadbeef70ab1a12015-09-28 16:53:55 -0700126
deadbeefa67696b2015-09-29 11:56:26 -0700127 rtc::scoped_refptr<DataChannelInterface> CreateDataChannel(
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000128 const std::string& label,
deadbeefa67696b2015-09-29 11:56:26 -0700129 const DataChannelInit* config) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100130 // WARNING: LEGACY. See peerconnectioninterface.h
deadbeefa67696b2015-09-29 11:56:26 -0700131 bool GetStats(StatsObserver* observer,
132 webrtc::MediaStreamTrackInterface* track,
133 StatsOutputLevel level) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100134 // Spec-complaint GetStats(). See peerconnectioninterface.h
hbos74e1a4f2016-09-15 23:33:01 -0700135 void GetStats(RTCStatsCollectorCallback* callback) override;
Henrik Boström1df1bf82018-03-20 13:24:20 +0100136 void GetStats(
137 rtc::scoped_refptr<RtpSenderInterface> selector,
138 rtc::scoped_refptr<RTCStatsCollectorCallback> callback) override;
139 void GetStats(
140 rtc::scoped_refptr<RtpReceiverInterface> selector,
141 rtc::scoped_refptr<RTCStatsCollectorCallback> callback) override;
Harald Alvestrand89061872018-01-02 14:08:34 +0100142 void ClearStatsCache() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000143
deadbeefa67696b2015-09-29 11:56:26 -0700144 SignalingState signaling_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000145
deadbeefa67696b2015-09-29 11:56:26 -0700146 IceConnectionState ice_connection_state() override;
147 IceGatheringState ice_gathering_state() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000148
deadbeefa67696b2015-09-29 11:56:26 -0700149 const SessionDescriptionInterface* local_description() const override;
150 const SessionDescriptionInterface* remote_description() const override;
deadbeeffe4a8a42016-12-20 17:56:17 -0800151 const SessionDescriptionInterface* current_local_description() const override;
152 const SessionDescriptionInterface* current_remote_description()
153 const override;
154 const SessionDescriptionInterface* pending_local_description() const override;
155 const SessionDescriptionInterface* pending_remote_description()
156 const override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000157
158 // JSEP01
htaa2a49d92016-03-04 02:51:39 -0800159 // Deprecated, use version without constraints.
deadbeefa67696b2015-09-29 11:56:26 -0700160 void CreateOffer(CreateSessionDescriptionObserver* observer,
161 const MediaConstraintsInterface* constraints) override;
162 void CreateOffer(CreateSessionDescriptionObserver* observer,
163 const RTCOfferAnswerOptions& options) override;
htaa2a49d92016-03-04 02:51:39 -0800164 // Deprecated, use version without constraints.
deadbeefa67696b2015-09-29 11:56:26 -0700165 void CreateAnswer(CreateSessionDescriptionObserver* observer,
166 const MediaConstraintsInterface* constraints) override;
htaa2a49d92016-03-04 02:51:39 -0800167 void CreateAnswer(CreateSessionDescriptionObserver* observer,
168 const RTCOfferAnswerOptions& options) override;
deadbeefa67696b2015-09-29 11:56:26 -0700169 void SetLocalDescription(SetSessionDescriptionObserver* observer,
170 SessionDescriptionInterface* desc) override;
Henrik Boströma4ecf552017-11-23 14:17:07 +0000171 void SetRemoteDescription(SetSessionDescriptionObserver* observer,
172 SessionDescriptionInterface* desc) override;
Henrik Boström31638672017-11-23 17:48:32 +0100173 void SetRemoteDescription(
174 std::unique_ptr<SessionDescriptionInterface> desc,
175 rtc::scoped_refptr<SetRemoteDescriptionObserverInterface> observer)
176 override;
deadbeef46c73892016-11-16 19:42:04 -0800177 PeerConnectionInterface::RTCConfiguration GetConfiguration() override;
deadbeefa67696b2015-09-29 11:56:26 -0700178 bool SetConfiguration(
deadbeef293e9262017-01-11 12:28:30 -0800179 const PeerConnectionInterface::RTCConfiguration& configuration,
180 RTCError* error) override;
181 bool SetConfiguration(
182 const PeerConnectionInterface::RTCConfiguration& configuration) override {
183 return SetConfiguration(configuration, nullptr);
184 }
deadbeefa67696b2015-09-29 11:56:26 -0700185 bool AddIceCandidate(const IceCandidateInterface* candidate) override;
Honghai Zhang7fb69db2016-03-14 11:59:18 -0700186 bool RemoveIceCandidates(
187 const std::vector<cricket::Candidate>& candidates) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000188
deadbeefa67696b2015-09-29 11:56:26 -0700189 void RegisterUMAObserver(UMAObserver* observer) override;
buildbot@webrtc.org1567b8c2014-05-08 19:54:16 +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
Elad Alon99c3fe52017-10-13 16:29:40 +0200200 RTC_DEPRECATED bool StartRtcEventLog(rtc::PlatformFile file,
201 int64_t max_size_bytes) override;
Bjorn Tereliusde939432017-11-20 17:38:14 +0100202 bool StartRtcEventLog(std::unique_ptr<RtcEventLogOutput> output,
203 int64_t output_period_ms) override;
ivoc14d5dbe2016-07-04 07:06:55 -0700204 void StopRtcEventLog() override;
205
deadbeefa67696b2015-09-29 11:56:26 -0700206 void Close() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000207
Steve Anton2d8609c2018-01-23 16:38:46 -0800208 // PeerConnectionInternal implementation.
209 rtc::Thread* network_thread() const override {
210 return factory_->network_thread();
211 }
212 rtc::Thread* worker_thread() const override {
213 return factory_->worker_thread();
214 }
215 rtc::Thread* signaling_thread() const override {
216 return factory_->signaling_thread();
perkjd61bf802016-03-24 03:16:19 -0700217 }
deadbeefab9b2d12015-10-14 11:33:11 -0700218
Steve Antonbe5e2082018-01-24 15:29:17 -0800219 std::string session_id() const override { return session_id_; }
Steve Anton75737c02017-11-06 10:37:17 -0800220
Steve Anton2d8609c2018-01-23 16:38:46 -0800221 bool initial_offerer() const override {
Zhi Huange830e682018-03-30 10:48:35 -0700222 return transport_controller_ && transport_controller_->initial_offerer();
Steve Anton2d8609c2018-01-23 16:38:46 -0800223 }
Steve Anton75737c02017-11-06 10:37:17 -0800224
Steve Anton2d8609c2018-01-23 16:38:46 -0800225 std::vector<
226 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
Steve Antonb8867112018-02-13 10:07:54 -0800227 GetTransceiversInternal() const override {
Steve Anton2d8609c2018-01-23 16:38:46 -0800228 return transceivers_;
229 }
230
231 bool GetLocalTrackIdBySsrc(uint32_t ssrc, std::string* track_id) override;
232 bool GetRemoteTrackIdBySsrc(uint32_t ssrc, std::string* track_id) override;
233
234 sigslot::signal1<DataChannel*>& SignalDataChannelCreated() override {
235 return SignalDataChannelCreated_;
236 }
237
238 cricket::RtpDataChannel* rtp_data_channel() const override {
Steve Anton75737c02017-11-06 10:37:17 -0800239 return rtp_data_channel_;
Steve Anton978b8762017-09-29 12:15:02 -0700240 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800241
Steve Antonbe5e2082018-01-24 15:29:17 -0800242 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels()
Steve Anton2d8609c2018-01-23 16:38:46 -0800243 const override {
244 return sctp_data_channels_;
245 }
246
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200247 absl::optional<std::string> sctp_content_name() const override {
Zhi Huange830e682018-03-30 10:48:35 -0700248 return sctp_mid_;
Steve Anton75737c02017-11-06 10:37:17 -0800249 }
Steve Anton2d8609c2018-01-23 16:38:46 -0800250
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200251 absl::optional<std::string> sctp_transport_name() const override;
Steve Anton75737c02017-11-06 10:37:17 -0800252
Qingsi Wang72a43a12018-02-20 16:03:18 -0800253 cricket::CandidateStatsList GetPooledCandidateStats() const override;
Steve Anton5dfde182018-02-06 10:34:40 -0800254 std::map<std::string, std::string> GetTransportNamesByMid() const override;
255 std::map<std::string, cricket::TransportStats> GetTransportStatsByNames(
256 const std::set<std::string>& transport_names) override;
Steve Anton2d8609c2018-01-23 16:38:46 -0800257 Call::Stats GetCallStats() override;
Steve Anton75737c02017-11-06 10:37:17 -0800258
Steve Anton2d8609c2018-01-23 16:38:46 -0800259 bool GetLocalCertificate(
260 const std::string& transport_name,
261 rtc::scoped_refptr<rtc::RTCCertificate>* certificate) override;
Taylor Brandstetterc3928662018-02-23 13:04:51 -0800262 std::unique_ptr<rtc::SSLCertChain> GetRemoteSSLCertChain(
Steve Anton2d8609c2018-01-23 16:38:46 -0800263 const std::string& transport_name) override;
264 bool IceRestartPending(const std::string& content_name) const override;
265 bool NeedsIceRestart(const std::string& content_name) const override;
266 bool GetSslRole(const std::string& content_name, rtc::SSLRole* role) override;
Steve Anton7464fca2018-01-19 11:10:37 -0800267
Harald Alvestrand19793842018-06-25 12:03:50 +0200268 void ReturnHistogramVeryQuicklyForTesting() {
269 return_histogram_very_quickly_ = true;
270 }
271
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000272 protected:
deadbeefa67696b2015-09-29 11:56:26 -0700273 ~PeerConnection() override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000274
275 private:
Henrik Boström31638672017-11-23 17:48:32 +0100276 class SetRemoteDescriptionObserverAdapter;
277 friend class SetRemoteDescriptionObserverAdapter;
278
Steve Anton4171afb2017-11-20 10:20:22 -0800279 struct RtpSenderInfo {
280 RtpSenderInfo() : first_ssrc(0) {}
Seth Hampson845e8782018-03-02 11:34:10 -0800281 RtpSenderInfo(const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -0800282 const std::string sender_id,
283 uint32_t ssrc)
Seth Hampson845e8782018-03-02 11:34:10 -0800284 : stream_id(stream_id), sender_id(sender_id), first_ssrc(ssrc) {}
Steve Anton4171afb2017-11-20 10:20:22 -0800285 bool operator==(const RtpSenderInfo& other) {
Seth Hampson845e8782018-03-02 11:34:10 -0800286 return this->stream_id == other.stream_id &&
Steve Anton4171afb2017-11-20 10:20:22 -0800287 this->sender_id == other.sender_id &&
288 this->first_ssrc == other.first_ssrc;
deadbeefbda7e0b2015-12-08 17:13:40 -0800289 }
Seth Hampson845e8782018-03-02 11:34:10 -0800290 std::string stream_id;
Steve Anton4171afb2017-11-20 10:20:22 -0800291 std::string sender_id;
292 // An RtpSender can have many SSRCs. The first one is used as a sort of ID
293 // for communicating with the lower layers.
294 uint32_t first_ssrc;
deadbeefab9b2d12015-10-14 11:33:11 -0700295 };
deadbeefab9b2d12015-10-14 11:33:11 -0700296
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000297 // Implements MessageHandler.
deadbeefa67696b2015-09-29 11:56:26 -0700298 void OnMessage(rtc::Message* msg) override;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000299
Steve Antonafb0bb72018-02-20 11:35:37 -0800300 // Plan B helpers for getting the voice/video media channels for the single
301 // audio/video transceiver, if it exists.
302 cricket::VoiceMediaChannel* voice_media_channel() const;
303 cricket::VideoMediaChannel* video_media_channel() const;
Steve Anton60776752018-01-10 11:51:34 -0800304
Steve Anton4171afb2017-11-20 10:20:22 -0800305 std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>>
306 GetSendersInternal() const;
307 std::vector<
308 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>>
309 GetReceiversInternal() const;
310
311 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
312 GetAudioTransceiver() const;
313 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
314 GetVideoTransceiver() const;
315
Steve Antonafb0bb72018-02-20 11:35:37 -0800316 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
317 GetFirstAudioTransceiver() const;
318
deadbeefab9b2d12015-10-14 11:33:11 -0700319 void CreateAudioReceiver(MediaStreamInterface* stream,
Steve Anton4171afb2017-11-20 10:20:22 -0800320 const RtpSenderInfo& remote_sender_info);
perkjf0dcfe22016-03-10 18:32:00 +0100321
deadbeefab9b2d12015-10-14 11:33:11 -0700322 void CreateVideoReceiver(MediaStreamInterface* stream,
Steve Anton4171afb2017-11-20 10:20:22 -0800323 const RtpSenderInfo& remote_sender_info);
Henrik Boström933d8b02017-10-10 10:05:16 -0700324 rtc::scoped_refptr<RtpReceiverInterface> RemoveAndStopReceiver(
Steve Anton4171afb2017-11-20 10:20:22 -0800325 const RtpSenderInfo& remote_sender_info);
korniltsev.anatolyec390b52017-07-24 17:00:25 -0700326
327 // May be called either by AddStream/RemoveStream, or when a track is
328 // added/removed from a stream previously added via AddStream.
329 void AddAudioTrack(AudioTrackInterface* track, MediaStreamInterface* stream);
330 void RemoveAudioTrack(AudioTrackInterface* track,
331 MediaStreamInterface* stream);
332 void AddVideoTrack(VideoTrackInterface* track, MediaStreamInterface* stream);
333 void RemoveVideoTrack(VideoTrackInterface* track,
334 MediaStreamInterface* stream);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000335
Steve Antonf9381f02017-12-14 10:23:57 -0800336 // AddTrack implementation when Unified Plan is specified.
337 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackUnifiedPlan(
338 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -0800339 const std::vector<std::string>& stream_ids);
Steve Antonf9381f02017-12-14 10:23:57 -0800340 // AddTrack implementation when Plan B is specified.
341 RTCErrorOr<rtc::scoped_refptr<RtpSenderInterface>> AddTrackPlanB(
342 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -0800343 const std::vector<std::string>& stream_ids);
Steve Antonf9381f02017-12-14 10:23:57 -0800344
345 // Returns the first RtpTransceiver suitable for a newly added track, if such
346 // transceiver is available.
347 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
348 FindFirstTransceiverForAddedTrack(
349 rtc::scoped_refptr<MediaStreamTrackInterface> track);
350
351 // RemoveTrack that returns an RTCError.
352 RTCError RemoveTrackInternal(rtc::scoped_refptr<RtpSenderInterface> sender);
353
354 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
355 FindTransceiverBySender(rtc::scoped_refptr<RtpSenderInterface> sender);
356
Steve Anton22da89f2018-01-25 13:58:07 -0800357 // Internal implementation for AddTransceiver family of methods. If
358 // |fire_callback| is set, fires OnRenegotiationNeeded callback if successful.
Steve Anton9158ef62017-11-27 13:01:52 -0800359 RTCErrorOr<rtc::scoped_refptr<RtpTransceiverInterface>> AddTransceiver(
360 cricket::MediaType media_type,
361 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Steve Anton22da89f2018-01-25 13:58:07 -0800362 const RtpTransceiverInit& init,
363 bool fire_callback = true);
Steve Anton9158ef62017-11-27 13:01:52 -0800364
Steve Anton02ee47c2018-01-10 16:26:06 -0800365 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
366 CreateSender(cricket::MediaType media_type,
Steve Anton111fdfd2018-06-25 13:03:36 -0700367 const std::string& id,
Steve Anton02ee47c2018-01-10 16:26:06 -0800368 rtc::scoped_refptr<MediaStreamTrackInterface> track,
Seth Hampson845e8782018-03-02 11:34:10 -0800369 const std::vector<std::string>& stream_ids);
Steve Anton02ee47c2018-01-10 16:26:06 -0800370
371 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
372 CreateReceiver(cricket::MediaType media_type, const std::string& receiver_id);
373
Steve Antonf9381f02017-12-14 10:23:57 -0800374 // Create a new RtpTransceiver of the given type and add it to the list of
375 // transceivers.
376 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
Steve Anton02ee47c2018-01-10 16:26:06 -0800377 CreateAndAddTransceiver(
378 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> sender,
379 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
380 receiver);
Steve Antonf9381f02017-12-14 10:23:57 -0800381
Steve Antonba818672017-11-06 10:21:57 -0800382 void SetIceConnectionState(IceConnectionState new_state);
383 // Called any time the IceGatheringState changes
384 void OnIceGatheringChange(IceGatheringState new_state);
385 // New ICE candidate has been gathered.
386 void OnIceCandidate(std::unique_ptr<IceCandidateInterface> candidate);
387 // Some local ICE candidates have been removed.
Honghai Zhang7fb69db2016-03-14 11:59:18 -0700388 void OnIceCandidatesRemoved(
Steve Antonba818672017-11-06 10:21:57 -0800389 const std::vector<cricket::Candidate>& candidates);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000390
Steve Antonba818672017-11-06 10:21:57 -0800391 // Update the state, signaling if necessary.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000392 void ChangeSignalingState(SignalingState signaling_state);
393
deadbeefeb459812015-12-15 19:24:43 -0800394 // Signals from MediaStreamObserver.
395 void OnAudioTrackAdded(AudioTrackInterface* track,
396 MediaStreamInterface* stream);
397 void OnAudioTrackRemoved(AudioTrackInterface* track,
398 MediaStreamInterface* stream);
399 void OnVideoTrackAdded(VideoTrackInterface* track,
400 MediaStreamInterface* stream);
401 void OnVideoTrackRemoved(VideoTrackInterface* track,
402 MediaStreamInterface* stream);
403
Henrik Boström31638672017-11-23 17:48:32 +0100404 void PostSetSessionDescriptionSuccess(
405 SetSessionDescriptionObserver* observer);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000406 void PostSetSessionDescriptionFailure(SetSessionDescriptionObserver* observer,
Harald Alvestrand5081c0c2018-03-09 15:18:03 +0100407 RTCError&& error);
deadbeefab9b2d12015-10-14 11:33:11 -0700408 void PostCreateSessionDescriptionFailure(
409 CreateSessionDescriptionObserver* observer,
Harald Alvestrand5081c0c2018-03-09 15:18:03 +0100410 RTCError error);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000411
Steve Anton8a006912017-12-04 15:25:56 -0800412 // Synchronous implementations of SetLocalDescription/SetRemoteDescription
413 // that return an RTCError instead of invoking a callback.
414 RTCError ApplyLocalDescription(
415 std::unique_ptr<SessionDescriptionInterface> desc);
416 RTCError ApplyRemoteDescription(
417 std::unique_ptr<SessionDescriptionInterface> desc);
418
Steve Antondcc3c022017-12-22 16:02:54 -0800419 // Updates the local RtpTransceivers according to the JSEP rules. Called as
420 // part of setting the local/remote description.
421 RTCError UpdateTransceiversAndDataChannels(
422 cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800423 const SessionDescriptionInterface& new_session,
424 const SessionDescriptionInterface* old_local_description,
425 const SessionDescriptionInterface* old_remote_description);
Steve Antondcc3c022017-12-22 16:02:54 -0800426
427 // Either creates or destroys the transceiver's BaseChannel according to the
428 // given media section.
429 RTCError UpdateTransceiverChannel(
430 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
431 transceiver,
432 const cricket::ContentInfo& content,
433 const cricket::ContentGroup* bundle_group);
434
Steve Antonfa2260d2017-12-28 16:38:23 -0800435 // Either creates or destroys the local data channel according to the given
436 // media section.
437 RTCError UpdateDataChannel(cricket::ContentSource source,
438 const cricket::ContentInfo& content,
439 const cricket::ContentGroup* bundle_group);
440
Steve Antondcc3c022017-12-22 16:02:54 -0800441 // Associate the given transceiver according to the JSEP rules.
442 RTCErrorOr<
443 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
444 AssociateTransceiver(cricket::ContentSource source,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800445 SdpType type,
Steve Antondcc3c022017-12-22 16:02:54 -0800446 size_t mline_index,
447 const cricket::ContentInfo& content,
Seth Hampsonae8a90a2018-02-13 15:33:48 -0800448 const cricket::ContentInfo* old_local_content,
449 const cricket::ContentInfo* old_remote_content);
Steve Antondcc3c022017-12-22 16:02:54 -0800450
451 // Returns the RtpTransceiver, if found, that is associated to the given MID.
452 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
453 GetAssociatedTransceiver(const std::string& mid) const;
454
455 // Returns the RtpTransceiver, if found, that was assigned to the given mline
456 // index in CreateOffer.
457 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
458 GetTransceiverByMLineIndex(size_t mline_index) const;
459
460 // Returns an RtpTransciever, if available, that can be used to receive the
461 // given media type according to JSEP rules.
462 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
463 FindAvailableTransceiverToReceive(cricket::MediaType media_type) const;
464
Steve Antoned10bd92017-12-05 10:52:59 -0800465 // Returns the media section in the given session description that is
466 // associated with the RtpTransceiver. Returns null if none found or this
467 // RtpTransceiver is not associated. Logic varies depending on the
468 // SdpSemantics specified in the configuration.
469 const cricket::ContentInfo* FindMediaSectionForTransceiver(
470 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
471 transceiver,
472 const SessionDescriptionInterface* sdesc) const;
473
Steve Anton52d86772018-02-20 15:48:12 -0800474 void OnNegotiationNeeded();
475
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000476 bool IsClosed() const {
477 return signaling_state_ == PeerConnectionInterface::kClosed;
478 }
479
deadbeefab9b2d12015-10-14 11:33:11 -0700480 // Returns a MediaSessionOptions struct with options decided by |options|,
481 // the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800482 void GetOptionsForOffer(const PeerConnectionInterface::RTCOfferAnswerOptions&
483 offer_answer_options,
484 cricket::MediaSessionOptions* session_options);
485 void GetOptionsForPlanBOffer(
486 const PeerConnectionInterface::RTCOfferAnswerOptions&
487 offer_answer_options,
488 cricket::MediaSessionOptions* session_options);
489 void GetOptionsForUnifiedPlanOffer(
490 const PeerConnectionInterface::RTCOfferAnswerOptions&
491 offer_answer_options,
deadbeefab9b2d12015-10-14 11:33:11 -0700492 cricket::MediaSessionOptions* session_options);
493
Steve Anton22da89f2018-01-25 13:58:07 -0800494 RTCError HandleLegacyOfferOptions(const RTCOfferAnswerOptions& options);
495 void RemoveRecvDirectionFromReceivingTransceiversOfType(
496 cricket::MediaType media_type);
497 void AddUpToOneReceivingTransceiverOfType(cricket::MediaType media_type);
498 std::vector<
499 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
500 GetReceivingTransceiversOfType(cricket::MediaType media_type);
501
deadbeefab9b2d12015-10-14 11:33:11 -0700502 // Returns a MediaSessionOptions struct with options decided by
503 // |constraints|, the local MediaStreams and DataChannels.
Steve Antondcc3c022017-12-22 16:02:54 -0800504 void GetOptionsForAnswer(const RTCOfferAnswerOptions& offer_answer_options,
zhihuang1c378ed2017-08-17 14:10:50 -0700505 cricket::MediaSessionOptions* session_options);
Steve Antondcc3c022017-12-22 16:02:54 -0800506 void GetOptionsForPlanBAnswer(
507 const PeerConnectionInterface::RTCOfferAnswerOptions&
508 offer_answer_options,
509 cricket::MediaSessionOptions* session_options);
510 void GetOptionsForUnifiedPlanAnswer(
511 const PeerConnectionInterface::RTCOfferAnswerOptions&
512 offer_answer_options,
513 cricket::MediaSessionOptions* session_options);
htaa2a49d92016-03-04 02:51:39 -0800514
zhihuang1c378ed2017-08-17 14:10:50 -0700515 // Generates MediaDescriptionOptions for the |session_opts| based on existing
516 // local description or remote description.
517 void GenerateMediaDescriptionOptions(
518 const SessionDescriptionInterface* session_desc,
Steve Anton1d03a752017-11-27 14:30:09 -0800519 RtpTransceiverDirection audio_direction,
520 RtpTransceiverDirection video_direction,
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200521 absl::optional<size_t>* audio_index,
522 absl::optional<size_t>* video_index,
523 absl::optional<size_t>* data_index,
htaa2a49d92016-03-04 02:51:39 -0800524 cricket::MediaSessionOptions* session_options);
deadbeefab9b2d12015-10-14 11:33:11 -0700525
Steve Antonfa2260d2017-12-28 16:38:23 -0800526 // Generates the active MediaDescriptionOptions for the local data channel
527 // given the specified MID.
528 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForActiveData(
529 const std::string& mid) const;
530
531 // Generates the rejected MediaDescriptionOptions for the local data channel
532 // given the specified MID.
533 cricket::MediaDescriptionOptions GetMediaDescriptionOptionsForRejectedData(
534 const std::string& mid) const;
535
536 // Returns the MID for the data section associated with either the
537 // RtpDataChannel or SCTP data channel, if it has been set. If no data
538 // channels are configured this will return nullopt.
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200539 absl::optional<std::string> GetDataMid() const;
Steve Antonfa2260d2017-12-28 16:38:23 -0800540
Steve Anton4171afb2017-11-20 10:20:22 -0800541 // Remove all local and remote senders of type |media_type|.
deadbeeffaac4972015-11-12 15:33:07 -0800542 // Called when a media type is rejected (m-line set to port 0).
Steve Anton4171afb2017-11-20 10:20:22 -0800543 void RemoveSenders(cricket::MediaType media_type);
deadbeeffaac4972015-11-12 15:33:07 -0800544
deadbeefbda7e0b2015-12-08 17:13:40 -0800545 // Makes sure a MediaStreamTrack is created for each StreamParam in |streams|,
546 // and existing MediaStreamTracks are removed if there is no corresponding
547 // StreamParam. If |default_track_needed| is true, a default MediaStreamTrack
548 // is created if it doesn't exist; if false, it's removed if it exists.
549 // |media_type| is the type of the |streams| and can be either audio or video.
deadbeefab9b2d12015-10-14 11:33:11 -0700550 // If a new MediaStream is created it is added to |new_streams|.
Steve Anton4171afb2017-11-20 10:20:22 -0800551 void UpdateRemoteSendersList(
deadbeefab9b2d12015-10-14 11:33:11 -0700552 const std::vector<cricket::StreamParams>& streams,
deadbeefbda7e0b2015-12-08 17:13:40 -0800553 bool default_track_needed,
deadbeefab9b2d12015-10-14 11:33:11 -0700554 cricket::MediaType media_type,
555 StreamCollection* new_streams);
556
Steve Anton4171afb2017-11-20 10:20:22 -0800557 // Triggered when a remote sender has been seen for the first time in a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700558 // session description. It creates a remote MediaStreamTrackInterface
559 // implementation and triggers CreateAudioReceiver or CreateVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800560 void OnRemoteSenderAdded(const RtpSenderInfo& sender_info,
561 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700562
Steve Anton4171afb2017-11-20 10:20:22 -0800563 // Triggered when a remote sender has been removed from a remote session
564 // description. It removes the remote sender with id |sender_id| from a remote
deadbeefab9b2d12015-10-14 11:33:11 -0700565 // MediaStream and triggers DestroyAudioReceiver or DestroyVideoReceiver.
Steve Anton4171afb2017-11-20 10:20:22 -0800566 void OnRemoteSenderRemoved(const RtpSenderInfo& sender_info,
567 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700568
569 // Finds remote MediaStreams without any tracks and removes them from
570 // |remote_streams_| and notifies the observer that the MediaStreams no longer
571 // exist.
572 void UpdateEndedRemoteMediaStreams();
573
deadbeefab9b2d12015-10-14 11:33:11 -0700574 // Loops through the vector of |streams| and finds added and removed
575 // StreamParams since last time this method was called.
Steve Anton4171afb2017-11-20 10:20:22 -0800576 // For each new or removed StreamParam, OnLocalSenderSeen or
577 // OnLocalSenderRemoved is invoked.
578 void UpdateLocalSenders(const std::vector<cricket::StreamParams>& streams,
579 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700580
Steve Anton4171afb2017-11-20 10:20:22 -0800581 // Triggered when a local sender has been seen for the first time in a local
deadbeefab9b2d12015-10-14 11:33:11 -0700582 // session description.
583 // This method triggers CreateAudioSender or CreateVideoSender if the rtp
584 // streams in the local SessionDescription can be mapped to a MediaStreamTrack
585 // in a MediaStream in |local_streams_|
Steve Anton4171afb2017-11-20 10:20:22 -0800586 void OnLocalSenderAdded(const RtpSenderInfo& sender_info,
587 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700588
Steve Anton4171afb2017-11-20 10:20:22 -0800589 // Triggered when a local sender has been removed from a local session
deadbeefab9b2d12015-10-14 11:33:11 -0700590 // description.
591 // This method triggers DestroyAudioSender or DestroyVideoSender if a stream
592 // has been removed from the local SessionDescription and the stream can be
593 // mapped to a MediaStreamTrack in a MediaStream in |local_streams_|.
Steve Anton4171afb2017-11-20 10:20:22 -0800594 void OnLocalSenderRemoved(const RtpSenderInfo& sender_info,
595 cricket::MediaType media_type);
deadbeefab9b2d12015-10-14 11:33:11 -0700596
597 void UpdateLocalRtpDataChannels(const cricket::StreamParamsVec& streams);
598 void UpdateRemoteRtpDataChannels(const cricket::StreamParamsVec& streams);
599 void UpdateClosingRtpDataChannels(
600 const std::vector<std::string>& active_channels,
601 bool is_local_update);
602 void CreateRemoteRtpDataChannel(const std::string& label,
603 uint32_t remote_ssrc);
604
605 // Creates channel and adds it to the collection of DataChannels that will
606 // be offered in a SessionDescription.
607 rtc::scoped_refptr<DataChannel> InternalCreateDataChannel(
608 const std::string& label,
609 const InternalDataChannelInit* config);
610
611 // Checks if any data channel has been added.
612 bool HasDataChannels() const;
613
614 void AllocateSctpSids(rtc::SSLRole role);
615 void OnSctpDataChannelClosed(DataChannel* channel);
616
deadbeefab9b2d12015-10-14 11:33:11 -0700617 void OnDataChannelDestroyed();
Steve Antonba818672017-11-06 10:21:57 -0800618 // Called when a valid data channel OPEN message is received.
deadbeefab9b2d12015-10-14 11:33:11 -0700619 void OnDataChannelOpenMessage(const std::string& label,
620 const InternalDataChannelInit& config);
621
Steve Anton4171afb2017-11-20 10:20:22 -0800622 // Returns true if the PeerConnection is configured to use Unified Plan
623 // semantics for creating offers/answers and setting local/remote
624 // descriptions. If this is true the RtpTransceiver API will also be available
625 // to the user. If this is false, Plan B semantics are assumed.
Steve Anton79e79602017-11-20 10:25:56 -0800626 // TODO(bugs.webrtc.org/8530): Flip the default to be Unified Plan once
627 // sufficient time has passed.
628 bool IsUnifiedPlan() const {
629 return configuration_.sdp_semantics == SdpSemantics::kUnifiedPlan;
630 }
Steve Anton4171afb2017-11-20 10:20:22 -0800631
632 // Is there an RtpSender of the given type?
zhihuang1c378ed2017-08-17 14:10:50 -0700633 bool HasRtpSender(cricket::MediaType type) const;
deadbeeffac06552015-11-25 11:26:01 -0800634
Steve Anton4171afb2017-11-20 10:20:22 -0800635 // Return the RtpSender with the given track attached.
636 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
637 FindSenderForTrack(MediaStreamTrackInterface* track) const;
deadbeef70ab1a12015-09-28 16:53:55 -0700638
Steve Anton4171afb2017-11-20 10:20:22 -0800639 // Return the RtpSender with the given id, or null if none exists.
640 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>
641 FindSenderById(const std::string& sender_id) const;
642
643 // Return the RtpReceiver with the given id, or null if none exists.
644 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
645 FindReceiverById(const std::string& receiver_id) const;
646
647 std::vector<RtpSenderInfo>* GetRemoteSenderInfos(
648 cricket::MediaType media_type);
649 std::vector<RtpSenderInfo>* GetLocalSenderInfos(
650 cricket::MediaType media_type);
651 const RtpSenderInfo* FindSenderInfo(const std::vector<RtpSenderInfo>& infos,
Emircan Uysalerbc609ea2018-03-27 21:57:18 +0000652 const std::string& stream_id,
Steve Anton4171afb2017-11-20 10:20:22 -0800653 const std::string sender_id) const;
deadbeefab9b2d12015-10-14 11:33:11 -0700654
655 // Returns the specified SCTP DataChannel in sctp_data_channels_,
656 // or nullptr if not found.
657 DataChannel* FindDataChannelBySid(int sid) const;
658
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700659 // Called when first configuring the port allocator.
Harald Alvestrandb2a74782018-06-28 13:54:07 +0200660 bool InitializePortAllocator_n(
661 const cricket::ServerAddresses& stun_servers,
662 const std::vector<cricket::RelayServerConfig>& turn_servers,
663 const RTCConfiguration& configuration);
deadbeef293e9262017-01-11 12:28:30 -0800664 // Called when SetConfiguration is called to apply the supported subset
665 // of the configuration on the network thread.
666 bool ReconfigurePortAllocator_n(
667 const cricket::ServerAddresses& stun_servers,
668 const std::vector<cricket::RelayServerConfig>& turn_servers,
669 IceTransportsType type,
670 int candidate_pool_size,
Jonas Orelandbdcee282017-10-10 14:01:40 +0200671 bool prune_turn_ports,
Qingsi Wangdb53f8e2018-02-20 14:45:49 -0800672 webrtc::TurnCustomizer* turn_customizer,
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200673 absl::optional<int> stun_candidate_keepalive_interval);
Taylor Brandstettera1c30352016-05-13 08:15:11 -0700674
Qingsi Wanga2d60672018-04-11 16:57:45 -0700675 void SetMetricObserver_n(UMAObserver* observer);
676
Elad Alon99c3fe52017-10-13 16:29:40 +0200677 // Starts output of an RTC event log to the given output object.
ivoc14d5dbe2016-07-04 07:06:55 -0700678 // This function should only be called from the worker thread.
Bjorn Tereliusde939432017-11-20 17:38:14 +0100679 bool StartRtcEventLog_w(std::unique_ptr<RtcEventLogOutput> output,
680 int64_t output_period_ms);
Elad Alon99c3fe52017-10-13 16:29:40 +0200681
Elad Alonacb24172017-10-06 14:32:13 +0200682 // Stops recording an RTC event log.
ivoc14d5dbe2016-07-04 07:06:55 -0700683 // This function should only be called from the worker thread.
684 void StopRtcEventLog_w();
685
Steve Anton038834f2017-07-14 15:59:59 -0700686 // Ensures the configuration doesn't have any parameters with invalid values,
687 // or values that conflict with other parameters.
688 //
689 // Returns RTCError::OK() if there are no issues.
690 RTCError ValidateConfiguration(const RTCConfiguration& config) const;
691
Steve Antonba818672017-11-06 10:21:57 -0800692 cricket::ChannelManager* channel_manager() const;
693 MetricsObserverInterface* metrics_observer() const;
694
Steve Antonf8470812017-12-04 10:46:21 -0800695 enum class SessionError {
696 kNone, // No error.
697 kContent, // Error in BaseChannel SetLocalContent/SetRemoteContent.
698 kTransport, // Error from the underlying transport.
699 };
700
Steve Anton75737c02017-11-06 10:37:17 -0800701 // Returns the last error in the session. See the enum above for details.
Steve Antonf8470812017-12-04 10:46:21 -0800702 SessionError session_error() const { return session_error_; }
703 const std::string& session_error_desc() const { return session_error_desc_; }
Steve Anton75737c02017-11-06 10:37:17 -0800704
Steve Anton75737c02017-11-06 10:37:17 -0800705 cricket::BaseChannel* GetChannel(const std::string& content_name);
706
707 // Get current SSL role used by SCTP's underlying transport.
708 bool GetSctpSslRole(rtc::SSLRole* role);
709
Steve Anton75737c02017-11-06 10:37:17 -0800710 cricket::IceConfig ParseIceConfig(
711 const PeerConnectionInterface::RTCConfiguration& config) const;
712
Steve Anton75737c02017-11-06 10:37:17 -0800713 // Implements DataChannelProviderInterface.
714 bool SendData(const cricket::SendDataParams& params,
715 const rtc::CopyOnWriteBuffer& payload,
716 cricket::SendDataResult* result) override;
717 bool ConnectDataChannel(DataChannel* webrtc_data_channel) override;
718 void DisconnectDataChannel(DataChannel* webrtc_data_channel) override;
719 void AddSctpDataStream(int sid) override;
720 void RemoveSctpDataStream(int sid) override;
721 bool ReadyToSendData() const override;
722
723 cricket::DataChannelType data_channel_type() const;
724
Steve Anton75737c02017-11-06 10:37:17 -0800725 // Called when an RTCCertificate is generated or retrieved by
726 // WebRTCSessionDescriptionFactory. Should happen before setLocalDescription.
727 void OnCertificateReady(
728 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate);
729 void OnDtlsSrtpSetupFailure(cricket::BaseChannel*, bool rtcp);
730
Steve Anton75737c02017-11-06 10:37:17 -0800731 // Non-const versions of local_description()/remote_description(), for use
732 // internally.
733 SessionDescriptionInterface* mutable_local_description() {
734 return pending_local_description_ ? pending_local_description_.get()
735 : current_local_description_.get();
736 }
737 SessionDescriptionInterface* mutable_remote_description() {
738 return pending_remote_description_ ? pending_remote_description_.get()
739 : current_remote_description_.get();
740 }
741
742 // Updates the error state, signaling if necessary.
Steve Antonf8470812017-12-04 10:46:21 -0800743 void SetSessionError(SessionError error, const std::string& error_desc);
Steve Anton75737c02017-11-06 10:37:17 -0800744
Zhi Huange830e682018-03-30 10:48:35 -0700745 RTCError UpdateSessionState(SdpType type,
746 cricket::ContentSource source,
747 const cricket::SessionDescription* description);
Steve Anton75737c02017-11-06 10:37:17 -0800748 // Push the media parts of the local or remote session description
749 // down to all of the channels.
Steve Anton3828c062017-12-06 10:34:51 -0800750 RTCError PushdownMediaDescription(SdpType type,
Steve Anton8a006912017-12-04 15:25:56 -0800751 cricket::ContentSource source);
Steve Anton75737c02017-11-06 10:37:17 -0800752 bool PushdownSctpParameters_n(cricket::ContentSource source);
753
Steve Anton8a006912017-12-04 15:25:56 -0800754 RTCError PushdownTransportDescription(cricket::ContentSource source,
Steve Anton3828c062017-12-06 10:34:51 -0800755 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800756
757 // Returns true and the TransportInfo of the given |content_name|
758 // from |description|. Returns false if it's not available.
759 static bool GetTransportDescription(
760 const cricket::SessionDescription* description,
761 const std::string& content_name,
762 cricket::TransportDescription* info);
763
Steve Anton75737c02017-11-06 10:37:17 -0800764 // Enables media channels to allow sending of media.
Steve Antoned10bd92017-12-05 10:52:59 -0800765 // This enables media to flow on all configured audio/video channels and the
766 // RtpDataChannel.
767 void EnableSending();
Steve Anton3fe1b152017-12-12 10:20:08 -0800768
Steve Anton8af21862017-12-15 11:20:13 -0800769 // Destroys all BaseChannels and destroys the SCTP data channel, if present.
770 void DestroyAllChannels();
Steve Anton3fe1b152017-12-12 10:20:08 -0800771
Steve Anton75737c02017-11-06 10:37:17 -0800772 // Returns the media index for a local ice candidate given the content name.
773 // Returns false if the local session description does not have a media
774 // content called |content_name|.
775 bool GetLocalCandidateMediaIndex(const std::string& content_name,
776 int* sdp_mline_index);
777 // Uses all remote candidates in |remote_desc| in this session.
778 bool UseCandidatesInSessionDescription(
779 const SessionDescriptionInterface* remote_desc);
780 // Uses |candidate| in this session.
781 bool UseCandidate(const IceCandidateInterface* candidate);
782 // Deletes the corresponding channel of contents that don't exist in |desc|.
783 // |desc| can be null. This means that all channels are deleted.
784 void RemoveUnusedChannels(const cricket::SessionDescription* desc);
785
786 // Allocates media channels based on the |desc|. If |desc| doesn't have
787 // the BUNDLE option, this method will disable BUNDLE in PortAllocator.
788 // This method will also delete any existing media channels before creating.
Steve Antondcc3c022017-12-22 16:02:54 -0800789 RTCError CreateChannels(const cricket::SessionDescription& desc);
790
791 // If the BUNDLE policy is max-bundle, then we know for sure that all
792 // transports will be bundled from the start. This method returns the BUNDLE
793 // group if that's the case, or null if BUNDLE will be negotiated later. An
794 // error is returned if max-bundle is specified but the session description
795 // does not have a BUNDLE group.
796 RTCErrorOr<const cricket::ContentGroup*> GetEarlyBundleGroup(
797 const cricket::SessionDescription& desc) const;
Steve Anton75737c02017-11-06 10:37:17 -0800798
799 // Helper methods to create media channels.
Zhi Huange830e682018-03-30 10:48:35 -0700800 cricket::VoiceChannel* CreateVoiceChannel(const std::string& mid);
801 cricket::VideoChannel* CreateVideoChannel(const std::string& mid);
802 bool CreateDataChannel(const std::string& mid);
Steve Anton75737c02017-11-06 10:37:17 -0800803
Zhi Huange830e682018-03-30 10:48:35 -0700804 bool CreateSctpTransport_n(const std::string& mid);
Steve Anton75737c02017-11-06 10:37:17 -0800805 // For bundling.
Steve Anton75737c02017-11-06 10:37:17 -0800806 void DestroySctpTransport_n();
807 // SctpTransport signal handlers. Needed to marshal signals from the network
808 // to signaling thread.
809 void OnSctpTransportReadyToSendData_n();
810 // This may be called with "false" if the direction of the m= section causes
811 // us to tear down the SCTP connection.
812 void OnSctpTransportReadyToSendData_s(bool ready);
813 void OnSctpTransportDataReceived_n(const cricket::ReceiveDataParams& params,
814 const rtc::CopyOnWriteBuffer& payload);
815 // Beyond just firing the signal to the signaling thread, listens to SCTP
816 // CONTROL messages on unused SIDs and processes them as OPEN messages.
817 void OnSctpTransportDataReceived_s(const cricket::ReceiveDataParams& params,
818 const rtc::CopyOnWriteBuffer& payload);
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700819 void OnSctpClosingProcedureStartedRemotely_n(int sid);
820 void OnSctpClosingProcedureComplete_n(int sid);
Steve Anton75737c02017-11-06 10:37:17 -0800821
822 bool ValidateBundleSettings(const cricket::SessionDescription* desc);
823 bool HasRtcpMuxEnabled(const cricket::ContentInfo* content);
824 // Below methods are helper methods which verifies SDP.
Steve Anton8a006912017-12-04 15:25:56 -0800825 RTCError ValidateSessionDescription(const SessionDescriptionInterface* sdesc,
826 cricket::ContentSource source);
Steve Anton75737c02017-11-06 10:37:17 -0800827
Steve Anton3828c062017-12-06 10:34:51 -0800828 // Check if a call to SetLocalDescription is acceptable with a session
829 // description of the given type.
830 bool ExpectSetLocalDescription(SdpType type);
831 // Check if a call to SetRemoteDescription is acceptable with a session
832 // description of the given type.
833 bool ExpectSetRemoteDescription(SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800834 // Verifies a=setup attribute as per RFC 5763.
835 bool ValidateDtlsSetupAttribute(const cricket::SessionDescription* desc,
Steve Anton3828c062017-12-06 10:34:51 -0800836 SdpType type);
Steve Anton75737c02017-11-06 10:37:17 -0800837
838 // Returns true if we are ready to push down the remote candidate.
839 // |remote_desc| is the new remote description, or NULL if the current remote
840 // description should be used. Output |valid| is true if the candidate media
841 // index is valid.
842 bool ReadyToUseRemoteCandidate(const IceCandidateInterface* candidate,
843 const SessionDescriptionInterface* remote_desc,
844 bool* valid);
845
846 // Returns true if SRTP (either using DTLS-SRTP or SDES) is required by
847 // this session.
848 bool SrtpRequired() const;
849
Zhi Huange830e682018-03-30 10:48:35 -0700850 // JsepTransportController signal handlers.
Steve Anton75737c02017-11-06 10:37:17 -0800851 void OnTransportControllerConnectionState(cricket::IceConnectionState state);
852 void OnTransportControllerGatheringState(cricket::IceGatheringState state);
853 void OnTransportControllerCandidatesGathered(
854 const std::string& transport_name,
855 const std::vector<cricket::Candidate>& candidates);
856 void OnTransportControllerCandidatesRemoved(
857 const std::vector<cricket::Candidate>& candidates);
858 void OnTransportControllerDtlsHandshakeError(rtc::SSLHandshakeError error);
859
Steve Antonf8470812017-12-04 10:46:21 -0800860 const char* SessionErrorToString(SessionError error) const;
Steve Anton75737c02017-11-06 10:37:17 -0800861 std::string GetSessionErrorMsg();
862
Steve Anton8e20f172018-03-06 10:55:04 -0800863 // Report the UMA metric SdpFormatReceived for the given remote offer.
864 void ReportSdpFormatReceived(const SessionDescriptionInterface& remote_offer);
865
Steve Anton0ffaaa22018-02-23 10:31:30 -0800866 // Report inferred negotiated SDP semantics from a local/remote answer to the
867 // UMA observer.
868 void ReportNegotiatedSdpSemantics(const SessionDescriptionInterface& answer);
869
Steve Anton75737c02017-11-06 10:37:17 -0800870 // Invoked when TransportController connection completion is signaled.
871 // Reports stats for all transports in use.
872 void ReportTransportStats();
873
874 // Gather the usage of IPv4/IPv6 as best connection.
875 void ReportBestConnectionState(const cricket::TransportStats& stats);
876
Steve Antonc7b964c2018-02-01 14:39:45 -0800877 void ReportNegotiatedCiphers(const cricket::TransportStats& stats,
878 const std::set<cricket::MediaType>& media_types);
Steve Anton75737c02017-11-06 10:37:17 -0800879
Harald Alvestrand8ebba742018-05-31 14:00:34 +0200880 void NoteUsageEvent(UsageEvent event);
881 void ReportUsagePattern() const;
882
Steve Anton75737c02017-11-06 10:37:17 -0800883 void OnSentPacket_w(const rtc::SentPacket& sent_packet);
884
885 const std::string GetTransportName(const std::string& content_name);
886
Steve Anton6fec8802017-12-04 10:37:29 -0800887 // Destroys and clears the BaseChannel associated with the given transceiver,
888 // if such channel is set.
889 void DestroyTransceiverChannel(
890 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>
891 transceiver);
892
893 // Destroys the RTP data channel and/or the SCTP data channel and clears it.
Steve Anton75737c02017-11-06 10:37:17 -0800894 void DestroyDataChannel();
895
Steve Anton6fec8802017-12-04 10:37:29 -0800896 // Destroys the given BaseChannel. The channel cannot be accessed after this
897 // method is called.
898 void DestroyBaseChannel(cricket::BaseChannel* channel);
899
Zhi Huang365381f2018-04-13 16:44:34 -0700900 // JsepTransportController::Observer override.
Taylor Brandstettercbaa2542018-04-16 16:42:14 -0700901 //
902 // Called by |transport_controller_| when processing transport information
903 // from a session description, and the mapping from m= sections to transports
904 // changed (as a result of BUNDLE negotiation, or m= sections being
905 // rejected).
906 bool OnTransportChanged(
Zhi Huang365381f2018-04-13 16:44:34 -0700907 const std::string& mid,
Taylor Brandstettercbaa2542018-04-16 16:42:14 -0700908 RtpTransportInternal* rtp_transport,
Zhi Huang365381f2018-04-13 16:44:34 -0700909 cricket::DtlsTransportInternal* dtls_transport) override;
Zhi Huange830e682018-03-30 10:48:35 -0700910
Steve Anton2d8609c2018-01-23 16:38:46 -0800911 sigslot::signal1<DataChannel*> SignalDataChannelCreated_;
912
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000913 // Storing the factory as a scoped reference pointer ensures that the memory
914 // in the PeerConnectionFactoryImpl remains available as long as the
915 // PeerConnection is running. It is passed to PeerConnection as a raw pointer.
916 // However, since the reference counting is done in the
deadbeefab9b2d12015-10-14 11:33:11 -0700917 // PeerConnectionFactoryInterface all instances created using the raw pointer
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000918 // will refer to the same reference count.
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000919 rtc::scoped_refptr<PeerConnectionFactory> factory_;
Steve Antonba818672017-11-06 10:21:57 -0800920 PeerConnectionObserver* observer_ = nullptr;
Taylor Brandstetter215fda72018-01-03 17:14:20 -0800921 rtc::scoped_refptr<UMAObserver> uma_observer_ = nullptr;
terelius33860252017-05-12 23:37:18 -0700922
923 // The EventLog needs to outlive |call_| (and any other object that uses it).
924 std::unique_ptr<RtcEventLog> event_log_;
925
Steve Antonba818672017-11-06 10:21:57 -0800926 SignalingState signaling_state_ = kStable;
927 IceConnectionState ice_connection_state_ = kIceConnectionNew;
928 IceGatheringState ice_gathering_state_ = kIceGatheringNew;
deadbeef46c73892016-11-16 19:42:04 -0800929 PeerConnectionInterface::RTCConfiguration configuration_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000930
kwibergd1fe2812016-04-27 06:47:29 -0700931 std::unique_ptr<cricket::PortAllocator> port_allocator_;
Benjamin Wrightd6f86e82018-05-08 13:12:25 -0700932 std::unique_ptr<rtc::SSLCertificateVerifier> tls_cert_verifier_;
Qingsi Wanga2d60672018-04-11 16:57:45 -0700933 int port_allocator_flags_ = 0;
deadbeefab9b2d12015-10-14 11:33:11 -0700934
zhihuang8f65cdf2016-05-06 18:40:30 -0700935 // One PeerConnection has only one RTCP CNAME.
936 // https://tools.ietf.org/html/draft-ietf-rtcweb-rtp-usage-26#section-4.9
937 std::string rtcp_cname_;
938
deadbeefab9b2d12015-10-14 11:33:11 -0700939 // Streams added via AddStream.
940 rtc::scoped_refptr<StreamCollection> local_streams_;
941 // Streams created as a result of SetRemoteDescription.
942 rtc::scoped_refptr<StreamCollection> remote_streams_;
943
kwibergd1fe2812016-04-27 06:47:29 -0700944 std::vector<std::unique_ptr<MediaStreamObserver>> stream_observers_;
deadbeefeb459812015-12-15 19:24:43 -0800945
Steve Anton4171afb2017-11-20 10:20:22 -0800946 // These lists store sender info seen in local/remote descriptions.
947 std::vector<RtpSenderInfo> remote_audio_sender_infos_;
948 std::vector<RtpSenderInfo> remote_video_sender_infos_;
949 std::vector<RtpSenderInfo> local_audio_sender_infos_;
950 std::vector<RtpSenderInfo> local_video_sender_infos_;
deadbeefab9b2d12015-10-14 11:33:11 -0700951
952 SctpSidAllocator sid_allocator_;
953 // label -> DataChannel
954 std::map<std::string, rtc::scoped_refptr<DataChannel>> rtp_data_channels_;
955 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_;
deadbeefbd292462015-12-14 18:15:29 -0800956 std::vector<rtc::scoped_refptr<DataChannel>> sctp_data_channels_to_free_;
deadbeefab9b2d12015-10-14 11:33:11 -0700957
deadbeefbda7e0b2015-12-08 17:13:40 -0800958 bool remote_peer_supports_msid_ = false;
deadbeef70ab1a12015-09-28 16:53:55 -0700959
terelius33860252017-05-12 23:37:18 -0700960 std::unique_ptr<Call> call_;
terelius33860252017-05-12 23:37:18 -0700961 std::unique_ptr<StatsCollector> stats_; // A pointer is passed to senders_
962 rtc::scoped_refptr<RTCStatsCollector> stats_collector_;
963
deadbeefa601f5c2016-06-06 14:27:39 -0700964 std::vector<
Steve Anton4171afb2017-11-20 10:20:22 -0800965 rtc::scoped_refptr<RtpTransceiverProxyWithInternal<RtpTransceiver>>>
966 transceivers_;
Steve Antondcc3c022017-12-22 16:02:54 -0800967 // MIDs that have been seen either by SetLocalDescription or
968 // SetRemoteDescription over the life of the PeerConnection.
969 std::set<std::string> seen_mids_;
Steve Anton75737c02017-11-06 10:37:17 -0800970
Steve Antonf8470812017-12-04 10:46:21 -0800971 SessionError session_error_ = SessionError::kNone;
972 std::string session_error_desc_;
Steve Anton75737c02017-11-06 10:37:17 -0800973
974 std::string session_id_;
Steve Anton75737c02017-11-06 10:37:17 -0800975
Zhi Huange830e682018-03-30 10:48:35 -0700976 std::unique_ptr<JsepTransportController> transport_controller_;
Steve Anton75737c02017-11-06 10:37:17 -0800977 std::unique_ptr<cricket::SctpTransportInternalFactory> sctp_factory_;
Steve Anton75737c02017-11-06 10:37:17 -0800978 // |rtp_data_channel_| is used if in RTP data channel mode, |sctp_transport_|
979 // when using SCTP.
980 cricket::RtpDataChannel* rtp_data_channel_ = nullptr;
981
982 std::unique_ptr<cricket::SctpTransportInternal> sctp_transport_;
Zhi Huange830e682018-03-30 10:48:35 -0700983 // |sctp_mid_| is the content name (MID) in SDP.
Danil Chapovalov66cadcc2018-06-19 16:47:43 +0200984 absl::optional<std::string> sctp_mid_;
Steve Anton75737c02017-11-06 10:37:17 -0800985 // Value cached on signaling thread. Only updated when SctpReadyToSendData
986 // fires on the signaling thread.
987 bool sctp_ready_to_send_data_ = false;
988 // Same as signals provided by SctpTransport, but these are guaranteed to
989 // fire on the signaling thread, whereas SctpTransport fires on the networking
990 // thread.
991 // |sctp_invoker_| is used so that any signals queued on the signaling thread
992 // from the network thread are immediately discarded if the SctpTransport is
993 // destroyed (due to m= section being rejected).
994 // TODO(deadbeef): Use a proxy object to ensure that method calls/signals
995 // are marshalled to the right thread. Could almost use proxy.h for this,
996 // but it doesn't have a mechanism for marshalling sigslot::signals
997 std::unique_ptr<rtc::AsyncInvoker> sctp_invoker_;
998 sigslot::signal1<bool> SignalSctpReadyToSendData;
999 sigslot::signal2<const cricket::ReceiveDataParams&,
1000 const rtc::CopyOnWriteBuffer&>
1001 SignalSctpDataReceived;
Taylor Brandstettercdd05f02018-05-31 13:23:32 -07001002 sigslot::signal1<int> SignalSctpClosingProcedureStartedRemotely;
1003 sigslot::signal1<int> SignalSctpClosingProcedureComplete;
Steve Anton75737c02017-11-06 10:37:17 -08001004
1005 std::unique_ptr<SessionDescriptionInterface> current_local_description_;
1006 std::unique_ptr<SessionDescriptionInterface> pending_local_description_;
1007 std::unique_ptr<SessionDescriptionInterface> current_remote_description_;
1008 std::unique_ptr<SessionDescriptionInterface> pending_remote_description_;
1009 bool dtls_enabled_ = false;
1010 // Specifies which kind of data channel is allowed. This is controlled
1011 // by the chrome command-line flag and constraints:
1012 // 1. If chrome command-line switch 'enable-sctp-data-channels' is enabled,
1013 // constraint kEnableDtlsSrtp is true, and constaint kEnableRtpDataChannels is
1014 // not set or false, SCTP is allowed (DCT_SCTP);
1015 // 2. If constraint kEnableRtpDataChannels is true, RTP is allowed (DCT_RTP);
1016 // 3. If both 1&2 are false, data channel is not allowed (DCT_NONE).
1017 cricket::DataChannelType data_channel_type_ = cricket::DCT_NONE;
1018 // List of content names for which the remote side triggered an ICE restart.
1019 std::set<std::string> pending_ice_restarts_;
1020
1021 std::unique_ptr<WebRtcSessionDescriptionFactory> webrtc_session_desc_factory_;
1022
1023 // Member variables for caching global options.
1024 cricket::AudioOptions audio_options_;
1025 cricket::VideoOptions video_options_;
Harald Alvestrand8ebba742018-05-31 14:00:34 +02001026
1027 int usage_event_accumulator_ = 0;
Harald Alvestrand19793842018-06-25 12:03:50 +02001028 bool return_histogram_very_quickly_ = false;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001029};
1030
1031} // namespace webrtc
1032
Mirko Bonadei92ea95e2017-09-15 06:47:31 +02001033#endif // PC_PEERCONNECTION_H_