Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: TRAPINT doesn't work reliably
- X-seq: zsh-users 24290
- From: Dennis Schwartz <dennis.schwartz@xxxxxxxxxxxxxx>
- To: Peter Stephenson <p.stephenson@xxxxxxxxxxx>
- Subject: Re: TRAPINT doesn't work reliably
- Date: Thu, 26 Sep 2019 14:48:21 +0000
- Cc: "zsh-users@xxxxxxx" <zsh-users@xxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=default; t=1569509306; bh=clXnRz31LLx19HRXkJxlMoKQZWrMHvLevaSdeIeqejM=; h=Date:To:From:Cc:Reply-To:Subject:In-Reply-To:References: Feedback-ID:From; b=Ej8YfVR60G7N5mZzzh5+LPQ4QEL7Q0RXCjLch/t3TZ+y+3LjR4Vwvmrf924rLm2fC uHVmfmNC8+r0QyOvjyPZ4TO3WnZiFUp7hHkZHI4SUN0wOwdBRaHrl9vd5OS9sk29M2 hUefG39kltb4agTpyrnHDgpYiGqKboK6KCGxbObg=
- Feedback-id: 9o-Cl1kmi7SjXhHVTYCKLMaOWEb5sehZHGWJCh5kD69wcWVVeOfY5BYq3wMUF0ymJu-oBC8u1h80JJ91GEz6Og==:Ext:ProtonMail
- In-reply-to: <1569434163.10786.26.camel@samsung.com>
- List-help: <mailto:zsh-users-help@zsh.org>
- List-id: Zsh Users List <zsh-users.zsh.org>
- List-post: <mailto:zsh-users@zsh.org>
- List-unsubscribe: <mailto:zsh-users-unsubscribe@zsh.org>
- Mailing-list: contact zsh-users-help@xxxxxxx; run by ezmlm
- References: <CGME20190917164905epcas1p4ad458ffcd504501780d522880c81de3e@epcas1p4.samsung.com> <XwKNAg1qGlWEVe6teZMU0FhD554sBKMAVDblWDoIFxZeOktj1B6qY4Jl7BESBBQFtRKy8SeAa7UzBcB5vShOqFQTgNcZoWShxyjeLaLrCKI=@protonmail.com> <1569314663.5531.4.camel@samsung.com> <Bczpjmkq93UC9ogVXedAec4MSWn1xm79AtK56m7J7_XKU3g1oWkhoUeoj9_CjqM_bdhDM3WFcb0IWT04yMJctdhKDGj_fiAyOLAfaMatz5k=@protonmail.com> <1394985674.3969083.1569420087673@mail2.virginmedia.com> <22AgAhXQWzavJGhNA8tFbGSMGk8z3KDGGa-pICX0lWszH622z2_nnc1acuvW3OcIbqAaXM_WAGJwmQU5Oph83DGbfQEplu1t3o7F5omeC4w=@protonmail.com> <1569434163.10786.26.camel@samsung.com>
- Reply-to: Dennis Schwartz <dennis.schwartz@xxxxxxxxxxxxxx>
On Wednesday, September 25, 2019 7:56 PM, Peter Stephenson <p.stephenson@xxxxxxxxxxx> wrote:
> On Wed, 2019-09-25 at 16:25 +0000, Dennis Schwartz wrote:
>
> > ==1896== Block was alloc'd at
> > ==1896== at 0x483877F: malloc (vg_replace_malloc.c:299)
> > ==1896== by 0x136A13: zcontext_save_partial (in /usr/bin/zsh)
> > ==1896== by 0x165622: parse_subscript (in /usr/bin/zsh)
> > ==1896== by 0x17A446: getindex (in /usr/bin/zsh)
> > ==1896== by 0x17ABCF: fetchvalue (in /usr/bin/zsh)
> > ==1896== by 0x19BDB0: ??? (in /usr/bin/zsh)
> > ==1896== by 0x1A0C87: prefork (in /usr/bin/zsh)
> > ==1896== by 0x13ABE6: execsubst (in /usr/bin/zsh)
> > ==1896== by 0x1674CB: execfor (in /usr/bin/zsh)
> > ==1896== by 0x13E44C: ??? (in /usr/bin/zsh)
> > ==1896== by 0x13FB6E: ??? (in /usr/bin/zsh)
> > ==1896== by 0x13FF11: ??? (in /usr/bin/zsh)
> > ==1896==
> > ==1896== Invalid read of size 1
>
> One kind of interesting thing here is there's some suggestion that the
> original allocation was not simply in top level code, but in some kind
> of block (at least a for block) --- assuming, of course, this is
> relevant. Is there some structure about the point where you're setting
> up the trap? If so, does changing it (making it simpler) have any
> effect on the problem?
Okay, after quite some time debugging (I will spare you the details of
all what I've tried), I can now reliably reproduce the bug. However, I
lack the knowledge of zsh to understand what is causing the bug.
To trigger the bug, I just open a fresh new shell (e.g. run `zsh`) and
type `ls` and hit TAB to trigger the autocompletion function.
However, I can only reproduce the bug if I have the following code in my
`~/.zshrc`:
# Antigen zsh plugins
if [ -f "/usr/share/zsh-antigen/antigen.zsh" ]; then
source "/usr/share/zsh-antigen/antigen.zsh"
# load some plugins here, but they are not relevant to trigger
# the bug
fi
So, I conditionally `source` another file. Apparently, this is causing
*super weird* behavior. Unbelievably, if I open the file `.zshrc` (e.g.,
vim/gedit) and _save_ the file, I cannot trigger the bug. However, if I
open the file, but _do not save_ the file, I always trigger the bug.
To complicate it further, I can trigger the bug when I compile from
source `zsh-5.7.1`, but I cannot trigger the bug anymore if VERSION in
`Config/version.mk` is updated (i.e., the next commit).
These findings leave me totally confused. Not sure if it's relevant but
I mount my home folder with the `noatime` option.
Any ideas? Thanks for your help!
Cheers,
Dennis
Messages sorted by:
Reverse Date,
Date,
Thread,
Author