blob: e85622277591491c41e13b69a47522e981c2ba3e [file] [log] [blame]
ulan@chromium.org0e3f88b2012-05-22 09:16:05 +00001// Copyright 2012 the V8 project authors. All rights reserved.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28
29#include "v8.h"
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +000030#include "debug.h"
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000031#include "debug-agent.h"
32
ager@chromium.org65dad4b2009-04-23 08:48:43 +000033#ifdef ENABLE_DEBUGGER_SUPPORT
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +000034
kasperl@chromium.org71affb52009-05-26 05:44:31 +000035namespace v8 {
36namespace internal {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000037
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000038// Public V8 debugger API message handler function. This function just delegates
39// to the debugger agent through it's data parameter.
ager@chromium.org5ec48922009-05-05 07:25:34 +000040void DebuggerAgentMessageHandler(const v8::Debug::Message& message) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000041 DebuggerAgent* agent = Isolate::Current()->debugger_agent_instance();
42 ASSERT(agent != NULL);
43 agent->DebuggerMessage(message);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000044}
45
46
47// Debugger agent main thread.
48void DebuggerAgent::Run() {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000049 const int kOneSecondInMicros = 1000000;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000050
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000051 // Allow this socket to reuse port even if still in TIME_WAIT.
52 server_->SetReuseAddress(true);
53
54 // First bind the socket to the requested port.
55 bool bound = false;
56 while (!bound && !terminate_) {
57 bound = server_->Bind(port_);
58
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000059 // If an error occurred wait a bit before retrying. The most common error
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000060 // would be that the port is already in use so this avoids a busy loop and
61 // make the agent take over the port when it becomes free.
62 if (!bound) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000063 PrintF("Failed to open socket on port %d, "
64 "waiting %d ms before retrying\n", port_, kOneSecondInMicros / 1000);
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000065 terminate_now_->Wait(kOneSecondInMicros);
66 }
67 }
68
69 // Accept connections on the bound port.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000070 while (!terminate_) {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000071 bool ok = server_->Listen(1);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +000072 listening_->Signal();
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000073 if (ok) {
74 // Accept the new connection.
75 Socket* client = server_->Accept();
76 ok = client != NULL;
77 if (ok) {
78 // Create and start a new session.
79 CreateSession(client);
80 }
81 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000082 }
83}
84
85
86void DebuggerAgent::Shutdown() {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000087 // Set the termination flag.
88 terminate_ = true;
89
90 // Signal termination and make the server exit either its listen call or its
91 // binding loop. This makes sure that no new sessions can be established.
92 terminate_now_->Signal();
93 server_->Shutdown();
94 Join();
95
96 // Close existing session if any.
97 CloseSession();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000098}
99
100
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000101void DebuggerAgent::WaitUntilListening() {
102 listening_->Wait();
103}
104
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000105static const char* kCreateSessionMessage =
106 "Remote debugging session already active\r\n";
107
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000108void DebuggerAgent::CreateSession(Socket* client) {
109 ScopedLock with(session_access_);
110
111 // If another session is already established terminate this one.
112 if (session_ != NULL) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000113 client->Send(kCreateSessionMessage, StrLength(kCreateSessionMessage));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000114 delete client;
115 return;
116 }
117
118 // Create a new session and hook up the debug message handler.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000119 session_ = new DebuggerAgentSession(this, client);
120 isolate_->debugger()->SetMessageHandler(DebuggerAgentMessageHandler);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000121 session_->Start();
122}
123
124
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000125void DebuggerAgent::CloseSession() {
126 ScopedLock with(session_access_);
127
128 // Terminate the session.
129 if (session_ != NULL) {
130 session_->Shutdown();
131 session_->Join();
132 delete session_;
133 session_ = NULL;
134 }
135}
136
137
ager@chromium.org5ec48922009-05-05 07:25:34 +0000138void DebuggerAgent::DebuggerMessage(const v8::Debug::Message& message) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000139 ScopedLock with(session_access_);
140
141 // Forward the message handling to the session.
142 if (session_ != NULL) {
ager@chromium.org5ec48922009-05-05 07:25:34 +0000143 v8::String::Value val(message.GetJSON());
144 session_->DebuggerMessage(Vector<uint16_t>(const_cast<uint16_t*>(*val),
145 val.length()));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000146 }
147}
148
149
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000150void DebuggerAgent::OnSessionClosed(DebuggerAgentSession* session) {
151 // Don't do anything during termination.
152 if (terminate_) {
153 return;
154 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000155
156 // Terminate the session.
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000157 ScopedLock with(session_access_);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000158 ASSERT(session == session_);
159 if (session == session_) {
rossberg@chromium.org400388e2012-06-06 09:29:22 +0000160 session_->Shutdown();
161 delete session_;
162 session_ = NULL;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000163 }
164}
165
166
167void DebuggerAgentSession::Run() {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000168 // Send the hello message.
169 bool ok = DebuggerAgentUtil::SendConnectMessage(client_, *agent_->name_);
170 if (!ok) return;
171
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000172 while (true) {
173 // Read data from the debugger front end.
kmillikin@chromium.org83e16822011-09-13 08:21:47 +0000174 SmartArrayPointer<char> message =
175 DebuggerAgentUtil::ReceiveMessage(client_);
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000176
177 const char* msg = *message;
178 bool is_closing_session = (msg == NULL);
179
180 if (msg == NULL) {
181 // If we lost the connection, then simulate a disconnect msg:
182 msg = "{\"seq\":1,\"type\":\"request\",\"command\":\"disconnect\"}";
183
184 } else {
185 // Check if we're getting a disconnect request:
186 const char* disconnectRequestStr =
187 "\"type\":\"request\",\"command\":\"disconnect\"}";
188 const char* result = strstr(msg, disconnectRequestStr);
189 if (result != NULL) {
190 is_closing_session = true;
191 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000192 }
193
194 // Convert UTF-8 to UTF-16.
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000195 unibrow::Utf8InputBuffer<> buf(msg, StrLength(msg));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000196 int len = 0;
197 while (buf.has_more()) {
198 buf.GetNext();
199 len++;
200 }
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +0000201 ScopedVector<int16_t> temp(len + 1);
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000202 buf.Reset(msg, StrLength(msg));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000203 for (int i = 0; i < len; i++) {
204 temp[i] = buf.GetNext();
205 }
206
207 // Send the request received to the debugger.
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +0000208 v8::Debug::SendCommand(reinterpret_cast<const uint16_t *>(temp.start()),
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000209 len,
210 NULL,
211 reinterpret_cast<v8::Isolate*>(agent_->isolate()));
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000212
213 if (is_closing_session) {
214 // Session is closed.
215 agent_->OnSessionClosed(this);
216 return;
217 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000218 }
219}
220
221
222void DebuggerAgentSession::DebuggerMessage(Vector<uint16_t> message) {
223 DebuggerAgentUtil::SendMessage(client_, message);
224}
225
226
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000227void DebuggerAgentSession::Shutdown() {
228 // Shutdown the socket to end the blocking receive.
229 client_->Shutdown();
230}
231
232
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000233const char* const DebuggerAgentUtil::kContentLength = "Content-Length";
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000234
235
kmillikin@chromium.org83e16822011-09-13 08:21:47 +0000236SmartArrayPointer<char> DebuggerAgentUtil::ReceiveMessage(const Socket* conn) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000237 int received;
238
239 // Read header.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000240 int content_length = 0;
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000241 while (true) {
242 const int kHeaderBufferSize = 80;
243 char header_buffer[kHeaderBufferSize];
244 int header_buffer_position = 0;
245 char c = '\0'; // One character receive buffer.
246 char prev_c = '\0'; // Previous character.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000247
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000248 // Read until CRLF.
249 while (!(c == '\n' && prev_c == '\r')) {
250 prev_c = c;
251 received = conn->Receive(&c, 1);
ulan@chromium.org0e3f88b2012-05-22 09:16:05 +0000252 if (received == 0) {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000253 PrintF("Error %d\n", Socket::LastError());
kmillikin@chromium.org83e16822011-09-13 08:21:47 +0000254 return SmartArrayPointer<char>();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000255 }
256
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000257 // Add character to header buffer.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000258 if (header_buffer_position < kHeaderBufferSize) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000259 header_buffer[header_buffer_position++] = c;
260 }
261 }
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000262
263 // Check for end of header (empty header line).
264 if (header_buffer_position == 2) { // Receive buffer contains CRLF.
265 break;
266 }
267
268 // Terminate header.
269 ASSERT(header_buffer_position > 1); // At least CRLF is received.
270 ASSERT(header_buffer_position <= kHeaderBufferSize);
271 header_buffer[header_buffer_position - 2] = '\0';
272
273 // Split header.
274 char* key = header_buffer;
275 char* value = NULL;
276 for (int i = 0; header_buffer[i] != '\0'; i++) {
277 if (header_buffer[i] == ':') {
278 header_buffer[i] = '\0';
279 value = header_buffer + i + 1;
280 while (*value == ' ') {
281 value++;
282 }
283 break;
284 }
285 }
286
287 // Check that key is Content-Length.
288 if (strcmp(key, kContentLength) == 0) {
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000289 // Get the content length value if present and within a sensible range.
290 if (value == NULL || strlen(value) > 7) {
kmillikin@chromium.org83e16822011-09-13 08:21:47 +0000291 return SmartArrayPointer<char>();
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000292 }
293 for (int i = 0; value[i] != '\0'; i++) {
294 // Bail out if illegal data.
295 if (value[i] < '0' || value[i] > '9') {
kmillikin@chromium.org83e16822011-09-13 08:21:47 +0000296 return SmartArrayPointer<char>();
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000297 }
298 content_length = 10 * content_length + (value[i] - '0');
299 }
300 } else {
301 // For now just print all other headers than Content-Length.
302 PrintF("%s: %s\n", key, value != NULL ? value : "(no value)");
303 }
304 }
305
306 // Return now if no body.
307 if (content_length == 0) {
kmillikin@chromium.org83e16822011-09-13 08:21:47 +0000308 return SmartArrayPointer<char>();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000309 }
310
311 // Read body.
312 char* buffer = NewArray<char>(content_length + 1);
313 received = ReceiveAll(conn, buffer, content_length);
314 if (received < content_length) {
315 PrintF("Error %d\n", Socket::LastError());
kmillikin@chromium.org83e16822011-09-13 08:21:47 +0000316 return SmartArrayPointer<char>();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000317 }
318 buffer[content_length] = '\0';
319
kmillikin@chromium.org83e16822011-09-13 08:21:47 +0000320 return SmartArrayPointer<char>(buffer);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000321}
322
323
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000324bool DebuggerAgentUtil::SendConnectMessage(const Socket* conn,
325 const char* embedding_host) {
326 static const int kBufferSize = 80;
327 char buffer[kBufferSize]; // Sending buffer.
328 bool ok;
329 int len;
330
331 // Send the header.
332 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize),
333 "Type: connect\r\n");
334 ok = conn->Send(buffer, len);
335 if (!ok) return false;
336
337 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize),
338 "V8-Version: %s\r\n", v8::V8::GetVersion());
339 ok = conn->Send(buffer, len);
340 if (!ok) return false;
341
342 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize),
343 "Protocol-Version: 1\r\n");
344 ok = conn->Send(buffer, len);
345 if (!ok) return false;
346
347 if (embedding_host != NULL) {
348 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize),
349 "Embedding-Host: %s\r\n", embedding_host);
350 ok = conn->Send(buffer, len);
351 if (!ok) return false;
352 }
353
354 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize),
355 "%s: 0\r\n", kContentLength);
356 ok = conn->Send(buffer, len);
357 if (!ok) return false;
358
359 // Terminate header with empty line.
360 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize), "\r\n");
361 ok = conn->Send(buffer, len);
362 if (!ok) return false;
363
364 // No body for connect message.
365
366 return true;
367}
368
369
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000370bool DebuggerAgentUtil::SendMessage(const Socket* conn,
371 const Vector<uint16_t> message) {
372 static const int kBufferSize = 80;
373 char buffer[kBufferSize]; // Sending buffer both for header and body.
374
375 // Calculate the message size in UTF-8 encoding.
376 int utf8_len = 0;
yangguo@chromium.org154ff992012-03-13 08:09:54 +0000377 int previous = unibrow::Utf16::kNoPreviousCharacter;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000378 for (int i = 0; i < message.length(); i++) {
yangguo@chromium.org154ff992012-03-13 08:09:54 +0000379 uint16_t character = message[i];
380 utf8_len += unibrow::Utf8::Length(character, previous);
381 previous = character;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000382 }
383
384 // Send the header.
385 int len;
386 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize),
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000387 "%s: %d\r\n", kContentLength, utf8_len);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000388 conn->Send(buffer, len);
389
390 // Terminate header with empty line.
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000391 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize), "\r\n");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000392 conn->Send(buffer, len);
393
394 // Send message body as UTF-8.
395 int buffer_position = 0; // Current buffer position.
yangguo@chromium.org154ff992012-03-13 08:09:54 +0000396 previous = unibrow::Utf16::kNoPreviousCharacter;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000397 for (int i = 0; i < message.length(); i++) {
398 // Write next UTF-8 encoded character to buffer.
yangguo@chromium.org154ff992012-03-13 08:09:54 +0000399 uint16_t character = message[i];
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000400 buffer_position +=
yangguo@chromium.org154ff992012-03-13 08:09:54 +0000401 unibrow::Utf8::Encode(buffer + buffer_position, character, previous);
rossberg@chromium.org400388e2012-06-06 09:29:22 +0000402 ASSERT(buffer_position <= kBufferSize);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000403
404 // Send buffer if full or last character is encoded.
yangguo@chromium.org154ff992012-03-13 08:09:54 +0000405 if (kBufferSize - buffer_position <
406 unibrow::Utf16::kMaxExtraUtf8BytesForOneUtf16CodeUnit ||
407 i == message.length() - 1) {
408 if (unibrow::Utf16::IsLeadSurrogate(character)) {
409 const int kEncodedSurrogateLength =
410 unibrow::Utf16::kUtf8BytesToCodeASurrogate;
411 ASSERT(buffer_position >= kEncodedSurrogateLength);
412 conn->Send(buffer, buffer_position - kEncodedSurrogateLength);
413 for (int i = 0; i < kEncodedSurrogateLength; i++) {
414 buffer[i] = buffer[buffer_position + i];
415 }
416 buffer_position = kEncodedSurrogateLength;
417 } else {
418 conn->Send(buffer, buffer_position);
419 buffer_position = 0;
420 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000421 }
yangguo@chromium.org154ff992012-03-13 08:09:54 +0000422 previous = character;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000423 }
424
425 return true;
426}
427
428
429bool DebuggerAgentUtil::SendMessage(const Socket* conn,
430 const v8::Handle<v8::String> request) {
431 static const int kBufferSize = 80;
432 char buffer[kBufferSize]; // Sending buffer both for header and body.
433
434 // Convert the request to UTF-8 encoding.
435 v8::String::Utf8Value utf8_request(request);
436
437 // Send the header.
438 int len;
439 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize),
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000440 "Content-Length: %d\r\n", utf8_request.length());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000441 conn->Send(buffer, len);
442
443 // Terminate header with empty line.
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000444 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize), "\r\n");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000445 conn->Send(buffer, len);
446
447 // Send message body as UTF-8.
448 conn->Send(*utf8_request, utf8_request.length());
449
450 return true;
451}
452
453
454// Receive the full buffer before returning unless an error occours.
455int DebuggerAgentUtil::ReceiveAll(const Socket* conn, char* data, int len) {
456 int total_received = 0;
457 while (total_received < len) {
458 int received = conn->Receive(data + total_received, len - total_received);
ulan@chromium.org0e3f88b2012-05-22 09:16:05 +0000459 if (received == 0) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000460 return total_received;
461 }
462 total_received += received;
463 }
464 return total_received;
465}
466
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000467} } // namespace v8::internal
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000468
469#endif // ENABLE_DEBUGGER_SUPPORT