blob: 520bc62926254b54e0e75df50678144bbfb47132 [file] [log] [blame]
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001// Copyright 2009 the V8 project authors. All rights reserved.
2// 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_) {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000160 CloseSession();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000161 }
162}
163
164
165void DebuggerAgentSession::Run() {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000166 // Send the hello message.
167 bool ok = DebuggerAgentUtil::SendConnectMessage(client_, *agent_->name_);
168 if (!ok) return;
169
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000170 while (true) {
171 // Read data from the debugger front end.
172 SmartPointer<char> message = DebuggerAgentUtil::ReceiveMessage(client_);
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000173
174 const char* msg = *message;
175 bool is_closing_session = (msg == NULL);
176
177 if (msg == NULL) {
178 // If we lost the connection, then simulate a disconnect msg:
179 msg = "{\"seq\":1,\"type\":\"request\",\"command\":\"disconnect\"}";
180
181 } else {
182 // Check if we're getting a disconnect request:
183 const char* disconnectRequestStr =
184 "\"type\":\"request\",\"command\":\"disconnect\"}";
185 const char* result = strstr(msg, disconnectRequestStr);
186 if (result != NULL) {
187 is_closing_session = true;
188 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000189 }
190
191 // Convert UTF-8 to UTF-16.
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000192 unibrow::Utf8InputBuffer<> buf(msg, StrLength(msg));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000193 int len = 0;
194 while (buf.has_more()) {
195 buf.GetNext();
196 len++;
197 }
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +0000198 ScopedVector<int16_t> temp(len + 1);
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000199 buf.Reset(msg, StrLength(msg));
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000200 for (int i = 0; i < len; i++) {
201 temp[i] = buf.GetNext();
202 }
203
204 // Send the request received to the debugger.
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +0000205 v8::Debug::SendCommand(reinterpret_cast<const uint16_t *>(temp.start()),
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000206 len,
207 NULL,
208 reinterpret_cast<v8::Isolate*>(agent_->isolate()));
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000209
210 if (is_closing_session) {
211 // Session is closed.
212 agent_->OnSessionClosed(this);
213 return;
214 }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000215 }
216}
217
218
219void DebuggerAgentSession::DebuggerMessage(Vector<uint16_t> message) {
220 DebuggerAgentUtil::SendMessage(client_, message);
221}
222
223
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000224void DebuggerAgentSession::Shutdown() {
225 // Shutdown the socket to end the blocking receive.
226 client_->Shutdown();
227}
228
229
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000230const char* const DebuggerAgentUtil::kContentLength = "Content-Length";
231const int DebuggerAgentUtil::kContentLengthSize =
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000232 StrLength(kContentLength);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000233
234
235SmartPointer<char> DebuggerAgentUtil::ReceiveMessage(const Socket* conn) {
236 int received;
237
238 // Read header.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000239 int content_length = 0;
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000240 while (true) {
241 const int kHeaderBufferSize = 80;
242 char header_buffer[kHeaderBufferSize];
243 int header_buffer_position = 0;
244 char c = '\0'; // One character receive buffer.
245 char prev_c = '\0'; // Previous character.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000246
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000247 // Read until CRLF.
248 while (!(c == '\n' && prev_c == '\r')) {
249 prev_c = c;
250 received = conn->Receive(&c, 1);
251 if (received <= 0) {
252 PrintF("Error %d\n", Socket::LastError());
253 return SmartPointer<char>();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000254 }
255
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000256 // Add character to header buffer.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000257 if (header_buffer_position < kHeaderBufferSize) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000258 header_buffer[header_buffer_position++] = c;
259 }
260 }
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000261
262 // Check for end of header (empty header line).
263 if (header_buffer_position == 2) { // Receive buffer contains CRLF.
264 break;
265 }
266
267 // Terminate header.
268 ASSERT(header_buffer_position > 1); // At least CRLF is received.
269 ASSERT(header_buffer_position <= kHeaderBufferSize);
270 header_buffer[header_buffer_position - 2] = '\0';
271
272 // Split header.
273 char* key = header_buffer;
274 char* value = NULL;
275 for (int i = 0; header_buffer[i] != '\0'; i++) {
276 if (header_buffer[i] == ':') {
277 header_buffer[i] = '\0';
278 value = header_buffer + i + 1;
279 while (*value == ' ') {
280 value++;
281 }
282 break;
283 }
284 }
285
286 // Check that key is Content-Length.
287 if (strcmp(key, kContentLength) == 0) {
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000288 // Get the content length value if present and within a sensible range.
289 if (value == NULL || strlen(value) > 7) {
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000290 return SmartPointer<char>();
291 }
292 for (int i = 0; value[i] != '\0'; i++) {
293 // Bail out if illegal data.
294 if (value[i] < '0' || value[i] > '9') {
295 return SmartPointer<char>();
296 }
297 content_length = 10 * content_length + (value[i] - '0');
298 }
299 } else {
300 // For now just print all other headers than Content-Length.
301 PrintF("%s: %s\n", key, value != NULL ? value : "(no value)");
302 }
303 }
304
305 // Return now if no body.
306 if (content_length == 0) {
307 return SmartPointer<char>();
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000308 }
309
310 // Read body.
311 char* buffer = NewArray<char>(content_length + 1);
312 received = ReceiveAll(conn, buffer, content_length);
313 if (received < content_length) {
314 PrintF("Error %d\n", Socket::LastError());
315 return SmartPointer<char>();
316 }
317 buffer[content_length] = '\0';
318
319 return SmartPointer<char>(buffer);
320}
321
322
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000323bool DebuggerAgentUtil::SendConnectMessage(const Socket* conn,
324 const char* embedding_host) {
325 static const int kBufferSize = 80;
326 char buffer[kBufferSize]; // Sending buffer.
327 bool ok;
328 int len;
329
330 // Send the header.
331 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize),
332 "Type: connect\r\n");
333 ok = conn->Send(buffer, len);
334 if (!ok) return false;
335
336 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize),
337 "V8-Version: %s\r\n", v8::V8::GetVersion());
338 ok = conn->Send(buffer, len);
339 if (!ok) return false;
340
341 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize),
342 "Protocol-Version: 1\r\n");
343 ok = conn->Send(buffer, len);
344 if (!ok) return false;
345
346 if (embedding_host != NULL) {
347 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize),
348 "Embedding-Host: %s\r\n", embedding_host);
349 ok = conn->Send(buffer, len);
350 if (!ok) return false;
351 }
352
353 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize),
354 "%s: 0\r\n", kContentLength);
355 ok = conn->Send(buffer, len);
356 if (!ok) return false;
357
358 // Terminate header with empty line.
359 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize), "\r\n");
360 ok = conn->Send(buffer, len);
361 if (!ok) return false;
362
363 // No body for connect message.
364
365 return true;
366}
367
368
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000369bool DebuggerAgentUtil::SendMessage(const Socket* conn,
370 const Vector<uint16_t> message) {
371 static const int kBufferSize = 80;
372 char buffer[kBufferSize]; // Sending buffer both for header and body.
373
374 // Calculate the message size in UTF-8 encoding.
375 int utf8_len = 0;
376 for (int i = 0; i < message.length(); i++) {
377 utf8_len += unibrow::Utf8::Length(message[i]);
378 }
379
380 // Send the header.
381 int len;
382 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize),
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000383 "%s: %d\r\n", kContentLength, utf8_len);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000384 conn->Send(buffer, len);
385
386 // Terminate header with empty line.
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000387 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize), "\r\n");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000388 conn->Send(buffer, len);
389
390 // Send message body as UTF-8.
391 int buffer_position = 0; // Current buffer position.
392 for (int i = 0; i < message.length(); i++) {
393 // Write next UTF-8 encoded character to buffer.
394 buffer_position +=
395 unibrow::Utf8::Encode(buffer + buffer_position, message[i]);
396 ASSERT(buffer_position < kBufferSize);
397
398 // Send buffer if full or last character is encoded.
399 if (kBufferSize - buffer_position < 3 || i == message.length() - 1) {
400 conn->Send(buffer, buffer_position);
401 buffer_position = 0;
402 }
403 }
404
405 return true;
406}
407
408
409bool DebuggerAgentUtil::SendMessage(const Socket* conn,
410 const v8::Handle<v8::String> request) {
411 static const int kBufferSize = 80;
412 char buffer[kBufferSize]; // Sending buffer both for header and body.
413
414 // Convert the request to UTF-8 encoding.
415 v8::String::Utf8Value utf8_request(request);
416
417 // Send the header.
418 int len;
419 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize),
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000420 "Content-Length: %d\r\n", utf8_request.length());
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000421 conn->Send(buffer, len);
422
423 // Terminate header with empty line.
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000424 len = OS::SNPrintF(Vector<char>(buffer, kBufferSize), "\r\n");
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000425 conn->Send(buffer, len);
426
427 // Send message body as UTF-8.
428 conn->Send(*utf8_request, utf8_request.length());
429
430 return true;
431}
432
433
434// Receive the full buffer before returning unless an error occours.
435int DebuggerAgentUtil::ReceiveAll(const Socket* conn, char* data, int len) {
436 int total_received = 0;
437 while (total_received < len) {
438 int received = conn->Receive(data + total_received, len - total_received);
439 if (received <= 0) {
440 return total_received;
441 }
442 total_received += received;
443 }
444 return total_received;
445}
446
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000447} } // namespace v8::internal
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000448
449#endif // ENABLE_DEBUGGER_SUPPORT