zsh-workers
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: Soares Chen <soares.chen@gmail.com>
Cc: "zsh-workers@zsh.org" <zsh-workers@zsh.org>
Subject: Re: Zsh scripts leave defunct processes when running under docker exec
Date: Tue, 10 Feb 2015 22:53:13 -0800	[thread overview]
Message-ID: <CAH+w=7YBD6ocsd6+PL-AgpkDt4-O2AHPQa06U2=b7s2LfeORQw@mail.gmail.com> (raw)
In-Reply-To: <CACUDQOE1y34_b_OF8g4kf7JJisyBc0T5Chr_E8xkZiyO_kTRGQ@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 1463 bytes --]

On Tuesday, February 10, 2015, Soares Chen <soares.chen@gmail.com> wrote:

> This only happens when the script is running inside a shell spawned by
> `docker exec`. When running under normal system and under `docker
> run`, there is no defunct process.
>
> This bug is first discovered when I run nvm in docker
> (https://github.com/creationix/nvm/issues/650). It was then discovered
> that Docker's nsenter did not properly handle the SIGCHLD signal
> raised from zsh. (https://github.com/docker/libcontainer/pull/369)
> Even though it is now been fixed by Docker, I am not sure why zsh
> would cause this bug in the first place.
>

(Someone more knowledgeable may be able to correct any misconceptions I
have about docker.)

I'm not exactly a docker expert, but my understanding is that docker
incorporates (is built on?) the relatively recent Linux feature of "PID
namespaces".  Under a PID namespace, the first process started is assigned
PID 1and is expected to behave like the "init" process in a traditional
Unix/Linux system, and be the ultimate manager of all the other processes
spawned within the namespace.

Zsh is not designed to assume that role.  In particular, when processing a
script, it will optimize process handling and perform an implicit "exec" of
the final command in the script, so that it need not hang around waiting
for that process to exit, assuming that it's own parent will reap it.  In a
"docker exec" there is no parent to do so.

  reply	other threads:[~2015-02-11  6:53 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-11  4:43 Soares Chen
2015-02-11  6:53 ` Bart Schaefer [this message]
2015-02-11 10:11   ` Peter Stephenson
2015-02-11 16:13     ` Bart Schaefer
2015-02-13 10:39       ` Daniel Shahaf
2015-02-14 18:58         ` Bart Schaefer
2015-02-15 14:03           ` Soares Chen
2015-02-15 18:20             ` Peter Stephenson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAH+w=7YBD6ocsd6+PL-AgpkDt4-O2AHPQa06U2=b7s2LfeORQw@mail.gmail.com' \
    --to=schaefer@brasslantern.com \
    --cc=soares.chen@gmail.com \
    --cc=zsh-workers@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).