diff options
-rw-r--r-- | content/common/content_message_generator.h | 1 | ||||
-rw-r--r-- | content/common/websocket.h | 19 | ||||
-rw-r--r-- | content/common/websocket_messages.h | 110 | ||||
-rw-r--r-- | content/content_common.gypi | 2 | ||||
-rw-r--r-- | ipc/ipc_message_start.h | 1 |
5 files changed, 133 insertions, 0 deletions
diff --git a/content/common/content_message_generator.h b/content/common/content_message_generator.h index d99a175..2a54f56 100644 --- a/content/common/content_message_generator.h +++ b/content/common/content_message_generator.h @@ -49,4 +49,5 @@ #include "content/common/text_input_client_messages.h" #include "content/common/utility_messages.h" #include "content/common/view_messages.h" +#include "content/common/websocket_messages.h" #include "content/common/worker_messages.h" diff --git a/content/common/websocket.h b/content/common/websocket.h new file mode 100644 index 0000000..3bc8a99 --- /dev/null +++ b/content/common/websocket.h @@ -0,0 +1,19 @@ +// Copyright 2013 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_COMMON_WEBSOCKET_H_ +#define CONTENT_COMMON_WEBSOCKET_H_ + +namespace content { + +// WebSocket data message types sent between the browser and renderer processes. +enum WebSocketMessageType { + WEB_SOCKET_MESSAGE_TYPE_CONTINUATION = 0x0, + WEB_SOCKET_MESSAGE_TYPE_TEXT = 0x1, + WEB_SOCKET_MESSAGE_TYPE_BINARY = 0x2 +}; + +} // namespace content + +#endif // CONTENT_COMMON_WEBSOCKET_H_ diff --git a/content/common/websocket_messages.h b/content/common/websocket_messages.h new file mode 100644 index 0000000..67407b0 --- /dev/null +++ b/content/common/websocket_messages.h @@ -0,0 +1,110 @@ +// Copyright 2013 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. + +// Multiply-included message file, hence no include guard. + +// This file defines the IPCs for the browser-side implementation of +// WebSockets. For the legacy renderer-side implementation, see +// socket_stream_messages.h. +// TODO(ricea): Fix this comment when the legacy implementation has been +// removed. +// +// This IPC interface is based on the WebSocket multiplexing draft spec, +// http://tools.ietf.org/html/draft-ietf-hybi-websocket-multiplexing-09 + +#include <string> +#include <vector> + +#include "base/basictypes.h" +#include "content/common/content_export.h" +#include "content/common/websocket.h" +#include "googleurl/src/gurl.h" +#include "ipc/ipc_message_macros.h" + +#undef IPC_MESSAGE_EXPORT +#define IPC_MESSAGE_EXPORT CONTENT_EXPORT +#define IPC_MESSAGE_START WebSocketMsgStart + +// WebSocket messages sent from the renderer to the browser. + +// Open new virtual WebSocket connection to |socket_url|. |channel_id| is an +// identifier chosen by the renderer for the new channel. It cannot correspond +// to an existing open channel, and must be between 1 and +// 0x7FFFFFFF. |requested_protocols| is a list of tokens identifying +// sub-protocols the renderer would like to use, as described in RFC6455 +// "Subprotocols Using the WebSocket Protocol". +// +// The browser process will not send |channel_id| as-is to the remote server; it +// will try to use a short id on the wire. This saves the renderer from +// having to try to choose the ids cleverly. +IPC_MESSAGE_CONTROL4(WebSocketHostMsg_AddChannelRequest, + int /* channel_id */, + GURL /* socket_url */, + std::vector<std::string> /* requested_protocols */, + GURL /* origin */) + +// Web Socket messages sent from the browser to the renderer. + +// Respond to an AddChannelRequest for channel |channel_id|. |channel_id| is +// scoped to the renderer process; while it is unique per-renderer, the browser +// may have multiple renderers using the same id. If |fail| is true, the channel +// could not be established (the cause of the failure is not provided to the +// renderer in order to limit its ability to abuse WebSockets to perform network +// probing, etc.). If |fail| is set then the |channel_id| is available for +// re-use. |selected_protocol| is the sub-protocol the server selected, +// or empty if no sub-protocol was selected. |extensions| is the list of +// extensions negotiated for the connection. +IPC_MESSAGE_CONTROL4(WebSocketMsg_AddChannelResponse, + int /* channel_id */, + bool /* fail */, + std::string /* selected_protocol */, + std::string /* extensions */) + +// WebSocket messages that can be sent in either direction. + +IPC_ENUM_TRAITS(content::WebSocketMessageType) + +// Send a non-control frame on |channel_id|. If the sender is the renderer, it +// will be sent to the remote server. If the sender is the browser, it comes +// from the remote server. |fin| indicates that this frame is the last in the +// current message. |type| is the type of the message. On the first frame of a +// message, it must be set to either WEB_SOCKET_MESSAGE_TYPE_TEXT or +// WEB_SOCKET_MESSAGE_TYPE_BINARY. On subsequent frames, it must be set to +// WEB_SOCKET_MESSAGE_TYPE_CONTINUATION, and the type is the same as that of the +// first message. If |type| is WEB_SOCKET_MESSAGE_TYPE_TEXT, then the +// concatenation of the |data| from every frame in the message must be valid +// UTF-8. If |fin| is not set, |data| must be non-empty. +IPC_MESSAGE_CONTROL4(WebSocketMsg_SendFrame, + int /* channel_id */, + bool /* fin */, + content::WebSocketMessageType /* type */, + std::vector<char> /* data */) + +// Add |quota| tokens of send quota for channel |channel_id|. |quota| must be a +// positive integer. Both the browser and the renderer set send quota for the +// other side, and check that quota has not been exceeded when receiving +// messages. Both sides start a new channel with a quota of 0, and must wait for +// a FlowControl message before calling SendFrame. The total available quota on +// one side must never exceed 0x7FFFFFFFFFFFFFFF tokens. +IPC_MESSAGE_CONTROL2(WebSocketMsg_FlowControl, + int /* channel_id */, + int64 /* quota */) + +// Drop the channel. +// When sent by the renderer, this will cause a DropChannel message to be sent +// if the multiplex extension is in use, otherwise a Close message will be sent +// and the TCP/IP connection will be closed. +// When sent by the browser, this indicates that a Close or DropChannel has been +// received, the connection was closed, or a network or protocol error +// occurred. On receiving DropChannel, the renderer process may consider the +// |channel_id| available for reuse by a new AddChannelRequest. +// |code| is one of the reason codes specified in RFC6455 or +// draft-ietf-hybi-websocket-multiplexing-09. |reason|, if non-empty, is a +// UTF-8 encoded string which may be useful for debugging but is not necessarily +// human-readable, as supplied by the server in the Close or DropChannel +// message. +IPC_MESSAGE_CONTROL3(WebSocketMsg_DropChannel, + int /* channel_id */, + unsigned short /* code */, + std::string /* reason */) diff --git a/content/content_common.gypi b/content/content_common.gypi index f463700..50fc91b 100644 --- a/content/content_common.gypi +++ b/content/content_common.gypi @@ -326,6 +326,8 @@ 'common/utility_messages.h', 'common/view_messages.h', 'common/view_message_enums.h', + 'common/websocket.h', + 'common/websocket_messages.h', 'common/worker_messages.h', 'common/zygote_commands_linux.h', 'port/common/input_event_ack_state.h', diff --git a/ipc/ipc_message_start.h b/ipc/ipc_message_start.h index 3b7362e..3992307 100644 --- a/ipc/ipc_message_start.h +++ b/ipc/ipc_message_start.h @@ -82,6 +82,7 @@ enum IPCMessageStart { WebRtcLoggingMsgStart, TtsMsgStart, MemoryBenchmarkMsgStart, + WebSocketMsgStart, LastIPCMsgStart // Must come last. }; |