unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: "Lukas Fürmetz" <fuermetz@mailbox.org>
To: Eli Zaretskii <eliz@gnu.org>
Cc: emacs-devel@gnu.org
Subject: Re: [PATCH] Add nil check for decoding buffer
Date: Thu, 12 Apr 2018 17:24:22 +0200 (CEST)	[thread overview]
Message-ID: <133731674.12774.1523546662700@office.mailbox.org> (raw)
In-Reply-To: <83d0z53cfo.fsf@gnu.org>

It was definitly a pipe process (cquery (github.com/cquery-project/cquery) via lsp-mode).
I have a reproducable workspace, but I cannot share it. The crash happens, when stdout is
split exactly between a windows newline, so between \r and \n.

Maybe I have time to debug it again tomorrow. Otherwise, I'll try to reproduce the problem
in another way..

> Eli Zaretskii <eliz@gnu.org> hat am 11. April 2018 um 19:00 geschrieben:
> 
> 
> > From: Lukas Fürmetz <fuermetz@mailbox.org>
> > Date: Tue, 10 Apr 2018 23:44:22 +0200
> > 
> > This patch prevents a emacs crash under Windows for me. Sometimes the
> > buffer is split between \r\n and the \n is carried over, but the
> > decoding_buf is NIL, so "SCHARS (p->decoding_buf)" leads to a SEGFAULT.
> > 
> > Would be nice, if this is backported to emacs-26..
> > 
> > Best regards,
> > Lukas
> > 
> > ---
> >  src/process.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/src/process.c b/src/process.c
> > index c357a8bdc3..ab2e6ce4da 100644
> > --- a/src/process.c
> > +++ b/src/process.c
> > @@ -5996,7 +5996,7 @@ read_and_dispose_of_process_output (struct Lisp_Process *p, char *chars,
> > 
> >    if (coding->carryover_bytes > 0)
> >      {
> > -      if (SCHARS (p->decoding_buf) < coding->carryover_bytes)
> > +      if (NILP (p->decoding_buf) || (SCHARS (p->decoding_buf) < coding->carryover_bytes))
> >  	pset_decoding_buf (p, make_uninit_string (coding->carryover_bytes));
> >        memcpy (SDATA (p->decoding_buf), coding->carryover,
> >  	      coding->carryover_bytes);
> 
> Thanks, but I don't think this is the right fix for the problem.
> Every process object must have an associated decoding_buf, so if some
> process doesn't, it's a bug in that process's creation code.  My
> reading of the code is that all the process types we support have
> decoding_buf defined during creation -- except one: make-pipe-process
> fails to do that.  So the fix should be in make-pipe-process.
> 
> Is the problem reproducible, or do you remember what you did when it
> happened?  I'd like to make sure that indeed some pipe process was
> involved in the crash, because otherwise I don't see how it could
> happen.



  reply	other threads:[~2018-04-12 15:24 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-10 21:44 [PATCH] Add nil check for decoding buffer Lukas Fürmetz
2018-04-11 17:00 ` Eli Zaretskii
2018-04-12 15:24   ` Lukas Fürmetz [this message]
2018-04-12 15:29     ` Eli Zaretskii
2018-04-12 15:34       ` Lukas Fürmetz
2018-04-12 16:24         ` Eli Zaretskii
2018-04-13  8:47           ` Lukas Fürmetz
2018-04-13 12:49             ` 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=133731674.12774.1523546662700@office.mailbox.org \
    --to=fuermetz@mailbox.org \
    --cc=eliz@gnu.org \
    --cc=emacs-devel@gnu.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.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).