GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: tcp_wrap.cc Lines: 203 213 95.3 %
Date: 2022-09-22 04:22:24 Branches: 63 116 54.3 %

Line Branch Exec Source
1
// Copyright Joyent, Inc. and other Node contributors.
2
//
3
// Permission is hereby granted, free of charge, to any person obtaining a
4
// copy of this software and associated documentation files (the
5
// "Software"), to deal in the Software without restriction, including
6
// without limitation the rights to use, copy, modify, merge, publish,
7
// distribute, sublicense, and/or sell copies of the Software, and to permit
8
// persons to whom the Software is furnished to do so, subject to the
9
// following conditions:
10
//
11
// The above copyright notice and this permission notice shall be included
12
// in all copies or substantial portions of the Software.
13
//
14
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
17
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20
// USE OR OTHER DEALINGS IN THE SOFTWARE.
21
22
#include "tcp_wrap.h"
23
24
#include "connect_wrap.h"
25
#include "connection_wrap.h"
26
#include "env-inl.h"
27
#include "handle_wrap.h"
28
#include "node_buffer.h"
29
#include "node_external_reference.h"
30
#include "node_internals.h"
31
#include "stream_base-inl.h"
32
#include "stream_wrap.h"
33
#include "util-inl.h"
34
35
#include <cstdlib>
36
37
38
namespace node {
39
40
using v8::Boolean;
41
using v8::Context;
42
using v8::EscapableHandleScope;
43
using v8::Function;
44
using v8::FunctionCallbackInfo;
45
using v8::FunctionTemplate;
46
using v8::Int32;
47
using v8::Integer;
48
using v8::Isolate;
49
using v8::Local;
50
using v8::MaybeLocal;
51
using v8::Object;
52
using v8::String;
53
using v8::Uint32;
54
using v8::Value;
55
56
5041
MaybeLocal<Object> TCPWrap::Instantiate(Environment* env,
57
                                        AsyncWrap* parent,
58
                                        TCPWrap::SocketType type) {
59
5041
  EscapableHandleScope handle_scope(env->isolate());
60
5041
  AsyncHooks::DefaultTriggerAsyncIdScope trigger_scope(parent);
61
10082
  CHECK_EQ(env->tcp_constructor_template().IsEmpty(), false);
62
5041
  Local<Function> constructor = env->tcp_constructor_template()
63
5041
                                    ->GetFunction(env->context())
64
5041
                                    .ToLocalChecked();
65
5041
  CHECK_EQ(constructor.IsEmpty(), false);
66
10082
  Local<Value> type_value = Int32::New(env->isolate(), type);
67
  return handle_scope.EscapeMaybe(
68
10082
      constructor->NewInstance(env->context(), 1, &type_value));
69
}
70
71
72
6266
void TCPWrap::Initialize(Local<Object> target,
73
                         Local<Value> unused,
74
                         Local<Context> context,
75
                         void* priv) {
76
6266
  Environment* env = Environment::GetCurrent(context);
77
6266
  Isolate* isolate = env->isolate();
78
79
6266
  Local<FunctionTemplate> t = NewFunctionTemplate(isolate, New);
80
12532
  t->InstanceTemplate()->SetInternalFieldCount(StreamBase::kInternalFieldCount);
81
82
  // Init properties
83
25064
  t->InstanceTemplate()->Set(FIXED_ONE_BYTE_STRING(env->isolate(), "reading"),
84
                             Boolean::New(env->isolate(), false));
85
25064
  t->InstanceTemplate()->Set(env->owner_symbol(), Null(env->isolate()));
86
25064
  t->InstanceTemplate()->Set(env->onconnection_string(), Null(env->isolate()));
87
88
6266
  t->Inherit(LibuvStreamWrap::GetConstructorTemplate(env));
89
90
6266
  SetProtoMethod(isolate, t, "open", Open);
91
6266
  SetProtoMethod(isolate, t, "bind", Bind);
92
6266
  SetProtoMethod(isolate, t, "listen", Listen);
93
6266
  SetProtoMethod(isolate, t, "connect", Connect);
94
6266
  SetProtoMethod(isolate, t, "bind6", Bind6);
95
6266
  SetProtoMethod(isolate, t, "connect6", Connect6);
96
6266
  SetProtoMethod(isolate,
97
                 t,
98
                 "getsockname",
99
                 GetSockOrPeerName<TCPWrap, uv_tcp_getsockname>);
100
6266
  SetProtoMethod(isolate,
101
                 t,
102
                 "getpeername",
103
                 GetSockOrPeerName<TCPWrap, uv_tcp_getpeername>);
104
6266
  SetProtoMethod(isolate, t, "setNoDelay", SetNoDelay);
105
6266
  SetProtoMethod(isolate, t, "setKeepAlive", SetKeepAlive);
106
6266
  SetProtoMethod(isolate, t, "reset", Reset);
107
108
#ifdef _WIN32
109
  SetProtoMethod(isolate, t, "setSimultaneousAccepts", SetSimultaneousAccepts);
110
#endif
111
112
6266
  SetConstructorFunction(context, target, "TCP", t);
113
6266
  env->set_tcp_constructor_template(t);
114
115
  // Create FunctionTemplate for TCPConnectWrap.
116
  Local<FunctionTemplate> cwt =
117
6266
      BaseObject::MakeLazilyInitializedJSTemplate(env);
118
6266
  cwt->Inherit(AsyncWrap::GetConstructorTemplate(env));
119
6266
  SetConstructorFunction(context, target, "TCPConnectWrap", cwt);
120
121
  // Define constants
122
6266
  Local<Object> constants = Object::New(env->isolate());
123
18798
  NODE_DEFINE_CONSTANT(constants, SOCKET);
124
18798
  NODE_DEFINE_CONSTANT(constants, SERVER);
125
18798
  NODE_DEFINE_CONSTANT(constants, UV_TCP_IPV6ONLY);
126
6266
  target->Set(context,
127
              env->constants_string(),
128
12532
              constants).Check();
129
6266
}
130
131
5527
void TCPWrap::RegisterExternalReferences(ExternalReferenceRegistry* registry) {
132
5527
  registry->Register(New);
133
5527
  registry->Register(Open);
134
5527
  registry->Register(Bind);
135
5527
  registry->Register(Listen);
136
5527
  registry->Register(Connect);
137
5527
  registry->Register(Bind6);
138
5527
  registry->Register(Connect6);
139
140
5527
  registry->Register(GetSockOrPeerName<TCPWrap, uv_tcp_getsockname>);
141
5527
  registry->Register(GetSockOrPeerName<TCPWrap, uv_tcp_getpeername>);
142
5527
  registry->Register(SetNoDelay);
143
5527
  registry->Register(SetKeepAlive);
144
5527
  registry->Register(Reset);
145
#ifdef _WIN32
146
  registry->Register(SetSimultaneousAccepts);
147
#endif
148
5527
}
149
150
12823
void TCPWrap::New(const FunctionCallbackInfo<Value>& args) {
151
  // This constructor should not be exposed to public javascript.
152
  // Therefore we assert that we are not trying to call this as a
153
  // normal function.
154
12823
  CHECK(args.IsConstructCall());
155
12823
  CHECK(args[0]->IsInt32());
156
12823
  Environment* env = Environment::GetCurrent(args);
157
158
25646
  int type_value = args[0].As<Int32>()->Value();
159
12823
  TCPWrap::SocketType type = static_cast<TCPWrap::SocketType>(type_value);
160
161
  ProviderType provider;
162
12823
  switch (type) {
163
11022
    case SOCKET:
164
11022
      provider = PROVIDER_TCPWRAP;
165
11022
      break;
166
1801
    case SERVER:
167
1801
      provider = PROVIDER_TCPSERVERWRAP;
168
1801
      break;
169
    default:
170
      UNREACHABLE();
171
  }
172
173
12823
  new TCPWrap(env, args.This(), provider);
174
12823
}
175
176
177
12823
TCPWrap::TCPWrap(Environment* env, Local<Object> object, ProviderType provider)
178
12823
    : ConnectionWrap(env, object, provider) {
179
12823
  int r = uv_tcp_init(env->event_loop(), &handle_);
180
12823
  CHECK_EQ(r, 0);  // How do we proxy this error up to javascript?
181
                   // Suggestion: uv_tcp_init() returns void.
182
12823
}
183
184
185
5745
void TCPWrap::SetNoDelay(const FunctionCallbackInfo<Value>& args) {
186
  TCPWrap* wrap;
187
5745
  ASSIGN_OR_RETURN_UNWRAP(&wrap,
188
                          args.Holder(),
189
                          args.GetReturnValue().Set(UV_EBADF));
190
5745
  int enable = static_cast<int>(args[0]->IsTrue());
191
5745
  int err = uv_tcp_nodelay(&wrap->handle_, enable);
192
11490
  args.GetReturnValue().Set(err);
193
}
194
195
196
2385
void TCPWrap::SetKeepAlive(const FunctionCallbackInfo<Value>& args) {
197
  TCPWrap* wrap;
198
2385
  ASSIGN_OR_RETURN_UNWRAP(&wrap,
199
                          args.Holder(),
200
                          args.GetReturnValue().Set(UV_EBADF));
201
2385
  Environment* env = wrap->env();
202
  int enable;
203
4770
  if (!args[0]->Int32Value(env->context()).To(&enable)) return;
204
4770
  unsigned int delay = static_cast<unsigned int>(args[1].As<Uint32>()->Value());
205
2385
  int err = uv_tcp_keepalive(&wrap->handle_, enable, delay);
206
4770
  args.GetReturnValue().Set(err);
207
}
208
209
210
#ifdef _WIN32
211
void TCPWrap::SetSimultaneousAccepts(const FunctionCallbackInfo<Value>& args) {
212
  TCPWrap* wrap;
213
  ASSIGN_OR_RETURN_UNWRAP(&wrap,
214
                          args.Holder(),
215
                          args.GetReturnValue().Set(UV_EBADF));
216
  bool enable = args[0]->IsTrue();
217
  int err = uv_tcp_simultaneous_accepts(&wrap->handle_, enable);
218
  args.GetReturnValue().Set(err);
219
}
220
#endif
221
222
223
2
void TCPWrap::Open(const FunctionCallbackInfo<Value>& args) {
224
  TCPWrap* wrap;
225
2
  ASSIGN_OR_RETURN_UNWRAP(&wrap,
226
                          args.Holder(),
227
                          args.GetReturnValue().Set(UV_EBADF));
228
  int64_t val;
229
4
  if (!args[0]->IntegerValue(args.GetIsolate()->GetCurrentContext()).To(&val))
230
    return;
231
2
  int fd = static_cast<int>(val);
232
2
  int err = uv_tcp_open(&wrap->handle_, fd);
233
234
2
  if (err == 0)
235
2
    wrap->set_fd(fd);
236
237
4
  args.GetReturnValue().Set(err);
238
}
239
240
template <typename T>
241
3648
void TCPWrap::Bind(
242
    const FunctionCallbackInfo<Value>& args,
243
    int family,
244
    std::function<int(const char* ip_address, int port, T* addr)> uv_ip_addr) {
245
  TCPWrap* wrap;
246

1824
  ASSIGN_OR_RETURN_UNWRAP(&wrap,
247
                          args.Holder(),
248
                          args.GetReturnValue().Set(UV_EBADF));
249
1824
  Environment* env = wrap->env();
250
1824
  node::Utf8Value ip_address(env->isolate(), args[0]);
251
  int port;
252

1824
  unsigned int flags = 0;
253

3648
  if (!args[1]->Int32Value(env->context()).To(&port)) return;
254

3516
  if (family == AF_INET6 &&
255


5208
      !args[2]->Uint32Value(env->context()).To(&flags)) {
256
    return;
257
  }
258
259
  T addr;
260
1824
  int err = uv_ip_addr(*ip_address, port, &addr);
261
262

1824
  if (err == 0) {
263
1822
    err = uv_tcp_bind(&wrap->handle_,
264
                      reinterpret_cast<const sockaddr*>(&addr),
265
                      flags);
266
  }
267
3648
  args.GetReturnValue().Set(err);
268
}
269
270
132
void TCPWrap::Bind(const FunctionCallbackInfo<Value>& args) {
271
132
  Bind<sockaddr_in>(args, AF_INET, uv_ip4_addr);
272
132
}
273
274
275
1692
void TCPWrap::Bind6(const FunctionCallbackInfo<Value>& args) {
276
1692
  Bind<sockaddr_in6>(args, AF_INET6, uv_ip6_addr);
277
1692
}
278
279
280
1807
void TCPWrap::Listen(const FunctionCallbackInfo<Value>& args) {
281
  TCPWrap* wrap;
282
1807
  ASSIGN_OR_RETURN_UNWRAP(&wrap,
283
                          args.Holder(),
284
                          args.GetReturnValue().Set(UV_EBADF));
285
1807
  Environment* env = wrap->env();
286
  int backlog;
287
3614
  if (!args[0]->Int32Value(env->context()).To(&backlog)) return;
288
1807
  int err = uv_listen(reinterpret_cast<uv_stream_t*>(&wrap->handle_),
289
                      backlog,
290
                      OnConnection);
291
3614
  args.GetReturnValue().Set(err);
292
}
293
294
295
644
void TCPWrap::Connect(const FunctionCallbackInfo<Value>& args) {
296
644
  CHECK(args[2]->IsUint32());
297
  // explicit cast to fit to libuv's type expectation
298
1288
  int port = static_cast<int>(args[2].As<Uint32>()->Value());
299
644
  Connect<sockaddr_in>(args,
300
644
                       [port](const char* ip_address, sockaddr_in* addr) {
301
644
      return uv_ip4_addr(ip_address, port, addr);
302
  });
303
644
}
304
305
306
4839
void TCPWrap::Connect6(const FunctionCallbackInfo<Value>& args) {
307
4839
  Environment* env = Environment::GetCurrent(args);
308
4839
  CHECK(args[2]->IsUint32());
309
  int port;
310
9678
  if (!args[2]->Int32Value(env->context()).To(&port)) return;
311
4839
  Connect<sockaddr_in6>(args,
312
4839
                        [port](const char* ip_address, sockaddr_in6* addr) {
313
4839
      return uv_ip6_addr(ip_address, port, addr);
314
  });
315
}
316
317
template <typename T>
318
10966
void TCPWrap::Connect(const FunctionCallbackInfo<Value>& args,
319
    std::function<int(const char* ip_address, T* addr)> uv_ip_addr) {
320
10966
  Environment* env = Environment::GetCurrent(args);
321
322
  TCPWrap* wrap;
323
10966
  ASSIGN_OR_RETURN_UNWRAP(&wrap,
324
                          args.Holder(),
325
                          args.GetReturnValue().Set(UV_EBADF));
326
327
10966
  CHECK(args[0]->IsObject());
328
21932
  CHECK(args[1]->IsString());
329
330
21932
  Local<Object> req_wrap_obj = args[0].As<Object>();
331
10966
  node::Utf8Value ip_address(env->isolate(), args[1]);
332
333
  T addr;
334
10966
  int err = uv_ip_addr(*ip_address, &addr);
335
336
10966
  if (err == 0) {
337
21932
    AsyncHooks::DefaultTriggerAsyncIdScope trigger_scope(wrap);
338
21932
    ConnectWrap* req_wrap =
339
10966
        new ConnectWrap(env, req_wrap_obj, AsyncWrap::PROVIDER_TCPCONNECTWRAP);
340
21932
    err = req_wrap->Dispatch(uv_tcp_connect,
341
10966
                             &wrap->handle_,
342
                             reinterpret_cast<const sockaddr*>(&addr),
343
                             AfterConnect);
344
10966
    if (err) {
345
      delete req_wrap;
346
    } else {
347
21932
      CHECK(args[2]->Uint32Value(env->context()).IsJust());
348
21932
      int port = args[2]->Uint32Value(env->context()).FromJust();
349

12864
      TRACE_EVENT_NESTABLE_ASYNC_BEGIN2(TRACING_CATEGORY_NODE2(net, native),
350
                                        "connect",
351
                                        req_wrap,
352
                                        "ip",
353
                                        TRACE_STR_COPY(*ip_address),
354
                                        "port",
355
                                        port);
356
    }
357
  }
358
359
21932
  args.GetReturnValue().Set(err);
360
}
361
5
void TCPWrap::Reset(const FunctionCallbackInfo<Value>& args) {
362
  TCPWrap* wrap;
363
5
  ASSIGN_OR_RETURN_UNWRAP(
364
      &wrap, args.Holder(), args.GetReturnValue().Set(UV_EBADF));
365
366
10
  int err = wrap->Reset(args[0]);
367
368
10
  args.GetReturnValue().Set(err);
369
}
370
371
5
int TCPWrap::Reset(Local<Value> close_callback) {
372
5
  if (state_ != kInitialized) return 0;
373
374
5
  int err = uv_tcp_close_reset(&handle_, OnClose);
375
5
  state_ = kClosing;
376

15
  if (!err & !close_callback.IsEmpty() && close_callback->IsFunction() &&
377
5
      !persistent().IsEmpty()) {
378
5
    object()
379
15
        ->Set(env()->context(), env()->handle_onclose_symbol(), close_callback)
380
        .Check();
381
  }
382
5
  return err;
383
}
384
385
// also used by udp_wrap.cc
386
4813
MaybeLocal<Object> AddressToJS(Environment* env,
387
                               const sockaddr* addr,
388
                               Local<Object> info) {
389
4813
  EscapableHandleScope scope(env->isolate());
390
  char ip[INET6_ADDRSTRLEN + UV_IF_NAMESIZE];
391
  const sockaddr_in* a4;
392
  const sockaddr_in6* a6;
393
394
  int port;
395
396
4813
  if (info.IsEmpty())
397
357
    info = Object::New(env->isolate());
398
399
4813
  switch (addr->sa_family) {
400
4191
  case AF_INET6:
401
4191
    a6 = reinterpret_cast<const sockaddr_in6*>(addr);
402
4191
    uv_inet_ntop(AF_INET6, &a6->sin6_addr, ip, sizeof ip);
403
    // Add an interface identifier to a link local address.
404

4191
    if (IN6_IS_ADDR_LINKLOCAL(&a6->sin6_addr) && a6->sin6_scope_id > 0) {
405
2
      const size_t addrlen = strlen(ip);
406
2
      CHECK_LT(addrlen, sizeof(ip));
407
2
      ip[addrlen] = '%';
408
2
      size_t scopeidlen = sizeof(ip) - addrlen - 1;
409
2
      CHECK_GE(scopeidlen, UV_IF_NAMESIZE);
410
2
      const int r = uv_if_indextoiid(a6->sin6_scope_id,
411
2
                                     ip + addrlen + 1,
412
                                     &scopeidlen);
413
2
      if (r) {
414
        env->ThrowUVException(r, "uv_if_indextoiid");
415
        return {};
416
      }
417
    }
418
4191
    port = ntohs(a6->sin6_port);
419
4191
    info->Set(env->context(),
420
              env->address_string(),
421
16764
              OneByteString(env->isolate(), ip)).Check();
422
16764
    info->Set(env->context(), env->family_string(), env->ipv6_string()).Check();
423
4191
    info->Set(env->context(),
424
              env->port_string(),
425
12573
              Integer::New(env->isolate(), port)).Check();
426
4191
    break;
427
428
622
  case AF_INET:
429
622
    a4 = reinterpret_cast<const sockaddr_in*>(addr);
430
622
    uv_inet_ntop(AF_INET, &a4->sin_addr, ip, sizeof ip);
431
622
    port = ntohs(a4->sin_port);
432
622
    info->Set(env->context(),
433
              env->address_string(),
434
2488
              OneByteString(env->isolate(), ip)).Check();
435
2488
    info->Set(env->context(), env->family_string(), env->ipv4_string()).Check();
436
622
    info->Set(env->context(),
437
              env->port_string(),
438
1866
              Integer::New(env->isolate(), port)).Check();
439
622
    break;
440
441
  default:
442
    info->Set(env->context(),
443
              env->address_string(),
444
              String::Empty(env->isolate())).Check();
445
  }
446
447
4813
  return scope.Escape(info);
448
}
449
450
451
}  // namespace node
452
453
5597
NODE_MODULE_CONTEXT_AWARE_INTERNAL(tcp_wrap, node::TCPWrap::Initialize)
454
5527
NODE_MODULE_EXTERNAL_REFERENCE(tcp_wrap,
455
                               node::TCPWrap::RegisterExternalReferences)