| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "mojo/spy/spy.h" | 5 #include "mojo/spy/spy.h" |
| 6 | 6 |
| 7 #include <vector> |
| 8 |
| 7 #include "base/bind.h" | 9 #include "base/bind.h" |
| 8 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 9 #include "base/location.h" | 11 #include "base/location.h" |
| 10 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/message_loop/message_loop_proxy.h" |
| 11 #include "base/strings/string_number_conversions.h" | 14 #include "base/strings/string_number_conversions.h" |
| 12 #include "base/strings/string_split.h" | 15 #include "base/strings/string_split.h" |
| 13 #include "base/threading/thread.h" | 16 #include "base/threading/thread.h" |
| 14 #include "base/threading/worker_pool.h" | 17 #include "base/threading/worker_pool.h" |
| 15 | 18 |
| 16 #include "mojo/public/cpp/system/core.h" | 19 #include "mojo/public/cpp/system/core.h" |
| 17 #include "mojo/service_manager/service_manager.h" | 20 #include "mojo/service_manager/service_manager.h" |
| 21 #include "mojo/spy/public/spy.mojom.h" |
| 22 #include "mojo/spy/spy_server_impl.h" |
| 18 #include "mojo/spy/websocket_server.h" | 23 #include "mojo/spy/websocket_server.h" |
| 24 #include "url/gurl.h" |
| 19 | 25 |
| 20 namespace { | 26 namespace { |
| 21 | 27 |
| 22 const size_t kMessageBufSize = 2 * 1024; | 28 const size_t kMessageBufSize = 2 * 1024; |
| 23 const size_t kHandleBufSize = 64; | 29 const size_t kHandleBufSize = 64; |
| 24 const int kDefaultWebSocketPort = 42424; | 30 const int kDefaultWebSocketPort = 42424; |
| 25 | 31 |
| 26 void CloseHandles(MojoHandle* handles, size_t count) { | 32 void CloseHandles(MojoHandle* handles, size_t count) { |
| 27 for (size_t ix = 0; ix != count; ++count) | 33 for (size_t ix = 0; ix != count; ++count) |
| 28 MojoClose(handles[ix]); | 34 MojoClose(handles[ix]); |
| 29 } | 35 } |
| 30 | 36 |
| 31 // In charge of processing messages that flow over a | 37 // In charge of processing messages that flow over a |
| 32 // single message pipe. | 38 // single message pipe. |
| 33 class MessageProcessor : | 39 class MessageProcessor : |
| 34 public base::RefCountedThreadSafe<MessageProcessor> { | 40 public base::RefCountedThreadSafe<MessageProcessor> { |
| 35 public: | 41 public: |
| 36 | |
| 37 MessageProcessor() | 42 MessageProcessor() |
| 38 : last_result_(MOJO_RESULT_OK), | 43 : last_result_(MOJO_RESULT_OK), |
| 39 bytes_transfered_(0) { | 44 bytes_transfered_(0) { |
| 40 | |
| 41 message_count_[0] = 0; | 45 message_count_[0] = 0; |
| 42 message_count_[1] = 0; | 46 message_count_[1] = 0; |
| 43 handle_count_[0] = 0; | 47 handle_count_[0] = 0; |
| 44 handle_count_[1] = 0; | 48 handle_count_[1] = 0; |
| 45 } | 49 } |
| 46 | 50 |
| 47 void Start(mojo::ScopedMessagePipeHandle client, | 51 void Start(mojo::ScopedMessagePipeHandle client, |
| 48 mojo::ScopedMessagePipeHandle interceptor) { | 52 mojo::ScopedMessagePipeHandle interceptor) { |
| 49 std::vector<mojo::MessagePipeHandle> pipes; | 53 std::vector<mojo::MessagePipeHandle> pipes; |
| 50 pipes.push_back(client.get()); | 54 pipes.push_back(client.get()); |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 MOJO_WRITE_MESSAGE_FLAG_NONE))) { | 104 MOJO_WRITE_MESSAGE_FLAG_NONE))) { |
| 101 // On failure we own the handles. For now just close them. | 105 // On failure we own the handles. For now just close them. |
| 102 if (handles_read) | 106 if (handles_read) |
| 103 CloseHandles(hbuf.get(), handles_read); | 107 CloseHandles(hbuf.get(), handles_read); |
| 104 break; | 108 break; |
| 105 } | 109 } |
| 106 } | 110 } |
| 107 } | 111 } |
| 108 | 112 |
| 109 private: | 113 private: |
| 110 friend class base::RefCountedThreadSafe<MessageProcessor>; | 114 friend class base::RefCountedThreadSafe<MessageProcessor>; |
| 111 virtual ~MessageProcessor() {} | 115 virtual ~MessageProcessor() {} |
| 112 | 116 |
| 113 bool CheckResult(MojoResult mr) { | 117 bool CheckResult(MojoResult mr) { |
| 114 if (mr == MOJO_RESULT_OK) | 118 if (mr == MOJO_RESULT_OK) |
| 115 return true; | 119 return true; |
| 116 last_result_ = mr; | 120 last_result_ = mr; |
| 117 return false; | 121 return false; |
| 118 } | 122 } |
| 119 | 123 |
| 120 MojoResult last_result_; | 124 MojoResult last_result_; |
| 121 uint32_t bytes_transfered_; | 125 uint32_t bytes_transfered_; |
| 122 uint32_t message_count_[2]; | 126 uint32_t message_count_[2]; |
| 123 uint32_t handle_count_[2]; | 127 uint32_t handle_count_[2]; |
| 124 }; | 128 }; |
| 125 | 129 |
| 126 // In charge of intercepting access to the service manager. | 130 // In charge of intercepting access to the service manager. |
| 127 class SpyInterceptor : public mojo::ServiceManager::Interceptor { | 131 class SpyInterceptor : public mojo::ServiceManager::Interceptor { |
| 132 public: |
| 133 explicit SpyInterceptor(scoped_refptr<mojo::SpyServerImpl> spy_server) |
| 134 : spy_server_(spy_server), |
| 135 proxy_(base::MessageLoopProxy::current()) { |
| 136 } |
| 137 |
| 128 private: | 138 private: |
| 129 virtual mojo::ScopedMessagePipeHandle OnConnectToClient( | 139 virtual mojo::ScopedMessagePipeHandle OnConnectToClient( |
| 130 const GURL& url, mojo::ScopedMessagePipeHandle real_client) OVERRIDE { | 140 const GURL& url, mojo::ScopedMessagePipeHandle real_client) OVERRIDE { |
| 131 if (!MustIntercept(url)) | 141 if (!MustIntercept(url)) |
| 132 return real_client.Pass(); | 142 return real_client.Pass(); |
| 133 | 143 |
| 134 // You can get an invalid handle if the app (or service) is | 144 // You can get an invalid handle if the app (or service) is |
| 135 // created by unconventional means, for example the command line. | 145 // created by unconventional means, for example the command line. |
| 136 if (!real_client.is_valid()) | 146 if (!real_client.is_valid()) |
| 137 return real_client.Pass(); | 147 return real_client.Pass(); |
| 138 | 148 |
| 139 mojo::ScopedMessagePipeHandle faux_client; | 149 mojo::ScopedMessagePipeHandle faux_client; |
| 140 mojo::ScopedMessagePipeHandle interceptor; | 150 mojo::ScopedMessagePipeHandle interceptor; |
| 141 CreateMessagePipe(&faux_client, &interceptor); | 151 CreateMessagePipe(&faux_client, &interceptor); |
| 142 | 152 |
| 143 scoped_refptr<MessageProcessor> processor = new MessageProcessor(); | 153 scoped_refptr<MessageProcessor> processor = new MessageProcessor(); |
| 144 base::WorkerPool::PostTask( | 154 base::WorkerPool::PostTask( |
| 145 FROM_HERE, | 155 FROM_HERE, |
| 146 base::Bind(&MessageProcessor::Start, | 156 base::Bind(&MessageProcessor::Start, |
| 147 processor, | 157 processor, |
| 148 base::Passed(&real_client), base::Passed(&interceptor)), | 158 base::Passed(&real_client), base::Passed(&interceptor)), |
| 149 true); | 159 true); |
| 150 | 160 |
| 151 return faux_client.Pass(); | 161 return faux_client.Pass(); |
| 152 } | 162 } |
| 153 | 163 |
| 154 bool MustIntercept(const GURL& url) { | 164 bool MustIntercept(const GURL& url) { |
| 155 // TODO(cpu): manage who and when to intercept. | 165 // TODO(cpu): manage who and when to intercept. |
| 166 proxy_->PostTask( |
| 167 FROM_HERE, |
| 168 base::Bind(&mojo::SpyServerImpl::OnIntercept, spy_server_, url)); |
| 156 return true; | 169 return true; |
| 157 } | 170 } |
| 171 |
| 172 scoped_refptr<mojo::SpyServerImpl> spy_server_; |
| 173 scoped_refptr<base::MessageLoopProxy> proxy_; |
| 158 }; | 174 }; |
| 159 | 175 |
| 160 spy::WebSocketServer* ws_server = NULL; | 176 mojo::WebSocketServer* ws_server = NULL; |
| 161 | 177 |
| 162 void StartServer(int port) { | 178 void StartWebServer(int port, mojo::ScopedMessagePipeHandle pipe) { |
| 163 // TODO(cpu) figure out lifetime of the server. See Spy() dtor. | 179 // TODO(cpu) figure out lifetime of the server. See Spy() dtor. |
| 164 ws_server = new spy::WebSocketServer(port); | 180 ws_server = new mojo::WebSocketServer(port, pipe.Pass()); |
| 165 ws_server->Start(); | 181 ws_server->Start(); |
| 166 } | 182 } |
| 167 | 183 |
| 168 struct SpyOptions { | 184 struct SpyOptions { |
| 169 int websocket_port; | 185 int websocket_port; |
| 170 | 186 |
| 171 SpyOptions() | 187 SpyOptions() |
| 172 : websocket_port(kDefaultWebSocketPort) { | 188 : websocket_port(kDefaultWebSocketPort) { |
| 173 } | 189 } |
| 174 }; | 190 }; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 189 } | 205 } |
| 190 return spy_options; | 206 return spy_options; |
| 191 } | 207 } |
| 192 | 208 |
| 193 } // namespace | 209 } // namespace |
| 194 | 210 |
| 195 namespace mojo { | 211 namespace mojo { |
| 196 | 212 |
| 197 Spy::Spy(mojo::ServiceManager* service_manager, const std::string& options) { | 213 Spy::Spy(mojo::ServiceManager* service_manager, const std::string& options) { |
| 198 SpyOptions spy_options = ProcessOptions(options); | 214 SpyOptions spy_options = ProcessOptions(options); |
| 215 |
| 216 spy_server_ = new SpyServerImpl(); |
| 217 |
| 199 // Start the tread what will accept commands from the frontend. | 218 // Start the tread what will accept commands from the frontend. |
| 200 control_thread_.reset(new base::Thread("mojo_spy_control_thread")); | 219 control_thread_.reset(new base::Thread("mojo_spy_control_thread")); |
| 201 base::Thread::Options thread_options(base::MessageLoop::TYPE_IO, 0); | 220 base::Thread::Options thread_options(base::MessageLoop::TYPE_IO, 0); |
| 202 control_thread_->StartWithOptions(thread_options); | 221 control_thread_->StartWithOptions(thread_options); |
| 203 control_thread_->message_loop_proxy()->PostTask( | 222 control_thread_->message_loop_proxy()->PostTask( |
| 204 FROM_HERE, base::Bind(&StartServer, spy_options.websocket_port)); | 223 FROM_HERE, base::Bind(&StartWebServer, |
| 224 spy_options.websocket_port, |
| 225 base::Passed(spy_server_->ServerPipe()))); |
| 205 | 226 |
| 206 // Start intercepting mojo services. | 227 // Start intercepting mojo services. |
| 207 service_manager->SetInterceptor(new SpyInterceptor()); | 228 service_manager->SetInterceptor(new SpyInterceptor(spy_server_)); |
| 208 } | 229 } |
| 209 | 230 |
| 210 Spy::~Spy(){ | 231 Spy::~Spy() { |
| 211 // TODO(cpu): Do not leak the interceptor. Lifetime between the | 232 // TODO(cpu): Do not leak the interceptor. Lifetime between the |
| 212 // service_manager and the spy is still unclear hence the leak. | 233 // service_manager and the spy is still unclear hence the leak. |
| 213 } | 234 } |
| 214 | 235 |
| 215 } // namespace mojo | 236 } // namespace mojo |
| OLD | NEW |