// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_DISPATCHER_HOST_H_ #define CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_DISPATCHER_HOST_H_ #include #include #include #include #include #include "base/macros.h" #include "content/browser/renderer_host/p2p/socket_host_throttler.h" #include "content/common/p2p_socket_type.h" #include "content/public/browser/browser_message_filter.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/render_process_host.h" #include "net/base/ip_address.h" #include "net/base/ip_endpoint.h" #include "net/base/network_change_notifier.h" namespace net { class URLRequestContextGetter; } namespace rtc { struct PacketOptions; } namespace content { class P2PSocketHost; class ResourceContext; class P2PSocketDispatcherHost : public content::BrowserMessageFilter, public net::NetworkChangeNotifier::IPAddressObserver { public: P2PSocketDispatcherHost(content::ResourceContext* resource_context, net::URLRequestContextGetter* url_context); // content::BrowserMessageFilter overrides. void OnChannelClosing() override; void OnDestruct() const override; bool OnMessageReceived(const IPC::Message& message) override; // net::NetworkChangeNotifier::IPAddressObserver interface. void OnIPAddressChanged() override; // Starts the RTP packet header dumping. Must be called on the IO thread. void StartRtpDump( bool incoming, bool outgoing, const RenderProcessHost::WebRtcRtpPacketCallback& packet_callback); // Stops the RTP packet header dumping. Must be Called on the UI thread. void StopRtpDumpOnUIThread(bool incoming, bool outgoing); protected: ~P2PSocketDispatcherHost() override; private: friend struct BrowserThread::DeleteOnThread; friend class base::DeleteHelper; typedef std::map SocketsMap; class DnsRequest; P2PSocketHost* LookupSocket(int socket_id); // Handlers for the messages coming from the renderer. void OnStartNetworkNotifications(); void OnStopNetworkNotifications(); void OnGetHostAddress(const std::string& host_name, int32_t request_id); void OnCreateSocket(P2PSocketType type, int socket_id, const net::IPEndPoint& local_address, const P2PHostAndIPEndPoint& remote_address); void OnAcceptIncomingTcpConnection(int listen_socket_id, const net::IPEndPoint& remote_address, int connected_socket_id); void OnSend(int socket_id, const net::IPEndPoint& socket_address, const std::vector& data, const rtc::PacketOptions& options, uint64_t packet_id); void OnSetOption(int socket_id, P2PSocketOption option, int value); void OnDestroySocket(int socket_id); void DoGetNetworkList(); void SendNetworkList(const net::NetworkInterfaceList& list, const net::IPAddress& default_ipv4_local_address, const net::IPAddress& default_ipv6_local_address); // This connects a UDP socket to a public IP address and gets local // address. Since it binds to the "any" address (0.0.0.0 or ::) internally, it // retrieves the default local address. net::IPAddress GetDefaultLocalAddress(int family); void OnAddressResolved(DnsRequest* request, const net::IPAddressList& addresses); void StopRtpDumpOnIOThread(bool incoming, bool outgoing); content::ResourceContext* resource_context_; scoped_refptr url_context_; SocketsMap sockets_; bool monitoring_networks_; std::set dns_requests_; P2PMessageThrottler throttler_; net::IPAddress default_ipv4_local_address_; net::IPAddress default_ipv6_local_address_; bool dump_incoming_rtp_packet_; bool dump_outgoing_rtp_packet_; RenderProcessHost::WebRtcRtpPacketCallback packet_callback_; DISALLOW_COPY_AND_ASSIGN(P2PSocketDispatcherHost); }; } // namespace content #endif // CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_DISPATCHER_HOST_H_