Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upon killing the process: FATAL ERROR: v8::HandleScope::CreateHandle() Cannot create a handle without a HandleScope #126

Closed
intval opened this issue Aug 4, 2015 · 4 comments

Comments

@intval
Copy link

intval commented Aug 4, 2015

If the spawned process dies for any reason, node irrecoverably crashes with

FATAL ERROR: v8::HandleScope::CreateHandle() Cannot create a handle without a HandleScope

Script to reproduce:

var pty = require('pty.js');
var proc = pty.spawn('bash');
setTimeout(function(){proc.kill();}, 1000);

Expected outcome:

  • No crash
  • Event raised on error / on exit

Additional info

vagrant@precise64:/vagrant/replserver$ cat /etc/*release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=14.04
DISTRIB_CODENAME=trusty
DISTRIB_DESCRIPTION="Ubuntu 14.04.2 LTS"
NAME="Ubuntu"
VERSION="14.04.2 LTS, Trusty Tahr"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 14.04.2 LTS"
VERSION_ID="14.04"
HOME_URL="http://www.ubuntu.com/"
SUPPORT_URL="http://help.ubuntu.com/"
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"

iojs 2.5.0

$ node -e "console.log(process.versions)"
{ http_parser: '2.5.0',
  node: '2.5.0',
  v8: '4.2.77.21',
  uv: '1.6.1',
  zlib: '1.2.8',
  ares: '1.10.1-DEV',
  modules: '44',
  openssl: '1.0.2d' }
@intval
Copy link
Author

intval commented Aug 4, 2015

Or, perhaps, what would be the proper way to shutdown the forked process without causing troubles ?

@intval
Copy link
Author

intval commented Aug 4, 2015

Actually this happens not only on process kill, but also on a valid exit, such as
proc.write("exit\r"); for bash, which supposedly terminates the process in a nice way

@chjj chjj closed this as completed in e477660 Aug 5, 2015
@chjj
Copy link
Owner

chjj commented Aug 5, 2015

This looks like a difference in v8 API between io.js 2.5.0 and node.js 0.12.x. io.js uses v8 4.2 node uses v8 3.28.

It looks like this has something to do with pty_after_waitpid not creating a NanScope() to execute the callback: https://github.com/chjj/pty.js/blob/master/src/unix/pty.cc#L449

I don't normally use io.js, but I just tested this change on 2.5.0 and it seems to fix it.

@intval
Copy link
Author

intval commented Aug 5, 2015

Wow, you are awesome ;) Thanks for such a prompt reply and fix. It works indeed.

destitutus pushed a commit to codio/pty.js that referenced this issue Jul 5, 2016
* add support for .on('exit', function (code, signal) {})

* use an arg instead of arguments[0]

* htop command cannot resize with env.LINSE and env.COLUMNS

* v0.2.8. fixes chjj#122.

* style conventions.

* fix build. see chjj#110.

* call uv_close to take cb off the event loop. see chjj#110.

* more style fixes.

* use older v8 api for function casts?

* fix after_wait_on_pid for node v0.10.x. see chjj#110.

* fix close events. see chjj#110.

* v0.2.9

* refactor waitpid thread.

* refactor pty.fork args.

* free up baton in uv_close callback. see chjj#110.

* fix issue where exit is emitted before the last data event. see chjj#110.

* account for node v0.8.x on waitpid. see chjj#110.

* v0.2.10

* add comment.

* v0.2.11

* better onexit callback.

* event better onexit callback. see chjj#110.

* v0.2.12

* create scope in pty_after_waitpid to prevent fatal v8 error in io.js. fixes chjj#126.

* v0.2.13

* upgrade to nan 2.0.5. see chjj#127.

* remove "heap-style" Nan::Callback.

* strict nan version.

* remove useless v8 namespace prefixes.

* minor: whitespace. cols.

* bind to close only once.

* v0.3.0

* update win/pty.cc to work with nan 2.0.5

* Optional resuming of the socket

The immediate resumption the a socket means that output can be lost
unless you start consuming it right away. In some cases, this
behavior is undesirable. Adding an option to not automatically resume
the socket enables data to be read after a delay.

* Update nan version
ddm pushed a commit to ddm/pty.js that referenced this issue Nov 8, 2017
destitutus added a commit to codio/pty.js that referenced this issue Jun 21, 2018
* add support for .on('exit', function (code, signal) {})

* use an arg instead of arguments[0]

* htop command cannot resize with env.LINSE and env.COLUMNS

* v0.2.8. fixes chjj#122.

* style conventions.

* fix build. see chjj#110.

* call uv_close to take cb off the event loop. see chjj#110.

* more style fixes.

* use older v8 api for function casts?

* fix after_wait_on_pid for node v0.10.x. see chjj#110.

* fix close events. see chjj#110.

* v0.2.9

* refactor waitpid thread.

* refactor pty.fork args.

* free up baton in uv_close callback. see chjj#110.

* fix issue where exit is emitted before the last data event. see chjj#110.

* account for node v0.8.x on waitpid. see chjj#110.

* v0.2.10

* add comment.

* v0.2.11

* better onexit callback.

* event better onexit callback. see chjj#110.

* v0.2.12

* create scope in pty_after_waitpid to prevent fatal v8 error in io.js. fixes chjj#126.

* v0.2.13

* upgrade to nan 2.0.5. see chjj#127.

* remove "heap-style" Nan::Callback.

* strict nan version.

* remove useless v8 namespace prefixes.

* minor: whitespace. cols.

* bind to close only once.

* v0.3.0

* update win/pty.cc to work with nan 2.0.5

* Optional resuming of the socket

The immediate resumption the a socket means that output can be lost
unless you start consuming it right away. In some cases, this
behavior is undesirable. Adding an option to not automatically resume
the socket enables data to be read after a delay.

* update dependency [email protected] to [email protected]

* update nan to @2.3.5

* v0.3.1

* pty.kill is not a function

see https://codio.myjetbrains.com/youtrack/issue/codio-9306

* add comment
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants