mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-22 17:49:13 +00:00
Remove space before tab characters. Found by git grep ' ' (Space, Ctrl-V, Tab in shell). Signed-off-by: Kir Kolyshkin <kir@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
972 lines
24 KiB
C
972 lines
24 KiB
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <linux/securebits.h>
|
|
#include <linux/capability.h>
|
|
#include <sys/types.h>
|
|
#include <sys/mman.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/wait.h>
|
|
#include <sys/time.h>
|
|
#include <sys/shm.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <sched.h>
|
|
#include <sys/resource.h>
|
|
#include <signal.h>
|
|
|
|
#include "compiler.h"
|
|
#include "asm/types.h"
|
|
#include "syscall.h"
|
|
#include "prctl.h"
|
|
#include "log.h"
|
|
#include "util.h"
|
|
#include "image.h"
|
|
#include "sk-inet.h"
|
|
#include "vma.h"
|
|
|
|
#include "crtools.h"
|
|
#include "lock.h"
|
|
#include "restorer.h"
|
|
|
|
#include "protobuf/creds.pb-c.h"
|
|
|
|
#include "asm/restorer.h"
|
|
|
|
#define sys_prctl_safe(opcode, val1, val2, val3) \
|
|
({ \
|
|
long __ret = sys_prctl(opcode, val1, val2, val3, 0); \
|
|
if (__ret) \
|
|
pr_err("prctl failed @%d with %ld\n", __LINE__, __ret);\
|
|
__ret; \
|
|
})
|
|
|
|
static struct task_entries *task_entries;
|
|
static futex_t thread_inprogress;
|
|
static futex_t zombies_inprogress;
|
|
static int cap_last_cap;
|
|
|
|
extern void cr_restore_rt (void) asm ("__cr_restore_rt")
|
|
__attribute__ ((visibility ("hidden")));
|
|
|
|
static void sigchld_handler(int signal, siginfo_t *siginfo, void *data)
|
|
{
|
|
char *r;
|
|
|
|
if (futex_get(&task_entries->start) == CR_STATE_RESTORE_SIGCHLD) {
|
|
pr_debug("%ld: Collect a zombie with (pid %d, %d)\n",
|
|
sys_getpid(), siginfo->si_pid, siginfo->si_pid);
|
|
futex_dec_and_wake(&task_entries->nr_in_progress);
|
|
futex_dec_and_wake(&zombies_inprogress);
|
|
task_entries->nr_threads--;
|
|
task_entries->nr_tasks--;
|
|
mutex_unlock(&task_entries->zombie_lock);
|
|
return;
|
|
}
|
|
|
|
if (siginfo->si_code & CLD_EXITED)
|
|
r = " exited, status=";
|
|
else if (siginfo->si_code & CLD_KILLED)
|
|
r = " killed by signal ";
|
|
else
|
|
r = "disappeared with ";
|
|
|
|
pr_info("Task %d %s %d\n", siginfo->si_pid, r, siginfo->si_status);
|
|
|
|
futex_abort_and_wake(&task_entries->nr_in_progress);
|
|
/* sa_restorer may be unmaped, so we can't go back to userspace*/
|
|
sys_kill(sys_getpid(), SIGSTOP);
|
|
sys_exit_group(1);
|
|
}
|
|
|
|
static int restore_creds(CredsEntry *ce)
|
|
{
|
|
int b, i, ret;
|
|
struct cap_header hdr;
|
|
struct cap_data data[_LINUX_CAPABILITY_U32S_3];
|
|
|
|
/*
|
|
* We're still root here and thus can do it without failures.
|
|
*/
|
|
|
|
/*
|
|
* First -- set the SECURE_NO_SETUID_FIXUP bit not to
|
|
* lose caps bits when changing xids.
|
|
*/
|
|
|
|
ret = sys_prctl(PR_SET_SECUREBITS, 1 << SECURE_NO_SETUID_FIXUP, 0, 0, 0);
|
|
if (ret) {
|
|
pr_err("Unable to set SECURE_NO_SETUID_FIXUP: %d\n", ret);
|
|
return -1;
|
|
}
|
|
|
|
/*
|
|
* Second -- restore xids. Since we still have the CAP_SETUID
|
|
* capability nothing should fail. But call the setfsXid last
|
|
* to override the setresXid settings.
|
|
*/
|
|
|
|
ret = sys_setresuid(ce->uid, ce->euid, ce->suid);
|
|
if (ret) {
|
|
pr_err("Unable to set real, effective and saved user ID: %d\n", ret);
|
|
return -1;
|
|
}
|
|
|
|
sys_setfsuid(ce->fsuid);
|
|
if (sys_setfsuid(-1) != ce->fsuid) {
|
|
pr_err("Unable to set fsuid\n");
|
|
return -1;
|
|
}
|
|
|
|
ret = sys_setresgid(ce->gid, ce->egid, ce->sgid);
|
|
if (ret) {
|
|
pr_err("Unable to set real, effective and saved group ID: %d\n", ret);
|
|
return -1;
|
|
}
|
|
|
|
sys_setfsgid(ce->fsgid);
|
|
if (sys_setfsgid(-1) != ce->fsgid) {
|
|
pr_err("Unable to set fsgid\n");
|
|
return -1;
|
|
}
|
|
|
|
/*
|
|
* Third -- restore securebits. We don't need them in any
|
|
* special state any longer.
|
|
*/
|
|
|
|
ret = sys_prctl(PR_SET_SECUREBITS, ce->secbits, 0, 0, 0);
|
|
if (ret) {
|
|
pr_err("Unable to set PR_SET_SECUREBITS: %d\n", ret);
|
|
return -1;
|
|
}
|
|
|
|
/*
|
|
* Fourth -- trim bset. This can only be done while
|
|
* having the CAP_SETPCAP capablity.
|
|
*/
|
|
|
|
for (b = 0; b < CR_CAP_SIZE; b++) {
|
|
for (i = 0; i < 32; i++) {
|
|
if (b * 32 + i > cap_last_cap)
|
|
break;
|
|
if (ce->cap_bnd[b] & (1 << i))
|
|
/* already set */
|
|
continue;
|
|
ret = sys_prctl(PR_CAPBSET_DROP, i + b * 32, 0, 0, 0);
|
|
if (ret) {
|
|
pr_err("Unable to drop capability %d: %d\n",
|
|
i + b * 32, ret);
|
|
return -1;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Fifth -- restore caps. Nothing but cap bits are changed
|
|
* at this stage, so just do it.
|
|
*/
|
|
|
|
hdr.version = _LINUX_CAPABILITY_VERSION_3;
|
|
hdr.pid = 0;
|
|
|
|
BUILD_BUG_ON(_LINUX_CAPABILITY_U32S_3 != CR_CAP_SIZE);
|
|
|
|
for (i = 0; i < CR_CAP_SIZE; i++) {
|
|
data[i].eff = ce->cap_eff[i];
|
|
data[i].prm = ce->cap_prm[i];
|
|
data[i].inh = ce->cap_inh[i];
|
|
}
|
|
|
|
ret = sys_capset(&hdr, data);
|
|
if (ret) {
|
|
pr_err("Unable to restore capabilities: %d\n", ret);
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void restore_sched_info(struct rst_sched_param *p)
|
|
{
|
|
struct sched_param parm;
|
|
|
|
pr_info("Restoring scheduler params %d.%d.%d\n",
|
|
p->policy, p->nice, p->prio);
|
|
|
|
sys_setpriority(PRIO_PROCESS, 0, p->nice);
|
|
parm.sched_priority = p->prio;
|
|
sys_sched_setscheduler(0, p->policy, &parm);
|
|
}
|
|
|
|
static void restore_rlims(struct task_restore_args *ta)
|
|
{
|
|
int r;
|
|
|
|
for (r = 0; r < ta->nr_rlim; r++) {
|
|
struct krlimit krlim;
|
|
|
|
krlim.rlim_cur = ta->rlims[r].rlim_cur;
|
|
krlim.rlim_max = ta->rlims[r].rlim_max;
|
|
sys_setrlimit(r, &krlim);
|
|
}
|
|
}
|
|
|
|
static int restore_signals(siginfo_t *ptr, int nr, bool group)
|
|
{
|
|
int ret, i;
|
|
|
|
for (i = 0; i < nr; i++) {
|
|
siginfo_t *info = ptr + i;
|
|
|
|
pr_info("Restore signal %d group %d\n", info->si_signo, group);
|
|
if (group)
|
|
ret = sys_rt_sigqueueinfo(sys_getpid(), info->si_signo, info);
|
|
else
|
|
ret = sys_rt_tgsigqueueinfo(sys_getpid(),
|
|
sys_gettid(), info->si_signo, info);
|
|
if (ret) {
|
|
pr_err("Unable to send siginfo %d %x with code %d\n",
|
|
info->si_signo, info->si_code, ret);
|
|
return -1;;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int restore_thread_common(struct rt_sigframe *sigframe,
|
|
struct thread_restore_args *args)
|
|
{
|
|
sys_set_tid_address((int *)decode_pointer(args->clear_tid_addr));
|
|
|
|
if (args->has_futex && args->futex_rla_len) {
|
|
int ret;
|
|
|
|
ret = sys_set_robust_list(decode_pointer(args->futex_rla),
|
|
args->futex_rla_len);
|
|
if (ret) {
|
|
pr_err("Failed to recover futex robust list: %d\n", ret);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
restore_sched_info(&args->sp);
|
|
|
|
if (restore_nonsigframe_gpregs(&args->gpregs))
|
|
return -1;
|
|
|
|
restore_tls(args->tls);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Threads restoration via sigreturn. Note it's locked
|
|
* routine and calls for unlock at the end.
|
|
*/
|
|
long __export_restore_thread(struct thread_restore_args *args)
|
|
{
|
|
struct rt_sigframe *rt_sigframe;
|
|
k_rtsigset_t to_block;
|
|
unsigned long new_sp;
|
|
int my_pid = sys_gettid();
|
|
int ret;
|
|
|
|
if (my_pid != args->pid) {
|
|
pr_err("Thread pid mismatch %d/%d\n", my_pid, args->pid);
|
|
goto core_restore_end;
|
|
}
|
|
|
|
/* All signals must be handled by thread leader */
|
|
ksigfillset(&to_block);
|
|
ret = sys_sigprocmask(SIG_SETMASK, &to_block, NULL, sizeof(k_rtsigset_t));
|
|
if (ret) {
|
|
pr_err("Unable to block signals %d", ret);
|
|
goto core_restore_end;
|
|
}
|
|
|
|
rt_sigframe = (void *)args->mem_zone.rt_sigframe;
|
|
|
|
if (restore_thread_common(rt_sigframe, args))
|
|
goto core_restore_end;
|
|
|
|
ret = restore_creds(&args->ta->creds);
|
|
if (ret)
|
|
goto core_restore_end;
|
|
|
|
pr_info("%ld: Restored\n", sys_gettid());
|
|
|
|
restore_finish_stage(CR_STATE_RESTORE);
|
|
|
|
if (restore_signals(args->siginfo, args->siginfo_nr, false))
|
|
goto core_restore_end;
|
|
|
|
restore_finish_stage(CR_STATE_RESTORE_SIGCHLD);
|
|
restore_finish_stage(CR_STATE_RESTORE_CREDS);
|
|
futex_dec_and_wake(&thread_inprogress);
|
|
|
|
new_sp = (long)rt_sigframe + SIGFRAME_OFFSET;
|
|
ARCH_RT_SIGRETURN(new_sp);
|
|
|
|
core_restore_end:
|
|
pr_err("Restorer abnormal termination for %ld\n", sys_getpid());
|
|
futex_abort_and_wake(&task_entries->nr_in_progress);
|
|
sys_exit_group(1);
|
|
return -1;
|
|
}
|
|
|
|
static long restore_self_exe_late(struct task_restore_args *args)
|
|
{
|
|
int fd = args->fd_exe_link, ret;
|
|
|
|
pr_info("Restoring EXE link\n");
|
|
ret = sys_prctl_safe(PR_SET_MM, PR_SET_MM_EXE_FILE, fd, 0);
|
|
if (ret)
|
|
pr_err("Can't restore EXE link (%d)\n", ret);
|
|
sys_close(fd);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static unsigned long restore_mapping(const VmaEntry *vma_entry)
|
|
{
|
|
int prot = vma_entry->prot;
|
|
int flags = vma_entry->flags | MAP_FIXED;
|
|
unsigned long addr;
|
|
|
|
if (vma_entry_is(vma_entry, VMA_AREA_SYSVIPC))
|
|
return sys_shmat(vma_entry->fd, decode_pointer(vma_entry->start),
|
|
(vma_entry->prot & PROT_WRITE) ? 0 : SHM_RDONLY);
|
|
|
|
/*
|
|
* Restore or shared mappings are tricky, since
|
|
* we open anonymous mapping via map_files/
|
|
* MAP_ANONYMOUS should be eliminated so fd would
|
|
* be taken into account by a kernel.
|
|
*/
|
|
if (vma_entry_is(vma_entry, VMA_ANON_SHARED) && (vma_entry->fd != -1UL))
|
|
flags &= ~MAP_ANONYMOUS;
|
|
|
|
/* A mapping of file with MAP_SHARED is up to date */
|
|
if (vma_entry->fd == -1 || !(vma_entry->flags & MAP_SHARED))
|
|
prot |= PROT_WRITE;
|
|
|
|
pr_debug("\tmmap(%"PRIx64" -> %"PRIx64", %x %x %d)\n",
|
|
vma_entry->start, vma_entry->end,
|
|
prot, flags, (int)vma_entry->fd);
|
|
/*
|
|
* Should map memory here. Note we map them as
|
|
* writable since we're going to restore page
|
|
* contents.
|
|
*/
|
|
addr = sys_mmap(decode_pointer(vma_entry->start),
|
|
vma_entry_len(vma_entry),
|
|
prot, flags,
|
|
vma_entry->fd,
|
|
vma_entry->pgoff);
|
|
|
|
if (vma_entry->fd != -1)
|
|
sys_close(vma_entry->fd);
|
|
|
|
return addr;
|
|
}
|
|
|
|
static void rst_tcp_repair_off(struct rst_tcp_sock *rts)
|
|
{
|
|
int aux, ret;
|
|
|
|
aux = rts->reuseaddr;
|
|
pr_debug("pie: Turning repair off for %d (reuse %d)\n", rts->sk, aux);
|
|
tcp_repair_off(rts->sk);
|
|
|
|
ret = sys_setsockopt(rts->sk, SOL_SOCKET, SO_REUSEADDR, &aux, sizeof(aux));
|
|
if (ret < 0)
|
|
pr_perror("Failed to restore of SO_REUSEADDR on socket (%d)", ret);
|
|
}
|
|
|
|
static void rst_tcp_socks_all(struct task_restore_args *ta)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < ta->tcp_socks_nr; i++)
|
|
rst_tcp_repair_off(&ta->tcp_socks[i]);
|
|
}
|
|
|
|
static int vma_remap(unsigned long src, unsigned long dst, unsigned long len)
|
|
{
|
|
unsigned long guard = 0, tmp;
|
|
|
|
pr_info("Remap %lx->%lx len %lx\n", src, dst, len);
|
|
|
|
if (src - dst < len)
|
|
guard = dst;
|
|
else if (dst - src < len)
|
|
guard = dst + len - PAGE_SIZE;
|
|
|
|
if (src == dst)
|
|
return 0;
|
|
|
|
if (guard != 0) {
|
|
/*
|
|
* mremap() returns an error if a target and source vma-s are
|
|
* overlapped. In this case the source vma are remapped in
|
|
* a temporary place and then remapped to the target address.
|
|
* Here is one hack to find non-ovelapped temporary place.
|
|
*
|
|
* 1. initial placement. We need to move src -> tgt.
|
|
* | |+++++src+++++|
|
|
* |-----tgt-----| |
|
|
*
|
|
* 2. map a guard page at the non-ovelapped border of a target vma.
|
|
* | |+++++src+++++|
|
|
* |G|----tgt----| |
|
|
*
|
|
* 3. remap src to any other place.
|
|
* G prevents src from being remaped on tgt again
|
|
* | |-------------| -> |+++++src+++++|
|
|
* |G|---tgt-----| |
|
|
*
|
|
* 4. remap src to tgt, no overlapping any longer
|
|
* |+++++src+++++| <---- |-------------|
|
|
* |G|---tgt-----| |
|
|
*/
|
|
|
|
unsigned long addr;
|
|
|
|
/* Map guard page (step 2) */
|
|
tmp = sys_mmap((void *) guard, PAGE_SIZE, PROT_NONE,
|
|
MAP_PRIVATE | MAP_ANONYMOUS, 0, 0);
|
|
if (tmp != guard) {
|
|
pr_err("Unable to map a guard page %lx (%lx)\n", guard, tmp);
|
|
return -1;
|
|
}
|
|
|
|
/* Move src to non-overlapping place (step 3) */
|
|
addr = sys_mmap(NULL, len, PROT_NONE,
|
|
MAP_PRIVATE | MAP_ANONYMOUS, 0, 0);
|
|
if (addr == (unsigned long) MAP_FAILED) {
|
|
pr_err("Unable to reserve memory (%lx)\n", addr);
|
|
return -1;
|
|
}
|
|
|
|
tmp = sys_mremap(src, len, len,
|
|
MREMAP_MAYMOVE | MREMAP_FIXED, addr);
|
|
if (tmp != addr) {
|
|
pr_err("Unable to remap %lx -> %lx (%lx)\n", src, addr, tmp);
|
|
return -1;
|
|
}
|
|
|
|
src = addr;
|
|
}
|
|
|
|
tmp = sys_mremap(src, len, len, MREMAP_MAYMOVE | MREMAP_FIXED, dst);
|
|
if (tmp != dst) {
|
|
pr_err("Unable to remap %lx -> %lx\n", src, dst);
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int create_posix_timers(struct task_restore_args *args)
|
|
{
|
|
int ret, i;
|
|
timer_t next_id;
|
|
struct sigevent sev;
|
|
|
|
for (i = 0; i < args->timer_n; i++) {
|
|
sev.sigev_notify = args->posix_timers[i].spt.it_sigev_notify;
|
|
sev.sigev_signo = args->posix_timers[i].spt.si_signo;
|
|
sev.sigev_value.sival_ptr = args->posix_timers[i].spt.sival_ptr;
|
|
|
|
while (1) {
|
|
ret = sys_timer_create(args->posix_timers[i].spt.clock_id, &sev, &next_id);
|
|
if (ret < 0) {
|
|
pr_err("Can't create posix timer - %d\n", i);
|
|
return ret;
|
|
}
|
|
|
|
if ((long)next_id == args->posix_timers[i].spt.it_id)
|
|
break;
|
|
|
|
ret = sys_timer_delete(next_id);
|
|
if (ret < 0) {
|
|
pr_err("Can't remove temporaty posix timer %lx\n", (long) next_id);
|
|
return ret;
|
|
}
|
|
|
|
if ((long)next_id > args->posix_timers[i].spt.it_id) {
|
|
pr_err("Can't create timers, kernel don't give them consequently");
|
|
return -1;
|
|
}
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void restore_posix_timers(struct task_restore_args *args)
|
|
{
|
|
int i;
|
|
struct restore_posix_timer *rt;
|
|
|
|
for (i = 0; i < args->timer_n; i++) {
|
|
rt = &args->posix_timers[i];
|
|
sys_timer_settime((timer_t)rt->spt.it_id, 0, &rt->val, NULL);
|
|
}
|
|
}
|
|
static void *bootstrap_start;
|
|
static unsigned int bootstrap_len;
|
|
static unsigned long vdso_rt_size;
|
|
|
|
void __export_unmap(void)
|
|
{
|
|
sys_munmap(bootstrap_start, bootstrap_len - vdso_rt_size);
|
|
/*
|
|
* sys_munmap must not return here. The controll process must
|
|
* trap us on the exit from sys_munmap.
|
|
*/
|
|
}
|
|
|
|
/*
|
|
* This function unmaps all VMAs, which don't belong to
|
|
* the restored process or the restorer.
|
|
*
|
|
* The restorer memory is two regions -- area with restorer, its stack
|
|
* and arguments and the one with private vmas of the tasks we restore
|
|
* (a.k.a. premmaped area):
|
|
*
|
|
* 0 TASK_SIZE
|
|
* +----+====+----+====+---+
|
|
*
|
|
* Thus to unmap old memory we have to do 3 unmaps:
|
|
* [ 0 -- 1st area start ]
|
|
* [ 1st end -- 2nd start ]
|
|
* [ 2nd start -- TASK_SIZE ]
|
|
*/
|
|
static int unmap_old_vmas(void *premmapped_addr, unsigned long premmapped_len,
|
|
void *bootstrap_start, unsigned long bootstrap_len)
|
|
{
|
|
unsigned long s1, s2;
|
|
void *p1, *p2;
|
|
int ret;
|
|
|
|
if ((void *) premmapped_addr < bootstrap_start) {
|
|
p1 = premmapped_addr;
|
|
s1 = premmapped_len;
|
|
p2 = bootstrap_start;
|
|
s2 = bootstrap_len;
|
|
} else {
|
|
p2 = premmapped_addr;
|
|
s2 = premmapped_len;
|
|
p1 = bootstrap_start;
|
|
s1 = bootstrap_len;
|
|
}
|
|
|
|
ret = sys_munmap(NULL, p1 - NULL);
|
|
if (ret) {
|
|
pr_err("Unable to unmap (%p-%p): %d\n", NULL, p1, ret);
|
|
return -1;
|
|
}
|
|
|
|
ret = sys_munmap(p1 + s1, p2 - (p1 + s1));
|
|
if (ret) {
|
|
pr_err("Unable to unmap (%p-%p): %d\n", p1 + s1, p2, ret);
|
|
return -1;
|
|
}
|
|
|
|
ret = sys_munmap(p2 + s2, (void *) TASK_SIZE - (p2 + s2));
|
|
if (ret) {
|
|
pr_err("Unable to unmap (%p-%p): %d\n",
|
|
p2 + s2, (void *)TASK_SIZE, ret);
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* The main routine to restore task via sigreturn.
|
|
* This one is very special, we never return there
|
|
* but use sigreturn facility to restore core registers
|
|
* and jump execution to some predefined ip read from
|
|
* core file.
|
|
*/
|
|
long __export_restore_task(struct task_restore_args *args)
|
|
{
|
|
long ret = -1;
|
|
int i;
|
|
VmaEntry *vma_entry;
|
|
unsigned long va;
|
|
|
|
struct rt_sigframe *rt_sigframe;
|
|
unsigned long new_sp;
|
|
k_rtsigset_t to_block;
|
|
pid_t my_pid = sys_getpid();
|
|
rt_sigaction_t act;
|
|
|
|
bootstrap_start = args->bootstrap_start;
|
|
bootstrap_len = args->bootstrap_len;
|
|
vdso_rt_size = args->vdso_rt_size;
|
|
|
|
task_entries = args->task_entries;
|
|
|
|
ksigfillset(&act.rt_sa_mask);
|
|
act.rt_sa_handler = sigchld_handler;
|
|
act.rt_sa_flags = SA_SIGINFO | SA_RESTORER | SA_RESTART;
|
|
act.rt_sa_restorer = cr_restore_rt;
|
|
sys_sigaction(SIGCHLD, &act, NULL, sizeof(k_rtsigset_t));
|
|
|
|
log_set_fd(args->logfd);
|
|
log_set_loglevel(args->loglevel);
|
|
|
|
cap_last_cap = args->cap_last_cap;
|
|
|
|
pr_info("Switched to the restorer %d\n", my_pid);
|
|
|
|
if (vdso_remap("rt-vdso", args->vdso_sym_rt.vma_start,
|
|
args->vdso_rt_parked_at,
|
|
vdso_vma_size(&args->vdso_sym_rt)))
|
|
goto core_restore_end;
|
|
|
|
if (unmap_old_vmas((void *)args->premmapped_addr, args->premmapped_len,
|
|
bootstrap_start, bootstrap_len))
|
|
goto core_restore_end;
|
|
|
|
/* Shift private vma-s to the left */
|
|
for (i = 0; i < args->nr_vmas; i++) {
|
|
vma_entry = args->tgt_vmas + i;
|
|
|
|
if (!vma_entry_is(vma_entry, VMA_AREA_REGULAR))
|
|
continue;
|
|
|
|
if (!vma_priv(vma_entry))
|
|
continue;
|
|
|
|
if (vma_entry->end >= TASK_SIZE)
|
|
continue;
|
|
|
|
if (vma_entry->start > vma_entry->shmid)
|
|
break;
|
|
|
|
if (vma_remap(vma_premmaped_start(vma_entry),
|
|
vma_entry->start, vma_entry_len(vma_entry)))
|
|
goto core_restore_end;
|
|
|
|
if (vma_entry_is(vma_entry, VMA_AREA_VDSO)) {
|
|
if (vdso_proxify("left dumpee", &args->vdso_sym_rt,
|
|
vma_entry, args->vdso_rt_parked_at))
|
|
goto core_restore_end;
|
|
}
|
|
}
|
|
|
|
/* Shift private vma-s to the right */
|
|
for (i = args->nr_vmas - 1; i >= 0; i--) {
|
|
vma_entry = args->tgt_vmas + i;
|
|
|
|
if (!vma_entry_is(vma_entry, VMA_AREA_REGULAR))
|
|
continue;
|
|
|
|
if (!vma_priv(vma_entry))
|
|
continue;
|
|
|
|
if (vma_entry->start > TASK_SIZE)
|
|
continue;
|
|
|
|
if (vma_entry->start < vma_entry->shmid)
|
|
break;
|
|
|
|
if (vma_remap(vma_premmaped_start(vma_entry),
|
|
vma_entry->start, vma_entry_len(vma_entry)))
|
|
goto core_restore_end;
|
|
|
|
if (vma_entry_is(vma_entry, VMA_AREA_VDSO)) {
|
|
if (vdso_proxify("right dumpee", &args->vdso_sym_rt,
|
|
vma_entry, args->vdso_rt_parked_at))
|
|
goto core_restore_end;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* OK, lets try to map new one.
|
|
*/
|
|
for (i = 0; i < args->nr_vmas; i++) {
|
|
vma_entry = args->tgt_vmas + i;
|
|
|
|
if (!vma_entry_is(vma_entry, VMA_AREA_REGULAR))
|
|
continue;
|
|
|
|
if (vma_priv(vma_entry))
|
|
continue;
|
|
|
|
va = restore_mapping(vma_entry);
|
|
|
|
if (va != vma_entry->start) {
|
|
pr_err("Can't restore %"PRIx64" mapping with %lx\n", vma_entry->start, va);
|
|
goto core_restore_end;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Walk though all VMAs again to drop PROT_WRITE
|
|
* if it was not there.
|
|
*/
|
|
for (i = 0; i < args->nr_vmas; i++) {
|
|
vma_entry = args->tgt_vmas + i;
|
|
|
|
if (!(vma_entry_is(vma_entry, VMA_AREA_REGULAR)))
|
|
continue;
|
|
|
|
if (vma_entry_is(vma_entry, VMA_ANON_SHARED)) {
|
|
struct shmem_info *entry;
|
|
|
|
entry = find_shmem(args->shmems, args->nr_shmems,
|
|
vma_entry->shmid);
|
|
if (entry && entry->pid == my_pid &&
|
|
entry->start == vma_entry->start)
|
|
futex_set_and_wake(&entry->lock, 1);
|
|
}
|
|
|
|
if (vma_entry->prot & PROT_WRITE)
|
|
continue;
|
|
|
|
sys_mprotect(decode_pointer(vma_entry->start),
|
|
vma_entry_len(vma_entry),
|
|
vma_entry->prot);
|
|
}
|
|
|
|
/*
|
|
* Finally restore madivse() bits
|
|
*/
|
|
for (i = 0; i < args->nr_vmas; i++) {
|
|
unsigned long m;
|
|
|
|
vma_entry = args->tgt_vmas + i;
|
|
if (!vma_entry->has_madv || !vma_entry->madv)
|
|
continue;
|
|
|
|
for (m = 0; m < sizeof(vma_entry->madv) * 8; m++) {
|
|
if (vma_entry->madv & (1ul << m)) {
|
|
ret = sys_madvise(vma_entry->start,
|
|
vma_entry_len(vma_entry),
|
|
m);
|
|
if (ret) {
|
|
pr_err("madvise(%"PRIx64", %"PRIu64", %ld) "
|
|
"failed with %ld\n",
|
|
vma_entry->start,
|
|
vma_entry_len(vma_entry),
|
|
m, ret);
|
|
goto core_restore_end;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
/*
|
|
* Tune up the task fields.
|
|
*/
|
|
ret |= sys_prctl_safe(PR_SET_NAME, (long)args->comm, 0, 0);
|
|
|
|
ret |= sys_prctl_safe(PR_SET_MM, PR_SET_MM_START_CODE, (long)args->mm.mm_start_code, 0);
|
|
ret |= sys_prctl_safe(PR_SET_MM, PR_SET_MM_END_CODE, (long)args->mm.mm_end_code, 0);
|
|
ret |= sys_prctl_safe(PR_SET_MM, PR_SET_MM_START_DATA, (long)args->mm.mm_start_data, 0);
|
|
ret |= sys_prctl_safe(PR_SET_MM, PR_SET_MM_END_DATA, (long)args->mm.mm_end_data, 0);
|
|
ret |= sys_prctl_safe(PR_SET_MM, PR_SET_MM_START_STACK, (long)args->mm.mm_start_stack, 0);
|
|
ret |= sys_prctl_safe(PR_SET_MM, PR_SET_MM_START_BRK, (long)args->mm.mm_start_brk, 0);
|
|
ret |= sys_prctl_safe(PR_SET_MM, PR_SET_MM_BRK, (long)args->mm.mm_brk, 0);
|
|
ret |= sys_prctl_safe(PR_SET_MM, PR_SET_MM_ARG_START, (long)args->mm.mm_arg_start, 0);
|
|
ret |= sys_prctl_safe(PR_SET_MM, PR_SET_MM_ARG_END, (long)args->mm.mm_arg_end, 0);
|
|
ret |= sys_prctl_safe(PR_SET_MM, PR_SET_MM_ENV_START, (long)args->mm.mm_env_start, 0);
|
|
ret |= sys_prctl_safe(PR_SET_MM, PR_SET_MM_ENV_END, (long)args->mm.mm_env_end, 0);
|
|
ret |= sys_prctl_safe(PR_SET_MM, PR_SET_MM_AUXV, (long)args->mm_saved_auxv, args->mm_saved_auxv_size);
|
|
if (ret)
|
|
goto core_restore_end;
|
|
|
|
/*
|
|
* Because of requirements applied from kernel side
|
|
* we need to restore /proc/pid/exe symlink late,
|
|
* after old existing VMAs are superseded with
|
|
* new ones from image file.
|
|
*/
|
|
ret = restore_self_exe_late(args);
|
|
if (ret)
|
|
goto core_restore_end;
|
|
|
|
/*
|
|
* We need to prepare a valid sigframe here, so
|
|
* after sigreturn the kernel will pick up the
|
|
* registers from the frame, set them up and
|
|
* finally pass execution to the new IP.
|
|
*/
|
|
rt_sigframe = (void *)args->t->mem_zone.rt_sigframe;
|
|
|
|
if (restore_thread_common(rt_sigframe, args->t))
|
|
goto core_restore_end;
|
|
|
|
/*
|
|
* Threads restoration. This requires some more comments. This
|
|
* restorer routine and thread restorer routine has the following
|
|
* memory map, prepared by a caller code.
|
|
*
|
|
* | <-- low addresses high addresses --> |
|
|
* +-------------------------------------------------------+-----------------------+
|
|
* | this proc body | own stack | rt_sigframe space | thread restore zone |
|
|
* +-------------------------------------------------------+-----------------------+
|
|
*
|
|
* where each thread restore zone is the following
|
|
*
|
|
* | <-- low addresses high addresses --> |
|
|
* +--------------------------------------------------------------------------+
|
|
* | thread restore proc | thread1 stack | thread1 rt_sigframe |
|
|
* +--------------------------------------------------------------------------+
|
|
*/
|
|
|
|
if (args->nr_threads > 1) {
|
|
struct thread_restore_args *thread_args = args->thread_args;
|
|
long clone_flags = CLONE_VM | CLONE_FILES | CLONE_SIGHAND |
|
|
CLONE_THREAD | CLONE_SYSVSEM;
|
|
long last_pid_len;
|
|
long parent_tid;
|
|
int i, fd;
|
|
|
|
fd = args->fd_last_pid;
|
|
ret = sys_flock(fd, LOCK_EX);
|
|
if (ret) {
|
|
pr_err("Can't lock last_pid %d\n", fd);
|
|
goto core_restore_end;
|
|
}
|
|
|
|
for (i = 0; i < args->nr_threads; i++) {
|
|
char last_pid_buf[16], *s;
|
|
|
|
/* skip self */
|
|
if (thread_args[i].pid == args->t->pid)
|
|
continue;
|
|
|
|
new_sp = restorer_stack(thread_args + i);
|
|
last_pid_len = vprint_num(last_pid_buf, sizeof(last_pid_buf), thread_args[i].pid - 1, &s);
|
|
ret = sys_write(fd, s, last_pid_len);
|
|
if (ret < 0) {
|
|
pr_err("Can't set last_pid %ld/%s\n", ret, last_pid_buf);
|
|
goto core_restore_end;
|
|
}
|
|
|
|
/*
|
|
* To achieve functionality like libc's clone()
|
|
* we need a pure assembly here, because clone()'ed
|
|
* thread will run with own stack and we must not
|
|
* have any additional instructions... oh, dear...
|
|
*/
|
|
|
|
RUN_CLONE_RESTORE_FN(ret, clone_flags, new_sp, parent_tid, thread_args, args->clone_restore_fn);
|
|
}
|
|
|
|
ret = sys_flock(fd, LOCK_UN);
|
|
if (ret) {
|
|
pr_err("Can't unlock last_pid %ld\n", ret);
|
|
goto core_restore_end;
|
|
}
|
|
|
|
}
|
|
|
|
sys_close(args->fd_last_pid);
|
|
|
|
restore_rlims(args);
|
|
|
|
ret = create_posix_timers(args);
|
|
if (ret < 0) {
|
|
pr_err("Can't restore posix timers %ld\n", ret);
|
|
goto core_restore_end;
|
|
}
|
|
|
|
pr_info("%ld: Restored\n", sys_getpid());
|
|
|
|
futex_set(&zombies_inprogress, args->nr_zombies);
|
|
|
|
restore_finish_stage(CR_STATE_RESTORE);
|
|
|
|
futex_wait_while_gt(&zombies_inprogress, 0);
|
|
|
|
ksigfillset(&to_block);
|
|
ret = sys_sigprocmask(SIG_SETMASK, &to_block, NULL, sizeof(k_rtsigset_t));
|
|
if (ret) {
|
|
pr_err("Unable to block signals %ld", ret);
|
|
goto core_restore_end;
|
|
}
|
|
|
|
sys_sigaction(SIGCHLD, &args->sigchld_act, NULL, sizeof(k_rtsigset_t));
|
|
|
|
ret = restore_signals(args->siginfo, args->siginfo_nr, true);
|
|
if (ret)
|
|
goto core_restore_end;
|
|
|
|
ret = restore_signals(args->t->siginfo, args->t->siginfo_nr, false);
|
|
if (ret)
|
|
goto core_restore_end;
|
|
|
|
restore_finish_stage(CR_STATE_RESTORE_SIGCHLD);
|
|
|
|
rst_tcp_socks_all(args);
|
|
|
|
/*
|
|
* Writing to last-pid is CAP_SYS_ADMIN protected,
|
|
* turning off TCP repair is CAP_SYS_NED_ADMIN protected,
|
|
* thus restore* creds _after_ all of the above.
|
|
*/
|
|
|
|
ret = restore_creds(&args->creds);
|
|
|
|
futex_set_and_wake(&thread_inprogress, args->nr_threads);
|
|
|
|
restore_finish_stage(CR_STATE_RESTORE_CREDS);
|
|
|
|
if (ret)
|
|
BUG();
|
|
|
|
/* Wait until children stop to use args->task_entries */
|
|
futex_wait_while_gt(&thread_inprogress, 1);
|
|
|
|
log_set_fd(-1);
|
|
|
|
/*
|
|
* The code that prepared the itimers makes shure the
|
|
* code below doesn't fail due to bad timing values.
|
|
*/
|
|
|
|
#define itimer_armed(args, i) \
|
|
(args->itimers[i].it_interval.tv_sec || \
|
|
args->itimers[i].it_interval.tv_usec)
|
|
|
|
if (itimer_armed(args, 0))
|
|
sys_setitimer(ITIMER_REAL, &args->itimers[0], NULL);
|
|
if (itimer_armed(args, 1))
|
|
sys_setitimer(ITIMER_VIRTUAL, &args->itimers[1], NULL);
|
|
if (itimer_armed(args, 2))
|
|
sys_setitimer(ITIMER_PROF, &args->itimers[2], NULL);
|
|
|
|
restore_posix_timers(args);
|
|
|
|
sys_munmap(args->task_entries, TASK_ENTRIES_SIZE);
|
|
sys_munmap(args->rst_mem, args->rst_mem_size);
|
|
|
|
/*
|
|
* Sigframe stack.
|
|
*/
|
|
new_sp = (long)rt_sigframe + SIGFRAME_OFFSET;
|
|
|
|
/*
|
|
* Prepare the stack and call for sigreturn,
|
|
* pure assembly since we don't need any additional
|
|
* code insns from gcc.
|
|
*/
|
|
ARCH_RT_SIGRETURN(new_sp);
|
|
|
|
core_restore_end:
|
|
futex_abort_and_wake(&task_entries->nr_in_progress);
|
|
pr_err("Restorer fail %ld\n", sys_getpid());
|
|
sys_exit_group(1);
|
|
return -1;
|
|
}
|