]>
Commit | Line | Data |
---|---|---|
dd4339c5 JQ |
1 | /* |
2 | * QEMU live migration channel operations | |
3 | * | |
4 | * Copyright Red Hat, Inc. 2016 | |
5 | * | |
6 | * Authors: | |
7 | * Daniel P. Berrange <[email protected]> | |
8 | * | |
9 | * Contributions after 2012-01-13 are licensed under the terms of the | |
10 | * GNU GPL, version 2 or (at your option) any later version. | |
11 | */ | |
12 | ||
13 | #include "qemu/osdep.h" | |
14 | #include "channel.h" | |
41d64227 | 15 | #include "tls.h" |
6666c96a | 16 | #include "migration.h" |
40014d81 | 17 | #include "qemu-file-channel.h" |
dd4339c5 JQ |
18 | #include "trace.h" |
19 | #include "qapi/error.h" | |
20 | #include "io/channel-tls.h" | |
b5eea99e LS |
21 | #include "io/channel-socket.h" |
22 | #include "qemu/yank.h" | |
1a92d6d5 | 23 | #include "yank_functions.h" |
dd4339c5 | 24 | |
8e1a1931 JQ |
25 | /** |
26 | * @migration_channel_process_incoming - Create new incoming migration channel | |
27 | * | |
28 | * Notice that TLS is special. For it we listen in a listener socket, | |
29 | * and then create a new client socket from the TLS library. | |
30 | * | |
31 | * @ioc: Channel to which we are connecting | |
32 | */ | |
54314711 | 33 | void migration_channel_process_incoming(QIOChannel *ioc) |
dd4339c5 | 34 | { |
54314711 | 35 | MigrationState *s = migrate_get_current(); |
49ed0d24 | 36 | Error *local_err = NULL; |
54314711 | 37 | |
dd4339c5 JQ |
38 | trace_migration_set_incoming_channel( |
39 | ioc, object_get_typename(OBJECT(ioc))); | |
40 | ||
41 | if (s->parameters.tls_creds && | |
42 | *s->parameters.tls_creds && | |
43 | !object_dynamic_cast(OBJECT(ioc), | |
44 | TYPE_QIO_CHANNEL_TLS)) { | |
dd4339c5 | 45 | migration_tls_channel_process_incoming(s, ioc, &local_err); |
dd4339c5 | 46 | } else { |
18711405 | 47 | migration_ioc_register_yank(ioc); |
49ed0d24 FL |
48 | migration_ioc_process_incoming(ioc, &local_err); |
49 | } | |
50 | ||
51 | if (local_err) { | |
52 | error_report_err(local_err); | |
dd4339c5 JQ |
53 | } |
54 | } | |
55 | ||
56 | ||
8e1a1931 JQ |
57 | /** |
58 | * @migration_channel_connect - Create new outgoing migration channel | |
59 | * | |
60 | * @s: Current migration state | |
61 | * @ioc: Channel to which we are connecting | |
62 | * @hostname: Where we want to connect | |
688a3dcb | 63 | * @error: Error indicating failure to connect, free'd here |
8e1a1931 | 64 | */ |
dd4339c5 JQ |
65 | void migration_channel_connect(MigrationState *s, |
66 | QIOChannel *ioc, | |
688a3dcb DDAG |
67 | const char *hostname, |
68 | Error *error) | |
dd4339c5 JQ |
69 | { |
70 | trace_migration_set_outgoing_channel( | |
688a3dcb | 71 | ioc, object_get_typename(OBJECT(ioc)), hostname, error); |
dd4339c5 | 72 | |
688a3dcb DDAG |
73 | if (!error) { |
74 | if (s->parameters.tls_creds && | |
75 | *s->parameters.tls_creds && | |
76 | !object_dynamic_cast(OBJECT(ioc), | |
77 | TYPE_QIO_CHANNEL_TLS)) { | |
78 | migration_tls_channel_connect(s, ioc, hostname, &error); | |
8b7bf2ba DDAG |
79 | |
80 | if (!error) { | |
81 | /* tls_channel_connect will call back to this | |
82 | * function after the TLS handshake, | |
83 | * so we mustn't call migrate_fd_connect until then | |
84 | */ | |
85 | ||
86 | return; | |
87 | } | |
688a3dcb DDAG |
88 | } else { |
89 | QEMUFile *f = qemu_fopen_channel_output(ioc); | |
dd4339c5 | 90 | |
18711405 | 91 | migration_ioc_register_yank(ioc); |
7de2e856 | 92 | |
62df066f | 93 | qemu_mutex_lock(&s->qemu_file_lock); |
688a3dcb | 94 | s->to_dst_file = f; |
62df066f | 95 | qemu_mutex_unlock(&s->qemu_file_lock); |
688a3dcb | 96 | } |
dd4339c5 | 97 | } |
688a3dcb | 98 | migrate_fd_connect(s, error); |
d8053e73 | 99 | g_free(s->hostname); |
688a3dcb | 100 | error_free(error); |
dd4339c5 | 101 | } |