[CRIU] [PATCH v3 08/11] criu: uffd: add --lazy-addr option
Mike Rapoport
rapoport at linux.vnet.ibm.com
Tue May 31 14:01:41 PDT 2016
From: Mike Rapoport <rppt at linux.vnet.ibm.com>
to distinguish between UNIX socket address for passing uffd and the address
of the remote dump
Signed-off-by: Mike Rapoport <rppt at linux.vnet.ibm.com>
---
criu/crtools.c | 4 ++++
criu/include/cr_options.h | 1 +
criu/uffd.c | 26 +++++++++++++-------------
3 files changed, 18 insertions(+), 13 deletions(-)
diff --git a/criu/crtools.c b/criu/crtools.c
index 5fdd110..a052c62 100644
--- a/criu/crtools.c
+++ b/criu/crtools.c
@@ -324,6 +324,7 @@ int main(int argc, char *argv[], char *envp[])
{ "cgroup-props", required_argument, 0, 1080 },
{ "cgroup-props-file", required_argument, 0, 1081 },
{ "cgroup-dump-controller", required_argument, 0, 1082 },
+ { "lazy-addr", required_argument, 0, 1083 },
{ },
};
@@ -635,6 +636,9 @@ int main(int argc, char *argv[], char *envp[])
if (!cgp_add_dump_controller(optarg))
return 1;
break;
+ case 1083:
+ opts.lazy_addr = optarg;
+ break;
case 'V':
pr_msg("Version: %s\n", CRIU_VERSION);
if (strcmp(CRIU_GITID, "0"))
diff --git a/criu/include/cr_options.h b/criu/include/cr_options.h
index e36c362..641f0e5 100644
--- a/criu/include/cr_options.h
+++ b/criu/include/cr_options.h
@@ -111,6 +111,7 @@ struct cr_options {
unsigned int timeout;
unsigned int empty_ns;
bool lazy_pages;
+ char *lazy_addr;
};
extern struct cr_options opts;
diff --git a/criu/uffd.c b/criu/uffd.c
index 4e9d46a..c52809b 100644
--- a/criu/uffd.c
+++ b/criu/uffd.c
@@ -116,18 +116,18 @@ static int send_uffd(int sendfd, int pid)
int ret = -1;
struct sockaddr_un sun;
- if (!opts.addr) {
+ if (!opts.lazy_addr) {
pr_info("Please specify a file name for the unix domain socket\n");
pr_info("used to communicate between the lazy-pages server\n");
- pr_info("and the restore process. Use the --address option like\n");
- pr_info("criu restore --lazy-pages --address /tmp/userfault.socket\n");
+ pr_info("and the restore process. Use the --lazy-addr option like\n");
+ pr_info("criu restore --lazy-pages --lazy-addr /tmp/uffd.sock\n");
return -1;
}
if (sendfd < 0)
return -1;
- if (strlen(opts.addr) >= sizeof(sun.sun_path)) {
+ if (strlen(opts.lazy_addr) >= sizeof(sun.sun_path)) {
return -1;
}
@@ -136,10 +136,10 @@ static int send_uffd(int sendfd, int pid)
memset(&sun, 0, sizeof(sun));
sun.sun_family = AF_UNIX;
- strcpy(sun.sun_path, opts.addr);
- len = offsetof(struct sockaddr_un, sun_path) + strlen(opts.addr);
+ strcpy(sun.sun_path, opts.lazy_addr);
+ len = offsetof(struct sockaddr_un, sun_path) + strlen(opts.lazy_addr);
if (connect(fd, (struct sockaddr *) &sun, len) < 0) {
- pr_perror("connect to %s failed", opts.addr);
+ pr_perror("connect to %s failed", opts.lazy_addr);
goto out;
}
@@ -232,19 +232,19 @@ static int server_listen(struct sockaddr_un *saddr)
int fd;
int len;
- if (strlen(opts.addr) >= sizeof(saddr->sun_path)) {
+ if (strlen(opts.lazy_addr) >= sizeof(saddr->sun_path)) {
return -1;
}
if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) < 0)
return -1;
- unlink(opts.addr);
+ unlink(opts.lazy_addr);
memset(saddr, 0, sizeof(struct sockaddr_un));
saddr->sun_family = AF_UNIX;
- strcpy(saddr->sun_path, opts.addr);
- len = offsetof(struct sockaddr_un, sun_path) + strlen(opts.addr);
+ strcpy(saddr->sun_path, opts.lazy_addr);
+ len = offsetof(struct sockaddr_un, sun_path) + strlen(opts.lazy_addr);
if (bind(fd, (struct sockaddr *) saddr, len) < 0) {
goto out;
@@ -815,7 +815,7 @@ static int prepare_uffds(int epollfd)
int listen;
struct sockaddr_un saddr;
- pr_debug("Waiting for incoming connections on %s\n", opts.addr);
+ pr_debug("Waiting for incoming connections on %s\n", opts.lazy_addr);
if ((listen = server_listen(&saddr)) < 0) {
pr_perror("server_listen error");
return -1;
@@ -848,7 +848,7 @@ int cr_lazy_pages()
if (check_for_uffd())
return -1;
- if (!opts.addr) {
+ if (!opts.lazy_addr) {
pr_info("Please specify a file name for the unix domain socket\n");
pr_info("used to communicate between the lazy-pages server\n");
pr_info("and the restore process. Use the --address option like\n");
--
1.9.1
More information about the CRIU
mailing list