From: Alan Mackenzie <acm@muc.de>
To: Stefan Monnier <monnier@iro.umontreal.ca>
Cc: emacs-devel@gnu.org
Subject: Re: [Emacs-diffs] master 5b5f441: read_key_sequence: correct the handling of raw_keybuf in recursive calls
Date: Mon, 20 Nov 2017 20:30:04 +0000 [thread overview]
Message-ID: <20171120203004.GC3917@ACM> (raw)
In-Reply-To: <jwvvai4lnri.fsf-monnier+emacsdiffs@gnu.org>
Hello, Stefan.
On Mon, Nov 20, 2017 at 15:09:45 -0500, Stefan Monnier wrote:
> >> > /* Calling read_char with COMMANDFLAG = -2 avoids
> >> > redisplay in read_char and its subroutines. */
> >> > key = read_char (prevent_redisplay ? -2 : NILP (prompt),
> >> > current_binding, last_nonmenu_event,
> >> > &used_mouse_menu, NULL);
> >> > + raw_keybuf_count = outer_raw_keybuf_count;
> >> > + raw_keybuf = outer_raw_keybuf;
> >> But here I worry: what if `read_char` exits non-locally because of
> >> a signal or a throw?
> > raw_keybuf{,_count} should then be re-initialised in command_loop_1 to
> > the static buffer variables, just before the call to read_key_sequence.
> But this `read_char` is within read_key_sequence: this read_key_sequence
> may have been called from anywhere, ....
read_key_sequence is static in keyboard.c, and is called from precisely
three places: command_loop_1, read_key_sequence_vs, and
read_menu_command.
> .... so after we exit it (non-locally), we may end up running
> arbitrary Elisp code before we return to command_loop_1, can't we?
Is it possible to exit non-locally from read_char (or one of its called
subroutines)? I don't think read_char calls any lisp, even when it's
dealing with a menu.
> And during this time we'll have raw_keybuf pointing to an out-of-date
> stack location, which seems eminently dangerous.
You have a point, here. Perhaps it would be better to get storage from
the Emacs heap rather than using the stack.
> I think we need to setup an unwind protection of some kind.
You might be right, but I'm not convinced yet.
> Stefan
--
Alan Mackenzie (Nuremberg, Germany).
next prev parent reply other threads:[~2017-11-20 20:30 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20171120181209.23553.97060@vcs0.savannah.gnu.org>
[not found] ` <20171120181210.7946F20416@vcs0.savannah.gnu.org>
2017-11-20 18:41 ` [Emacs-diffs] master 5b5f441: read_key_sequence: correct the handling of raw_keybuf in recursive calls Stefan Monnier
2017-11-20 19:59 ` Alan Mackenzie
2017-11-20 20:09 ` Stefan Monnier
2017-11-20 20:30 ` Alan Mackenzie [this message]
2017-11-20 21:43 ` Stefan Monnier
2017-11-22 19:25 ` Alan Mackenzie
2017-11-22 20:29 ` Stefan Monnier
2017-11-22 21:04 ` Alan Mackenzie
2017-11-23 14:35 ` Stefan Monnier
2017-11-23 18:10 ` Alan Mackenzie
2017-11-23 18:46 ` Stefan Monnier
2017-11-28 18:03 ` Alan Mackenzie
2017-11-28 20:30 ` Eli Zaretskii
2017-12-01 16:48 ` Alan Mackenzie
2017-12-01 18:17 ` 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=20171120203004.GC3917@ACM \
--to=acm@muc.de \
--cc=emacs-devel@gnu.org \
--cc=monnier@iro.umontreal.ca \
/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).