From: Greg Ungerer <gerg@linux-m68k.org>
To: Michael Schmitz <schmitzmic@gmail.com>,
Finn Thain <fthain@linux-m68k.org>
Cc: linux-m68k@vger.kernel.org, geert@linux-m68k.org,
linux-m68k@lists.linux-m68k.org
Subject: Re: [PATCH v4 1/2] m68k: Handle __generic_copy_to_user faults more carefully
Date: Fri, 9 Aug 2024 22:58:09 +1000 [thread overview]
Message-ID: <64ae53d5-57fb-4b72-997c-c5158bea04fa@linux-m68k.org> (raw)
In-Reply-To: <5c737af5-4ba6-a6f4-c468-7d7b291c6781@gmail.com>
Hi Michael, Finn,
On 9/8/24 18:03, Michael Schmitz wrote:
> Hi Finn,
>
> Am 09.08.2024 um 15:34 schrieb Finn Thain:
>>
>> On Fri, 9 Aug 2024, Michael Schmitz wrote:
>>
>>>>
>>>> I tried out the "stress-ng --sysbadaddr -1" test, and that didn't go
>>>> so well for me:
>>>>
>>>> # stress-ng --sysbadaddr -1
>>>> stress-ng: info: [37] defaulting to a 86400 second (1 day, 0.00
>>>> secs) run
>>>> per stressor
>>>> stress-ng: info: [37] dispatching hogs: 1 sysbadaddr
>>>> *** ILLEGAL INSTRUCTION *** FORMAT=4
>>>> Current process id is 39
>>>> BAD KERNEL TRAP: 00000000
>>>> Modules linked in:
>>>> PC: [<00000000>] 0x0
>>>> SR: 2004 SP: 6504e563 a2: 008ee380
>>>> d0: 000000f7 d1: 00000000 d2: 00000000 d3: 00000000
>>>> d4: 00a87b80 d5: bfbf3814 a0: 00000000 a1: bfbf3814
>>>> Process stress-ng-sysba (pid: 39, task=4dbb2ec5)
>>>> Frame format=4 eff addr=480a2004 pc=0002b154
>>>> Stack from 00adff20:
>>>> 00ade000 00000000 00000000 000000f7 00000000 00000004 00a87b80
>>>> 00000000
>>>> 00000000 00000000 00000000 008ee380 0002ab5c 00000100 00000122
>>>> fffffff6
>>>> bfbf376c 0002b29e 000000f7 bfbf3814 00000000 00000000 00ade000
>>>> 0002b222
>>>> 00ae0800 80118988 00000000 00000005 bfbf37a0 00000005 bfbf3814
>>>> 00adffcc
>>>> 00023d2c 00adffcc 00000000 00000000 00000000 00000000 000000f7
>>>> 00000000
>>>> 80118b46 00021850 00024b00 000000f7 bfbf3814 00000000 00000000
>>>> bfbf3814
>>>> Call Trace: [<0002ab5c>] child_wait_callback+0x0/0x24
>>>> [<0002b29e>] sys_wait4+0x7c/0x8e
>>>> [<0002b222>] sys_wait4+0x0/0x8e
>>>> [<00023d2c>] buserr_c+0xb0/0x152
>>>> [<00021850>] buserr+0x28/0x30
>>>> [<00024b00>] system_call+0x54/0xa8
>>>>
>>>> But that is the same with and without these patches.
>>>
>>> I wonder if recent signal handling changes (e.g. commit
>>> 0d4276cfbe6fd4c4a21acdee803b05a3a6192082) have rare unexpected side
>>> effects on
>>> Coldfire here ... OTOH, signal handling as such works just fine, right?
>>>
>>
>> That would be commit b845b574f86d ("m68k: Move signal frame following
>> exception on 68020/030") on mainline. If it caused a regression, that
>> would have first appeared in v6.4. I can't imagine how that commit could
>> affect Coldfire but that's no reason not to test an older kernel.
>
> Yes, testing older kernels is certainly the fastest way to rule out
> involvement of that commit.
I will go back a few revisions and see if I can shed some light on it.
Regards
Greg
> On a closer look, there is no possible way in that this commit can be
> responsible for the bug unless Coldfire does use frame format B for
> access errors. I don't think that's likely?
>
>> FWIW, my hunch is that the other stressors which call wait4() will
>> probably crash too (regardless of kernel version).
>
> Quite likely ...
>
> Cheers,
>
> Michael
>
>
>
next prev parent reply other threads:[~2024-08-09 12:58 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-29 3:09 [PATCH v4 0/2] m68k uaccess fault handling fixes Michael Schmitz
2024-04-29 3:09 ` [PATCH v4 1/2] m68k: Handle __generic_copy_to_user faults more carefully Michael Schmitz
2024-08-07 8:14 ` Finn Thain
2024-08-07 19:32 ` Michael Schmitz
2024-08-08 1:57 ` Finn Thain
2024-08-08 6:05 ` Greg Ungerer
2024-08-08 6:56 ` Finn Thain
2024-08-08 14:52 ` Greg Ungerer
2024-08-08 19:27 ` Michael Schmitz
2024-08-09 3:34 ` Finn Thain
2024-08-09 8:03 ` Michael Schmitz
2024-08-09 12:58 ` Greg Ungerer [this message]
2024-08-09 3:22 ` Finn Thain
2024-08-08 6:58 ` Michael Schmitz
2024-04-29 3:09 ` [PATCH v4 2/2] m68k: improve __constant_copy_to_user_asm() fault handling Michael Schmitz
2024-04-29 7:58 ` [PATCH v4 0/2] m68k uaccess fault handling fixes Greg Ungerer
2024-04-29 8:08 ` Geert Uytterhoeven
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=64ae53d5-57fb-4b72-997c-c5158bea04fa@linux-m68k.org \
--to=gerg@linux-m68k.org \
--cc=fthain@linux-m68k.org \
--cc=geert@linux-m68k.org \
--cc=linux-m68k@lists.linux-m68k.org \
--cc=linux-m68k@vger.kernel.org \
--cc=schmitzmic@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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox