12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /**
- * Copyright (c) 2019 Paul-Louis Ageneau
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
- #ifndef RTC_DTLS_TRANSPORT_H
- #define RTC_DTLS_TRANSPORT_H
- #include "certificate.hpp"
- #include "include.hpp"
- #include "peerconnection.hpp"
- #include "queue.hpp"
- #include "tls.hpp"
- #include "transport.hpp"
- #include <atomic>
- #include <functional>
- #include <memory>
- #include <mutex>
- #include <thread>
- namespace rtc {
- class IceTransport;
- class DtlsTransport : public Transport {
- public:
- static void Init();
- static void Cleanup();
- using verifier_callback = std::function<bool(const std::string &fingerprint)>;
- DtlsTransport(std::shared_ptr<IceTransport> lower, certificate_ptr certificate,
- verifier_callback verifierCallback, state_callback stateChangeCallback);
- ~DtlsTransport();
- virtual void start() override;
- virtual bool stop() override;
- virtual bool send(message_ptr message) override; // false if dropped
- protected:
- virtual void incoming(message_ptr message) override;
- virtual void postHandshake();
- void runRecvLoop();
- const certificate_ptr mCertificate;
- const verifier_callback mVerifierCallback;
- const bool mIsClient;
- Queue<message_ptr> mIncomingQueue;
- std::thread mRecvThread;
- #if USE_GNUTLS
- gnutls_session_t mSession;
- static int CertificateCallback(gnutls_session_t session);
- static ssize_t WriteCallback(gnutls_transport_ptr_t ptr, const void *data, size_t len);
- static ssize_t ReadCallback(gnutls_transport_ptr_t ptr, void *data, size_t maxlen);
- static int TimeoutCallback(gnutls_transport_ptr_t ptr, unsigned int ms);
- #else
- SSL_CTX *mCtx = NULL;
- SSL *mSsl = NULL;
- BIO *mInBio, *mOutBio;
- static BIO_METHOD *BioMethods;
- static int TransportExIndex;
- static std::mutex GlobalMutex;
- static int CertificateCallback(int preverify_ok, X509_STORE_CTX *ctx);
- static void InfoCallback(const SSL *ssl, int where, int ret);
- static int BioMethodNew(BIO *bio);
- static int BioMethodFree(BIO *bio);
- static int BioMethodWrite(BIO *bio, const char *in, int inl);
- static long BioMethodCtrl(BIO *bio, int cmd, long num, void *ptr);
- #endif
- };
- } // namespace rtc
- #endif
|