OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_H_ |
7 | 7 |
| 8 #include "base/memory/weak_ptr.h" |
8 #include "content/common/content_export.h" | 9 #include "content/common/content_export.h" |
9 #include "content/common/p2p_socket_type.h" | 10 #include "content/common/p2p_socket_type.h" |
| 11 #include "content/public/browser/render_process_host.h" |
10 #include "net/base/ip_endpoint.h" | 12 #include "net/base/ip_endpoint.h" |
11 #include "net/udp/datagram_socket.h" | 13 #include "net/udp/datagram_socket.h" |
12 | 14 |
13 namespace IPC { | 15 namespace IPC { |
14 class Sender; | 16 class Sender; |
15 } | 17 } |
16 | 18 |
17 namespace net { | 19 namespace net { |
18 class URLRequestContextGetter; | 20 class URLRequestContextGetter; |
19 } | 21 } |
(...skipping 10 matching lines...) Expand all Loading... |
30 // This method can handle only RTP packet, otherwise this method must not be | 32 // This method can handle only RTP packet, otherwise this method must not be |
31 // called. It will try to do, 1. update absolute send time extension header | 33 // called. It will try to do, 1. update absolute send time extension header |
32 // if present with current time and 2. update HMAC in RTP packet. | 34 // if present with current time and 2. update HMAC in RTP packet. |
33 // If abs_send_time is 0, ApplyPacketOption will get current time from system. | 35 // If abs_send_time is 0, ApplyPacketOption will get current time from system. |
34 CONTENT_EXPORT bool ApplyPacketOptions(char* data, int length, | 36 CONTENT_EXPORT bool ApplyPacketOptions(char* data, int length, |
35 const talk_base::PacketOptions& options, | 37 const talk_base::PacketOptions& options, |
36 uint32 abs_send_time); | 38 uint32 abs_send_time); |
37 | 39 |
38 // Helper method which finds RTP ofset and length if the packet is encapsulated | 40 // Helper method which finds RTP ofset and length if the packet is encapsulated |
39 // in a TURN Channel Message or TURN Send Indication message. | 41 // in a TURN Channel Message or TURN Send Indication message. |
40 CONTENT_EXPORT bool GetRtpPacketStartPositionAndLength(char* data, int length, | 42 CONTENT_EXPORT bool GetRtpPacketStartPositionAndLength(const char* data, |
| 43 int length, |
41 int* rtp_start_pos, | 44 int* rtp_start_pos, |
42 int* rtp_packet_length); | 45 int* rtp_packet_length); |
43 // Helper method which updates absoulute send time extension if present. | 46 // Helper method which updates absoulute send time extension if present. |
44 CONTENT_EXPORT bool UpdateRtpAbsSendTimeExtn(char* rtp, int length, | 47 CONTENT_EXPORT bool UpdateRtpAbsSendTimeExtn(char* rtp, int length, |
45 int extension_id, | 48 int extension_id, |
46 uint32 abs_send_time); | 49 uint32 abs_send_time); |
47 | 50 |
48 } // packet_processing_helpers | 51 } // packet_processing_helpers |
49 | 52 |
50 // Base class for P2P sockets. | 53 // Base class for P2P sockets. |
51 class CONTENT_EXPORT P2PSocketHost { | 54 class CONTENT_EXPORT P2PSocketHost { |
52 public: | 55 public: |
53 static const int kStunHeaderSize = 20; | 56 static const int kStunHeaderSize = 20; |
54 // Creates P2PSocketHost of the specific type. | 57 // Creates P2PSocketHost of the specific type. |
55 static P2PSocketHost* Create(IPC::Sender* message_sender, | 58 static P2PSocketHost* Create(IPC::Sender* message_sender, |
56 int id, P2PSocketType type, | 59 int socket_id, |
| 60 P2PSocketType type, |
57 net::URLRequestContextGetter* url_context, | 61 net::URLRequestContextGetter* url_context, |
58 P2PMessageThrottler* throttler); | 62 P2PMessageThrottler* throttler); |
59 | 63 |
60 virtual ~P2PSocketHost(); | 64 virtual ~P2PSocketHost(); |
61 | 65 |
62 // Initalizes the socket. Returns false when initiazations fails. | 66 // Initalizes the socket. Returns false when initiazations fails. |
63 virtual bool Init(const net::IPEndPoint& local_address, | 67 virtual bool Init(const net::IPEndPoint& local_address, |
64 const P2PHostAndIPEndPoint& remote_address) = 0; | 68 const P2PHostAndIPEndPoint& remote_address) = 0; |
65 | 69 |
66 // Sends |data| on the socket to |to|. | 70 // Sends |data| on the socket to |to|. |
67 virtual void Send(const net::IPEndPoint& to, | 71 virtual void Send(const net::IPEndPoint& to, |
68 const std::vector<char>& data, | 72 const std::vector<char>& data, |
69 const talk_base::PacketOptions& options, | 73 const talk_base::PacketOptions& options, |
70 uint64 packet_id) = 0; | 74 uint64 packet_id) = 0; |
71 | 75 |
72 virtual P2PSocketHost* AcceptIncomingTcpConnection( | 76 virtual P2PSocketHost* AcceptIncomingTcpConnection( |
73 const net::IPEndPoint& remote_address, int id) = 0; | 77 const net::IPEndPoint& remote_address, int id) = 0; |
74 | 78 |
75 virtual bool SetOption(P2PSocketOption option, int value) = 0; | 79 virtual bool SetOption(P2PSocketOption option, int value) = 0; |
76 | 80 |
| 81 void StartRtpDump( |
| 82 bool incoming, |
| 83 bool outgoing, |
| 84 const RenderProcessHost::WebRtcRtpPacketCallback& packet_callback); |
| 85 void StopRtpDump(bool incoming, bool outgoing); |
| 86 |
77 protected: | 87 protected: |
78 friend class P2PSocketHostTcpTestBase; | 88 friend class P2PSocketHostTcpTestBase; |
79 | 89 |
80 // TODO(mallinath) - Remove this below enum and use one defined in | 90 // TODO(mallinath) - Remove this below enum and use one defined in |
81 // libjingle/souce/talk/p2p/base/stun.h | 91 // libjingle/souce/talk/p2p/base/stun.h |
82 enum StunMessageType { | 92 enum StunMessageType { |
83 STUN_BINDING_REQUEST = 0x0001, | 93 STUN_BINDING_REQUEST = 0x0001, |
84 STUN_BINDING_RESPONSE = 0x0101, | 94 STUN_BINDING_RESPONSE = 0x0101, |
85 STUN_BINDING_ERROR_RESPONSE = 0x0111, | 95 STUN_BINDING_ERROR_RESPONSE = 0x0111, |
86 STUN_SHARED_SECRET_REQUEST = 0x0002, | 96 STUN_SHARED_SECRET_REQUEST = 0x0002, |
(...skipping 17 matching lines...) Expand all Loading... |
104 }; | 114 }; |
105 | 115 |
106 enum State { | 116 enum State { |
107 STATE_UNINITIALIZED, | 117 STATE_UNINITIALIZED, |
108 STATE_CONNECTING, | 118 STATE_CONNECTING, |
109 STATE_TLS_CONNECTING, | 119 STATE_TLS_CONNECTING, |
110 STATE_OPEN, | 120 STATE_OPEN, |
111 STATE_ERROR, | 121 STATE_ERROR, |
112 }; | 122 }; |
113 | 123 |
114 P2PSocketHost(IPC::Sender* message_sender, int id); | 124 P2PSocketHost(IPC::Sender* message_sender, int socket_id); |
115 | 125 |
116 // Verifies that the packet |data| has a valid STUN header. In case | 126 // Verifies that the packet |data| has a valid STUN header. In case |
117 // of success stores type of the message in |type|. | 127 // of success stores type of the message in |type|. |
118 static bool GetStunPacketType(const char* data, int data_size, | 128 static bool GetStunPacketType(const char* data, int data_size, |
119 StunMessageType* type); | 129 StunMessageType* type); |
120 static bool IsRequestOrResponse(StunMessageType type); | 130 static bool IsRequestOrResponse(StunMessageType type); |
121 | 131 |
| 132 // Calls |packet_dump_callback_| to record the RTP header. |
| 133 void DumpRtpPacket(const char* packet, size_t length, bool incoming); |
| 134 |
| 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, |
| 139 bool incoming); |
| 140 |
122 IPC::Sender* message_sender_; | 141 IPC::Sender* message_sender_; |
123 int id_; | 142 int id_; |
124 State state_; | 143 State state_; |
| 144 bool dump_incoming_rtp_packet_; |
| 145 bool dump_outgoing_rtp_packet_; |
| 146 RenderProcessHost::WebRtcRtpPacketCallback packet_dump_callback_; |
| 147 |
| 148 base::WeakPtrFactory<P2PSocketHost> weak_ptr_factory_; |
125 | 149 |
126 DISALLOW_COPY_AND_ASSIGN(P2PSocketHost); | 150 DISALLOW_COPY_AND_ASSIGN(P2PSocketHost); |
127 }; | 151 }; |
128 | 152 |
129 } // namespace content | 153 } // namespace content |
130 | 154 |
131 #endif // CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_H_ | 155 #endif // CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_H_ |
OLD | NEW |