2013-08-10 07:18:04 +00:00
|
|
|
/*
|
|
|
|
|
* libjingle
|
2015-01-20 21:36:13 +00:00
|
|
|
* Copyright 2013 Google Inc.
|
2013-08-10 07:18:04 +00:00
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
|
*
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
|
|
|
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
|
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef TALK_APP_WEBRTC_WEBRTCSESSIONDESCRIPTIONFACTORY_H_
|
|
|
|
|
#define TALK_APP_WEBRTC_WEBRTCSESSIONDESCRIPTIONFACTORY_H_
|
|
|
|
|
|
2015-08-11 10:33:13 +02:00
|
|
|
#include "talk/app/webrtc/dtlsidentitystore.h"
|
2013-08-10 07:18:04 +00:00
|
|
|
#include "talk/app/webrtc/peerconnectioninterface.h"
|
|
|
|
|
#include "talk/session/media/mediasession.h"
|
2015-08-11 10:33:13 +02:00
|
|
|
#include "webrtc/p2p/base/transportdescriptionfactory.h"
|
2014-08-13 17:26:08 +00:00
|
|
|
#include "webrtc/base/messagehandler.h"
|
2015-08-25 09:53:21 +02:00
|
|
|
#include "webrtc/base/rtccertificate.h"
|
2013-08-10 07:18:04 +00:00
|
|
|
|
|
|
|
|
namespace cricket {
|
|
|
|
|
class ChannelManager;
|
|
|
|
|
class TransportDescriptionFactory;
|
|
|
|
|
} // namespace cricket
|
|
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
class CreateSessionDescriptionObserver;
|
|
|
|
|
class MediaConstraintsInterface;
|
|
|
|
|
class MediaStreamSignaling;
|
|
|
|
|
class SessionDescriptionInterface;
|
|
|
|
|
class WebRtcSession;
|
|
|
|
|
|
|
|
|
|
// DTLS identity request callback class.
|
2015-08-11 10:33:13 +02:00
|
|
|
class WebRtcIdentityRequestObserver : public DtlsIdentityRequestObserver,
|
2013-08-10 07:18:04 +00:00
|
|
|
public sigslot::has_slots<> {
|
|
|
|
|
public:
|
2015-08-11 10:33:13 +02:00
|
|
|
// DtlsIdentityRequestObserver overrides.
|
2015-03-04 22:17:38 +00:00
|
|
|
void OnFailure(int error) override;
|
|
|
|
|
void OnSuccess(const std::string& der_cert,
|
|
|
|
|
const std::string& der_private_key) override;
|
2015-08-11 10:33:13 +02:00
|
|
|
void OnSuccess(rtc::scoped_ptr<rtc::SSLIdentity> identity) override;
|
2013-08-10 07:18:04 +00:00
|
|
|
|
|
|
|
|
sigslot::signal1<int> SignalRequestFailed;
|
2015-08-27 10:12:24 +02:00
|
|
|
sigslot::signal1<const rtc::scoped_refptr<rtc::RTCCertificate>&>
|
|
|
|
|
SignalCertificateReady;
|
2013-08-10 07:18:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct CreateSessionDescriptionRequest {
|
|
|
|
|
enum Type {
|
|
|
|
|
kOffer,
|
|
|
|
|
kAnswer,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
CreateSessionDescriptionRequest(
|
|
|
|
|
Type type,
|
|
|
|
|
CreateSessionDescriptionObserver* observer,
|
|
|
|
|
const cricket::MediaSessionOptions& options)
|
|
|
|
|
: type(type),
|
|
|
|
|
observer(observer),
|
|
|
|
|
options(options) {}
|
|
|
|
|
|
|
|
|
|
Type type;
|
2014-07-29 17:36:52 +00:00
|
|
|
rtc::scoped_refptr<CreateSessionDescriptionObserver> observer;
|
2013-08-10 07:18:04 +00:00
|
|
|
cricket::MediaSessionOptions options;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// This class is used to create offer/answer session description with regards to
|
|
|
|
|
// the async DTLS identity generation for WebRtcSession.
|
|
|
|
|
// It queues the create offer/answer request until the DTLS identity
|
|
|
|
|
// request has completed, i.e. when OnIdentityRequestFailed or OnIdentityReady
|
|
|
|
|
// is called.
|
2014-07-29 17:36:52 +00:00
|
|
|
class WebRtcSessionDescriptionFactory : public rtc::MessageHandler,
|
2015-08-11 10:33:13 +02:00
|
|
|
public sigslot::has_slots<> {
|
2013-08-10 07:18:04 +00:00
|
|
|
public:
|
2015-08-25 09:53:21 +02:00
|
|
|
// Construct with DTLS disabled.
|
2015-09-23 11:50:27 -07:00
|
|
|
WebRtcSessionDescriptionFactory(rtc::Thread* signaling_thread,
|
|
|
|
|
cricket::ChannelManager* channel_manager,
|
|
|
|
|
MediaStreamSignaling* mediastream_signaling,
|
|
|
|
|
WebRtcSession* session,
|
|
|
|
|
const std::string& session_id,
|
|
|
|
|
cricket::DataChannelType dct);
|
2015-08-25 09:53:21 +02:00
|
|
|
|
|
|
|
|
// Construct with DTLS enabled using the specified |dtls_identity_store| to
|
|
|
|
|
// generate a certificate.
|
2013-08-10 07:18:04 +00:00
|
|
|
WebRtcSessionDescriptionFactory(
|
2014-07-29 17:36:52 +00:00
|
|
|
rtc::Thread* signaling_thread,
|
2013-08-10 07:18:04 +00:00
|
|
|
cricket::ChannelManager* channel_manager,
|
|
|
|
|
MediaStreamSignaling* mediastream_signaling,
|
2015-08-11 10:33:13 +02:00
|
|
|
rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store,
|
2013-08-10 07:18:04 +00:00
|
|
|
WebRtcSession* session,
|
|
|
|
|
const std::string& session_id,
|
2015-08-25 09:53:21 +02:00
|
|
|
cricket::DataChannelType dct);
|
|
|
|
|
|
|
|
|
|
// Construct with DTLS enabled using the specified (already generated)
|
|
|
|
|
// |certificate|.
|
|
|
|
|
WebRtcSessionDescriptionFactory(
|
|
|
|
|
rtc::Thread* signaling_thread,
|
|
|
|
|
cricket::ChannelManager* channel_manager,
|
|
|
|
|
MediaStreamSignaling* mediastream_signaling,
|
|
|
|
|
const rtc::scoped_refptr<rtc::RTCCertificate>& certificate,
|
|
|
|
|
WebRtcSession* session,
|
|
|
|
|
const std::string& session_id,
|
|
|
|
|
cricket::DataChannelType dct);
|
2013-08-10 07:18:04 +00:00
|
|
|
virtual ~WebRtcSessionDescriptionFactory();
|
|
|
|
|
|
|
|
|
|
static void CopyCandidatesFromSessionDescription(
|
|
|
|
|
const SessionDescriptionInterface* source_desc,
|
|
|
|
|
SessionDescriptionInterface* dest_desc);
|
|
|
|
|
|
|
|
|
|
void CreateOffer(
|
|
|
|
|
CreateSessionDescriptionObserver* observer,
|
2014-08-04 18:34:16 +00:00
|
|
|
const PeerConnectionInterface::RTCOfferAnswerOptions& options);
|
2013-08-10 07:18:04 +00:00
|
|
|
void CreateAnswer(
|
|
|
|
|
CreateSessionDescriptionObserver* observer,
|
|
|
|
|
const MediaConstraintsInterface* constraints);
|
|
|
|
|
|
2014-03-04 19:54:57 +00:00
|
|
|
void SetSdesPolicy(cricket::SecurePolicy secure_policy);
|
|
|
|
|
cricket::SecurePolicy SdesPolicy() const;
|
2013-08-10 07:18:04 +00:00
|
|
|
|
2015-08-27 10:12:24 +02:00
|
|
|
sigslot::signal1<const rtc::scoped_refptr<rtc::RTCCertificate>&>
|
|
|
|
|
SignalCertificateReady;
|
2013-08-10 07:18:04 +00:00
|
|
|
|
|
|
|
|
// For testing.
|
2015-08-25 09:53:21 +02:00
|
|
|
bool waiting_for_certificate_for_testing() const {
|
|
|
|
|
return certificate_request_state_ == CERTIFICATE_WAITING;
|
2013-11-20 21:49:41 +00:00
|
|
|
}
|
2013-08-10 07:18:04 +00:00
|
|
|
|
|
|
|
|
private:
|
2015-08-25 09:53:21 +02:00
|
|
|
enum CertificateRequestState {
|
|
|
|
|
CERTIFICATE_NOT_NEEDED,
|
|
|
|
|
CERTIFICATE_WAITING,
|
|
|
|
|
CERTIFICATE_SUCCEEDED,
|
|
|
|
|
CERTIFICATE_FAILED,
|
2013-08-10 07:18:04 +00:00
|
|
|
};
|
|
|
|
|
|
2015-08-25 09:53:21 +02:00
|
|
|
WebRtcSessionDescriptionFactory(
|
|
|
|
|
rtc::Thread* signaling_thread,
|
|
|
|
|
cricket::ChannelManager* channel_manager,
|
|
|
|
|
MediaStreamSignaling* mediastream_signaling,
|
|
|
|
|
rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store,
|
|
|
|
|
const rtc::scoped_refptr<WebRtcIdentityRequestObserver>&
|
|
|
|
|
identity_request_observer,
|
|
|
|
|
WebRtcSession* session,
|
|
|
|
|
const std::string& session_id,
|
|
|
|
|
cricket::DataChannelType dct,
|
|
|
|
|
bool dtls_enabled);
|
|
|
|
|
|
2013-08-10 07:18:04 +00:00
|
|
|
// MessageHandler implementation.
|
2014-07-29 17:36:52 +00:00
|
|
|
virtual void OnMessage(rtc::Message* msg);
|
2013-08-10 07:18:04 +00:00
|
|
|
|
|
|
|
|
void InternalCreateOffer(CreateSessionDescriptionRequest request);
|
|
|
|
|
void InternalCreateAnswer(CreateSessionDescriptionRequest request);
|
2015-07-09 03:25:02 -07:00
|
|
|
// Posts failure notifications for all pending session description requests.
|
|
|
|
|
void FailPendingRequests(const std::string& reason);
|
2013-08-10 07:18:04 +00:00
|
|
|
void PostCreateSessionDescriptionFailed(
|
|
|
|
|
CreateSessionDescriptionObserver* observer,
|
|
|
|
|
const std::string& error);
|
|
|
|
|
void PostCreateSessionDescriptionSucceeded(
|
|
|
|
|
CreateSessionDescriptionObserver* observer,
|
|
|
|
|
SessionDescriptionInterface* description);
|
|
|
|
|
|
|
|
|
|
void OnIdentityRequestFailed(int error);
|
2015-08-27 10:12:24 +02:00
|
|
|
void SetCertificate(
|
|
|
|
|
const rtc::scoped_refptr<rtc::RTCCertificate>& certificate);
|
2013-08-10 07:18:04 +00:00
|
|
|
|
|
|
|
|
std::queue<CreateSessionDescriptionRequest>
|
|
|
|
|
create_session_description_requests_;
|
2015-07-09 03:25:02 -07:00
|
|
|
rtc::Thread* const signaling_thread_;
|
|
|
|
|
MediaStreamSignaling* const mediastream_signaling_;
|
2013-08-10 07:18:04 +00:00
|
|
|
cricket::TransportDescriptionFactory transport_desc_factory_;
|
|
|
|
|
cricket::MediaSessionDescriptionFactory session_desc_factory_;
|
|
|
|
|
uint64 session_version_;
|
2015-08-25 09:53:21 +02:00
|
|
|
const rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store_;
|
|
|
|
|
const rtc::scoped_refptr<WebRtcIdentityRequestObserver>
|
|
|
|
|
identity_request_observer_;
|
|
|
|
|
// TODO(jiayl): remove the dependency on session once bug 2264 is fixed.
|
2015-07-09 03:25:02 -07:00
|
|
|
WebRtcSession* const session_;
|
|
|
|
|
const std::string session_id_;
|
|
|
|
|
const cricket::DataChannelType data_channel_type_;
|
2015-08-25 09:53:21 +02:00
|
|
|
CertificateRequestState certificate_request_state_;
|
2013-08-10 07:18:04 +00:00
|
|
|
|
2015-09-16 05:37:44 -07:00
|
|
|
RTC_DISALLOW_COPY_AND_ASSIGN(WebRtcSessionDescriptionFactory);
|
2013-08-10 07:18:04 +00:00
|
|
|
};
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
|
|
|
|
#endif // TALK_APP_WEBRTC_WEBRTCSESSIONDESCRIPTIONFACTORY_H_
|