* [Xenomai] x86_32 mayday @ 2012-06-01 17:16 Gilles Chanteperdrix 2012-06-01 17:28 ` Jan Kiszka 0 siblings, 1 reply; 7+ messages in thread From: Gilles Chanteperdrix @ 2012-06-01 17:16 UTC (permalink / raw) To: Xenomai Hi, with the current tip of xenomai 2.6 branch, the "sigdebug" test testing the "mayday" code ends up with a segfault on x86_32. I tried to have a look at it, but could not really understand what happens: the register on return from the syscall are ok, but the segfault happens after return from the signal handler, when returning from the interrupted function. It looks like either ebp, or the function return adress are wrong. If anyone wants to have a look at it... Jan maybe? Regards. -- Gilles. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Xenomai] x86_32 mayday 2012-06-01 17:16 [Xenomai] x86_32 mayday Gilles Chanteperdrix @ 2012-06-01 17:28 ` Jan Kiszka 2012-06-01 18:05 ` Gilles Chanteperdrix 2012-06-03 16:58 ` Philippe Gerum 0 siblings, 2 replies; 7+ messages in thread From: Jan Kiszka @ 2012-06-01 17:28 UTC (permalink / raw) To: Gilles Chanteperdrix; +Cc: Xenomai On 2012-06-01 19:16, Gilles Chanteperdrix wrote: > > Hi, > > with the current tip of xenomai 2.6 branch, the "sigdebug" test testing > the "mayday" code ends up with a segfault on x86_32. I tried to have a > look at it, but could not really understand what happens: the register > on return from the syscall are ok, but the segfault happens after return > from the signal handler, when returning from the interrupted function. > It looks like either ebp, or the function return adress are wrong. > > If anyone wants to have a look at it... Jan maybe? Can't promise, but will try to find a slot. I think I didn't test on x86-32 so far. Is this a regression or did you run the test for the first time as well? Jan -- Siemens AG, Corporate Technology, CT T DE IT 1 Corporate Competence Center Embedded Linux ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Xenomai] x86_32 mayday 2012-06-01 17:28 ` Jan Kiszka @ 2012-06-01 18:05 ` Gilles Chanteperdrix 2012-06-04 11:16 ` Philippe Gerum 2012-06-03 16:58 ` Philippe Gerum 1 sibling, 1 reply; 7+ messages in thread From: Gilles Chanteperdrix @ 2012-06-01 18:05 UTC (permalink / raw) To: Jan Kiszka; +Cc: Xenomai On 06/01/2012 07:28 PM, Jan Kiszka wrote: > On 2012-06-01 19:16, Gilles Chanteperdrix wrote: >> >> Hi, >> >> with the current tip of xenomai 2.6 branch, the "sigdebug" test testing >> the "mayday" code ends up with a segfault on x86_32. I tried to have a >> look at it, but could not really understand what happens: the register >> on return from the syscall are ok, but the segfault happens after return >> from the signal handler, when returning from the interrupted function. >> It looks like either ebp, or the function return adress are wrong. >> >> If anyone wants to have a look at it... Jan maybe? > > Can't promise, but will try to find a slot. > > I think I didn't test on x86-32 so far. Is this a regression or did you > run the test for the first time as well? First time since 2.6.0, and with 2.6.0, mayday was segfaulting everywhere anyway. -- Gilles. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Xenomai] x86_32 mayday 2012-06-01 18:05 ` Gilles Chanteperdrix @ 2012-06-04 11:16 ` Philippe Gerum 2012-06-04 11:23 ` Jan Kiszka 2012-06-04 12:27 ` Gilles Chanteperdrix 0 siblings, 2 replies; 7+ messages in thread From: Philippe Gerum @ 2012-06-04 11:16 UTC (permalink / raw) To: Gilles Chanteperdrix; +Cc: Xenomai On 06/01/2012 08:05 PM, Gilles Chanteperdrix wrote: > On 06/01/2012 07:28 PM, Jan Kiszka wrote: >> On 2012-06-01 19:16, Gilles Chanteperdrix wrote: >>> >>> Hi, >>> >>> with the current tip of xenomai 2.6 branch, the "sigdebug" test testing >>> the "mayday" code ends up with a segfault on x86_32. I tried to have a >>> look at it, but could not really understand what happens: the register >>> on return from the syscall are ok, but the segfault happens after return >>> from the signal handler, when returning from the interrupted function. >>> It looks like either ebp, or the function return adress are wrong. >>> >>> If anyone wants to have a look at it... Jan maybe? >> >> Can't promise, but will try to find a slot. >> >> I think I didn't test on x86-32 so far. Is this a regression or did you >> run the test for the first time as well? > > First time since 2.6.0, and with 2.6.0, mayday was segfaulting > everywhere anyway. > Silly nasty bug. This is fixed now: http://git.xenomai.org/?p=xenomai-2.6.git;a=commit;h=3bd460bd22295e87a9850fd8439e94557f094904 Basically, mayday over x86_32 never worked properly with SEP enabled. This is quite weird that this went unnoticed for such a long time. So either most people do not mention --enable-x86-sep albeit they most likely should these days, or they don't install any SIGDEBUG handler, or they call exit() from within that handler. The net effect of this bug was that returning from any routine in user-space after the mayday fixup happened, would pop an invalid IP off the stack. Btw, I don't think it makes sense to keep sysentry/sysexit support disabled by default for x86 anymore. The same way we already assume x86-tsc is present by default, we should assume x86-sep is there too. People running pre-Pentium II CPUs (seriously?) would have to switch it off explicitly via --disable-x86-sep. If nobody freaks out badly contemplating this idea, I'll push a patch. -- Philippe. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Xenomai] x86_32 mayday 2012-06-04 11:16 ` Philippe Gerum @ 2012-06-04 11:23 ` Jan Kiszka 2012-06-04 12:27 ` Gilles Chanteperdrix 1 sibling, 0 replies; 7+ messages in thread From: Jan Kiszka @ 2012-06-04 11:23 UTC (permalink / raw) To: Philippe Gerum; +Cc: Xenomai On 2012-06-04 13:16, Philippe Gerum wrote: > On 06/01/2012 08:05 PM, Gilles Chanteperdrix wrote: >> On 06/01/2012 07:28 PM, Jan Kiszka wrote: >>> On 2012-06-01 19:16, Gilles Chanteperdrix wrote: >>>> >>>> Hi, >>>> >>>> with the current tip of xenomai 2.6 branch, the "sigdebug" test testing >>>> the "mayday" code ends up with a segfault on x86_32. I tried to have a >>>> look at it, but could not really understand what happens: the register >>>> on return from the syscall are ok, but the segfault happens after return >>>> from the signal handler, when returning from the interrupted function. >>>> It looks like either ebp, or the function return adress are wrong. >>>> >>>> If anyone wants to have a look at it... Jan maybe? >>> >>> Can't promise, but will try to find a slot. >>> >>> I think I didn't test on x86-32 so far. Is this a regression or did you >>> run the test for the first time as well? >> >> First time since 2.6.0, and with 2.6.0, mayday was segfaulting >> everywhere anyway. >> > > Silly nasty bug. This is fixed now: > http://git.xenomai.org/?p=xenomai-2.6.git;a=commit;h=3bd460bd22295e87a9850fd8439e94557f094904 > Great! > Basically, mayday over x86_32 never worked properly with SEP enabled. > > This is quite weird that this went unnoticed for such a long time. So > either most people do not mention --enable-x86-sep albeit they most > likely should these days, or they don't install any SIGDEBUG handler, or > they call exit() from within that handler. The net effect of this bug > was that returning from any routine in user-space after the mayday fixup > happened, would pop an invalid IP off the stack. > > Btw, I don't think it makes sense to keep sysentry/sysexit support > disabled by default for x86 anymore. The same way we already assume > x86-tsc is present by default, we should assume x86-sep is there too. > People running pre-Pentium II CPUs (seriously?) would have to switch it > off explicitly via --disable-x86-sep. > > If nobody freaks out badly contemplating this idea, I'll push a patch. > I think this makes a lot of sense. Those few users on older or special CPUs can still switch it off. Maybe we can add some detection code for this CPU feature to the library init function so that a proper error message is generated. Jan -- Siemens AG, Corporate Technology, CT T DE IT 1 Corporate Competence Center Embedded Linux ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Xenomai] x86_32 mayday 2012-06-04 11:16 ` Philippe Gerum 2012-06-04 11:23 ` Jan Kiszka @ 2012-06-04 12:27 ` Gilles Chanteperdrix 1 sibling, 0 replies; 7+ messages in thread From: Gilles Chanteperdrix @ 2012-06-04 12:27 UTC (permalink / raw) To: Philippe Gerum; +Cc: Xenomai On 06/04/2012 01:16 PM, Philippe Gerum wrote: > On 06/01/2012 08:05 PM, Gilles Chanteperdrix wrote: >> On 06/01/2012 07:28 PM, Jan Kiszka wrote: >>> On 2012-06-01 19:16, Gilles Chanteperdrix wrote: >>>> >>>> Hi, >>>> >>>> with the current tip of xenomai 2.6 branch, the "sigdebug" test testing >>>> the "mayday" code ends up with a segfault on x86_32. I tried to have a >>>> look at it, but could not really understand what happens: the register >>>> on return from the syscall are ok, but the segfault happens after return >>>> from the signal handler, when returning from the interrupted function. >>>> It looks like either ebp, or the function return adress are wrong. >>>> >>>> If anyone wants to have a look at it... Jan maybe? >>> >>> Can't promise, but will try to find a slot. >>> >>> I think I didn't test on x86-32 so far. Is this a regression or did you >>> run the test for the first time as well? >> >> First time since 2.6.0, and with 2.6.0, mayday was segfaulting >> everywhere anyway. >> > > Silly nasty bug. This is fixed now: > http://git.xenomai.org/?p=xenomai-2.6.git;a=commit;h=3bd460bd22295e87a9850fd8439e94557f094904 > > Basically, mayday over x86_32 never worked properly with SEP enabled. > > This is quite weird that this went unnoticed for such a long time. So > either most people do not mention --enable-x86-sep albeit they most > likely should these days, or they don't install any SIGDEBUG handler, or > they call exit() from within that handler. The net effect of this bug > was that returning from any routine in user-space after the mayday fixup > happened, would pop an invalid IP off the stack. My turn to say "my bad", I tested mayday on all platforms for 2.6.0, it segfaulted on all platforms, I simply thought it was the intended effect. See: http://www.xenomai.org/pipermail/xenomai-core/2012-01/msg00041.html Everything got fixed around january, I guess I skipped the test on x86_32. > > Btw, I don't think it makes sense to keep sysentry/sysexit support > disabled by default for x86 anymore. The same way we already assume > x86-tsc is present by default, we should assume x86-sep is there too. > People running pre-Pentium II CPUs (seriously?) would have to switch it > off explicitly via --disable-x86-sep. > > If nobody freaks out badly contemplating this idea, I'll push a patch. Fine by me. -- Gilles. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Xenomai] x86_32 mayday 2012-06-01 17:28 ` Jan Kiszka 2012-06-01 18:05 ` Gilles Chanteperdrix @ 2012-06-03 16:58 ` Philippe Gerum 1 sibling, 0 replies; 7+ messages in thread From: Philippe Gerum @ 2012-06-03 16:58 UTC (permalink / raw) To: Jan Kiszka; +Cc: Xenomai On 06/01/2012 07:28 PM, Jan Kiszka wrote: > On 2012-06-01 19:16, Gilles Chanteperdrix wrote: >> >> Hi, >> >> with the current tip of xenomai 2.6 branch, the "sigdebug" test testing >> the "mayday" code ends up with a segfault on x86_32. I tried to have a >> look at it, but could not really understand what happens: the register >> on return from the syscall are ok, but the segfault happens after return >> from the signal handler, when returning from the interrupted function. >> It looks like either ebp, or the function return adress are wrong. >> >> If anyone wants to have a look at it... Jan maybe? > > Can't promise, but will try to find a slot. > > I think I didn't test on x86-32 so far. Is this a regression or did you > run the test for the first time as well? This could not have worked reliably on x86_32, my bad. We must save ss:esp across the mayday transition to return to userland sanely. I'll be pushing a patch shortly. -- Philippe. ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2012-06-04 12:27 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-06-01 17:16 [Xenomai] x86_32 mayday Gilles Chanteperdrix 2012-06-01 17:28 ` Jan Kiszka 2012-06-01 18:05 ` Gilles Chanteperdrix 2012-06-04 11:16 ` Philippe Gerum 2012-06-04 11:23 ` Jan Kiszka 2012-06-04 12:27 ` Gilles Chanteperdrix 2012-06-03 16:58 ` Philippe Gerum
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.