1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_H_
8 #include "base/memory/weak_ptr.h"
9 #include "content/common/content_export.h"
10 #include "content/common/p2p_socket_type.h"
11 #include "content/public/browser/render_process_host.h"
12 #include "net/base/ip_endpoint.h"
13 #include "net/udp/datagram_socket.h"
20 class URLRequestContextGetter
;
28 class P2PMessageThrottler
;
30 namespace packet_processing_helpers
{
32 // This method can handle only RTP packet, otherwise this method must not be
33 // called. It will try to do, 1. update absolute send time extension header
34 // if present with current time and 2. update HMAC in RTP packet.
35 // If abs_send_time is 0, ApplyPacketOption will get current time from system.
36 CONTENT_EXPORT
bool ApplyPacketOptions(char* data
, int length
,
37 const rtc::PacketOptions
& options
,
38 uint32 abs_send_time
);
40 // Helper method which finds RTP ofset and length if the packet is encapsulated
41 // in a TURN Channel Message or TURN Send Indication message.
42 CONTENT_EXPORT
bool GetRtpPacketStartPositionAndLength(const char* data
,
45 int* rtp_packet_length
);
46 // Helper method which updates absoulute send time extension if present.
47 CONTENT_EXPORT
bool UpdateRtpAbsSendTimeExtn(char* rtp
, int length
,
49 uint32 abs_send_time
);
51 } // packet_processing_helpers
53 // Base class for P2P sockets.
54 class CONTENT_EXPORT P2PSocketHost
{
56 static const int kStunHeaderSize
= 20;
57 // Creates P2PSocketHost of the specific type.
58 static P2PSocketHost
* Create(IPC::Sender
* message_sender
,
61 net::URLRequestContextGetter
* url_context
,
62 P2PMessageThrottler
* throttler
);
64 virtual ~P2PSocketHost();
66 // Initalizes the socket. Returns false when initiazations fails.
67 virtual bool Init(const net::IPEndPoint
& local_address
,
68 const P2PHostAndIPEndPoint
& remote_address
) = 0;
70 // Sends |data| on the socket to |to|.
71 virtual void Send(const net::IPEndPoint
& to
,
72 const std::vector
<char>& data
,
73 const rtc::PacketOptions
& options
,
74 uint64 packet_id
) = 0;
76 virtual P2PSocketHost
* AcceptIncomingTcpConnection(
77 const net::IPEndPoint
& remote_address
, int id
) = 0;
79 virtual bool SetOption(P2PSocketOption option
, int value
) = 0;
84 const RenderProcessHost::WebRtcRtpPacketCallback
& packet_callback
);
85 void StopRtpDump(bool incoming
, bool outgoing
);
88 friend class P2PSocketHostTcpTestBase
;
90 // TODO(mallinath) - Remove this below enum and use one defined in
91 // libjingle/souce/talk/p2p/base/stun.h
92 enum StunMessageType
{
93 STUN_BINDING_REQUEST
= 0x0001,
94 STUN_BINDING_RESPONSE
= 0x0101,
95 STUN_BINDING_ERROR_RESPONSE
= 0x0111,
96 STUN_SHARED_SECRET_REQUEST
= 0x0002,
97 STUN_SHARED_SECRET_RESPONSE
= 0x0102,
98 STUN_SHARED_SECRET_ERROR_RESPONSE
= 0x0112,
99 STUN_ALLOCATE_REQUEST
= 0x0003,
100 STUN_ALLOCATE_RESPONSE
= 0x0103,
101 STUN_ALLOCATE_ERROR_RESPONSE
= 0x0113,
102 STUN_SEND_REQUEST
= 0x0004,
103 STUN_SEND_RESPONSE
= 0x0104,
104 STUN_SEND_ERROR_RESPONSE
= 0x0114,
105 STUN_DATA_INDICATION
= 0x0115,
106 TURN_SEND_INDICATION
= 0x0016,
107 TURN_DATA_INDICATION
= 0x0017,
108 TURN_CREATE_PERMISSION_REQUEST
= 0x0008,
109 TURN_CREATE_PERMISSION_RESPONSE
= 0x0108,
110 TURN_CREATE_PERMISSION_ERROR_RESPONSE
= 0x0118,
111 TURN_CHANNEL_BIND_REQUEST
= 0x0009,
112 TURN_CHANNEL_BIND_RESPONSE
= 0x0109,
113 TURN_CHANNEL_BIND_ERROR_RESPONSE
= 0x0119,
119 STATE_TLS_CONNECTING
,
124 P2PSocketHost(IPC::Sender
* message_sender
, int socket_id
);
126 // Verifies that the packet |data| has a valid STUN header. In case
127 // of success stores type of the message in |type|.
128 static bool GetStunPacketType(const char* data
, int data_size
,
129 StunMessageType
* type
);
130 static bool IsRequestOrResponse(StunMessageType type
);
132 // Calls |packet_dump_callback_| to record the RTP header.
133 void DumpRtpPacket(const char* packet
, size_t length
, bool incoming
);
135 // A helper to dump the packet on the IO thread.
136 void DumpRtpPacketOnIOThread(scoped_ptr
<uint8
[]> packet_header
,
137 size_t header_length
,
138 size_t packet_length
,
141 IPC::Sender
* message_sender_
;
144 bool dump_incoming_rtp_packet_
;
145 bool dump_outgoing_rtp_packet_
;
146 RenderProcessHost::WebRtcRtpPacketCallback packet_dump_callback_
;
148 base::WeakPtrFactory
<P2PSocketHost
> weak_ptr_factory_
;
150 DISALLOW_COPY_AND_ASSIGN(P2PSocketHost
);
153 } // namespace content
155 #endif // CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_H_