-
-
Notifications
You must be signed in to change notification settings - Fork 32.2k
Open
Labels
netIssues and PRs related to the net subsystem.Issues and PRs related to the net subsystem.
Description
Version
22.9.0
Platform
image node:22.9.0-bullseye-slim
Subsystem
No response
What steps will reproduce the bug?
Run in node cli:
const undici = require('undici')
const { default: fastCopy } = require('fast-copy')
const a = new undici.Agent()
a.request({ method: 'GET', origin: 'https://google.com', path: '/' }).then(r => r.body.text())
fastCopy(a)
How often does it reproduce? Is there a required condition?
everytime
What is the expected behavior? Why is that the expected behavior?
Have meaningful protection and error message on JS level
What do you see instead?
Process crash
│ node[80]: static void node::TCPWrap::New(const v8::FunctionCallbackInfo<v8::Value>&) at ../src/tcp_wrap.cc:155
│ # Assertion failed: args[0]->IsInt32()
│ │
│ ----- Native stack trace -----
│ 1: 0xf462ec node::Assert(node::AssertionInfo const&) [node]
│ 2: 0x1088d7c node::TCPWrap::New(v8::FunctionCallbackInfo<v8::Value> const&) [node]
│ 3: 0x1239b24 [node]
│ 4: 0x1239dcc v8::internal::Builtin_HandleApiConstruct(int, unsigned long*, v8::internal::Isolate*) [node]
│ 5: 0x1cfb8f4 [node] │
│ ----- JavaScript stack trace -----
│ 1: getCleanClone (/home/app/node_modules/fast-copy/dist/cjs/index.cjs:52:20)
│ 2: copyObjectLooseModern (/home/app/node_modules/fast-copy/dist/cjs/index.cjs:214:17)
│ 3: copier (/home/app/node_modules/fast-copy/dist/cjs/index.cjs:371:20)
│ 4: copyObjectLooseModern (/home/app/node_modules/fast-copy/dist/cjs/index.cjs:226:35)
│ 5: copier (/home/app/node_modules/fast-copy/dist/cjs/index.cjs:371:20)
│ 6: copyObjectLooseModern (/home/app/node_modules/fast-copy/dist/cjs/index.cjs:226:35)
│ 7: copier (/home/app/node_modules/fast-copy/dist/cjs/index.cjs:371:20)
│ 8: copyArrayLoose (/home/app/node_modules/fast-copy/dist/cjs/index.cjs:147:30)
│ 9: copier (/home/app/node_modules/fast-copy/dist/cjs/index.cjs:367:20)
│ 10: copyObjectLooseModern (/home/app/node_modules/fast-copy/dist/cjs/index.cjs:226:35)
Additional information
Using pure js library, without native code manipulation causes internal nodejs error and process crash
here is the library
https://github.com/planttheidea/fast-copy
Metadata
Metadata
Assignees
Labels
netIssues and PRs related to the net subsystem.Issues and PRs related to the net subsystem.