From: Eli Zaretskii <eliz@gnu.org>
To: Tom Gillespie <tgbugs@gmail.com>
Cc: larsi@gnus.org, 56002@debbugs.gnu.org
Subject: bug#56002: src/process.c; make-process fails to clean up stderr process on early exit
Date: Wed, 10 Aug 2022 21:06:33 +0300 [thread overview]
Message-ID: <8335e4q8gm.fsf@gnu.org> (raw)
In-Reply-To: <CA+G3_POSq2gxJO-M63DtkgmOkoZjsrY2jp6JA4G93+J37zjhxQ@mail.gmail.com> (message from Tom Gillespie on Tue, 9 Aug 2022 11:59:19 -0700)
> From: Tom Gillespie <tgbugs@gmail.com>
> Date: Tue, 9 Aug 2022 11:59:19 -0700
> Cc: larsi@gnus.org, 56002@debbugs.gnu.org
>
> > This is a misunderstanding: I meant "recycled" as in
> > "garbage-collected". GC in Emacs is supposed to prevent leaks of
> > memory and resources. You seem to be saying that this somehow doesn't
> > work in this case. Can you explain why it doesn't work, and which
> > resources specifically appear to be leaking?
>
> Ah. It doesn't work because in this failure mode stderrproc is never gced
> because it is still running and attached to a buffer. This is because it is in
> a bad state where it cannot exit because it cannot receive a signal from
> the non-existent primary process. See the example below where you will
> be prompted to kill stderr-buffer after sleeping and gc.
Sorry, I don't understand: stderrproc in this case is not a real
process, it's just a process object. So why does it need to receive a
signal?
To clean it up, make-process "just" needs to make sure this "process"
is killed and its resources released before it returns unsuccessfully.
Right?
> > I meant the potential interactions that are not explicitly visible by
> > reading the code, but instead stem from system-dependent stuff that is
> > related to how subprocesses are created on different systems.
>
> My reading of make-process is that it is impossible for callers in
> the elisp universe to see an internally created stderrproc until after
> create-process returns so implicit interactions on the elisp side
> never happen.
That's not what I meant. I meant the hidden dependencies on the
timing and the order of doing things.
For example, you are talking about vfork all the time, so I presume
you didn't analyze what happens in a build that uses posix_spawn
instead (see emacs_spawn), or when we launch subprocesses on
MS-Windows. They use different system calls in different orders, and
I worry that we could introduce subtle bugs by rocking this delicate
boat.
> The alternative is to add code to clean up the stderrproc for any
> possible failure during make-process after it has been created,
> though I'm not sure that is actually possible.
Maybe I'm misunderstand something here, but the usual way of doing
that is to use record_unwind_protect immediately after creating the
stderr process, with a suitable unwind function that would perform the
necessary cleanup. This ensures that however we exit make-process,
the cleanup is never missed, and we don't leak resources.
Why cannot we do this here? What am I missing?
next prev parent reply other threads:[~2022-08-10 18:06 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-15 22:38 bug#56002: src/process.c; make-process fails to clean up stderr process on early exit Tom Gillespie
2022-06-16 2:28 ` bug#56002: update with an additional example Tom Gillespie
2022-06-16 5:13 ` bug#56002: src/process.c; make-process fails to clean up stderr process on early exit Eli Zaretskii
2022-06-16 6:11 ` Tom Gillespie
2022-06-29 21:17 ` Tom Gillespie
2022-08-07 23:48 ` Tom Gillespie
2022-08-08 11:36 ` Lars Ingebrigtsen
2022-08-08 11:57 ` Eli Zaretskii
2022-08-08 18:54 ` Tom Gillespie
2022-08-09 11:43 ` Eli Zaretskii
2022-08-09 18:59 ` Tom Gillespie
2022-08-10 18:06 ` Eli Zaretskii [this message]
2022-08-11 2:33 ` Tom Gillespie
2022-08-11 6:30 ` Eli Zaretskii
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
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8335e4q8gm.fsf@gnu.org \
--to=eliz@gnu.org \
--cc=56002@debbugs.gnu.org \
--cc=larsi@gnus.org \
--cc=tgbugs@gmail.com \
/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.savannah.gnu.org/cgit/emacs.git
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 read-only IMAP folder(s) and NNTP newsgroup(s).