blob: f70b847b4e2f2168df28485831a85d687aaec4d8 [file] [log] [blame]
wu@webrtc.org91053e72013-08-10 07:18:04 +00001/*
kjellanderb24317b2016-02-10 07:54:43 -08002 * Copyright 2013 The WebRTC project authors. All Rights Reserved.
wu@webrtc.org91053e72013-08-10 07:18:04 +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.
wu@webrtc.org91053e72013-08-10 07:18:04 +00009 */
10
Steve Anton10542f22019-01-11 09:11:00 -080011#ifndef PC_WEBRTC_SESSION_DESCRIPTION_FACTORY_H_
12#define PC_WEBRTC_SESSION_DESCRIPTION_FACTORY_H_
wu@webrtc.org91053e72013-08-10 07:18:04 +000013
Yves Gerey3e707812018-11-28 16:47:49 +010014#include <stdint.h>
Jonas Olssona4d87372019-07-05 19:08:33 +020015
jbauch555604a2016-04-26 03:13:22 -070016#include <memory>
Steve Anton36b29d12017-10-30 09:57:42 -070017#include <queue>
18#include <string>
jbauch555604a2016-04-26 03:13:22 -070019
Yves Gerey3e707812018-11-28 16:47:49 +010020#include "api/jsep.h"
Steve Anton10542f22019-01-11 09:11:00 -080021#include "api/peer_connection_interface.h"
Mirko Bonadeid9708072019-01-25 20:26:48 +010022#include "api/scoped_refptr.h"
Steve Anton10542f22019-01-11 09:11:00 -080023#include "p2p/base/transport_description.h"
24#include "p2p/base/transport_description_factory.h"
25#include "pc/media_session.h"
26#include "pc/peer_connection_internal.h"
27#include "rtc_base/constructor_magic.h"
28#include "rtc_base/message_handler.h"
Steve Anton10542f22019-01-11 09:11:00 -080029#include "rtc_base/rtc_certificate.h"
30#include "rtc_base/rtc_certificate_generator.h"
Yves Gerey3e707812018-11-28 16:47:49 +010031#include "rtc_base/third_party/sigslot/sigslot.h"
32#include "rtc_base/thread.h"
Amit Hilbuchbcd39d42019-01-25 17:13:56 -080033#include "rtc_base/unique_id_generator.h"
wu@webrtc.org91053e72013-08-10 07:18:04 +000034
wu@webrtc.org91053e72013-08-10 07:18:04 +000035namespace webrtc {
wu@webrtc.org91053e72013-08-10 07:18:04 +000036
Henrik Boströmd03c23b2016-06-01 11:44:18 +020037// DTLS certificate request callback class.
38class WebRtcCertificateGeneratorCallback
39 : public rtc::RTCCertificateGeneratorCallback,
40 public sigslot::has_slots<> {
wu@webrtc.org91053e72013-08-10 07:18:04 +000041 public:
Henrik Boströmd03c23b2016-06-01 11:44:18 +020042 // |rtc::RTCCertificateGeneratorCallback| overrides.
43 void OnSuccess(
44 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate) override;
45 void OnFailure() override;
wu@webrtc.org91053e72013-08-10 07:18:04 +000046
Henrik Boströmd03c23b2016-06-01 11:44:18 +020047 sigslot::signal0<> SignalRequestFailed;
Henrik Boströmd8281982015-08-27 10:12:24 +020048 sigslot::signal1<const rtc::scoped_refptr<rtc::RTCCertificate>&>
49 SignalCertificateReady;
wu@webrtc.org91053e72013-08-10 07:18:04 +000050};
51
52struct CreateSessionDescriptionRequest {
53 enum Type {
54 kOffer,
55 kAnswer,
56 };
57
Yves Gerey665174f2018-06-19 15:03:05 +020058 CreateSessionDescriptionRequest(Type type,
59 CreateSessionDescriptionObserver* observer,
60 const cricket::MediaSessionOptions& options)
61 : type(type), observer(observer), options(options) {}
wu@webrtc.org91053e72013-08-10 07:18:04 +000062
63 Type type;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +000064 rtc::scoped_refptr<CreateSessionDescriptionObserver> observer;
wu@webrtc.org91053e72013-08-10 07:18:04 +000065 cricket::MediaSessionOptions options;
66};
67
Henrik Boströmd03c23b2016-06-01 11:44:18 +020068// This class is used to create offer/answer session description. Certificates
69// for WebRtcSession/DTLS are either supplied at construction or generated
70// asynchronously. It queues the create offer/answer request until the
71// certificate generation has completed, i.e. when OnCertificateRequestFailed or
72// OnCertificateReady is called.
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +000073class WebRtcSessionDescriptionFactory : public rtc::MessageHandler,
Henrik Boström5e56c592015-08-11 10:33:13 +020074 public sigslot::has_slots<> {
wu@webrtc.org91053e72013-08-10 07:18:04 +000075 public:
Steve Antond5585ca2017-10-23 14:49:26 -070076 // Can specify either a |cert_generator| or |certificate| to enable DTLS. If
77 // a certificate generator is given, starts generating the certificate
78 // asynchronously. If a certificate is given, will use that for identifying
79 // over DTLS. If neither is specified, DTLS is disabled.
wu@webrtc.org91053e72013-08-10 07:18:04 +000080 WebRtcSessionDescriptionFactory(
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +000081 rtc::Thread* signaling_thread,
wu@webrtc.org91053e72013-08-10 07:18:04 +000082 cricket::ChannelManager* channel_manager,
Steve Anton2d8609c2018-01-23 16:38:46 -080083 PeerConnectionInternal* pc,
Henrik Boströmd03c23b2016-06-01 11:44:18 +020084 const std::string& session_id,
Steve Antond5585ca2017-10-23 14:49:26 -070085 std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator,
Amit Hilbuchbcd39d42019-01-25 17:13:56 -080086 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate,
87 rtc::UniqueRandomIdGenerator* ssrc_generator);
wu@webrtc.org91053e72013-08-10 07:18:04 +000088 virtual ~WebRtcSessionDescriptionFactory();
89
90 static void CopyCandidatesFromSessionDescription(
deadbeef0ed85b22016-02-23 17:24:52 -080091 const SessionDescriptionInterface* source_desc,
92 const std::string& content_name,
93 SessionDescriptionInterface* dest_desc);
wu@webrtc.org91053e72013-08-10 07:18:04 +000094
95 void CreateOffer(
96 CreateSessionDescriptionObserver* observer,
deadbeefab9b2d12015-10-14 11:33:11 -070097 const PeerConnectionInterface::RTCOfferAnswerOptions& options,
98 const cricket::MediaSessionOptions& session_options);
99 void CreateAnswer(CreateSessionDescriptionObserver* observer,
deadbeefab9b2d12015-10-14 11:33:11 -0700100 const cricket::MediaSessionOptions& session_options);
wu@webrtc.org91053e72013-08-10 07:18:04 +0000101
henrike@webrtc.orgb90991d2014-03-04 19:54:57 +0000102 void SetSdesPolicy(cricket::SecurePolicy secure_policy);
103 cricket::SecurePolicy SdesPolicy() const;
wu@webrtc.org91053e72013-08-10 07:18:04 +0000104
jbauch5869f502017-06-29 12:31:36 -0700105 void set_enable_encrypted_rtp_header_extensions(bool enable) {
106 session_desc_factory_.set_enable_encrypted_rtp_header_extensions(enable);
107 }
108
Steve Anton8f66ddb2018-12-10 16:08:05 -0800109 void set_is_unified_plan(bool is_unified_plan) {
110 session_desc_factory_.set_is_unified_plan(is_unified_plan);
111 }
112
Henrik Boströmd8281982015-08-27 10:12:24 +0200113 sigslot::signal1<const rtc::scoped_refptr<rtc::RTCCertificate>&>
114 SignalCertificateReady;
wu@webrtc.org91053e72013-08-10 07:18:04 +0000115
116 // For testing.
Henrik Boström87713d02015-08-25 09:53:21 +0200117 bool waiting_for_certificate_for_testing() const {
118 return certificate_request_state_ == CERTIFICATE_WAITING;
wu@webrtc.org364f2042013-11-20 21:49:41 +0000119 }
wu@webrtc.org91053e72013-08-10 07:18:04 +0000120
121 private:
Henrik Boström87713d02015-08-25 09:53:21 +0200122 enum CertificateRequestState {
123 CERTIFICATE_NOT_NEEDED,
124 CERTIFICATE_WAITING,
125 CERTIFICATE_SUCCEEDED,
126 CERTIFICATE_FAILED,
wu@webrtc.org91053e72013-08-10 07:18:04 +0000127 };
128
129 // MessageHandler implementation.
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000130 virtual void OnMessage(rtc::Message* msg);
wu@webrtc.org91053e72013-08-10 07:18:04 +0000131
132 void InternalCreateOffer(CreateSessionDescriptionRequest request);
133 void InternalCreateAnswer(CreateSessionDescriptionRequest request);
tommi0f620f42015-07-09 03:25:02 -0700134 // Posts failure notifications for all pending session description requests.
135 void FailPendingRequests(const std::string& reason);
wu@webrtc.org91053e72013-08-10 07:18:04 +0000136 void PostCreateSessionDescriptionFailed(
137 CreateSessionDescriptionObserver* observer,
138 const std::string& error);
139 void PostCreateSessionDescriptionSucceeded(
140 CreateSessionDescriptionObserver* observer,
Steve Antona3a92c22017-12-07 10:27:41 -0800141 std::unique_ptr<SessionDescriptionInterface> description);
wu@webrtc.org91053e72013-08-10 07:18:04 +0000142
Henrik Boströmd03c23b2016-06-01 11:44:18 +0200143 void OnCertificateRequestFailed();
Henrik Boströmd8281982015-08-27 10:12:24 +0200144 void SetCertificate(
145 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate);
wu@webrtc.org91053e72013-08-10 07:18:04 +0000146
147 std::queue<CreateSessionDescriptionRequest>
148 create_session_description_requests_;
tommi0f620f42015-07-09 03:25:02 -0700149 rtc::Thread* const signaling_thread_;
wu@webrtc.org91053e72013-08-10 07:18:04 +0000150 cricket::TransportDescriptionFactory transport_desc_factory_;
151 cricket::MediaSessionDescriptionFactory session_desc_factory_;
Peter Boström0c4e06b2015-10-07 12:23:21 +0200152 uint64_t session_version_;
Henrik Boströmd03c23b2016-06-01 11:44:18 +0200153 const std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator_;
Steve Antond5585ca2017-10-23 14:49:26 -0700154 // TODO(jiayl): remove the dependency on peer connection once bug 2264 is
155 // fixed.
Steve Anton2d8609c2018-01-23 16:38:46 -0800156 PeerConnectionInternal* const pc_;
tommi0f620f42015-07-09 03:25:02 -0700157 const std::string session_id_;
Henrik Boström87713d02015-08-25 09:53:21 +0200158 CertificateRequestState certificate_request_state_;
wu@webrtc.org91053e72013-08-10 07:18:04 +0000159
henrikg3c089d72015-09-16 05:37:44 -0700160 RTC_DISALLOW_COPY_AND_ASSIGN(WebRtcSessionDescriptionFactory);
wu@webrtc.org91053e72013-08-10 07:18:04 +0000161};
wu@webrtc.org91053e72013-08-10 07:18:04 +0000162} // namespace webrtc
163
Steve Anton10542f22019-01-11 09:11:00 -0800164#endif // PC_WEBRTC_SESSION_DESCRIPTION_FACTORY_H_