From: Juan Quintela <quintela@redhat.com>
To: qemu-devel@nongnu.org
Cc: dgilbert@redhat.com, lvivier@redhat.com, peterx@redhat.com
Subject: [Qemu-devel] [PATCH v3 2/2] migration: Set the migration tcp port
Date: Fri, 1 Dec 2017 13:57:50 +0100 [thread overview]
Message-ID: <20171201125750.1372-3-quintela@redhat.com> (raw)
In-Reply-To: <20171201125750.1372-1-quintela@redhat.com>
We can set the port parameter as zero. This patch lets us know what
port the system was choosen for us. Now we can migrate to this place.
Signed-off-by: Juan Quintela <quintela@redhat.com>
--
This was migrate_set_uri(), but as we only need the tcp_port, change
to that one.
---
migration/migration.c | 10 ++++++++++
migration/migration.h | 2 ++
migration/socket.c | 35 ++++++++++++++++++++++++++++++-----
3 files changed, 42 insertions(+), 5 deletions(-)
diff --git a/migration/migration.c b/migration/migration.c
index abc02d4efd..b3e396a382 100644
--- a/migration/migration.c
+++ b/migration/migration.c
@@ -240,6 +240,16 @@ void migrate_send_rp_req_pages(MigrationIncomingState *mis, const char *rbname,
}
}
+void migrate_set_port(const uint16_t port, Error **errp)
+{
+ MigrateSetParameters p = {
+ .has_tcp_port = true,
+ .tcp_port = port,
+ };
+
+ qmp_migrate_set_parameters(&p, errp);
+}
+
void qemu_start_incoming_migration(const char *uri, Error **errp)
{
const char *p;
diff --git a/migration/migration.h b/migration/migration.h
index 663415fe48..53153a9eca 100644
--- a/migration/migration.h
+++ b/migration/migration.h
@@ -210,4 +210,6 @@ void migrate_send_rp_pong(MigrationIncomingState *mis,
void migrate_send_rp_req_pages(MigrationIncomingState *mis, const char* rbname,
ram_addr_t start, size_t len);
+void migrate_set_port(const uint16_t port, Error **errp);
+
#endif
diff --git a/migration/socket.c b/migration/socket.c
index 3a8232dd2d..248a798543 100644
--- a/migration/socket.c
+++ b/migration/socket.c
@@ -15,6 +15,7 @@
*/
#include "qemu/osdep.h"
+#include "qemu/cutils.h"
#include "qemu-common.h"
#include "qemu/error-report.h"
@@ -162,17 +163,24 @@ out:
}
-static void socket_start_incoming_migration(SocketAddress *saddr,
- Error **errp)
+static SocketAddress *socket_start_incoming_migration(SocketAddress *saddr,
+ Error **errp)
{
QIOChannelSocket *listen_ioc = qio_channel_socket_new();
+ SocketAddress *address;
qio_channel_set_name(QIO_CHANNEL(listen_ioc),
"migration-socket-listener");
if (qio_channel_socket_listen_sync(listen_ioc, saddr, errp) < 0) {
object_unref(OBJECT(listen_ioc));
- return;
+ return NULL;
+ }
+
+ address = qio_channel_socket_get_local_address(listen_ioc, errp);
+ if (address < 0) {
+ object_unref(OBJECT(listen_ioc));
+ return NULL;
}
qio_channel_add_watch(QIO_CHANNEL(listen_ioc),
@@ -180,14 +188,28 @@ static void socket_start_incoming_migration(SocketAddress *saddr,
socket_accept_incoming_migration,
listen_ioc,
(GDestroyNotify)object_unref);
+ return address;
}
void tcp_start_incoming_migration(const char *host_port, Error **errp)
{
Error *err = NULL;
SocketAddress *saddr = tcp_build_address(host_port, &err);
+
if (!err) {
- socket_start_incoming_migration(saddr, &err);
+ SocketAddress *address = socket_start_incoming_migration(saddr, &err);
+
+ if (address) {
+ unsigned long long port;
+
+ if (parse_uint_full(address->u.inet.port, &port, 10) < 0) {
+ error_setg(errp, "error parsing port in '%s'",
+ address->u.inet.port);
+ } else {
+ migrate_set_port(port, errp);
+ }
+ qapi_free_SocketAddress(address);
+ }
}
qapi_free_SocketAddress(saddr);
error_propagate(errp, err);
@@ -196,6 +218,9 @@ void tcp_start_incoming_migration(const char *host_port, Error **errp)
void unix_start_incoming_migration(const char *path, Error **errp)
{
SocketAddress *saddr = unix_build_address(path);
- socket_start_incoming_migration(saddr, errp);
+ SocketAddress *address;
+
+ address = socket_start_incoming_migration(saddr, errp);
+ qapi_free_SocketAddress(address);
qapi_free_SocketAddress(saddr);
}
--
2.14.3
prev parent reply other threads:[~2017-12-01 16:34 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-01 12:57 [Qemu-devel] [PATCH v3 0/2] Improve info migrate output on destination Juan Quintela
2017-12-01 12:57 ` [Qemu-devel] [PATCH v3 1/2] migration: Create tcp_port parameter Juan Quintela
2017-12-01 18:28 ` Eric Blake
2018-01-04 18:16 ` Juan Quintela
2017-12-05 8:02 ` Peter Xu
2017-12-08 11:53 ` Dr. David Alan Gilbert
2018-01-04 18:18 ` Juan Quintela
2017-12-01 12:57 ` Juan Quintela [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171201125750.1372-3-quintela@redhat.com \
--to=quintela@redhat.com \
--cc=dgilbert@redhat.com \
--cc=lvivier@redhat.com \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).