Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@openvz.org>2017-02-20 11:33:42 +0300
committerPavel Emelyanov <xemul@virtuozzo.com>2017-04-02 18:09:34 +0300
commit6e4d05853d75d4e8a5cb41381eeb266ba62249e6 (patch)
tree7a187e0f1f6de01f31ed24d77cd954ef403a65e0 /compel/arch/aarch64
parente5de8986675a1870498742591be0b3cbcc2829b1 (diff)
compel: infect -- Don't forget to fetch sas early
When infecting victim we construct sigframe to be able to self-rectore it in case if something goes wrong. But in case is a targer been using alternative stack for signal handling it will be missed in sigframe since we don't fetch it. Thus add fetching sas on infection stage and put it into signal frame early. Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
Diffstat (limited to 'compel/arch/aarch64')
-rw-r--r--compel/arch/aarch64/src/lib/infect.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/compel/arch/aarch64/src/lib/infect.c b/compel/arch/aarch64/src/lib/infect.c
index 41600e091..166ec2363 100644
--- a/compel/arch/aarch64/src/lib/infect.c
+++ b/compel/arch/aarch64/src/lib/infect.c
@@ -140,6 +140,17 @@ bool arch_can_dump_task(struct parasite_ctl *ctl)
return true;
}
+int arch_fetch_sas(struct parasite_ctl *ctl, struct rt_sigframe *s)
+{
+ long ret;
+ int err;
+
+ err = compel_syscall(ctl, __NR_sigaltstack,
+ &ret, 0, (unsigned long)&s->uc.uc_stack,
+ 0, 0, 0, 0);
+ return err ? err : ret;
+}
+
/*
* Range for task size calculated from the following Linux kernel files:
* arch/arm64/include/asm/memory.h