2011-03-10 09:54:52 +01:00
|
|
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the
|
|
|
|
// "Software"), to deal in the Software without restriction, including
|
|
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
|
|
// persons to whom the Software is furnished to do so, subject to the
|
|
|
|
// following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included
|
|
|
|
// in all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
|
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2011-01-25 02:50:10 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_DTRACE
|
2012-10-10 00:09:07 +02:00
|
|
|
#include "node_dtrace.h"
|
|
|
|
#include <string.h>
|
2011-01-25 02:50:10 +01:00
|
|
|
#include "node_provider.h"
|
2012-06-12 01:23:17 +02:00
|
|
|
#elif HAVE_ETW
|
2012-10-10 00:09:07 +02:00
|
|
|
#include "node_dtrace.h"
|
|
|
|
#include <string.h>
|
2012-06-12 01:23:17 +02:00
|
|
|
#include "node_win32_etw_provider.h"
|
|
|
|
#include "node_win32_etw_provider-inl.h"
|
2012-10-10 00:09:07 +02:00
|
|
|
#elif HAVE_SYSTEMTAP
|
|
|
|
#include <string.h>
|
|
|
|
#include <node.h>
|
|
|
|
#include <v8.h>
|
|
|
|
#include <sys/sdt.h>
|
|
|
|
#include "node_systemtap.h"
|
|
|
|
#include "node_dtrace.h"
|
2011-01-25 02:50:10 +01:00
|
|
|
#else
|
|
|
|
#define NODE_HTTP_SERVER_REQUEST(arg0, arg1)
|
|
|
|
#define NODE_HTTP_SERVER_REQUEST_ENABLED() (0)
|
|
|
|
#define NODE_HTTP_SERVER_RESPONSE(arg0)
|
|
|
|
#define NODE_HTTP_SERVER_RESPONSE_ENABLED() (0)
|
2011-02-10 03:50:26 +01:00
|
|
|
#define NODE_HTTP_CLIENT_REQUEST(arg0, arg1)
|
|
|
|
#define NODE_HTTP_CLIENT_REQUEST_ENABLED() (0)
|
|
|
|
#define NODE_HTTP_CLIENT_RESPONSE(arg0)
|
|
|
|
#define NODE_HTTP_CLIENT_RESPONSE_ENABLED() (0)
|
2011-01-25 02:50:10 +01:00
|
|
|
#define NODE_NET_SERVER_CONNECTION(arg0)
|
|
|
|
#define NODE_NET_SERVER_CONNECTION_ENABLED() (0)
|
|
|
|
#define NODE_NET_STREAM_END(arg0)
|
|
|
|
#define NODE_NET_STREAM_END_ENABLED() (0)
|
2011-02-10 03:50:26 +01:00
|
|
|
#define NODE_NET_SOCKET_READ(arg0, arg1)
|
|
|
|
#define NODE_NET_SOCKET_READ_ENABLED() (0)
|
|
|
|
#define NODE_NET_SOCKET_WRITE(arg0, arg1)
|
|
|
|
#define NODE_NET_SOCKET_WRITE_ENABLED() (0)
|
|
|
|
#define NODE_GC_START(arg0, arg1)
|
|
|
|
#define NODE_GC_DONE(arg0, arg1)
|
2011-01-25 02:50:10 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace node {
|
|
|
|
|
|
|
|
using namespace v8;
|
|
|
|
|
|
|
|
#define SLURP_STRING(obj, member, valp) \
|
2011-02-10 03:50:26 +01:00
|
|
|
if (!(obj)->IsObject()) { \
|
|
|
|
return (ThrowException(Exception::Error(String::New("expected " \
|
|
|
|
"object for " #obj " to contain string member " #member)))); \
|
|
|
|
} \
|
2012-03-21 17:47:16 +01:00
|
|
|
String::Utf8Value _##member(obj->Get(String::New(#member))); \
|
2011-01-25 02:50:10 +01:00
|
|
|
if ((*(const char **)valp = *_##member) == NULL) \
|
|
|
|
*(const char **)valp = "<unknown>";
|
|
|
|
|
|
|
|
#define SLURP_INT(obj, member, valp) \
|
2011-02-10 03:50:26 +01:00
|
|
|
if (!(obj)->IsObject()) { \
|
|
|
|
return (ThrowException(Exception::Error(String::New("expected " \
|
|
|
|
"object for " #obj " to contain integer member " #member)))); \
|
|
|
|
} \
|
2011-01-25 02:50:10 +01:00
|
|
|
*valp = obj->Get(String::New(#member))->ToInteger()->Value();
|
|
|
|
|
2011-02-10 03:50:26 +01:00
|
|
|
#define SLURP_OBJECT(obj, member, valp) \
|
|
|
|
if (!(obj)->IsObject()) { \
|
|
|
|
return (ThrowException(Exception::Error(String::New("expected " \
|
|
|
|
"object for " #obj " to contain object member " #member)))); \
|
|
|
|
} \
|
|
|
|
*valp = Local<Object>::Cast(obj->Get(String::New(#member)));
|
|
|
|
|
2011-01-25 02:50:10 +01:00
|
|
|
#define SLURP_CONNECTION(arg, conn) \
|
2011-02-10 03:50:26 +01:00
|
|
|
if (!(arg)->IsObject()) { \
|
|
|
|
return (ThrowException(Exception::Error(String::New("expected " \
|
|
|
|
"argument " #arg " to be a connection object")))); \
|
|
|
|
} \
|
2011-01-25 02:50:10 +01:00
|
|
|
node_dtrace_connection_t conn; \
|
|
|
|
Local<Object> _##conn = Local<Object>::Cast(arg); \
|
|
|
|
SLURP_INT(_##conn, fd, &conn.fd); \
|
|
|
|
SLURP_STRING(_##conn, remoteAddress, &conn.remote); \
|
2011-02-10 03:50:26 +01:00
|
|
|
SLURP_INT(_##conn, remotePort, &conn.port); \
|
|
|
|
SLURP_INT(_##conn, bufferSize, &conn.buffered);
|
|
|
|
|
|
|
|
#define SLURP_CONNECTION_HTTP_CLIENT(arg, conn) \
|
|
|
|
if (!(arg)->IsObject()) { \
|
|
|
|
return (ThrowException(Exception::Error(String::New("expected " \
|
|
|
|
"argument " #arg " to be a connection object")))); \
|
|
|
|
} \
|
|
|
|
node_dtrace_connection_t conn; \
|
|
|
|
Local<Object> _##conn = Local<Object>::Cast(arg); \
|
|
|
|
SLURP_INT(_##conn, fd, &conn.fd); \
|
|
|
|
SLURP_STRING(_##conn, host, &conn.remote); \
|
|
|
|
SLURP_INT(_##conn, port, &conn.port); \
|
|
|
|
SLURP_INT(_##conn, bufferSize, &conn.buffered);
|
|
|
|
|
|
|
|
#define SLURP_CONNECTION_HTTP_CLIENT_RESPONSE(arg0, arg1, conn) \
|
|
|
|
if (!(arg0)->IsObject()) { \
|
|
|
|
return (ThrowException(Exception::Error(String::New("expected " \
|
|
|
|
"argument " #arg0 " to be a connection object")))); \
|
|
|
|
} \
|
|
|
|
if (!(arg1)->IsObject()) { \
|
|
|
|
return (ThrowException(Exception::Error(String::New("expected " \
|
|
|
|
"argument " #arg1 " to be a connection object")))); \
|
|
|
|
} \
|
|
|
|
node_dtrace_connection_t conn; \
|
|
|
|
Local<Object> _##conn = Local<Object>::Cast(arg0); \
|
|
|
|
SLURP_INT(_##conn, fd, &conn.fd); \
|
|
|
|
SLURP_INT(_##conn, bufferSize, &conn.buffered); \
|
|
|
|
_##conn = Local<Object>::Cast(arg1); \
|
|
|
|
SLURP_STRING(_##conn, host, &conn.remote); \
|
|
|
|
SLURP_INT(_##conn, port, &conn.port);
|
|
|
|
|
2011-01-25 02:50:10 +01:00
|
|
|
|
|
|
|
Handle<Value> DTRACE_NET_SERVER_CONNECTION(const Arguments& args) {
|
2012-10-10 00:09:07 +02:00
|
|
|
#ifndef HAVE_SYSTEMTAP
|
2011-01-25 02:50:10 +01:00
|
|
|
if (!NODE_NET_SERVER_CONNECTION_ENABLED())
|
2013-03-19 22:55:05 +01:00
|
|
|
return Undefined(node_isolate);
|
2012-10-10 00:09:07 +02:00
|
|
|
#endif
|
2011-01-25 02:50:10 +01:00
|
|
|
|
2013-03-19 22:55:05 +01:00
|
|
|
HandleScope scope(node_isolate);
|
2011-01-25 02:50:10 +01:00
|
|
|
|
|
|
|
SLURP_CONNECTION(args[0], conn);
|
2012-10-10 00:09:07 +02:00
|
|
|
#ifdef HAVE_SYSTEMTAP
|
|
|
|
NODE_NET_SERVER_CONNECTION(conn.fd, conn.remote, conn.port, \
|
|
|
|
conn.buffered);
|
|
|
|
#else
|
2011-01-25 02:50:10 +01:00
|
|
|
NODE_NET_SERVER_CONNECTION(&conn);
|
2012-10-10 00:09:07 +02:00
|
|
|
#endif
|
2011-01-25 02:50:10 +01:00
|
|
|
|
2013-03-19 22:55:05 +01:00
|
|
|
return Undefined(node_isolate);
|
2011-01-25 02:50:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Handle<Value> DTRACE_NET_STREAM_END(const Arguments& args) {
|
2012-10-10 00:09:07 +02:00
|
|
|
#ifndef HAVE_SYSTEMTAP
|
2011-01-25 02:50:10 +01:00
|
|
|
if (!NODE_NET_STREAM_END_ENABLED())
|
2013-03-19 22:55:05 +01:00
|
|
|
return Undefined(node_isolate);
|
2012-10-10 00:09:07 +02:00
|
|
|
#endif
|
2011-01-25 02:50:10 +01:00
|
|
|
|
2013-03-19 22:55:05 +01:00
|
|
|
HandleScope scope(node_isolate);
|
2011-01-25 02:50:10 +01:00
|
|
|
|
|
|
|
SLURP_CONNECTION(args[0], conn);
|
2012-10-10 00:09:07 +02:00
|
|
|
#ifdef HAVE_SYSTEMTAP
|
|
|
|
NODE_NET_STREAM_END(conn.fd, conn.remote, conn.port, conn.buffered);
|
|
|
|
#else
|
2011-01-25 02:50:10 +01:00
|
|
|
NODE_NET_STREAM_END(&conn);
|
2012-10-10 00:09:07 +02:00
|
|
|
#endif
|
2011-01-25 02:50:10 +01:00
|
|
|
|
2013-03-19 22:55:05 +01:00
|
|
|
return Undefined(node_isolate);
|
2011-01-25 02:50:10 +01:00
|
|
|
}
|
|
|
|
|
2011-02-10 03:50:26 +01:00
|
|
|
Handle<Value> DTRACE_NET_SOCKET_READ(const Arguments& args) {
|
2012-10-10 00:09:07 +02:00
|
|
|
#ifndef HAVE_SYSTEMTAP
|
2011-02-10 03:50:26 +01:00
|
|
|
if (!NODE_NET_SOCKET_READ_ENABLED())
|
2013-03-19 22:55:05 +01:00
|
|
|
return Undefined(node_isolate);
|
2012-10-10 00:09:07 +02:00
|
|
|
#endif
|
2011-02-10 03:50:26 +01:00
|
|
|
|
2013-03-19 22:55:05 +01:00
|
|
|
HandleScope scope(node_isolate);
|
2011-02-10 03:50:26 +01:00
|
|
|
|
|
|
|
SLURP_CONNECTION(args[0], conn);
|
|
|
|
|
2012-10-10 00:09:07 +02:00
|
|
|
#ifdef HAVE_SYSTEMTAP
|
|
|
|
NODE_NET_SOCKET_READ(conn.fd, conn.remote, conn.port, conn.buffered);
|
|
|
|
#else
|
2011-02-10 03:50:26 +01:00
|
|
|
if (!args[1]->IsNumber()) {
|
|
|
|
return (ThrowException(Exception::Error(String::New("expected "
|
|
|
|
"argument 1 to be number of bytes"))));
|
|
|
|
}
|
2012-10-10 00:09:07 +02:00
|
|
|
int nbytes = args[1]->Int32Value();
|
2011-02-10 03:50:26 +01:00
|
|
|
NODE_NET_SOCKET_READ(&conn, nbytes);
|
2012-10-10 00:09:07 +02:00
|
|
|
#endif
|
2011-02-10 03:50:26 +01:00
|
|
|
|
2013-03-19 22:55:05 +01:00
|
|
|
return Undefined(node_isolate);
|
2011-02-10 03:50:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Handle<Value> DTRACE_NET_SOCKET_WRITE(const Arguments& args) {
|
2012-10-10 00:09:07 +02:00
|
|
|
#ifndef HAVE_SYSTEMTAP
|
2011-02-10 03:50:26 +01:00
|
|
|
if (!NODE_NET_SOCKET_WRITE_ENABLED())
|
2013-03-19 22:55:05 +01:00
|
|
|
return Undefined(node_isolate);
|
2012-10-10 00:09:07 +02:00
|
|
|
#endif
|
2011-02-10 03:50:26 +01:00
|
|
|
|
2013-03-19 22:55:05 +01:00
|
|
|
HandleScope scope(node_isolate);
|
2011-02-10 03:50:26 +01:00
|
|
|
|
|
|
|
SLURP_CONNECTION(args[0], conn);
|
|
|
|
|
2012-10-10 00:09:07 +02:00
|
|
|
#ifdef HAVE_SYSTEMTAP
|
|
|
|
NODE_NET_SOCKET_WRITE(conn.fd, conn.remote, conn.port, conn.buffered);
|
|
|
|
#else
|
2011-02-10 03:50:26 +01:00
|
|
|
if (!args[1]->IsNumber()) {
|
|
|
|
return (ThrowException(Exception::Error(String::New("expected "
|
|
|
|
"argument 1 to be number of bytes"))));
|
|
|
|
}
|
2012-10-10 00:09:07 +02:00
|
|
|
int nbytes = args[1]->Int32Value();
|
2011-02-10 03:50:26 +01:00
|
|
|
NODE_NET_SOCKET_WRITE(&conn, nbytes);
|
2012-10-10 00:09:07 +02:00
|
|
|
#endif
|
2011-02-10 03:50:26 +01:00
|
|
|
|
2013-03-19 22:55:05 +01:00
|
|
|
return Undefined(node_isolate);
|
2011-02-10 03:50:26 +01:00
|
|
|
}
|
|
|
|
|
2011-01-25 02:50:10 +01:00
|
|
|
Handle<Value> DTRACE_HTTP_SERVER_REQUEST(const Arguments& args) {
|
2011-06-04 16:04:38 +02:00
|
|
|
node_dtrace_http_server_request_t req;
|
2011-01-25 02:50:10 +01:00
|
|
|
|
2012-10-10 00:09:07 +02:00
|
|
|
#ifndef HAVE_SYSTEMTAP
|
2011-01-25 02:50:10 +01:00
|
|
|
if (!NODE_HTTP_SERVER_REQUEST_ENABLED())
|
2013-03-19 22:55:05 +01:00
|
|
|
return Undefined(node_isolate);
|
2012-10-10 00:09:07 +02:00
|
|
|
#endif
|
2011-01-25 02:50:10 +01:00
|
|
|
|
2013-03-19 22:55:05 +01:00
|
|
|
HandleScope scope(node_isolate);
|
2011-01-25 02:50:10 +01:00
|
|
|
|
|
|
|
Local<Object> arg0 = Local<Object>::Cast(args[0]);
|
2011-06-04 16:04:38 +02:00
|
|
|
Local<Object> headers;
|
2011-01-25 02:50:10 +01:00
|
|
|
|
2011-06-08 03:57:15 +02:00
|
|
|
memset(&req, 0, sizeof(req));
|
2011-06-04 16:04:38 +02:00
|
|
|
req._un.version = 1;
|
2011-01-25 02:50:10 +01:00
|
|
|
SLURP_STRING(arg0, url, &req.url);
|
|
|
|
SLURP_STRING(arg0, method, &req.method);
|
|
|
|
|
2011-06-04 16:04:38 +02:00
|
|
|
SLURP_OBJECT(arg0, headers, &headers);
|
|
|
|
|
|
|
|
if (!(headers)->IsObject())
|
|
|
|
return (ThrowException(Exception::Error(String::New("expected "
|
|
|
|
"object for request to contain string member headers"))));
|
|
|
|
|
|
|
|
Local<Value> strfwdfor = headers->Get(String::New("x-forwarded-for"));
|
2012-03-21 17:47:16 +01:00
|
|
|
String::Utf8Value fwdfor(strfwdfor);
|
2011-06-04 16:04:38 +02:00
|
|
|
|
|
|
|
if (!strfwdfor->IsString() || (req.forwardedFor = *fwdfor) == NULL)
|
2011-06-08 03:57:15 +02:00
|
|
|
req.forwardedFor = const_cast<char*>("");
|
2011-06-04 16:04:38 +02:00
|
|
|
|
2011-01-25 02:50:10 +01:00
|
|
|
SLURP_CONNECTION(args[1], conn);
|
|
|
|
|
2012-10-10 00:09:07 +02:00
|
|
|
#ifdef HAVE_SYSTEMTAP
|
|
|
|
NODE_HTTP_SERVER_REQUEST(&req, conn.fd, conn.remote, conn.port, \
|
|
|
|
conn.buffered);
|
|
|
|
#else
|
2011-01-25 02:50:10 +01:00
|
|
|
NODE_HTTP_SERVER_REQUEST(&req, &conn);
|
2012-10-10 00:09:07 +02:00
|
|
|
#endif
|
2013-03-19 22:55:05 +01:00
|
|
|
return Undefined(node_isolate);
|
2011-01-25 02:50:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Handle<Value> DTRACE_HTTP_SERVER_RESPONSE(const Arguments& args) {
|
2012-10-10 00:09:07 +02:00
|
|
|
#ifndef HAVE_SYSTEMTAP
|
2011-01-25 02:50:10 +01:00
|
|
|
if (!NODE_HTTP_SERVER_RESPONSE_ENABLED())
|
2013-03-19 22:55:05 +01:00
|
|
|
return Undefined(node_isolate);
|
2012-10-10 00:09:07 +02:00
|
|
|
#endif
|
2011-01-25 02:50:10 +01:00
|
|
|
|
2013-03-19 22:55:05 +01:00
|
|
|
HandleScope scope(node_isolate);
|
2011-01-25 02:50:10 +01:00
|
|
|
|
|
|
|
SLURP_CONNECTION(args[0], conn);
|
2012-10-10 00:09:07 +02:00
|
|
|
#ifdef HAVE_SYSTEMTAP
|
|
|
|
NODE_HTTP_SERVER_RESPONSE(conn.fd, conn.remote, conn.port, conn.buffered);
|
|
|
|
#else
|
2011-01-25 02:50:10 +01:00
|
|
|
NODE_HTTP_SERVER_RESPONSE(&conn);
|
2012-10-10 00:09:07 +02:00
|
|
|
#endif
|
2011-01-25 02:50:10 +01:00
|
|
|
|
2013-03-19 22:55:05 +01:00
|
|
|
return Undefined(node_isolate);
|
2011-01-25 02:50:10 +01:00
|
|
|
}
|
|
|
|
|
2011-02-10 03:50:26 +01:00
|
|
|
Handle<Value> DTRACE_HTTP_CLIENT_REQUEST(const Arguments& args) {
|
2011-06-04 16:04:38 +02:00
|
|
|
node_dtrace_http_client_request_t req;
|
2011-02-10 03:50:26 +01:00
|
|
|
char *header;
|
|
|
|
|
2012-10-10 00:09:07 +02:00
|
|
|
#ifndef HAVE_SYSTEMTAP
|
2011-02-10 03:50:26 +01:00
|
|
|
if (!NODE_HTTP_CLIENT_REQUEST_ENABLED())
|
2013-03-19 22:55:05 +01:00
|
|
|
return Undefined(node_isolate);
|
2012-10-10 00:09:07 +02:00
|
|
|
#endif
|
2011-02-10 03:50:26 +01:00
|
|
|
|
2013-03-19 22:55:05 +01:00
|
|
|
HandleScope scope(node_isolate);
|
2011-02-10 03:50:26 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* For the method and URL, we're going to dig them out of the header. This
|
|
|
|
* is not as efficient as it could be, but we would rather not force the
|
|
|
|
* caller here to retain their method and URL until the time at which
|
|
|
|
* DTRACE_HTTP_CLIENT_REQUEST can be called.
|
|
|
|
*/
|
|
|
|
Local<Object> arg0 = Local<Object>::Cast(args[0]);
|
|
|
|
SLURP_STRING(arg0, _header, &header);
|
|
|
|
|
|
|
|
req.method = header;
|
|
|
|
|
|
|
|
while (*header != '\0' && *header != ' ')
|
|
|
|
header++;
|
|
|
|
|
|
|
|
if (*header != '\0')
|
|
|
|
*header++ = '\0';
|
|
|
|
|
|
|
|
req.url = header;
|
|
|
|
|
|
|
|
while (*header != '\0' && *header != ' ')
|
|
|
|
header++;
|
|
|
|
|
|
|
|
*header = '\0';
|
|
|
|
|
|
|
|
SLURP_CONNECTION_HTTP_CLIENT(args[1], conn);
|
2012-10-10 00:09:07 +02:00
|
|
|
#ifdef HAVE_SYSTEMTAP
|
|
|
|
NODE_HTTP_CLIENT_REQUEST(&req, conn.fd, conn.remote, conn.port, \
|
|
|
|
conn.buffered);
|
|
|
|
#else
|
2011-02-10 03:50:26 +01:00
|
|
|
NODE_HTTP_CLIENT_REQUEST(&req, &conn);
|
2012-10-10 00:09:07 +02:00
|
|
|
#endif
|
2013-03-19 22:55:05 +01:00
|
|
|
return Undefined(node_isolate);
|
2011-02-10 03:50:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Handle<Value> DTRACE_HTTP_CLIENT_RESPONSE(const Arguments& args) {
|
2012-10-10 00:09:07 +02:00
|
|
|
#ifndef HAVE_SYSTEMTAP
|
2011-02-10 03:50:26 +01:00
|
|
|
if (!NODE_HTTP_CLIENT_RESPONSE_ENABLED())
|
2013-03-19 22:55:05 +01:00
|
|
|
return Undefined(node_isolate);
|
2012-10-10 00:09:07 +02:00
|
|
|
#endif
|
2013-03-19 22:55:05 +01:00
|
|
|
HandleScope scope(node_isolate);
|
2011-02-10 03:50:26 +01:00
|
|
|
|
|
|
|
SLURP_CONNECTION_HTTP_CLIENT_RESPONSE(args[0], args[1], conn);
|
2012-10-10 00:09:07 +02:00
|
|
|
#ifdef HAVE_SYSTEMTAP
|
|
|
|
NODE_HTTP_CLIENT_RESPONSE(conn.fd, conn.remote, conn.port, conn.buffered);
|
|
|
|
#else
|
2011-02-10 03:50:26 +01:00
|
|
|
NODE_HTTP_CLIENT_RESPONSE(&conn);
|
2012-10-10 00:09:07 +02:00
|
|
|
#endif
|
2011-02-10 03:50:26 +01:00
|
|
|
|
2013-03-19 22:55:05 +01:00
|
|
|
return Undefined(node_isolate);
|
2011-02-10 03:50:26 +01:00
|
|
|
}
|
|
|
|
|
2012-10-10 00:09:07 +02:00
|
|
|
#define NODE_PROBE(name) #name, name, Persistent<FunctionTemplate>()
|
2011-01-25 02:50:10 +01:00
|
|
|
|
2011-02-10 03:50:26 +01:00
|
|
|
static int dtrace_gc_start(GCType type, GCCallbackFlags flags) {
|
2012-10-10 00:09:07 +02:00
|
|
|
#ifdef HAVE_SYSTEMTAP
|
|
|
|
NODE_GC_START();
|
|
|
|
#else
|
2011-02-10 03:50:26 +01:00
|
|
|
NODE_GC_START(type, flags);
|
2012-10-10 00:09:07 +02:00
|
|
|
#endif
|
2011-02-10 03:50:26 +01:00
|
|
|
/*
|
|
|
|
* We avoid the tail-call elimination of the USDT probe (which screws up
|
|
|
|
* args) by forcing a return of 0.
|
|
|
|
*/
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dtrace_gc_done(GCType type, GCCallbackFlags flags) {
|
2012-10-10 00:09:07 +02:00
|
|
|
#ifdef HAVE_SYSTEMTAP
|
|
|
|
NODE_GC_DONE();
|
|
|
|
#else
|
2011-02-10 03:50:26 +01:00
|
|
|
NODE_GC_DONE(type, flags);
|
2012-10-10 00:09:07 +02:00
|
|
|
#endif
|
2011-02-10 03:50:26 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-25 02:50:10 +01:00
|
|
|
void InitDTrace(Handle<Object> target) {
|
|
|
|
static struct {
|
|
|
|
const char *name;
|
|
|
|
Handle<Value> (*func)(const Arguments&);
|
|
|
|
Persistent<FunctionTemplate> templ;
|
|
|
|
} tab[] = {
|
|
|
|
{ NODE_PROBE(DTRACE_NET_SERVER_CONNECTION) },
|
|
|
|
{ NODE_PROBE(DTRACE_NET_STREAM_END) },
|
2011-02-10 03:50:26 +01:00
|
|
|
{ NODE_PROBE(DTRACE_NET_SOCKET_READ) },
|
|
|
|
{ NODE_PROBE(DTRACE_NET_SOCKET_WRITE) },
|
2011-01-25 02:50:10 +01:00
|
|
|
{ NODE_PROBE(DTRACE_HTTP_SERVER_REQUEST) },
|
|
|
|
{ NODE_PROBE(DTRACE_HTTP_SERVER_RESPONSE) },
|
2011-02-10 03:50:26 +01:00
|
|
|
{ NODE_PROBE(DTRACE_HTTP_CLIENT_REQUEST) },
|
2012-10-10 00:09:07 +02:00
|
|
|
{ NODE_PROBE(DTRACE_HTTP_CLIENT_RESPONSE) }
|
2011-01-25 02:50:10 +01:00
|
|
|
};
|
|
|
|
|
2012-10-10 00:09:07 +02:00
|
|
|
for (unsigned int i = 0; i < ARRAY_SIZE(tab); i++) {
|
2013-03-18 21:54:00 +01:00
|
|
|
tab[i].templ = Persistent<FunctionTemplate>::New(node_isolate,
|
2011-01-25 02:50:10 +01:00
|
|
|
FunctionTemplate::New(tab[i].func));
|
|
|
|
target->Set(String::NewSymbol(tab[i].name), tab[i].templ->GetFunction());
|
|
|
|
}
|
2011-02-10 03:50:26 +01:00
|
|
|
|
2012-06-12 01:23:17 +02:00
|
|
|
#ifdef HAVE_ETW
|
|
|
|
init_etw();
|
|
|
|
#endif
|
|
|
|
|
2012-10-10 00:09:07 +02:00
|
|
|
#if defined HAVE_DTRACE || defined HAVE_ETW || defined HAVE_SYSTEMTAP
|
2011-02-10 03:50:26 +01:00
|
|
|
v8::V8::AddGCPrologueCallback((GCPrologueCallback)dtrace_gc_start);
|
|
|
|
v8::V8::AddGCEpilogueCallback((GCEpilogueCallback)dtrace_gc_done);
|
|
|
|
#endif
|
2011-01-25 02:50:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|