mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-18 17:14:28 +00:00
On dump one uses one or more --ext-mount-map option with A:B arguments. A denotes a mountpoint (as seen from the target mount namespace) criu dumps and B is the string that will be written into the image file instead of the mountpoint's root. On restore one uses the same --ext-mount-map option(s) with similar A:B arguments, but this time criu treats A as string from the image's root field (foobar in the example above) and B as the path in criu's mount namespace the should be bind mounted into the mountpoint. v3: * Added documentation * Added RPC bits * Changed option name into --ext-mount-map * Use colon as key and value separator Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
40 lines
1.1 KiB
C
40 lines
1.1 KiB
C
#ifndef __CR_MOUNT_H__
|
|
#define __CR_MOUNT_H__
|
|
|
|
extern struct mount_info *mntinfo;
|
|
|
|
struct ns_id;
|
|
extern int __mntns_get_root_fd(pid_t pid);
|
|
extern int mntns_get_root_fd(struct ns_id *ns);
|
|
extern struct ns_id *lookup_nsid_by_mnt_id(int mnt_id);
|
|
|
|
struct proc_mountinfo;
|
|
|
|
extern int open_mount(unsigned int s_dev);
|
|
extern struct fstype *find_fstype_by_name(char *fst);
|
|
|
|
struct cr_fdset;
|
|
extern struct mount_info * collect_mntinfo(struct ns_id *ns);
|
|
extern int prepare_mnt_ns(void);
|
|
|
|
extern int pivot_root(const char *new_root, const char *put_old);
|
|
|
|
struct mount_info;
|
|
extern struct mount_info *lookup_mnt_id(unsigned int id);
|
|
extern struct mount_info *lookup_mnt_sdev(unsigned int s_dev);
|
|
|
|
extern struct ns_desc mnt_ns_desc;
|
|
|
|
extern dev_t phys_stat_resolve_dev(struct mount_info *tree,
|
|
dev_t st_dev, const char *path);
|
|
extern bool phys_stat_dev_match(struct mount_info *tree, dev_t st_dev,
|
|
dev_t phys_dev, const char *path);
|
|
|
|
struct pstree_item;
|
|
extern int restore_task_mnt_ns(struct pstree_item *);
|
|
extern int fini_mnt_ns(void);
|
|
|
|
char *rst_get_mnt_root(int mnt_id);
|
|
int ext_mount_add(char *key, char *val);
|
|
|
|
#endif /* __CR_MOUNT_H__ */
|