]> xenbits.xensource.com Git - qemu-xen.git/commit
linux-user: Provide new force_sig_fault() function
authorPeter Maydell <peter.maydell@linaro.org>
Fri, 13 Aug 2021 13:18:07 +0000 (14:18 +0100)
committerLaurent Vivier <laurent@vivier.eu>
Thu, 23 Sep 2021 12:42:55 +0000 (14:42 +0200)
commitaf7969605eed067320fe9eca80f1aa35b67ec46d
treeb128e6c1be5d673bb7ecb2e5f84acfc7a49679df
parent819121b9b08a41ccfcde2e18eb782f8f6b2912f1
linux-user: Provide new force_sig_fault() function

In many places in the linux-user code we need to queue a signal for
the guest using the QEMU_SI_FAULT si_type.  This requires that the
caller sets up and passes us a target_siginfo, including setting the
appropriate part of the _sifields union for the si_type. In a number
of places the code forgets to set the _sifields union field.

Provide a new force_sig_fault() function, which does the same thing
as the Linux kernel function of that name -- it takes the signal
number, the si_code value and the address to use in
_sifields._sigfault, and assembles the target_siginfo itself.  This
makes the callsites simpler and means it's harder to forget to pass
in an address value.

We follow force_sig() and the kernel's force_sig_fault() in not
requiring the caller to pass in the CPU pointer but always acting
on the CPU of the current thread.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20210813131809.28655-6-peter.maydell@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
linux-user/signal-common.h
linux-user/signal.c