Source-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: [netbsd-9] src



Module Name:    src
Committed By:   martin
Date:           Fri Aug 23 16:59:53 UTC 2024

Modified Files:
        src/distrib/sets/lists/debug [netbsd-9]: mi
        src/distrib/sets/lists/tests [netbsd-9]: mi
        src/lib/libc/arch/arm/gen [netbsd-9]: setjmp.S
        src/lib/libc/arch/i386/gen [netbsd-9]: setjmp.S sigsetjmp.S
        src/lib/libc/arch/sh3/gen [netbsd-9]: setjmp.S sigsetjmp.S
        src/lib/libc/arch/x86_64/gen [netbsd-9]: __setjmp14.S __sigsetjmp14.S
        src/tests/lib/libc/setjmp [netbsd-9]: Makefile
Added Files:
        src/tests/lib/libc/setjmp [netbsd-9]: t_sigstack.c

Log Message:
Pull up following revision(s) (requested by riastradh in ticket #795):

        tests/lib/libc/setjmp/Makefile: revision 1.3
        distrib/sets/lists/debug/mi: revision 1.425
        lib/libc/arch/sh3/gen/setjmp.S: revision 1.12
        lib/libc/arch/i386/gen/sigsetjmp.S: revision 1.19
        lib/libc/arch/x86_64/gen/__setjmp14.S: revision 1.4
        tests/lib/libc/setjmp/t_sigstack.c: revision 1.10
        tests/lib/libc/setjmp/t_sigstack.c: revision 1.11
        tests/lib/libc/setjmp/t_sigstack.c: revision 1.12
        tests/lib/libc/setjmp/t_sigstack.c: revision 1.1
        lib/libc/arch/sh3/gen/sigsetjmp.S: revision 1.11
        tests/lib/libc/setjmp/t_sigstack.c: revision 1.2
        tests/lib/libc/setjmp/t_sigstack.c: revision 1.3
        tests/lib/libc/setjmp/t_sigstack.c: revision 1.4
        tests/lib/libc/setjmp/t_sigstack.c: revision 1.5
        tests/lib/libc/setjmp/t_sigstack.c: revision 1.6
        lib/libc/arch/arm/gen/setjmp.S: revision 1.19
        tests/lib/libc/setjmp/t_sigstack.c: revision 1.7
        tests/lib/libc/setjmp/t_sigstack.c: revision 1.8
        tests/lib/libc/setjmp/t_sigstack.c: revision 1.9
        lib/libc/arch/i386/gen/setjmp.S: revision 1.18
        lib/libc/arch/x86_64/gen/__sigsetjmp14.S: revision 1.4
        distrib/sets/lists/tests/mi: revision 1.1306 (patch)

longjmp(3): Add test for PR lib/57946.

longjmp(3): Paranoia: more error checking in PR lib/57946 test.

longjmp(3): Test signal mask vs stack restore with siglongjmp too.
PR lib/57946

longjmp(3) t_sigstack: Print which entry failed.
PR lib/57946

longjmp(3) t_sigstack: Note aarch64 seems to DTRT.
But only by code inspection; it appears to have another problem: on
re-entry, the signal handler is called on the normal stack, not on
the alternate signal stack.
PR lib/57946

longjmp(3) t_sigstack: Use a sigaltstack per handler entry.
longjmp evidently doesn't reset the state of whether the process is
executing on the alternate signal stack.  So when we re-enter the
signal handler, the alternate stack appears to be still in use, and
the system chooses the original stack for the second call to the
signal handler -- which trips our assertion asking to verify that the
signal handler is always using an alternate stack.

Not strictly necessary for the signal handler to use an alternate
stack on re-entry, but this makes it clearer that the signal handler
itself is always using the alternate stack so we can verify that the
interrupted code is _not_ in the signal handler.
With this change, the test now passes on aarch64.
PR lib/57946

longjmp(3) t_sigstack: Fix fencepost error.
Extremely unlikely to cause trouble, but let's just turn that into
`never' to keep it easier for readers.
PR lib/57946

amd64 longjmp: Restore stack first, then signal mask.
Otherwise, a pending signal may be delivered on the wrong stack when
we restore the signal mask.

While here:
- Tidy the code a little bit.
- Sprinkle comments to explain what's going on.
- Use `xorl %eXX,%eXX' instead of `xorq %rXX,%rXX'.
  => Same effect, one byte shorter, breaks dep chain on more uarches.
- Use forward branches for statically predicted not-taken.
  => val==0 is unlikely in longjmp
PR lib/57946

i386 longjmp: Restore stack first, then signal mask.
Otherwise, a pending signal may be delivered on the wrong stack when
we restore the signal mask.

While here:
- Tidy the code a little bit.
- Sprinkle comments to explain what's going on.
- Use forward branches for statically predicted not-taken.
  => val==0 is unlikely in longjmp
PR lib/57946

arm longjmp: Restore stack first, then signal mask.
Otherwise, a pending signal may be delivered on the wrong stack when
we restore the signal mask.

While here:
- Move the botched sp and lr tests earlier.
PR lib/57946
arm has been fixed

tests/lib/libc/setjmp/t_sigstack: Add missing comment for 1.10.
PR lib/57946

sh3: siglongjmp - restore register context first (PR lib/57946)


To generate a diff of this commit:
cvs rdiff -u -r1.285.2.7 -r1.285.2.8 src/distrib/sets/lists/debug/mi
cvs rdiff -u -r1.818.2.5 -r1.818.2.6 src/distrib/sets/lists/tests/mi
cvs rdiff -u -r1.17 -r1.17.28.1 src/lib/libc/arch/arm/gen/setjmp.S
cvs rdiff -u -r1.17 -r1.17.26.1 src/lib/libc/arch/i386/gen/setjmp.S
cvs rdiff -u -r1.18 -r1.18.26.1 src/lib/libc/arch/i386/gen/sigsetjmp.S
cvs rdiff -u -r1.10 -r1.10.88.1 src/lib/libc/arch/sh3/gen/setjmp.S
cvs rdiff -u -r1.9 -r1.9.88.1 src/lib/libc/arch/sh3/gen/sigsetjmp.S
cvs rdiff -u -r1.3 -r1.3.26.1 src/lib/libc/arch/x86_64/gen/__setjmp14.S \
    src/lib/libc/arch/x86_64/gen/__sigsetjmp14.S
cvs rdiff -u -r1.2 -r1.2.46.1 src/tests/lib/libc/setjmp/Makefile
cvs rdiff -u -r0 -r1.12.4.2 src/tests/lib/libc/setjmp/t_sigstack.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.




Home | Main Index | Thread Index | Old Index