mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-22 01:31:34 +00:00
Since we now have the parasite memory shared with crtools process we can just memcpy this data between them. Signed-off-by: Pavel Emelyanov <xemul@parallels.com> Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
38 lines
1.3 KiB
C
38 lines
1.3 KiB
C
#ifndef PARASITE_SYSCALL_H_
|
|
#define PARASITE_SYSCALL_H_
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/mman.h>
|
|
|
|
#include "compiler.h"
|
|
#include "types.h"
|
|
#include "list.h"
|
|
#include "crtools.h"
|
|
|
|
#define BUILTIN_SYSCALL_SIZE 8
|
|
|
|
/* parasite control block */
|
|
struct parasite_ctl {
|
|
pid_t pid; /* process pid where we live in */
|
|
void * remote_map;
|
|
void * local_map;
|
|
unsigned long map_length;
|
|
unsigned long parasite_ip; /* service routine start ip */
|
|
void * addr_cmd; /* addr for command */
|
|
void * addr_args; /* address for arguments */
|
|
};
|
|
|
|
extern int can_run_syscall(unsigned long ip, unsigned long start, unsigned long end);
|
|
|
|
extern int parasite_dump_pages_seized(struct parasite_ctl *ctl, struct list_head *vma_area_list,
|
|
struct cr_fdset *cr_fdset);
|
|
extern int parasite_dump_sigacts_seized(struct parasite_ctl *ctl, struct cr_fdset *cr_fdset);
|
|
extern int parasite_dump_itimers_seized(struct parasite_ctl *ctl, struct cr_fdset *cr_fdset);
|
|
|
|
struct parasite_dump_misc;
|
|
extern int parasite_dump_misc_seized(struct parasite_ctl *ctl, struct parasite_dump_misc *);
|
|
|
|
extern struct parasite_ctl *parasite_infect_seized(pid_t pid, int pid_dir, struct list_head *vma_area_list);
|
|
extern int parasite_cure_seized(struct parasite_ctl *ctl, struct list_head *vma_area_list);
|
|
|
|
#endif /* PARASITE_SYSCALL_H_ */
|