]> git.proxmox.com Git - mirror_qemu.git/blame - docs/devel/migration.rst
target/i386: Clear RF on SYSCALL instruction
[mirror_qemu.git] / docs / devel / migration.rst
CommitLineData
2e3c8f8d
DDAG
1=========
2Migration
3=========
f58ae59c
JQ
4
5QEMU has code to load/save the state of the guest that it is running.
dda5336e 6These are two complementary operations. Saving the state just does
f58ae59c
JQ
7that, saves the state for each device that the guest is running.
8Restoring a guest is just the opposite operation: we need to load the
9state of each device.
10
dda5336e 11For this to work, QEMU has to be launched with the same arguments the
f58ae59c
JQ
12two times. I.e. it can only restore the state in one guest that has
13the same devices that the one it was saved (this last requirement can
dda5336e 14be relaxed a bit, but for now we can consider that configuration has
f58ae59c
JQ
15to be exactly the same).
16
17Once that we are able to save/restore a guest, a new functionality is
18requested: migration. This means that QEMU is able to start in one
dda5336e
SW
19machine and being "migrated" to another machine. I.e. being moved to
20another machine.
f58ae59c
JQ
21
22Next was the "live migration" functionality. This is important
23because some guests run with a lot of state (specially RAM), and it
24can take a while to move all state from one machine to another. Live
25migration allows the guest to continue running while the state is
26transferred. Only while the last part of the state is transferred has
27the guest to be stopped. Typically the time that the guest is
28unresponsive during live migration is the low hundred of milliseconds
dda5336e 29(notice that this depends on a lot of things).
f58ae59c 30
edd70806
DDAG
31Transports
32==========
f58ae59c 33
edd70806
DDAG
34The migration stream is normally just a byte stream that can be passed
35over any transport.
f58ae59c
JQ
36
37- tcp migration: do the migration using tcp sockets
38- unix migration: do the migration using unix sockets
39- exec migration: do the migration using the stdin/stdout through a process.
9277d81f 40- fd migration: do the migration using a file descriptor that is
dda5336e 41 passed to QEMU. QEMU doesn't care how this file descriptor is opened.
f58ae59c 42
edd70806
DDAG
43In addition, support is included for migration using RDMA, which
44transports the page data using ``RDMA``, where the hardware takes care of
45transporting the pages, and the load on the CPU is much lower. While the
46internals of RDMA migration are a bit different, this isn't really visible
47outside the RAM migration code.
48
49All these migration protocols use the same infrastructure to
f58ae59c
JQ
50save/restore state devices. This infrastructure is shared with the
51savevm/loadvm functionality.
52
2e3c8f8d
DDAG
53Common infrastructure
54=====================
f58ae59c 55
2e3c8f8d
DDAG
56The files, sockets or fd's that carry the migration stream are abstracted by
57the ``QEMUFile`` type (see `migration/qemu-file.h`). In most cases this
58is connected to a subtype of ``QIOChannel`` (see `io/`).
f58ae59c 59
edd70806 60
2e3c8f8d
DDAG
61Saving the state of one device
62==============================
f58ae59c 63
edd70806
DDAG
64For most devices, the state is saved in a single call to the migration
65infrastructure; these are *non-iterative* devices. The data for these
66devices is sent at the end of precopy migration, when the CPUs are paused.
67There are also *iterative* devices, which contain a very large amount of
68data (e.g. RAM or large tables). See the iterative device section below.
69
70General advice for device developers
71------------------------------------
72
73- The migration state saved should reflect the device being modelled rather
74 than the way your implementation works. That way if you change the implementation
75 later the migration stream will stay compatible. That model may include
76 internal state that's not directly visible in a register.
77
78- When saving a migration stream the device code may walk and check
79 the state of the device. These checks might fail in various ways (e.g.
80 discovering internal state is corrupt or that the guest has done something bad).
81 Consider carefully before asserting/aborting at this point, since the
82 normal response from users is that *migration broke their VM* since it had
83 apparently been running fine until then. In these error cases, the device
84 should log a message indicating the cause of error, and should consider
85 putting the device into an error state, allowing the rest of the VM to
86 continue execution.
87
88- The migration might happen at an inconvenient point,
89 e.g. right in the middle of the guest reprogramming the device, during
90 guest reboot or shutdown or while the device is waiting for external IO.
91 It's strongly preferred that migrations do not fail in this situation,
92 since in the cloud environment migrations might happen automatically to
93 VMs that the administrator doesn't directly control.
94
95- If you do need to fail a migration, ensure that sufficient information
96 is logged to identify what went wrong.
97
98- The destination should treat an incoming migration stream as hostile
99 (which we do to varying degrees in the existing code). Check that offsets
100 into buffers and the like can't cause overruns. Fail the incoming migration
101 in the case of a corrupted stream like this.
102
103- Take care with internal device state or behaviour that might become
104 migration version dependent. For example, the order of PCI capabilities
105 is required to stay constant across migration. Another example would
106 be that a special case handled by subsections (see below) might become
107 much more common if a default behaviour is changed.
108
109- The state of the source should not be changed or destroyed by the
110 outgoing migration. Migrations timing out or being failed by
111 higher levels of management, or failures of the destination host are
112 not unusual, and in that case the VM is restarted on the source.
113 Note that the management layer can validly revert the migration
114 even though the QEMU level of migration has succeeded as long as it
115 does it before starting execution on the destination.
116
117- Buses and devices should be able to explicitly specify addresses when
118 instantiated, and management tools should use those. For example,
119 when hot adding USB devices it's important to specify the ports
120 and addresses, since implicit ordering based on the command line order
121 may be different on the destination. This can result in the
122 device state being loaded into the wrong device.
f58ae59c 123
2e3c8f8d
DDAG
124VMState
125-------
f58ae59c 126
edd70806
DDAG
127Most device data can be described using the ``VMSTATE`` macros (mostly defined
128in ``include/migration/vmstate.h``).
f58ae59c 129
7465dfec 130An example (from hw/input/pckbd.c)
f58ae59c 131
2e3c8f8d
DDAG
132.. code:: c
133
134 static const VMStateDescription vmstate_kbd = {
135 .name = "pckbd",
136 .version_id = 3,
137 .minimum_version_id = 3,
138 .fields = (VMStateField[]) {
139 VMSTATE_UINT8(write_cmd, KBDState),
140 VMSTATE_UINT8(status, KBDState),
141 VMSTATE_UINT8(mode, KBDState),
142 VMSTATE_UINT8(pending, KBDState),
143 VMSTATE_END_OF_LIST()
144 }
145 };
f58ae59c
JQ
146
147We are declaring the state with name "pckbd".
2e3c8f8d 148The `version_id` is 3, and the fields are 4 uint8_t in a KBDState structure.
f58ae59c
JQ
149We registered this with:
150
2e3c8f8d
DDAG
151.. code:: c
152
f58ae59c
JQ
153 vmstate_register(NULL, 0, &vmstate_kbd, s);
154
edd70806
DDAG
155For devices that are `qdev` based, we can register the device in the class
156init function:
f58ae59c 157
edd70806 158.. code:: c
f58ae59c 159
edd70806 160 dc->vmsd = &vmstate_kbd_isa;
f58ae59c 161
edd70806
DDAG
162The VMState macros take care of ensuring that the device data section
163is formatted portably (normally big endian) and make some compile time checks
164against the types of the fields in the structures.
f58ae59c 165
edd70806
DDAG
166VMState macros can include other VMStateDescriptions to store substructures
167(see ``VMSTATE_STRUCT_``), arrays (``VMSTATE_ARRAY_``) and variable length
168arrays (``VMSTATE_VARRAY_``). Various other macros exist for special
169cases.
5f9412bb 170
edd70806
DDAG
171Note that the format on the wire is still very raw; i.e. a VMSTATE_UINT32
172ends up with a 4 byte bigendian representation on the wire; in the future
173it might be possible to use a more structured format.
f58ae59c 174
edd70806
DDAG
175Legacy way
176----------
f58ae59c 177
edd70806
DDAG
178This way is going to disappear as soon as all current users are ported to VMSTATE;
179although converting existing code can be tricky, and thus 'soon' is relative.
f58ae59c 180
edd70806
DDAG
181Each device has to register two functions, one to save the state and
182another to load the state back.
f58ae59c 183
edd70806 184.. code:: c
f58ae59c 185
edd70806
DDAG
186 int register_savevm_live(DeviceState *dev,
187 const char *idstr,
188 int instance_id,
189 int version_id,
190 SaveVMHandlers *ops,
191 void *opaque);
f58ae59c 192
edd70806
DDAG
193Two functions in the ``ops`` structure are the `save_state`
194and `load_state` functions. Notice that `load_state` receives a version_id
195parameter to know what state format is receiving. `save_state` doesn't
196have a version_id parameter because it always uses the latest version.
f58ae59c 197
edd70806
DDAG
198Note that because the VMState macros still save the data in a raw
199format, in many cases it's possible to replace legacy code
200with a carefully constructed VMState description that matches the
201byte layout of the existing code.
f58ae59c 202
edd70806
DDAG
203Changing migration data structures
204----------------------------------
f58ae59c 205
edd70806
DDAG
206When we migrate a device, we save/load the state as a series
207of fields. Sometimes, due to bugs or new functionality, we need to
208change the state to store more/different information. Changing the migration
209state saved for a device can break migration compatibility unless
210care is taken to use the appropriate techniques. In general QEMU tries
211to maintain forward migration compatibility (i.e. migrating from
212QEMU n->n+1) and there are users who benefit from backward compatibility
213as well.
a6c5c079 214
2e3c8f8d
DDAG
215Subsections
216-----------
f58ae59c 217
edd70806
DDAG
218The most common structure change is adding new data, e.g. when adding
219a newer form of device, or adding that state that you previously
220forgot to migrate. This is best solved using a subsection.
f58ae59c 221
edd70806
DDAG
222A subsection is "like" a device vmstate, but with a particularity, it
223has a Boolean function that tells if that values are needed to be sent
224or not. If this functions returns false, the subsection is not sent.
225Subsections have a unique name, that is looked for on the receiving
226side.
f58ae59c
JQ
227
228On the receiving side, if we found a subsection for a device that we
229don't understand, we just fail the migration. If we understand all
edd70806
DDAG
230the subsections, then we load the state with success. There's no check
231that a subsection is loaded, so a newer QEMU that knows about a subsection
232can (with care) load a stream from an older QEMU that didn't send
233the subsection.
234
235If the new data is only needed in a rare case, then the subsection
236can be made conditional on that case and the migration will still
237succeed to older QEMUs in most cases. This is OK for data that's
238critical, but in some use cases it's preferred that the migration
239should succeed even with the data missing. To support this the
240subsection can be connected to a device property and from there
241to a versioned machine type.
f58ae59c 242
3eb21fe9
DDAG
243The 'pre_load' and 'post_load' functions on subsections are only
244called if the subsection is loaded.
245
246One important note is that the outer post_load() function is called "after"
247loading all subsections, because a newer subsection could change the same
248value that it uses. A flag, and the combination of outer pre_load and
249post_load can be used to detect whether a subsection was loaded, and to
edd70806 250fall back on default behaviour when the subsection isn't present.
f58ae59c
JQ
251
252Example:
253
2e3c8f8d
DDAG
254.. code:: c
255
256 static bool ide_drive_pio_state_needed(void *opaque)
257 {
258 IDEState *s = opaque;
259
260 return ((s->status & DRQ_STAT) != 0)
261 || (s->bus->error_status & BM_STATUS_PIO_RETRY);
262 }
263
264 const VMStateDescription vmstate_ide_drive_pio_state = {
265 .name = "ide_drive/pio_state",
266 .version_id = 1,
267 .minimum_version_id = 1,
268 .pre_save = ide_drive_pio_pre_save,
269 .post_load = ide_drive_pio_post_load,
270 .needed = ide_drive_pio_state_needed,
271 .fields = (VMStateField[]) {
272 VMSTATE_INT32(req_nb_sectors, IDEState),
273 VMSTATE_VARRAY_INT32(io_buffer, IDEState, io_buffer_total_len, 1,
274 vmstate_info_uint8, uint8_t),
275 VMSTATE_INT32(cur_io_buffer_offset, IDEState),
276 VMSTATE_INT32(cur_io_buffer_len, IDEState),
277 VMSTATE_UINT8(end_transfer_fn_idx, IDEState),
278 VMSTATE_INT32(elementary_transfer_size, IDEState),
279 VMSTATE_INT32(packet_transfer_size, IDEState),
280 VMSTATE_END_OF_LIST()
281 }
282 };
283
284 const VMStateDescription vmstate_ide_drive = {
285 .name = "ide_drive",
286 .version_id = 3,
287 .minimum_version_id = 0,
288 .post_load = ide_drive_post_load,
289 .fields = (VMStateField[]) {
290 .... several fields ....
291 VMSTATE_END_OF_LIST()
292 },
293 .subsections = (const VMStateDescription*[]) {
294 &vmstate_ide_drive_pio_state,
295 NULL
296 }
297 };
f58ae59c
JQ
298
299Here we have a subsection for the pio state. We only need to
300save/send this state when we are in the middle of a pio operation
2e3c8f8d 301(that is what ``ide_drive_pio_state_needed()`` checks). If DRQ_STAT is
f58ae59c
JQ
302not enabled, the values on that fields are garbage and don't need to
303be sent.
2bfdd1c8 304
edd70806
DDAG
305Connecting subsections to properties
306------------------------------------
307
5f9412bb 308Using a condition function that checks a 'property' to determine whether
edd70806
DDAG
309to send a subsection allows backward migration compatibility when
310new subsections are added, especially when combined with versioned
311machine types.
5f9412bb 312
2e3c8f8d
DDAG
313For example:
314
315 a) Add a new property using ``DEFINE_PROP_BOOL`` - e.g. support-foo and
5f9412bb 316 default it to true.
2e3c8f8d
DDAG
317 b) Add an entry to the ``HW_COMPAT_`` for the previous version that sets
318 the property to false.
5f9412bb
DDAG
319 c) Add a static bool support_foo function that tests the property.
320 d) Add a subsection with a .needed set to the support_foo function
3eb21fe9
DDAG
321 e) (potentially) Add an outer pre_load that sets up a default value
322 for 'foo' to be used if the subsection isn't loaded.
5f9412bb
DDAG
323
324Now that subsection will not be generated when using an older
325machine type and the migration stream will be accepted by older
edd70806 326QEMU versions.
5f9412bb 327
2e3c8f8d
DDAG
328Not sending existing elements
329-----------------------------
330
331Sometimes members of the VMState are no longer needed:
5f9412bb 332
2e3c8f8d
DDAG
333 - removing them will break migration compatibility
334
edd70806
DDAG
335 - making them version dependent and bumping the version will break backward migration
336 compatibility.
337
338Adding a dummy field into the migration stream is normally the best way to preserve
339compatibility.
5f9412bb 340
edd70806 341If the field really does need to be removed then:
2e3c8f8d
DDAG
342
343 a) Add a new property/compatibility/function in the same way for subsections above.
5f9412bb 344 b) replace the VMSTATE macro with the _TEST version of the macro, e.g.:
2e3c8f8d
DDAG
345
346 ``VMSTATE_UINT32(foo, barstruct)``
347
5f9412bb 348 becomes
5f9412bb 349
2e3c8f8d
DDAG
350 ``VMSTATE_UINT32_TEST(foo, barstruct, pre_version_baz)``
351
352 Sometime in the future when we no longer care about the ancient versions these can be killed off.
edd70806
DDAG
353 Note that for backward compatibility it's important to fill in the structure with
354 data that the destination will understand.
355
356Any difference in the predicates on the source and destination will end up
357with different fields being enabled and data being loaded into the wrong
358fields; for this reason conditional fields like this are very fragile.
359
360Versions
361--------
362
363Version numbers are intended for major incompatible changes to the
364migration of a device, and using them breaks backward-migration
365compatibility; in general most changes can be made by adding Subsections
366(see above) or _TEST macros (see above) which won't break compatibility.
367
368Each version is associated with a series of fields saved. The `save_state` always saves
369the state as the newer version. But `load_state` sometimes is able to
370load state from an older version.
371
372You can see that there are several version fields:
373
374- `version_id`: the maximum version_id supported by VMState for that device.
375- `minimum_version_id`: the minimum version_id that VMState is able to understand
376 for that device.
377- `minimum_version_id_old`: For devices that were not able to port to vmstate, we can
378 assign a function that knows how to read this old state. This field is
379 ignored if there is no `load_state_old` handler.
380
381VMState is able to read versions from minimum_version_id to
382version_id. And the function ``load_state_old()`` (if present) is able to
383load state from minimum_version_id_old to minimum_version_id. This
384function is deprecated and will be removed when no more users are left.
385
386There are *_V* forms of many ``VMSTATE_`` macros to load fields for version dependent fields,
387e.g.
388
389.. code:: c
390
391 VMSTATE_UINT16_V(ip_id, Slirp, 2),
392
393only loads that field for versions 2 and newer.
394
395Saving state will always create a section with the 'version_id' value
396and thus can't be loaded by any older QEMU.
397
398Massaging functions
399-------------------
400
401Sometimes, it is not enough to be able to save the state directly
402from one structure, we need to fill the correct values there. One
403example is when we are using kvm. Before saving the cpu state, we
404need to ask kvm to copy to QEMU the state that it is using. And the
405opposite when we are loading the state, we need a way to tell kvm to
406load the state for the cpu that we have just loaded from the QEMUFile.
407
408The functions to do that are inside a vmstate definition, and are called:
409
410- ``int (*pre_load)(void *opaque);``
411
412 This function is called before we load the state of one device.
413
414- ``int (*post_load)(void *opaque, int version_id);``
415
416 This function is called after we load the state of one device.
417
418- ``int (*pre_save)(void *opaque);``
419
420 This function is called before we save the state of one device.
421
422Example: You can look at hpet.c, that uses the three function to
423massage the state that is transferred.
424
425The ``VMSTATE_WITH_TMP`` macro may be useful when the migration
426data doesn't match the stored device data well; it allows an
427intermediate temporary structure to be populated with migration
428data and then transferred to the main structure.
429
430If you use memory API functions that update memory layout outside
431initialization (i.e., in response to a guest action), this is a strong
432indication that you need to call these functions in a `post_load` callback.
433Examples of such memory API functions are:
434
435 - memory_region_add_subregion()
436 - memory_region_del_subregion()
437 - memory_region_set_readonly()
438 - memory_region_set_enabled()
439 - memory_region_set_address()
440 - memory_region_set_alias_offset()
441
442Iterative device migration
443--------------------------
444
445Some devices, such as RAM, Block storage or certain platform devices,
446have large amounts of data that would mean that the CPUs would be
447paused for too long if they were sent in one section. For these
448devices an *iterative* approach is taken.
449
450The iterative devices generally don't use VMState macros
451(although it may be possible in some cases) and instead use
452qemu_put_*/qemu_get_* macros to read/write data to the stream. Specialist
453versions exist for high bandwidth IO.
454
455
456An iterative device must provide:
457
458 - A ``save_setup`` function that initialises the data structures and
459 transmits a first section containing information on the device. In the
460 case of RAM this transmits a list of RAMBlocks and sizes.
461
462 - A ``load_setup`` function that initialises the data structures on the
463 destination.
464
465 - A ``save_live_pending`` function that is called repeatedly and must
466 indicate how much more data the iterative data must save. The core
467 migration code will use this to determine when to pause the CPUs
468 and complete the migration.
469
470 - A ``save_live_iterate`` function (called after ``save_live_pending``
471 when there is significant data still to be sent). It should send
472 a chunk of data until the point that stream bandwidth limits tell it
473 to stop. Each call generates one section.
474
475 - A ``save_live_complete_precopy`` function that must transmit the
476 last section for the device containing any remaining data.
477
478 - A ``load_state`` function used to load sections generated by
479 any of the save functions that generate sections.
480
481 - ``cleanup`` functions for both save and load that are called
482 at the end of migration.
483
484Note that the contents of the sections for iterative migration tend
485to be open-coded by the devices; care should be taken in parsing
486the results and structuring the stream to make them easy to validate.
487
488Device ordering
489---------------
490
491There are cases in which the ordering of device loading matters; for
492example in some systems where a device may assert an interrupt during loading,
493if the interrupt controller is loaded later then it might lose the state.
494
495Some ordering is implicitly provided by the order in which the machine
496definition creates devices, however this is somewhat fragile.
497
498The ``MigrationPriority`` enum provides a means of explicitly enforcing
499ordering. Numerically higher priorities are loaded earlier.
500The priority is set by setting the ``priority`` field of the top level
501``VMStateDescription`` for the device.
502
503Stream structure
504================
505
506The stream tries to be word and endian agnostic, allowing migration between hosts
507of different characteristics running the same VM.
508
509 - Header
510
511 - Magic
512 - Version
513 - VM configuration section
514
515 - Machine type
516 - Target page bits
517 - List of sections
518 Each section contains a device, or one iteration of a device save.
519
520 - section type
521 - section id
522 - ID string (First section of each device)
523 - instance id (First section of each device)
524 - version id (First section of each device)
525 - <device data>
526 - Footer mark
527 - EOF mark
528 - VM Description structure
529 Consisting of a JSON description of the contents for analysis only
530
531The ``device data`` in each section consists of the data produced
532by the code described above. For non-iterative devices they have a single
533section; iterative devices have an initial and last section and a set
534of parts in between.
535Note that there is very little checking by the common code of the integrity
536of the ``device data`` contents, that's up to the devices themselves.
537The ``footer mark`` provides a little bit of protection for the case where
538the receiving side reads more or less data than expected.
539
540The ``ID string`` is normally unique, having been formed from a bus name
541and device address, PCI devices and storage devices hung off PCI controllers
542fit this pattern well. Some devices are fixed single instances (e.g. "pc-ram").
543Others (especially either older devices or system devices which for
544some reason don't have a bus concept) make use of the ``instance id``
545for otherwise identically named devices.
5f9412bb 546
2e3c8f8d
DDAG
547Return path
548-----------
2bfdd1c8 549
edd70806
DDAG
550Only a unidirectional stream is required for normal migration, however a
551``return path`` can be created when bidirectional communication is desired.
552This is primarily used by postcopy, but is also used to return a success
553flag to the source at the end of migration.
2bfdd1c8 554
2e3c8f8d 555``qemu_file_get_return_path(QEMUFile* fwdpath)`` gives the QEMUFile* for the return
2bfdd1c8
DDAG
556path.
557
558 Source side
2e3c8f8d 559
2bfdd1c8
DDAG
560 Forward path - written by migration thread
561 Return path - opened by main thread, read by return-path thread
562
563 Destination side
2e3c8f8d 564
2bfdd1c8
DDAG
565 Forward path - read by main thread
566 Return path - opened by main thread, written by main thread AND postcopy
2e3c8f8d
DDAG
567 thread (protected by rp_mutex)
568
569Postcopy
570========
2bfdd1c8 571
2bfdd1c8
DDAG
572'Postcopy' migration is a way to deal with migrations that refuse to converge
573(or take too long to converge) its plus side is that there is an upper bound on
574the amount of migration traffic and time it takes, the down side is that during
575the postcopy phase, a failure of *either* side or the network connection causes
576the guest to be lost.
577
578In postcopy the destination CPUs are started before all the memory has been
579transferred, and accesses to pages that are yet to be transferred cause
580a fault that's translated by QEMU into a request to the source QEMU.
581
582Postcopy can be combined with precopy (i.e. normal migration) so that if precopy
583doesn't finish in a given time the switch is made to postcopy.
584
2e3c8f8d
DDAG
585Enabling postcopy
586-----------------
2bfdd1c8 587
c2eb7f21
GK
588To enable postcopy, issue this command on the monitor (both source and
589destination) prior to the start of migration:
2bfdd1c8 590
2e3c8f8d 591``migrate_set_capability postcopy-ram on``
2bfdd1c8
DDAG
592
593The normal commands are then used to start a migration, which is still
594started in precopy mode. Issuing:
595
2e3c8f8d 596``migrate_start_postcopy``
2bfdd1c8
DDAG
597
598will now cause the transition from precopy to postcopy.
599It can be issued immediately after migration is started or any
600time later on. Issuing it after the end of a migration is harmless.
601
9ed01779
AP
602Blocktime is a postcopy live migration metric, intended to show how
603long the vCPU was in state of interruptable sleep due to pagefault.
604That metric is calculated both for all vCPUs as overlapped value, and
605separately for each vCPU. These values are calculated on destination
606side. To enable postcopy blocktime calculation, enter following
607command on destination monitor:
608
609``migrate_set_capability postcopy-blocktime on``
610
611Postcopy blocktime can be retrieved by query-migrate qmp command.
612postcopy-blocktime value of qmp command will show overlapped blocking
613time for all vCPU, postcopy-vcpu-blocktime will show list of blocking
614time per vCPU.
615
2e3c8f8d
DDAG
616.. note::
617 During the postcopy phase, the bandwidth limits set using
618 ``migrate_set_speed`` is ignored (to avoid delaying requested pages that
619 the destination is waiting for).
2bfdd1c8 620
2e3c8f8d
DDAG
621Postcopy device transfer
622------------------------
2bfdd1c8
DDAG
623
624Loading of device data may cause the device emulation to access guest RAM
625that may trigger faults that have to be resolved by the source, as such
626the migration stream has to be able to respond with page data *during* the
627device load, and hence the device data has to be read from the stream completely
628before the device load begins to free the stream up. This is achieved by
629'packaging' the device data into a blob that's read in one go.
630
631Source behaviour
2e3c8f8d 632----------------
2bfdd1c8
DDAG
633
634Until postcopy is entered the migration stream is identical to normal
635precopy, except for the addition of a 'postcopy advise' command at
636the beginning, to tell the destination that postcopy might happen.
637When postcopy starts the source sends the page discard data and then
638forms the 'package' containing:
639
2e3c8f8d
DDAG
640 - Command: 'postcopy listen'
641 - The device state
2bfdd1c8 642
2e3c8f8d
DDAG
643 A series of sections, identical to the precopy streams device state stream
644 containing everything except postcopiable devices (i.e. RAM)
645 - Command: 'postcopy run'
646
647The 'package' is sent as the data part of a Command: ``CMD_PACKAGED``, and the
2bfdd1c8
DDAG
648contents are formatted in the same way as the main migration stream.
649
650During postcopy the source scans the list of dirty pages and sends them
651to the destination without being requested (in much the same way as precopy),
652however when a page request is received from the destination, the dirty page
653scanning restarts from the requested location. This causes requested pages
654to be sent quickly, and also causes pages directly after the requested page
655to be sent quickly in the hope that those pages are likely to be used
656by the destination soon.
657
658Destination behaviour
2e3c8f8d 659---------------------
2bfdd1c8
DDAG
660
661Initially the destination looks the same as precopy, with a single thread
662reading the migration stream; the 'postcopy advise' and 'discard' commands
663are processed to change the way RAM is managed, but don't affect the stream
664processing.
665
2e3c8f8d
DDAG
666::
667
668 ------------------------------------------------------------------------------
669 1 2 3 4 5 6 7
670 main -----DISCARD-CMD_PACKAGED ( LISTEN DEVICE DEVICE DEVICE RUN )
671 thread | |
672 | (page request)
673 | \___
674 v \
675 listen thread: --- page -- page -- page -- page -- page --
676
677 a b c
678 ------------------------------------------------------------------------------
679
680- On receipt of ``CMD_PACKAGED`` (1)
681
682 All the data associated with the package - the ( ... ) section in the diagram -
683 is read into memory, and the main thread recurses into qemu_loadvm_state_main
684 to process the contents of the package (2) which contains commands (3,6) and
685 devices (4...)
686
687- On receipt of 'postcopy listen' - 3 -(i.e. the 1st command in the package)
688
689 a new thread (a) is started that takes over servicing the migration stream,
690 while the main thread carries on loading the package. It loads normal
691 background page data (b) but if during a device load a fault happens (5)
692 the returned page (c) is loaded by the listen thread allowing the main
693 threads device load to carry on.
694
695- The last thing in the ``CMD_PACKAGED`` is a 'RUN' command (6)
696
697 letting the destination CPUs start running. At the end of the
698 ``CMD_PACKAGED`` (7) the main thread returns to normal running behaviour and
699 is no longer used by migration, while the listen thread carries on servicing
700 page data until the end of migration.
701
702Postcopy states
703---------------
2bfdd1c8
DDAG
704
705Postcopy moves through a series of states (see postcopy_state) from
706ADVISE->DISCARD->LISTEN->RUNNING->END
707
2e3c8f8d
DDAG
708 - Advise
709
710 Set at the start of migration if postcopy is enabled, even
711 if it hasn't had the start command; here the destination
712 checks that its OS has the support needed for postcopy, and performs
713 setup to ensure the RAM mappings are suitable for later postcopy.
714 The destination will fail early in migration at this point if the
715 required OS support is not present.
716 (Triggered by reception of POSTCOPY_ADVISE command)
717
718 - Discard
719
720 Entered on receipt of the first 'discard' command; prior to
721 the first Discard being performed, hugepages are switched off
722 (using madvise) to ensure that no new huge pages are created
723 during the postcopy phase, and to cause any huge pages that
724 have discards on them to be broken.
725
726 - Listen
727
728 The first command in the package, POSTCOPY_LISTEN, switches
729 the destination state to Listen, and starts a new thread
730 (the 'listen thread') which takes over the job of receiving
731 pages off the migration stream, while the main thread carries
732 on processing the blob. With this thread able to process page
733 reception, the destination now 'sensitises' the RAM to detect
734 any access to missing pages (on Linux using the 'userfault'
735 system).
736
737 - Running
738
739 POSTCOPY_RUN causes the destination to synchronise all
740 state and start the CPUs and IO devices running. The main
741 thread now finishes processing the migration package and
742 now carries on as it would for normal precopy migration
743 (although it can't do the cleanup it would do as it
744 finishes a normal migration).
745
746 - End
747
748 The listen thread can now quit, and perform the cleanup of migration
749 state, the migration is now complete.
750
751Source side page maps
752---------------------
2bfdd1c8
DDAG
753
754The source side keeps two bitmaps during postcopy; 'the migration bitmap'
755and 'unsent map'. The 'migration bitmap' is basically the same as in
756the precopy case, and holds a bit to indicate that page is 'dirty' -
757i.e. needs sending. During the precopy phase this is updated as the CPU
758dirties pages, however during postcopy the CPUs are stopped and nothing
759should dirty anything any more.
760
761The 'unsent map' is used for the transition to postcopy. It is a bitmap that
762has a bit cleared whenever a page is sent to the destination, however during
763the transition to postcopy mode it is combined with the migration bitmap
764to form a set of pages that:
2e3c8f8d 765
2bfdd1c8
DDAG
766 a) Have been sent but then redirtied (which must be discarded)
767 b) Have not yet been sent - which also must be discarded to cause any
768 transparent huge pages built during precopy to be broken.
769
770Note that the contents of the unsentmap are sacrificed during the calculation
771of the discard set and thus aren't valid once in postcopy. The dirtymap
772is still valid and is used to ensure that no page is sent more than once. Any
773request for a page that has already been sent is ignored. Duplicate requests
774such as this can happen as a page is sent at about the same time the
775destination accesses it.
776
2e3c8f8d
DDAG
777Postcopy with hugepages
778-----------------------
0c1f4036
DDAG
779
780Postcopy now works with hugetlbfs backed memory:
2e3c8f8d 781
0c1f4036
DDAG
782 a) The linux kernel on the destination must support userfault on hugepages.
783 b) The huge-page configuration on the source and destination VMs must be
784 identical; i.e. RAMBlocks on both sides must use the same page size.
2e3c8f8d 785 c) Note that ``-mem-path /dev/hugepages`` will fall back to allocating normal
0c1f4036 786 RAM if it doesn't have enough hugepages, triggering (b) to fail.
2e3c8f8d 787 Using ``-mem-prealloc`` enforces the allocation using hugepages.
0c1f4036
DDAG
788 d) Care should be taken with the size of hugepage used; postcopy with 2MB
789 hugepages works well, however 1GB hugepages are likely to be problematic
790 since it takes ~1 second to transfer a 1GB hugepage across a 10Gbps link,
791 and until the full page is transferred the destination thread is blocked.
1dc61e7b
DDAG
792
793Postcopy with shared memory
794---------------------------
795
796Postcopy migration with shared memory needs explicit support from the other
797processes that share memory and from QEMU. There are restrictions on the type of
798memory that userfault can support shared.
799
800The Linux kernel userfault support works on `/dev/shm` memory and on `hugetlbfs`
801(although the kernel doesn't provide an equivalent to `madvise(MADV_DONTNEED)`
802for hugetlbfs which may be a problem in some configurations).
803
804The vhost-user code in QEMU supports clients that have Postcopy support,
805and the `vhost-user-bridge` (in `tests/`) and the DPDK package have changes
806to support postcopy.
807
808The client needs to open a userfaultfd and register the areas
809of memory that it maps with userfault. The client must then pass the
810userfaultfd back to QEMU together with a mapping table that allows
811fault addresses in the clients address space to be converted back to
812RAMBlock/offsets. The client's userfaultfd is added to the postcopy
813fault-thread and page requests are made on behalf of the client by QEMU.
814QEMU performs 'wake' operations on the client's userfaultfd to allow it
815to continue after a page has arrived.
816
817.. note::
818 There are two future improvements that would be nice:
819 a) Some way to make QEMU ignorant of the addresses in the clients
820 address space
821 b) Avoiding the need for QEMU to perform ufd-wake calls after the
822 pages have arrived
823
824Retro-fitting postcopy to existing clients is possible:
825 a) A mechanism is needed for the registration with userfault as above,
826 and the registration needs to be coordinated with the phases of
827 postcopy. In vhost-user extra messages are added to the existing
828 control channel.
829 b) Any thread that can block due to guest memory accesses must be
830 identified and the implication understood; for example if the
831 guest memory access is made while holding a lock then all other
832 threads waiting for that lock will also be blocked.
edd70806
DDAG
833
834Firmware
835========
836
837Migration migrates the copies of RAM and ROM, and thus when running
838on the destination it includes the firmware from the source. Even after
839resetting a VM, the old firmware is used. Only once QEMU has been restarted
840is the new firmware in use.
841
842- Changes in firmware size can cause changes in the required RAMBlock size
843 to hold the firmware and thus migration can fail. In practice it's best
844 to pad firmware images to convenient powers of 2 with plenty of space
845 for growth.
846
847- Care should be taken with device emulation code so that newer
848 emulation code can work with older firmware to allow forward migration.
849
850- Care should be taken with newer firmware so that backward migration
851 to older systems with older device emulation code will work.
852
853In some cases it may be best to tie specific firmware versions to specific
854versioned machine types to cut down on the combinations that will need
855support. This is also useful when newer versions of firmware outgrow
856the padding.
857