VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR3/SSM.cpp@ 41494

Last change on this file since 41494 was 39402, checked in by vboxsync, 13 years ago

VMM: don't use generic IPE status codes, use specific ones. Part 1.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 309.8 KB
Line 
1/* $Id: SSM.cpp 39402 2011-11-23 16:25:04Z vboxsync $ */
2/** @file
3 * SSM - Saved State Manager.
4 */
5
6/*
7 * Copyright (C) 2006-2010 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18
19/** @page pg_ssm SSM - The Saved State Manager
20 *
21 * The Saved State Manager (SSM) implements facilities for saving and loading a
22 * VM state in a structural manner using callbacks for named data units.
23 *
24 * At init time each of the VMM components, Devices, Drivers and one or two
25 * other things will register data units which they need to save and restore.
26 * Each unit have a unique name (ascii), instance number, and a set of callbacks
27 * associated with it. The name will be used to identify the unit during
28 * restore. The callbacks are for the two operations, save and restore. There
29 * are three callbacks for each of the two - a prepare, a execute and a complete
30 * - giving each component ample opportunity to perform actions both before and
31 * afterwards.
32 *
33 * The SSM provides a number of APIs for encoding and decoding the data: @see
34 * grp_ssm
35 *
36 *
37 *
38 * @section sec_ssm_live_snapshots Live Snapshots
39 *
40 * The live snapshots feature (LS) is similar to teleportation (TP) and was a
41 * natural first step when implementing TP. The main differences between LS and
42 * TP are that after a live snapshot we will have a saved state file, disk image
43 * snapshots, and the VM will still be running.
44 *
45 * Compared to normal saved stated and snapshots, the difference is in that the
46 * VM is running while we do most of the saving. Prior to LS, there was only
47 * one round of callbacks during saving and the VM was paused during it. With
48 * LS there are 1 or more passes while the VM is still running and a final one
49 * after it has been paused. The runtime passes are executed on a dedicated
50 * thread running at at the same priority as the EMTs so that the saving doesn't
51 * starve or lose in scheduling questions (note: not implemented yet). The final
52 * pass is done on EMT(0).
53 *
54 * There are a couple of common reasons why LS and TP will fail:
55 * - Memory configuration changed (PCI memory mappings).
56 * - Takes too long (TP) / Too much output (LS).
57 *
58 *
59 * The live saving sequence is something like this:
60 *
61 * -# SSMR3LiveSave is called on EMT0. It returns a saved state
62 * handle.
63 * -# SSMR3LiveDoStep1 is called on a non-EMT. This will save the major
64 * parts of the state while the VM may still be running.
65 * -# The VM is suspended.
66 * -# SSMR3LiveDoStep2 is called on EMT0 to save the remainder of the state
67 * in the normal way.
68 * -# The client does any necessary reconfiguration of harddisks and
69 * similar.
70 * -# SSMR3LiveDone is called on EMT0 to close the handle.
71 * -# The VM is resumed or powered off and destroyed.
72 *
73 *
74 * @section sec_ssm_teleportation Teleportation
75 *
76 * As mentioned in the previous section, the main differences between this and
77 * live snapshots are in where the saved state is written and what state the
78 * local VM is in afterwards - at least from the VMM point of view. The
79 * necessary administrative work - establishing the connection to the remote
80 * machine, cloning the VM config on it and doing lowlevel saved state data
81 * transfer - is taken care of by layer above the VMM (i.e. Main).
82 *
83 * The SSM data format was made streamable for the purpose of teleportation
84 * (v1.2 was the last non-streamable version).
85 *
86 *
87 * @section sec_ssm_format Saved State Format
88 *
89 * The stream format starts with a header (SSMFILEHDR) that indicates the
90 * version and such things, it is followed by zero or more saved state units
91 * (name + instance + pass), and the stream concludes with a footer
92 * (SSMFILEFTR) that contains unit counts and optionally a checksum for the
93 * entire file. (In version 1.2 and earlier, the checksum was in the header and
94 * there was no footer. This meant that the header was updated after the entire
95 * file was written.)
96 *
97 * The saved state units each starts with a variable sized header
98 * (SSMFILEUNITHDRV2) that contains the name, instance and pass. The data
99 * follows the header and is encoded as records with a 2-8 byte record header
100 * indicating the type, flags and size. The first byte in the record header
101 * indicates the type and flags:
102 *
103 * - bits 0..3: Record type:
104 * - type 0: Invalid.
105 * - type 1: Terminator with CRC-32 and unit size.
106 * - type 2: Raw data record.
107 * - type 3: Raw data compressed by LZF. The data is prefixed by a 8-bit
108 * field containing the length of the uncompressed data given in
109 * 1KB units.
110 * - type 4: Zero data. The record header is followed by a 8-bit field
111 * counting the length of the zero data given in 1KB units.
112 * - type 5: Named data - length prefixed name followed by the data. This
113 * type is not implemented yet as we're missing the API part, so
114 * the type assignment is tentative.
115 * - types 6 thru 15 are current undefined.
116 * - bit 4: Important (set), can be skipped (clear).
117 * - bit 5: Undefined flag, must be zero.
118 * - bit 6: Undefined flag, must be zero.
119 * - bit 7: "magic" bit, always set.
120 *
121 * Record header byte 2 (optionally thru 7) is the size of the following data
122 * encoded in UTF-8 style. To make buffering simpler and more efficient during
123 * the save operation, the strict checks enforcing optimal encoding has been
124 * relaxed for the 2 and 3 byte encodings.
125 *
126 * (In version 1.2 and earlier the unit data was compressed and not record
127 * based. The unit header contained the compressed size of the data, i.e. it
128 * needed updating after the data was written.)
129 *
130 *
131 * @section sec_ssm_future Future Changes
132 *
133 * There are plans to extend SSM to make it easier to be both backwards and
134 * (somewhat) forwards compatible. One of the new features will be being able
135 * to classify units and data items as unimportant (added to the format in
136 * v2.0). Another suggested feature is naming data items (also added to the
137 * format in v2.0), perhaps by extending the SSMR3PutStruct API. Both features
138 * will require API changes, the naming may possibly require both buffering of
139 * the stream as well as some helper managing them.
140 */
141
142
143/*******************************************************************************
144* Header Files *
145*******************************************************************************/
146#define LOG_GROUP LOG_GROUP_SSM
147#include <VBox/vmm/ssm.h>
148#include <VBox/vmm/dbgf.h>
149#include <VBox/vmm/mm.h>
150#include "SSMInternal.h"
151#include <VBox/vmm/vm.h>
152#include <VBox/err.h>
153#include <VBox/log.h>
154#include <VBox/version.h>
155
156#include <iprt/asm.h>
157#include <iprt/assert.h>
158#include <iprt/crc.h>
159#include <iprt/file.h>
160#include <iprt/mem.h>
161#include <iprt/param.h>
162#include <iprt/thread.h>
163#include <iprt/semaphore.h>
164#include <iprt/string.h>
165#include <iprt/uuid.h>
166#include <iprt/zip.h>
167
168
169/*******************************************************************************
170* Defined Constants And Macros *
171*******************************************************************************/
172/** The max length of a unit name. */
173#define SSM_MAX_NAME_SIZE 48
174
175/** Saved state file magic base string. */
176#define SSMFILEHDR_MAGIC_BASE "\177VirtualBox SavedState "
177/** Saved state file magic indicating version 1.x. */
178#define SSMFILEHDR_MAGIC_V1_X "\177VirtualBox SavedState V1."
179/** Saved state file v1.1 magic. */
180#define SSMFILEHDR_MAGIC_V1_1 "\177VirtualBox SavedState V1.1\n"
181/** Saved state file v1.2 magic. */
182#define SSMFILEHDR_MAGIC_V1_2 "\177VirtualBox SavedState V1.2\n\0\0\0"
183/** Saved state file v2.0 magic. */
184#define SSMFILEHDR_MAGIC_V2_0 "\177VirtualBox SavedState V2.0\n\0\0\0"
185
186/** @name SSMFILEHDR::fFlags
187 * @{ */
188/** The stream is checksummed up to the footer using CRC-32. */
189#define SSMFILEHDR_FLAGS_STREAM_CRC32 RT_BIT_32(0)
190/** Indicates that the file was produced by a live save. */
191#define SSMFILEHDR_FLAGS_STREAM_LIVE_SAVE RT_BIT_32(1)
192/** @} */
193
194/** The directory magic. */
195#define SSMFILEDIR_MAGIC "\nDir\n\0\0"
196
197/** Saved state file v2.0 magic. */
198#define SSMFILEFTR_MAGIC "\nFooter"
199
200/** Data unit magic. */
201#define SSMFILEUNITHDR_MAGIC "\nUnit\n\0"
202/** Data end marker magic. */
203#define SSMFILEUNITHDR_END "\nTheEnd"
204
205
206/** @name Record Types (data unit)
207 * @{ */
208/** The record type mask. */
209#define SSM_REC_TYPE_MASK UINT8_C(0x0f)
210/** Invalid record. */
211#define SSM_REC_TYPE_INVALID 0
212/** Normal termination record, see SSMRECTERM. */
213#define SSM_REC_TYPE_TERM 1
214/** Raw data. The data follows the size field without further ado. */
215#define SSM_REC_TYPE_RAW 2
216/** Raw data compressed by LZF.
217 * The record header is followed by a 8-bit field containing the size of the
218 * uncompressed data in 1KB units. The compressed data is after it. */
219#define SSM_REC_TYPE_RAW_LZF 3
220/** Raw zero data.
221 * The record header is followed by a 8-bit field containing the size of the
222 * zero data in 1KB units. */
223#define SSM_REC_TYPE_RAW_ZERO 4
224/** Named data items.
225 * A length prefix zero terminated string (i.e. max 255) followed by the data. */
226#define SSM_REC_TYPE_NAMED 5
227/** Macro for validating the record type.
228 * This can be used with the flags+type byte, no need to mask out the type first. */
229#define SSM_REC_TYPE_IS_VALID(u8Type) ( ((u8Type) & SSM_REC_TYPE_MASK) > SSM_REC_TYPE_INVALID \
230 && ((u8Type) & SSM_REC_TYPE_MASK) <= SSM_REC_TYPE_NAMED )
231/** @} */
232
233/** The flag mask. */
234#define SSM_REC_FLAGS_MASK UINT8_C(0xf0)
235/** The record is important if this flag is set, if clear it can be omitted. */
236#define SSM_REC_FLAGS_IMPORTANT UINT8_C(0x10)
237/** This flag is always set. */
238#define SSM_REC_FLAGS_FIXED UINT8_C(0x80)
239/** Macro for validating the flags.
240 * No need to mask the flags out of the flags+type byte before invoking this macro. */
241#define SSM_REC_FLAGS_ARE_VALID(fFlags) ( ((fFlags) & UINT8_C(0xe0)) == UINT8_C(0x80) )
242
243/** Macro for validating the type and flags byte in a data record. */
244#define SSM_REC_ARE_TYPE_AND_FLAGS_VALID(u8) ( SSM_REC_FLAGS_ARE_VALID(u8) && SSM_REC_TYPE_IS_VALID(u8) )
245
246/** @name SSMRECTERM::fFlags
247 * @{ */
248/** There is a CRC-32 value for the stream. */
249#define SSMRECTERM_FLAGS_CRC32 UINT16_C(0x0001)
250/** @} */
251
252/** Start structure magic. (Isaac Asimov) */
253#define SSMR3STRUCT_BEGIN UINT32_C(0x19200102)
254/** End structure magic. (Isaac Asimov) */
255#define SSMR3STRUCT_END UINT32_C(0x19920406)
256
257
258/** Number of bytes to log in Log2 and Log4 statements. */
259#define SSM_LOG_BYTES 16
260
261/** SSMHANDLE::fCancelled value indicating that the operation has been
262 * cancelled. */
263#define SSMHANDLE_CANCELLED UINT32_C(0xdeadbeef)
264/** SSMHANDLE::fCancelled value indicating no cancellation. */
265#define SSMHANDLE_OK UINT32_C(0x77777777)
266
267
268/** Macro for checking the u32CRC field of a structure.
269 * The Msg can assume there are u32ActualCRC and u32CRC in the context. */
270#define SSM_CHECK_CRC32_RET(p, cb, Msg) \
271 do \
272 { \
273 uint32_t u32CRC = (p)->u32CRC; \
274 (p)->u32CRC = 0; \
275 uint32_t u32ActualCRC = RTCrc32((p), (cb)); \
276 (p)->u32CRC = u32CRC; \
277 AssertLogRelMsgReturn(u32ActualCRC == u32CRC, Msg, VERR_SSM_INTEGRITY_CRC); \
278 } while (0)
279
280/** The number of bytes to compress is one block.
281 * Must be a multiple of 1KB. */
282#define SSM_ZIP_BLOCK_SIZE _4K
283AssertCompile(SSM_ZIP_BLOCK_SIZE / _1K * _1K == SSM_ZIP_BLOCK_SIZE);
284
285
286/**
287 * Asserts that the handle is writable and returns with VERR_SSM_INVALID_STATE
288 * if it isn't.
289 */
290#define SSM_ASSERT_WRITEABLE_RET(pSSM) \
291 AssertMsgReturn( pSSM->enmOp == SSMSTATE_SAVE_EXEC \
292 || pSSM->enmOp == SSMSTATE_LIVE_EXEC,\
293 ("Invalid state %d\n", pSSM->enmOp), VERR_SSM_INVALID_STATE);
294
295/**
296 * Asserts that the handle is readable and returns with VERR_SSM_INVALID_STATE
297 * if it isn't.
298 */
299#define SSM_ASSERT_READABLE_RET(pSSM) \
300 AssertMsgReturn( pSSM->enmOp == SSMSTATE_LOAD_EXEC \
301 || pSSM->enmOp == SSMSTATE_OPEN_READ,\
302 ("Invalid state %d\n", pSSM->enmOp), VERR_SSM_INVALID_STATE);
303
304/** Checks for cancellation and returns if pending.
305 * Sets SSMHANDLE::rc to VERR_SSM_CANCELLED (if it still indicates success) and
306 * then returns SSMHANDLE::rc. (Debug logging only.) */
307#define SSM_CHECK_CANCELLED_RET(pSSM) \
308 do \
309 { \
310 if (RT_UNLIKELY(ASMAtomicUoReadU32(&(pSSM)->fCancelled) == SSMHANDLE_CANCELLED)) \
311 { \
312 LogFlow(("%Rfn: Cancelled -> VERR_SSM_CANCELLED\n", __PRETTY_FUNCTION__)); \
313 if (RT_SUCCESS((pSSM)->rc)) \
314 (pSSM)->rc = VERR_SSM_CANCELLED; \
315 return (pSSM)->rc; \
316 } \
317 } while (0)
318
319/**
320 * Asserts that the handle is somewhat valid. No returns as this is just a
321 * simple safeguard for catching bad API calls. */
322#define SSM_ASSERT_VALID_HANDLE(pSSM) \
323 do \
324 { \
325 AssertPtr(pSSM); \
326 Assert(pSSM->enmOp > SSMSTATE_INVALID && pSSM->enmOp < SSMSTATE_END); \
327 } while (0)
328
329
330/** @def SSM_HOST_IS_MSC_32
331 * Set to 1 if the host is 32-bit MSC, otherwise set to 0.
332 * */
333#if defined(_MSC_VER) && HC_ARCH_BITS == 32
334# define SSM_HOST_IS_MSC_32 1
335#else
336# define SSM_HOST_IS_MSC_32 0
337#endif
338
339
340
341/*******************************************************************************
342* Structures and Typedefs *
343*******************************************************************************/
344/** SSM state. */
345typedef enum SSMSTATE
346{
347 SSMSTATE_INVALID = 0,
348 SSMSTATE_LIVE_PREP,
349 SSMSTATE_LIVE_STEP1,
350 SSMSTATE_LIVE_EXEC,
351 SSMSTATE_LIVE_VOTE,
352 SSMSTATE_LIVE_STEP2,
353 SSMSTATE_SAVE_PREP,
354 SSMSTATE_SAVE_EXEC,
355 SSMSTATE_SAVE_DONE,
356 SSMSTATE_LOAD_PREP,
357 SSMSTATE_LOAD_EXEC,
358 SSMSTATE_LOAD_DONE,
359 SSMSTATE_OPEN_READ,
360 SSMSTATE_END
361} SSMSTATE;
362
363
364/** Pointer to a SSM stream buffer. */
365typedef struct SSMSTRMBUF *PSSMSTRMBUF;
366/**
367 * A SSM stream buffer.
368 */
369typedef struct SSMSTRMBUF
370{
371 /** The buffer data. */
372 uint8_t abData[_64K];
373
374 /** The stream position of this buffer. */
375 uint64_t offStream;
376 /** The amount of buffered data. */
377 uint32_t cb;
378 /** End of stream indicator (for read streams only). */
379 bool fEndOfStream;
380 /** The nano timestamp set by ssmR3StrmGetFreeBuf. */
381 uint64_t NanoTS;
382 /** Pointer to the next buffer in the chain. */
383 PSSMSTRMBUF volatile pNext;
384} SSMSTRMBUF;
385
386/**
387 * SSM stream.
388 *
389 * This is a typical producer / consumer setup with a dedicated I/O thread and
390 * fixed number of buffers for read ahead and write back.
391 */
392typedef struct SSMSTRM
393{
394 /** The stream method table. */
395 PCSSMSTRMOPS pOps;
396 /** The user argument for the stream methods.
397 * For file based streams, this is the file handle and not a pointer. */
398 void *pvUser;
399
400 /** Write (set) or read (clear) stream. */
401 bool fWrite;
402 /** Termination indicator. */
403 bool volatile fTerminating;
404 /** Indicates whether it is necessary to seek before the next buffer is
405 * read from the stream. This is used to avoid a seek in ssmR3StrmPeekAt. */
406 bool fNeedSeek;
407 /** Stream error status. */
408 int32_t volatile rc;
409 /** The handle of the I/O thread. This is set to nil when not active. */
410 RTTHREAD hIoThread;
411 /** Where to seek to. */
412 uint64_t offNeedSeekTo;
413
414 /** The head of the consumer queue.
415 * For save the consumer is the I/O thread. For load the I/O thread is the
416 * producer. */
417 PSSMSTRMBUF volatile pHead;
418 /** Chain of free buffers.
419 * The consumer/producer roles are the inverse of pHead. */
420 PSSMSTRMBUF volatile pFree;
421 /** Event that's signalled when pHead is updated. */
422 RTSEMEVENT hEvtHead;
423 /** Event that's signalled when pFree is updated. */
424 RTSEMEVENT hEvtFree;
425
426 /** List of pending buffers that has been dequeued from pHead and reversed. */
427 PSSMSTRMBUF pPending;
428 /** Pointer to the current buffer. */
429 PSSMSTRMBUF pCur;
430 /** The stream offset of the current buffer. */
431 uint64_t offCurStream;
432 /** The current buffer offset. */
433 uint32_t off;
434 /** Whether we're checksumming reads/writes. */
435 bool fChecksummed;
436 /** The stream CRC if fChecksummed is set. */
437 uint32_t u32StreamCRC;
438 /** How far into the buffer u32StreamCRC is up-to-date.
439 * This may lag behind off as it's desirable to checksum as large blocks as
440 * possible. */
441 uint32_t offStreamCRC;
442} SSMSTRM;
443/** Pointer to a SSM stream. */
444typedef SSMSTRM *PSSMSTRM;
445
446
447/**
448 * Handle structure.
449 */
450typedef struct SSMHANDLE
451{
452 /** Stream/buffer manager. */
453 SSMSTRM Strm;
454
455 /** The VM handle. */
456 PVM pVM;
457 /** The current operation. */
458 SSMSTATE enmOp;
459 /** What to do after save completes. (move the enum) */
460 SSMAFTER enmAfter;
461 /** Flag indicating that the operation has been cancelled. */
462 uint32_t volatile fCancelled;
463 /** The current rc of the save operation. */
464 int32_t rc;
465 /** Number of compressed bytes left in the current data unit (V1). */
466 uint64_t cbUnitLeftV1;
467 /** The current uncompressed offset into the data unit. */
468 uint64_t offUnit;
469 /** Indicates that this is a live save or restore operation. */
470 bool fLiveSave;
471
472 /** Pointer to the progress callback function. */
473 PFNVMPROGRESS pfnProgress;
474 /** User specified argument to the callback function. */
475 void *pvUser;
476 /** Next completion percentage. (corresponds to offEstProgress) */
477 unsigned uPercent;
478 /** The position of the next progress callback in the estimated file. */
479 uint64_t offEstProgress;
480 /** The estimated total byte count.
481 * (Only valid after the prep.) */
482 uint64_t cbEstTotal;
483 /** Current position in the estimated file. */
484 uint64_t offEst;
485 /** End of current unit in the estimated file. */
486 uint64_t offEstUnitEnd;
487 /** The amount of % we reserve for the 'live' stage */
488 unsigned uPercentLive;
489 /** The amount of % we reserve for the 'prepare' phase */
490 unsigned uPercentPrepare;
491 /** The amount of % we reserve for the 'done' stage */
492 unsigned uPercentDone;
493 /** The lowest value reported via SSMR3HandleReportLivePercent during one
494 * vote run. */
495 unsigned uReportedLivePercent;
496 /** The filename, NULL if remote stream. */
497 const char *pszFilename;
498
499 union
500 {
501 /** Write data. */
502 struct
503 {
504 /** Offset into the databuffer. */
505 uint32_t offDataBuffer;
506 /** Space for the record header. */
507 uint8_t abRecHdr[1+7];
508 /** Data buffer. */
509 uint8_t abDataBuffer[4096];
510 /** The maximum downtime given as milliseconds. */
511 uint32_t cMsMaxDowntime;
512 } Write;
513
514 /** Read data. */
515 struct
516 {
517 /** V1: The decompressor of the current data unit. */
518 PRTZIPDECOMP pZipDecompV1;
519 /** The major format version number. */
520 uint32_t uFmtVerMajor;
521 /** The minor format version number. */
522 uint32_t uFmtVerMinor;
523
524 /** V2: Unread bytes in the current record. */
525 uint32_t cbRecLeft;
526 /** V2: Bytes in the data buffer. */
527 uint32_t cbDataBuffer;
528 /** V2: Current buffer position. */
529 uint32_t offDataBuffer;
530 /** V2: End of data indicator. */
531 bool fEndOfData;
532 /** V2: The type and flags byte fo the current record. */
533 uint8_t u8TypeAndFlags;
534
535 /** @name Context info for SSMR3SetLoadError.
536 * @{ */
537 /** Pointer to the header for the current unit. */
538 PSSMUNIT pCurUnit;
539 /** The version of the current unit if in the load exec stage. */
540 uint32_t uCurUnitVer;
541 /** The pass number of the current unit if in the load exec stage. */
542 uint32_t uCurUnitPass;
543 /** Whether SSMR3SetLoadError[V] has been called.
544 * @note Using ASMAtomicXchgBool because I'm very lazy. */
545 bool volatile fHaveSetError;
546 /** @} */
547
548 /** RTGCPHYS size in bytes. (Only applicable when loading/reading.) */
549 unsigned cbGCPhys;
550 /** RTGCPTR size in bytes. (Only applicable when loading/reading.) */
551 unsigned cbGCPtr;
552 /** Whether cbGCPtr is fixed or settable. */
553 bool fFixedGCPtrSize;
554
555 /** 32-bit MSC saved this? */
556 bool fIsHostMsc32;
557 /** "Host OS" dot "architecture", picked up from recent SSM data units. */
558 char szHostOSAndArch[32];
559
560 /** @name Header info (set by ssmR3ValidateFile)
561 * @{ */
562 /** The size of the file header. */
563 uint32_t cbFileHdr;
564 /** The major version number. */
565 uint16_t u16VerMajor;
566 /** The minor version number. */
567 uint16_t u16VerMinor;
568 /** The build number. */
569 uint32_t u32VerBuild;
570 /** The SVN revision. */
571 uint32_t u32SvnRev;
572 /** 32 or 64 depending on the host. */
573 uint8_t cHostBits;
574 /** Whether the stream is checksummed (SSMFILEHDR_FLAGS_STREAM_CRC32). */
575 bool fStreamCrc32;
576 /** The CRC of the loaded file. */
577 uint32_t u32LoadCRC;
578 /** The size of the load file. */
579 uint64_t cbLoadFile;
580 /** @} */
581
582 /** V2: Data buffer.
583 * @remarks Be extremely careful when changing the size of this buffer! */
584 uint8_t abDataBuffer[4096];
585
586 /** V2: Decompression buffer for when we cannot use the stream buffer. */
587 uint8_t abComprBuffer[4096];
588 } Read;
589 } u;
590} SSMHANDLE;
591
592
593/**
594 * Header of the saved state file.
595 *
596 * Added in r5xxxx on 2009-07-2?, VirtualBox v3.0.51.
597 */
598typedef struct SSMFILEHDR
599{
600 /** Magic string which identifies this file as a version of VBox saved state
601 * file format (SSMFILEHDR_MAGIC_V2_0). */
602 char szMagic[32];
603 /** The major version number. */
604 uint16_t u16VerMajor;
605 /** The minor version number. */
606 uint16_t u16VerMinor;
607 /** The build number. */
608 uint32_t u32VerBuild;
609 /** The SVN revision. */
610 uint32_t u32SvnRev;
611 /** 32 or 64 depending on the host. */
612 uint8_t cHostBits;
613 /** The size of RTGCPHYS. */
614 uint8_t cbGCPhys;
615 /** The size of RTGCPTR. */
616 uint8_t cbGCPtr;
617 /** Reserved header space - must be zero. */
618 uint8_t u8Reserved;
619 /** The number of units that (may) have stored data in the file. */
620 uint32_t cUnits;
621 /** Flags, see SSMFILEHDR_FLAGS_XXX. */
622 uint32_t fFlags;
623 /** The maximum size of decompressed data. */
624 uint32_t cbMaxDecompr;
625 /** The checksum of this header.
626 * This field is set to zero when calculating the checksum. */
627 uint32_t u32CRC;
628} SSMFILEHDR;
629AssertCompileSize(SSMFILEHDR, 64);
630AssertCompileMemberOffset(SSMFILEHDR, u32CRC, 60);
631AssertCompileMemberSize(SSMFILEHDR, szMagic, sizeof(SSMFILEHDR_MAGIC_V2_0));
632/** Pointer to a saved state file header. */
633typedef SSMFILEHDR *PSSMFILEHDR;
634/** Pointer to a const saved state file header. */
635typedef SSMFILEHDR const *PCSSMFILEHDR;
636
637
638/**
639 * Header of the saved state file.
640 *
641 * Added in r40980 on 2008-12-15, VirtualBox v2.0.51.
642 *
643 * @remarks This is a superset of SSMFILEHDRV11.
644 */
645typedef struct SSMFILEHDRV12
646{
647 /** Magic string which identifies this file as a version of VBox saved state
648 * file format (SSMFILEHDR_MAGIC_V1_2). */
649 char achMagic[32];
650 /** The size of this file. Used to check
651 * whether the save completed and that things are fine otherwise. */
652 uint64_t cbFile;
653 /** File checksum. The actual calculation skips past the u32CRC field. */
654 uint32_t u32CRC;
655 /** Padding. */
656 uint32_t u32Reserved;
657 /** The machine UUID. (Ignored if NIL.) */
658 RTUUID MachineUuid;
659
660 /** The major version number. */
661 uint16_t u16VerMajor;
662 /** The minor version number. */
663 uint16_t u16VerMinor;
664 /** The build number. */
665 uint32_t u32VerBuild;
666 /** The SVN revision. */
667 uint32_t u32SvnRev;
668
669 /** 32 or 64 depending on the host. */
670 uint8_t cHostBits;
671 /** The size of RTGCPHYS. */
672 uint8_t cbGCPhys;
673 /** The size of RTGCPTR. */
674 uint8_t cbGCPtr;
675 /** Padding. */
676 uint8_t au8Reserved;
677} SSMFILEHDRV12;
678AssertCompileSize(SSMFILEHDRV12, 64+16);
679AssertCompileMemberOffset(SSMFILEHDRV12, u32CRC, 40);
680AssertCompileMemberSize(SSMFILEHDRV12, achMagic, sizeof(SSMFILEHDR_MAGIC_V1_2));
681/** Pointer to a saved state file header. */
682typedef SSMFILEHDRV12 *PSSMFILEHDRV12;
683
684
685/**
686 * Header of the saved state file, version 1.1.
687 *
688 * Added in r23677 on 2007-08-17, VirtualBox v1.4.1.
689 */
690typedef struct SSMFILEHDRV11
691{
692 /** Magic string which identifies this file as a version of VBox saved state
693 * file format (SSMFILEHDR_MAGIC_V1_1). */
694 char achMagic[32];
695 /** The size of this file. Used to check
696 * whether the save completed and that things are fine otherwise. */
697 uint64_t cbFile;
698 /** File checksum. The actual calculation skips past the u32CRC field. */
699 uint32_t u32CRC;
700 /** Padding. */
701 uint32_t u32Reserved;
702 /** The machine UUID. (Ignored if NIL.) */
703 RTUUID MachineUuid;
704} SSMFILEHDRV11;
705AssertCompileSize(SSMFILEHDRV11, 64);
706AssertCompileMemberOffset(SSMFILEHDRV11, u32CRC, 40);
707/** Pointer to a saved state file header. */
708typedef SSMFILEHDRV11 *PSSMFILEHDRV11;
709
710
711/**
712 * Data unit header.
713 */
714typedef struct SSMFILEUNITHDRV2
715{
716 /** Magic (SSMFILEUNITHDR_MAGIC or SSMFILEUNITHDR_END). */
717 char szMagic[8];
718 /** The offset in the saved state stream of the start of this unit.
719 * This is mainly intended for sanity checking. */
720 uint64_t offStream;
721 /** The CRC-in-progress value this unit starts at. */
722 uint32_t u32CurStreamCRC;
723 /** The checksum of this structure, including the whole name.
724 * Calculated with this field set to zero. */
725 uint32_t u32CRC;
726 /** Data version. */
727 uint32_t u32Version;
728 /** Instance number. */
729 uint32_t u32Instance;
730 /** Data pass number. */
731 uint32_t u32Pass;
732 /** Flags reserved for future extensions. Must be zero. */
733 uint32_t fFlags;
734 /** Size of the data unit name including the terminator. (bytes) */
735 uint32_t cbName;
736 /** Data unit name, variable size. */
737 char szName[SSM_MAX_NAME_SIZE];
738} SSMFILEUNITHDRV2;
739AssertCompileMemberOffset(SSMFILEUNITHDRV2, szName, 44);
740AssertCompileMemberSize(SSMFILEUNITHDRV2, szMagic, sizeof(SSMFILEUNITHDR_MAGIC));
741AssertCompileMemberSize(SSMFILEUNITHDRV2, szMagic, sizeof(SSMFILEUNITHDR_END));
742/** Pointer to SSMFILEUNITHDRV2. */
743typedef SSMFILEUNITHDRV2 *PSSMFILEUNITHDRV2;
744
745
746/**
747 * Data unit header.
748 *
749 * This is used by v1.0, v1.1 and v1.2 of the format.
750 */
751typedef struct SSMFILEUNITHDRV1
752{
753 /** Magic (SSMFILEUNITHDR_MAGIC or SSMFILEUNITHDR_END). */
754 char achMagic[8];
755 /** Number of bytes in this data unit including the header. */
756 uint64_t cbUnit;
757 /** Data version. */
758 uint32_t u32Version;
759 /** Instance number. */
760 uint32_t u32Instance;
761 /** Size of the data unit name including the terminator. (bytes) */
762 uint32_t cchName;
763 /** Data unit name. */
764 char szName[1];
765} SSMFILEUNITHDRV1;
766/** Pointer to SSMFILEUNITHDR. */
767typedef SSMFILEUNITHDRV1 *PSSMFILEUNITHDRV1;
768
769
770/**
771 * Termination data record.
772 */
773typedef struct SSMRECTERM
774{
775 uint8_t u8TypeAndFlags;
776 /** The record size (sizeof(SSMRECTERM) - 2). */
777 uint8_t cbRec;
778 /** Flags, see SSMRECTERM_FLAGS_CRC32. */
779 uint16_t fFlags;
780 /** The checksum of the stream up to fFlags (exclusive). */
781 uint32_t u32StreamCRC;
782 /** The length of this data unit in bytes (including this record). */
783 uint64_t cbUnit;
784} SSMRECTERM;
785AssertCompileSize(SSMRECTERM, 16);
786AssertCompileMemberAlignment(SSMRECTERM, cbUnit, 8);
787/** Pointer to a termination record. */
788typedef SSMRECTERM *PSSMRECTERM;
789/** Pointer to a const termination record. */
790typedef SSMRECTERM const *PCSSMRECTERM;
791
792
793/**
794 * Directory entry.
795 */
796typedef struct SSMFILEDIRENTRY
797{
798 /** The offset of the data unit. */
799 uint64_t off;
800 /** The instance number. */
801 uint32_t u32Instance;
802 /** The CRC-32 of the name excluding the terminator. (lazy bird) */
803 uint32_t u32NameCRC;
804} SSMFILEDIRENTRY;
805AssertCompileSize(SSMFILEDIRENTRY, 16);
806/** Pointer to a directory entry. */
807typedef SSMFILEDIRENTRY *PSSMFILEDIRENTRY;
808/** Pointer to a const directory entry. */
809typedef SSMFILEDIRENTRY const *PCSSMFILEDIRENTRY;
810
811/**
812 * Directory for the data units from the final pass.
813 *
814 * This is used to speed up SSMR3Seek (it would have to decompress and parse the
815 * whole stream otherwise).
816 */
817typedef struct SSMFILEDIR
818{
819 /** Magic string (SSMFILEDIR_MAGIC). */
820 char szMagic[8];
821 /** The CRC-32 for the whole directory.
822 * Calculated with this field set to zero. */
823 uint32_t u32CRC;
824 /** The number of directory entries. */
825 uint32_t cEntries;
826 /** The directory entries (variable size). */
827 SSMFILEDIRENTRY aEntries[1];
828} SSMFILEDIR;
829AssertCompileSize(SSMFILEDIR, 32);
830/** Pointer to a directory. */
831typedef SSMFILEDIR *PSSMFILEDIR;
832/** Pointer to a const directory. */
833typedef SSMFILEDIR *PSSMFILEDIR;
834
835
836/**
837 * Footer structure
838 */
839typedef struct SSMFILEFTR
840{
841 /** Magic string (SSMFILEFTR_MAGIC). */
842 char szMagic[8];
843 /** The offset of this record in the stream. */
844 uint64_t offStream;
845 /** The CRC for the stream.
846 * This is set to zero if SSMFILEHDR_FLAGS_STREAM_CRC32 is clear. */
847 uint32_t u32StreamCRC;
848 /** Number directory entries. */
849 uint32_t cDirEntries;
850 /** Reserved footer space - must be zero. */
851 uint32_t u32Reserved;
852 /** The CRC-32 for this structure.
853 * Calculated with this field set to zero. */
854 uint32_t u32CRC;
855} SSMFILEFTR;
856AssertCompileSize(SSMFILEFTR, 32);
857/** Pointer to a footer. */
858typedef SSMFILEFTR *PSSMFILEFTR;
859/** Pointer to a const footer. */
860typedef SSMFILEFTR const *PCSSMFILEFTR;
861
862
863/*******************************************************************************
864* Global Variables *
865*******************************************************************************/
866/** Zeros used by the struct putter.
867 * This must be at least 8 bytes or the code breaks. */
868static uint8_t const g_abZero[_1K] = {0};
869
870
871/*******************************************************************************
872* Internal Functions *
873*******************************************************************************/
874#ifndef SSM_STANDALONE
875static int ssmR3LazyInit(PVM pVM);
876static DECLCALLBACK(int) ssmR3SelfLiveExec(PVM pVM, PSSMHANDLE pSSM, uint32_t uPass);
877static DECLCALLBACK(int) ssmR3SelfSaveExec(PVM pVM, PSSMHANDLE pSSM);
878static DECLCALLBACK(int) ssmR3SelfLoadExec(PVM pVM, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass);
879static DECLCALLBACK(int) ssmR3LiveControlLoadExec(PVM pVM, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass);
880static int ssmR3Register(PVM pVM, const char *pszName, uint32_t uInstance, uint32_t uVersion, size_t cbGuess, const char *pszBefore, PSSMUNIT *ppUnit);
881static int ssmR3LiveControlEmit(PSSMHANDLE pSSM, long double lrdPct, uint32_t uPass);
882#endif
883
884static int ssmR3StrmWriteBuffers(PSSMSTRM pStrm);
885static int ssmR3StrmReadMore(PSSMSTRM pStrm);
886
887#ifndef SSM_STANDALONE
888static int ssmR3DataFlushBuffer(PSSMHANDLE pSSM);
889#endif
890static int ssmR3DataReadRecHdrV2(PSSMHANDLE pSSM);
891
892
893#ifndef SSM_STANDALONE
894
895/**
896 * Cleans up resources allocated by SSM on VM termination.
897 *
898 * @param pVM The VM handle.
899 */
900VMMR3_INT_DECL(void) SSMR3Term(PVM pVM)
901{
902 if (pVM->ssm.s.fInitialized)
903 {
904 pVM->ssm.s.fInitialized = false;
905 RTCritSectDelete(&pVM->ssm.s.CancelCritSect);
906 }
907}
908
909
910/**
911 * Performs lazy initialization of the SSM.
912 *
913 * @returns VBox status code.
914 * @param pVM The VM.
915 */
916static int ssmR3LazyInit(PVM pVM)
917{
918 /*
919 * Register a saved state unit which we use to put the VirtualBox version,
920 * revision and similar stuff in.
921 */
922 pVM->ssm.s.fInitialized = true;
923 int rc = SSMR3RegisterInternal(pVM, "SSM", 0 /*uInstance*/, 1 /*uVersion*/, 64 /*cbGuess*/,
924 NULL /*pfnLivePrep*/, ssmR3SelfLiveExec, NULL /*pfnLiveVote*/,
925 NULL /*pfnSavePrep*/, ssmR3SelfSaveExec, NULL /*pfnSaveDone*/,
926 NULL /*pfnSavePrep*/, ssmR3SelfLoadExec, NULL /*pfnSaveDone*/);
927 if (RT_SUCCESS(rc))
928 rc = SSMR3RegisterInternal(pVM, "SSMLiveControl", 0 /*uInstance*/, 1 /*uVersion*/, 1 /*cbGuess*/,
929 NULL /*pfnLivePrep*/, NULL /*pfnLiveExec*/, NULL /*pfnLiveVote*/,
930 NULL /*pfnSavePrep*/, NULL /*pfnSaveExec*/, NULL /*pfnSaveDone*/,
931 NULL /*pfnSavePrep*/, ssmR3LiveControlLoadExec, NULL /*pfnSaveDone*/);
932
933 /*
934 * Initialize the cancellation critsect now.
935 */
936 if (RT_SUCCESS(rc))
937 rc = RTCritSectInit(&pVM->ssm.s.CancelCritSect);
938 if (RT_SUCCESS(rc))
939 {
940 STAM_REL_REG_USED(pVM, &pVM->ssm.s.uPass, STAMTYPE_U32, "/SSM/uPass", STAMUNIT_COUNT, "Current pass");
941 }
942
943 pVM->ssm.s.fInitialized = RT_SUCCESS(rc);
944 return rc;
945}
946
947
948/**
949 * Do ssmR3SelfSaveExec in pass 0.
950 *
951 * @returns VBox status code.
952 * @param pVM Pointer to the shared VM structure.
953 * @param pSSM The SSM handle.
954 * @param uPass The data pass number.
955 */
956static DECLCALLBACK(int) ssmR3SelfLiveExec(PVM pVM, PSSMHANDLE pSSM, uint32_t uPass)
957{
958 if (uPass == 0)
959 {
960 int rc = ssmR3SelfSaveExec(pVM, pSSM);
961 if (RT_SUCCESS(rc))
962 rc = VINF_SSM_DONT_CALL_AGAIN;
963 return rc;
964 }
965 AssertFailed();
966 return VERR_SSM_UNEXPECTED_PASS;
967}
968
969
970/**
971 * For saving usful things without having to go thru the tedious process of
972 * adding it to the header.
973 *
974 * @returns VBox status code.
975 * @param pVM Pointer to the shared VM structure.
976 * @param pSSM The SSM handle.
977 */
978static DECLCALLBACK(int) ssmR3SelfSaveExec(PVM pVM, PSSMHANDLE pSSM)
979{
980 NOREF(pVM);
981
982 /*
983 * String table containing pairs of variable and value string.
984 * Terminated by two empty strings.
985 */
986 SSMR3PutStrZ(pSSM, "Build Type");
987 SSMR3PutStrZ(pSSM, KBUILD_TYPE);
988 SSMR3PutStrZ(pSSM, "Host OS");
989 SSMR3PutStrZ(pSSM, KBUILD_TARGET "." KBUILD_TARGET_ARCH);
990#ifdef VBOX_OSE
991 SSMR3PutStrZ(pSSM, "OSE");
992 SSMR3PutStrZ(pSSM, "true");
993#endif
994
995 /* terminator */
996 SSMR3PutStrZ(pSSM, "");
997 return SSMR3PutStrZ(pSSM, "");
998}
999
1000
1001/**
1002 * For load the version + revision and stuff.
1003 *
1004 * @returns VBox status code.
1005 * @param pVM Pointer to the shared VM structure.
1006 * @param pSSM The SSM handle.
1007 * @param uVersion The version (1).
1008 * @param uPass The pass.
1009 */
1010static DECLCALLBACK(int) ssmR3SelfLoadExec(PVM pVM, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass)
1011{
1012 AssertLogRelMsgReturn(uVersion == 1, ("%d", uVersion), VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION);
1013 NOREF(pVM); NOREF(uPass);
1014
1015 /*
1016 * The first and last passes contains a {name, value} string table that is
1017 * terminated by two emptry strings. It contains useful informal build
1018 * info and can be very handy when something goes wrong after restore.
1019 */
1020 if ( uPass == 0
1021 || uPass == SSM_PASS_FINAL)
1022 {
1023 for (unsigned i = 0; ; i++)
1024 {
1025 char szVar[128];
1026 char szValue[1024];
1027 int rc = SSMR3GetStrZ(pSSM, szVar, sizeof(szVar));
1028 AssertRCReturn(rc, rc);
1029 rc = SSMR3GetStrZ(pSSM, szValue, sizeof(szValue));
1030 AssertRCReturn(rc, rc);
1031 if (!szVar[0] && !szValue[0])
1032 break;
1033 if (i == 0)
1034 LogRel(("SSM: Saved state info:\n"));
1035 LogRel(("SSM: %s: %s\n", szVar, szValue));
1036
1037 /*
1038 * Detect 32-bit MSC for handling SSMFIELD_ENTRY_PAD_MSC32_AUTO.
1039 * Save the Host OS for SSMR3HandleHostOSAndArch
1040 */
1041 if (!strcmp(szVar, "Host OS"))
1042 {
1043 bool fIsHostMsc32 = !strcmp(szValue, "win.x86");
1044 if (fIsHostMsc32 != pSSM->u.Read.fIsHostMsc32)
1045 {
1046 LogRel(("SSM: (fIsHostMsc32 %RTbool => %RTbool)\n", pSSM->u.Read.fIsHostMsc32, fIsHostMsc32));
1047 pSSM->u.Read.fIsHostMsc32 = fIsHostMsc32;
1048 }
1049
1050 size_t cchValue = strlen(szValue);
1051 size_t cchCopy = RT_MIN(cchValue, sizeof(pSSM->u.Read.szHostOSAndArch) - 1);
1052 Assert(cchValue == cchCopy);
1053 memcpy(pSSM->u.Read.szHostOSAndArch, szValue, cchCopy);
1054 pSSM->u.Read.szHostOSAndArch[cchCopy] = '\0';
1055 }
1056 }
1057 }
1058 return VINF_SUCCESS;
1059}
1060
1061
1062/**
1063 * Load exec callback for the special live save state unit that tracks the
1064 * progress of a live save.
1065 *
1066 * This is saved by ssmR3LiveControlEmit().
1067 *
1068 * @returns VBox status code.
1069 * @param pVM Pointer to the shared VM structure.
1070 * @param pSSM The SSM handle.
1071 * @param uVersion The version (1).
1072 * @param uPass The pass.
1073 */
1074static DECLCALLBACK(int) ssmR3LiveControlLoadExec(PVM pVM, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass)
1075{
1076 AssertLogRelMsgReturn(uVersion == 1, ("%d", uVersion), VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION);
1077 NOREF(uPass);
1078
1079 uint16_t uPartsPerTenThousand;
1080 int rc = SSMR3GetU16(pSSM, &uPartsPerTenThousand);
1081 if (RT_SUCCESS(rc))
1082 {
1083 /* Scale it down to fit in our exec range. */
1084 unsigned uPct = (unsigned)( (long double)uPartsPerTenThousand / 100
1085 * (100 - pSSM->uPercentPrepare - pSSM->uPercentDone) / 100)
1086 + pSSM->uPercentPrepare;
1087 if (uPct != pSSM->uPercent)
1088 {
1089 AssertMsg(uPct < 100, ("uPct=%d uPartsPerTenThousand=%d uPercentPrepare=%d uPercentDone=%d\n", uPct, uPartsPerTenThousand, pSSM->uPercentPrepare, pSSM->uPercentDone));
1090 pSSM->uPercent = uPct;
1091 if (pSSM->pfnProgress)
1092 pSSM->pfnProgress(pVM, RT_MIN(uPct, 100 - pSSM->uPercentDone), pSSM->pvUser);
1093 }
1094 }
1095 return rc;
1096}
1097
1098
1099/**
1100 * Internal registration worker.
1101 *
1102 * @returns VBox status code.
1103 * @param pVM The VM handle.
1104 * @param pszName Data unit name.
1105 * @param uInstance The instance id.
1106 * @param uVersion The data unit version.
1107 * @param cbGuess The guessed data unit size.
1108 * @param pszBefore Name of data unit to be placed in front of.
1109 * Optional.
1110 * @param ppUnit Where to store the inserted unit node.
1111 * Caller must fill in the missing details.
1112 */
1113static int ssmR3Register(PVM pVM, const char *pszName, uint32_t uInstance,
1114 uint32_t uVersion, size_t cbGuess, const char *pszBefore, PSSMUNIT *ppUnit)
1115{
1116 /*
1117 * Validate input.
1118 */
1119 AssertPtr(pszName);
1120 AssertReturn(*pszName, VERR_INVALID_PARAMETER);
1121 size_t cchName = strlen(pszName);
1122 AssertMsgReturn(cchName < SSM_MAX_NAME_SIZE, ("%zu >= %u: %s\n", cchName, SSM_MAX_NAME_SIZE, pszName), VERR_OUT_OF_RANGE);
1123
1124 AssertReturn(!pszBefore || *pszBefore, VERR_INVALID_PARAMETER);
1125 size_t cchBefore = pszBefore ? strlen(pszBefore) : 0;
1126 AssertMsgReturn(cchBefore < SSM_MAX_NAME_SIZE, ("%zu >= %u: %s\n", cchBefore, SSM_MAX_NAME_SIZE, pszBefore), VERR_OUT_OF_RANGE);
1127
1128 /*
1129 * Lazy init.
1130 */
1131 if (!pVM->ssm.s.fInitialized)
1132 {
1133 int rc = ssmR3LazyInit(pVM);
1134 AssertRCReturn(rc, rc);
1135 }
1136
1137 /*
1138 * Walk to the end of the list checking for duplicates as we go.
1139 */
1140 PSSMUNIT pUnitBeforePrev = NULL;
1141 PSSMUNIT pUnitBefore = NULL;
1142 PSSMUNIT pUnitPrev = NULL;
1143 PSSMUNIT pUnit = pVM->ssm.s.pHead;
1144 while (pUnit)
1145 {
1146 if ( pUnit->u32Instance == uInstance
1147 && pUnit->cchName == cchName
1148 && !memcmp(pUnit->szName, pszName, cchName))
1149 {
1150 AssertMsgFailed(("Duplicate registration %s\n", pszName));
1151 return VERR_SSM_UNIT_EXISTS;
1152 }
1153 if ( pUnit->cchName == cchBefore
1154 && !pUnitBefore
1155 && !memcmp(pUnit->szName, pszBefore, cchBefore))
1156 {
1157 pUnitBeforePrev = pUnitPrev;
1158 pUnitBefore = pUnit;
1159 }
1160
1161 /* next */
1162 pUnitPrev = pUnit;
1163 pUnit = pUnit->pNext;
1164 }
1165
1166 /*
1167 * Allocate new node.
1168 */
1169 pUnit = (PSSMUNIT)MMR3HeapAllocZ(pVM, MM_TAG_SSM, RT_OFFSETOF(SSMUNIT, szName[cchName + 1]));
1170 if (!pUnit)
1171 return VERR_NO_MEMORY;
1172
1173 /*
1174 * Fill in (some) data. (Stuff is zero'd.)
1175 */
1176 pUnit->u32Version = uVersion;
1177 pUnit->u32Instance = uInstance;
1178 pUnit->cbGuess = cbGuess;
1179 pUnit->cchName = cchName;
1180 memcpy(pUnit->szName, pszName, cchName);
1181
1182 /*
1183 * Insert
1184 */
1185 if (pUnitBefore)
1186 {
1187 pUnit->pNext = pUnitBefore;
1188 if (pUnitBeforePrev)
1189 pUnitBeforePrev->pNext = pUnit;
1190 else
1191 pVM->ssm.s.pHead = pUnit;
1192 }
1193 else if (pUnitPrev)
1194 pUnitPrev->pNext = pUnit;
1195 else
1196 pVM->ssm.s.pHead = pUnit;
1197 pVM->ssm.s.cUnits++;
1198
1199 *ppUnit = pUnit;
1200 return VINF_SUCCESS;
1201}
1202
1203
1204/**
1205 * Register a PDM Devices data unit.
1206 *
1207 * @returns VBox status.
1208 *
1209 * @param pVM The VM handle.
1210 * @param pDevIns Device instance.
1211 * @param pszName Data unit name.
1212 * @param uInstance The instance identifier of the data unit.
1213 * This must together with the name be unique.
1214 * @param uVersion Data layout version number.
1215 * @param cbGuess The approximate amount of data in the unit.
1216 * Only for progress indicators.
1217 * @param pszBefore Name of data unit which we should be put in front
1218 * of. Optional (NULL).
1219 *
1220 * @param pfnLivePrep Prepare live save callback, optional.
1221 * @param pfnLiveExec Execute live save callback, optional.
1222 * @param pfnLiveVote Vote live save callback, optional.
1223 *
1224 * @param pfnSavePrep Prepare save callback, optional.
1225 * @param pfnSaveExec Execute save callback, optional.
1226 * @param pfnSaveDone Done save callback, optional.
1227 *
1228 * @param pfnLoadPrep Prepare load callback, optional.
1229 * @param pfnLoadExec Execute load callback, optional.
1230 * @param pfnLoadDone Done load callback, optional.
1231 */
1232VMMR3DECL(int) SSMR3RegisterDevice(PVM pVM, PPDMDEVINS pDevIns, const char *pszName, uint32_t uInstance, uint32_t uVersion, size_t cbGuess, const char *pszBefore,
1233 PFNSSMDEVLIVEPREP pfnLivePrep, PFNSSMDEVLIVEEXEC pfnLiveExec, PFNSSMDEVLIVEVOTE pfnLiveVote,
1234 PFNSSMDEVSAVEPREP pfnSavePrep, PFNSSMDEVSAVEEXEC pfnSaveExec, PFNSSMDEVSAVEDONE pfnSaveDone,
1235 PFNSSMDEVLOADPREP pfnLoadPrep, PFNSSMDEVLOADEXEC pfnLoadExec, PFNSSMDEVLOADDONE pfnLoadDone)
1236{
1237 PSSMUNIT pUnit;
1238 int rc = ssmR3Register(pVM, pszName, uInstance, uVersion, cbGuess, pszBefore, &pUnit);
1239 if (RT_SUCCESS(rc))
1240 {
1241 pUnit->enmType = SSMUNITTYPE_DEV;
1242 pUnit->u.Dev.pfnLivePrep = pfnLivePrep;
1243 pUnit->u.Dev.pfnLiveExec = pfnLiveExec;
1244 pUnit->u.Dev.pfnLiveVote = pfnLiveVote;
1245 pUnit->u.Dev.pfnSavePrep = pfnSavePrep;
1246 pUnit->u.Dev.pfnSaveExec = pfnSaveExec;
1247 pUnit->u.Dev.pfnSaveDone = pfnSaveDone;
1248 pUnit->u.Dev.pfnLoadPrep = pfnLoadPrep;
1249 pUnit->u.Dev.pfnLoadExec = pfnLoadExec;
1250 pUnit->u.Dev.pfnLoadDone = pfnLoadDone;
1251 pUnit->u.Dev.pDevIns = pDevIns;
1252 }
1253 return rc;
1254}
1255
1256
1257/**
1258 * Register a PDM driver data unit.
1259 *
1260 * @returns VBox status.
1261 *
1262 * @param pVM The VM handle.
1263 * @param pDrvIns Driver instance.
1264 * @param pszName Data unit name.
1265 * @param uInstance The instance identifier of the data unit.
1266 * This must together with the name be unique.
1267 * @param uVersion Data layout version number.
1268 * @param cbGuess The approximate amount of data in the unit.
1269 * Only for progress indicators.
1270 *
1271 * @param pfnLivePrep Prepare live save callback, optional.
1272 * @param pfnLiveExec Execute live save callback, optional.
1273 * @param pfnLiveVote Vote live save callback, optional.
1274 *
1275 * @param pfnSavePrep Prepare save callback, optional.
1276 * @param pfnSaveExec Execute save callback, optional.
1277 * @param pfnSaveDone Done save callback, optional.
1278 *
1279 * @param pfnLoadPrep Prepare load callback, optional.
1280 * @param pfnLoadExec Execute load callback, optional.
1281 * @param pfnLoadDone Done load callback, optional.
1282 */
1283VMMR3DECL(int) SSMR3RegisterDriver(PVM pVM, PPDMDRVINS pDrvIns, const char *pszName, uint32_t uInstance, uint32_t uVersion, size_t cbGuess,
1284 PFNSSMDRVLIVEPREP pfnLivePrep, PFNSSMDRVLIVEEXEC pfnLiveExec, PFNSSMDRVLIVEVOTE pfnLiveVote,
1285 PFNSSMDRVSAVEPREP pfnSavePrep, PFNSSMDRVSAVEEXEC pfnSaveExec, PFNSSMDRVSAVEDONE pfnSaveDone,
1286 PFNSSMDRVLOADPREP pfnLoadPrep, PFNSSMDRVLOADEXEC pfnLoadExec, PFNSSMDRVLOADDONE pfnLoadDone)
1287{
1288 PSSMUNIT pUnit;
1289 int rc = ssmR3Register(pVM, pszName, uInstance, uVersion, cbGuess, NULL, &pUnit);
1290 if (RT_SUCCESS(rc))
1291 {
1292 pUnit->enmType = SSMUNITTYPE_DRV;
1293 pUnit->u.Drv.pfnLivePrep = pfnLivePrep;
1294 pUnit->u.Drv.pfnLiveExec = pfnLiveExec;
1295 pUnit->u.Drv.pfnLiveVote = pfnLiveVote;
1296 pUnit->u.Drv.pfnSavePrep = pfnSavePrep;
1297 pUnit->u.Drv.pfnSaveExec = pfnSaveExec;
1298 pUnit->u.Drv.pfnSaveDone = pfnSaveDone;
1299 pUnit->u.Drv.pfnLoadPrep = pfnLoadPrep;
1300 pUnit->u.Drv.pfnLoadExec = pfnLoadExec;
1301 pUnit->u.Drv.pfnLoadDone = pfnLoadDone;
1302 pUnit->u.Drv.pDrvIns = pDrvIns;
1303 }
1304 return rc;
1305}
1306
1307
1308/**
1309 * Register a internal data unit.
1310 *
1311 * @returns VBox status.
1312 *
1313 * @param pVM The VM handle.
1314 * @param pszName Data unit name.
1315 * @param uInstance The instance identifier of the data unit.
1316 * This must together with the name be unique.
1317 * @param uVersion Data layout version number.
1318 * @param cbGuess The approximate amount of data in the unit.
1319 * Only for progress indicators.
1320 *
1321 * @param pfnLivePrep Prepare live save callback, optional.
1322 * @param pfnLiveExec Execute live save callback, optional.
1323 * @param pfnLiveVote Vote live save callback, optional.
1324 *
1325 * @param pfnSavePrep Prepare save callback, optional.
1326 * @param pfnSaveExec Execute save callback, optional.
1327 * @param pfnSaveDone Done save callback, optional.
1328 *
1329 * @param pfnLoadPrep Prepare load callback, optional.
1330 * @param pfnLoadExec Execute load callback, optional.
1331 * @param pfnLoadDone Done load callback, optional.
1332 */
1333VMMR3DECL(int) SSMR3RegisterInternal(PVM pVM, const char *pszName, uint32_t uInstance, uint32_t uVersion, size_t cbGuess,
1334 PFNSSMINTLIVEPREP pfnLivePrep, PFNSSMINTLIVEEXEC pfnLiveExec, PFNSSMINTLIVEVOTE pfnLiveVote,
1335 PFNSSMINTSAVEPREP pfnSavePrep, PFNSSMINTSAVEEXEC pfnSaveExec, PFNSSMINTSAVEDONE pfnSaveDone,
1336 PFNSSMINTLOADPREP pfnLoadPrep, PFNSSMINTLOADEXEC pfnLoadExec, PFNSSMINTLOADDONE pfnLoadDone)
1337{
1338 PSSMUNIT pUnit;
1339 int rc = ssmR3Register(pVM, pszName, uInstance, uVersion, cbGuess, NULL, &pUnit);
1340 if (RT_SUCCESS(rc))
1341 {
1342 pUnit->enmType = SSMUNITTYPE_INTERNAL;
1343 pUnit->u.Internal.pfnLivePrep = pfnLivePrep;
1344 pUnit->u.Internal.pfnLiveExec = pfnLiveExec;
1345 pUnit->u.Internal.pfnLiveVote = pfnLiveVote;
1346 pUnit->u.Internal.pfnSavePrep = pfnSavePrep;
1347 pUnit->u.Internal.pfnSaveExec = pfnSaveExec;
1348 pUnit->u.Internal.pfnSaveDone = pfnSaveDone;
1349 pUnit->u.Internal.pfnLoadPrep = pfnLoadPrep;
1350 pUnit->u.Internal.pfnLoadExec = pfnLoadExec;
1351 pUnit->u.Internal.pfnLoadDone = pfnLoadDone;
1352 }
1353 return rc;
1354}
1355
1356
1357/**
1358 * Register an external data unit.
1359 *
1360 * @returns VBox status.
1361 *
1362 * @param pVM The VM handle.
1363 * @param pszName Data unit name.
1364 * @param uInstance The instance identifier of the data unit.
1365 * This must together with the name be unique.
1366 * @param uVersion Data layout version number.
1367 * @param cbGuess The approximate amount of data in the unit.
1368 * Only for progress indicators.
1369 *
1370 * @param pfnLivePrep Prepare live save callback, optional.
1371 * @param pfnLiveExec Execute live save callback, optional.
1372 * @param pfnLiveVote Vote live save callback, optional.
1373 *
1374 * @param pfnSavePrep Prepare save callback, optional.
1375 * @param pfnSaveExec Execute save callback, optional.
1376 * @param pfnSaveDone Done save callback, optional.
1377 *
1378 * @param pfnLoadPrep Prepare load callback, optional.
1379 * @param pfnLoadExec Execute load callback, optional.
1380 * @param pfnLoadDone Done load callback, optional.
1381 * @param pvUser User argument.
1382 */
1383VMMR3DECL(int) SSMR3RegisterExternal(PVM pVM, const char *pszName, uint32_t uInstance, uint32_t uVersion, size_t cbGuess,
1384 PFNSSMEXTLIVEPREP pfnLivePrep, PFNSSMEXTLIVEEXEC pfnLiveExec, PFNSSMEXTLIVEVOTE pfnLiveVote,
1385 PFNSSMEXTSAVEPREP pfnSavePrep, PFNSSMEXTSAVEEXEC pfnSaveExec, PFNSSMEXTSAVEDONE pfnSaveDone,
1386 PFNSSMEXTLOADPREP pfnLoadPrep, PFNSSMEXTLOADEXEC pfnLoadExec, PFNSSMEXTLOADDONE pfnLoadDone, void *pvUser)
1387{
1388 PSSMUNIT pUnit;
1389 int rc = ssmR3Register(pVM, pszName, uInstance, uVersion, cbGuess, NULL, &pUnit);
1390 if (RT_SUCCESS(rc))
1391 {
1392 pUnit->enmType = SSMUNITTYPE_EXTERNAL;
1393 pUnit->u.External.pfnLivePrep = pfnLivePrep;
1394 pUnit->u.External.pfnLiveExec = pfnLiveExec;
1395 pUnit->u.External.pfnLiveVote = pfnLiveVote;
1396 pUnit->u.External.pfnSavePrep = pfnSavePrep;
1397 pUnit->u.External.pfnSaveExec = pfnSaveExec;
1398 pUnit->u.External.pfnSaveDone = pfnSaveDone;
1399 pUnit->u.External.pfnLoadPrep = pfnLoadPrep;
1400 pUnit->u.External.pfnLoadExec = pfnLoadExec;
1401 pUnit->u.External.pfnLoadDone = pfnLoadDone;
1402 pUnit->u.External.pvUser = pvUser;
1403 }
1404 return rc;
1405}
1406
1407
1408/**
1409 * Deregister one or more PDM Device data units.
1410 *
1411 * @returns VBox status.
1412 *
1413 * @param pVM The VM handle.
1414 * @param pDevIns Device instance.
1415 * @param pszName Data unit name.
1416 * Use NULL to deregister all data units for that device instance.
1417 * @param uInstance The instance identifier of the data unit.
1418 * This must together with the name be unique.
1419 * @remark Only for dynamic data units and dynamic unloaded modules.
1420 */
1421VMMR3_INT_DECL(int) SSMR3DeregisterDevice(PVM pVM, PPDMDEVINS pDevIns, const char *pszName, uint32_t uInstance)
1422{
1423 /*
1424 * Validate input.
1425 */
1426 if (!pDevIns)
1427 {
1428 AssertMsgFailed(("pDevIns is NULL!\n"));
1429 return VERR_INVALID_PARAMETER;
1430 }
1431
1432 /*
1433 * Search the list.
1434 */
1435 size_t cchName = pszName ? strlen(pszName) : 0;
1436 int rc = pszName ? VERR_SSM_UNIT_NOT_FOUND : VINF_SUCCESS;
1437 PSSMUNIT pUnitPrev = NULL;
1438 PSSMUNIT pUnit = pVM->ssm.s.pHead;
1439 while (pUnit)
1440 {
1441 if ( pUnit->enmType == SSMUNITTYPE_DEV
1442 && ( !pszName
1443 || ( pUnit->cchName == cchName
1444 && !memcmp(pUnit->szName, pszName, cchName)))
1445 && pUnit->u32Instance == uInstance
1446 )
1447 {
1448 if (pUnit->u.Dev.pDevIns == pDevIns)
1449 {
1450 /*
1451 * Unlink it, advance pointer, and free the node.
1452 */
1453 PSSMUNIT pFree = pUnit;
1454 pUnit = pUnit->pNext;
1455 if (pUnitPrev)
1456 pUnitPrev->pNext = pUnit;
1457 else
1458 pVM->ssm.s.pHead = pUnit;
1459 pVM->ssm.s.cUnits--;
1460 Log(("SSM: Removed data unit '%s' (pdm dev).\n", pFree->szName));
1461 MMR3HeapFree(pFree);
1462
1463 if (pszName)
1464 return VINF_SUCCESS;
1465 rc = VINF_SUCCESS;
1466 continue;
1467 }
1468 else if (pszName)
1469 {
1470 AssertMsgFailed(("Caller is not owner! Owner=%p Caller=%p %s\n",
1471 pUnit->u.Dev.pDevIns, pDevIns, pszName));
1472 return VERR_SSM_UNIT_NOT_OWNER;
1473 }
1474 }
1475
1476 /* next */
1477 pUnitPrev = pUnit;
1478 pUnit = pUnit->pNext;
1479 }
1480
1481 return rc;
1482}
1483
1484
1485/**
1486 * Deregister one ore more PDM Driver data units.
1487 *
1488 * @returns VBox status.
1489 * @param pVM The VM handle.
1490 * @param pDrvIns Driver instance.
1491 * @param pszName Data unit name.
1492 * Use NULL to deregister all data units for that driver instance.
1493 * @param uInstance The instance identifier of the data unit.
1494 * This must together with the name be unique. Ignored if pszName is NULL.
1495 * @remark Only for dynamic data units and dynamic unloaded modules.
1496 */
1497VMMR3_INT_DECL(int) SSMR3DeregisterDriver(PVM pVM, PPDMDRVINS pDrvIns, const char *pszName, uint32_t uInstance)
1498{
1499 /*
1500 * Validate input.
1501 */
1502 if (!pDrvIns)
1503 {
1504 AssertMsgFailed(("pDrvIns is NULL!\n"));
1505 return VERR_INVALID_PARAMETER;
1506 }
1507
1508 /*
1509 * Search the list.
1510 */
1511 size_t cchName = pszName ? strlen(pszName) : 0;
1512 int rc = pszName ? VERR_SSM_UNIT_NOT_FOUND : VINF_SUCCESS;
1513 PSSMUNIT pUnitPrev = NULL;
1514 PSSMUNIT pUnit = pVM->ssm.s.pHead;
1515 while (pUnit)
1516 {
1517 if ( pUnit->enmType == SSMUNITTYPE_DRV
1518 && ( !pszName
1519 || ( pUnit->cchName == cchName
1520 && !memcmp(pUnit->szName, pszName, cchName)
1521 && pUnit->u32Instance == uInstance))
1522 )
1523 {
1524 if (pUnit->u.Drv.pDrvIns == pDrvIns)
1525 {
1526 /*
1527 * Unlink it, advance pointer, and free the node.
1528 */
1529 PSSMUNIT pFree = pUnit;
1530 pUnit = pUnit->pNext;
1531 if (pUnitPrev)
1532 pUnitPrev->pNext = pUnit;
1533 else
1534 pVM->ssm.s.pHead = pUnit;
1535 pVM->ssm.s.cUnits--;
1536 Log(("SSM: Removed data unit '%s' (pdm drv).\n", pFree->szName));
1537 MMR3HeapFree(pFree);
1538
1539 if (pszName)
1540 return VINF_SUCCESS;
1541 rc = VINF_SUCCESS;
1542 continue;
1543 }
1544
1545 AssertMsgReturn(!pszName,
1546 ("Caller is not owner! Owner=%p Caller=%p %s\n", pUnit->u.Drv.pDrvIns, pDrvIns, pszName),
1547 VERR_SSM_UNIT_NOT_OWNER);
1548 }
1549
1550 /* next */
1551 pUnitPrev = pUnit;
1552 pUnit = pUnit->pNext;
1553 }
1554
1555 return rc;
1556}
1557
1558
1559/**
1560 * Deregister a data unit.
1561 *
1562 * @returns VBox status.
1563 * @param pVM The VM handle.
1564 * @param enmType Unit type
1565 * @param pszName Data unit name.
1566 * @remark Only for dynamic data units.
1567 */
1568static int ssmR3DeregisterByNameAndType(PVM pVM, const char *pszName, SSMUNITTYPE enmType)
1569{
1570 /*
1571 * Validate input.
1572 */
1573 if (!pszName)
1574 {
1575 AssertMsgFailed(("pszName is NULL!\n"));
1576 return VERR_INVALID_PARAMETER;
1577 }
1578
1579 /*
1580 * Search the list.
1581 */
1582 size_t cchName = strlen(pszName);
1583 int rc = VERR_SSM_UNIT_NOT_FOUND;
1584 PSSMUNIT pUnitPrev = NULL;
1585 PSSMUNIT pUnit = pVM->ssm.s.pHead;
1586 while (pUnit)
1587 {
1588 if ( pUnit->enmType == enmType
1589 && pUnit->cchName == cchName
1590 && !memcmp(pUnit->szName, pszName, cchName))
1591 {
1592 /*
1593 * Unlink it, advance pointer, and free the node.
1594 */
1595 PSSMUNIT pFree = pUnit;
1596 pUnit = pUnit->pNext;
1597 if (pUnitPrev)
1598 pUnitPrev->pNext = pUnit;
1599 else
1600 pVM->ssm.s.pHead = pUnit;
1601 pVM->ssm.s.cUnits--;
1602 Log(("SSM: Removed data unit '%s' (type=%d).\n", pFree->szName, enmType));
1603 MMR3HeapFree(pFree);
1604 return VINF_SUCCESS;
1605 }
1606
1607 /* next */
1608 pUnitPrev = pUnit;
1609 pUnit = pUnit->pNext;
1610 }
1611
1612 return rc;
1613}
1614
1615
1616/**
1617 * Deregister an internal data unit.
1618 *
1619 * @returns VBox status.
1620 * @param pVM The VM handle.
1621 * @param pszName Data unit name.
1622 * @remark Only for dynamic data units.
1623 */
1624VMMR3DECL(int) SSMR3DeregisterInternal(PVM pVM, const char *pszName)
1625{
1626 return ssmR3DeregisterByNameAndType(pVM, pszName, SSMUNITTYPE_INTERNAL);
1627}
1628
1629
1630/**
1631 * Deregister an external data unit.
1632 *
1633 * @returns VBox status.
1634 * @param pVM The VM handle.
1635 * @param pszName Data unit name.
1636 * @remark Only for dynamic data units.
1637 */
1638VMMR3DECL(int) SSMR3DeregisterExternal(PVM pVM, const char *pszName)
1639{
1640 return ssmR3DeregisterByNameAndType(pVM, pszName, SSMUNITTYPE_EXTERNAL);
1641}
1642
1643#endif /* !SSM_STANDALONE */
1644
1645
1646/**
1647 * Initializes the stream after/before opening the file/whatever.
1648 *
1649 * @returns VINF_SUCCESS or VERR_NO_MEMORY.
1650 * @param pStrm The stream handle.
1651 * @param fChecksummed Whether the stream is to be checksummed while
1652 * written/read.
1653 * @param cBuffers The number of buffers.
1654 */
1655static int ssmR3StrmInitInternal(PSSMSTRM pStrm, bool fChecksummed, uint32_t cBuffers)
1656{
1657 Assert(cBuffers > 0);
1658
1659 /*
1660 * Init the common data members.
1661 */
1662 pStrm->fTerminating = false;
1663 pStrm->fNeedSeek = false;
1664 pStrm->rc = VINF_SUCCESS;
1665 pStrm->hIoThread = NIL_RTTHREAD;
1666 pStrm->offNeedSeekTo= UINT64_MAX;
1667
1668 pStrm->pHead = NULL;
1669 pStrm->pFree = NULL;
1670 pStrm->hEvtHead = NIL_RTSEMEVENT;
1671 pStrm->hEvtFree = NIL_RTSEMEVENT;
1672
1673 pStrm->pPending = NULL;
1674 pStrm->pCur = NULL;
1675 pStrm->offCurStream = 0;
1676 pStrm->off = 0;
1677 pStrm->fChecksummed = fChecksummed;
1678 pStrm->u32StreamCRC = fChecksummed ? RTCrc32Start() : 0;
1679 pStrm->offStreamCRC = 0;
1680
1681 /*
1682 * Allocate the buffers. Page align them in case that makes the kernel
1683 * and/or cpu happier in some way.
1684 */
1685 int rc = VINF_SUCCESS;
1686 for (uint32_t i = 0; i < cBuffers; i++)
1687 {
1688 PSSMSTRMBUF pBuf = (PSSMSTRMBUF)RTMemPageAllocZ(sizeof(*pBuf));
1689 if (!pBuf)
1690 {
1691 if (i > 2)
1692 {
1693 LogRel(("ssmR3StrmAllocBuffer: WARNING: Could only get %d stream buffers.\n", i));
1694 break;
1695 }
1696 LogRel(("ssmR3StrmAllocBuffer: Failed to allocate stream buffers. (i=%d)\n", i));
1697 return VERR_NO_MEMORY;
1698 }
1699
1700 /* link it */
1701 pBuf->pNext = pStrm->pFree;
1702 pStrm->pFree = pBuf;
1703 }
1704
1705 /*
1706 * Create the event semaphores.
1707 */
1708 rc = RTSemEventCreate(&pStrm->hEvtHead);
1709 if (RT_FAILURE(rc))
1710 return rc;
1711 rc = RTSemEventCreate(&pStrm->hEvtFree);
1712 if (RT_FAILURE(rc))
1713 return rc;
1714
1715 return VINF_SUCCESS;
1716}
1717
1718
1719/**
1720 * Destroys a list of buffers.
1721 *
1722 * @param pHead Pointer to the head.
1723 */
1724static void ssmR3StrmDestroyBufList(PSSMSTRMBUF pHead)
1725{
1726 while (pHead)
1727 {
1728 PSSMSTRMBUF pCur = pHead;
1729 pHead = pCur->pNext;
1730 pCur->pNext = NULL;
1731 RTMemPageFree(pCur, sizeof(*pCur));
1732 }
1733}
1734
1735
1736/**
1737 * Cleans up a stream after ssmR3StrmInitInternal has been called (regardless of
1738 * it succeeded or not).
1739 *
1740 * @param pStrm The stream handle.
1741 */
1742static void ssmR3StrmDelete(PSSMSTRM pStrm)
1743{
1744 RTMemPageFree(pStrm->pCur, sizeof(*pStrm->pCur));
1745 pStrm->pCur = NULL;
1746 ssmR3StrmDestroyBufList(pStrm->pHead);
1747 pStrm->pHead = NULL;
1748 ssmR3StrmDestroyBufList(pStrm->pPending);
1749 pStrm->pPending = NULL;
1750 ssmR3StrmDestroyBufList(pStrm->pFree);
1751 pStrm->pFree = NULL;
1752
1753 RTSemEventDestroy(pStrm->hEvtHead);
1754 pStrm->hEvtHead = NIL_RTSEMEVENT;
1755
1756 RTSemEventDestroy(pStrm->hEvtFree);
1757 pStrm->hEvtFree = NIL_RTSEMEVENT;
1758}
1759
1760
1761/**
1762 * Initializes a stream that uses a method table.
1763 *
1764 * @returns VBox status code.
1765 * @param pStrm The stream manager structure.
1766 * @param pStreamOps The stream method table.
1767 * @param pvUser The user argument for the stream methods.
1768 * @param fWrite Whether to open for writing or reading.
1769 * @param fChecksummed Whether the stream is to be checksummed while
1770 * written/read.
1771 * @param cBuffers The number of buffers.
1772 */
1773static int ssmR3StrmInit(PSSMSTRM pStrm, PCSSMSTRMOPS pStreamOps, void *pvUser, bool fWrite, bool fChecksummed, uint32_t cBuffers)
1774{
1775 int rc = ssmR3StrmInitInternal(pStrm, fChecksummed, cBuffers);
1776 if (RT_SUCCESS(rc))
1777 {
1778 pStrm->pOps = pStreamOps;
1779 pStrm->pvUser = pvUser;
1780 pStrm->fWrite = fWrite;
1781 return VINF_SUCCESS;
1782 }
1783
1784 ssmR3StrmDelete(pStrm);
1785 pStrm->rc = rc;
1786 return rc;
1787}
1788
1789
1790/**
1791 * @copydoc SSMSTRMOPS::pfnWrite
1792 */
1793static DECLCALLBACK(int) ssmR3FileWrite(void *pvUser, uint64_t offStream, const void *pvBuf, size_t cbToWrite)
1794{
1795 Assert(RTFileTell((RTFILE)(uintptr_t)pvUser) == offStream); NOREF(offStream);
1796 return RTFileWriteAt((RTFILE)(uintptr_t)pvUser, offStream, pvBuf, cbToWrite, NULL); /** @todo use RTFileWrite */
1797}
1798
1799
1800/**
1801 * @copydoc SSMSTRMOPS::pfnRead
1802 */
1803static DECLCALLBACK(int) ssmR3FileRead(void *pvUser, uint64_t offStream, void *pvBuf, size_t cbToRead, size_t *pcbRead)
1804{
1805 Assert(RTFileTell((RTFILE)(uintptr_t)pvUser) == offStream); NOREF(offStream);
1806 return RTFileRead((RTFILE)(uintptr_t)pvUser, pvBuf, cbToRead, pcbRead);
1807}
1808
1809
1810/**
1811 * @copydoc SSMSTRMOPS::pfnSeek
1812 */
1813static DECLCALLBACK(int) ssmR3FileSeek(void *pvUser, int64_t offSeek, unsigned uMethod, uint64_t *poffActual)
1814{
1815 return RTFileSeek((RTFILE)(uintptr_t)pvUser, offSeek, uMethod, poffActual);
1816}
1817
1818
1819/**
1820 * @copydoc SSMSTRMOPS::pfnTell
1821 */
1822static DECLCALLBACK(uint64_t) ssmR3FileTell(void *pvUser)
1823{
1824 return RTFileTell((RTFILE)(uintptr_t)pvUser);
1825}
1826
1827
1828/**
1829 * @copydoc SSMSTRMOPS::pfnSize
1830 */
1831static DECLCALLBACK(int) ssmR3FileSize(void *pvUser, uint64_t *pcb)
1832{
1833 return RTFileGetSize((RTFILE)(uintptr_t)pvUser, pcb);
1834}
1835
1836
1837/**
1838 * @copydoc SSMSTRMOPS::pfnIsOk
1839 */
1840static DECLCALLBACK(int) ssmR3FileIsOk(void *pvUser)
1841{
1842 /*
1843 * Check that there is still some space left on the disk.
1844 */
1845 RTFOFF cbFree;
1846 int rc = RTFileQueryFsSizes((RTFILE)(uintptr_t)pvUser, NULL, &cbFree, NULL, NULL);
1847#define SSM_MIN_DISK_FREE ((RTFOFF)( 10 * _1M ))
1848 if (RT_SUCCESS(rc))
1849 {
1850 if (cbFree < SSM_MIN_DISK_FREE)
1851 {
1852 LogRel(("SSM: Giving up: Low on disk space. (cbFree=%RTfoff, SSM_MIN_DISK_FREE=%RTfoff).\n",
1853 cbFree, SSM_MIN_DISK_FREE));
1854 rc = VERR_SSM_LOW_ON_DISK_SPACE;
1855 }
1856 }
1857 else if (rc == VERR_NOT_SUPPORTED)
1858 rc = VINF_SUCCESS;
1859 else
1860 AssertLogRelRC(rc);
1861 return rc;
1862}
1863
1864
1865/**
1866 * @copydoc SSMSTRMOPS::pfnClose
1867 */
1868static DECLCALLBACK(int) ssmR3FileClose(void *pvUser, bool fCancelled)
1869{
1870 NOREF(fCancelled);
1871 return RTFileClose((RTFILE)(uintptr_t)pvUser);
1872}
1873
1874
1875/**
1876 * Method table for a file based stream.
1877 */
1878static SSMSTRMOPS const g_ssmR3FileOps =
1879{
1880 SSMSTRMOPS_VERSION,
1881 ssmR3FileWrite,
1882 ssmR3FileRead,
1883 ssmR3FileSeek,
1884 ssmR3FileTell,
1885 ssmR3FileSize,
1886 ssmR3FileIsOk,
1887 ssmR3FileClose,
1888 SSMSTRMOPS_VERSION
1889};
1890
1891
1892/**
1893 * Opens a file stream.
1894 *
1895 * @returns VBox status code.
1896 * @param pStrm The stream manager structure.
1897 * @param pszFilename The file to open or create.
1898 * @param fWrite Whether to open for writing or reading.
1899 * @param fChecksummed Whether the stream is to be checksummed while
1900 * written/read.
1901 * @param cBuffers The number of buffers.
1902 */
1903static int ssmR3StrmOpenFile(PSSMSTRM pStrm, const char *pszFilename, bool fWrite, bool fChecksummed, uint32_t cBuffers)
1904{
1905 int rc = ssmR3StrmInitInternal(pStrm, fChecksummed, cBuffers);
1906 if (RT_SUCCESS(rc))
1907 {
1908 uint32_t fFlags = fWrite
1909 ? RTFILE_O_READWRITE | RTFILE_O_CREATE_REPLACE | RTFILE_O_DENY_WRITE
1910 : RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_WRITE;
1911 RTFILE hFile;
1912 rc = RTFileOpen(&hFile, pszFilename, fFlags);
1913 if (RT_SUCCESS(rc))
1914 {
1915 pStrm->pOps = &g_ssmR3FileOps;
1916 pStrm->pvUser = (void *)(uintptr_t)hFile;
1917 pStrm->fWrite = fWrite;
1918 return VINF_SUCCESS;
1919 }
1920 }
1921
1922 ssmR3StrmDelete(pStrm);
1923 pStrm->rc = rc;
1924 return rc;
1925}
1926
1927
1928/**
1929 * Raise an error condition on the stream.
1930 *
1931 * @returns true if we raised the error condition, false if the stream already
1932 * had an error condition set.
1933 *
1934 * @param pStrm The stream handle.
1935 * @param rc The VBox error status code.
1936 *
1937 * @thread Any.
1938 */
1939DECLINLINE(bool) ssmR3StrmSetError(PSSMSTRM pStrm, int rc)
1940{
1941 Assert(RT_FAILURE_NP(rc));
1942 return ASMAtomicCmpXchgS32(&pStrm->rc, rc, VINF_SUCCESS);
1943}
1944
1945
1946/**
1947 * Puts a buffer into the free list.
1948 *
1949 * @param pStrm The stream handle.
1950 * @param pBuf The buffer.
1951 *
1952 * @thread The consumer.
1953 */
1954static void ssmR3StrmPutFreeBuf(PSSMSTRM pStrm, PSSMSTRMBUF pBuf)
1955{
1956 for (;;)
1957 {
1958 PSSMSTRMBUF pCurFreeHead = ASMAtomicUoReadPtrT(&pStrm->pFree, PSSMSTRMBUF);
1959 ASMAtomicUoWritePtr(&pBuf->pNext, pCurFreeHead);
1960 if (ASMAtomicCmpXchgPtr(&pStrm->pFree, pBuf, pCurFreeHead))
1961 {
1962 int rc = RTSemEventSignal(pStrm->hEvtFree);
1963 AssertRC(rc);
1964 return;
1965 }
1966 }
1967}
1968
1969
1970/**
1971 * Gets a free buffer, waits for one if necessary.
1972 *
1973 * @returns Pointer to the buffer on success. NULL if we're terminating.
1974 * @param pStrm The stream handle.
1975 *
1976 * @thread The producer.
1977 */
1978static PSSMSTRMBUF ssmR3StrmGetFreeBuf(PSSMSTRM pStrm)
1979{
1980 for (;;)
1981 {
1982 PSSMSTRMBUF pMine = ASMAtomicUoReadPtrT(&pStrm->pFree, PSSMSTRMBUF);
1983 if (!pMine)
1984 {
1985 if (pStrm->fTerminating)
1986 return NULL;
1987 if (RT_FAILURE(pStrm->rc))
1988 return NULL;
1989 if ( pStrm->fWrite
1990 && pStrm->hIoThread == NIL_RTTHREAD)
1991 {
1992 int rc = ssmR3StrmWriteBuffers(pStrm);
1993 if (RT_FAILURE(rc))
1994 return NULL;
1995 }
1996 int rc = RTSemEventWaitNoResume(pStrm->hEvtFree, 30000);
1997 if ( rc == VERR_SEM_DESTROYED
1998 || pStrm->fTerminating)
1999 return NULL;
2000 continue;
2001 }
2002
2003 if (ASMAtomicCmpXchgPtr(&pStrm->pFree, pMine->pNext, pMine))
2004 {
2005 pMine->offStream = UINT64_MAX;
2006 pMine->cb = 0;
2007 pMine->pNext = NULL;
2008 pMine->fEndOfStream = false;
2009 pMine->NanoTS = RTTimeNanoTS();
2010 return pMine;
2011 }
2012 }
2013}
2014
2015
2016/**
2017 * Puts a buffer onto the queue.
2018 *
2019 * @param pBuf The buffer.
2020 *
2021 * @thread The producer.
2022 */
2023static void ssmR3StrmPutBuf(PSSMSTRM pStrm, PSSMSTRMBUF pBuf)
2024{
2025 for (;;)
2026 {
2027 PSSMSTRMBUF pCurHead = ASMAtomicUoReadPtrT(&pStrm->pHead, PSSMSTRMBUF);
2028 ASMAtomicUoWritePtr(&pBuf->pNext, pCurHead);
2029 if (ASMAtomicCmpXchgPtr(&pStrm->pHead, pBuf, pCurHead))
2030 {
2031 int rc = RTSemEventSignal(pStrm->hEvtHead);
2032 AssertRC(rc);
2033 return;
2034 }
2035 }
2036}
2037
2038
2039/**
2040 * Reverses the list.
2041 *
2042 * @returns The head of the reversed list.
2043 * @param pHead The head of the list to reverse.
2044 */
2045static PSSMSTRMBUF ssmR3StrmReverseList(PSSMSTRMBUF pHead)
2046{
2047 PSSMSTRMBUF pRevHead = NULL;
2048 while (pHead)
2049 {
2050 PSSMSTRMBUF pCur = pHead;
2051 pHead = pCur->pNext;
2052 pCur->pNext = pRevHead;
2053 pRevHead = pCur;
2054 }
2055 return pRevHead;
2056}
2057
2058
2059/**
2060 * Gets one buffer from the queue, will wait for one to become ready if
2061 * necessary.
2062 *
2063 * @returns Pointer to the buffer on success. NULL if we're terminating.
2064 * @param pBuf The buffer.
2065 *
2066 * @thread The consumer.
2067 */
2068static PSSMSTRMBUF ssmR3StrmGetBuf(PSSMSTRM pStrm)
2069{
2070 for (;;)
2071 {
2072 PSSMSTRMBUF pMine = pStrm->pPending;
2073 if (pMine)
2074 {
2075 pStrm->pPending = pMine->pNext;
2076 pMine->pNext = NULL;
2077 return pMine;
2078 }
2079
2080 pMine = ASMAtomicXchgPtrT(&pStrm->pHead, NULL, PSSMSTRMBUF);
2081 if (pMine)
2082 pStrm->pPending = ssmR3StrmReverseList(pMine);
2083 else
2084 {
2085 if (pStrm->fTerminating)
2086 return NULL;
2087 if (RT_FAILURE(pStrm->rc))
2088 return NULL;
2089 if ( !pStrm->fWrite
2090 && pStrm->hIoThread == NIL_RTTHREAD)
2091 {
2092 int rc = ssmR3StrmReadMore(pStrm);
2093 if (RT_FAILURE(rc))
2094 return NULL;
2095 continue;
2096 }
2097
2098 int rc = RTSemEventWaitNoResume(pStrm->hEvtHead, 30000);
2099 if ( rc == VERR_SEM_DESTROYED
2100 || pStrm->fTerminating)
2101 return NULL;
2102 }
2103 }
2104}
2105
2106
2107/**
2108 * Flushes the current buffer (both write and read streams).
2109 *
2110 * @param pStrm The stream handle.
2111 */
2112static void ssmR3StrmFlushCurBuf(PSSMSTRM pStrm)
2113{
2114 if (pStrm->pCur)
2115 {
2116 PSSMSTRMBUF pBuf = pStrm->pCur;
2117 pStrm->pCur = NULL;
2118
2119 if (pStrm->fWrite)
2120 {
2121 uint32_t cb = pStrm->off;
2122 pBuf->cb = cb;
2123 pBuf->offStream = pStrm->offCurStream;
2124 if ( pStrm->fChecksummed
2125 && pStrm->offStreamCRC < cb)
2126 pStrm->u32StreamCRC = RTCrc32Process(pStrm->u32StreamCRC,
2127 &pBuf->abData[pStrm->offStreamCRC],
2128 cb - pStrm->offStreamCRC);
2129 pStrm->offCurStream += cb;
2130 pStrm->off = 0;
2131 pStrm->offStreamCRC = 0;
2132
2133 ssmR3StrmPutBuf(pStrm, pBuf);
2134 }
2135 else
2136 {
2137 uint32_t cb = pBuf->cb;
2138 if ( pStrm->fChecksummed
2139 && pStrm->offStreamCRC < cb)
2140 pStrm->u32StreamCRC = RTCrc32Process(pStrm->u32StreamCRC,
2141 &pBuf->abData[pStrm->offStreamCRC],
2142 cb - pStrm->offStreamCRC);
2143 pStrm->offCurStream += cb;
2144 pStrm->off = 0;
2145 pStrm->offStreamCRC = 0;
2146
2147 ssmR3StrmPutFreeBuf(pStrm, pBuf);
2148 }
2149 }
2150}
2151
2152
2153/**
2154 * Flush buffered data.
2155 *
2156 * @returns VBox status code. Returns VINF_EOF if we encounter a buffer with the
2157 * fEndOfStream indicator set.
2158 * @param pStrm The stream handle.
2159 *
2160 * @thread The producer thread.
2161 */
2162static int ssmR3StrmWriteBuffers(PSSMSTRM pStrm)
2163{
2164 Assert(pStrm->fWrite);
2165
2166 /*
2167 * Just return if the stream has a pending error condition.
2168 */
2169 int rc = pStrm->rc;
2170 if (RT_FAILURE(rc))
2171 return rc;
2172
2173 /*
2174 * Grab the pending list and write it out.
2175 */
2176 PSSMSTRMBUF pHead = ASMAtomicXchgPtrT(&pStrm->pHead, NULL, PSSMSTRMBUF);
2177 if (!pHead)
2178 return VINF_SUCCESS;
2179 pHead = ssmR3StrmReverseList(pHead);
2180
2181 while (pHead)
2182 {
2183 /* pop */
2184 PSSMSTRMBUF pCur = pHead;
2185 pHead = pCur->pNext;
2186
2187 /* flush */
2188 rc = pStrm->pOps->pfnIsOk(pStrm->pvUser);
2189 if (RT_SUCCESS(rc))
2190 rc = pStrm->pOps->pfnWrite(pStrm->pvUser, pCur->offStream, &pCur->abData[0], pCur->cb);
2191 if ( RT_FAILURE(rc)
2192 && ssmR3StrmSetError(pStrm, rc))
2193 LogRel(("ssmR3StrmWriteBuffers: Write failed with rc=%Rrc at offStream=%#llx\n", rc, pCur->offStream));
2194
2195 /* free */
2196 bool fEndOfStream = pCur->fEndOfStream;
2197 ssmR3StrmPutFreeBuf(pStrm, pCur);
2198 if (fEndOfStream)
2199 {
2200 Assert(!pHead);
2201 return VINF_EOF;
2202 }
2203 }
2204
2205 return pStrm->rc;
2206}
2207
2208
2209/**
2210 * Closes the stream after first flushing any pending write.
2211 *
2212 * @returns VBox status code.
2213 * @param pStrm The stream handle.
2214 * @param fCancelled Indicates whether the operation was cancelled or
2215 * not.
2216 */
2217static int ssmR3StrmClose(PSSMSTRM pStrm, bool fCancelled)
2218{
2219 /*
2220 * Flush, terminate the I/O thread, and close the stream.
2221 */
2222 if (pStrm->fWrite)
2223 {
2224 ssmR3StrmFlushCurBuf(pStrm);
2225 if (pStrm->hIoThread == NIL_RTTHREAD)
2226 ssmR3StrmWriteBuffers(pStrm);
2227 }
2228
2229 if (pStrm->hIoThread != NIL_RTTHREAD)
2230 ASMAtomicWriteBool(&pStrm->fTerminating, true);
2231
2232 int rc;
2233 if (pStrm->fWrite)
2234 {
2235 if (pStrm->hIoThread != NIL_RTTHREAD)
2236 {
2237 int rc2 = RTSemEventSignal(pStrm->hEvtHead);
2238 AssertLogRelRC(rc2);
2239 int rc3 = RTThreadWait(pStrm->hIoThread, RT_INDEFINITE_WAIT, NULL);
2240 AssertLogRelRC(rc3);
2241 pStrm->hIoThread = NIL_RTTHREAD;
2242 }
2243
2244 rc = pStrm->pOps->pfnClose(pStrm->pvUser, fCancelled);
2245 if (RT_FAILURE(rc))
2246 ssmR3StrmSetError(pStrm, rc);
2247 }
2248 else
2249 {
2250 rc = pStrm->pOps->pfnClose(pStrm->pvUser, fCancelled);
2251 if (RT_FAILURE(rc))
2252 ssmR3StrmSetError(pStrm, rc);
2253
2254 if (pStrm->hIoThread != NIL_RTTHREAD)
2255 {
2256 int rc2 = RTSemEventSignal(pStrm->hEvtFree);
2257 AssertLogRelRC(rc2);
2258 int rc3 = RTThreadWait(pStrm->hIoThread, RT_INDEFINITE_WAIT, NULL);
2259 AssertLogRelRC(rc3);
2260 pStrm->hIoThread = NIL_RTTHREAD;
2261 }
2262 }
2263
2264 pStrm->pOps = NULL;
2265 pStrm->pvUser = NULL;
2266
2267 rc = pStrm->rc;
2268 ssmR3StrmDelete(pStrm);
2269
2270 return rc;
2271}
2272
2273#ifndef SSM_STANDALONE
2274
2275/**
2276 * Stream output routine.
2277 *
2278 * @returns VBox status code.
2279 * @param pStrm The stream handle.
2280 * @param pvBuf What to write.
2281 * @param cbToWrite How much to write.
2282 *
2283 * @thread The producer in a write stream (never the I/O thread).
2284 */
2285static int ssmR3StrmWrite(PSSMSTRM pStrm, const void *pvBuf, size_t cbToWrite)
2286{
2287 AssertReturn(cbToWrite > 0, VINF_SUCCESS);
2288 Assert(pStrm->fWrite);
2289
2290 /*
2291 * Squeeze as much as possible into the current buffer.
2292 */
2293 PSSMSTRMBUF pBuf = pStrm->pCur;
2294 if (RT_LIKELY(pBuf))
2295 {
2296 uint32_t cbLeft = RT_SIZEOFMEMB(SSMSTRMBUF, abData) - pStrm->off;
2297 if (RT_LIKELY(cbLeft >= cbToWrite))
2298 {
2299 memcpy(&pBuf->abData[pStrm->off], pvBuf, cbToWrite);
2300 pStrm->off += (uint32_t)cbToWrite;
2301 return VINF_SUCCESS;
2302 }
2303
2304 if (cbLeft > 0)
2305 {
2306 memcpy(&pBuf->abData[pStrm->off], pvBuf, cbLeft);
2307 pStrm->off += cbLeft;
2308 cbToWrite -= cbLeft;
2309 pvBuf = (uint8_t const *)pvBuf + cbLeft;
2310 }
2311 Assert(pStrm->off == RT_SIZEOFMEMB(SSMSTRMBUF, abData));
2312 }
2313
2314 /*
2315 * Need one or more new buffers.
2316 */
2317 do
2318 {
2319 /*
2320 * Flush the current buffer and replace it with a new one.
2321 */
2322 ssmR3StrmFlushCurBuf(pStrm);
2323 pBuf = ssmR3StrmGetFreeBuf(pStrm);
2324 if (!pBuf)
2325 break;
2326 pStrm->pCur = pBuf;
2327 Assert(pStrm->off == 0);
2328
2329 /*
2330 * Copy data to the buffer.
2331 */
2332 uint32_t cbCopy = RT_SIZEOFMEMB(SSMSTRMBUF, abData);
2333 if (cbCopy > cbToWrite)
2334 cbCopy = (uint32_t)cbToWrite;
2335 memcpy(&pBuf->abData[0], pvBuf, cbCopy);
2336 pStrm->off = cbCopy;
2337 cbToWrite -= cbCopy;
2338 pvBuf = (uint8_t const *)pvBuf + cbCopy;
2339 } while (cbToWrite > 0);
2340
2341 return pStrm->rc;
2342}
2343
2344
2345/**
2346 * Reserves space in the current buffer so the caller can write directly to the
2347 * buffer instead of doing double buffering.
2348 *
2349 * @returns VBox status code
2350 * @param pStrm The stream handle.
2351 * @param cb The amount of buffer space to reserve.
2352 * @param ppb Where to return the pointer.
2353 */
2354static int ssmR3StrmReserveWriteBufferSpace(PSSMSTRM pStrm, size_t cb, uint8_t **ppb)
2355{
2356 Assert(pStrm->fWrite);
2357 Assert(RT_SIZEOFMEMB(SSMSTRMBUF, abData) / 4 >= cb);
2358
2359 /*
2360 * Check if there is room in the current buffer, it not flush it.
2361 */
2362 PSSMSTRMBUF pBuf = pStrm->pCur;
2363 if (pBuf)
2364 {
2365 uint32_t cbLeft = RT_SIZEOFMEMB(SSMSTRMBUF, abData) - pStrm->off;
2366 if (cbLeft >= cb)
2367 {
2368 *ppb = &pBuf->abData[pStrm->off];
2369 return VINF_SUCCESS;
2370 }
2371
2372 ssmR3StrmFlushCurBuf(pStrm);
2373 }
2374
2375 /*
2376 * Get a fresh buffer and return a pointer into it.
2377 */
2378 pBuf = ssmR3StrmGetFreeBuf(pStrm);
2379 if (pBuf)
2380 {
2381 pStrm->pCur = pBuf;
2382 Assert(pStrm->off == 0);
2383 *ppb = &pBuf->abData[0];
2384 }
2385 else
2386 *ppb = NULL; /* make gcc happy. */
2387 return pStrm->rc;
2388}
2389
2390
2391/**
2392 * Commits buffer space reserved by ssmR3StrmReserveWriteBufferSpace.
2393 *
2394 * @returns VBox status code.
2395 * @param pStrm The stream handle.
2396 * @param cb The amount of buffer space to commit. This can be less
2397 * that what was reserved initially.
2398 */
2399static int ssmR3StrmCommitWriteBufferSpace(PSSMSTRM pStrm, size_t cb)
2400{
2401 Assert(pStrm->pCur);
2402 Assert(pStrm->off + cb <= RT_SIZEOFMEMB(SSMSTRMBUF, abData));
2403 pStrm->off += (uint32_t)cb;
2404 return VINF_SUCCESS;
2405}
2406
2407
2408/**
2409 * Marks the end of the stream.
2410 *
2411 * This will cause the I/O thread to quit waiting for more buffers.
2412 *
2413 * @returns VBox status code.
2414 * @param pStrm The stream handle.
2415 */
2416static int ssmR3StrmSetEnd(PSSMSTRM pStrm)
2417{
2418 Assert(pStrm->fWrite);
2419 PSSMSTRMBUF pBuf = pStrm->pCur;
2420 if (RT_UNLIKELY(!pStrm->pCur))
2421 {
2422 pBuf = ssmR3StrmGetFreeBuf(pStrm);
2423 if (!pBuf)
2424 return pStrm->rc;
2425 pStrm->pCur = pBuf;
2426 Assert(pStrm->off == 0);
2427 }
2428 pBuf->fEndOfStream = true;
2429 ssmR3StrmFlushCurBuf(pStrm);
2430 return VINF_SUCCESS;
2431}
2432
2433#endif /* !SSM_STANDALONE */
2434
2435/**
2436 * Read more from the stream.
2437 *
2438 * @returns VBox status code. VERR_EOF gets translated into VINF_EOF.
2439 * @param pStrm The stream handle.
2440 *
2441 * @thread The I/O thread when we got one, otherwise the stream user.
2442 */
2443static int ssmR3StrmReadMore(PSSMSTRM pStrm)
2444{
2445 int rc;
2446 Log6(("ssmR3StrmReadMore:\n"));
2447
2448 /*
2449 * Undo seek done by ssmR3StrmPeekAt.
2450 */
2451 if (pStrm->fNeedSeek)
2452 {
2453 rc = pStrm->pOps->pfnSeek(pStrm->pvUser, pStrm->offNeedSeekTo, RTFILE_SEEK_BEGIN, NULL);
2454 if (RT_FAILURE(rc))
2455 {
2456 if (ssmR3StrmSetError(pStrm, rc))
2457 LogRel(("ssmR3StrmReadMore: RTFileSeek(,%#llx,) failed with rc=%Rrc\n", pStrm->offNeedSeekTo, rc));
2458 return rc;
2459 }
2460 pStrm->fNeedSeek = false;
2461 pStrm->offNeedSeekTo = UINT64_MAX;
2462 }
2463
2464 /*
2465 * Get a free buffer and try fill it up.
2466 */
2467 PSSMSTRMBUF pBuf = ssmR3StrmGetFreeBuf(pStrm);
2468 if (!pBuf)
2469 return pStrm->rc;
2470
2471 pBuf->offStream = pStrm->pOps->pfnTell(pStrm->pvUser);
2472 size_t cbRead = sizeof(pBuf->abData);
2473 rc = pStrm->pOps->pfnRead(pStrm->pvUser, pBuf->offStream, &pBuf->abData[0], cbRead, &cbRead);
2474 if ( RT_SUCCESS(rc)
2475 && cbRead > 0)
2476 {
2477 pBuf->cb = (uint32_t)cbRead;
2478 pBuf->fEndOfStream = false;
2479 Log6(("ssmR3StrmReadMore: %#010llx %#x\n", pBuf->offStream, pBuf->cb));
2480 ssmR3StrmPutBuf(pStrm, pBuf);
2481 }
2482 else if ( ( RT_SUCCESS_NP(rc)
2483 && cbRead == 0)
2484 || rc == VERR_EOF)
2485 {
2486 pBuf->cb = 0;
2487 pBuf->fEndOfStream = true;
2488 Log6(("ssmR3StrmReadMore: %#010llx 0 EOF!\n", pBuf->offStream));
2489 ssmR3StrmPutBuf(pStrm, pBuf);
2490 rc = VINF_EOF;
2491 }
2492 else
2493 {
2494 Log6(("ssmR3StrmReadMore: %#010llx rc=%Rrc!\n", pBuf->offStream, rc));
2495 if (ssmR3StrmSetError(pStrm, rc))
2496 LogRel(("ssmR3StrmReadMore: RTFileRead(,,%#x,) -> %Rrc at offset %#llx\n",
2497 sizeof(pBuf->abData), rc, pBuf->offStream));
2498 ssmR3StrmPutFreeBuf(pStrm, pBuf);
2499 }
2500 return rc;
2501}
2502
2503
2504/**
2505 * Stream input routine.
2506 *
2507 * @returns VBox status code.
2508 * @param pStrm The stream handle.
2509 * @param pvBuf Where to put what we read.
2510 * @param cbToRead How much to read.
2511 */
2512static int ssmR3StrmRead(PSSMSTRM pStrm, void *pvBuf, size_t cbToRead)
2513{
2514 AssertReturn(cbToRead > 0, VINF_SUCCESS);
2515 Assert(!pStrm->fWrite);
2516
2517 /*
2518 * Read from the current buffer if we got one.
2519 */
2520 PSSMSTRMBUF pBuf = pStrm->pCur;
2521 if (RT_LIKELY(pBuf))
2522 {
2523 Assert(pStrm->off <= pBuf->cb);
2524 uint32_t cbLeft = pBuf->cb - pStrm->off;
2525 if (cbLeft >= cbToRead)
2526 {
2527 memcpy(pvBuf, &pBuf->abData[pStrm->off], cbToRead);
2528 pStrm->off += (uint32_t)cbToRead;
2529 Assert(pStrm->off <= pBuf->cb);
2530 return VINF_SUCCESS;
2531 }
2532 if (cbLeft)
2533 {
2534 memcpy(pvBuf, &pBuf->abData[pStrm->off], cbLeft);
2535 pStrm->off += cbLeft;
2536 cbToRead -= cbLeft;
2537 pvBuf = (uint8_t *)pvBuf + cbLeft;
2538 }
2539 else if (pBuf->fEndOfStream)
2540 return VERR_EOF;
2541 Assert(pStrm->off == pBuf->cb);
2542 }
2543
2544 /*
2545 * Get more buffers from the stream.
2546 */
2547 int rc = VINF_SUCCESS;
2548 do
2549 {
2550 /*
2551 * Check for EOF first - never flush the EOF buffer.
2552 */
2553 if ( pBuf
2554 && pBuf->fEndOfStream)
2555 return VERR_EOF;
2556
2557 /*
2558 * Flush the current buffer and get the next one.
2559 */
2560 ssmR3StrmFlushCurBuf(pStrm);
2561 pBuf = ssmR3StrmGetBuf(pStrm);
2562 if (!pBuf)
2563 {
2564 rc = pStrm->rc;
2565 break;
2566 }
2567 pStrm->pCur = pBuf;
2568 Assert(pStrm->off == 0);
2569 Assert(pStrm->offCurStream == pBuf->offStream);
2570 if (!pBuf->cb)
2571 {
2572 Assert(pBuf->fEndOfStream);
2573 return VERR_EOF;
2574 }
2575
2576 /*
2577 * Read data from the buffer.
2578 */
2579 uint32_t cbCopy = pBuf->cb;
2580 if (cbCopy > cbToRead)
2581 cbCopy = (uint32_t)cbToRead;
2582 memcpy(pvBuf, &pBuf->abData[0], cbCopy);
2583 pStrm->off = cbCopy;
2584 cbToRead -= cbCopy;
2585 pvBuf = (uint8_t *)pvBuf + cbCopy;
2586 Assert(!pStrm->pCur || pStrm->off <= pStrm->pCur->cb);
2587 } while (cbToRead > 0);
2588
2589 return rc;
2590}
2591
2592
2593/**
2594 * Reads data from the stream but instead of copying it to some output buffer
2595 * the caller gets a pointer to into the current stream buffer.
2596 *
2597 * The returned pointer becomes invalid after the next stream operation!
2598 *
2599 * @returns Pointer to the read data residing in the stream buffer. NULL is
2600 * returned if the request amount of data isn't available in the
2601 * buffer. The caller must fall back on ssmR3StrmRead when this
2602 * happens.
2603 *
2604 * @param pStrm The stream handle.
2605 * @param cbToRead The number of bytes to tread.
2606 */
2607static uint8_t const *ssmR3StrmReadDirect(PSSMSTRM pStrm, size_t cbToRead)
2608{
2609 AssertReturn(cbToRead > 0, VINF_SUCCESS);
2610 Assert(!pStrm->fWrite);
2611
2612 /*
2613 * Too lazy to fetch more data for the odd case that we're
2614 * exactly at the boundary between two buffers.
2615 */
2616 PSSMSTRMBUF pBuf = pStrm->pCur;
2617 if (RT_LIKELY(pBuf))
2618 {
2619 Assert(pStrm->off <= pBuf->cb);
2620 uint32_t cbLeft = pBuf->cb - pStrm->off;
2621 if (cbLeft >= cbToRead)
2622 {
2623 uint8_t const *pb = &pBuf->abData[pStrm->off];
2624 pStrm->off += (uint32_t)cbToRead;
2625 Assert(pStrm->off <= pBuf->cb);
2626 return pb;
2627 }
2628 }
2629 return NULL;
2630}
2631
2632
2633#ifndef SSM_STANDALONE
2634/**
2635 * Check that the stream is OK and flush data that is getting old
2636 *
2637 * The checking is mainly for testing for cancellation and out of space
2638 * conditions.
2639 *
2640 * @returns VBox status code.
2641 * @param pStrm The stream handle.
2642 */
2643static int ssmR3StrmCheckAndFlush(PSSMSTRM pStrm)
2644{
2645 int rc = pStrm->pOps->pfnIsOk(pStrm->pvUser);
2646 if (RT_FAILURE(rc))
2647 return rc;
2648
2649 if ( pStrm->fWrite
2650 && pStrm->hIoThread != NIL_RTTHREAD
2651 && !pStrm->pHead /* the worker is probably idle */
2652 && pStrm->pCur
2653 && RTTimeNanoTS() - pStrm->pCur->NanoTS > 500*1000*1000 /* 0.5s */
2654 )
2655 ssmR3StrmFlushCurBuf(pStrm);
2656 return VINF_SUCCESS;
2657}
2658#endif /* !SSM_STANDALONE */
2659
2660/**
2661 * Tell current stream position.
2662 *
2663 * @returns stream position.
2664 * @param pStrm The stream handle.
2665 */
2666static uint64_t ssmR3StrmTell(PSSMSTRM pStrm)
2667{
2668 return pStrm->offCurStream + pStrm->off;
2669}
2670
2671
2672/**
2673 * Gets the intermediate stream CRC up to the current position.
2674 *
2675 * @returns CRC.
2676 * @param pStrm The stream handle.
2677 */
2678static uint32_t ssmR3StrmCurCRC(PSSMSTRM pStrm)
2679{
2680 if (!pStrm->fChecksummed)
2681 return 0;
2682 if (pStrm->offStreamCRC < pStrm->off)
2683 {
2684 PSSMSTRMBUF pBuf = pStrm->pCur; Assert(pBuf);
2685 pStrm->u32StreamCRC = RTCrc32Process(pStrm->u32StreamCRC, &pBuf->abData[pStrm->offStreamCRC], pStrm->off - pStrm->offStreamCRC);
2686 pStrm->offStreamCRC = pStrm->off;
2687 }
2688 else
2689 Assert(pStrm->offStreamCRC == pStrm->off);
2690 return pStrm->u32StreamCRC;
2691}
2692
2693
2694/**
2695 * Gets the final stream CRC up to the current position.
2696 *
2697 * @returns CRC.
2698 * @param pStrm The stream handle.
2699 */
2700static uint32_t ssmR3StrmFinalCRC(PSSMSTRM pStrm)
2701{
2702 if (!pStrm->fChecksummed)
2703 return 0;
2704 return RTCrc32Finish(ssmR3StrmCurCRC(pStrm));
2705}
2706
2707
2708/**
2709 * Disables checksumming of the stream.
2710 *
2711 * @param pStrm The stream handle.
2712 */
2713static void ssmR3StrmDisableChecksumming(PSSMSTRM pStrm)
2714{
2715 pStrm->fChecksummed = false;
2716}
2717
2718
2719/**
2720 * Used by SSMR3Seek to position the stream at the new unit.
2721 *
2722 * @returns VBox status code.
2723 * @param pStrm The strem handle.
2724 * @param off The seek offset.
2725 * @param uMethod The seek method.
2726 * @param u32CurCRC The current CRC at the seek position.
2727 */
2728static int ssmR3StrmSeek(PSSMSTRM pStrm, int64_t off, uint32_t uMethod, uint32_t u32CurCRC)
2729{
2730 AssertReturn(!pStrm->fWrite, VERR_NOT_SUPPORTED);
2731 AssertReturn(pStrm->hIoThread == NIL_RTTHREAD, VERR_WRONG_ORDER);
2732
2733 uint64_t offStream;
2734 int rc = pStrm->pOps->pfnSeek(pStrm->pvUser, off, uMethod, &offStream);
2735 if (RT_SUCCESS(rc))
2736 {
2737 pStrm->fNeedSeek = false;
2738 pStrm->offNeedSeekTo= UINT64_MAX;
2739 pStrm->offCurStream = offStream;
2740 pStrm->off = 0;
2741 pStrm->offStreamCRC = 0;
2742 if (pStrm->fChecksummed)
2743 pStrm->u32StreamCRC = u32CurCRC;
2744 if (pStrm->pCur)
2745 {
2746 ssmR3StrmPutFreeBuf(pStrm, pStrm->pCur);
2747 pStrm->pCur = NULL;
2748 }
2749 }
2750 return rc;
2751}
2752
2753
2754#ifndef SSM_STANDALONE
2755/**
2756 * Skip some bytes in the stream.
2757 *
2758 * This is only used if someone didn't read all of their data in the V1 format,
2759 * so don't bother making this very efficient yet.
2760 *
2761 * @returns VBox status code.
2762 * @param pStrm The stream handle.
2763 * @param offDst The destination offset.
2764 */
2765static int ssmR3StrmSkipTo(PSSMSTRM pStrm, uint64_t offDst)
2766{
2767 /* dead simple - lazy bird! */
2768 for (;;)
2769 {
2770 uint64_t offCur = ssmR3StrmTell(pStrm);
2771 AssertReturn(offCur <= offDst, VERR_SSM_SKIP_BACKWARDS);
2772 if (offCur == offDst)
2773 return VINF_SUCCESS;
2774
2775 uint8_t abBuf[4096];
2776 size_t cbToRead = RT_MIN(sizeof(abBuf), offDst - offCur);
2777 int rc = ssmR3StrmRead(pStrm, abBuf, cbToRead);
2778 if (RT_FAILURE(rc))
2779 return rc;
2780 }
2781}
2782#endif /* !SSM_STANDALONE */
2783
2784
2785/**
2786 * Get the size of the file.
2787 *
2788 * This does not work for non-file streams!
2789 *
2790 * @returns The file size, or UINT64_MAX if not a file stream.
2791 * @param pStrm The stream handle.
2792 */
2793static uint64_t ssmR3StrmGetSize(PSSMSTRM pStrm)
2794{
2795 uint64_t cbFile;
2796 int rc = pStrm->pOps->pfnSize(pStrm->pvUser, &cbFile);
2797 AssertLogRelRCReturn(rc, UINT64_MAX);
2798 return cbFile;
2799}
2800
2801
2802/***
2803 * Tests if the stream is a file stream or not.
2804 *
2805 * @returns true / false.
2806 * @param pStrm The stream handle.
2807 */
2808static bool ssmR3StrmIsFile(PSSMSTRM pStrm)
2809{
2810 return pStrm->pOps == &g_ssmR3FileOps;
2811}
2812
2813
2814/**
2815 * Peeks at data in a file stream without buffering anything (or upsetting
2816 * the buffering for that matter).
2817 *
2818 * @returns VBox status code.
2819 * @param pStrm The stream handle
2820 * @param off The offset to start peeking at. Use a negative offset to
2821 * peek at something relative to the end of the file.
2822 * @param pvBuf Output buffer.
2823 * @param cbToRead How much to read.
2824 * @param poff Where to optionally store the position. Useful when
2825 * using a negative off.
2826 *
2827 * @remarks Failures occurring while peeking will not be raised on the stream.
2828 */
2829static int ssmR3StrmPeekAt(PSSMSTRM pStrm, RTFOFF off, void *pvBuf, size_t cbToRead, uint64_t *poff)
2830{
2831 AssertReturn(!pStrm->fWrite, VERR_NOT_SUPPORTED);
2832 AssertReturn(pStrm->hIoThread == NIL_RTTHREAD, VERR_WRONG_ORDER);
2833
2834 if (!pStrm->fNeedSeek)
2835 {
2836 pStrm->fNeedSeek = true;
2837 pStrm->offNeedSeekTo = pStrm->offCurStream + (pStrm->pCur ? pStrm->pCur->cb : 0);
2838 }
2839 uint64_t offActual;
2840 int rc = pStrm->pOps->pfnSeek(pStrm->pvUser, off, off >= 0 ? RTFILE_SEEK_BEGIN : RTFILE_SEEK_END, &offActual);
2841 if (RT_SUCCESS(rc))
2842 {
2843 if (poff)
2844 *poff = offActual;
2845 rc = pStrm->pOps->pfnRead(pStrm->pvUser, offActual, pvBuf, cbToRead, NULL);
2846 }
2847
2848 return rc;
2849}
2850
2851#ifndef SSM_STANDALONE
2852
2853/**
2854 * The I/O thread.
2855 *
2856 * @returns VINF_SUCCESS (ignored).
2857 * @param hSelf The thread handle.
2858 * @param pvStrm The stream handle.
2859 */
2860static DECLCALLBACK(int) ssmR3StrmIoThread(RTTHREAD hSelf, void *pvStrm)
2861{
2862 PSSMSTRM pStrm = (PSSMSTRM)pvStrm;
2863 ASMAtomicWriteHandle(&pStrm->hIoThread, hSelf); /* paranoia */
2864
2865 Log(("ssmR3StrmIoThread: starts working\n"));
2866 if (pStrm->fWrite)
2867 {
2868 /*
2869 * Write until error or terminated.
2870 */
2871 for (;;)
2872 {
2873 int rc = ssmR3StrmWriteBuffers(pStrm);
2874 if ( RT_FAILURE(rc)
2875 || rc == VINF_EOF)
2876 {
2877 Log(("ssmR3StrmIoThread: quitting writing with rc=%Rrc.\n", rc));
2878 break;
2879 }
2880 if (RT_FAILURE(pStrm->rc))
2881 {
2882 Log(("ssmR3StrmIoThread: quitting writing with stream rc=%Rrc\n", pStrm->rc));
2883 break;
2884 }
2885
2886 if (ASMAtomicReadBool(&pStrm->fTerminating))
2887 {
2888 if (!ASMAtomicReadPtrT(&pStrm->pHead, PSSMSTRMBUF))
2889 {
2890 Log(("ssmR3StrmIoThread: quitting writing because of pending termination.\n"));
2891 break;
2892 }
2893 Log(("ssmR3StrmIoThread: postponing termination because of pending buffers.\n"));
2894 }
2895 else if (!ASMAtomicReadPtrT(&pStrm->pHead, PSSMSTRMBUF))
2896 {
2897 rc = RTSemEventWait(pStrm->hEvtHead, RT_INDEFINITE_WAIT);
2898 AssertLogRelRC(rc);
2899 }
2900 }
2901
2902 if (!ASMAtomicReadBool(&pStrm->fTerminating))
2903 RTSemEventSignal(pStrm->hEvtFree);
2904 }
2905 else
2906 {
2907 /*
2908 * Read until end of file, error or termination.
2909 */
2910 for (;;)
2911 {
2912 if (ASMAtomicReadBool(&pStrm->fTerminating))
2913 {
2914 Log(("ssmR3StrmIoThread: quitting reading because of pending termination.\n"));
2915 break;
2916 }
2917
2918 int rc = ssmR3StrmReadMore(pStrm);
2919 if ( RT_FAILURE(rc)
2920 || rc == VINF_EOF)
2921 {
2922 Log(("ssmR3StrmIoThread: quitting reading with rc=%Rrc\n", rc));
2923 break;
2924 }
2925 if (RT_FAILURE(pStrm->rc))
2926 {
2927 Log(("ssmR3StrmIoThread: quitting reading with stream rc=%Rrc\n", pStrm->rc));
2928 break;
2929 }
2930 }
2931
2932 if (!ASMAtomicReadBool(&pStrm->fTerminating))
2933 RTSemEventSignal(pStrm->hEvtHead);
2934 }
2935
2936 return VINF_SUCCESS;
2937}
2938
2939
2940/**
2941 * Starts the I/O thread for the specified stream.
2942 *
2943 * @param pStrm The stream handle.
2944 */
2945static void ssmR3StrmStartIoThread(PSSMSTRM pStrm)
2946{
2947 Assert(pStrm->hIoThread == NIL_RTTHREAD);
2948
2949 RTTHREAD hThread;
2950 int rc = RTThreadCreate(&hThread, ssmR3StrmIoThread, pStrm, 0, RTTHREADTYPE_IO, RTTHREADFLAGS_WAITABLE, "SSM-IO");
2951 AssertRCReturnVoid(rc);
2952 ASMAtomicWriteHandle(&pStrm->hIoThread, hThread); /* paranoia */
2953}
2954
2955#endif /* !SSM_STANDALONE */
2956
2957/**
2958 * Works the progress calculation for non-live saves and restores.
2959 *
2960 * @param pSSM The SSM handle.
2961 * @param cbAdvance Number of bytes to advance (with in the current unit).
2962 */
2963static void ssmR3ProgressByByte(PSSMHANDLE pSSM, uint64_t cbAdvance)
2964{
2965 if (!pSSM->fLiveSave)
2966 {
2967 /* Can't advance it beyond the estimated end of the unit. */
2968 uint64_t cbLeft = pSSM->offEstUnitEnd - pSSM->offEst;
2969 if (cbAdvance > cbLeft)
2970 cbAdvance = cbLeft;
2971 pSSM->offEst += cbAdvance;
2972
2973 /* uPercentPrepare% prepare, xx% exec, uPercentDone% done+crc. This is not
2974 quite right for live save, but the non-live stage there is very short. */
2975 while ( pSSM->offEst >= pSSM->offEstProgress
2976 && pSSM->uPercent <= 100 - pSSM->uPercentDone)
2977 {
2978 if (pSSM->pfnProgress)
2979 pSSM->pfnProgress(pSSM->pVM, pSSM->uPercent, pSSM->pvUser);
2980 pSSM->uPercent++;
2981 pSSM->offEstProgress = (pSSM->uPercent - pSSM->uPercentPrepare - pSSM->uPercentLive) * pSSM->cbEstTotal
2982 / (100 - pSSM->uPercentDone - pSSM->uPercentPrepare - pSSM->uPercentLive);
2983 }
2984 }
2985}
2986
2987
2988#ifndef SSM_STANDALONE
2989/**
2990 * Makes the SSM operation cancellable or not (via SSMR3Cancel).
2991 *
2992 * @param pVM The VM handle.
2993 * @param pSSM The saved state handle. (SSMHANDLE::rc may be set.)
2994 * @param fCancellable The new state.
2995 */
2996static void ssmR3SetCancellable(PVM pVM, PSSMHANDLE pSSM, bool fCancellable)
2997{
2998 RTCritSectEnter(&pVM->ssm.s.CancelCritSect);
2999 if (fCancellable)
3000 {
3001 Assert(!pVM->ssm.s.pSSM);
3002 pVM->ssm.s.pSSM = pSSM;
3003 }
3004 else
3005 {
3006 if (pVM->ssm.s.pSSM == pSSM)
3007 pVM->ssm.s.pSSM = NULL;
3008
3009 uint32_t fCancelled = ASMAtomicUoReadU32(&pSSM->fCancelled);
3010 if ( fCancelled == SSMHANDLE_CANCELLED
3011 && RT_SUCCESS(pSSM->rc))
3012 pSSM->rc = VERR_SSM_CANCELLED;
3013 }
3014
3015 RTCritSectLeave(&pVM->ssm.s.CancelCritSect);
3016}
3017#endif /* !SSM_STANDALONE */
3018
3019
3020/**
3021 * Gets the host bit count of the saved state.
3022 *
3023 * Works for on both save and load handles.
3024 *
3025 * @returns 32 or 64.
3026 * @param pSSM The saved state handle.
3027 */
3028DECLINLINE(uint32_t) ssmR3GetHostBits(PSSMHANDLE pSSM)
3029{
3030 if (pSSM->enmOp >= SSMSTATE_LOAD_PREP)
3031 {
3032 uint32_t cBits = pSSM->u.Read.cHostBits;
3033 if (cBits)
3034 return cBits;
3035 }
3036 return HC_ARCH_BITS;
3037}
3038
3039
3040/**
3041 * Saved state origins on a host using 32-bit MSC?
3042 *
3043 * Works for on both save and load handles.
3044 *
3045 * @returns true/false.
3046 * @param pSSM The saved state handle.
3047 */
3048DECLINLINE(bool) ssmR3IsHostMsc32(PSSMHANDLE pSSM)
3049{
3050 if (pSSM->enmOp >= SSMSTATE_LOAD_PREP)
3051 return pSSM->u.Read.fIsHostMsc32;
3052 return SSM_HOST_IS_MSC_32;
3053}
3054
3055#ifndef SSM_STANDALONE
3056
3057/**
3058 * Finishes a data unit.
3059 * All buffers and compressor instances are flushed and destroyed.
3060 *
3061 * @returns VBox status.
3062 * @param pSSM The saved state handle.
3063 */
3064static int ssmR3DataWriteFinish(PSSMHANDLE pSSM)
3065{
3066 //Log2(("ssmR3DataWriteFinish: %#010llx start\n", ssmR3StrmTell(&pSSM->Strm)));
3067 int rc = ssmR3DataFlushBuffer(pSSM);
3068 if (RT_SUCCESS(rc))
3069 {
3070 pSSM->offUnit = UINT64_MAX;
3071 return VINF_SUCCESS;
3072 }
3073
3074 if (RT_SUCCESS(pSSM->rc))
3075 pSSM->rc = rc;
3076 Log2(("ssmR3DataWriteFinish: failure rc=%Rrc\n", rc));
3077 return rc;
3078}
3079
3080
3081/**
3082 * Begins writing the data of a data unit.
3083 *
3084 * Errors are signalled via pSSM->rc.
3085 *
3086 * @param pSSM The saved state handle.
3087 */
3088static void ssmR3DataWriteBegin(PSSMHANDLE pSSM)
3089{
3090 pSSM->offUnit = 0;
3091}
3092
3093
3094/**
3095 * Writes a record to the current data item in the saved state file.
3096 *
3097 * @returns VBox status code. Sets pSSM->rc on failure.
3098 * @param pSSM The saved state handle.
3099 * @param pvBuf The bits to write.
3100 * @param cbBuf The number of bytes to write.
3101 */
3102static int ssmR3DataWriteRaw(PSSMHANDLE pSSM, const void *pvBuf, size_t cbBuf)
3103{
3104 Log2(("ssmR3DataWriteRaw: %08llx|%08llx: pvBuf=%p cbBuf=%#x %.*Rhxs%s\n",
3105 ssmR3StrmTell(&pSSM->Strm), pSSM->offUnit, pvBuf, cbBuf, RT_MIN(cbBuf, SSM_LOG_BYTES), pvBuf, cbBuf > SSM_LOG_BYTES ? "..." : ""));
3106
3107 /*
3108 * Check that everything is fine.
3109 */
3110 if (RT_FAILURE(pSSM->rc))
3111 return pSSM->rc;
3112
3113 /*
3114 * Write the data item in 1MB chunks for progress indicator reasons.
3115 */
3116 while (cbBuf > 0)
3117 {
3118 size_t cbChunk = RT_MIN(cbBuf, _1M);
3119 int rc = ssmR3StrmWrite(&pSSM->Strm, pvBuf, cbChunk);
3120 if (RT_FAILURE(rc))
3121 return rc;
3122 pSSM->offUnit += cbChunk;
3123 cbBuf -= cbChunk;
3124 pvBuf = (char *)pvBuf + cbChunk;
3125 }
3126
3127 return VINF_SUCCESS;
3128}
3129
3130
3131/**
3132 * Writes a record header for the specified amount of data.
3133 *
3134 * @returns VBox status code. Sets pSSM->rc on failure.
3135 * @param pSSM The saved state handle
3136 * @param cb The amount of data.
3137 * @param u8TypeAndFlags The record type and flags.
3138 */
3139static int ssmR3DataWriteRecHdr(PSSMHANDLE pSSM, size_t cb, uint8_t u8TypeAndFlags)
3140{
3141 size_t cbHdr;
3142 uint8_t abHdr[8];
3143 abHdr[0] = u8TypeAndFlags;
3144 if (cb < 0x80)
3145 {
3146 cbHdr = 2;
3147 abHdr[1] = (uint8_t)cb;
3148 }
3149 else if (cb < 0x00000800)
3150 {
3151 cbHdr = 3;
3152 abHdr[1] = (uint8_t)(0xc0 | (cb >> 6));
3153 abHdr[2] = (uint8_t)(0x80 | (cb & 0x3f));
3154 }
3155 else if (cb < 0x00010000)
3156 {
3157 cbHdr = 4;
3158 abHdr[1] = (uint8_t)(0xe0 | (cb >> 12));
3159 abHdr[2] = (uint8_t)(0x80 | ((cb >> 6) & 0x3f));
3160 abHdr[3] = (uint8_t)(0x80 | (cb & 0x3f));
3161 }
3162 else if (cb < 0x00200000)
3163 {
3164 cbHdr = 5;
3165 abHdr[1] = (uint8_t)(0xf0 | (cb >> 18));
3166 abHdr[2] = (uint8_t)(0x80 | ((cb >> 12) & 0x3f));
3167 abHdr[3] = (uint8_t)(0x80 | ((cb >> 6) & 0x3f));
3168 abHdr[4] = (uint8_t)(0x80 | (cb & 0x3f));
3169 }
3170 else if (cb < 0x04000000)
3171 {
3172 cbHdr = 6;
3173 abHdr[1] = (uint8_t)(0xf8 | (cb >> 24));
3174 abHdr[2] = (uint8_t)(0x80 | ((cb >> 18) & 0x3f));
3175 abHdr[3] = (uint8_t)(0x80 | ((cb >> 12) & 0x3f));
3176 abHdr[4] = (uint8_t)(0x80 | ((cb >> 6) & 0x3f));
3177 abHdr[5] = (uint8_t)(0x80 | (cb & 0x3f));
3178 }
3179 else if (cb <= 0x7fffffff)
3180 {
3181 cbHdr = 7;
3182 abHdr[1] = (uint8_t)(0xfc | (cb >> 30));
3183 abHdr[2] = (uint8_t)(0x80 | ((cb >> 24) & 0x3f));
3184 abHdr[3] = (uint8_t)(0x80 | ((cb >> 18) & 0x3f));
3185 abHdr[4] = (uint8_t)(0x80 | ((cb >> 12) & 0x3f));
3186 abHdr[5] = (uint8_t)(0x80 | ((cb >> 6) & 0x3f));
3187 abHdr[6] = (uint8_t)(0x80 | (cb & 0x3f));
3188 }
3189 else
3190 AssertLogRelMsgFailedReturn(("cb=%#x\n", cb), pSSM->rc = VERR_SSM_MEM_TOO_BIG);
3191
3192 Log3(("ssmR3DataWriteRecHdr: %08llx|%08llx/%08x: Type=%02x fImportant=%RTbool cbHdr=%u\n",
3193 ssmR3StrmTell(&pSSM->Strm) + cbHdr, pSSM->offUnit + cbHdr, cb, u8TypeAndFlags & SSM_REC_TYPE_MASK, !!(u8TypeAndFlags & SSM_REC_FLAGS_IMPORTANT), cbHdr));
3194
3195 return ssmR3DataWriteRaw(pSSM, &abHdr[0], cbHdr);
3196}
3197
3198
3199/**
3200 * Worker that flushes the buffered data.
3201 *
3202 * @returns VBox status code. Will set pSSM->rc on error.
3203 * @param pSSM The saved state handle.
3204 */
3205static int ssmR3DataFlushBuffer(PSSMHANDLE pSSM)
3206{
3207 /*
3208 * Check how much there current is in the buffer.
3209 */
3210 uint32_t cb = pSSM->u.Write.offDataBuffer;
3211 if (!cb)
3212 return pSSM->rc;
3213 pSSM->u.Write.offDataBuffer = 0;
3214
3215 /*
3216 * Write a record header and then the data.
3217 * (No need for fancy optimizations here any longer since the stream is
3218 * fully buffered.)
3219 */
3220 int rc = ssmR3DataWriteRecHdr(pSSM, cb, SSM_REC_FLAGS_FIXED | SSM_REC_FLAGS_IMPORTANT | SSM_REC_TYPE_RAW);
3221 if (RT_SUCCESS(rc))
3222 rc = ssmR3DataWriteRaw(pSSM, pSSM->u.Write.abDataBuffer, cb);
3223 ssmR3ProgressByByte(pSSM, cb);
3224 return rc;
3225}
3226
3227
3228/**
3229 * ssmR3DataWrite worker that writes big stuff.
3230 *
3231 * @returns VBox status code
3232 * @param pSSM The saved state handle.
3233 * @param pvBuf The bits to write.
3234 * @param cbBuf The number of bytes to write.
3235 */
3236static int ssmR3DataWriteBig(PSSMHANDLE pSSM, const void *pvBuf, size_t cbBuf)
3237{
3238 int rc = ssmR3DataFlushBuffer(pSSM);
3239 if (RT_SUCCESS(rc))
3240 {
3241 /*
3242 * Split it up into compression blocks.
3243 */
3244 for (;;)
3245 {
3246 AssertCompile(SSM_ZIP_BLOCK_SIZE == PAGE_SIZE);
3247 if ( cbBuf >= SSM_ZIP_BLOCK_SIZE
3248 && ( ((uintptr_t)pvBuf & 0xf)
3249 || !ASMMemIsZeroPage(pvBuf))
3250 )
3251 {
3252 /*
3253 * Compress it.
3254 */
3255 AssertCompile(1 + 3 + 1 + SSM_ZIP_BLOCK_SIZE < 0x00010000);
3256 uint8_t *pb;
3257 rc = ssmR3StrmReserveWriteBufferSpace(&pSSM->Strm, 1 + 3 + 1 + SSM_ZIP_BLOCK_SIZE, &pb);
3258 if (RT_FAILURE(rc))
3259 break;
3260 size_t cbRec = SSM_ZIP_BLOCK_SIZE - (SSM_ZIP_BLOCK_SIZE / 16);
3261 rc = RTZipBlockCompress(RTZIPTYPE_LZF, RTZIPLEVEL_FAST, 0 /*fFlags*/,
3262 pvBuf, SSM_ZIP_BLOCK_SIZE,
3263 pb + 1 + 3 + 1, cbRec, &cbRec);
3264 if (RT_SUCCESS(rc))
3265 {
3266 pb[0] = SSM_REC_FLAGS_FIXED | SSM_REC_FLAGS_IMPORTANT | SSM_REC_TYPE_RAW_LZF;
3267 pb[4] = SSM_ZIP_BLOCK_SIZE / _1K;
3268 cbRec += 1;
3269 }
3270 else
3271 {
3272 pb[0] = SSM_REC_FLAGS_FIXED | SSM_REC_FLAGS_IMPORTANT | SSM_REC_TYPE_RAW;
3273 memcpy(&pb[4], pvBuf, SSM_ZIP_BLOCK_SIZE);
3274 cbRec = SSM_ZIP_BLOCK_SIZE;
3275 }
3276 pb[1] = (uint8_t)(0xe0 | ( cbRec >> 12));
3277 pb[2] = (uint8_t)(0x80 | ((cbRec >> 6) & 0x3f));
3278 pb[3] = (uint8_t)(0x80 | ( cbRec & 0x3f));
3279 cbRec += 1 + 3;
3280 rc = ssmR3StrmCommitWriteBufferSpace(&pSSM->Strm, cbRec);
3281 if (RT_FAILURE(rc))
3282 break;
3283
3284 pSSM->offUnit += cbRec;
3285 ssmR3ProgressByByte(pSSM, SSM_ZIP_BLOCK_SIZE);
3286
3287 /* advance */
3288 if (cbBuf == SSM_ZIP_BLOCK_SIZE)
3289 return VINF_SUCCESS;
3290 cbBuf -= SSM_ZIP_BLOCK_SIZE;
3291 pvBuf = (uint8_t const*)pvBuf + SSM_ZIP_BLOCK_SIZE;
3292 }
3293 else if (cbBuf >= SSM_ZIP_BLOCK_SIZE)
3294 {
3295 /*
3296 * Zero block.
3297 */
3298 uint8_t abRec[3];
3299 abRec[0] = SSM_REC_FLAGS_FIXED | SSM_REC_FLAGS_IMPORTANT | SSM_REC_TYPE_RAW_ZERO;
3300 abRec[1] = 1;
3301 abRec[2] = SSM_ZIP_BLOCK_SIZE / _1K;
3302 Log3(("ssmR3DataWriteBig: %08llx|%08llx/%08x: ZERO\n", ssmR3StrmTell(&pSSM->Strm) + 2, pSSM->offUnit + 2, 1));
3303 rc = ssmR3DataWriteRaw(pSSM, &abRec[0], sizeof(abRec));
3304 if (RT_FAILURE(rc))
3305 break;
3306
3307 /* advance */
3308 ssmR3ProgressByByte(pSSM, SSM_ZIP_BLOCK_SIZE);
3309 if (cbBuf == SSM_ZIP_BLOCK_SIZE)
3310 return VINF_SUCCESS;
3311 cbBuf -= SSM_ZIP_BLOCK_SIZE;
3312 pvBuf = (uint8_t const*)pvBuf + SSM_ZIP_BLOCK_SIZE;
3313 }
3314 else
3315 {
3316 /*
3317 * Less than one block left, store it the simple way.
3318 */
3319 rc = ssmR3DataWriteRecHdr(pSSM, cbBuf, SSM_REC_FLAGS_FIXED | SSM_REC_FLAGS_IMPORTANT | SSM_REC_TYPE_RAW);
3320 if (RT_SUCCESS(rc))
3321 rc = ssmR3DataWriteRaw(pSSM, pvBuf, cbBuf);
3322 ssmR3ProgressByByte(pSSM, cbBuf);
3323 break;
3324 }
3325 }
3326 }
3327 return rc;
3328}
3329
3330
3331/**
3332 * ssmR3DataWrite worker that is called when there isn't enough room in the
3333 * buffer for the current chunk of data.
3334 *
3335 * This will first flush the buffer and then add the new bits to it.
3336 *
3337 * @returns VBox status code
3338 * @param pSSM The saved state handle.
3339 * @param pvBuf The bits to write.
3340 * @param cbBuf The number of bytes to write.
3341 */
3342static int ssmR3DataWriteFlushAndBuffer(PSSMHANDLE pSSM, const void *pvBuf, size_t cbBuf)
3343{
3344 int rc = ssmR3DataFlushBuffer(pSSM);
3345 if (RT_SUCCESS(rc))
3346 {
3347 memcpy(&pSSM->u.Write.abDataBuffer[0], pvBuf, cbBuf);
3348 pSSM->u.Write.offDataBuffer = (uint32_t)cbBuf;
3349 }
3350 return rc;
3351}
3352
3353
3354/**
3355 * Writes data to the current data unit.
3356 *
3357 * This is an inlined wrapper that optimizes the small writes that so many of
3358 * the APIs make.
3359 *
3360 * @returns VBox status code
3361 * @param pSSM The saved state handle.
3362 * @param pvBuf The bits to write.
3363 * @param cbBuf The number of bytes to write.
3364 */
3365DECLINLINE(int) ssmR3DataWrite(PSSMHANDLE pSSM, const void *pvBuf, size_t cbBuf)
3366{
3367 if (cbBuf > sizeof(pSSM->u.Write.abDataBuffer) / 8)
3368 return ssmR3DataWriteBig(pSSM, pvBuf, cbBuf);
3369 if (!cbBuf)
3370 return VINF_SUCCESS;
3371
3372 uint32_t off = pSSM->u.Write.offDataBuffer;
3373 if (RT_UNLIKELY(cbBuf + off > sizeof(pSSM->u.Write.abDataBuffer)))
3374 return ssmR3DataWriteFlushAndBuffer(pSSM, pvBuf, cbBuf);
3375
3376 memcpy(&pSSM->u.Write.abDataBuffer[off], pvBuf, cbBuf);
3377 pSSM->u.Write.offDataBuffer = off + (uint32_t)cbBuf;
3378 return VINF_SUCCESS;
3379}
3380
3381
3382/**
3383 * Puts a structure.
3384 *
3385 * @returns VBox status code.
3386 * @param pSSM The saved state handle.
3387 * @param pvStruct The structure address.
3388 * @param paFields The array of structure fields descriptions.
3389 * The array must be terminated by a SSMFIELD_ENTRY_TERM().
3390 */
3391VMMR3DECL(int) SSMR3PutStruct(PSSMHANDLE pSSM, const void *pvStruct, PCSSMFIELD paFields)
3392{
3393 SSM_ASSERT_WRITEABLE_RET(pSSM);
3394 SSM_CHECK_CANCELLED_RET(pSSM);
3395 AssertPtr(pvStruct);
3396 AssertPtr(paFields);
3397
3398 /* begin marker. */
3399 int rc = SSMR3PutU32(pSSM, SSMR3STRUCT_BEGIN);
3400 if (RT_FAILURE(rc))
3401 return rc;
3402
3403 /* put the fields */
3404 for (PCSSMFIELD pCur = paFields;
3405 pCur->cb != UINT32_MAX && pCur->off != UINT32_MAX;
3406 pCur++)
3407 {
3408 uint8_t const *pbField = (uint8_t const *)pvStruct + pCur->off;
3409 switch ((uintptr_t)pCur->pfnGetPutOrTransformer)
3410 {
3411 case SSMFIELDTRANS_NO_TRANSFORMATION:
3412 rc = ssmR3DataWrite(pSSM, pbField, pCur->cb);
3413 break;
3414
3415 case SSMFIELDTRANS_GCPTR:
3416 AssertMsgReturn(pCur->cb == sizeof(RTGCPTR), ("%#x (%s)\n", pCur->cb, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3417 rc = SSMR3PutGCPtr(pSSM, *(PRTGCPTR)pbField);
3418 break;
3419
3420 case SSMFIELDTRANS_GCPHYS:
3421 AssertMsgReturn(pCur->cb == sizeof(RTGCPHYS), ("%#x (%s)\n", pCur->cb, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3422 rc = SSMR3PutGCPhys(pSSM, *(PRTGCPHYS)pbField);
3423 break;
3424
3425 case SSMFIELDTRANS_RCPTR:
3426 AssertMsgReturn(pCur->cb == sizeof(RTRCPTR), ("%#x (%s)\n", pCur->cb, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3427 rc = SSMR3PutRCPtr(pSSM, *(PRTRCPTR)pbField);
3428 break;
3429
3430 case SSMFIELDTRANS_RCPTR_ARRAY:
3431 {
3432 uint32_t const cEntries = pCur->cb / sizeof(RTRCPTR);
3433 AssertMsgReturn(pCur->cb == cEntries * sizeof(RTRCPTR) && cEntries, ("%#x (%s)\n", pCur->cb, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3434 rc = VINF_SUCCESS;
3435 for (uint32_t i = 0; i < cEntries && RT_SUCCESS(rc); i++)
3436 rc = SSMR3PutRCPtr(pSSM, ((PRTRCPTR)pbField)[i]);
3437 break;
3438 }
3439
3440 default:
3441 AssertMsgFailedReturn(("%#x\n", pCur->pfnGetPutOrTransformer), VERR_SSM_FIELD_COMPLEX);
3442 }
3443 if (RT_FAILURE(rc))
3444 return rc;
3445 }
3446
3447 /* end marker */
3448 return SSMR3PutU32(pSSM, SSMR3STRUCT_END);
3449}
3450
3451
3452/**
3453 * SSMR3PutStructEx helper that puts a HCPTR that is used as a NULL indicator.
3454 *
3455 * @returns VBox status code.
3456 *
3457 * @param pSSM The saved state handle.
3458 * @param pv The value to put.
3459 * @param fFlags SSMSTRUCT_FLAGS_XXX.
3460 */
3461DECLINLINE(int) ssmR3PutHCPtrNI(PSSMHANDLE pSSM, void *pv, uint32_t fFlags)
3462{
3463 int rc;
3464 if (fFlags & SSMSTRUCT_FLAGS_DONT_IGNORE)
3465 rc = ssmR3DataWrite(pSSM, &pv, sizeof(void *));
3466 else
3467 rc = SSMR3PutBool(pSSM, pv != NULL);
3468 return rc;
3469}
3470
3471
3472/**
3473 * SSMR3PutStructEx helper that puts an arbitrary number of zeros.
3474 *
3475 * @returns VBox status code.
3476 * @param pSSM The saved state handle.
3477 * @param cbToFill The number of zeros to stuff into the state.
3478 */
3479static int ssmR3PutZeros(PSSMHANDLE pSSM, uint32_t cbToFill)
3480{
3481 while (cbToFill > 0)
3482 {
3483 uint32_t cb = RT_MIN(sizeof(g_abZero), cbToFill);
3484 int rc = ssmR3DataWrite(pSSM, g_abZero, cb);
3485 if (RT_FAILURE(rc))
3486 return rc;
3487 cbToFill -= cb;
3488 }
3489 return VINF_SUCCESS;
3490}
3491
3492
3493/**
3494 * Puts a structure, extended API.
3495 *
3496 * @returns VBox status code.
3497 * @param pSSM The saved state handle.
3498 * @param pvStruct The structure address.
3499 * @param cbStruct The size of the struct (use for validation only).
3500 * @param fFlags Combination of SSMSTRUCT_FLAGS_XXX defines.
3501 * @param paFields The array of structure fields descriptions. The
3502 * array must be terminated by a SSMFIELD_ENTRY_TERM().
3503 * @param pvUser User argument for any callbacks that paFields might
3504 * contain.
3505 */
3506VMMR3DECL(int) SSMR3PutStructEx(PSSMHANDLE pSSM, const void *pvStruct, size_t cbStruct,
3507 uint32_t fFlags, PCSSMFIELD paFields, void *pvUser)
3508{
3509 int rc;
3510
3511 /*
3512 * Validation.
3513 */
3514 SSM_ASSERT_WRITEABLE_RET(pSSM);
3515 SSM_CHECK_CANCELLED_RET(pSSM);
3516 AssertMsgReturn(!(fFlags & ~SSMSTRUCT_FLAGS_VALID_MASK), ("%#x\n", fFlags), VERR_INVALID_PARAMETER);
3517 AssertPtr(pvStruct);
3518 AssertPtr(paFields);
3519
3520
3521 /*
3522 * Begin marker.
3523 */
3524 if (!(fFlags & SSMSTRUCT_FLAGS_NO_MARKERS))
3525 {
3526 rc = SSMR3PutU32(pSSM, SSMR3STRUCT_BEGIN);
3527 if (RT_FAILURE(rc))
3528 return rc;
3529 }
3530
3531 /*
3532 * Put the fields
3533 */
3534 uint32_t off = 0;
3535 for (PCSSMFIELD pCur = paFields;
3536 pCur->cb != UINT32_MAX && pCur->off != UINT32_MAX;
3537 pCur++)
3538 {
3539 uint32_t const offField = (!SSMFIELDTRANS_IS_PADDING(pCur->pfnGetPutOrTransformer) || pCur->off != UINT32_MAX / 2)
3540 && !SSMFIELDTRANS_IS_OLD(pCur->pfnGetPutOrTransformer)
3541 ? pCur->off
3542 : off;
3543 uint32_t const cbField = SSMFIELDTRANS_IS_OLD(pCur->pfnGetPutOrTransformer)
3544 ? 0
3545 : SSMFIELDTRANS_IS_PADDING(pCur->pfnGetPutOrTransformer)
3546 ? RT_HIWORD(pCur->cb)
3547 : pCur->cb;
3548 AssertMsgReturn( cbField <= cbStruct
3549 && offField + cbField <= cbStruct
3550 && offField + cbField >= offField,
3551 ("off=%#x cb=%#x cbStruct=%#x (%s)\n", cbField, offField, cbStruct, pCur->pszName),
3552 VERR_SSM_FIELD_OUT_OF_BOUNDS);
3553 AssertMsgReturn( !(fFlags & SSMSTRUCT_FLAGS_FULL_STRUCT)
3554 || off == offField,
3555 ("off=%#x offField=%#x (%s)\n", off, offField, pCur->pszName),
3556 VERR_SSM_FIELD_NOT_CONSECUTIVE);
3557
3558 rc = VINF_SUCCESS;
3559 uint8_t const *pbField = (uint8_t const *)pvStruct + offField;
3560 switch ((uintptr_t)pCur->pfnGetPutOrTransformer)
3561 {
3562 case SSMFIELDTRANS_NO_TRANSFORMATION:
3563 rc = ssmR3DataWrite(pSSM, pbField, cbField);
3564 break;
3565
3566 case SSMFIELDTRANS_GCPHYS:
3567 AssertMsgReturn(cbField == sizeof(RTGCPHYS), ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3568 rc = SSMR3PutGCPhys(pSSM, *(PRTGCPHYS)pbField);
3569 break;
3570
3571 case SSMFIELDTRANS_GCPTR:
3572 AssertMsgReturn(cbField == sizeof(RTGCPTR), ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3573 rc = SSMR3PutGCPtr(pSSM, *(PRTGCPTR)pbField);
3574 break;
3575
3576 case SSMFIELDTRANS_RCPTR:
3577 AssertMsgReturn(cbField == sizeof(RTRCPTR), ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3578 rc = SSMR3PutRCPtr(pSSM, *(PRTRCPTR)pbField);
3579 break;
3580
3581 case SSMFIELDTRANS_RCPTR_ARRAY:
3582 {
3583 uint32_t const cEntries = cbField / sizeof(RTRCPTR);
3584 AssertMsgReturn(cbField == cEntries * sizeof(RTRCPTR) && cEntries, ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3585 for (uint32_t i = 0; i < cEntries && RT_SUCCESS(rc); i++)
3586 rc = SSMR3PutRCPtr(pSSM, ((PRTRCPTR)pbField)[i]);
3587 break;
3588 }
3589
3590 case SSMFIELDTRANS_HCPTR_NI:
3591 AssertMsgReturn(cbField == sizeof(void *), ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3592 rc = ssmR3PutHCPtrNI(pSSM, *(void * const *)pbField, fFlags);
3593 break;
3594
3595 case SSMFIELDTRANS_HCPTR_NI_ARRAY:
3596 {
3597 uint32_t const cEntries = cbField / sizeof(void *);
3598 AssertMsgReturn(cbField == cEntries * sizeof(void *) && cEntries, ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3599 for (uint32_t i = 0; i < cEntries && RT_SUCCESS(rc); i++)
3600 rc = ssmR3PutHCPtrNI(pSSM, ((void * const *)pbField)[i], fFlags);
3601 break;
3602 }
3603
3604 case SSMFIELDTRANS_HCPTR_HACK_U32:
3605 AssertMsgReturn(cbField == sizeof(void *), ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3606 AssertMsgReturn(*(uintptr_t *)pbField <= UINT32_MAX, ("%p (%s)\n", *(uintptr_t *)pbField, pCur->pszName), VERR_SSM_FIELD_INVALID_VALUE);
3607 rc = ssmR3DataWrite(pSSM, pbField, sizeof(uint32_t));
3608 if ((fFlags & SSMSTRUCT_FLAGS_DONT_IGNORE) && sizeof(void *) != sizeof(uint32_t))
3609 rc = ssmR3DataWrite(pSSM, g_abZero, sizeof(uint32_t));
3610 break;
3611
3612
3613 case SSMFIELDTRANS_IGNORE:
3614 if (fFlags & SSMSTRUCT_FLAGS_DONT_IGNORE)
3615 rc = ssmR3PutZeros(pSSM, cbField);
3616 break;
3617
3618 case SSMFIELDTRANS_IGN_GCPHYS:
3619 AssertMsgReturn(cbField == sizeof(RTGCPHYS), ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3620 if (fFlags & SSMSTRUCT_FLAGS_DONT_IGNORE)
3621 rc = ssmR3DataWrite(pSSM, g_abZero, sizeof(RTGCPHYS));
3622 break;
3623
3624 case SSMFIELDTRANS_IGN_GCPTR:
3625 AssertMsgReturn(cbField == sizeof(RTGCPTR), ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3626 if (fFlags & SSMSTRUCT_FLAGS_DONT_IGNORE)
3627 rc = ssmR3DataWrite(pSSM, g_abZero, sizeof(RTGCPTR));
3628 break;
3629
3630 case SSMFIELDTRANS_IGN_RCPTR:
3631 AssertMsgReturn(cbField == sizeof(RTRCPTR), ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3632 if (fFlags & SSMSTRUCT_FLAGS_DONT_IGNORE)
3633 rc = ssmR3DataWrite(pSSM, g_abZero, sizeof(RTRCPTR));
3634 break;
3635
3636 case SSMFIELDTRANS_IGN_HCPTR:
3637 AssertMsgReturn(cbField == sizeof(void *), ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3638 if (fFlags & SSMSTRUCT_FLAGS_DONT_IGNORE)
3639 rc = ssmR3DataWrite(pSSM, g_abZero, sizeof(void *));
3640 break;
3641
3642
3643 case SSMFIELDTRANS_OLD:
3644 AssertMsgReturn(pCur->off == UINT32_MAX / 2, ("%#x %#x (%s)\n", pCur->cb, pCur->off, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3645 rc = ssmR3PutZeros(pSSM, pCur->cb);
3646 break;
3647
3648 case SSMFIELDTRANS_OLD_GCPHYS:
3649 AssertMsgReturn(pCur->cb == sizeof(RTGCPHYS) && pCur->off == UINT32_MAX / 2, ("%#x %#x (%s)\n", pCur->cb, pCur->off, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3650 rc = ssmR3DataWrite(pSSM, g_abZero, sizeof(RTGCPHYS));
3651 break;
3652
3653 case SSMFIELDTRANS_OLD_GCPTR:
3654 AssertMsgReturn(pCur->cb == sizeof(RTGCPTR) && pCur->off == UINT32_MAX / 2, ("%#x %#x (%s)\n", pCur->cb, pCur->off, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3655 rc = ssmR3DataWrite(pSSM, g_abZero, sizeof(RTGCPTR));
3656 break;
3657
3658 case SSMFIELDTRANS_OLD_RCPTR:
3659 AssertMsgReturn(pCur->cb == sizeof(RTRCPTR) && pCur->off == UINT32_MAX / 2, ("%#x %#x (%s)\n", pCur->cb, pCur->off, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3660 rc = ssmR3DataWrite(pSSM, g_abZero, sizeof(RTRCPTR));
3661 break;
3662
3663 case SSMFIELDTRANS_OLD_HCPTR:
3664 AssertMsgReturn(pCur->cb == sizeof(void *) && pCur->off == UINT32_MAX / 2, ("%#x %#x (%s)\n", pCur->cb, pCur->off, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3665 rc = ssmR3DataWrite(pSSM, g_abZero, sizeof(void *));
3666 break;
3667
3668 case SSMFIELDTRANS_OLD_PAD_HC:
3669 AssertMsgReturn(pCur->off == UINT32_MAX / 2, ("%#x %#x (%s)\n", pCur->cb, pCur->off, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3670 rc = ssmR3PutZeros(pSSM, HC_ARCH_BITS == 64 ? RT_HIWORD(pCur->cb) : RT_LOWORD(pCur->cb));
3671 break;
3672
3673 case SSMFIELDTRANS_OLD_PAD_MSC32:
3674 AssertMsgReturn(pCur->off == UINT32_MAX / 2, ("%#x %#x (%s)\n", pCur->cb, pCur->off, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
3675 if (SSM_HOST_IS_MSC_32)
3676 rc = ssmR3PutZeros(pSSM, pCur->cb);
3677 break;
3678
3679
3680 case SSMFIELDTRANS_PAD_HC:
3681 case SSMFIELDTRANS_PAD_HC32:
3682 case SSMFIELDTRANS_PAD_HC64:
3683 case SSMFIELDTRANS_PAD_HC_AUTO:
3684 case SSMFIELDTRANS_PAD_MSC32_AUTO:
3685 {
3686 uint32_t cb32 = RT_BYTE1(pCur->cb);
3687 uint32_t cb64 = RT_BYTE2(pCur->cb);
3688 uint32_t cbCtx = HC_ARCH_BITS == 64
3689 || ( (uintptr_t)pCur->pfnGetPutOrTransformer == SSMFIELDTRANS_PAD_MSC32_AUTO
3690 && !SSM_HOST_IS_MSC_32)
3691 ? cb64 : cb32;
3692 uint32_t cbSaved = ssmR3GetHostBits(pSSM) == 64
3693 || ( (uintptr_t)pCur->pfnGetPutOrTransformer == SSMFIELDTRANS_PAD_MSC32_AUTO
3694 && !ssmR3IsHostMsc32(pSSM))
3695 ? cb64 : cb32;
3696 AssertMsgReturn( cbField == cbCtx
3697 && ( ( pCur->off == UINT32_MAX / 2
3698 && ( cbField == 0
3699 || (uintptr_t)pCur->pfnGetPutOrTransformer == SSMFIELDTRANS_PAD_HC_AUTO
3700 || (uintptr_t)pCur->pfnGetPutOrTransformer == SSMFIELDTRANS_PAD_MSC32_AUTO
3701 )
3702 )
3703 || (pCur->off != UINT32_MAX / 2 && cbField != 0)
3704 )
3705 , ("cbField=%#x cb32=%#x cb64=%#x HC_ARCH_BITS=%u cbCtx=%#x cbSaved=%#x off=%#x\n",
3706 cbField, cb32, cb64, HC_ARCH_BITS, cbCtx, cbSaved, pCur->off),
3707 VERR_SSM_FIELD_INVALID_PADDING_SIZE);
3708 if (fFlags & SSMSTRUCT_FLAGS_DONT_IGNORE)
3709 rc = ssmR3PutZeros(pSSM, cbSaved);
3710 break;
3711 }
3712
3713 default:
3714 AssertPtrReturn(pCur->pfnGetPutOrTransformer, VERR_SSM_FIELD_INVALID_CALLBACK);
3715 rc = pCur->pfnGetPutOrTransformer(pSSM, pCur, (void *)pvStruct, fFlags, false /*fGetOrPut*/, pvUser);
3716 break;
3717 }
3718 if (RT_FAILURE(rc))
3719 return rc;
3720
3721 off = offField + cbField;
3722 }
3723 AssertMsgReturn( !(fFlags & SSMSTRUCT_FLAGS_FULL_STRUCT)
3724 || off == cbStruct,
3725 ("off=%#x cbStruct=%#x\n", off, cbStruct),
3726 VERR_SSM_FIELD_NOT_CONSECUTIVE);
3727
3728 /*
3729 * End marker
3730 */
3731 if (!(fFlags & SSMSTRUCT_FLAGS_NO_MARKERS))
3732 {
3733 rc = SSMR3PutU32(pSSM, SSMR3STRUCT_END);
3734 if (RT_FAILURE(rc))
3735 return rc;
3736 }
3737
3738 return VINF_SUCCESS;
3739}
3740
3741
3742/**
3743 * Saves a boolean item to the current data unit.
3744 *
3745 * @returns VBox status.
3746 * @param pSSM The saved state handle.
3747 * @param fBool Item to save.
3748 */
3749VMMR3DECL(int) SSMR3PutBool(PSSMHANDLE pSSM, bool fBool)
3750{
3751 SSM_ASSERT_WRITEABLE_RET(pSSM);
3752 SSM_CHECK_CANCELLED_RET(pSSM);
3753 uint8_t u8 = fBool; /* enforce 1 byte size */
3754 return ssmR3DataWrite(pSSM, &u8, sizeof(u8));
3755}
3756
3757
3758/**
3759 * Saves a 8-bit unsigned integer item to the current data unit.
3760 *
3761 * @returns VBox status.
3762 * @param pSSM The saved state handle.
3763 * @param u8 Item to save.
3764 */
3765VMMR3DECL(int) SSMR3PutU8(PSSMHANDLE pSSM, uint8_t u8)
3766{
3767 SSM_ASSERT_WRITEABLE_RET(pSSM);
3768 SSM_CHECK_CANCELLED_RET(pSSM);
3769 return ssmR3DataWrite(pSSM, &u8, sizeof(u8));
3770}
3771
3772
3773/**
3774 * Saves a 8-bit signed integer item to the current data unit.
3775 *
3776 * @returns VBox status.
3777 * @param pSSM The saved state handle.
3778 * @param i8 Item to save.
3779 */
3780VMMR3DECL(int) SSMR3PutS8(PSSMHANDLE pSSM, int8_t i8)
3781{
3782 SSM_ASSERT_WRITEABLE_RET(pSSM);
3783 SSM_CHECK_CANCELLED_RET(pSSM);
3784 return ssmR3DataWrite(pSSM, &i8, sizeof(i8));
3785}
3786
3787
3788/**
3789 * Saves a 16-bit unsigned integer item to the current data unit.
3790 *
3791 * @returns VBox status.
3792 * @param pSSM The saved state handle.
3793 * @param u16 Item to save.
3794 */
3795VMMR3DECL(int) SSMR3PutU16(PSSMHANDLE pSSM, uint16_t u16)
3796{
3797 SSM_ASSERT_WRITEABLE_RET(pSSM);
3798 SSM_CHECK_CANCELLED_RET(pSSM);
3799 return ssmR3DataWrite(pSSM, &u16, sizeof(u16));
3800}
3801
3802
3803/**
3804 * Saves a 16-bit signed integer item to the current data unit.
3805 *
3806 * @returns VBox status.
3807 * @param pSSM The saved state handle.
3808 * @param i16 Item to save.
3809 */
3810VMMR3DECL(int) SSMR3PutS16(PSSMHANDLE pSSM, int16_t i16)
3811{
3812 SSM_ASSERT_WRITEABLE_RET(pSSM);
3813 SSM_CHECK_CANCELLED_RET(pSSM);
3814 return ssmR3DataWrite(pSSM, &i16, sizeof(i16));
3815}
3816
3817
3818/**
3819 * Saves a 32-bit unsigned integer item to the current data unit.
3820 *
3821 * @returns VBox status.
3822 * @param pSSM The saved state handle.
3823 * @param u32 Item to save.
3824 */
3825VMMR3DECL(int) SSMR3PutU32(PSSMHANDLE pSSM, uint32_t u32)
3826{
3827 SSM_ASSERT_WRITEABLE_RET(pSSM);
3828 SSM_CHECK_CANCELLED_RET(pSSM);
3829 return ssmR3DataWrite(pSSM, &u32, sizeof(u32));
3830}
3831
3832
3833/**
3834 * Saves a 32-bit signed integer item to the current data unit.
3835 *
3836 * @returns VBox status.
3837 * @param pSSM The saved state handle.
3838 * @param i32 Item to save.
3839 */
3840VMMR3DECL(int) SSMR3PutS32(PSSMHANDLE pSSM, int32_t i32)
3841{
3842 SSM_ASSERT_WRITEABLE_RET(pSSM);
3843 SSM_CHECK_CANCELLED_RET(pSSM);
3844 return ssmR3DataWrite(pSSM, &i32, sizeof(i32));
3845}
3846
3847
3848/**
3849 * Saves a 64-bit unsigned integer item to the current data unit.
3850 *
3851 * @returns VBox status.
3852 * @param pSSM The saved state handle.
3853 * @param u64 Item to save.
3854 */
3855VMMR3DECL(int) SSMR3PutU64(PSSMHANDLE pSSM, uint64_t u64)
3856{
3857 SSM_ASSERT_WRITEABLE_RET(pSSM);
3858 SSM_CHECK_CANCELLED_RET(pSSM);
3859 return ssmR3DataWrite(pSSM, &u64, sizeof(u64));
3860}
3861
3862
3863/**
3864 * Saves a 64-bit signed integer item to the current data unit.
3865 *
3866 * @returns VBox status.
3867 * @param pSSM The saved state handle.
3868 * @param i64 Item to save.
3869 */
3870VMMR3DECL(int) SSMR3PutS64(PSSMHANDLE pSSM, int64_t i64)
3871{
3872 SSM_ASSERT_WRITEABLE_RET(pSSM);
3873 SSM_CHECK_CANCELLED_RET(pSSM);
3874 return ssmR3DataWrite(pSSM, &i64, sizeof(i64));
3875}
3876
3877
3878/**
3879 * Saves a 128-bit unsigned integer item to the current data unit.
3880 *
3881 * @returns VBox status.
3882 * @param pSSM The saved state handle.
3883 * @param u128 Item to save.
3884 */
3885VMMR3DECL(int) SSMR3PutU128(PSSMHANDLE pSSM, uint128_t u128)
3886{
3887 SSM_ASSERT_WRITEABLE_RET(pSSM);
3888 SSM_CHECK_CANCELLED_RET(pSSM);
3889 return ssmR3DataWrite(pSSM, &u128, sizeof(u128));
3890}
3891
3892
3893/**
3894 * Saves a 128-bit signed integer item to the current data unit.
3895 *
3896 * @returns VBox status.
3897 * @param pSSM The saved state handle.
3898 * @param i128 Item to save.
3899 */
3900VMMR3DECL(int) SSMR3PutS128(PSSMHANDLE pSSM, int128_t i128)
3901{
3902 SSM_ASSERT_WRITEABLE_RET(pSSM);
3903 SSM_CHECK_CANCELLED_RET(pSSM);
3904 return ssmR3DataWrite(pSSM, &i128, sizeof(i128));
3905}
3906
3907
3908/**
3909 * Saves a VBox unsigned integer item to the current data unit.
3910 *
3911 * @returns VBox status.
3912 * @param pSSM The saved state handle.
3913 * @param u Item to save.
3914 */
3915VMMR3DECL(int) SSMR3PutUInt(PSSMHANDLE pSSM, RTUINT u)
3916{
3917 SSM_ASSERT_WRITEABLE_RET(pSSM);
3918 SSM_CHECK_CANCELLED_RET(pSSM);
3919 return ssmR3DataWrite(pSSM, &u, sizeof(u));
3920}
3921
3922
3923/**
3924 * Saves a VBox signed integer item to the current data unit.
3925 *
3926 * @returns VBox status.
3927 * @param pSSM The saved state handle.
3928 * @param i Item to save.
3929 */
3930VMMR3DECL(int) SSMR3PutSInt(PSSMHANDLE pSSM, RTINT i)
3931{
3932 SSM_ASSERT_WRITEABLE_RET(pSSM);
3933 SSM_CHECK_CANCELLED_RET(pSSM);
3934 return ssmR3DataWrite(pSSM, &i, sizeof(i));
3935}
3936
3937
3938/**
3939 * Saves a GC natural unsigned integer item to the current data unit.
3940 *
3941 * @returns VBox status.
3942 * @param pSSM The saved state handle.
3943 * @param u Item to save.
3944 *
3945 * @deprecated Silly type, don't use it.
3946 */
3947VMMR3DECL(int) SSMR3PutGCUInt(PSSMHANDLE pSSM, RTGCUINT u)
3948{
3949 SSM_ASSERT_WRITEABLE_RET(pSSM);
3950 SSM_CHECK_CANCELLED_RET(pSSM);
3951 return ssmR3DataWrite(pSSM, &u, sizeof(u));
3952}
3953
3954
3955/**
3956 * Saves a GC unsigned integer register item to the current data unit.
3957 *
3958 * @returns VBox status.
3959 * @param pSSM The saved state handle.
3960 * @param u Item to save.
3961 */
3962VMMR3DECL(int) SSMR3PutGCUIntReg(PSSMHANDLE pSSM, RTGCUINTREG u)
3963{
3964 SSM_ASSERT_WRITEABLE_RET(pSSM);
3965 SSM_CHECK_CANCELLED_RET(pSSM);
3966 return ssmR3DataWrite(pSSM, &u, sizeof(u));
3967}
3968
3969
3970/**
3971 * Saves a 32 bits GC physical address item to the current data unit.
3972 *
3973 * @returns VBox status.
3974 * @param pSSM The saved state handle.
3975 * @param GCPhys The item to save
3976 */
3977VMMR3DECL(int) SSMR3PutGCPhys32(PSSMHANDLE pSSM, RTGCPHYS32 GCPhys)
3978{
3979 SSM_ASSERT_WRITEABLE_RET(pSSM);
3980 SSM_CHECK_CANCELLED_RET(pSSM);
3981 return ssmR3DataWrite(pSSM, &GCPhys, sizeof(GCPhys));
3982}
3983
3984
3985/**
3986 * Saves a 64 bits GC physical address item to the current data unit.
3987 *
3988 * @returns VBox status.
3989 * @param pSSM The saved state handle.
3990 * @param GCPhys The item to save
3991 */
3992VMMR3DECL(int) SSMR3PutGCPhys64(PSSMHANDLE pSSM, RTGCPHYS64 GCPhys)
3993{
3994 SSM_ASSERT_WRITEABLE_RET(pSSM);
3995 SSM_CHECK_CANCELLED_RET(pSSM);
3996 return ssmR3DataWrite(pSSM, &GCPhys, sizeof(GCPhys));
3997}
3998
3999
4000/**
4001 * Saves a GC physical address item to the current data unit.
4002 *
4003 * @returns VBox status.
4004 * @param pSSM The saved state handle.
4005 * @param GCPhys The item to save
4006 */
4007VMMR3DECL(int) SSMR3PutGCPhys(PSSMHANDLE pSSM, RTGCPHYS GCPhys)
4008{
4009 SSM_ASSERT_WRITEABLE_RET(pSSM);
4010 SSM_CHECK_CANCELLED_RET(pSSM);
4011 return ssmR3DataWrite(pSSM, &GCPhys, sizeof(GCPhys));
4012}
4013
4014
4015/**
4016 * Saves a GC virtual address item to the current data unit.
4017 *
4018 * @returns VBox status.
4019 * @param pSSM The saved state handle.
4020 * @param GCPtr The item to save.
4021 */
4022VMMR3DECL(int) SSMR3PutGCPtr(PSSMHANDLE pSSM, RTGCPTR GCPtr)
4023{
4024 SSM_ASSERT_WRITEABLE_RET(pSSM);
4025 SSM_CHECK_CANCELLED_RET(pSSM);
4026 return ssmR3DataWrite(pSSM, &GCPtr, sizeof(GCPtr));
4027}
4028
4029
4030/**
4031 * Saves an RC virtual address item to the current data unit.
4032 *
4033 * @returns VBox status.
4034 * @param pSSM The saved state handle.
4035 * @param RCPtr The item to save.
4036 */
4037VMMR3DECL(int) SSMR3PutRCPtr(PSSMHANDLE pSSM, RTRCPTR RCPtr)
4038{
4039 SSM_ASSERT_WRITEABLE_RET(pSSM);
4040 SSM_CHECK_CANCELLED_RET(pSSM);
4041 return ssmR3DataWrite(pSSM, &RCPtr, sizeof(RCPtr));
4042}
4043
4044
4045/**
4046 * Saves a GC virtual address (represented as an unsigned integer) item to the current data unit.
4047 *
4048 * @returns VBox status.
4049 * @param pSSM The saved state handle.
4050 * @param GCPtr The item to save.
4051 */
4052VMMR3DECL(int) SSMR3PutGCUIntPtr(PSSMHANDLE pSSM, RTGCUINTPTR GCPtr)
4053{
4054 SSM_ASSERT_WRITEABLE_RET(pSSM);
4055 SSM_CHECK_CANCELLED_RET(pSSM);
4056 return ssmR3DataWrite(pSSM, &GCPtr, sizeof(GCPtr));
4057}
4058
4059
4060/**
4061 * Saves a I/O port address item to the current data unit.
4062 *
4063 * @returns VBox status.
4064 * @param pSSM The saved state handle.
4065 * @param IOPort The item to save.
4066 */
4067VMMR3DECL(int) SSMR3PutIOPort(PSSMHANDLE pSSM, RTIOPORT IOPort)
4068{
4069 SSM_ASSERT_WRITEABLE_RET(pSSM);
4070 SSM_CHECK_CANCELLED_RET(pSSM);
4071 return ssmR3DataWrite(pSSM, &IOPort, sizeof(IOPort));
4072}
4073
4074
4075/**
4076 * Saves a selector item to the current data unit.
4077 *
4078 * @returns VBox status.
4079 * @param pSSM The saved state handle.
4080 * @param Sel The item to save.
4081 */
4082VMMR3DECL(int) SSMR3PutSel(PSSMHANDLE pSSM, RTSEL Sel)
4083{
4084 SSM_ASSERT_WRITEABLE_RET(pSSM);
4085 SSM_CHECK_CANCELLED_RET(pSSM);
4086 return ssmR3DataWrite(pSSM, &Sel, sizeof(Sel));
4087}
4088
4089
4090/**
4091 * Saves a memory item to the current data unit.
4092 *
4093 * @returns VBox status.
4094 * @param pSSM The saved state handle.
4095 * @param pv Item to save.
4096 * @param cb Size of the item.
4097 */
4098VMMR3DECL(int) SSMR3PutMem(PSSMHANDLE pSSM, const void *pv, size_t cb)
4099{
4100 SSM_ASSERT_WRITEABLE_RET(pSSM);
4101 SSM_CHECK_CANCELLED_RET(pSSM);
4102 return ssmR3DataWrite(pSSM, pv, cb);
4103}
4104
4105
4106/**
4107 * Saves a zero terminated string item to the current data unit.
4108 *
4109 * @returns VBox status.
4110 * @param pSSM The saved state handle.
4111 * @param psz Item to save.
4112 */
4113VMMR3DECL(int) SSMR3PutStrZ(PSSMHANDLE pSSM, const char *psz)
4114{
4115 SSM_ASSERT_WRITEABLE_RET(pSSM);
4116 SSM_CHECK_CANCELLED_RET(pSSM);
4117
4118 size_t cch = strlen(psz);
4119 if (cch > _1M)
4120 {
4121 AssertMsgFailed(("a %zu byte long string, what's this!?!\n", cch));
4122 return VERR_TOO_MUCH_DATA;
4123 }
4124 uint32_t u32 = (uint32_t)cch;
4125 int rc = ssmR3DataWrite(pSSM, &u32, sizeof(u32));
4126 if (rc)
4127 return rc;
4128 return ssmR3DataWrite(pSSM, psz, cch);
4129}
4130
4131
4132/**
4133 * Emits a SSMLiveControl unit with a new progress report.
4134 *
4135 * @returns VBox status code.
4136 * @param pSSM The saved state handle.
4137 * @param lrdPct The progress of the the live save.
4138 * @param uPass The current pass.
4139 */
4140static int ssmR3LiveControlEmit(PSSMHANDLE pSSM, long double lrdPct, uint32_t uPass)
4141{
4142 AssertMsg(lrdPct <= 100.0, ("%u\n", lrdPct * 100));
4143
4144 /*
4145 * Make sure we're in one of the two EXEC states or we may fail.
4146 */
4147 SSMSTATE enmSavedState = pSSM->enmOp;
4148 if (enmSavedState == SSMSTATE_LIVE_VOTE)
4149 pSSM->enmOp = SSMSTATE_LIVE_EXEC;
4150 else if (enmSavedState == SSMSTATE_SAVE_DONE)
4151 pSSM->enmOp = SSMSTATE_SAVE_EXEC;
4152
4153 /*
4154 * Write the unit header.
4155 */
4156 SSMFILEUNITHDRV2 UnitHdr;
4157 memcpy(&UnitHdr.szMagic[0], SSMFILEUNITHDR_MAGIC, sizeof(UnitHdr.szMagic));
4158 UnitHdr.offStream = ssmR3StrmTell(&pSSM->Strm);
4159 UnitHdr.u32CurStreamCRC = ssmR3StrmCurCRC(&pSSM->Strm);
4160 UnitHdr.u32CRC = 0;
4161 UnitHdr.u32Version = 1;
4162 UnitHdr.u32Instance = 0;
4163 UnitHdr.u32Pass = uPass;
4164 UnitHdr.fFlags = 0;
4165 UnitHdr.cbName = sizeof("SSMLiveControl");
4166 memcpy(&UnitHdr.szName[0], "SSMLiveControl", UnitHdr.cbName);
4167 UnitHdr.u32CRC = RTCrc32(&UnitHdr, RT_OFFSETOF(SSMFILEUNITHDRV2, szName[UnitHdr.cbName]));
4168 Log(("SSM: Unit at %#9llx: '%s', instance %u, pass %#x, version %u\n",
4169 UnitHdr.offStream, UnitHdr.szName, UnitHdr.u32Instance, UnitHdr.u32Pass, UnitHdr.u32Version));
4170 int rc = ssmR3StrmWrite(&pSSM->Strm, &UnitHdr, RT_OFFSETOF(SSMFILEUNITHDRV2, szName[UnitHdr.cbName]));
4171 if (RT_SUCCESS(rc))
4172 {
4173 /*
4174 * Write the payload.
4175 */
4176 ssmR3DataWriteBegin(pSSM);
4177
4178 uint16_t u16PartsPerTenThousand = (uint16_t)(lrdPct * (100 - pSSM->uPercentDone));
4179 AssertMsg(u16PartsPerTenThousand <= 10000, ("%u\n", u16PartsPerTenThousand));
4180 ssmR3DataWrite(pSSM, &u16PartsPerTenThousand, sizeof(u16PartsPerTenThousand));
4181
4182 rc = ssmR3DataFlushBuffer(pSSM); /* will return SSMHANDLE::rc if it is set */
4183 if (RT_SUCCESS(rc))
4184 {
4185 /*
4186 * Write the termination record and flush the compression stream.
4187 */
4188 SSMRECTERM TermRec;
4189 TermRec.u8TypeAndFlags = SSM_REC_FLAGS_FIXED | SSM_REC_FLAGS_IMPORTANT | SSM_REC_TYPE_TERM;
4190 TermRec.cbRec = sizeof(TermRec) - 2;
4191 if (pSSM->Strm.fChecksummed)
4192 {
4193 TermRec.fFlags = SSMRECTERM_FLAGS_CRC32;
4194 TermRec.u32StreamCRC = RTCrc32Finish(RTCrc32Process(ssmR3StrmCurCRC(&pSSM->Strm), &TermRec, 2));
4195 }
4196 else
4197 {
4198 TermRec.fFlags = 0;
4199 TermRec.u32StreamCRC = 0;
4200 }
4201 TermRec.cbUnit = pSSM->offUnit + sizeof(TermRec);
4202 rc = ssmR3DataWriteRaw(pSSM, &TermRec, sizeof(TermRec));
4203 if (RT_SUCCESS(rc))
4204 rc = ssmR3DataWriteFinish(pSSM);
4205 if (RT_SUCCESS(rc))
4206 {
4207 pSSM->enmOp = enmSavedState;
4208 return rc;
4209 }
4210 }
4211 }
4212
4213 LogRel(("SSM: Failed to write live control unit. rc=%Rrc\n", rc));
4214 if (RT_SUCCESS_NP(pSSM->rc))
4215 pSSM->rc = rc;
4216 pSSM->enmOp = enmSavedState;
4217 return rc;
4218}
4219
4220
4221/**
4222 * Do the pfnSaveDone run.
4223 *
4224 * @returns VBox status code (pSSM->rc).
4225 * @param pVM The VM handle.
4226 * @param pSSM The saved state handle.
4227 */
4228static int ssmR3SaveDoDoneRun(PVM pVM, PSSMHANDLE pSSM)
4229{
4230 VM_ASSERT_EMT0(pVM);
4231
4232 /*
4233 * Do the done run.
4234 */
4235 pSSM->enmOp = SSMSTATE_SAVE_DONE;
4236 for (PSSMUNIT pUnit = pVM->ssm.s.pHead; pUnit; pUnit = pUnit->pNext)
4237 {
4238 if ( pUnit->u.Common.pfnSaveDone
4239 && ( pUnit->fCalled
4240 || (!pUnit->u.Common.pfnSavePrep && !pUnit->u.Common.pfnSaveExec)))
4241 {
4242 int rcOld = pSSM->rc;
4243 int rc;
4244 switch (pUnit->enmType)
4245 {
4246 case SSMUNITTYPE_DEV:
4247 rc = pUnit->u.Dev.pfnSaveDone(pUnit->u.Dev.pDevIns, pSSM);
4248 break;
4249 case SSMUNITTYPE_DRV:
4250 rc = pUnit->u.Drv.pfnSaveDone(pUnit->u.Drv.pDrvIns, pSSM);
4251 break;
4252 case SSMUNITTYPE_INTERNAL:
4253 rc = pUnit->u.Internal.pfnSaveDone(pVM, pSSM);
4254 break;
4255 case SSMUNITTYPE_EXTERNAL:
4256 rc = pUnit->u.External.pfnSaveDone(pSSM, pUnit->u.External.pvUser);
4257 break;
4258 default:
4259 rc = VERR_SSM_IPE_1;
4260 break;
4261 }
4262 if (RT_SUCCESS(rc) && pSSM->rc != rcOld)
4263 rc = pSSM->rc;
4264 if (RT_FAILURE(rc))
4265 {
4266 LogRel(("SSM: Done save failed with rc=%Rrc for data unit '%s.\n", rc, pUnit->szName));
4267 if (RT_SUCCESS_NP(pSSM->rc))
4268 pSSM->rc = rc;
4269 }
4270 }
4271 }
4272 return pSSM->rc;
4273}
4274
4275
4276/**
4277 * Worker for SSMR3LiveDone and SSMR3Save that closes the handle and deletes the
4278 * saved state file on failure.
4279 *
4280 * @returns VBox status code (pSSM->rc).
4281 * @param pVM The VM handle.
4282 * @param pSSM The saved state handle.
4283 */
4284static int ssmR3SaveDoClose(PVM pVM, PSSMHANDLE pSSM)
4285{
4286 VM_ASSERT_EMT0(pVM);
4287 pVM->ssm.s.uPass = 0;
4288
4289 /*
4290 * Make it non-cancellable, close the stream and delete the file on failure.
4291 */
4292 ssmR3SetCancellable(pVM, pSSM, false);
4293 int rc = ssmR3StrmClose(&pSSM->Strm, pSSM->rc == VERR_SSM_CANCELLED);
4294 if (RT_SUCCESS(rc))
4295 rc = pSSM->rc;
4296 if (RT_SUCCESS(rc))
4297 {
4298 Assert(pSSM->enmOp == SSMSTATE_SAVE_DONE);
4299 if (pSSM->pfnProgress)
4300 pSSM->pfnProgress(pVM, 100, pSSM->pvUser);
4301 LogRel(("SSM: Successfully saved the VM state to '%s'\n",
4302 pSSM->pszFilename ? pSSM->pszFilename : "<remote-machine>"));
4303 }
4304 else
4305 {
4306 if (pSSM->pszFilename)
4307 {
4308 int rc2 = RTFileDelete(pSSM->pszFilename);
4309 AssertRC(rc2);
4310 if (RT_SUCCESS(rc2))
4311 LogRel(("SSM: Failed to save the VM state to '%s' (file deleted): %Rrc\n",
4312 pSSM->pszFilename, rc));
4313 else
4314 LogRel(("SSM: Failed to save the VM state to '%s' (file deletion failed, rc2=%Rrc): %Rrc\n",
4315 pSSM->pszFilename, rc2, rc));
4316 }
4317 else
4318 LogRel(("SSM: Failed to save the VM state.\n"));
4319
4320 Assert(pSSM->enmOp <= SSMSTATE_SAVE_DONE);
4321 if (pSSM->enmOp != SSMSTATE_SAVE_DONE)
4322 ssmR3SaveDoDoneRun(pVM, pSSM);
4323 }
4324
4325 /*
4326 * Trash the handle before freeing it.
4327 */
4328 ASMAtomicWriteU32(&pSSM->fCancelled, 0);
4329 pSSM->pVM = NULL;
4330 pSSM->enmAfter = SSMAFTER_INVALID;
4331 pSSM->enmOp = SSMSTATE_INVALID;
4332 RTMemFree(pSSM);
4333
4334 return rc;
4335}
4336
4337
4338/**
4339 * Closes the SSM handle.
4340 *
4341 * This must always be called on a handled returned by SSMR3LiveSave.
4342 *
4343 * @returns VBox status.
4344 *
4345 * @param pSSM The SSM handle returned by SSMR3LiveSave.
4346 *
4347 * @thread EMT(0).
4348 */
4349VMMR3_INT_DECL(int) SSMR3LiveDone(PSSMHANDLE pSSM)
4350{
4351 LogFlow(("SSMR3LiveDone: pSSM=%p\n", pSSM));
4352
4353 /*
4354 * Validate input.
4355 */
4356 AssertPtrReturn(pSSM, VERR_INVALID_POINTER);
4357 PVM pVM = pSSM->pVM;
4358 VM_ASSERT_VALID_EXT_RETURN(pVM, VERR_INVALID_VM_HANDLE);
4359 VM_ASSERT_EMT0(pVM);
4360 AssertMsgReturn( pSSM->enmAfter == SSMAFTER_DESTROY
4361 || pSSM->enmAfter == SSMAFTER_CONTINUE
4362 || pSSM->enmAfter == SSMAFTER_TELEPORT,
4363 ("%d\n", pSSM->enmAfter),
4364 VERR_INVALID_PARAMETER);
4365 AssertMsgReturn( pSSM->enmOp >= SSMSTATE_LIVE_PREP
4366 && pSSM->enmOp <= SSMSTATE_SAVE_DONE,
4367 ("%d\n", pSSM->enmOp), VERR_INVALID_STATE);
4368
4369 /*
4370 * Join paths with SSMR3Save again.
4371 */
4372 return ssmR3SaveDoClose(pVM, pSSM);
4373}
4374
4375
4376/**
4377 * Writes the directory.
4378 *
4379 * @returns VBox status code.
4380 * @param pVM The VM handle.
4381 * @param pSSM The SSM handle.
4382 * @param pcEntries Where to return the number of directory entries.
4383 */
4384static int ssmR3WriteDirectory(PVM pVM, PSSMHANDLE pSSM, uint32_t *pcEntries)
4385{
4386 VM_ASSERT_EMT0(pVM);
4387
4388 /*
4389 * Grab some temporary memory for the dictionary.
4390 */
4391 size_t cbDir = RT_OFFSETOF(SSMFILEDIR, aEntries[pVM->ssm.s.cUnits]);
4392 PSSMFILEDIR pDir = (PSSMFILEDIR)RTMemTmpAlloc(cbDir);
4393 if (!pDir)
4394 {
4395 LogRel(("ssmR3WriteDirectory: failed to allocate %zu bytes!\n", cbDir));
4396 return VERR_NO_TMP_MEMORY;
4397 }
4398
4399 /*
4400 * Initialize it.
4401 */
4402 memcpy(pDir->szMagic, SSMFILEDIR_MAGIC, sizeof(pDir->szMagic));
4403 pDir->u32CRC = 0;
4404 pDir->cEntries = 0;
4405
4406 for (PSSMUNIT pUnit = pVM->ssm.s.pHead; pUnit; pUnit = pUnit->pNext)
4407 if (pUnit->offStream != RTFOFF_MIN)
4408 {
4409 PSSMFILEDIRENTRY pEntry = &pDir->aEntries[pDir->cEntries++];
4410 Assert(pDir->cEntries <= pVM->ssm.s.cUnits);
4411 Assert(pUnit->offStream >= (RTFOFF)sizeof(SSMFILEHDR));
4412 pEntry->off = pUnit->offStream;
4413 pEntry->u32Instance = pUnit->u32Instance;
4414 pEntry->u32NameCRC = RTCrc32(pUnit->szName, pUnit->cchName);
4415 }
4416
4417 /*
4418 * Calculate the actual size and CRC-32, then write the directory
4419 * out to the stream.
4420 */
4421 *pcEntries = pDir->cEntries;
4422 cbDir = RT_OFFSETOF(SSMFILEDIR, aEntries[pDir->cEntries]);
4423 pDir->u32CRC = RTCrc32(pDir, cbDir);
4424 int rc = ssmR3StrmWrite(&pSSM->Strm, pDir, cbDir);
4425 RTMemTmpFree(pDir);
4426 return rc;
4427}
4428
4429
4430/**
4431 * Finalize the saved state stream, i.e. add the end unit, directory
4432 * and footer.
4433 *
4434 * @returns VBox status code (pSSM->rc).
4435 * @param pVM The VM handle.
4436 * @param pSSM The saved state handle.
4437 */
4438static int ssmR3SaveDoFinalization(PVM pVM, PSSMHANDLE pSSM)
4439{
4440 VM_ASSERT_EMT0(pVM);
4441 Assert(RT_SUCCESS(pSSM->rc));
4442
4443 /*
4444 * Write the end unit.
4445 */
4446 SSMFILEUNITHDRV2 UnitHdr;
4447 memcpy(&UnitHdr.szMagic[0], SSMFILEUNITHDR_END, sizeof(UnitHdr.szMagic));
4448 UnitHdr.offStream = ssmR3StrmTell(&pSSM->Strm);
4449 UnitHdr.u32CurStreamCRC = ssmR3StrmCurCRC(&pSSM->Strm);
4450 UnitHdr.u32CRC = 0;
4451 UnitHdr.u32Version = 0;
4452 UnitHdr.u32Instance = 0;
4453 UnitHdr.u32Pass = SSM_PASS_FINAL;
4454 UnitHdr.fFlags = 0;
4455 UnitHdr.cbName = 0;
4456 UnitHdr.u32CRC = RTCrc32(&UnitHdr, RT_OFFSETOF(SSMFILEUNITHDRV2, szName[0]));
4457 Log(("SSM: Unit at %#9llx: END UNIT\n", UnitHdr.offStream));
4458 int rc = ssmR3StrmWrite(&pSSM->Strm, &UnitHdr, RT_OFFSETOF(SSMFILEUNITHDRV2, szName[0]));
4459 if (RT_FAILURE(rc))
4460 {
4461 LogRel(("SSM: Failed writing the end unit: %Rrc\n", rc));
4462 return pSSM->rc = rc;
4463 }
4464
4465 /*
4466 * Write the directory for the final units and then the footer.
4467 */
4468 SSMFILEFTR Footer;
4469 rc = ssmR3WriteDirectory(pVM, pSSM, &Footer.cDirEntries);
4470 if (RT_FAILURE(rc))
4471 {
4472 LogRel(("SSM: Failed writing the directory: %Rrc\n", rc));
4473 return pSSM->rc = rc;
4474 }
4475
4476 memcpy(Footer.szMagic, SSMFILEFTR_MAGIC, sizeof(Footer.szMagic));
4477 Footer.offStream = ssmR3StrmTell(&pSSM->Strm);
4478 Footer.u32StreamCRC = ssmR3StrmFinalCRC(&pSSM->Strm);
4479 Footer.u32Reserved = 0;
4480 Footer.u32CRC = 0;
4481 Footer.u32CRC = RTCrc32(&Footer, sizeof(Footer));
4482 Log(("SSM: Footer at %#9llx: \n", Footer.offStream));
4483 rc = ssmR3StrmWrite(&pSSM->Strm, &Footer, sizeof(Footer));
4484 if (RT_SUCCESS(rc))
4485 rc = ssmR3StrmSetEnd(&pSSM->Strm);
4486 if (RT_FAILURE(rc))
4487 {
4488 LogRel(("SSM: Failed writing the footer: %Rrc\n", rc));
4489 return pSSM->rc = rc;
4490 }
4491
4492 LogRel(("SSM: Footer at %#llx (%lld), %u directory entries.\n",
4493 Footer.offStream, Footer.offStream, Footer.cDirEntries));
4494 return VINF_SUCCESS;
4495}
4496
4497
4498/**
4499 * Works the progress calculation during the exec part of a live save.
4500 *
4501 * @param pSSM The SSM handle.
4502 * @param iUnit The current unit number.
4503 */
4504static void ssmR3ProgressByUnit(PSSMHANDLE pSSM, uint32_t iUnit)
4505{
4506 if (pSSM->fLiveSave)
4507 {
4508 unsigned uPctExec = iUnit * 100 / pSSM->pVM->ssm.s.cUnits;
4509 unsigned cPctExec = 100 - pSSM->uPercentDone - pSSM->uPercentPrepare - pSSM->uPercentLive;
4510 long double lrdPct = (long double)uPctExec * cPctExec / 100 + pSSM->uPercentPrepare + pSSM->uPercentLive;
4511 unsigned uPct = (unsigned)lrdPct;
4512 if (uPct != pSSM->uPercent)
4513 {
4514 ssmR3LiveControlEmit(pSSM, lrdPct, SSM_PASS_FINAL);
4515 pSSM->uPercent = uPct;
4516 pSSM->pfnProgress(pSSM->pVM, uPct, pSSM->pvUser);
4517 }
4518 }
4519}
4520
4521
4522/**
4523 * Do the pfnSaveExec run.
4524 *
4525 * @returns VBox status code (pSSM->rc).
4526 * @param pVM The VM handle.
4527 * @param pSSM The saved state handle.
4528 */
4529static int ssmR3SaveDoExecRun(PVM pVM, PSSMHANDLE pSSM)
4530{
4531 VM_ASSERT_EMT0(pVM);
4532 AssertRC(pSSM->rc);
4533 pSSM->rc = VINF_SUCCESS;
4534 pSSM->enmOp = SSMSTATE_SAVE_EXEC;
4535 unsigned iUnit = 0;
4536 for (PSSMUNIT pUnit = pVM->ssm.s.pHead; pUnit; pUnit = pUnit->pNext, iUnit++)
4537 {
4538 /*
4539 * Not all unit have a callback. Skip those which don't and
4540 * make sure to keep the progress indicator up to date.
4541 */
4542 ssmR3ProgressByUnit(pSSM, iUnit);
4543 pSSM->offEstUnitEnd += pUnit->cbGuess;
4544 if (!pUnit->u.Common.pfnSaveExec)
4545 {
4546 pUnit->fCalled = true;
4547 if (pUnit->cbGuess)
4548 ssmR3ProgressByByte(pSSM, pSSM->offEstUnitEnd - pSSM->offEst);
4549 continue;
4550 }
4551 pUnit->offStream = ssmR3StrmTell(&pSSM->Strm);
4552
4553 /*
4554 * Check for cancellation.
4555 */
4556 if (RT_UNLIKELY(ASMAtomicUoReadU32(&(pSSM)->fCancelled) == SSMHANDLE_CANCELLED))
4557 {
4558 LogRel(("SSM: Cancelled!\n"));
4559 AssertRC(pSSM->rc);
4560 return pSSM->rc = VERR_SSM_CANCELLED;
4561 }
4562
4563 /*
4564 * Write data unit header
4565 */
4566 SSMFILEUNITHDRV2 UnitHdr;
4567 memcpy(&UnitHdr.szMagic[0], SSMFILEUNITHDR_MAGIC, sizeof(UnitHdr.szMagic));
4568 UnitHdr.offStream = pUnit->offStream;
4569 UnitHdr.u32CurStreamCRC = ssmR3StrmCurCRC(&pSSM->Strm);
4570 UnitHdr.u32CRC = 0;
4571 UnitHdr.u32Version = pUnit->u32Version;
4572 UnitHdr.u32Instance = pUnit->u32Instance;
4573 UnitHdr.u32Pass = SSM_PASS_FINAL;
4574 UnitHdr.fFlags = 0;
4575 UnitHdr.cbName = (uint32_t)pUnit->cchName + 1;
4576 memcpy(&UnitHdr.szName[0], &pUnit->szName[0], UnitHdr.cbName);
4577 UnitHdr.u32CRC = RTCrc32(&UnitHdr, RT_OFFSETOF(SSMFILEUNITHDRV2, szName[UnitHdr.cbName]));
4578 Log(("SSM: Unit at %#9llx: '%s', instance %u, pass %#x, version %u\n",
4579 UnitHdr.offStream, UnitHdr.szName, UnitHdr.u32Instance, UnitHdr.u32Pass, UnitHdr.u32Version));
4580 int rc = ssmR3StrmWrite(&pSSM->Strm, &UnitHdr, RT_OFFSETOF(SSMFILEUNITHDRV2, szName[UnitHdr.cbName]));
4581 if (RT_FAILURE(rc))
4582 {
4583 LogRel(("SSM: Failed to write unit header. rc=%Rrc\n", rc));
4584 return pSSM->rc = rc;
4585 }
4586
4587 /*
4588 * Call the execute handler.
4589 */
4590 ssmR3DataWriteBegin(pSSM);
4591 switch (pUnit->enmType)
4592 {
4593 case SSMUNITTYPE_DEV:
4594 rc = pUnit->u.Dev.pfnSaveExec(pUnit->u.Dev.pDevIns, pSSM);
4595 break;
4596 case SSMUNITTYPE_DRV:
4597 rc = pUnit->u.Drv.pfnSaveExec(pUnit->u.Drv.pDrvIns, pSSM);
4598 break;
4599 case SSMUNITTYPE_INTERNAL:
4600 rc = pUnit->u.Internal.pfnSaveExec(pVM, pSSM);
4601 break;
4602 case SSMUNITTYPE_EXTERNAL:
4603 pUnit->u.External.pfnSaveExec(pSSM, pUnit->u.External.pvUser);
4604 rc = pSSM->rc;
4605 break;
4606 default:
4607 rc = VERR_SSM_IPE_1;
4608 break;
4609 }
4610 pUnit->fCalled = true;
4611 if (RT_FAILURE(rc) && RT_SUCCESS_NP(pSSM->rc))
4612 pSSM->rc = rc;
4613 else
4614 rc = ssmR3DataFlushBuffer(pSSM); /* will return SSMHANDLE::rc if it is set */
4615 if (RT_FAILURE(rc))
4616 {
4617 LogRel(("SSM: Execute save failed with rc=%Rrc for data unit '%s'/#%u.\n", rc, pUnit->szName, pUnit->u32Instance));
4618 return rc;
4619 }
4620
4621 /*
4622 * Write the termination record and flush the compression stream.
4623 */
4624 SSMRECTERM TermRec;
4625 TermRec.u8TypeAndFlags = SSM_REC_FLAGS_FIXED | SSM_REC_FLAGS_IMPORTANT | SSM_REC_TYPE_TERM;
4626 TermRec.cbRec = sizeof(TermRec) - 2;
4627 if (pSSM->Strm.fChecksummed)
4628 {
4629 TermRec.fFlags = SSMRECTERM_FLAGS_CRC32;
4630 TermRec.u32StreamCRC = RTCrc32Finish(RTCrc32Process(ssmR3StrmCurCRC(&pSSM->Strm), &TermRec, 2));
4631 }
4632 else
4633 {
4634 TermRec.fFlags = 0;
4635 TermRec.u32StreamCRC = 0;
4636 }
4637 TermRec.cbUnit = pSSM->offUnit + sizeof(TermRec);
4638 rc = ssmR3DataWriteRaw(pSSM, &TermRec, sizeof(TermRec));
4639 if (RT_SUCCESS(rc))
4640 rc = ssmR3DataWriteFinish(pSSM);
4641 if (RT_FAILURE(rc))
4642 {
4643 LogRel(("SSM: Failed terminating unit: %Rrc\n", rc));
4644 return pSSM->rc = rc;
4645 }
4646
4647 /*
4648 * Advance the progress indicator to the end of the current unit.
4649 */
4650 ssmR3ProgressByByte(pSSM, pSSM->offEstUnitEnd - pSSM->offEst);
4651 } /* for each unit */
4652 ssmR3ProgressByUnit(pSSM, pVM->ssm.s.cUnits);
4653
4654 /* (progress should be pending 99% now) */
4655 AssertMsg( pSSM->uPercent == 101 - pSSM->uPercentDone
4656 || pSSM->uPercent == 100 - pSSM->uPercentDone,
4657 ("%d\n", pSSM->uPercent));
4658 return VINF_SUCCESS;
4659}
4660
4661
4662/**
4663 * Do the pfnSavePrep run.
4664 *
4665 * @returns VBox status code (pSSM->rc).
4666 * @param pVM The VM handle.
4667 * @param pSSM The saved state handle.
4668 */
4669static int ssmR3SaveDoPrepRun(PVM pVM, PSSMHANDLE pSSM)
4670{
4671 VM_ASSERT_EMT0(pVM);
4672 Assert(RT_SUCCESS(pSSM->rc));
4673 pSSM->enmOp = SSMSTATE_SAVE_PREP;
4674 for (PSSMUNIT pUnit = pVM->ssm.s.pHead; pUnit; pUnit = pUnit->pNext)
4675 {
4676 if (pUnit->u.Common.pfnSavePrep)
4677 {
4678 int rc;
4679 switch (pUnit->enmType)
4680 {
4681 case SSMUNITTYPE_DEV:
4682 rc = pUnit->u.Dev.pfnSavePrep(pUnit->u.Dev.pDevIns, pSSM);
4683 break;
4684 case SSMUNITTYPE_DRV:
4685 rc = pUnit->u.Drv.pfnSavePrep(pUnit->u.Drv.pDrvIns, pSSM);
4686 break;
4687 case SSMUNITTYPE_INTERNAL:
4688 rc = pUnit->u.Internal.pfnSavePrep(pVM, pSSM);
4689 break;
4690 case SSMUNITTYPE_EXTERNAL:
4691 rc = pUnit->u.External.pfnSavePrep(pSSM, pUnit->u.External.pvUser);
4692 break;
4693 default:
4694 rc = VERR_SSM_IPE_1;
4695 break;
4696 }
4697 pUnit->fCalled = true;
4698 if (RT_FAILURE(rc) && RT_SUCCESS_NP(pSSM->rc))
4699 pSSM->rc = rc;
4700 else
4701 rc = pSSM->rc;
4702 if (RT_FAILURE(rc))
4703 {
4704 LogRel(("SSM: Prepare save failed with rc=%Rrc for data unit '%s.\n", rc, pUnit->szName));
4705 return rc;
4706 }
4707 }
4708
4709 pSSM->cbEstTotal += pUnit->cbGuess;
4710 }
4711
4712 /*
4713 * Work the progress indicator if we got one.
4714 */
4715 if (pSSM->pfnProgress)
4716 pSSM->pfnProgress(pVM, pSSM->uPercentPrepare + pSSM->uPercentLive - 1, pSSM->pvUser);
4717 pSSM->uPercent = pSSM->uPercentPrepare + pSSM->uPercentLive;
4718
4719 return VINF_SUCCESS;
4720}
4721
4722
4723/**
4724 * Common worker for SSMR3Save and SSMR3LiveSave.
4725 *
4726 * @returns VBox status code (no need to check pSSM->rc).
4727 * @param pVM The VM handle.
4728 * @param pSSM The state handle.
4729 *
4730 * @thread EMT(0)
4731 */
4732static int ssmR3SaveDoCommon(PVM pVM, PSSMHANDLE pSSM)
4733{
4734 VM_ASSERT_EMT0(pVM);
4735
4736 /*
4737 * Do the work.
4738 */
4739 int rc = ssmR3SaveDoPrepRun(pVM, pSSM);
4740 if (RT_SUCCESS(rc))
4741 {
4742 rc = ssmR3SaveDoExecRun(pVM, pSSM);
4743 if (RT_SUCCESS(rc))
4744 rc = ssmR3SaveDoFinalization(pVM, pSSM);
4745 }
4746 Assert(pSSM->rc == rc);
4747 int rc2 = ssmR3SaveDoDoneRun(pVM, pSSM);
4748 if (RT_SUCCESS(rc))
4749 rc = rc2;
4750
4751 return rc;
4752}
4753
4754
4755/**
4756 * Saves the rest of the state on EMT0.
4757 *
4758 * @returns VBox status.
4759 *
4760 * @param pSSM The SSM handle returned by SSMR3LiveSave.
4761 *
4762 * @thread Non-EMT thread. Will involve the EMT at the end of the operation.
4763 */
4764VMMR3_INT_DECL(int) SSMR3LiveDoStep2(PSSMHANDLE pSSM)
4765{
4766 LogFlow(("SSMR3LiveDoStep2: pSSM=%p\n", pSSM));
4767
4768 /*
4769 * Validate input.
4770 */
4771 AssertPtrReturn(pSSM, VERR_INVALID_POINTER);
4772 PVM pVM = pSSM->pVM;
4773 VM_ASSERT_VALID_EXT_RETURN(pVM, VERR_INVALID_VM_HANDLE);
4774 VM_ASSERT_EMT0(pVM);
4775 AssertMsgReturn( pSSM->enmAfter == SSMAFTER_DESTROY
4776 || pSSM->enmAfter == SSMAFTER_CONTINUE
4777 || pSSM->enmAfter == SSMAFTER_TELEPORT,
4778 ("%d\n", pSSM->enmAfter),
4779 VERR_INVALID_PARAMETER);
4780 AssertMsgReturn(pSSM->enmOp == SSMSTATE_LIVE_STEP2, ("%d\n", pSSM->enmOp), VERR_INVALID_STATE);
4781 AssertRCReturn(pSSM->rc, pSSM->rc);
4782
4783 /*
4784 * Join paths with VMMR3Save.
4785 */
4786 return ssmR3SaveDoCommon(pVM, pSSM);
4787}
4788
4789
4790/**
4791 * Writes the file header and clear the per-unit data.
4792 *
4793 * @returns VBox status code.
4794 * @param pVM The VM handle.
4795 * @param pSSM The SSM handle.
4796 */
4797static int ssmR3WriteHeaderAndClearPerUnitData(PVM pVM, PSSMHANDLE pSSM)
4798{
4799 /*
4800 * Write the header.
4801 */
4802 SSMFILEHDR FileHdr;
4803 memcpy(&FileHdr.szMagic, SSMFILEHDR_MAGIC_V2_0, sizeof(FileHdr.szMagic));
4804 FileHdr.u16VerMajor = VBOX_VERSION_MAJOR;
4805 FileHdr.u16VerMinor = VBOX_VERSION_MINOR;
4806 FileHdr.u32VerBuild = VBOX_VERSION_BUILD;
4807 FileHdr.u32SvnRev = VMMGetSvnRev();
4808 FileHdr.cHostBits = HC_ARCH_BITS;
4809 FileHdr.cbGCPhys = sizeof(RTGCPHYS);
4810 FileHdr.cbGCPtr = sizeof(RTGCPTR);
4811 FileHdr.u8Reserved = 0;
4812 FileHdr.cUnits = pVM->ssm.s.cUnits;
4813 FileHdr.fFlags = SSMFILEHDR_FLAGS_STREAM_CRC32;
4814 if (pSSM->fLiveSave)
4815 FileHdr.fFlags |= SSMFILEHDR_FLAGS_STREAM_LIVE_SAVE;
4816 FileHdr.cbMaxDecompr = RT_SIZEOFMEMB(SSMHANDLE, u.Read.abDataBuffer);
4817 FileHdr.u32CRC = 0;
4818 FileHdr.u32CRC = RTCrc32(&FileHdr, sizeof(FileHdr));
4819 int rc = ssmR3StrmWrite(&pSSM->Strm, &FileHdr, sizeof(FileHdr));
4820 if (RT_FAILURE(rc))
4821 return rc;
4822
4823 /*
4824 * Clear the per unit flags and offsets.
4825 */
4826 for (PSSMUNIT pUnit = pVM->ssm.s.pHead; pUnit; pUnit = pUnit->pNext)
4827 {
4828 pUnit->fCalled = false;
4829 pUnit->offStream = RTFOFF_MIN;
4830 }
4831
4832 return VINF_SUCCESS;
4833}
4834
4835
4836/**
4837 * Creates a new saved state file.
4838 *
4839 * @returns VBox status code.
4840 * @param pVM The VM handle.
4841 * @param pszFilename The name of the file. NULL if pStreamOps is
4842 * used.
4843 * @param pStreamOps The stream methods. NULL if pszFilename is
4844 * used.
4845 * @param pvStreamOpsUser The user argument to the stream methods.
4846 * @param enmAfter What to do afterwards.
4847 * @param pfnProgress The progress callback.
4848 * @param pvProgressUser The progress callback user argument.
4849 * @param ppSSM Where to return the pointer to the saved state
4850 * handle upon successful return. Free it using
4851 * RTMemFree after closing the stream.
4852 */
4853static int ssmR3SaveDoCreateFile(PVM pVM, const char *pszFilename, PCSSMSTRMOPS pStreamOps, void *pvStreamOpsUser,
4854 SSMAFTER enmAfter, PFNVMPROGRESS pfnProgress, void *pvProgressUser, PSSMHANDLE *ppSSM)
4855{
4856 PSSMHANDLE pSSM = (PSSMHANDLE)RTMemAllocZ(sizeof(*pSSM));
4857 if (!pSSM)
4858 return VERR_NO_MEMORY;
4859
4860 pSSM->pVM = pVM;
4861 pSSM->enmOp = SSMSTATE_INVALID;
4862 pSSM->enmAfter = enmAfter;
4863 pSSM->fCancelled = SSMHANDLE_OK;
4864 pSSM->rc = VINF_SUCCESS;
4865 pSSM->cbUnitLeftV1 = 0;
4866 pSSM->offUnit = UINT64_MAX;
4867 pSSM->fLiveSave = false;
4868 pSSM->pfnProgress = pfnProgress;
4869 pSSM->pvUser = pvProgressUser;
4870 pSSM->uPercent = 0;
4871 pSSM->offEstProgress = 0;
4872 pSSM->cbEstTotal = 0;
4873 pSSM->offEst = 0;
4874 pSSM->offEstUnitEnd = 0;
4875 pSSM->uPercentLive = 0;
4876 pSSM->uPercentPrepare = 0;
4877 pSSM->uPercentDone = 0;
4878 pSSM->uReportedLivePercent = 0;
4879 pSSM->pszFilename = pszFilename;
4880 pSSM->u.Write.offDataBuffer = 0;
4881 pSSM->u.Write.cMsMaxDowntime = UINT32_MAX;
4882
4883 int rc;
4884 if (pStreamOps)
4885 rc = ssmR3StrmInit(&pSSM->Strm, pStreamOps, pvStreamOpsUser, true /*fWrite*/, true /*fChecksummed*/, 8 /*cBuffers*/);
4886 else
4887 rc = ssmR3StrmOpenFile(&pSSM->Strm, pszFilename, true /*fWrite*/, true /*fChecksummed*/, 8 /*cBuffers*/);
4888 if (RT_FAILURE(rc))
4889 {
4890 LogRel(("SSM: Failed to create save state file '%s', rc=%Rrc.\n", pszFilename, rc));
4891 RTMemFree(pSSM);
4892 return rc;
4893 }
4894
4895 *ppSSM = pSSM;
4896 return VINF_SUCCESS;
4897}
4898
4899
4900/**
4901 * Start VM save operation.
4902 *
4903 * @returns VBox status.
4904 *
4905 * @param pVM The VM handle.
4906 * @param pszFilename Name of the file to save the state in. NULL if pStreamOps is used.
4907 * @param pStreamOps The stream method table. NULL if pszFilename is
4908 * used.
4909 * @param pvStreamOpsUser The user argument to the stream methods.
4910 * @param enmAfter What is planned after a successful save operation.
4911 * @param pfnProgress Progress callback. Optional.
4912 * @param pvUser User argument for the progress callback.
4913 *
4914 * @thread EMT
4915 */
4916VMMR3DECL(int) SSMR3Save(PVM pVM, const char *pszFilename, PCSSMSTRMOPS pStreamOps, void *pvStreamOpsUser,
4917 SSMAFTER enmAfter, PFNVMPROGRESS pfnProgress, void *pvUser)
4918{
4919 LogFlow(("SSMR3Save: pszFilename=%p:{%s} enmAfter=%d pfnProgress=%p pvUser=%p\n", pszFilename, pszFilename, enmAfter, pfnProgress, pvUser));
4920 VM_ASSERT_EMT0(pVM);
4921
4922 /*
4923 * Validate input.
4924 */
4925 AssertMsgReturn( enmAfter == SSMAFTER_DESTROY
4926 || enmAfter == SSMAFTER_CONTINUE,
4927 ("%d\n", enmAfter),
4928 VERR_INVALID_PARAMETER);
4929
4930 AssertReturn(!pszFilename != !pStreamOps, VERR_INVALID_PARAMETER);
4931 if (pStreamOps)
4932 {
4933 AssertReturn(pStreamOps->u32Version == SSMSTRMOPS_VERSION, VERR_INVALID_MAGIC);
4934 AssertReturn(pStreamOps->u32EndVersion == SSMSTRMOPS_VERSION, VERR_INVALID_MAGIC);
4935 AssertReturn(pStreamOps->pfnWrite, VERR_INVALID_PARAMETER);
4936 AssertReturn(pStreamOps->pfnRead, VERR_INVALID_PARAMETER);
4937 AssertReturn(pStreamOps->pfnSeek, VERR_INVALID_PARAMETER);
4938 AssertReturn(pStreamOps->pfnTell, VERR_INVALID_PARAMETER);
4939 AssertReturn(pStreamOps->pfnSize, VERR_INVALID_PARAMETER);
4940 AssertReturn(pStreamOps->pfnClose, VERR_INVALID_PARAMETER);
4941 }
4942
4943 /*
4944 * Create the saved state file and handle.
4945 *
4946 * Note that there might be quite some work to do after executing the saving,
4947 * so we reserve 20% for the 'Done' period.
4948 */
4949 PSSMHANDLE pSSM;
4950 int rc = ssmR3SaveDoCreateFile(pVM, pszFilename, pStreamOps, pvStreamOpsUser,
4951 enmAfter, pfnProgress, pvUser, &pSSM);
4952 if (RT_FAILURE(rc))
4953 return rc;
4954 pSSM->uPercentLive = 0;
4955 pSSM->uPercentPrepare = 20;
4956 pSSM->uPercentDone = 2;
4957 pSSM->fLiveSave = false;
4958
4959 /*
4960 * Write the saved state stream header and join paths with
4961 * the other save methods for the rest of the job.
4962 */
4963 Log(("SSM: Starting state save to file '%s'...\n", pszFilename));
4964 ssmR3StrmStartIoThread(&pSSM->Strm);
4965 rc = ssmR3WriteHeaderAndClearPerUnitData(pVM, pSSM);
4966 if (RT_SUCCESS(rc))
4967 {
4968 ssmR3SetCancellable(pVM, pSSM, true);
4969 ssmR3SaveDoCommon(pVM, pSSM);
4970 }
4971
4972 return ssmR3SaveDoClose(pVM, pSSM);
4973}
4974
4975
4976/**
4977 * Used by PGM to report the completion percentage of the live stage during the
4978 * vote run.
4979 *
4980 * @param pSSM The saved state handle.
4981 * @param uPercent The completion percentage.
4982 */
4983VMMR3DECL(void) SSMR3HandleReportLivePercent(PSSMHANDLE pSSM, unsigned uPercent)
4984{
4985 AssertMsgReturnVoid(pSSM->enmOp == SSMSTATE_LIVE_VOTE, ("%d\n", pSSM->enmOp));
4986 AssertReturnVoid(uPercent <= 100);
4987 if (uPercent < pSSM->uReportedLivePercent)
4988 pSSM->uReportedLivePercent = uPercent;
4989}
4990
4991
4992/**
4993 * Calls pfnLiveVote for all units.
4994 *
4995 * @returns VBox status code (no need to check pSSM->rc).
4996 * @retval VINF_SUCCESS if we can pass on to step 2.
4997 * @retval VINF_SSM_VOTE_FOR_ANOTHER_PASS if we need another pass.
4998 *
4999 * @param pVM The VM handle.
5000 * @param pSSM The saved state handle.
5001 * @param uPass The current pass.
5002 */
5003static int ssmR3LiveDoVoteRun(PVM pVM, PSSMHANDLE pSSM, uint32_t uPass)
5004{
5005 int rcRet = VINF_SUCCESS;
5006 AssertRC(pSSM->rc);
5007 pSSM->rc = VINF_SUCCESS;
5008 pSSM->enmOp = SSMSTATE_LIVE_VOTE;
5009
5010 unsigned uPrevPrecent = pSSM->uReportedLivePercent;
5011 pSSM->uReportedLivePercent = 101;
5012
5013 for (PSSMUNIT pUnit = pVM->ssm.s.pHead; pUnit; pUnit = pUnit->pNext)
5014 {
5015 if ( pUnit->u.Common.pfnLiveVote
5016 && !pUnit->fDoneLive)
5017 {
5018 int rc;
5019 switch (pUnit->enmType)
5020 {
5021 case SSMUNITTYPE_DEV:
5022 rc = pUnit->u.Dev.pfnLiveVote(pUnit->u.Dev.pDevIns, pSSM, uPass);
5023 break;
5024 case SSMUNITTYPE_DRV:
5025 rc = pUnit->u.Drv.pfnLiveVote(pUnit->u.Drv.pDrvIns, pSSM, uPass);
5026 break;
5027 case SSMUNITTYPE_INTERNAL:
5028 rc = pUnit->u.Internal.pfnLiveVote(pVM, pSSM, uPass);
5029 break;
5030 case SSMUNITTYPE_EXTERNAL:
5031 rc = pUnit->u.External.pfnLiveVote(pSSM, pUnit->u.External.pvUser, uPass);
5032 break;
5033 default:
5034 rc = VERR_SSM_IPE_1;
5035 break;
5036 }
5037 pUnit->fCalled = true;
5038 Assert(pSSM->rc == VINF_SUCCESS);
5039 if (rc != VINF_SUCCESS)
5040 {
5041 if (rc == VINF_SSM_VOTE_FOR_ANOTHER_PASS)
5042 {
5043 Log(("ssmR3DoLiveVoteRun: '%s'/#%u -> VINF_SSM_VOTE_FOR_ANOTHER_PASS (pass=%u)\n", pUnit->szName, pUnit->u32Instance, uPass));
5044 rcRet = VINF_SSM_VOTE_FOR_ANOTHER_PASS;
5045 }
5046 else if (rc == VINF_SSM_VOTE_DONE_DONT_CALL_AGAIN)
5047 {
5048 pUnit->fDoneLive = true;
5049 Log(("ssmR3DoLiveVoteRun: '%s'/#%u -> VINF_SSM_VOTE_DONE_DONT_CALL_AGAIN (pass=%u)\n", pUnit->szName, pUnit->u32Instance, uPass));
5050 }
5051 else
5052 {
5053 /*
5054 * rc is usually VERR_SSM_VOTE_FOR_GIVING_UP here, but we allow
5055 * other status codes for better user feed back. However, no
5056 * other non-error status is allowed.
5057 */
5058 LogRel(("SSM: Error - '%s'/#%u voted %Rrc! (pass=%u)\n", pUnit->szName, pUnit->u32Instance, rc, uPass));
5059 AssertMsgReturn(RT_FAILURE(rc), ("%Rrc; '%s'\n", rc, pUnit->szName), pSSM->rc = VERR_IPE_UNEXPECTED_INFO_STATUS);
5060 return pSSM->rc = rc;
5061 }
5062 }
5063 }
5064 }
5065 if (rcRet == VINF_SUCCESS)
5066 {
5067 LogRel(("SSM: Step 1 completed after pass %u.\n", uPass));
5068 pSSM->uReportedLivePercent = 100;
5069 }
5070 else
5071 {
5072 /*
5073 * Work the progress callback.
5074 */
5075 if (pSSM->uReportedLivePercent > 100)
5076 pSSM->uReportedLivePercent = 0;
5077 if ( pSSM->uReportedLivePercent != uPrevPrecent
5078 && pSSM->pfnProgress
5079 && pSSM->uPercentLive)
5080 {
5081 long double lrdPct = (long double)pSSM->uReportedLivePercent * pSSM->uPercentLive / 100;
5082 unsigned uPct = (unsigned)lrdPct;
5083 if (uPct != pSSM->uPercent)
5084 {
5085 ssmR3LiveControlEmit(pSSM, lrdPct, uPass);
5086 pSSM->uPercent = uPct;
5087 pSSM->pfnProgress(pVM, uPct, pSSM->pvUser);
5088 }
5089 }
5090 }
5091 return rcRet;
5092}
5093
5094
5095/**
5096 * Calls pfnLiveExec for all units.
5097 *
5098 * @returns VBox status code (no need to check pSSM->rc).
5099 *
5100 * @param pVM The VM handle.
5101 * @param pSSM The saved state handle.
5102 * @param uPass The current pass.
5103 */
5104static int ssmR3LiveDoExecRun(PVM pVM, PSSMHANDLE pSSM, uint32_t uPass)
5105{
5106 AssertRC(pSSM->rc);
5107 pSSM->rc = VINF_SUCCESS;
5108 pSSM->enmOp = SSMSTATE_LIVE_EXEC;
5109 for (PSSMUNIT pUnit = pVM->ssm.s.pHead; pUnit; pUnit = pUnit->pNext)
5110 {
5111 /*
5112 * Skip units without a callback (this is most).
5113 */
5114 if ( !pUnit->u.Common.pfnLiveExec
5115 || pUnit->fDoneLive)
5116 continue;
5117 pUnit->offStream = ssmR3StrmTell(&pSSM->Strm);
5118
5119 /*
5120 * Check for cancellation.
5121 */
5122 if (RT_UNLIKELY(ASMAtomicUoReadU32(&(pSSM)->fCancelled) == SSMHANDLE_CANCELLED))
5123 {
5124 LogRel(("SSM: Cancelled!\n"));
5125 AssertRC(pSSM->rc);
5126 return pSSM->rc = VERR_SSM_CANCELLED;
5127 }
5128
5129 /*
5130 * Write data unit header.
5131 */
5132 SSMFILEUNITHDRV2 UnitHdr;
5133 memcpy(&UnitHdr.szMagic[0], SSMFILEUNITHDR_MAGIC, sizeof(UnitHdr.szMagic));
5134 UnitHdr.offStream = pUnit->offStream;
5135 UnitHdr.u32CurStreamCRC = ssmR3StrmCurCRC(&pSSM->Strm);
5136 UnitHdr.u32CRC = 0;
5137 UnitHdr.u32Version = pUnit->u32Version;
5138 UnitHdr.u32Instance = pUnit->u32Instance;
5139 UnitHdr.u32Pass = uPass;
5140 UnitHdr.fFlags = 0;
5141 UnitHdr.cbName = (uint32_t)pUnit->cchName + 1;
5142 memcpy(&UnitHdr.szName[0], &pUnit->szName[0], UnitHdr.cbName);
5143 UnitHdr.u32CRC = RTCrc32(&UnitHdr, RT_OFFSETOF(SSMFILEUNITHDRV2, szName[UnitHdr.cbName]));
5144 Log(("SSM: Unit at %#9llx: '%s', instance %u, pass %#x, version %u\n",
5145 UnitHdr.offStream, UnitHdr.szName, UnitHdr.u32Instance, UnitHdr.u32Pass, UnitHdr.u32Version));
5146 int rc = ssmR3StrmWrite(&pSSM->Strm, &UnitHdr, RT_OFFSETOF(SSMFILEUNITHDRV2, szName[UnitHdr.cbName]));
5147 if (RT_FAILURE(rc))
5148 {
5149 LogRel(("SSM: Failed to write unit header. rc=%Rrc\n", rc));
5150 return pSSM->rc = rc;
5151 }
5152
5153 /*
5154 * Call the execute handler.
5155 */
5156 ssmR3DataWriteBegin(pSSM);
5157 switch (pUnit->enmType)
5158 {
5159 case SSMUNITTYPE_DEV:
5160 rc = pUnit->u.Dev.pfnLiveExec(pUnit->u.Dev.pDevIns, pSSM, uPass);
5161 break;
5162 case SSMUNITTYPE_DRV:
5163 rc = pUnit->u.Drv.pfnLiveExec(pUnit->u.Drv.pDrvIns, pSSM, uPass);
5164 break;
5165 case SSMUNITTYPE_INTERNAL:
5166 rc = pUnit->u.Internal.pfnLiveExec(pVM, pSSM, uPass);
5167 break;
5168 case SSMUNITTYPE_EXTERNAL:
5169 rc = pUnit->u.External.pfnLiveExec(pSSM, pUnit->u.External.pvUser, uPass);
5170 break;
5171 default:
5172 rc = VERR_SSM_IPE_1;
5173 break;
5174 }
5175 pUnit->fCalled = true;
5176 if (RT_FAILURE(rc) && RT_SUCCESS_NP(pSSM->rc))
5177 pSSM->rc = rc;
5178 else
5179 {
5180 if (rc == VINF_SSM_DONT_CALL_AGAIN)
5181 pUnit->fDoneLive = true;
5182 rc = ssmR3DataFlushBuffer(pSSM); /* will return SSMHANDLE::rc if it is set */
5183 }
5184 if (RT_FAILURE(rc))
5185 {
5186 LogRel(("SSM: Execute save failed with rc=%Rrc for data unit '%s'/#%u.\n", rc, pUnit->szName, pUnit->u32Instance));
5187 if (RT_SUCCESS(pSSM->rc))
5188 pSSM->rc = rc;
5189 return rc;
5190 }
5191
5192 /*
5193 * Write the termination record and flush the compression stream.
5194 */
5195 SSMRECTERM TermRec;
5196 TermRec.u8TypeAndFlags = SSM_REC_FLAGS_FIXED | SSM_REC_FLAGS_IMPORTANT | SSM_REC_TYPE_TERM;
5197 TermRec.cbRec = sizeof(TermRec) - 2;
5198 if (pSSM->Strm.fChecksummed)
5199 {
5200 TermRec.fFlags = SSMRECTERM_FLAGS_CRC32;
5201 TermRec.u32StreamCRC = RTCrc32Finish(RTCrc32Process(ssmR3StrmCurCRC(&pSSM->Strm), &TermRec, 2));
5202 }
5203 else
5204 {
5205 TermRec.fFlags = 0;
5206 TermRec.u32StreamCRC = 0;
5207 }
5208 TermRec.cbUnit = pSSM->offUnit + sizeof(TermRec);
5209 rc = ssmR3DataWriteRaw(pSSM, &TermRec, sizeof(TermRec));
5210 if (RT_SUCCESS(rc))
5211 rc = ssmR3DataWriteFinish(pSSM);
5212 if (RT_FAILURE(rc))
5213 {
5214 LogRel(("SSM: Failed terminating unit: %Rrc (pass=%u)\n", rc, uPass));
5215 return pSSM->rc = rc;
5216 }
5217 } /* for each unit */
5218
5219 return VINF_SUCCESS;
5220}
5221
5222
5223/**
5224 * Implements the live exec+vote loop.
5225 *
5226 * @returns VBox status code (no need to check pSSM->rc).
5227 * @param pVM The VM handle.
5228 * @param pSSM The saved state handle.
5229 */
5230static int ssmR3DoLiveExecVoteLoop(PVM pVM, PSSMHANDLE pSSM)
5231{
5232 /*
5233 * Calc the max saved state size before we should give up because of insane
5234 * amounts of data.
5235 */
5236#define SSM_MAX_GROWTH_FILE 10000
5237#define SSM_MAX_GROWTH_REMOTE 100000
5238 uint64_t cbSum = 0;
5239 for (PSSMUNIT pUnit = pVM->ssm.s.pHead; pUnit; pUnit = pUnit->pNext)
5240 cbSum += pUnit->cbGuess;
5241 uint64_t cbMax = cbSum * (pSSM->pszFilename ? SSM_MAX_GROWTH_FILE : SSM_MAX_GROWTH_REMOTE);
5242 AssertLogRelMsgReturn(cbMax > cbSum, ("cbMax=%#RX64, cbSum=%#RX64\n", cbMax, cbSum), pSSM->rc = VERR_OUT_OF_RANGE);
5243 if (cbMax < _1G)
5244 cbMax = _1G;
5245
5246 /*
5247 * The pass loop.
5248 *
5249 * The number of iterations is restricted for two reasons, first
5250 * to make sure
5251 */
5252#define SSM_MAX_PASSES _1M
5253 for (uint32_t uPass = 0; uPass < SSM_MAX_PASSES; uPass++)
5254 {
5255 pVM->ssm.s.uPass = uPass;
5256
5257 /*
5258 * Save state and vote on whether we need more passes or not.
5259 */
5260 int rc = ssmR3LiveDoExecRun(pVM, pSSM, uPass);
5261 if (RT_FAILURE(rc))
5262 return rc;
5263 rc = ssmR3LiveDoVoteRun(pVM, pSSM, uPass);
5264 if (rc == VINF_SUCCESS)
5265 {
5266 pSSM->enmOp = SSMSTATE_LIVE_STEP2;
5267 return VINF_SUCCESS;
5268 }
5269 if (RT_FAILURE(rc))
5270 return rc;
5271
5272 /*
5273 * Check that we're still within sane data amounts.
5274 */
5275 uint64_t cbSaved = ssmR3StrmTell(&pSSM->Strm);
5276 if (cbSaved > cbMax)
5277 {
5278 LogRel(("SSM: Giving up: Exceeded max state size. (cbSaved=%#RX64, cbMax=%#RX64)\n", cbSaved, cbMax));
5279 return pSSM->rc = VERR_SSM_STATE_GREW_TOO_BIG;
5280 }
5281
5282 /*
5283 * Check that the stream is still OK.
5284 */
5285 rc = ssmR3StrmCheckAndFlush(&pSSM->Strm);
5286 if (RT_FAILURE(rc))
5287 return pSSM->rc = rc;
5288 }
5289
5290 LogRel(("SSM: Giving up: Too many passes! (%u)\n", SSM_MAX_PASSES));
5291 return pSSM->rc = VERR_SSM_TOO_MANY_PASSES;
5292}
5293
5294
5295/**
5296 * Calls pfnLivePrep for all units.
5297 *
5298 * @returns VBox status code (no need to check pSSM->rc).
5299 * @param pVM The VM handle.
5300 * @param pSSM The saved state handle.
5301 */
5302static int ssmR3DoLivePrepRun(PVM pVM, PSSMHANDLE pSSM)
5303{
5304 /*
5305 * Do the prepare run.
5306 */
5307 pSSM->rc = VINF_SUCCESS;
5308 pSSM->enmOp = SSMSTATE_SAVE_PREP;
5309 for (PSSMUNIT pUnit = pVM->ssm.s.pHead; pUnit; pUnit = pUnit->pNext)
5310 {
5311 if (pUnit->u.Common.pfnLivePrep)
5312 {
5313 int rc;
5314 switch (pUnit->enmType)
5315 {
5316 case SSMUNITTYPE_DEV:
5317 rc = pUnit->u.Dev.pfnLivePrep(pUnit->u.Dev.pDevIns, pSSM);
5318 break;
5319 case SSMUNITTYPE_DRV:
5320 rc = pUnit->u.Drv.pfnLivePrep(pUnit->u.Drv.pDrvIns, pSSM);
5321 break;
5322 case SSMUNITTYPE_INTERNAL:
5323 rc = pUnit->u.Internal.pfnLivePrep(pVM, pSSM);
5324 break;
5325 case SSMUNITTYPE_EXTERNAL:
5326 rc = pUnit->u.External.pfnLivePrep(pSSM, pUnit->u.External.pvUser);
5327 break;
5328 default:
5329 rc = VERR_SSM_IPE_1;
5330 break;
5331 }
5332 pUnit->fCalled = true;
5333 if (RT_FAILURE(rc) && RT_SUCCESS_NP(pSSM->rc))
5334 pSSM->rc = rc;
5335 else
5336 rc = pSSM->rc;
5337 if (RT_FAILURE(rc))
5338 {
5339 LogRel(("SSM: Prepare save failed with rc=%Rrc for data unit '%s.\n", rc, pUnit->szName));
5340 return rc;
5341 }
5342 }
5343
5344 pSSM->cbEstTotal += pUnit->cbGuess;
5345 }
5346
5347 /*
5348 * Work the progress indicator if we got one.
5349 */
5350 if (pSSM->pfnProgress)
5351 pSSM->pfnProgress(pVM, 2, pSSM->pvUser);
5352 pSSM->uPercent = 2;
5353
5354 return VINF_SUCCESS;
5355}
5356
5357
5358/**
5359 * Continue a live state saving operation on the worker thread.
5360 *
5361 * @returns VBox status.
5362 *
5363 * @param pSSM The SSM handle returned by SSMR3LiveSave.
5364 *
5365 * @thread Non-EMT thread. Will involve the EMT at the end of the operation.
5366 */
5367VMMR3_INT_DECL(int) SSMR3LiveDoStep1(PSSMHANDLE pSSM)
5368{
5369 LogFlow(("SSMR3LiveDoStep1: pSSM=%p\n", pSSM));
5370
5371 /*
5372 * Validate input.
5373 */
5374 AssertPtrReturn(pSSM, VERR_INVALID_POINTER);
5375 PVM pVM = pSSM->pVM;
5376 VM_ASSERT_VALID_EXT_RETURN(pVM, VERR_INVALID_VM_HANDLE);
5377 VM_ASSERT_OTHER_THREAD(pVM);
5378 AssertMsgReturn( pSSM->enmAfter == SSMAFTER_DESTROY
5379 || pSSM->enmAfter == SSMAFTER_CONTINUE
5380 || pSSM->enmAfter == SSMAFTER_TELEPORT,
5381 ("%d\n", pSSM->enmAfter),
5382 VERR_INVALID_PARAMETER);
5383 AssertMsgReturn(pSSM->enmOp == SSMSTATE_LIVE_STEP1, ("%d\n", pSSM->enmOp), VERR_INVALID_STATE);
5384 AssertRCReturn(pSSM->rc, pSSM->rc);
5385
5386 /*
5387 * Do the prep run, then the exec+vote cycle.
5388 */
5389 int rc = ssmR3DoLivePrepRun(pVM, pSSM);
5390 if (RT_SUCCESS(rc))
5391 rc = ssmR3DoLiveExecVoteLoop(pVM, pSSM);
5392 return rc;
5393}
5394
5395
5396/**
5397 * Start saving the live state.
5398 *
5399 * Call SSMR3LiveDoStep1, SSMR3LiveDoStep2 and finally SSMR3LiveDone on success.
5400 * SSMR3LiveDone should be called even if SSMR3LiveDoStep1 or SSMR3LiveDoStep2
5401 * fails.
5402 *
5403 * @returns VBox status.
5404 *
5405 * @param pVM The VM handle.
5406 * @param cMsMaxDowntime The maximum downtime given as milliseconds.
5407 * @param pszFilename Name of the file to save the state in. This string
5408 * must remain valid until SSMR3LiveDone is called.
5409 * Must be NULL if pStreamOps is used.
5410 * @param pStreamOps The stream method table. NULL if pszFilename is
5411 * used.
5412 * @param pvStreamOpsUser The user argument to the stream methods.
5413 * @param enmAfter What is planned after a successful save operation.
5414 * @param pfnProgress Progress callback. Optional.
5415 * @param pvProgressUser User argument for the progress callback.
5416 *
5417 * @thread EMT0
5418 */
5419VMMR3_INT_DECL(int) SSMR3LiveSave(PVM pVM, uint32_t cMsMaxDowntime,
5420 const char *pszFilename, PCSSMSTRMOPS pStreamOps, void *pvStreamOpsUser,
5421 SSMAFTER enmAfter, PFNVMPROGRESS pfnProgress, void *pvProgressUser,
5422 PSSMHANDLE *ppSSM)
5423{
5424 LogFlow(("SSMR3LiveSave: cMsMaxDowntime=%u pszFilename=%p:{%s} pStreamOps=%p pvStreamOpsUser=%p enmAfter=%d pfnProgress=%p pvProgressUser=%p\n",
5425 cMsMaxDowntime, pszFilename, pszFilename, pStreamOps, pvStreamOpsUser, enmAfter, pfnProgress, pvProgressUser));
5426 VM_ASSERT_EMT0(pVM);
5427
5428 /*
5429 * Validate input.
5430 */
5431 AssertMsgReturn( enmAfter == SSMAFTER_DESTROY
5432 || enmAfter == SSMAFTER_CONTINUE
5433 || enmAfter == SSMAFTER_TELEPORT,
5434 ("%d\n", enmAfter),
5435 VERR_INVALID_PARAMETER);
5436 AssertReturn(!pszFilename != !pStreamOps, VERR_INVALID_PARAMETER);
5437 if (pStreamOps)
5438 {
5439 AssertReturn(pStreamOps->u32Version == SSMSTRMOPS_VERSION, VERR_INVALID_MAGIC);
5440 AssertReturn(pStreamOps->u32EndVersion == SSMSTRMOPS_VERSION, VERR_INVALID_MAGIC);
5441 AssertReturn(pStreamOps->pfnWrite, VERR_INVALID_PARAMETER);
5442 AssertReturn(pStreamOps->pfnRead, VERR_INVALID_PARAMETER);
5443 AssertReturn(pStreamOps->pfnSeek, VERR_INVALID_PARAMETER);
5444 AssertReturn(pStreamOps->pfnTell, VERR_INVALID_PARAMETER);
5445 AssertReturn(pStreamOps->pfnSize, VERR_INVALID_PARAMETER);
5446 AssertReturn(pStreamOps->pfnClose, VERR_INVALID_PARAMETER);
5447 }
5448
5449 /*
5450 * Create the saved state file and handle.
5451 *
5452 * Note that there might be quite some work to do after executing the saving,
5453 * so we reserve 20% for the 'Done' period.
5454 */
5455 PSSMHANDLE pSSM;
5456 int rc = ssmR3SaveDoCreateFile(pVM, pszFilename, pStreamOps, pvStreamOpsUser,
5457 enmAfter, pfnProgress, pvProgressUser, &pSSM);
5458 if (RT_FAILURE(rc))
5459 return rc;
5460 pSSM->uPercentLive = 93;
5461 pSSM->uPercentPrepare = 2;
5462 pSSM->uPercentDone = 2;
5463 pSSM->fLiveSave = true;
5464 pSSM->u.Write.cMsMaxDowntime = cMsMaxDowntime;
5465
5466 /*
5467 * Write the saved state stream header and do the prep run for live saving.
5468 */
5469 Log(("SSM: Starting state save to file '%s'...\n", pszFilename));
5470 ssmR3StrmStartIoThread(&pSSM->Strm);
5471 rc = ssmR3WriteHeaderAndClearPerUnitData(pVM, pSSM);
5472 if (RT_SUCCESS(rc))
5473 {
5474 /*
5475 * Return and let the requestor thread do the pfnLiveExec/Vote part
5476 * via SSMR3SaveFinishLive
5477 */
5478 pSSM->enmOp = SSMSTATE_LIVE_STEP1;
5479 ssmR3SetCancellable(pVM, pSSM, true);
5480 *ppSSM = pSSM;
5481 return VINF_SUCCESS;
5482 }
5483 /* bail out. */
5484 int rc2 = ssmR3StrmClose(&pSSM->Strm, pSSM->rc == VERR_SSM_CANCELLED);
5485 RTMemFree(pSSM);
5486 rc2 = RTFileDelete(pszFilename);
5487 AssertRC(rc2);
5488 return rc;
5489}
5490
5491#endif /* !SSM_STANDALONE */
5492
5493
5494/* ... Loading and reading starts here ... */
5495/* ... Loading and reading starts here ... */
5496/* ... Loading and reading starts here ... */
5497/* ... Loading and reading starts here ... */
5498/* ... Loading and reading starts here ... */
5499/* ... Loading and reading starts here ... */
5500/* ... Loading and reading starts here ... */
5501/* ... Loading and reading starts here ... */
5502/* ... Loading and reading starts here ... */
5503/* ... Loading and reading starts here ... */
5504/* ... Loading and reading starts here ... */
5505/* ... Loading and reading starts here ... */
5506/* ... Loading and reading starts here ... */
5507/* ... Loading and reading starts here ... */
5508/* ... Loading and reading starts here ... */
5509/* ... Loading and reading starts here ... */
5510/* ... Loading and reading starts here ... */
5511
5512
5513#ifndef SSM_STANDALONE
5514/**
5515 * Closes the decompressor of a data unit.
5516 *
5517 * @returns pSSM->rc.
5518 * @param pSSM The saved state handle.
5519 */
5520static int ssmR3DataReadFinishV1(PSSMHANDLE pSSM)
5521{
5522 if (pSSM->u.Read.pZipDecompV1)
5523 {
5524 int rc = RTZipDecompDestroy(pSSM->u.Read.pZipDecompV1);
5525 AssertRC(rc);
5526 pSSM->u.Read.pZipDecompV1 = NULL;
5527 }
5528 return pSSM->rc;
5529}
5530#endif /* !SSM_STANDALONE */
5531
5532
5533/**
5534 * Callback for reading compressed data into the input buffer of the
5535 * decompressor, for saved file format version 1.
5536 *
5537 * @returns VBox status code. Set pSSM->rc on error.
5538 * @param pvSSM The SSM handle.
5539 * @param pvBuf Where to store the compressed data.
5540 * @param cbBuf Size of the buffer.
5541 * @param pcbRead Number of bytes actually stored in the buffer.
5542 */
5543static DECLCALLBACK(int) ssmR3ReadInV1(void *pvSSM, void *pvBuf, size_t cbBuf, size_t *pcbRead)
5544{
5545 PSSMHANDLE pSSM = (PSSMHANDLE)pvSSM;
5546 size_t cbRead = cbBuf;
5547 if (pSSM->cbUnitLeftV1 < cbBuf)
5548 cbRead = (size_t)pSSM->cbUnitLeftV1;
5549 if (cbRead)
5550 {
5551 //Log2(("ssmR3ReadInV1: %#010llx cbBug=%#x cbRead=%#x\n", ssmR3StrmTell(&pSSM->Strm), cbBuf, cbRead));
5552 int rc = ssmR3StrmRead(&pSSM->Strm, pvBuf, cbRead);
5553 if (RT_SUCCESS(rc))
5554 {
5555 pSSM->cbUnitLeftV1 -= cbRead;
5556 if (pcbRead)
5557 *pcbRead = cbRead;
5558 ssmR3ProgressByByte(pSSM, cbRead);
5559 return VINF_SUCCESS;
5560 }
5561 return pSSM->rc = rc;
5562 }
5563
5564 if (pSSM->enmAfter != SSMAFTER_DEBUG_IT)
5565 AssertMsgFailed(("SSM: attempted reading more than the unit!\n"));
5566 return pSSM->rc = VERR_SSM_LOADED_TOO_MUCH;
5567}
5568
5569
5570/**
5571 * Internal read worker for reading data from a version 1 unit.
5572 *
5573 * @returns VBox status code, pSSM->rc is set on error.
5574 *
5575 * @param pSSM The saved state handle.
5576 * @param pvBuf Where to store the read data.
5577 * @param cbBuf Number of bytes to read.
5578 */
5579static int ssmR3DataReadV1(PSSMHANDLE pSSM, void *pvBuf, size_t cbBuf)
5580{
5581 /*
5582 * Open the decompressor on the first read.
5583 */
5584 if (!pSSM->u.Read.pZipDecompV1)
5585 {
5586 pSSM->rc = RTZipDecompCreate(&pSSM->u.Read.pZipDecompV1, pSSM, ssmR3ReadInV1);
5587 if (RT_FAILURE(pSSM->rc))
5588 return pSSM->rc;
5589 }
5590
5591 /*
5592 * Do the requested read.
5593 */
5594 int rc = pSSM->rc = RTZipDecompress(pSSM->u.Read.pZipDecompV1, pvBuf, cbBuf, NULL);
5595 if (RT_SUCCESS(rc))
5596 {
5597 Log2(("ssmR3DataRead: pvBuf=%p cbBuf=%#x offUnit=%#llx %.*Rhxs%s\n", pvBuf, cbBuf, pSSM->offUnit, RT_MIN(cbBuf, SSM_LOG_BYTES), pvBuf, cbBuf > SSM_LOG_BYTES ? "..." : ""));
5598 pSSM->offUnit += cbBuf;
5599 return VINF_SUCCESS;
5600 }
5601 AssertMsgFailed(("rc=%Rrc cbBuf=%#x\n", rc, cbBuf));
5602 return rc;
5603}
5604
5605
5606/**
5607 * Creates the decompressor for the data unit.
5608 *
5609 * pSSM->rc will be set on error.
5610 *
5611 * @param pSSM The saved state handle.
5612 */
5613static void ssmR3DataReadBeginV2(PSSMHANDLE pSSM)
5614{
5615 Assert(!pSSM->u.Read.cbDataBuffer || pSSM->u.Read.cbDataBuffer == pSSM->u.Read.offDataBuffer);
5616 Assert(!pSSM->u.Read.cbRecLeft);
5617
5618 pSSM->offUnit = 0;
5619 pSSM->u.Read.cbRecLeft = 0;
5620 pSSM->u.Read.cbDataBuffer = 0;
5621 pSSM->u.Read.offDataBuffer = 0;
5622 pSSM->u.Read.fEndOfData = false;
5623 pSSM->u.Read.u8TypeAndFlags = 0;
5624}
5625
5626
5627#ifndef SSM_STANDALONE
5628/**
5629 * Checks for the termination record and closes the decompressor.
5630 *
5631 * pSSM->rc will be set on error.
5632 *
5633 * @returns pSSM->rc.
5634 * @param pSSM The saved state handle.
5635 */
5636static int ssmR3DataReadFinishV2(PSSMHANDLE pSSM)
5637{
5638 /*
5639 * If we haven't encountered the end of the record, it must be the next one.
5640 */
5641 int rc = pSSM->rc;
5642 if ( !pSSM->u.Read.fEndOfData
5643 && RT_SUCCESS(rc))
5644 {
5645 if ( pSSM->u.Read.cbDataBuffer != pSSM->u.Read.offDataBuffer
5646 && pSSM->u.Read.cbDataBuffer > 0)
5647 rc = VERR_SSM_LOADED_TOO_LITTLE;
5648 else
5649 {
5650 rc = ssmR3DataReadRecHdrV2(pSSM);
5651 if ( RT_SUCCESS(rc)
5652 && !pSSM->u.Read.fEndOfData)
5653 {
5654 rc = VERR_SSM_LOADED_TOO_LITTLE;
5655 AssertFailed();
5656 }
5657 }
5658 pSSM->rc = rc;
5659 }
5660 return rc;
5661}
5662#endif /* !SSM_STANDALONE */
5663
5664
5665/**
5666 * Read reader that keep works the progress indicator and unit offset.
5667 *
5668 * @returns VBox status code. Does NOT set pSSM->rc.
5669 * @param pSSM The saved state handle.
5670 * @param pvBuf Where to put the bits
5671 * @param cbBuf How many bytes to read.
5672 */
5673DECLINLINE(int) ssmR3DataReadV2Raw(PSSMHANDLE pSSM, void *pvBuf, size_t cbToRead)
5674{
5675 int rc = ssmR3StrmRead(&pSSM->Strm, pvBuf, cbToRead);
5676 if (RT_SUCCESS(rc))
5677 {
5678 pSSM->offUnit += cbToRead;
5679 ssmR3ProgressByByte(pSSM, cbToRead);
5680 return VINF_SUCCESS;
5681 }
5682
5683 if (rc == VERR_SSM_CANCELLED)
5684 return rc;
5685
5686 if (pSSM->enmAfter != SSMAFTER_DEBUG_IT && rc == VERR_EOF)
5687 AssertMsgFailedReturn(("SSM: attempted reading more than the unit! rc=%Rrc\n", rc), VERR_SSM_LOADED_TOO_MUCH);
5688 return VERR_SSM_STREAM_ERROR;
5689}
5690
5691
5692/**
5693 * Reads and checks the LZF "header".
5694 *
5695 * @returns VBox status code. Sets pSSM->rc on error.
5696 * @param pSSM The saved state handle..
5697 * @param pcbDecompr Where to store the size of the decompressed data.
5698 */
5699DECLINLINE(int) ssmR3DataReadV2RawLzfHdr(PSSMHANDLE pSSM, uint32_t *pcbDecompr)
5700{
5701 *pcbDecompr = 0; /* shuts up gcc. */
5702 AssertLogRelMsgReturn( pSSM->u.Read.cbRecLeft > 1
5703 && pSSM->u.Read.cbRecLeft <= RT_SIZEOFMEMB(SSMHANDLE, u.Read.abComprBuffer) + 2,
5704 ("%#x\n", pSSM->u.Read.cbRecLeft),
5705 VERR_SSM_INTEGRITY_DECOMPRESSION);
5706
5707 uint8_t cKB;
5708 int rc = ssmR3DataReadV2Raw(pSSM, &cKB, 1);
5709 if (RT_FAILURE(rc))
5710 return pSSM->rc = rc;
5711 pSSM->u.Read.cbRecLeft -= sizeof(cKB);
5712
5713 uint32_t cbDecompr = (uint32_t)cKB * _1K;
5714 AssertLogRelMsgReturn( cbDecompr >= pSSM->u.Read.cbRecLeft
5715 && cbDecompr <= RT_SIZEOFMEMB(SSMHANDLE, u.Read.abDataBuffer),
5716 ("%#x\n", cbDecompr),
5717 VERR_SSM_INTEGRITY_DECOMPRESSION);
5718
5719 *pcbDecompr = cbDecompr;
5720 return VINF_SUCCESS;
5721}
5722
5723
5724/**
5725 * Reads an LZF block from the stream and decompresses into the specified
5726 * buffer.
5727 *
5728 * @returns VBox status code. Sets pSSM->rc on error.
5729 * @param SSM The saved state handle.
5730 * @param pvDst Pointer to the output buffer.
5731 * @param cbDecompr The size of the decompressed data.
5732 */
5733static int ssmR3DataReadV2RawLzf(PSSMHANDLE pSSM, void *pvDst, size_t cbDecompr)
5734{
5735 int rc;
5736 uint32_t cbCompr = pSSM->u.Read.cbRecLeft;
5737 pSSM->u.Read.cbRecLeft = 0;
5738
5739 /*
5740 * Try use the stream buffer directly to avoid copying things around.
5741 */
5742 uint8_t const *pb = ssmR3StrmReadDirect(&pSSM->Strm, cbCompr);
5743 if (pb)
5744 {
5745 pSSM->offUnit += cbCompr;
5746 ssmR3ProgressByByte(pSSM, cbCompr);
5747 }
5748 else
5749 {
5750 rc = ssmR3DataReadV2Raw(pSSM, &pSSM->u.Read.abComprBuffer[0], cbCompr);
5751 if (RT_FAILURE(rc))
5752 return pSSM->rc = rc;
5753 pb = &pSSM->u.Read.abComprBuffer[0];
5754 }
5755
5756 /*
5757 * Decompress it.
5758 */
5759 size_t cbDstActual;
5760 rc = RTZipBlockDecompress(RTZIPTYPE_LZF, 0 /*fFlags*/,
5761 pb, cbCompr, NULL /*pcbSrcActual*/,
5762 pvDst, cbDecompr, &cbDstActual);
5763 if (RT_SUCCESS(rc))
5764 {
5765 AssertLogRelMsgReturn(cbDstActual == cbDecompr, ("%#x %#x\n", cbDstActual, cbDecompr), VERR_SSM_INTEGRITY_DECOMPRESSION);
5766 return VINF_SUCCESS;
5767 }
5768
5769 AssertLogRelMsgFailed(("cbCompr=%#x cbDecompr=%#x rc=%Rrc\n", cbCompr, cbDecompr, rc));
5770 return pSSM->rc = VERR_SSM_INTEGRITY_DECOMPRESSION;
5771}
5772
5773
5774/**
5775 * Reads and checks the raw zero "header".
5776 *
5777 * @returns VBox status code. Sets pSSM->rc on error.
5778 * @param pSSM The saved state handle..
5779 * @param pcbDecompr Where to store the size of the zero data.
5780 */
5781DECLINLINE(int) ssmR3DataReadV2RawZeroHdr(PSSMHANDLE pSSM, uint32_t *pcbZero)
5782{
5783 *pcbZero = 0; /* shuts up gcc. */
5784 AssertLogRelMsgReturn(pSSM->u.Read.cbRecLeft == 1, ("%#x\n", pSSM->u.Read.cbRecLeft), VERR_SSM_INTEGRITY_DECOMPRESSION);
5785
5786 uint8_t cKB;
5787 int rc = ssmR3DataReadV2Raw(pSSM, &cKB, 1);
5788 if (RT_FAILURE(rc))
5789 return pSSM->rc = rc;
5790 pSSM->u.Read.cbRecLeft = 0;
5791
5792 uint32_t cbZero = (uint32_t)cKB * _1K;
5793 AssertLogRelMsgReturn(cbZero <= RT_SIZEOFMEMB(SSMHANDLE, u.Read.abDataBuffer),
5794 ("%#x\n", cbZero), VERR_SSM_INTEGRITY_DECOMPRESSION);
5795
5796 *pcbZero = cbZero;
5797 return VINF_SUCCESS;
5798}
5799
5800
5801/**
5802 * Worker for reading the record header.
5803 *
5804 * It sets pSSM->u.Read.cbRecLeft, pSSM->u.Read.u8TypeAndFlags and
5805 * pSSM->u.Read.fEndOfData. When a termination record is encounter, it will be
5806 * read in full and validated, the fEndOfData indicator is set, and VINF_SUCCESS
5807 * is returned.
5808 *
5809 * @returns VBox status code. Does not set pSSM->rc.
5810 * @param pSSM The saved state handle.
5811 */
5812static int ssmR3DataReadRecHdrV2(PSSMHANDLE pSSM)
5813{
5814 AssertLogRelReturn(!pSSM->u.Read.fEndOfData, VERR_SSM_LOADED_TOO_MUCH);
5815
5816 /*
5817 * Read the two mandatory bytes.
5818 */
5819 uint8_t abHdr[8];
5820 int rc = ssmR3DataReadV2Raw(pSSM, abHdr, 2);
5821 if (RT_FAILURE(rc))
5822 return rc;
5823
5824 /*
5825 * Validate the first byte and check for the termination records.
5826 */
5827 pSSM->u.Read.u8TypeAndFlags = abHdr[0];
5828 AssertLogRelMsgReturn(SSM_REC_ARE_TYPE_AND_FLAGS_VALID(abHdr[0]), ("%#x %#x\n", abHdr[0], abHdr[1]), VERR_SSM_INTEGRITY_REC_HDR);
5829 if ((abHdr[0] & SSM_REC_TYPE_MASK) == SSM_REC_TYPE_TERM)
5830 {
5831 pSSM->u.Read.cbRecLeft = 0;
5832 pSSM->u.Read.fEndOfData = true;
5833 AssertLogRelMsgReturn(abHdr[1] == sizeof(SSMRECTERM) - 2, ("%#x\n", abHdr[1]), VERR_SSM_INTEGRITY_REC_TERM);
5834 AssertLogRelMsgReturn(abHdr[0] & SSM_REC_FLAGS_IMPORTANT, ("%#x\n", abHdr[0]), VERR_SSM_INTEGRITY_REC_TERM);
5835
5836 /* get the rest */
5837 uint32_t u32StreamCRC = ssmR3StrmFinalCRC(&pSSM->Strm);
5838 SSMRECTERM TermRec;
5839 rc = ssmR3DataReadV2Raw(pSSM, (uint8_t *)&TermRec + 2, sizeof(SSMRECTERM) - 2);
5840 if (RT_FAILURE(rc))
5841 return rc;
5842
5843 /* validate integrity */
5844 AssertLogRelMsgReturn(TermRec.cbUnit == pSSM->offUnit,
5845 ("cbUnit=%#llx offUnit=%#llx\n", TermRec.cbUnit, pSSM->offUnit),
5846 VERR_SSM_INTEGRITY_REC_TERM);
5847 AssertLogRelMsgReturn(!(TermRec.fFlags & ~SSMRECTERM_FLAGS_CRC32), ("%#x\n", TermRec.fFlags), VERR_SSM_INTEGRITY_REC_TERM);
5848 if (!(TermRec.fFlags & SSMRECTERM_FLAGS_CRC32))
5849 AssertLogRelMsgReturn(TermRec.u32StreamCRC == 0, ("%#x\n", TermRec.u32StreamCRC), VERR_SSM_INTEGRITY_REC_TERM);
5850 else if (pSSM->Strm.fChecksummed)
5851 AssertLogRelMsgReturn(TermRec.u32StreamCRC == u32StreamCRC, ("%#x, %#x\n", TermRec.u32StreamCRC, u32StreamCRC),
5852 VERR_SSM_INTEGRITY_REC_TERM_CRC);
5853
5854 Log3(("ssmR3DataReadRecHdrV2: %08llx|%08llx: TERM\n", ssmR3StrmTell(&pSSM->Strm) - sizeof(SSMRECTERM), pSSM->offUnit));
5855 return VINF_SUCCESS;
5856 }
5857
5858 /*
5859 * Figure the size. The 2nd byte is encoded in UTF-8 fashion, so this
5860 * is can be highly enjoyable.
5861 */
5862 uint32_t cbHdr = 2;
5863 uint32_t cb = abHdr[1];
5864 if (!(cb & 0x80))
5865 pSSM->u.Read.cbRecLeft = cb;
5866 else
5867 {
5868 /*
5869 * Need more data. Figure how much and read it.
5870 */
5871 if (!(cb & RT_BIT(5)))
5872 cb = 2;
5873 else if (!(cb & RT_BIT(4)))
5874 cb = 3;
5875 else if (!(cb & RT_BIT(3)))
5876 cb = 4;
5877 else if (!(cb & RT_BIT(2)))
5878 cb = 5;
5879 else if (!(cb & RT_BIT(1)))
5880 cb = 6;
5881 else
5882 AssertLogRelMsgFailedReturn(("Invalid record size byte: %#x\n", cb), VERR_SSM_INTEGRITY_REC_HDR);
5883 cbHdr = cb + 1;
5884
5885 rc = ssmR3DataReadV2Raw(pSSM, &abHdr[2], cb - 1);
5886 if (RT_FAILURE(rc))
5887 return rc;
5888
5889 /*
5890 * Validate what we've read.
5891 */
5892 switch (cb)
5893 {
5894 case 6:
5895 AssertLogRelMsgReturn((abHdr[6] & 0xc0) == 0x80, ("6/%u: %.*Rhxs\n", cb, cb + 1, &abHdr[0]), VERR_SSM_INTEGRITY_REC_HDR);
5896 case 5:
5897 AssertLogRelMsgReturn((abHdr[5] & 0xc0) == 0x80, ("5/%u: %.*Rhxs\n", cb, cb + 1, &abHdr[0]), VERR_SSM_INTEGRITY_REC_HDR);
5898 case 4:
5899 AssertLogRelMsgReturn((abHdr[4] & 0xc0) == 0x80, ("4/%u: %.*Rhxs\n", cb, cb + 1, &abHdr[0]), VERR_SSM_INTEGRITY_REC_HDR);
5900 case 3:
5901 AssertLogRelMsgReturn((abHdr[3] & 0xc0) == 0x80, ("3/%u: %.*Rhxs\n", cb, cb + 1, &abHdr[0]), VERR_SSM_INTEGRITY_REC_HDR);
5902 case 2:
5903 AssertLogRelMsgReturn((abHdr[2] & 0xc0) == 0x80, ("2/%u: %.*Rhxs\n", cb, cb + 1, &abHdr[0]), VERR_SSM_INTEGRITY_REC_HDR);
5904 break;
5905 default:
5906 return VERR_IPE_NOT_REACHED_DEFAULT_CASE;
5907 }
5908
5909 /*
5910 * Decode it and validate the range.
5911 */
5912 switch (cb)
5913 {
5914 case 6:
5915 cb = (abHdr[6] & 0x3f)
5916 | ((uint32_t)(abHdr[5] & 0x3f) << 6)
5917 | ((uint32_t)(abHdr[4] & 0x3f) << 12)
5918 | ((uint32_t)(abHdr[3] & 0x3f) << 18)
5919 | ((uint32_t)(abHdr[2] & 0x3f) << 24)
5920 | ((uint32_t)(abHdr[1] & 0x01) << 30);
5921 AssertLogRelMsgReturn(cb >= 0x04000000 && cb <= 0x7fffffff, ("cb=%#x\n", cb), VERR_SSM_INTEGRITY_REC_HDR);
5922 break;
5923 case 5:
5924 cb = (abHdr[5] & 0x3f)
5925 | ((uint32_t)(abHdr[4] & 0x3f) << 6)
5926 | ((uint32_t)(abHdr[3] & 0x3f) << 12)
5927 | ((uint32_t)(abHdr[2] & 0x3f) << 18)
5928 | ((uint32_t)(abHdr[1] & 0x03) << 24);
5929 AssertLogRelMsgReturn(cb >= 0x00200000 && cb <= 0x03ffffff, ("cb=%#x\n", cb), VERR_SSM_INTEGRITY_REC_HDR);
5930 break;
5931 case 4:
5932 cb = (abHdr[4] & 0x3f)
5933 | ((uint32_t)(abHdr[3] & 0x3f) << 6)
5934 | ((uint32_t)(abHdr[2] & 0x3f) << 12)
5935 | ((uint32_t)(abHdr[1] & 0x07) << 18);
5936 AssertLogRelMsgReturn(cb >= 0x00010000 && cb <= 0x001fffff, ("cb=%#x\n", cb), VERR_SSM_INTEGRITY_REC_HDR);
5937 break;
5938 case 3:
5939 cb = (abHdr[3] & 0x3f)
5940 | ((uint32_t)(abHdr[2] & 0x3f) << 6)
5941 | ((uint32_t)(abHdr[1] & 0x0f) << 12);
5942#if 0 /* disabled to optimize buffering */
5943 AssertLogRelMsgReturn(cb >= 0x00000800 && cb <= 0x0000ffff, ("cb=%#x\n", cb), VERR_SSM_INTEGRITY_REC_HDR);
5944#endif
5945 break;
5946 case 2:
5947 cb = (abHdr[2] & 0x3f)
5948 | ((uint32_t)(abHdr[1] & 0x1f) << 6);
5949#if 0 /* disabled to optimize buffering */
5950 AssertLogRelMsgReturn(cb >= 0x00000080 && cb <= 0x000007ff, ("cb=%#x\n", cb), VERR_SSM_INTEGRITY_REC_HDR);
5951#endif
5952 break;
5953 default:
5954 return VERR_IPE_NOT_REACHED_DEFAULT_CASE;
5955 }
5956
5957 pSSM->u.Read.cbRecLeft = cb;
5958 }
5959
5960 Log3(("ssmR3DataReadRecHdrV2: %08llx|%08llx/%08x: Type=%02x fImportant=%RTbool cbHdr=%u\n",
5961 ssmR3StrmTell(&pSSM->Strm), pSSM->offUnit, pSSM->u.Read.cbRecLeft,
5962 pSSM->u.Read.u8TypeAndFlags & SSM_REC_TYPE_MASK,
5963 !!(pSSM->u.Read.u8TypeAndFlags & SSM_REC_FLAGS_IMPORTANT),
5964 cbHdr
5965 )); NOREF(cbHdr);
5966 return VINF_SUCCESS;
5967}
5968
5969
5970/**
5971 * Buffer miss, do an unbuffered read.
5972 *
5973 * @param pSSM The saved state handle.
5974 * @param pvBuf Where to store the read data.
5975 * @param cbBuf Number of bytes to read.
5976 */
5977static int ssmR3DataReadUnbufferedV2(PSSMHANDLE pSSM, void *pvBuf, size_t cbBuf)
5978{
5979 void const *pvBufOrg = pvBuf; NOREF(pvBufOrg);
5980 size_t const cbBufOrg = cbBuf; NOREF(cbBufOrg);
5981
5982 /*
5983 * Copy out what we've got in the buffer.
5984 */
5985 uint32_t off = pSSM->u.Read.offDataBuffer;
5986 int32_t cbInBuffer = pSSM->u.Read.cbDataBuffer - off;
5987 Log4(("ssmR3DataReadUnbufferedV2: %08llx|%08llx/%08x/%08x: cbBuf=%#x\n", ssmR3StrmTell(&pSSM->Strm), pSSM->offUnit, pSSM->u.Read.cbRecLeft, cbInBuffer, cbBufOrg));
5988 if (cbInBuffer > 0)
5989 {
5990 uint32_t const cbToCopy = (uint32_t)cbInBuffer;
5991 Assert(cbBuf > cbToCopy);
5992 memcpy(pvBuf, &pSSM->u.Read.abDataBuffer[off], cbToCopy);
5993 pvBuf = (uint8_t *)pvBuf + cbToCopy;
5994 cbBuf -= cbToCopy;
5995 pSSM->u.Read.cbDataBuffer = 0;
5996 pSSM->u.Read.offDataBuffer = 0;
5997 }
5998
5999 /*
6000 * Read data.
6001 */
6002 do
6003 {
6004 /*
6005 * Read the next record header if no more data.
6006 */
6007 if (!pSSM->u.Read.cbRecLeft)
6008 {
6009 int rc = ssmR3DataReadRecHdrV2(pSSM);
6010 if (RT_FAILURE(rc))
6011 return pSSM->rc = rc;
6012 }
6013 AssertLogRelMsgReturn(!pSSM->u.Read.fEndOfData, ("cbBuf=%zu", cbBuf), pSSM->rc = VERR_SSM_LOADED_TOO_MUCH);
6014
6015 /*
6016 * Read data from the current record.
6017 */
6018 uint32_t cbToRead;
6019 switch (pSSM->u.Read.u8TypeAndFlags & SSM_REC_TYPE_MASK)
6020 {
6021 case SSM_REC_TYPE_RAW:
6022 {
6023 cbToRead = (uint32_t)RT_MIN(cbBuf, pSSM->u.Read.cbRecLeft);
6024 int rc = ssmR3DataReadV2Raw(pSSM, pvBuf, cbToRead);
6025 if (RT_FAILURE(rc))
6026 return pSSM->rc = rc;
6027 pSSM->u.Read.cbRecLeft -= cbToRead;
6028 break;
6029 }
6030
6031 case SSM_REC_TYPE_RAW_LZF:
6032 {
6033 int rc = ssmR3DataReadV2RawLzfHdr(pSSM, &cbToRead);
6034 if (RT_FAILURE(rc))
6035 return rc;
6036 if (cbToRead <= cbBuf)
6037 {
6038 rc = ssmR3DataReadV2RawLzf(pSSM, pvBuf, cbToRead);
6039 if (RT_FAILURE(rc))
6040 return rc;
6041 }
6042 else
6043 {
6044 /* The output buffer is too small, use the data buffer. */
6045 rc = ssmR3DataReadV2RawLzf(pSSM, &pSSM->u.Read.abDataBuffer[0], cbToRead);
6046 if (RT_FAILURE(rc))
6047 return rc;
6048 pSSM->u.Read.cbDataBuffer = cbToRead;
6049 cbToRead = (uint32_t)cbBuf;
6050 pSSM->u.Read.offDataBuffer = cbToRead;
6051 memcpy(pvBuf, &pSSM->u.Read.abDataBuffer[0], cbToRead);
6052 }
6053 break;
6054 }
6055
6056 case SSM_REC_TYPE_RAW_ZERO:
6057 {
6058 int rc = ssmR3DataReadV2RawZeroHdr(pSSM, &cbToRead);
6059 if (RT_FAILURE(rc))
6060 return rc;
6061 if (cbToRead > cbBuf)
6062 {
6063 /* Spill the remainder into the data buffer. */
6064 memset(&pSSM->u.Read.abDataBuffer[0], 0, cbToRead - cbBuf);
6065 pSSM->u.Read.cbDataBuffer = cbToRead - (uint32_t)cbBuf;
6066 pSSM->u.Read.offDataBuffer = 0;
6067 cbToRead = (uint32_t)cbBuf;
6068 }
6069 memset(pvBuf, 0, cbToRead);
6070 break;
6071 }
6072
6073 default:
6074 AssertMsgFailedReturn(("%x\n", pSSM->u.Read.u8TypeAndFlags), VERR_SSM_BAD_REC_TYPE);
6075 }
6076
6077 cbBuf -= cbToRead;
6078 pvBuf = (uint8_t *)pvBuf + cbToRead;
6079 } while (cbBuf > 0);
6080
6081 Log4(("ssmR3DataReadUnBufferedV2: %08llx|%08llx/%08x/%08x: cbBuf=%#x %.*Rhxs%s\n",
6082 ssmR3StrmTell(&pSSM->Strm), pSSM->offUnit, pSSM->u.Read.cbRecLeft, 0, cbBufOrg, RT_MIN(SSM_LOG_BYTES, cbBufOrg), pvBufOrg, cbBufOrg > SSM_LOG_BYTES ? "..." : ""));
6083 return VINF_SUCCESS;
6084}
6085
6086
6087/**
6088 * Buffer miss, do a buffered read.
6089 *
6090 * @returns VBox status code. Sets pSSM->rc on error.
6091 *
6092 * @param pSSM The saved state handle.
6093 * @param pvBuf Where to store the read data.
6094 * @param cbBuf Number of bytes to read.
6095 */
6096static int ssmR3DataReadBufferedV2(PSSMHANDLE pSSM, void *pvBuf, size_t cbBuf)
6097{
6098 void const *pvBufOrg = pvBuf; NOREF(pvBufOrg);
6099 size_t const cbBufOrg = cbBuf; NOREF(cbBufOrg);
6100
6101 /*
6102 * Copy out what we've got in the buffer.
6103 */
6104 uint32_t off = pSSM->u.Read.offDataBuffer;
6105 int32_t cbInBuffer = pSSM->u.Read.cbDataBuffer - off;
6106 Log4(("ssmR3DataReadBufferedV2: %08llx|%08llx/%08x/%08x: cbBuf=%#x\n", ssmR3StrmTell(&pSSM->Strm), pSSM->offUnit, pSSM->u.Read.cbRecLeft, cbInBuffer, cbBufOrg));
6107 if (cbInBuffer > 0)
6108 {
6109 uint32_t const cbToCopy = (uint32_t)cbInBuffer;
6110 Assert(cbBuf > cbToCopy);
6111 memcpy(pvBuf, &pSSM->u.Read.abDataBuffer[off], cbToCopy);
6112 pvBuf = (uint8_t *)pvBuf + cbToCopy;
6113 cbBuf -= cbToCopy;
6114 pSSM->u.Read.cbDataBuffer = 0;
6115 pSSM->u.Read.offDataBuffer = 0;
6116 }
6117
6118 /*
6119 * Buffer more data.
6120 */
6121 do
6122 {
6123 /*
6124 * Read the next record header if no more data.
6125 */
6126 if (!pSSM->u.Read.cbRecLeft)
6127 {
6128 int rc = ssmR3DataReadRecHdrV2(pSSM);
6129 if (RT_FAILURE(rc))
6130 return pSSM->rc = rc;
6131 }
6132 AssertLogRelMsgReturn(!pSSM->u.Read.fEndOfData, ("cbBuf=%zu", cbBuf), pSSM->rc = VERR_SSM_LOADED_TOO_MUCH);
6133
6134 /*
6135 * Read data from the current record.
6136 * LATER: optimize by reading directly into the output buffer for some cases.
6137 */
6138 uint32_t cbToRead;
6139 switch (pSSM->u.Read.u8TypeAndFlags & SSM_REC_TYPE_MASK)
6140 {
6141 case SSM_REC_TYPE_RAW:
6142 {
6143 cbToRead = RT_MIN(sizeof(pSSM->u.Read.abDataBuffer), pSSM->u.Read.cbRecLeft);
6144 int rc = ssmR3DataReadV2Raw(pSSM, &pSSM->u.Read.abDataBuffer[0], cbToRead);
6145 if (RT_FAILURE(rc))
6146 return pSSM->rc = rc;
6147 pSSM->u.Read.cbRecLeft -= cbToRead;
6148 pSSM->u.Read.cbDataBuffer = cbToRead;
6149 break;
6150 }
6151
6152 case SSM_REC_TYPE_RAW_LZF:
6153 {
6154 int rc = ssmR3DataReadV2RawLzfHdr(pSSM, &cbToRead);
6155 if (RT_FAILURE(rc))
6156 return rc;
6157 rc = ssmR3DataReadV2RawLzf(pSSM, &pSSM->u.Read.abDataBuffer[0], cbToRead);
6158 if (RT_FAILURE(rc))
6159 return rc;
6160 pSSM->u.Read.cbDataBuffer = cbToRead;
6161 break;
6162 }
6163
6164 case SSM_REC_TYPE_RAW_ZERO:
6165 {
6166 int rc = ssmR3DataReadV2RawZeroHdr(pSSM, &cbToRead);
6167 if (RT_FAILURE(rc))
6168 return rc;
6169 memset(&pSSM->u.Read.abDataBuffer[0], 0, cbToRead);
6170 pSSM->u.Read.cbDataBuffer = cbToRead;
6171 break;
6172 }
6173
6174 default:
6175 AssertMsgFailedReturn(("%x\n", pSSM->u.Read.u8TypeAndFlags), VERR_SSM_BAD_REC_TYPE);
6176 }
6177 /*pSSM->u.Read.offDataBuffer = 0;*/
6178
6179 /*
6180 * Copy data from the buffer.
6181 */
6182 uint32_t cbToCopy = (uint32_t)RT_MIN(cbBuf, cbToRead);
6183 memcpy(pvBuf, &pSSM->u.Read.abDataBuffer[0], cbToCopy);
6184 cbBuf -= cbToCopy;
6185 pvBuf = (uint8_t *)pvBuf + cbToCopy;
6186 pSSM->u.Read.offDataBuffer = cbToCopy;
6187 } while (cbBuf > 0);
6188
6189 Log4(("ssmR3DataReadBufferedV2: %08llx|%08llx/%08x/%08x: cbBuf=%#x %.*Rhxs%s\n",
6190 ssmR3StrmTell(&pSSM->Strm), pSSM->offUnit, pSSM->u.Read.cbRecLeft, pSSM->u.Read.cbDataBuffer - pSSM->u.Read.offDataBuffer,
6191 cbBufOrg, RT_MIN(SSM_LOG_BYTES, cbBufOrg), pvBufOrg, cbBufOrg > SSM_LOG_BYTES ? "..." : ""));
6192 return VINF_SUCCESS;
6193}
6194
6195
6196/**
6197 * Inlined worker that handles format checks and buffered reads.
6198 *
6199 * @param pSSM The saved state handle.
6200 * @param pvBuf Where to store the read data.
6201 * @param cbBuf Number of bytes to read.
6202 */
6203DECLINLINE(int) ssmR3DataRead(PSSMHANDLE pSSM, void *pvBuf, size_t cbBuf)
6204{
6205 /*
6206 * Fend off previous errors and V1 data units.
6207 */
6208 if (RT_FAILURE(pSSM->rc))
6209 return pSSM->rc;
6210 if (RT_UNLIKELY(pSSM->u.Read.uFmtVerMajor == 1))
6211 return ssmR3DataReadV1(pSSM, pvBuf, cbBuf);
6212
6213 /*
6214 * Check if the requested data is buffered.
6215 */
6216 uint32_t off = pSSM->u.Read.offDataBuffer;
6217 if ( off + cbBuf > pSSM->u.Read.cbDataBuffer
6218 || cbBuf > sizeof(pSSM->u.Read.abDataBuffer))
6219 {
6220 if (cbBuf <= sizeof(pSSM->u.Read.abDataBuffer) / 8)
6221 return ssmR3DataReadBufferedV2(pSSM, pvBuf, cbBuf);
6222 return ssmR3DataReadUnbufferedV2(pSSM, pvBuf, cbBuf);
6223 }
6224
6225 memcpy(pvBuf, &pSSM->u.Read.abDataBuffer[off], cbBuf);
6226 pSSM->u.Read.offDataBuffer = off + (uint32_t)cbBuf;
6227 Log4((cbBuf
6228 ? "ssmR3DataRead: %08llx|%08llx/%08x/%08x: cbBuf=%#x %.*Rhxs%s\n"
6229 : "ssmR3DataRead: %08llx|%08llx/%08x/%08x: cbBuf=%#x\n",
6230 ssmR3StrmTell(&pSSM->Strm), pSSM->offUnit, pSSM->u.Read.cbRecLeft, pSSM->u.Read.cbDataBuffer - pSSM->u.Read.offDataBuffer,
6231 cbBuf, RT_MIN(SSM_LOG_BYTES, cbBuf), pvBuf, cbBuf > SSM_LOG_BYTES ? "..." : ""));
6232
6233 return VINF_SUCCESS;
6234}
6235
6236
6237/**
6238 * Gets a structure.
6239 *
6240 * @returns VBox status code.
6241 * @param pSSM The saved state handle.
6242 * @param pvStruct The structure address.
6243 * @param paFields The array of structure fields descriptions.
6244 * The array must be terminated by a SSMFIELD_ENTRY_TERM().
6245 */
6246VMMR3DECL(int) SSMR3GetStruct(PSSMHANDLE pSSM, void *pvStruct, PCSSMFIELD paFields)
6247{
6248 SSM_ASSERT_READABLE_RET(pSSM);
6249 SSM_CHECK_CANCELLED_RET(pSSM);
6250 AssertPtr(pvStruct);
6251 AssertPtr(paFields);
6252
6253 /* begin marker. */
6254 uint32_t u32Magic;
6255 int rc = SSMR3GetU32(pSSM, &u32Magic);
6256 if (RT_FAILURE(rc))
6257 return rc;
6258 AssertMsgReturn(u32Magic == SSMR3STRUCT_BEGIN, ("u32Magic=%#RX32\n", u32Magic), VERR_SSM_STRUCTURE_MAGIC);
6259
6260 /* get the fields */
6261 for (PCSSMFIELD pCur = paFields;
6262 pCur->cb != UINT32_MAX && pCur->off != UINT32_MAX;
6263 pCur++)
6264 {
6265 uint8_t *pbField = (uint8_t *)pvStruct + pCur->off;
6266 switch ((uintptr_t)pCur->pfnGetPutOrTransformer)
6267 {
6268 case SSMFIELDTRANS_NO_TRANSFORMATION:
6269 rc = ssmR3DataRead(pSSM, pbField, pCur->cb);
6270 break;
6271
6272 case SSMFIELDTRANS_GCPTR:
6273 AssertMsgReturn(pCur->cb == sizeof(RTGCPTR), ("%#x (%s)\n", pCur->cb, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6274 rc = SSMR3GetGCPtr(pSSM, (PRTGCPTR)pbField);
6275 break;
6276
6277 case SSMFIELDTRANS_GCPHYS:
6278 AssertMsgReturn(pCur->cb == sizeof(RTGCPHYS), ("%#x (%s)\n", pCur->cb, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6279 rc = SSMR3GetGCPhys(pSSM, (PRTGCPHYS)pbField);
6280 break;
6281
6282 case SSMFIELDTRANS_RCPTR:
6283 AssertMsgReturn(pCur->cb == sizeof(RTRCPTR), ("%#x (%s)\n", pCur->cb, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6284 rc = SSMR3GetRCPtr(pSSM, (PRTRCPTR)pbField);
6285 break;
6286
6287 case SSMFIELDTRANS_RCPTR_ARRAY:
6288 {
6289 uint32_t const cEntries = pCur->cb / sizeof(RTRCPTR);
6290 AssertMsgReturn(pCur->cb == cEntries * sizeof(RTRCPTR) && cEntries, ("%#x (%s)\n", pCur->cb, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6291 rc = VINF_SUCCESS;
6292 for (uint32_t i = 0; i < cEntries && RT_SUCCESS(rc); i++)
6293 rc = SSMR3GetRCPtr(pSSM, &((PRTRCPTR)pbField)[i]);
6294 break;
6295 }
6296
6297 default:
6298 AssertMsgFailedReturn(("%#x\n", pCur->pfnGetPutOrTransformer), VERR_SSM_FIELD_COMPLEX);
6299 }
6300 if (RT_FAILURE(rc))
6301 return rc;
6302 }
6303
6304 /* end marker */
6305 rc = SSMR3GetU32(pSSM, &u32Magic);
6306 if (RT_FAILURE(rc))
6307 return rc;
6308 AssertMsgReturn(u32Magic == SSMR3STRUCT_END, ("u32Magic=%#RX32\n", u32Magic), VERR_SSM_STRUCTURE_MAGIC);
6309 return rc;
6310}
6311
6312
6313/**
6314 * SSMR3GetStructEx helper that gets a HCPTR that is used as a NULL indicator.
6315 *
6316 * @returns VBox status code.
6317 *
6318 * @param pSSM The saved state handle.
6319 * @param ppv Where to return the value (0/1).
6320 * @param fFlags SSMSTRUCT_FLAGS_XXX.
6321 */
6322DECLINLINE(int) ssmR3GetHCPtrNI(PSSMHANDLE pSSM, void **ppv, uint32_t fFlags)
6323{
6324 uintptr_t uPtrNI;
6325 if (fFlags & SSMSTRUCT_FLAGS_DONT_IGNORE)
6326 {
6327 if (ssmR3GetHostBits(pSSM) == 64)
6328 {
6329 uint64_t u;
6330 int rc = ssmR3DataRead(pSSM, &u, sizeof(u));
6331 if (RT_FAILURE(rc))
6332 return rc;
6333 uPtrNI = u ? 1 : 0;
6334 }
6335 else
6336 {
6337 uint32_t u;
6338 int rc = ssmR3DataRead(pSSM, &u, sizeof(u));
6339 if (RT_FAILURE(rc))
6340 return rc;
6341 uPtrNI = u ? 1 : 0;
6342 }
6343 }
6344 else
6345 {
6346 bool f;
6347 int rc = SSMR3GetBool(pSSM, &f);
6348 if (RT_FAILURE(rc))
6349 return rc;
6350 uPtrNI = f ? 1 : 0;
6351 }
6352 *ppv = (void *)uPtrNI;
6353 return VINF_SUCCESS;
6354}
6355
6356
6357/**
6358 * Guts a structure, extended API.
6359 *
6360 * @returns VBox status code.
6361 * @param pSSM The saved state handle.
6362 * @param pvStruct The structure address.
6363 * @param cbStruct The size of the struct (use for validation only).
6364 * @param fFlags Combination of SSMSTRUCT_FLAGS_XXX defines.
6365 * @param paFields The array of structure fields descriptions. The
6366 * array must be terminated by a SSMFIELD_ENTRY_TERM().
6367 * @param pvUser User argument for any callbacks that paFields might
6368 * contain.
6369 */
6370VMMR3DECL(int) SSMR3GetStructEx(PSSMHANDLE pSSM, void *pvStruct, size_t cbStruct,
6371 uint32_t fFlags, PCSSMFIELD paFields, void *pvUser)
6372{
6373 int rc;
6374 uint32_t u32Magic;
6375
6376 /*
6377 * Validation.
6378 */
6379 SSM_ASSERT_READABLE_RET(pSSM);
6380 SSM_CHECK_CANCELLED_RET(pSSM);
6381 AssertMsgReturn(!(fFlags & ~SSMSTRUCT_FLAGS_VALID_MASK), ("%#x\n", fFlags), VERR_INVALID_PARAMETER);
6382 AssertPtr(pvStruct);
6383 AssertPtr(paFields);
6384
6385 /*
6386 * Begin marker.
6387 */
6388 if (!(fFlags & SSMSTRUCT_FLAGS_NO_MARKERS))
6389 {
6390 rc = SSMR3GetU32(pSSM, &u32Magic);
6391 if (RT_FAILURE(rc))
6392 return rc;
6393 AssertMsgReturn(u32Magic == SSMR3STRUCT_BEGIN, ("u32Magic=%#RX32\n", u32Magic), VERR_SSM_STRUCTURE_MAGIC);
6394 }
6395
6396 /*
6397 * Put the fields
6398 */
6399 uint32_t off = 0;
6400 for (PCSSMFIELD pCur = paFields;
6401 pCur->cb != UINT32_MAX && pCur->off != UINT32_MAX;
6402 pCur++)
6403 {
6404 uint32_t const offField = (!SSMFIELDTRANS_IS_PADDING(pCur->pfnGetPutOrTransformer) || pCur->off != UINT32_MAX / 2)
6405 && !SSMFIELDTRANS_IS_OLD(pCur->pfnGetPutOrTransformer)
6406 ? pCur->off
6407 : off;
6408 uint32_t const cbField = SSMFIELDTRANS_IS_OLD(pCur->pfnGetPutOrTransformer)
6409 ? 0
6410 : SSMFIELDTRANS_IS_PADDING(pCur->pfnGetPutOrTransformer)
6411 ? RT_HIWORD(pCur->cb)
6412 : pCur->cb;
6413 AssertMsgReturn( cbField <= cbStruct
6414 && offField + cbField <= cbStruct
6415 && offField + cbField >= offField,
6416 ("off=%#x cb=%#x cbStruct=%#x (%s)\n", cbField, offField, cbStruct, pCur->pszName),
6417 VERR_SSM_FIELD_OUT_OF_BOUNDS);
6418 AssertMsgReturn( !(fFlags & SSMSTRUCT_FLAGS_FULL_STRUCT)
6419 || off == offField,
6420 ("off=%#x offField=%#x (%s)\n", off, offField, pCur->pszName),
6421 VERR_SSM_FIELD_NOT_CONSECUTIVE);
6422
6423 rc = VINF_SUCCESS;
6424 uint8_t *pbField = (uint8_t *)pvStruct + offField;
6425 switch ((uintptr_t)pCur->pfnGetPutOrTransformer)
6426 {
6427 case SSMFIELDTRANS_NO_TRANSFORMATION:
6428 rc = ssmR3DataRead(pSSM, pbField, cbField);
6429 break;
6430
6431 case SSMFIELDTRANS_GCPHYS:
6432 AssertMsgReturn(cbField == sizeof(RTGCPHYS), ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6433 rc = SSMR3GetGCPhys(pSSM, (PRTGCPHYS)pbField);
6434 break;
6435
6436 case SSMFIELDTRANS_GCPTR:
6437 AssertMsgReturn(cbField == sizeof(RTGCPTR), ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6438 rc = SSMR3GetGCPtr(pSSM, (PRTGCPTR)pbField);
6439 break;
6440
6441 case SSMFIELDTRANS_RCPTR:
6442 AssertMsgReturn(cbField == sizeof(RTRCPTR), ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6443 rc = SSMR3GetRCPtr(pSSM, (PRTRCPTR)pbField);
6444 break;
6445
6446 case SSMFIELDTRANS_RCPTR_ARRAY:
6447 {
6448 uint32_t const cEntries = cbField / sizeof(RTRCPTR);
6449 AssertMsgReturn(cbField == cEntries * sizeof(RTRCPTR) && cEntries, ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6450 rc = VINF_SUCCESS;
6451 for (uint32_t i = 0; i < cEntries && RT_SUCCESS(rc); i++)
6452 rc = SSMR3GetRCPtr(pSSM, &((PRTRCPTR)pbField)[i]);
6453 break;
6454 }
6455
6456 case SSMFIELDTRANS_HCPTR_NI:
6457 AssertMsgReturn(cbField == sizeof(void *), ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6458 rc = ssmR3GetHCPtrNI(pSSM, (void **)pbField, fFlags);
6459 break;
6460
6461 case SSMFIELDTRANS_HCPTR_NI_ARRAY:
6462 {
6463 uint32_t const cEntries = cbField / sizeof(void *);
6464 AssertMsgReturn(cbField == cEntries * sizeof(void *) && cEntries, ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6465 rc = VINF_SUCCESS;
6466 for (uint32_t i = 0; i < cEntries && RT_SUCCESS(rc); i++)
6467 rc = ssmR3GetHCPtrNI(pSSM, &((void **)pbField)[i], fFlags);
6468 break;
6469 }
6470
6471 case SSMFIELDTRANS_HCPTR_HACK_U32:
6472 AssertMsgReturn(cbField == sizeof(void *), ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6473 *(uintptr_t *)pbField = 0;
6474 rc = ssmR3DataRead(pSSM, pbField, sizeof(uint32_t));
6475 if ((fFlags & SSMSTRUCT_FLAGS_DONT_IGNORE) && ssmR3GetHostBits(pSSM) == 64)
6476 {
6477 uint32_t u32;
6478 rc = ssmR3DataRead(pSSM, &u32, sizeof(uint32_t));
6479 AssertMsgReturn(RT_FAILURE(rc) || u32 == 0 || (fFlags & SSMSTRUCT_FLAGS_SAVED_AS_MEM),
6480 ("high=%#x low=%#x (%s)\n", u32, *(uint32_t *)pbField, pCur->pszName),
6481 VERR_SSM_FIELD_INVALID_VALUE);
6482 }
6483 break;
6484
6485
6486 case SSMFIELDTRANS_IGNORE:
6487 if (fFlags & SSMSTRUCT_FLAGS_DONT_IGNORE)
6488 rc = SSMR3Skip(pSSM, cbField);
6489 break;
6490
6491 case SSMFIELDTRANS_IGN_GCPHYS:
6492 AssertMsgReturn(cbField == sizeof(RTGCPHYS), ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6493 if (fFlags & SSMSTRUCT_FLAGS_DONT_IGNORE)
6494 rc = SSMR3Skip(pSSM, pSSM->u.Read.cbGCPhys);
6495 break;
6496
6497 case SSMFIELDTRANS_IGN_GCPTR:
6498 AssertMsgReturn(cbField == sizeof(RTGCPTR), ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6499 if (fFlags & SSMSTRUCT_FLAGS_DONT_IGNORE)
6500 rc = SSMR3Skip(pSSM, pSSM->u.Read.cbGCPtr);
6501 break;
6502
6503 case SSMFIELDTRANS_IGN_RCPTR:
6504 AssertMsgReturn(cbField == sizeof(RTRCPTR), ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6505 if (fFlags & SSMSTRUCT_FLAGS_DONT_IGNORE)
6506 rc = SSMR3Skip(pSSM, sizeof(RTRCPTR));
6507 break;
6508
6509 case SSMFIELDTRANS_IGN_HCPTR:
6510 AssertMsgReturn(cbField == sizeof(void *), ("%#x (%s)\n", cbField, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6511 if (fFlags & SSMSTRUCT_FLAGS_DONT_IGNORE)
6512 rc = SSMR3Skip(pSSM, ssmR3GetHostBits(pSSM) / 8);
6513 break;
6514
6515
6516 case SSMFIELDTRANS_OLD:
6517 AssertMsgReturn(pCur->off == UINT32_MAX / 2, ("%#x %#x (%s)\n", pCur->cb, pCur->off, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6518 rc = SSMR3Skip(pSSM, pCur->cb);
6519 break;
6520
6521 case SSMFIELDTRANS_OLD_GCPHYS:
6522 AssertMsgReturn(pCur->cb == sizeof(RTGCPHYS) && pCur->off == UINT32_MAX / 2, ("%#x %#x (%s)\n", pCur->cb, pCur->off, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6523 rc = SSMR3Skip(pSSM, pSSM->u.Read.cbGCPhys);
6524 break;
6525
6526 case SSMFIELDTRANS_OLD_GCPTR:
6527 AssertMsgReturn(pCur->cb == sizeof(RTGCPTR) && pCur->off == UINT32_MAX / 2, ("%#x %#x (%s)\n", pCur->cb, pCur->off, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6528 rc = SSMR3Skip(pSSM, pSSM->u.Read.cbGCPtr);
6529 break;
6530
6531 case SSMFIELDTRANS_OLD_RCPTR:
6532 AssertMsgReturn(pCur->cb == sizeof(RTRCPTR) && pCur->off == UINT32_MAX / 2, ("%#x %#x (%s)\n", pCur->cb, pCur->off, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6533 rc = SSMR3Skip(pSSM, sizeof(RTRCPTR));
6534 break;
6535
6536 case SSMFIELDTRANS_OLD_HCPTR:
6537 AssertMsgReturn(pCur->cb == sizeof(void *) && pCur->off == UINT32_MAX / 2, ("%#x %#x (%s)\n", pCur->cb, pCur->off, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6538 rc = SSMR3Skip(pSSM, ssmR3GetHostBits(pSSM) / 8);
6539 break;
6540
6541 case SSMFIELDTRANS_OLD_PAD_HC:
6542 AssertMsgReturn(pCur->off == UINT32_MAX / 2, ("%#x %#x (%s)\n", pCur->cb, pCur->off, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6543 rc = SSMR3Skip(pSSM, ssmR3GetHostBits(pSSM) == 64 ? RT_HIWORD(pCur->cb) : RT_LOWORD(pCur->cb));
6544 break;
6545
6546 case SSMFIELDTRANS_OLD_PAD_MSC32:
6547 AssertMsgReturn(pCur->off == UINT32_MAX / 2, ("%#x %#x (%s)\n", pCur->cb, pCur->off, pCur->pszName), VERR_SSM_FIELD_INVALID_SIZE);
6548 if (ssmR3IsHostMsc32(pSSM))
6549 rc = SSMR3Skip(pSSM, pCur->cb);
6550 break;
6551
6552
6553 case SSMFIELDTRANS_PAD_HC:
6554 case SSMFIELDTRANS_PAD_HC32:
6555 case SSMFIELDTRANS_PAD_HC64:
6556 case SSMFIELDTRANS_PAD_HC_AUTO:
6557 case SSMFIELDTRANS_PAD_MSC32_AUTO:
6558 {
6559 uint32_t cb32 = RT_BYTE1(pCur->cb);
6560 uint32_t cb64 = RT_BYTE2(pCur->cb);
6561 uint32_t cbCtx = HC_ARCH_BITS == 64
6562 || ( (uintptr_t)pCur->pfnGetPutOrTransformer == SSMFIELDTRANS_PAD_MSC32_AUTO
6563 && !SSM_HOST_IS_MSC_32)
6564 ? cb64 : cb32;
6565 uint32_t cbSaved = ssmR3GetHostBits(pSSM) == 64
6566 || ( (uintptr_t)pCur->pfnGetPutOrTransformer == SSMFIELDTRANS_PAD_MSC32_AUTO
6567 && !ssmR3IsHostMsc32(pSSM))
6568 ? cb64 : cb32;
6569 AssertMsgReturn( cbField == cbCtx
6570 && ( ( pCur->off == UINT32_MAX / 2
6571 && ( cbField == 0
6572 || (uintptr_t)pCur->pfnGetPutOrTransformer == SSMFIELDTRANS_PAD_HC_AUTO
6573 || (uintptr_t)pCur->pfnGetPutOrTransformer == SSMFIELDTRANS_PAD_MSC32_AUTO
6574 )
6575 )
6576 || (pCur->off != UINT32_MAX / 2 && cbField != 0)
6577 )
6578 , ("cbField=%#x cb32=%#x cb64=%#x HC_ARCH_BITS=%u cbCtx=%#x cbSaved=%#x off=%#x\n",
6579 cbField, cb32, cb64, HC_ARCH_BITS, cbCtx, cbSaved, pCur->off),
6580 VERR_SSM_FIELD_INVALID_PADDING_SIZE);
6581 if (fFlags & SSMSTRUCT_FLAGS_DONT_IGNORE)
6582 rc = SSMR3Skip(pSSM, cbSaved);
6583 break;
6584 }
6585
6586 default:
6587 AssertPtrReturn(pCur->pfnGetPutOrTransformer, VERR_SSM_FIELD_INVALID_CALLBACK);
6588 rc = pCur->pfnGetPutOrTransformer(pSSM, pCur, pvStruct, fFlags, true /*fGetOrPut*/, pvUser);
6589 break;
6590 }
6591 if (RT_FAILURE(rc))
6592 return rc;
6593
6594 off = offField + cbField;
6595 }
6596 AssertMsgReturn( !(fFlags & SSMSTRUCT_FLAGS_FULL_STRUCT)
6597 || off == cbStruct,
6598 ("off=%#x cbStruct=%#x\n", off, cbStruct),
6599 VERR_SSM_FIELD_NOT_CONSECUTIVE);
6600
6601 /*
6602 * End marker
6603 */
6604 if (!(fFlags & SSMSTRUCT_FLAGS_NO_MARKERS))
6605 {
6606 rc = SSMR3GetU32(pSSM, &u32Magic);
6607 if (RT_FAILURE(rc))
6608 return rc;
6609 AssertMsgReturn(u32Magic == SSMR3STRUCT_END, ("u32Magic=%#RX32\n", u32Magic), VERR_SSM_STRUCTURE_MAGIC);
6610 }
6611
6612 return VINF_SUCCESS;
6613}
6614
6615
6616/**
6617 * Loads a boolean item from the current data unit.
6618 *
6619 * @returns VBox status.
6620 * @param pSSM The saved state handle.
6621 * @param pfBool Where to store the item.
6622 */
6623VMMR3DECL(int) SSMR3GetBool(PSSMHANDLE pSSM, bool *pfBool)
6624{
6625 SSM_ASSERT_READABLE_RET(pSSM);
6626 SSM_CHECK_CANCELLED_RET(pSSM);
6627 uint8_t u8; /* see SSMR3PutBool */
6628 int rc = ssmR3DataRead(pSSM, &u8, sizeof(u8));
6629 if (RT_SUCCESS(rc))
6630 {
6631 Assert(u8 <= 1);
6632 *pfBool = !!u8;
6633 }
6634 return rc;
6635}
6636
6637
6638/**
6639 * Loads a 8-bit unsigned integer item from the current data unit.
6640 *
6641 * @returns VBox status.
6642 * @param pSSM The saved state handle.
6643 * @param pu8 Where to store the item.
6644 */
6645VMMR3DECL(int) SSMR3GetU8(PSSMHANDLE pSSM, uint8_t *pu8)
6646{
6647 SSM_ASSERT_READABLE_RET(pSSM);
6648 SSM_CHECK_CANCELLED_RET(pSSM);
6649 return ssmR3DataRead(pSSM, pu8, sizeof(*pu8));
6650}
6651
6652
6653/**
6654 * Loads a 8-bit signed integer item from the current data unit.
6655 *
6656 * @returns VBox status.
6657 * @param pSSM The saved state handle.
6658 * @param pi8 Where to store the item.
6659 */
6660VMMR3DECL(int) SSMR3GetS8(PSSMHANDLE pSSM, int8_t *pi8)
6661{
6662 SSM_ASSERT_READABLE_RET(pSSM);
6663 SSM_CHECK_CANCELLED_RET(pSSM);
6664 return ssmR3DataRead(pSSM, pi8, sizeof(*pi8));
6665}
6666
6667
6668/**
6669 * Loads a 16-bit unsigned integer item from the current data unit.
6670 *
6671 * @returns VBox status.
6672 * @param pSSM The saved state handle.
6673 * @param pu16 Where to store the item.
6674 */
6675VMMR3DECL(int) SSMR3GetU16(PSSMHANDLE pSSM, uint16_t *pu16)
6676{
6677 SSM_ASSERT_READABLE_RET(pSSM);
6678 SSM_CHECK_CANCELLED_RET(pSSM);
6679 return ssmR3DataRead(pSSM, pu16, sizeof(*pu16));
6680}
6681
6682
6683/**
6684 * Loads a 16-bit signed integer item from the current data unit.
6685 *
6686 * @returns VBox status.
6687 * @param pSSM The saved state handle.
6688 * @param pi16 Where to store the item.
6689 */
6690VMMR3DECL(int) SSMR3GetS16(PSSMHANDLE pSSM, int16_t *pi16)
6691{
6692 SSM_ASSERT_READABLE_RET(pSSM);
6693 SSM_CHECK_CANCELLED_RET(pSSM);
6694 return ssmR3DataRead(pSSM, pi16, sizeof(*pi16));
6695}
6696
6697
6698/**
6699 * Loads a 32-bit unsigned integer item from the current data unit.
6700 *
6701 * @returns VBox status.
6702 * @param pSSM The saved state handle.
6703 * @param pu32 Where to store the item.
6704 */
6705VMMR3DECL(int) SSMR3GetU32(PSSMHANDLE pSSM, uint32_t *pu32)
6706{
6707 SSM_ASSERT_READABLE_RET(pSSM);
6708 SSM_CHECK_CANCELLED_RET(pSSM);
6709 return ssmR3DataRead(pSSM, pu32, sizeof(*pu32));
6710}
6711
6712
6713/**
6714 * Loads a 32-bit signed integer item from the current data unit.
6715 *
6716 * @returns VBox status.
6717 * @param pSSM The saved state handle.
6718 * @param pi32 Where to store the item.
6719 */
6720VMMR3DECL(int) SSMR3GetS32(PSSMHANDLE pSSM, int32_t *pi32)
6721{
6722 SSM_ASSERT_READABLE_RET(pSSM);
6723 SSM_CHECK_CANCELLED_RET(pSSM);
6724 return ssmR3DataRead(pSSM, pi32, sizeof(*pi32));
6725}
6726
6727
6728/**
6729 * Loads a 64-bit unsigned integer item from the current data unit.
6730 *
6731 * @returns VBox status.
6732 * @param pSSM The saved state handle.
6733 * @param pu64 Where to store the item.
6734 */
6735VMMR3DECL(int) SSMR3GetU64(PSSMHANDLE pSSM, uint64_t *pu64)
6736{
6737 SSM_ASSERT_READABLE_RET(pSSM);
6738 SSM_CHECK_CANCELLED_RET(pSSM);
6739 return ssmR3DataRead(pSSM, pu64, sizeof(*pu64));
6740}
6741
6742
6743/**
6744 * Loads a 64-bit signed integer item from the current data unit.
6745 *
6746 * @returns VBox status.
6747 * @param pSSM The saved state handle.
6748 * @param pi64 Where to store the item.
6749 */
6750VMMR3DECL(int) SSMR3GetS64(PSSMHANDLE pSSM, int64_t *pi64)
6751{
6752 SSM_ASSERT_READABLE_RET(pSSM);
6753 SSM_CHECK_CANCELLED_RET(pSSM);
6754 return ssmR3DataRead(pSSM, pi64, sizeof(*pi64));
6755}
6756
6757
6758/**
6759 * Loads a 128-bit unsigned integer item from the current data unit.
6760 *
6761 * @returns VBox status.
6762 * @param pSSM The saved state handle.
6763 * @param pu128 Where to store the item.
6764 */
6765VMMR3DECL(int) SSMR3GetU128(PSSMHANDLE pSSM, uint128_t *pu128)
6766{
6767 SSM_ASSERT_READABLE_RET(pSSM);
6768 SSM_CHECK_CANCELLED_RET(pSSM);
6769 return ssmR3DataRead(pSSM, pu128, sizeof(*pu128));
6770}
6771
6772
6773/**
6774 * Loads a 128-bit signed integer item from the current data unit.
6775 *
6776 * @returns VBox status.
6777 * @param pSSM The saved state handle.
6778 * @param pi128 Where to store the item.
6779 */
6780VMMR3DECL(int) SSMR3GetS128(PSSMHANDLE pSSM, int128_t *pi128)
6781{
6782 SSM_ASSERT_READABLE_RET(pSSM);
6783 SSM_CHECK_CANCELLED_RET(pSSM);
6784 return ssmR3DataRead(pSSM, pi128, sizeof(*pi128));
6785}
6786
6787
6788/**
6789 * Loads a VBox unsigned integer item from the current data unit.
6790 *
6791 * @returns VBox status.
6792 * @param pSSM The saved state handle.
6793 * @param pu Where to store the integer.
6794 */
6795VMMR3DECL(int) SSMR3GetUInt(PSSMHANDLE pSSM, PRTUINT pu)
6796{
6797 SSM_ASSERT_READABLE_RET(pSSM);
6798 SSM_CHECK_CANCELLED_RET(pSSM);
6799 return ssmR3DataRead(pSSM, pu, sizeof(*pu));
6800}
6801
6802
6803/**
6804 * Loads a VBox signed integer item from the current data unit.
6805 *
6806 * @returns VBox status.
6807 * @param pSSM The saved state handle.
6808 * @param pi Where to store the integer.
6809 */
6810VMMR3DECL(int) SSMR3GetSInt(PSSMHANDLE pSSM, PRTINT pi)
6811{
6812 SSM_ASSERT_READABLE_RET(pSSM);
6813 SSM_CHECK_CANCELLED_RET(pSSM);
6814 return ssmR3DataRead(pSSM, pi, sizeof(*pi));
6815}
6816
6817
6818/**
6819 * Loads a GC natural unsigned integer item from the current data unit.
6820 *
6821 * @returns VBox status.
6822 * @param pSSM The saved state handle.
6823 * @param pu Where to store the integer.
6824 *
6825 * @deprecated Silly type with an incorrect size, don't use it.
6826 */
6827VMMR3DECL(int) SSMR3GetGCUInt(PSSMHANDLE pSSM, PRTGCUINT pu)
6828{
6829 AssertCompile(sizeof(RTGCPTR) == sizeof(*pu));
6830 return SSMR3GetGCPtr(pSSM, (PRTGCPTR)pu);
6831}
6832
6833
6834/**
6835 * Loads a GC unsigned integer register item from the current data unit.
6836 *
6837 * @returns VBox status.
6838 * @param pSSM The saved state handle.
6839 * @param pu Where to store the integer.
6840 */
6841VMMR3DECL(int) SSMR3GetGCUIntReg(PSSMHANDLE pSSM, PRTGCUINTREG pu)
6842{
6843 AssertCompile(sizeof(RTGCPTR) == sizeof(*pu));
6844 return SSMR3GetGCPtr(pSSM, (PRTGCPTR)pu);
6845}
6846
6847
6848/**
6849 * Loads a 32 bits GC physical address item from the current data unit.
6850 *
6851 * @returns VBox status.
6852 * @param pSSM The saved state handle.
6853 * @param pGCPhys Where to store the GC physical address.
6854 */
6855VMMR3DECL(int) SSMR3GetGCPhys32(PSSMHANDLE pSSM, PRTGCPHYS32 pGCPhys)
6856{
6857 SSM_ASSERT_READABLE_RET(pSSM);
6858 SSM_CHECK_CANCELLED_RET(pSSM);
6859 return ssmR3DataRead(pSSM, pGCPhys, sizeof(*pGCPhys));
6860}
6861
6862
6863/**
6864 * Loads a 64 bits GC physical address item from the current data unit.
6865 *
6866 * @returns VBox status.
6867 * @param pSSM The saved state handle.
6868 * @param pGCPhys Where to store the GC physical address.
6869 */
6870VMMR3DECL(int) SSMR3GetGCPhys64(PSSMHANDLE pSSM, PRTGCPHYS64 pGCPhys)
6871{
6872 SSM_ASSERT_READABLE_RET(pSSM);
6873 SSM_CHECK_CANCELLED_RET(pSSM);
6874 return ssmR3DataRead(pSSM, pGCPhys, sizeof(*pGCPhys));
6875}
6876
6877
6878/**
6879 * Loads a GC physical address item from the current data unit.
6880 *
6881 * @returns VBox status.
6882 * @param pSSM The saved state handle.
6883 * @param pGCPhys Where to store the GC physical address.
6884 */
6885VMMR3DECL(int) SSMR3GetGCPhys(PSSMHANDLE pSSM, PRTGCPHYS pGCPhys)
6886{
6887 SSM_ASSERT_READABLE_RET(pSSM);
6888 SSM_CHECK_CANCELLED_RET(pSSM);
6889
6890 /*
6891 * Default size?
6892 */
6893 if (RT_LIKELY(sizeof(*pGCPhys) == pSSM->u.Read.cbGCPhys))
6894 return ssmR3DataRead(pSSM, pGCPhys, sizeof(*pGCPhys));
6895
6896 /*
6897 * Fiddly.
6898 */
6899 Assert(sizeof(*pGCPhys) == sizeof(uint64_t) || sizeof(*pGCPhys) == sizeof(uint32_t));
6900 Assert(pSSM->u.Read.cbGCPhys == sizeof(uint64_t) || pSSM->u.Read.cbGCPhys == sizeof(uint32_t));
6901 if (pSSM->u.Read.cbGCPhys == sizeof(uint64_t))
6902 {
6903 /* 64-bit saved, 32-bit load: try truncate it. */
6904 uint64_t u64;
6905 int rc = ssmR3DataRead(pSSM, &u64, sizeof(uint64_t));
6906 if (RT_FAILURE(rc))
6907 return rc;
6908 if (u64 >= _4G)
6909 return VERR_SSM_GCPHYS_OVERFLOW;
6910 *pGCPhys = (RTGCPHYS)u64;
6911 return rc;
6912 }
6913
6914 /* 32-bit saved, 64-bit load: clear the high part. */
6915 *pGCPhys = 0;
6916 return ssmR3DataRead(pSSM, pGCPhys, sizeof(uint32_t));
6917}
6918
6919
6920/**
6921 * Loads a GC virtual address item from the current data unit.
6922 *
6923 * Only applies to in the 1.1 format:
6924 * - SSMR3GetGCPtr
6925 * - SSMR3GetGCUIntPtr
6926 * - SSMR3GetGCUInt
6927 * - SSMR3GetGCUIntReg
6928 *
6929 * Put functions are not affected.
6930 *
6931 * @returns VBox status.
6932 * @param pSSM The saved state handle.
6933 * @param cbGCPtr Size of RTGCPTR
6934 *
6935 * @remarks This interface only works with saved state version 1.1, if the
6936 * format isn't 1.1 the call will be ignored.
6937 */
6938VMMR3_INT_DECL(int) SSMR3HandleSetGCPtrSize(PSSMHANDLE pSSM, unsigned cbGCPtr)
6939{
6940 Assert(cbGCPtr == sizeof(RTGCPTR32) || cbGCPtr == sizeof(RTGCPTR64));
6941 if (!pSSM->u.Read.fFixedGCPtrSize)
6942 {
6943 Log(("SSMR3SetGCPtrSize: %u -> %u bytes\n", pSSM->u.Read.cbGCPtr, cbGCPtr));
6944 pSSM->u.Read.cbGCPtr = cbGCPtr;
6945 pSSM->u.Read.fFixedGCPtrSize = true;
6946 }
6947 else if ( pSSM->u.Read.cbGCPtr != cbGCPtr
6948 && pSSM->u.Read.uFmtVerMajor == 1
6949 && pSSM->u.Read.uFmtVerMinor == 1)
6950 AssertMsgFailed(("SSMR3SetGCPtrSize: already fixed at %u bytes; requested %u bytes\n", pSSM->u.Read.cbGCPtr, cbGCPtr));
6951
6952 return VINF_SUCCESS;
6953}
6954
6955
6956/**
6957 * Loads a GC virtual address item from the current data unit.
6958 *
6959 * @returns VBox status.
6960 * @param pSSM The saved state handle.
6961 * @param pGCPtr Where to store the GC virtual address.
6962 */
6963VMMR3DECL(int) SSMR3GetGCPtr(PSSMHANDLE pSSM, PRTGCPTR pGCPtr)
6964{
6965 SSM_ASSERT_READABLE_RET(pSSM);
6966 SSM_CHECK_CANCELLED_RET(pSSM);
6967
6968 /*
6969 * Default size?
6970 */
6971 if (RT_LIKELY(sizeof(*pGCPtr) == pSSM->u.Read.cbGCPtr))
6972 return ssmR3DataRead(pSSM, pGCPtr, sizeof(*pGCPtr));
6973
6974 /*
6975 * Fiddly.
6976 */
6977 Assert(sizeof(*pGCPtr) == sizeof(uint64_t) || sizeof(*pGCPtr) == sizeof(uint32_t));
6978 Assert(pSSM->u.Read.cbGCPtr == sizeof(uint64_t) || pSSM->u.Read.cbGCPtr == sizeof(uint32_t));
6979 if (pSSM->u.Read.cbGCPtr == sizeof(uint64_t))
6980 {
6981 /* 64-bit saved, 32-bit load: try truncate it. */
6982 uint64_t u64;
6983 int rc = ssmR3DataRead(pSSM, &u64, sizeof(uint64_t));
6984 if (RT_FAILURE(rc))
6985 return rc;
6986 if (u64 >= _4G)
6987 return VERR_SSM_GCPTR_OVERFLOW;
6988 *pGCPtr = (RTGCPTR)u64;
6989 return rc;
6990 }
6991
6992 /* 32-bit saved, 64-bit load: clear the high part. */
6993 *pGCPtr = 0;
6994 return ssmR3DataRead(pSSM, pGCPtr, sizeof(uint32_t));
6995}
6996
6997
6998/**
6999 * Loads a GC virtual address (represented as unsigned integer) item from the current data unit.
7000 *
7001 * @returns VBox status.
7002 * @param pSSM The saved state handle.
7003 * @param pGCPtr Where to store the GC virtual address.
7004 */
7005VMMR3DECL(int) SSMR3GetGCUIntPtr(PSSMHANDLE pSSM, PRTGCUINTPTR pGCPtr)
7006{
7007 AssertCompile(sizeof(RTGCPTR) == sizeof(*pGCPtr));
7008 return SSMR3GetGCPtr(pSSM, (PRTGCPTR)pGCPtr);
7009}
7010
7011
7012/**
7013 * Loads an RC virtual address item from the current data unit.
7014 *
7015 * @returns VBox status.
7016 * @param pSSM The saved state handle.
7017 * @param pRCPtr Where to store the RC virtual address.
7018 */
7019VMMR3DECL(int) SSMR3GetRCPtr(PSSMHANDLE pSSM, PRTRCPTR pRCPtr)
7020{
7021 SSM_ASSERT_READABLE_RET(pSSM);
7022 SSM_CHECK_CANCELLED_RET(pSSM);
7023 return ssmR3DataRead(pSSM, pRCPtr, sizeof(*pRCPtr));
7024}
7025
7026
7027/**
7028 * Loads a I/O port address item from the current data unit.
7029 *
7030 * @returns VBox status.
7031 * @param pSSM The saved state handle.
7032 * @param pIOPort Where to store the I/O port address.
7033 */
7034VMMR3DECL(int) SSMR3GetIOPort(PSSMHANDLE pSSM, PRTIOPORT pIOPort)
7035{
7036 SSM_ASSERT_READABLE_RET(pSSM);
7037 SSM_CHECK_CANCELLED_RET(pSSM);
7038 return ssmR3DataRead(pSSM, pIOPort, sizeof(*pIOPort));
7039}
7040
7041
7042/**
7043 * Loads a selector item from the current data unit.
7044 *
7045 * @returns VBox status.
7046 * @param pSSM The saved state handle.
7047 * @param pSel Where to store the selector.
7048 */
7049VMMR3DECL(int) SSMR3GetSel(PSSMHANDLE pSSM, PRTSEL pSel)
7050{
7051 SSM_ASSERT_READABLE_RET(pSSM);
7052 SSM_CHECK_CANCELLED_RET(pSSM);
7053 return ssmR3DataRead(pSSM, pSel, sizeof(*pSel));
7054}
7055
7056
7057/**
7058 * Loads a memory item from the current data unit.
7059 *
7060 * @returns VBox status.
7061 * @param pSSM The saved state handle.
7062 * @param pv Where to store the item.
7063 * @param cb Size of the item.
7064 */
7065VMMR3DECL(int) SSMR3GetMem(PSSMHANDLE pSSM, void *pv, size_t cb)
7066{
7067 SSM_ASSERT_READABLE_RET(pSSM);
7068 SSM_CHECK_CANCELLED_RET(pSSM);
7069 return ssmR3DataRead(pSSM, pv, cb);
7070}
7071
7072
7073/**
7074 * Loads a string item from the current data unit.
7075 *
7076 * @returns VBox status.
7077 * @param pSSM The saved state handle.
7078 * @param psz Where to store the item.
7079 * @param cbMax Max size of the item (including '\\0').
7080 */
7081VMMR3DECL(int) SSMR3GetStrZ(PSSMHANDLE pSSM, char *psz, size_t cbMax)
7082{
7083 return SSMR3GetStrZEx(pSSM, psz, cbMax, NULL);
7084}
7085
7086
7087/**
7088 * Loads a string item from the current data unit.
7089 *
7090 * @returns VBox status.
7091 * @param pSSM The saved state handle.
7092 * @param psz Where to store the item.
7093 * @param cbMax Max size of the item (including '\\0').
7094 * @param pcbStr The length of the loaded string excluding the '\\0'. (optional)
7095 */
7096VMMR3DECL(int) SSMR3GetStrZEx(PSSMHANDLE pSSM, char *psz, size_t cbMax, size_t *pcbStr)
7097{
7098 SSM_ASSERT_READABLE_RET(pSSM);
7099 SSM_CHECK_CANCELLED_RET(pSSM);
7100
7101 /* read size prefix. */
7102 uint32_t u32;
7103 int rc = SSMR3GetU32(pSSM, &u32);
7104 if (RT_SUCCESS(rc))
7105 {
7106 if (pcbStr)
7107 *pcbStr = u32;
7108 if (u32 < cbMax)
7109 {
7110 /* terminate and read string content. */
7111 psz[u32] = '\0';
7112 return ssmR3DataRead(pSSM, psz, u32);
7113 }
7114 return VERR_TOO_MUCH_DATA;
7115 }
7116 return rc;
7117}
7118
7119
7120/**
7121 * Skips a number of bytes in the current data unit.
7122 *
7123 * @returns VBox status code.
7124 * @param pSSM The SSM handle.
7125 * @param cb The number of bytes to skip.
7126 */
7127VMMR3DECL(int) SSMR3Skip(PSSMHANDLE pSSM, size_t cb)
7128{
7129 SSM_ASSERT_READABLE_RET(pSSM);
7130 SSM_CHECK_CANCELLED_RET(pSSM);
7131 while (cb > 0)
7132 {
7133 uint8_t abBuf[8192];
7134 size_t cbCur = RT_MIN(sizeof(abBuf), cb);
7135 cb -= cbCur;
7136 int rc = ssmR3DataRead(pSSM, abBuf, cbCur);
7137 if (RT_FAILURE(rc))
7138 return rc;
7139 }
7140
7141 return VINF_SUCCESS;
7142}
7143
7144
7145/**
7146 * Skips to the end of the current data unit.
7147 *
7148 * Since version 2 of the format, the load exec callback have to explicitly call
7149 * this API if it wish to be lazy for some reason. This is because there seldom
7150 * is a good reason to not read your entire data unit and it was hiding bugs.
7151 *
7152 * @returns VBox status code.
7153 * @param pSSM The saved state handle.
7154 */
7155VMMR3DECL(int) SSMR3SkipToEndOfUnit(PSSMHANDLE pSSM)
7156{
7157 SSM_ASSERT_READABLE_RET(pSSM);
7158 SSM_CHECK_CANCELLED_RET(pSSM);
7159 if (pSSM->u.Read.uFmtVerMajor >= 2)
7160 {
7161 /*
7162 * Read until we the end of data condition is raised.
7163 */
7164 pSSM->u.Read.cbDataBuffer = 0;
7165 pSSM->u.Read.offDataBuffer = 0;
7166 if (!pSSM->u.Read.fEndOfData)
7167 {
7168 do
7169 {
7170 /* read the rest of the current record */
7171 while (pSSM->u.Read.cbRecLeft)
7172 {
7173 uint8_t abBuf[8192];
7174 uint32_t cbToRead = RT_MIN(pSSM->u.Read.cbRecLeft, sizeof(abBuf));
7175 int rc = ssmR3DataReadV2Raw(pSSM, abBuf, cbToRead);
7176 if (RT_FAILURE(rc))
7177 return pSSM->rc = rc;
7178 pSSM->u.Read.cbRecLeft -= cbToRead;
7179 }
7180
7181 /* read the next header. */
7182 int rc = ssmR3DataReadRecHdrV2(pSSM);
7183 if (RT_FAILURE(rc))
7184 return pSSM->rc = rc;
7185 } while (!pSSM->u.Read.fEndOfData);
7186 }
7187 }
7188 /* else: Doesn't matter for the version 1 loading. */
7189
7190 return VINF_SUCCESS;
7191}
7192
7193
7194/**
7195 * Calculate the checksum of a file portion.
7196 *
7197 * @returns VBox status.
7198 * @param pStrm The stream handle
7199 * @param off Where to start checksumming.
7200 * @param cb How much to checksum.
7201 * @param pu32CRC Where to store the calculated checksum.
7202 */
7203static int ssmR3CalcChecksum(PSSMSTRM pStrm, uint64_t off, uint64_t cb, uint32_t *pu32CRC)
7204{
7205 /*
7206 * Allocate a buffer.
7207 */
7208 const size_t cbBuf = _32K;
7209 void *pvBuf = RTMemTmpAlloc(cbBuf);
7210 if (!pvBuf)
7211 return VERR_NO_TMP_MEMORY;
7212
7213 /*
7214 * Loop reading and calculating CRC32.
7215 */
7216 int rc = VINF_SUCCESS;
7217 uint32_t u32CRC = RTCrc32Start();
7218 while (cb > 0)
7219 {
7220 /* read chunk */
7221 size_t cbToRead = cbBuf;
7222 if (cb < cbBuf)
7223 cbToRead = cb;
7224 rc = ssmR3StrmPeekAt(pStrm, off, pvBuf, cbToRead, NULL);
7225 if (RT_FAILURE(rc))
7226 {
7227 AssertMsgFailed(("Failed with rc=%Rrc while calculating crc.\n", rc));
7228 RTMemTmpFree(pvBuf);
7229 return rc;
7230 }
7231
7232 /* advance */
7233 cb -= cbToRead;
7234 off += cbToRead;
7235
7236 /* calc crc32. */
7237 u32CRC = RTCrc32Process(u32CRC, pvBuf, cbToRead);
7238 }
7239 RTMemTmpFree(pvBuf);
7240
7241 /* store the calculated crc */
7242 u32CRC = RTCrc32Finish(u32CRC);
7243 Log(("SSM: u32CRC=0x%08x\n", u32CRC));
7244 *pu32CRC = u32CRC;
7245
7246 return VINF_SUCCESS;
7247}
7248
7249
7250/**
7251 * Validates a version 2 footer.
7252 *
7253 * @returns VBox status code.
7254 *
7255 * @param pFooter The footer.
7256 * @param offFooter The stream offset of the footer.
7257 * @param cDirEntries The number of directory entries. UINT32_MAX if
7258 * unknown.
7259 * @param fStreamCrc32 Whether the stream is checksummed using CRC-32.
7260 * @param u32StreamCRC The stream checksum.
7261 */
7262static int ssmR3ValidateFooter(PSSMFILEFTR pFooter, uint64_t offFooter, uint32_t cDirEntries, bool fStreamCrc32, uint32_t u32StreamCRC)
7263{
7264 if (memcmp(pFooter->szMagic, SSMFILEFTR_MAGIC, sizeof(pFooter->szMagic)))
7265 {
7266 LogRel(("SSM: Bad footer magic: %.*Rhxs\n", sizeof(pFooter->szMagic), &pFooter->szMagic[0]));
7267 return VERR_SSM_INTEGRITY_FOOTER;
7268 }
7269 SSM_CHECK_CRC32_RET(pFooter, sizeof(*pFooter), ("Footer CRC mismatch: %08x, correct is %08x\n", u32CRC, u32ActualCRC));
7270 if (pFooter->offStream != offFooter)
7271 {
7272 LogRel(("SSM: SSMFILEFTR::offStream is wrong: %llx, expected %llx\n", pFooter->offStream, offFooter));
7273 return VERR_SSM_INTEGRITY_FOOTER;
7274 }
7275 if (pFooter->u32Reserved)
7276 {
7277 LogRel(("SSM: Reserved footer field isn't zero: %08x\n", pFooter->u32Reserved));
7278 return VERR_SSM_INTEGRITY_FOOTER;
7279 }
7280 if (cDirEntries != UINT32_MAX)
7281 AssertLogRelMsgReturn(pFooter->cDirEntries == cDirEntries,
7282 ("Footer: cDirEntries=%#x, expected %#x\n", pFooter->cDirEntries, cDirEntries),
7283 VERR_SSM_INTEGRITY_FOOTER);
7284 else
7285 AssertLogRelMsgReturn(pFooter->cDirEntries < _64K,
7286 ("Footer: cDirEntries=%#x\n", pFooter->cDirEntries),
7287 VERR_SSM_INTEGRITY_FOOTER);
7288 if ( !fStreamCrc32
7289 && pFooter->u32StreamCRC)
7290 {
7291 LogRel(("SSM: u32StreamCRC field isn't zero, but header says stream checksumming is disabled.\n"));
7292 return VERR_SSM_INTEGRITY_FOOTER;
7293 }
7294 if ( fStreamCrc32
7295 && pFooter->u32StreamCRC != u32StreamCRC)
7296 {
7297 LogRel(("SSM: Bad stream CRC: %#x, expected %#x.\n", pFooter->u32StreamCRC, u32StreamCRC));
7298 return VERR_SSM_INTEGRITY_CRC;
7299 }
7300 return VINF_SUCCESS;
7301}
7302
7303
7304/**
7305 * Validates the header information stored in the handle.
7306 *
7307 * @returns VBox status code.
7308 *
7309 * @param pSSM The handle.
7310 * @param fHaveHostBits Set if the host bits field is valid.
7311 * @param fHaveVersion Set if we have a version.
7312 */
7313static int ssmR3ValidateHeaderInfo(PSSMHANDLE pSSM, bool fHaveHostBits, bool fHaveVersion)
7314{
7315 Assert(pSSM->u.Read.cbFileHdr < 256 && pSSM->u.Read.cbFileHdr > 32);
7316 Assert(pSSM->u.Read.uFmtVerMajor == 1 || pSSM->u.Read.uFmtVerMajor == 2);
7317 Assert(pSSM->u.Read.uFmtVerMinor <= 2);
7318
7319 if (fHaveVersion)
7320 {
7321 if ( pSSM->u.Read.u16VerMajor == 0
7322 || pSSM->u.Read.u16VerMajor > 1000
7323 || pSSM->u.Read.u16VerMinor > 1000
7324 || pSSM->u.Read.u32VerBuild > _1M
7325 || pSSM->u.Read.u32SvnRev == 0
7326 || pSSM->u.Read.u32SvnRev > 10000000 /*100M*/)
7327 {
7328 LogRel(("SSM: Incorrect version values: %u.%u.%u.r%u\n",
7329 pSSM->u.Read.u16VerMajor, pSSM->u.Read.u16VerMinor, pSSM->u.Read.u32VerBuild, pSSM->u.Read.u32SvnRev));
7330 return VERR_SSM_INTEGRITY_VBOX_VERSION;
7331 }
7332 }
7333 else
7334 AssertLogRelReturn( pSSM->u.Read.u16VerMajor == 0
7335 && pSSM->u.Read.u16VerMinor == 0
7336 && pSSM->u.Read.u32VerBuild == 0
7337 && pSSM->u.Read.u32SvnRev == 0,
7338 VERR_SSM_INTEGRITY_VBOX_VERSION);
7339
7340 if (fHaveHostBits)
7341 {
7342 if ( pSSM->u.Read.cHostBits != 32
7343 && pSSM->u.Read.cHostBits != 64)
7344 {
7345 LogRel(("SSM: Incorrect cHostBits value: %u\n", pSSM->u.Read.cHostBits));
7346 return VERR_SSM_INTEGRITY_HEADER;
7347 }
7348 }
7349 else
7350 AssertLogRelReturn(pSSM->u.Read.cHostBits == 0, VERR_SSM_INTEGRITY_HEADER);
7351
7352 if ( pSSM->u.Read.cbGCPhys != sizeof(uint32_t)
7353 && pSSM->u.Read.cbGCPhys != sizeof(uint64_t))
7354 {
7355 LogRel(("SSM: Incorrect cbGCPhys value: %d\n", pSSM->u.Read.cbGCPhys));
7356 return VERR_SSM_INTEGRITY_HEADER;
7357 }
7358 if ( pSSM->u.Read.cbGCPtr != sizeof(uint32_t)
7359 && pSSM->u.Read.cbGCPtr != sizeof(uint64_t))
7360 {
7361 LogRel(("SSM: Incorrect cbGCPtr value: %d\n", pSSM->u.Read.cbGCPtr));
7362 return VERR_SSM_INTEGRITY_HEADER;
7363 }
7364
7365 return VINF_SUCCESS;
7366}
7367
7368
7369/**
7370 * Reads the header, detects the format version and performs integrity
7371 * validations.
7372 *
7373 * @returns VBox status.
7374 * @param pSSM The saved state handle. A number of field will
7375 * be updated, mostly header related information.
7376 * fLiveSave is also set if appropriate.
7377 * @param fChecksumIt Whether to checksum the file or not. This will
7378 * be ignored if it the stream isn't a file.
7379 * @param fChecksumOnRead Whether to validate the checksum while reading
7380 * the stream instead of up front. If not possible,
7381 * verify the checksum up front.
7382 * @param pHdr Where to store the file header.
7383 */
7384static int ssmR3HeaderAndValidate(PSSMHANDLE pSSM, bool fChecksumIt, bool fChecksumOnRead)
7385{
7386 /*
7387 * Read and check the header magic.
7388 */
7389 union
7390 {
7391 SSMFILEHDR v2_0;
7392 SSMFILEHDRV12 v1_2;
7393 SSMFILEHDRV11 v1_1;
7394 } uHdr;
7395 int rc = ssmR3StrmRead(&pSSM->Strm, &uHdr, sizeof(uHdr.v2_0.szMagic));
7396 if (RT_FAILURE(rc))
7397 {
7398 LogRel(("SSM: Failed to read file magic header. rc=%Rrc\n", rc));
7399 return rc;
7400 }
7401 if (memcmp(uHdr.v2_0.szMagic, SSMFILEHDR_MAGIC_BASE, sizeof(SSMFILEHDR_MAGIC_BASE) - 1))
7402 {
7403 Log(("SSM: Not a saved state file. magic=%.*s\n", sizeof(uHdr.v2_0.szMagic) - 1, uHdr.v2_0.szMagic));
7404 return VERR_SSM_INTEGRITY_MAGIC;
7405 }
7406
7407 /*
7408 * Find the header size and read the rest.
7409 */
7410 static const struct
7411 {
7412 char szMagic[sizeof(SSMFILEHDR_MAGIC_V2_0)];
7413 uint32_t cbHdr;
7414 unsigned uFmtVerMajor;
7415 unsigned uFmtVerMinor;
7416 } s_aVers[] =
7417 {
7418 { SSMFILEHDR_MAGIC_V2_0, sizeof(SSMFILEHDR), 2, 0 },
7419 { SSMFILEHDR_MAGIC_V1_2, sizeof(SSMFILEHDRV12), 1, 2 },
7420 { SSMFILEHDR_MAGIC_V1_1, sizeof(SSMFILEHDRV11), 1, 1 },
7421 };
7422 int iVer = RT_ELEMENTS(s_aVers);
7423 while (iVer-- > 0)
7424 if (!memcmp(uHdr.v2_0.szMagic, s_aVers[iVer].szMagic, sizeof(uHdr.v2_0.szMagic)))
7425 break;
7426 if (iVer < 0)
7427 {
7428 Log(("SSM: Unknown file format version. magic=%.*s\n", sizeof(uHdr.v2_0.szMagic) - 1, uHdr.v2_0.szMagic));
7429 return VERR_SSM_INTEGRITY_VERSION;
7430 }
7431 pSSM->u.Read.uFmtVerMajor = s_aVers[iVer].uFmtVerMajor;
7432 pSSM->u.Read.uFmtVerMinor = s_aVers[iVer].uFmtVerMinor;
7433 pSSM->u.Read.cbFileHdr = s_aVers[iVer].cbHdr;
7434
7435 rc = ssmR3StrmRead(&pSSM->Strm, (uint8_t *)&uHdr + sizeof(uHdr.v2_0.szMagic), pSSM->u.Read.cbFileHdr - sizeof(uHdr.v2_0.szMagic));
7436 if (RT_FAILURE(rc))
7437 {
7438 LogRel(("SSM: Failed to read the file header. rc=%Rrc\n", rc));
7439 return rc;
7440 }
7441
7442 /*
7443 * Make version specific adjustments.
7444 */
7445 if (pSSM->u.Read.uFmtVerMajor >= 2)
7446 {
7447 /*
7448 * Version 2.0 and later.
7449 */
7450 if (pSSM->u.Read.uFmtVerMinor == 0)
7451 {
7452 /* validate the header. */
7453 SSM_CHECK_CRC32_RET(&uHdr.v2_0, sizeof(uHdr.v2_0), ("Header CRC mismatch: %08x, correct is %08x\n", u32CRC, u32ActualCRC));
7454 if (uHdr.v2_0.u8Reserved)
7455 {
7456 LogRel(("SSM: Reserved header field isn't zero: %02x\n", uHdr.v2_0.u8Reserved));
7457 return VERR_SSM_INTEGRITY;
7458 }
7459 if (uHdr.v2_0.fFlags & ~(SSMFILEHDR_FLAGS_STREAM_CRC32 | SSMFILEHDR_FLAGS_STREAM_LIVE_SAVE))
7460 {
7461 LogRel(("SSM: Unknown header flags: %08x\n", uHdr.v2_0.fFlags));
7462 return VERR_SSM_INTEGRITY;
7463 }
7464 if ( uHdr.v2_0.cbMaxDecompr > sizeof(pSSM->u.Read.abDataBuffer)
7465 || uHdr.v2_0.cbMaxDecompr < _1K
7466 || (uHdr.v2_0.cbMaxDecompr & 0xff) != 0)
7467 {
7468 LogRel(("SSM: The cbMaxDecompr header field is out of range: %#x\n", uHdr.v2_0.cbMaxDecompr));
7469 return VERR_SSM_INTEGRITY;
7470 }
7471
7472 /* set the header info. */
7473 pSSM->u.Read.cHostBits = uHdr.v2_0.cHostBits;
7474 pSSM->u.Read.u16VerMajor = uHdr.v2_0.u16VerMajor;
7475 pSSM->u.Read.u16VerMinor = uHdr.v2_0.u16VerMinor;
7476 pSSM->u.Read.u32VerBuild = uHdr.v2_0.u32VerBuild;
7477 pSSM->u.Read.u32SvnRev = uHdr.v2_0.u32SvnRev;
7478 pSSM->u.Read.cbGCPhys = uHdr.v2_0.cbGCPhys;
7479 pSSM->u.Read.cbGCPtr = uHdr.v2_0.cbGCPtr;
7480 pSSM->u.Read.fFixedGCPtrSize= true;
7481 pSSM->u.Read.fStreamCrc32 = !!(uHdr.v2_0.fFlags & SSMFILEHDR_FLAGS_STREAM_CRC32);
7482 pSSM->fLiveSave = !!(uHdr.v2_0.fFlags & SSMFILEHDR_FLAGS_STREAM_LIVE_SAVE);
7483 }
7484 else
7485 AssertFailedReturn(VERR_SSM_IPE_2);
7486 if (!pSSM->u.Read.fStreamCrc32)
7487 ssmR3StrmDisableChecksumming(&pSSM->Strm);
7488
7489 /*
7490 * Read and validate the footer if it's a file.
7491 */
7492 if (ssmR3StrmIsFile(&pSSM->Strm))
7493 {
7494 SSMFILEFTR Footer;
7495 uint64_t offFooter;
7496 rc = ssmR3StrmPeekAt(&pSSM->Strm, -(RTFOFF)sizeof(SSMFILEFTR), &Footer, sizeof(Footer), &offFooter);
7497 AssertLogRelRCReturn(rc, rc);
7498
7499 rc = ssmR3ValidateFooter(&Footer, offFooter, UINT32_MAX, pSSM->u.Read.fStreamCrc32, Footer.u32StreamCRC);
7500 if (RT_FAILURE(rc))
7501 return rc;
7502
7503 pSSM->u.Read.cbLoadFile = offFooter + sizeof(Footer);
7504 pSSM->u.Read.u32LoadCRC = Footer.u32StreamCRC;
7505 }
7506 else
7507 {
7508 pSSM->u.Read.cbLoadFile = UINT64_MAX;
7509 pSSM->u.Read.u32LoadCRC = 0;
7510 }
7511
7512 /*
7513 * Validate the header info we've set in the handle.
7514 */
7515 rc = ssmR3ValidateHeaderInfo(pSSM, true /*fHaveHostBits*/, true /*fHaveVersion*/);
7516 if (RT_FAILURE(rc))
7517 return rc;
7518
7519 /*
7520 * Check the checksum if that's called for and possible.
7521 */
7522 if ( pSSM->u.Read.fStreamCrc32
7523 && fChecksumIt
7524 && !fChecksumOnRead
7525 && ssmR3StrmIsFile(&pSSM->Strm))
7526 {
7527 uint32_t u32CRC;
7528 rc = ssmR3CalcChecksum(&pSSM->Strm, 0, pSSM->u.Read.cbLoadFile - sizeof(SSMFILEFTR), &u32CRC);
7529 if (RT_FAILURE(rc))
7530 return rc;
7531 if (u32CRC != pSSM->u.Read.u32LoadCRC)
7532 {
7533 LogRel(("SSM: Invalid CRC! Calculated %#010x, in footer %#010x\n", u32CRC, pSSM->u.Read.u32LoadCRC));
7534 return VERR_SSM_INTEGRITY_CRC;
7535 }
7536 }
7537 }
7538 else
7539 {
7540 /*
7541 * Version 1.x of the format.
7542 */
7543 bool fHaveHostBits = true;
7544 bool fHaveVersion = false;
7545 RTUUID MachineUuidFromHdr;
7546
7547 ssmR3StrmDisableChecksumming(&pSSM->Strm);
7548 if (pSSM->u.Read.uFmtVerMinor == 1)
7549 {
7550 pSSM->u.Read.cHostBits = 0; /* unknown */
7551 pSSM->u.Read.u16VerMajor = 0;
7552 pSSM->u.Read.u16VerMinor = 0;
7553 pSSM->u.Read.u32VerBuild = 0;
7554 pSSM->u.Read.u32SvnRev = 0;
7555 pSSM->u.Read.cbLoadFile = uHdr.v1_1.cbFile;
7556 pSSM->u.Read.u32LoadCRC = uHdr.v1_1.u32CRC;
7557 pSSM->u.Read.cbGCPhys = sizeof(RTGCPHYS);
7558 pSSM->u.Read.cbGCPtr = sizeof(RTGCPTR);
7559 pSSM->u.Read.fFixedGCPtrSize = false; /* settable */
7560 pSSM->u.Read.fStreamCrc32 = false;
7561
7562 MachineUuidFromHdr = uHdr.v1_1.MachineUuid;
7563 fHaveHostBits = false;
7564 }
7565 else if (pSSM->u.Read.uFmtVerMinor == 2)
7566 {
7567 pSSM->u.Read.cHostBits = uHdr.v1_2.cHostBits;
7568 pSSM->u.Read.u16VerMajor = uHdr.v1_2.u16VerMajor;
7569 pSSM->u.Read.u16VerMinor = uHdr.v1_2.u16VerMinor;
7570 pSSM->u.Read.u32VerBuild = uHdr.v1_2.u32VerBuild;
7571 pSSM->u.Read.u32SvnRev = uHdr.v1_2.u32SvnRev;
7572 pSSM->u.Read.cbLoadFile = uHdr.v1_2.cbFile;
7573 pSSM->u.Read.u32LoadCRC = uHdr.v1_2.u32CRC;
7574 pSSM->u.Read.cbGCPhys = uHdr.v1_2.cbGCPhys;
7575 pSSM->u.Read.cbGCPtr = uHdr.v1_2.cbGCPtr;
7576 pSSM->u.Read.fFixedGCPtrSize = true;
7577 pSSM->u.Read.fStreamCrc32 = false;
7578
7579 MachineUuidFromHdr = uHdr.v1_2.MachineUuid;
7580 fHaveVersion = true;
7581 }
7582 else
7583 AssertFailedReturn(VERR_SSM_IPE_1);
7584
7585 /*
7586 * The MachineUuid must be NULL (was never used).
7587 */
7588 if (!RTUuidIsNull(&MachineUuidFromHdr))
7589 {
7590 LogRel(("SSM: The UUID of the saved state doesn't match the running VM.\n"));
7591 return VERR_SMM_INTEGRITY_MACHINE;
7592 }
7593
7594 /*
7595 * Verify the file size.
7596 */
7597 uint64_t cbFile = ssmR3StrmGetSize(&pSSM->Strm);
7598 if (cbFile != pSSM->u.Read.cbLoadFile)
7599 {
7600 LogRel(("SSM: File size mismatch. hdr.cbFile=%lld actual %lld\n", pSSM->u.Read.cbLoadFile, cbFile));
7601 return VERR_SSM_INTEGRITY_SIZE;
7602 }
7603
7604 /*
7605 * Validate the header info we've set in the handle.
7606 */
7607 rc = ssmR3ValidateHeaderInfo(pSSM, fHaveHostBits, fHaveVersion);
7608 if (RT_FAILURE(rc))
7609 return rc;
7610
7611 /*
7612 * Verify the checksum if requested.
7613 *
7614 * Note! The checksum is not actually generated for the whole file,
7615 * this is of course a bug in the v1.x code that we cannot do
7616 * anything about.
7617 */
7618 if ( fChecksumIt
7619 || fChecksumOnRead)
7620 {
7621 uint32_t u32CRC;
7622 rc = ssmR3CalcChecksum(&pSSM->Strm,
7623 RT_OFFSETOF(SSMFILEHDRV11, u32CRC) + sizeof(uHdr.v1_1.u32CRC),
7624 cbFile - pSSM->u.Read.cbFileHdr,
7625 &u32CRC);
7626 if (RT_FAILURE(rc))
7627 return rc;
7628 if (u32CRC != pSSM->u.Read.u32LoadCRC)
7629 {
7630 LogRel(("SSM: Invalid CRC! Calculated %#010x, in header %#010x\n", u32CRC, pSSM->u.Read.u32LoadCRC));
7631 return VERR_SSM_INTEGRITY_CRC;
7632 }
7633 }
7634 }
7635
7636 return VINF_SUCCESS;
7637}
7638
7639
7640/**
7641 * Open a saved state for reading.
7642 *
7643 * The file will be positioned at the first data unit upon successful return.
7644 *
7645 * @returns VBox status code.
7646 *
7647 * @param pVM The VM handle.
7648 * @param pszFilename The filename. NULL if pStreamOps is used.
7649 * @param pStreamOps The stream method table. NULL if pszFilename is
7650 * used.
7651 * @param pvUser The user argument to the stream methods.
7652 * @param fChecksumIt Check the checksum for the entire file.
7653 * @param fChecksumOnRead Whether to validate the checksum while reading
7654 * the stream instead of up front. If not possible,
7655 * verify the checksum up front.
7656 * @param pSSM Pointer to the handle structure. This will be
7657 * completely initialized on success.
7658 * @param cBuffers The number of stream buffers.
7659 */
7660static int ssmR3OpenFile(PVM pVM, const char *pszFilename, PCSSMSTRMOPS pStreamOps, void *pvUser,
7661 bool fChecksumIt, bool fChecksumOnRead, uint32_t cBuffers, PSSMHANDLE pSSM)
7662{
7663 /*
7664 * Initialize the handle.
7665 */
7666 pSSM->pVM = pVM;
7667 pSSM->enmOp = SSMSTATE_INVALID;
7668 pSSM->enmAfter = SSMAFTER_INVALID;
7669 pSSM->fCancelled = SSMHANDLE_OK;
7670 pSSM->rc = VINF_SUCCESS;
7671 pSSM->cbUnitLeftV1 = 0;
7672 pSSM->offUnit = UINT64_MAX;
7673 pSSM->fLiveSave = false;
7674 pSSM->pfnProgress = NULL;
7675 pSSM->pvUser = NULL;
7676 pSSM->uPercent = 0;
7677 pSSM->offEstProgress = 0;
7678 pSSM->cbEstTotal = 0;
7679 pSSM->offEst = 0;
7680 pSSM->offEstUnitEnd = 0;
7681 pSSM->uPercentLive = 0;
7682 pSSM->uPercentPrepare = 5;
7683 pSSM->uPercentDone = 2;
7684 pSSM->uReportedLivePercent = 0;
7685 pSSM->pszFilename = pszFilename;
7686
7687 pSSM->u.Read.pZipDecompV1 = NULL;
7688 pSSM->u.Read.uFmtVerMajor = UINT32_MAX;
7689 pSSM->u.Read.uFmtVerMinor = UINT32_MAX;
7690 pSSM->u.Read.cbFileHdr = UINT32_MAX;
7691 pSSM->u.Read.cbGCPhys = UINT8_MAX;
7692 pSSM->u.Read.cbGCPtr = UINT8_MAX;
7693 pSSM->u.Read.fFixedGCPtrSize= false;
7694 pSSM->u.Read.fIsHostMsc32 = SSM_HOST_IS_MSC_32;
7695 RT_ZERO(pSSM->u.Read.szHostOSAndArch);
7696 pSSM->u.Read.u16VerMajor = UINT16_MAX;
7697 pSSM->u.Read.u16VerMinor = UINT16_MAX;
7698 pSSM->u.Read.u32VerBuild = UINT32_MAX;
7699 pSSM->u.Read.u32SvnRev = UINT32_MAX;
7700 pSSM->u.Read.cHostBits = UINT8_MAX;
7701 pSSM->u.Read.cbLoadFile = UINT64_MAX;
7702
7703 pSSM->u.Read.cbRecLeft = 0;
7704 pSSM->u.Read.cbDataBuffer = 0;
7705 pSSM->u.Read.offDataBuffer = 0;
7706 pSSM->u.Read.fEndOfData = 0;
7707 pSSM->u.Read.u8TypeAndFlags = 0;
7708
7709 pSSM->u.Read.pCurUnit = NULL;
7710 pSSM->u.Read.uCurUnitVer = UINT32_MAX;
7711 pSSM->u.Read.uCurUnitPass = 0;
7712 pSSM->u.Read.fHaveSetError = false;
7713
7714 /*
7715 * Try open and validate the file.
7716 */
7717 int rc;
7718 if (pStreamOps)
7719 rc = ssmR3StrmInit(&pSSM->Strm, pStreamOps, pvUser, false /*fWrite*/, fChecksumOnRead, cBuffers);
7720 else
7721 rc = ssmR3StrmOpenFile(&pSSM->Strm, pszFilename, false /*fWrite*/, fChecksumOnRead, cBuffers);
7722 if (RT_SUCCESS(rc))
7723 {
7724 rc = ssmR3HeaderAndValidate(pSSM, fChecksumIt, fChecksumOnRead);
7725 if (RT_SUCCESS(rc))
7726 return rc;
7727
7728 /* failure path */
7729 ssmR3StrmClose(&pSSM->Strm, pSSM->rc == VERR_SSM_CANCELLED);
7730 }
7731 else
7732 Log(("SSM: Failed to open save state file '%s', rc=%Rrc.\n", pszFilename, rc));
7733 return rc;
7734}
7735
7736
7737/**
7738 * Verifies the directory.
7739 *
7740 * @returns VBox status code.
7741 *
7742 * @param pDir The full directory.
7743 * @param cbDir The size of the directory.
7744 * @param offDir The directory stream offset.
7745 * @param cDirEntries The directory entry count from the footer.
7746 * @param cbHdr The header size.
7747 * @param uSvnRev The SVN revision that saved the state. Bug detection.
7748 */
7749static int ssmR3ValidateDirectory(PSSMFILEDIR pDir, size_t cbDir, uint64_t offDir, uint32_t cDirEntries,
7750 uint32_t cbHdr, uint32_t uSvnRev)
7751{
7752 AssertLogRelReturn(!memcmp(pDir->szMagic, SSMFILEDIR_MAGIC, sizeof(pDir->szMagic)), VERR_SSM_INTEGRITY_DIR_MAGIC);
7753 SSM_CHECK_CRC32_RET(pDir, cbDir, ("Bad directory CRC: %08x, actual %08x\n", u32CRC, u32ActualCRC));
7754 AssertLogRelMsgReturn(pDir->cEntries == cDirEntries,
7755 ("Bad directory entry count: %#x, expected %#x (from the footer)\n", pDir->cEntries, cDirEntries),
7756 VERR_SSM_INTEGRITY_DIR);
7757 AssertLogRelReturn(RT_UOFFSETOF(SSMFILEDIR, aEntries[pDir->cEntries]) == cbDir, VERR_SSM_INTEGRITY_DIR);
7758
7759 for (uint32_t i = 0; i < pDir->cEntries; i++)
7760 {
7761 AssertLogRelMsgReturn( ( pDir->aEntries[i].off >= cbHdr
7762 && pDir->aEntries[i].off < offDir)
7763 || ( pDir->aEntries[i].off == 0 /* bug in unreleased code */
7764 && uSvnRev < 53365),
7765 ("off=%#llx cbHdr=%#x offDir=%#llx\n", pDir->aEntries[i].off, cbHdr, offDir),
7766 VERR_SSM_INTEGRITY_DIR);
7767 }
7768 return VINF_SUCCESS;
7769}
7770
7771#ifndef SSM_STANDALONE
7772
7773/**
7774 * Find a data unit by name.
7775 *
7776 * @returns Pointer to the unit.
7777 * @returns NULL if not found.
7778 *
7779 * @param pVM VM handle.
7780 * @param pszName Data unit name.
7781 * @param uInstance The data unit instance id.
7782 */
7783static PSSMUNIT ssmR3Find(PVM pVM, const char *pszName, uint32_t uInstance)
7784{
7785 size_t cchName = strlen(pszName);
7786 PSSMUNIT pUnit = pVM->ssm.s.pHead;
7787 while ( pUnit
7788 && ( pUnit->u32Instance != uInstance
7789 || pUnit->cchName != cchName
7790 || memcmp(pUnit->szName, pszName, cchName)))
7791 pUnit = pUnit->pNext;
7792 return pUnit;
7793}
7794
7795
7796/**
7797 * Executes the loading of a V1.X file.
7798 *
7799 * @returns VBox status code.
7800 * @param pVM The VM handle.
7801 * @param pSSM The saved state handle.
7802 */
7803static int ssmR3LoadExecV1(PVM pVM, PSSMHANDLE pSSM)
7804{
7805 int rc;
7806 char *pszName = NULL;
7807 size_t cchName = 0;
7808 pSSM->enmOp = SSMSTATE_LOAD_EXEC;
7809 for (;;)
7810 {
7811 /*
7812 * Save the current file position and read the data unit header.
7813 */
7814 uint64_t offUnit = ssmR3StrmTell(&pSSM->Strm);
7815 SSMFILEUNITHDRV1 UnitHdr;
7816 rc = ssmR3StrmRead(&pSSM->Strm, &UnitHdr, RT_OFFSETOF(SSMFILEUNITHDRV1, szName));
7817 if (RT_SUCCESS(rc))
7818 {
7819 /*
7820 * Check the magic and see if it's valid and whether it is a end header or not.
7821 */
7822 if (memcmp(&UnitHdr.achMagic[0], SSMFILEUNITHDR_MAGIC, sizeof(SSMFILEUNITHDR_MAGIC)))
7823 {
7824 if (!memcmp(&UnitHdr.achMagic[0], SSMFILEUNITHDR_END, sizeof(SSMFILEUNITHDR_END)))
7825 {
7826 Log(("SSM: EndOfFile: offset %#9llx size %9d\n", offUnit, UnitHdr.cbUnit));
7827 /* Complete the progress bar (pending 99% afterwards). */
7828 ssmR3ProgressByByte(pSSM, pSSM->cbEstTotal - pSSM->offEst);
7829 break;
7830 }
7831 LogRel(("SSM: Invalid unit magic at offset %#llx (%lld), '%.*s'!\n",
7832 offUnit, offUnit, sizeof(UnitHdr.achMagic) - 1, &UnitHdr.achMagic[0]));
7833 rc = VERR_SSM_INTEGRITY_UNIT_MAGIC;
7834 break;
7835 }
7836
7837 /*
7838 * Read the name.
7839 * Adjust the name buffer first.
7840 */
7841 if (cchName < UnitHdr.cchName)
7842 {
7843 if (pszName)
7844 RTMemTmpFree(pszName);
7845 cchName = RT_ALIGN_Z(UnitHdr.cchName, 64);
7846 pszName = (char *)RTMemTmpAlloc(cchName);
7847 }
7848 if (pszName)
7849 {
7850 rc = ssmR3StrmRead(&pSSM->Strm, pszName, UnitHdr.cchName);
7851 if (RT_SUCCESS(rc))
7852 {
7853 if (pszName[UnitHdr.cchName - 1])
7854 {
7855 LogRel(("SSM: Unit name '%.*s' was not properly terminated.\n", UnitHdr.cchName, pszName));
7856 rc = VERR_SSM_INTEGRITY_UNIT;
7857 break;
7858 }
7859 Log(("SSM: Data unit: offset %#9llx size %9lld '%s'\n", offUnit, UnitHdr.cbUnit, pszName));
7860
7861 /*
7862 * Find the data unit in our internal table.
7863 */
7864 PSSMUNIT pUnit = ssmR3Find(pVM, pszName, UnitHdr.u32Instance);
7865 if (pUnit)
7866 {
7867 /*
7868 * Call the execute handler.
7869 */
7870 pSSM->cbUnitLeftV1 = UnitHdr.cbUnit - RT_OFFSETOF(SSMFILEUNITHDRV1, szName[UnitHdr.cchName]);
7871 pSSM->offUnit = 0;
7872 pSSM->u.Read.uCurUnitVer = UnitHdr.u32Version;
7873 pSSM->u.Read.uCurUnitPass = SSM_PASS_FINAL;
7874 pSSM->u.Read.pCurUnit = pUnit;
7875 if (!pUnit->u.Common.pfnLoadExec)
7876 {
7877 LogRel(("SSM: No load exec callback for unit '%s'!\n", pszName));
7878 pSSM->rc = rc = VERR_SSM_NO_LOAD_EXEC;
7879 break;
7880 }
7881 switch (pUnit->enmType)
7882 {
7883 case SSMUNITTYPE_DEV:
7884 rc = pUnit->u.Dev.pfnLoadExec(pUnit->u.Dev.pDevIns, pSSM, UnitHdr.u32Version, SSM_PASS_FINAL);
7885 break;
7886 case SSMUNITTYPE_DRV:
7887 rc = pUnit->u.Drv.pfnLoadExec(pUnit->u.Drv.pDrvIns, pSSM, UnitHdr.u32Version, SSM_PASS_FINAL);
7888 break;
7889 case SSMUNITTYPE_INTERNAL:
7890 rc = pUnit->u.Internal.pfnLoadExec(pVM, pSSM, UnitHdr.u32Version, SSM_PASS_FINAL);
7891 break;
7892 case SSMUNITTYPE_EXTERNAL:
7893 rc = pUnit->u.External.pfnLoadExec(pSSM, pUnit->u.External.pvUser, UnitHdr.u32Version, SSM_PASS_FINAL);
7894 break;
7895 default:
7896 rc = VERR_SSM_IPE_1;
7897 break;
7898 }
7899 pUnit->fCalled = true;
7900 if (RT_FAILURE(rc) && RT_SUCCESS_NP(pSSM->rc))
7901 pSSM->rc = rc;
7902
7903 /*
7904 * Close the reader stream.
7905 */
7906 rc = ssmR3DataReadFinishV1(pSSM);
7907 if (RT_SUCCESS(rc))
7908 {
7909 /*
7910 * Now, we'll check the current position to see if all, or
7911 * more than all, the data was read.
7912 *
7913 * Note! Because of buffering / compression we'll only see the
7914 * really bad ones here.
7915 */
7916 uint64_t off = ssmR3StrmTell(&pSSM->Strm);
7917 int64_t i64Diff = off - (offUnit + UnitHdr.cbUnit);
7918 if (i64Diff < 0)
7919 {
7920 Log(("SSM: Unit '%s' left %lld bytes unread!\n", pszName, -i64Diff));
7921 rc = ssmR3StrmSkipTo(&pSSM->Strm, offUnit + UnitHdr.cbUnit);
7922 ssmR3ProgressByByte(pSSM, offUnit + UnitHdr.cbUnit - pSSM->offEst);
7923 }
7924 else if (i64Diff > 0)
7925 {
7926 LogRel(("SSM: Unit '%s' read %lld bytes too much!\n", pszName, i64Diff));
7927 if (!ASMAtomicXchgBool(&pSSM->u.Read.fHaveSetError, true))
7928 rc = VMSetError(pVM, VERR_SSM_LOADED_TOO_MUCH, RT_SRC_POS,
7929 N_("Unit '%s' read %lld bytes too much"), pszName, i64Diff);
7930 break;
7931 }
7932
7933 pSSM->offUnit = UINT64_MAX;
7934 }
7935 else
7936 {
7937 LogRel(("SSM: Load exec failed for '%s' instance #%u ! (version %u)\n",
7938 pszName, UnitHdr.u32Instance, UnitHdr.u32Version));
7939 if (!ASMAtomicXchgBool(&pSSM->u.Read.fHaveSetError, true))
7940 {
7941 if (rc == VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION)
7942 VMSetError(pVM, rc, RT_SRC_POS, N_("Unsupported version %u of data unit '%s' (instance #%u)"),
7943 UnitHdr.u32Version, UnitHdr.szName, UnitHdr.u32Instance);
7944 else
7945 VMSetError(pVM, rc, RT_SRC_POS, N_("Load exec failed for '%s' instance #%u (version %u)"),
7946 pszName, UnitHdr.u32Instance, UnitHdr.u32Version);
7947 }
7948 break;
7949 }
7950
7951 pSSM->u.Read.pCurUnit = NULL;
7952 pSSM->u.Read.uCurUnitVer = UINT32_MAX;
7953 pSSM->u.Read.uCurUnitPass = 0;
7954 }
7955 else
7956 {
7957 /*
7958 * SSM unit wasn't found - ignore this when loading for the debugger.
7959 */
7960 LogRel(("SSM: Found no handler for unit '%s'!\n", pszName));
7961 rc = VERR_SSM_INTEGRITY_UNIT_NOT_FOUND;
7962 if (pSSM->enmAfter != SSMAFTER_DEBUG_IT)
7963 break;
7964 rc = ssmR3StrmSkipTo(&pSSM->Strm, offUnit + UnitHdr.cbUnit);
7965 }
7966 }
7967 }
7968 else
7969 rc = VERR_NO_TMP_MEMORY;
7970 }
7971
7972 /*
7973 * I/O errors ends up here (yea, I know, very nice programming).
7974 */
7975 if (RT_FAILURE(rc))
7976 {
7977 LogRel(("SSM: I/O error. rc=%Rrc\n", rc));
7978 break;
7979 }
7980
7981 /*
7982 * Check for cancellation.
7983 */
7984 if (RT_UNLIKELY(ASMAtomicUoReadU32(&(pSSM)->fCancelled) == SSMHANDLE_CANCELLED))
7985 {
7986 LogRel(("SSM: Cancelled!n"));
7987 rc = pSSM->rc;
7988 if (RT_SUCCESS(pSSM->rc))
7989 pSSM->rc = rc = VERR_SSM_CANCELLED;
7990 break;
7991 }
7992 }
7993
7994 RTMemTmpFree(pszName);
7995 return rc;
7996}
7997
7998
7999/**
8000 * Reads and verifies the directory and footer.
8001 *
8002 * @returns VBox status code.
8003 * @param pSSM The saved state handle.
8004 */
8005static int ssmR3LoadDirectoryAndFooter(PSSMHANDLE pSSM)
8006{
8007 /*
8008 * The directory.
8009 *
8010 * Get the header containing the number of entries first. Then read the
8011 * entries and pass the combined block to the validation function.
8012 */
8013 uint64_t off = ssmR3StrmTell(&pSSM->Strm);
8014 size_t const cbDirHdr = RT_OFFSETOF(SSMFILEDIR, aEntries);
8015 SSMFILEDIR DirHdr;
8016 int rc = ssmR3StrmRead(&pSSM->Strm, &DirHdr, cbDirHdr);
8017 if (RT_FAILURE(rc))
8018 return rc;
8019 AssertLogRelMsgReturn(!memcmp(DirHdr.szMagic, SSMFILEDIR_MAGIC, sizeof(DirHdr.szMagic)),
8020 ("Invalid directory magic at %#llx (%lld): %.*Rhxs\n", off, off, sizeof(DirHdr.szMagic), DirHdr.szMagic),
8021 VERR_SSM_INTEGRITY_DIR_MAGIC);
8022 AssertLogRelMsgReturn(DirHdr.cEntries < _64K,
8023 ("Too many directory entries at %#llx (%lld): %#x\n", off, off, DirHdr.cEntries),
8024 VERR_SSM_INTEGRITY_DIR);
8025
8026 size_t cbDir = RT_OFFSETOF(SSMFILEDIR, aEntries[DirHdr.cEntries]);
8027 PSSMFILEDIR pDir = (PSSMFILEDIR)RTMemTmpAlloc(cbDir);
8028 if (!pDir)
8029 return VERR_NO_TMP_MEMORY;
8030 memcpy(pDir, &DirHdr, cbDirHdr);
8031 rc = ssmR3StrmRead(&pSSM->Strm, (uint8_t *)pDir + cbDirHdr, cbDir - cbDirHdr);
8032 if (RT_SUCCESS(rc))
8033 rc = ssmR3ValidateDirectory(pDir, cbDir, off, DirHdr.cEntries, pSSM->u.Read.cbFileHdr, pSSM->u.Read.u32SvnRev);
8034 RTMemTmpFree(pDir);
8035 if (RT_FAILURE(rc))
8036 return rc;
8037
8038 /*
8039 * Read and validate the footer.
8040 */
8041 off = ssmR3StrmTell(&pSSM->Strm);
8042 uint32_t u32StreamCRC = ssmR3StrmFinalCRC(&pSSM->Strm);
8043 SSMFILEFTR Footer;
8044 rc = ssmR3StrmRead(&pSSM->Strm, &Footer, sizeof(Footer));
8045 if (RT_FAILURE(rc))
8046 return rc;
8047 return ssmR3ValidateFooter(&Footer, off, DirHdr.cEntries, pSSM->u.Read.fStreamCrc32, u32StreamCRC);
8048}
8049
8050
8051/**
8052 * Executes the loading of a V2.X file.
8053 *
8054 * @returns VBox status code. May or may not set pSSM->rc, the returned
8055 * status code is ALWAYS the more accurate of the two.
8056 * @param pVM The VM handle.
8057 * @param pSSM The saved state handle.
8058 */
8059static int ssmR3LoadExecV2(PVM pVM, PSSMHANDLE pSSM)
8060{
8061 pSSM->enmOp = SSMSTATE_LOAD_EXEC;
8062 for (;;)
8063 {
8064 /*
8065 * Read the unit header and check its integrity.
8066 */
8067 uint64_t offUnit = ssmR3StrmTell(&pSSM->Strm);
8068 uint32_t u32CurStreamCRC = ssmR3StrmCurCRC(&pSSM->Strm);
8069 SSMFILEUNITHDRV2 UnitHdr;
8070 int rc = ssmR3StrmRead(&pSSM->Strm, &UnitHdr, RT_OFFSETOF(SSMFILEUNITHDRV2, szName));
8071 if (RT_FAILURE(rc))
8072 return rc;
8073 if (RT_UNLIKELY( memcmp(&UnitHdr.szMagic[0], SSMFILEUNITHDR_MAGIC, sizeof(UnitHdr.szMagic))
8074 && memcmp(&UnitHdr.szMagic[0], SSMFILEUNITHDR_END, sizeof(UnitHdr.szMagic))))
8075 {
8076 LogRel(("SSM: Unit at %#llx (%lld): Invalid unit magic: %.*Rhxs!\n",
8077 offUnit, offUnit, sizeof(UnitHdr.szMagic) - 1, &UnitHdr.szMagic[0]));
8078 pSSM->u.Read.fHaveSetError = true;
8079 return VMSetError(pVM, VERR_SSM_INTEGRITY_UNIT_MAGIC, RT_SRC_POS,
8080 N_("Unit at %#llx (%lld): Invalid unit magic"), offUnit, offUnit);
8081 }
8082 if (UnitHdr.cbName)
8083 {
8084 AssertLogRelMsgReturn(UnitHdr.cbName <= sizeof(UnitHdr.szName),
8085 ("Unit at %#llx (%lld): UnitHdr.cbName=%u > %u\n",
8086 offUnit, offUnit, UnitHdr.cbName, sizeof(UnitHdr.szName)),
8087 VERR_SSM_INTEGRITY_UNIT);
8088 rc = ssmR3StrmRead(&pSSM->Strm, &UnitHdr.szName[0], UnitHdr.cbName);
8089 if (RT_FAILURE(rc))
8090 return rc;
8091 AssertLogRelMsgReturn(!UnitHdr.szName[UnitHdr.cbName - 1],
8092 ("Unit at %#llx (%lld): Name %.*Rhxs was not properly terminated.\n",
8093 offUnit, offUnit, UnitHdr.cbName, UnitHdr.szName),
8094 VERR_SSM_INTEGRITY_UNIT);
8095 }
8096 SSM_CHECK_CRC32_RET(&UnitHdr, RT_OFFSETOF(SSMFILEUNITHDRV2, szName[UnitHdr.cbName]),
8097 ("Unit at %#llx (%lld): CRC mismatch: %08x, correct is %08x\n", offUnit, offUnit, u32CRC, u32ActualCRC));
8098 AssertLogRelMsgReturn(UnitHdr.offStream == offUnit,
8099 ("Unit at %#llx (%lld): offStream=%#llx, expected %#llx\n", offUnit, offUnit, UnitHdr.offStream, offUnit),
8100 VERR_SSM_INTEGRITY_UNIT);
8101 AssertLogRelMsgReturn(UnitHdr.u32CurStreamCRC == u32CurStreamCRC || !pSSM->Strm.fChecksummed,
8102 ("Unit at %#llx (%lld): Stream CRC mismatch: %08x, correct is %08x\n", offUnit, offUnit, UnitHdr.u32CurStreamCRC, u32CurStreamCRC),
8103 VERR_SSM_INTEGRITY_UNIT);
8104 AssertLogRelMsgReturn(!UnitHdr.fFlags, ("Unit at %#llx (%lld): fFlags=%08x\n", offUnit, offUnit, UnitHdr.fFlags),
8105 VERR_SSM_INTEGRITY_UNIT);
8106 if (!memcmp(&UnitHdr.szMagic[0], SSMFILEUNITHDR_END, sizeof(UnitHdr.szMagic)))
8107 {
8108 AssertLogRelMsgReturn( UnitHdr.cbName == 0
8109 && UnitHdr.u32Instance == 0
8110 && UnitHdr.u32Version == 0
8111 && UnitHdr.u32Pass == SSM_PASS_FINAL,
8112 ("Unit at %#llx (%lld): Malformed END unit\n", offUnit, offUnit),
8113 VERR_SSM_INTEGRITY_UNIT);
8114
8115 /*
8116 * Complete the progress bar (pending 99% afterwards) and RETURN.
8117 */
8118 Log(("SSM: Unit at %#9llx: END UNIT\n", offUnit));
8119 ssmR3ProgressByByte(pSSM, pSSM->cbEstTotal - pSSM->offEst);
8120 return ssmR3LoadDirectoryAndFooter(pSSM);
8121 }
8122 AssertLogRelMsgReturn(UnitHdr.cbName > 1, ("Unit at %#llx (%lld): No name\n", offUnit, offUnit), VERR_SSM_INTEGRITY);
8123
8124 Log(("SSM: Unit at %#9llx: '%s', instance %u, pass %#x, version %u\n",
8125 offUnit, UnitHdr.szName, UnitHdr.u32Instance, UnitHdr.u32Pass, UnitHdr.u32Version));
8126
8127 /*
8128 * Find the data unit in our internal table.
8129 */
8130 PSSMUNIT pUnit = ssmR3Find(pVM, UnitHdr.szName, UnitHdr.u32Instance);
8131 if (pUnit)
8132 {
8133 /*
8134 * Call the execute handler.
8135 */
8136 AssertLogRelMsgReturn(pUnit->u.Common.pfnLoadExec,
8137 ("SSM: No load exec callback for unit '%s'!\n", UnitHdr.szName),
8138 VERR_SSM_NO_LOAD_EXEC);
8139 pSSM->u.Read.uCurUnitVer = UnitHdr.u32Version;
8140 pSSM->u.Read.uCurUnitPass = UnitHdr.u32Pass;
8141 pSSM->u.Read.pCurUnit = pUnit;
8142 ssmR3DataReadBeginV2(pSSM);
8143 switch (pUnit->enmType)
8144 {
8145 case SSMUNITTYPE_DEV:
8146 rc = pUnit->u.Dev.pfnLoadExec(pUnit->u.Dev.pDevIns, pSSM, UnitHdr.u32Version, UnitHdr.u32Pass);
8147 break;
8148 case SSMUNITTYPE_DRV:
8149 rc = pUnit->u.Drv.pfnLoadExec(pUnit->u.Drv.pDrvIns, pSSM, UnitHdr.u32Version, UnitHdr.u32Pass);
8150 break;
8151 case SSMUNITTYPE_INTERNAL:
8152 rc = pUnit->u.Internal.pfnLoadExec(pVM, pSSM, UnitHdr.u32Version, UnitHdr.u32Pass);
8153 break;
8154 case SSMUNITTYPE_EXTERNAL:
8155 rc = pUnit->u.External.pfnLoadExec(pSSM, pUnit->u.External.pvUser, UnitHdr.u32Version, UnitHdr.u32Pass);
8156 break;
8157 default:
8158 rc = VERR_SSM_IPE_1;
8159 break;
8160 }
8161 pUnit->fCalled = true;
8162 if (RT_FAILURE(rc) && RT_SUCCESS_NP(pSSM->rc))
8163 pSSM->rc = rc;
8164 rc = ssmR3DataReadFinishV2(pSSM);
8165 if (RT_SUCCESS(rc))
8166 pSSM->offUnit = UINT64_MAX;
8167 else
8168 {
8169 LogRel(("SSM: LoadExec failed for '%s' instance #%u (version %u, pass %#x): %Rrc\n",
8170 UnitHdr.szName, UnitHdr.u32Instance, UnitHdr.u32Version, UnitHdr.u32Pass, rc));
8171 if (!ASMAtomicXchgBool(&pSSM->u.Read.fHaveSetError, true))
8172 {
8173 if (rc == VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION)
8174 rc = VMSetError(pVM, rc, RT_SRC_POS, N_("Unsupported version %u of data unit '%s' (instance #%u, pass %#x)"),
8175 UnitHdr.u32Version, UnitHdr.szName, UnitHdr.u32Instance, UnitHdr.u32Pass);
8176 else
8177 rc = VMSetError(pVM, rc, RT_SRC_POS, N_("Failed to load unit '%s'"), UnitHdr.szName);
8178 }
8179 return rc;
8180 }
8181 }
8182 else
8183 {
8184 /*
8185 * SSM unit wasn't found - ignore this when loading for the debugger.
8186 */
8187 LogRel(("SSM: Found no handler for unit '%s' instance #%u!\n", UnitHdr.szName, UnitHdr.u32Instance));
8188 if (pSSM->enmAfter != SSMAFTER_DEBUG_IT)
8189 {
8190 pSSM->u.Read.fHaveSetError = true;
8191 return VMSetError(pVM, VERR_SSM_INTEGRITY_UNIT_NOT_FOUND, RT_SRC_POS,
8192 N_("Found no handler for unit '%s' instance #%u"), UnitHdr.szName, UnitHdr.u32Instance);
8193 }
8194 SSMR3SkipToEndOfUnit(pSSM);
8195 ssmR3DataReadFinishV2(pSSM);
8196 }
8197
8198 /*
8199 * Check for cancellation.
8200 */
8201 if (RT_UNLIKELY(ASMAtomicUoReadU32(&(pSSM)->fCancelled) == SSMHANDLE_CANCELLED))
8202 {
8203 LogRel(("SSM: Cancelled!\n"));
8204 if (RT_SUCCESS(pSSM->rc))
8205 pSSM->rc = VERR_SSM_CANCELLED;
8206 return pSSM->rc;
8207 }
8208 }
8209 /* won't get here */
8210}
8211
8212
8213
8214
8215/**
8216 * Load VM save operation.
8217 *
8218 * @returns VBox status.
8219 *
8220 * @param pVM The VM handle.
8221 * @param pszFilename The name of the saved state file. NULL if pStreamOps
8222 * is used.
8223 * @param pStreamOps The stream method table. NULL if pszFilename is
8224 * used.
8225 * @param pvStreamOpsUser The user argument for the stream methods.
8226 * @param enmAfter What is planned after a successful load operation.
8227 * Only acceptable values are SSMAFTER_RESUME and SSMAFTER_DEBUG_IT.
8228 * @param pfnProgress Progress callback. Optional.
8229 * @param pvProgressUser User argument for the progress callback.
8230 *
8231 * @thread EMT
8232 */
8233VMMR3DECL(int) SSMR3Load(PVM pVM, const char *pszFilename, PCSSMSTRMOPS pStreamOps, void *pvStreamOpsUser,
8234 SSMAFTER enmAfter, PFNVMPROGRESS pfnProgress, void *pvProgressUser)
8235{
8236 LogFlow(("SSMR3Load: pszFilename=%p:{%s} pStreamOps=%p pvStreamOpsUser=%p enmAfter=%d pfnProgress=%p pvProgressUser=%p\n",
8237 pszFilename, pszFilename, pStreamOps, pvStreamOpsUser, enmAfter, pfnProgress, pvProgressUser));
8238 VM_ASSERT_EMT0(pVM);
8239
8240 /*
8241 * Validate input.
8242 */
8243 AssertMsgReturn( enmAfter == SSMAFTER_RESUME
8244 || enmAfter == SSMAFTER_TELEPORT
8245 || enmAfter == SSMAFTER_DEBUG_IT,
8246 ("%d\n", enmAfter),
8247 VERR_INVALID_PARAMETER);
8248 AssertReturn(!pszFilename != !pStreamOps, VERR_INVALID_PARAMETER);
8249 if (pStreamOps)
8250 {
8251 AssertReturn(pStreamOps->u32Version == SSMSTRMOPS_VERSION, VERR_INVALID_MAGIC);
8252 AssertReturn(pStreamOps->u32EndVersion == SSMSTRMOPS_VERSION, VERR_INVALID_MAGIC);
8253 AssertReturn(pStreamOps->pfnWrite, VERR_INVALID_PARAMETER);
8254 AssertReturn(pStreamOps->pfnRead, VERR_INVALID_PARAMETER);
8255 AssertReturn(pStreamOps->pfnSeek, VERR_INVALID_PARAMETER);
8256 AssertReturn(pStreamOps->pfnTell, VERR_INVALID_PARAMETER);
8257 AssertReturn(pStreamOps->pfnSize, VERR_INVALID_PARAMETER);
8258 AssertReturn(pStreamOps->pfnClose, VERR_INVALID_PARAMETER);
8259 }
8260
8261 /*
8262 * Create the handle and open the file.
8263 */
8264 SSMHANDLE Handle;
8265 int rc = ssmR3OpenFile(pVM, pszFilename, pStreamOps, pvStreamOpsUser, false /* fChecksumIt */,
8266 true /* fChecksumOnRead */, 8 /*cBuffers*/, &Handle);
8267 if (RT_SUCCESS(rc))
8268 {
8269 ssmR3StrmStartIoThread(&Handle.Strm);
8270 ssmR3SetCancellable(pVM, &Handle, true);
8271
8272 Handle.enmAfter = enmAfter;
8273 Handle.pfnProgress = pfnProgress;
8274 Handle.pvUser = pvProgressUser;
8275 Handle.uPercentLive = 0;
8276 Handle.uPercentPrepare = 2;
8277 Handle.uPercentDone = 2;
8278
8279 if (Handle.u.Read.u16VerMajor)
8280 LogRel(("SSM: File header: Format %u.%u, VirtualBox Version %u.%u.%u r%u, %u-bit host, cbGCPhys=%u, cbGCPtr=%u\n",
8281 Handle.u.Read.uFmtVerMajor, Handle.u.Read.uFmtVerMinor,
8282 Handle.u.Read.u16VerMajor, Handle.u.Read.u16VerMinor, Handle.u.Read.u32VerBuild, Handle.u.Read.u32SvnRev,
8283 Handle.u.Read.cHostBits, Handle.u.Read.cbGCPhys, Handle.u.Read.cbGCPtr));
8284 else
8285 LogRel(("SSM: File header: Format %u.%u, %u-bit host, cbGCPhys=%u, cbGCPtr=%u\n" ,
8286 Handle.u.Read.uFmtVerMajor, Handle.u.Read.uFmtVerMinor,
8287 Handle.u.Read.cHostBits, Handle.u.Read.cbGCPhys, Handle.u.Read.cbGCPtr));
8288
8289 if (pfnProgress)
8290 pfnProgress(pVM, Handle.uPercent, pvProgressUser);
8291
8292 /*
8293 * Clear the per unit flags.
8294 */
8295 PSSMUNIT pUnit;
8296 for (pUnit = pVM->ssm.s.pHead; pUnit; pUnit = pUnit->pNext)
8297 pUnit->fCalled = false;
8298
8299 /*
8300 * Do the prepare run.
8301 */
8302 Handle.rc = VINF_SUCCESS;
8303 Handle.enmOp = SSMSTATE_LOAD_PREP;
8304 for (pUnit = pVM->ssm.s.pHead; pUnit; pUnit = pUnit->pNext)
8305 {
8306 if (pUnit->u.Common.pfnLoadPrep)
8307 {
8308 Handle.u.Read.pCurUnit = pUnit;
8309 pUnit->fCalled = true;
8310 switch (pUnit->enmType)
8311 {
8312 case SSMUNITTYPE_DEV:
8313 rc = pUnit->u.Dev.pfnLoadPrep(pUnit->u.Dev.pDevIns, &Handle);
8314 break;
8315 case SSMUNITTYPE_DRV:
8316 rc = pUnit->u.Drv.pfnLoadPrep(pUnit->u.Drv.pDrvIns, &Handle);
8317 break;
8318 case SSMUNITTYPE_INTERNAL:
8319 rc = pUnit->u.Internal.pfnLoadPrep(pVM, &Handle);
8320 break;
8321 case SSMUNITTYPE_EXTERNAL:
8322 rc = pUnit->u.External.pfnLoadPrep(&Handle, pUnit->u.External.pvUser);
8323 break;
8324 default:
8325 rc = VERR_SSM_IPE_1;
8326 break;
8327 }
8328 Handle.u.Read.pCurUnit = NULL;
8329 if (RT_FAILURE(rc) && RT_SUCCESS_NP(Handle.rc))
8330 Handle.rc = rc;
8331 else
8332 rc = Handle.rc;
8333 if (RT_FAILURE(rc))
8334 {
8335 LogRel(("SSM: Prepare load failed with rc=%Rrc for data unit '%s.\n", rc, pUnit->szName));
8336 break;
8337 }
8338 }
8339 }
8340
8341 /* end of prepare % */
8342 if (pfnProgress)
8343 pfnProgress(pVM, Handle.uPercentPrepare - 1, pvProgressUser);
8344 Handle.uPercent = Handle.uPercentPrepare;
8345 Handle.cbEstTotal = Handle.u.Read.cbLoadFile;
8346 Handle.offEstUnitEnd = Handle.u.Read.cbLoadFile;
8347
8348 /*
8349 * Do the execute run.
8350 */
8351 if (RT_SUCCESS(rc))
8352 {
8353 if (Handle.u.Read.uFmtVerMajor >= 2)
8354 rc = ssmR3LoadExecV2(pVM, &Handle);
8355 else
8356 rc = ssmR3LoadExecV1(pVM, &Handle);
8357 Handle.u.Read.pCurUnit = NULL;
8358 Handle.u.Read.uCurUnitVer = UINT32_MAX;
8359 Handle.u.Read.uCurUnitPass = 0;
8360
8361 /* (progress should be pending 99% now) */
8362 AssertMsg( Handle.fLiveSave
8363 || RT_FAILURE(rc)
8364 || Handle.uPercent == 101 - Handle.uPercentDone, ("%d\n", Handle.uPercent));
8365 }
8366
8367 /*
8368 * Do the done run.
8369 */
8370 Handle.rc = rc;
8371 Handle.enmOp = SSMSTATE_LOAD_DONE;
8372 for (pUnit = pVM->ssm.s.pHead; pUnit; pUnit = pUnit->pNext)
8373 {
8374 if ( pUnit->u.Common.pfnLoadDone
8375 && ( pUnit->fCalled
8376 || (!pUnit->u.Common.pfnLoadPrep && !pUnit->u.Common.pfnLoadExec)))
8377 {
8378 Handle.u.Read.pCurUnit = pUnit;
8379 int const rcOld = Handle.rc;
8380 rc = VINF_SUCCESS;
8381 switch (pUnit->enmType)
8382 {
8383 case SSMUNITTYPE_DEV:
8384 rc = pUnit->u.Dev.pfnLoadDone(pUnit->u.Dev.pDevIns, &Handle);
8385 break;
8386 case SSMUNITTYPE_DRV:
8387 rc = pUnit->u.Drv.pfnLoadDone(pUnit->u.Drv.pDrvIns, &Handle);
8388 break;
8389 case SSMUNITTYPE_INTERNAL:
8390 rc = pUnit->u.Internal.pfnLoadDone(pVM, &Handle);
8391 break;
8392 case SSMUNITTYPE_EXTERNAL:
8393 rc = pUnit->u.External.pfnLoadDone(&Handle, pUnit->u.External.pvUser);
8394 break;
8395 default:
8396 rc = VERR_SSM_IPE_1;
8397 break;
8398 }
8399 Handle.u.Read.pCurUnit = NULL;
8400 if (RT_SUCCESS(rc) && Handle.rc != rcOld)
8401 rc = Handle.rc;
8402 if (RT_FAILURE(rc))
8403 {
8404 LogRel(("SSM: LoadDone failed with rc=%Rrc for data unit '%s' instance #%u.\n",
8405 rc, pUnit->szName, pUnit->u32Instance));
8406 if (!ASMAtomicXchgBool(&Handle.u.Read.fHaveSetError, true))
8407 VMSetError(pVM, rc, RT_SRC_POS, N_("LoadDone failed with rc=%Rrc for data unit '%s' instance #%u."),
8408 rc, pUnit->szName, pUnit->u32Instance);
8409 if (RT_SUCCESS_NP(Handle.rc))
8410 Handle.rc = rc;
8411 }
8412 }
8413 }
8414
8415 /* progress */
8416 if (pfnProgress)
8417 pfnProgress(pVM, 99, pvProgressUser);
8418
8419 ssmR3SetCancellable(pVM, &Handle, false);
8420 ssmR3StrmClose(&Handle.Strm, Handle.rc == VERR_SSM_CANCELLED);
8421 rc = Handle.rc;
8422 }
8423
8424 /*
8425 * Done
8426 */
8427 if (RT_SUCCESS(rc))
8428 {
8429 /* progress */
8430 if (pfnProgress)
8431 pfnProgress(pVM, 100, pvProgressUser);
8432 Log(("SSM: Load of '%s' completed!\n", pszFilename));
8433 }
8434 return rc;
8435}
8436
8437
8438/**
8439 * VMSetError wrapper for load errors that inserts the saved state details.
8440 *
8441 * @returns rc.
8442 * @param pSSM The saved state handle.
8443 * @param rc The status code of the error. Use RT_SRC_POS.
8444 * @param RT_SRC_POS_DECL The source location.
8445 * @param pszFormat The message format string.
8446 * @param ... Variable argument list.
8447 */
8448VMMR3DECL(int) SSMR3SetLoadError(PSSMHANDLE pSSM, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...)
8449{
8450 va_list va;
8451 va_start(va, pszFormat);
8452 rc = SSMR3SetLoadErrorV(pSSM, rc, RT_SRC_POS_ARGS, pszFormat, va);
8453 va_end(va);
8454 return rc;
8455}
8456
8457
8458/**
8459 * VMSetError wrapper for load errors that inserts the saved state details.
8460 *
8461 * @returns rc.
8462 * @param pSSM The saved state handle.
8463 * @param rc The status code of the error.
8464 * @param RT_SRC_POS_DECL The error location, use RT_SRC_POS.
8465 * @param pszFormat The message format string.
8466 * @param va Variable argument list.
8467 */
8468VMMR3DECL(int) SSMR3SetLoadErrorV(PSSMHANDLE pSSM, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va)
8469{
8470 /*
8471 * Input validations.
8472 */
8473 SSM_ASSERT_READABLE_RET(pSSM);
8474 AssertPtr(pszFormat);
8475 Assert(RT_FAILURE_NP(rc));
8476
8477 /*
8478 * Format the incoming error.
8479 */
8480 char *pszMsg;
8481 RTStrAPrintfV(&pszMsg, pszFormat, va);
8482 if (!pszMsg)
8483 {
8484 VMSetError(pSSM->pVM, VERR_NO_MEMORY, RT_SRC_POS,
8485 N_("SSMR3SetLoadErrorV ran out of memory formatting: %s\n"), pszFormat);
8486 return rc;
8487 }
8488
8489 /*
8490 * Forward to VMSetError with the additional info.
8491 */
8492 PSSMUNIT pUnit = pSSM->u.Read.pCurUnit;
8493 const char *pszName = pUnit ? pUnit->szName : "unknown";
8494 uint32_t uInstance = pUnit ? pUnit->u32Instance : 0;
8495 if ( pSSM->enmOp == SSMSTATE_LOAD_EXEC
8496 && pSSM->u.Read.uCurUnitPass == SSM_PASS_FINAL)
8497 rc = VMSetError(pSSM->pVM, rc, RT_SRC_POS_ARGS, N_("%s#%u: %s [ver=%u pass=final]"),
8498 pszName, uInstance, pszMsg, pSSM->u.Read.uCurUnitVer);
8499 else if (pSSM->enmOp == SSMSTATE_LOAD_EXEC)
8500 rc = VMSetError(pSSM->pVM, rc, RT_SRC_POS_ARGS, N_("%s#%u: %s [ver=%u pass=#%u]"),
8501 pszName, uInstance, pszMsg, pSSM->u.Read.uCurUnitVer, pSSM->u.Read.uCurUnitPass);
8502 else if (pSSM->enmOp == SSMSTATE_LOAD_PREP)
8503 rc = VMSetError(pSSM->pVM, rc, RT_SRC_POS_ARGS, N_("%s#%u: %s [prep]"),
8504 pszName, uInstance, pszMsg);
8505 else if (pSSM->enmOp == SSMSTATE_LOAD_DONE)
8506 rc = VMSetError(pSSM->pVM, rc, RT_SRC_POS_ARGS, N_("%s#%u: %s [done]"),
8507 pszName, uInstance, pszMsg);
8508 else if (pSSM->enmOp == SSMSTATE_OPEN_READ)
8509 rc = VMSetError(pSSM->pVM, rc, RT_SRC_POS_ARGS, N_("%s#%u: %s [read]"),
8510 pszName, uInstance, pszMsg);
8511 else
8512 AssertFailed();
8513 pSSM->u.Read.fHaveSetError = true;
8514 RTStrFree(pszMsg);
8515 return rc;
8516}
8517
8518
8519/**
8520 * SSMR3SetLoadError wrapper that returns VERR_SSM_LOAD_CONFIG_MISMATCH.
8521 *
8522 * @returns VERR_SSM_LOAD_CONFIG_MISMATCH.
8523 * @param pSSM The saved state handle.
8524 * @param RT_SRC_POS_DECL The error location, use RT_SRC_POS.
8525 * @param pszFormat The message format string.
8526 * @param va Variable argument list.
8527 */
8528VMMR3DECL(int) SSMR3SetCfgError(PSSMHANDLE pSSM, RT_SRC_POS_DECL, const char *pszFormat, ...)
8529{
8530 va_list va;
8531 va_start(va, pszFormat);
8532 int rc = SSMR3SetLoadErrorV(pSSM, VERR_SSM_LOAD_CONFIG_MISMATCH, RT_SRC_POS_ARGS, pszFormat, va);
8533 va_end(va);
8534 return rc;
8535}
8536
8537#endif /* !SSM_STANDALONE */
8538
8539/**
8540 * Validates a file as a validate SSM saved state.
8541 *
8542 * This will only verify the file format, the format and content of individual
8543 * data units are not inspected.
8544 *
8545 * @returns VINF_SUCCESS if valid.
8546 * @returns VBox status code on other failures.
8547 *
8548 * @param pszFilename The path to the file to validate.
8549 * @param fChecksumIt Whether to checksum the file or not.
8550 *
8551 * @thread Any.
8552 */
8553VMMR3DECL(int) SSMR3ValidateFile(const char *pszFilename, bool fChecksumIt)
8554{
8555 LogFlow(("SSMR3ValidateFile: pszFilename=%p:{%s} fChecksumIt=%RTbool\n", pszFilename, pszFilename, fChecksumIt));
8556
8557 /*
8558 * Try open the file and validate it.
8559 */
8560 SSMHANDLE Handle;
8561 int rc = ssmR3OpenFile(NULL, pszFilename, NULL /*pStreamOps*/, NULL /*pvUser*/, fChecksumIt,
8562 false /*fChecksumOnRead*/, 1 /*cBuffers*/, &Handle);
8563 if (RT_SUCCESS(rc))
8564 ssmR3StrmClose(&Handle.Strm, false /*fCancelled*/);
8565 else
8566 Log(("SSM: Failed to open saved state file '%s', rc=%Rrc.\n", pszFilename, rc));
8567 return rc;
8568}
8569
8570
8571/**
8572 * Opens a saved state file for reading.
8573 *
8574 * @returns VBox status code.
8575 *
8576 * @param pszFilename The path to the saved state file.
8577 * @param fFlags Open flags. Reserved, must be 0.
8578 * @param ppSSM Where to store the SSM handle.
8579 *
8580 * @thread Any.
8581 */
8582VMMR3DECL(int) SSMR3Open(const char *pszFilename, unsigned fFlags, PSSMHANDLE *ppSSM)
8583{
8584 LogFlow(("SSMR3Open: pszFilename=%p:{%s} fFlags=%#x ppSSM=%p\n", pszFilename, pszFilename, fFlags, ppSSM));
8585
8586 /*
8587 * Validate input.
8588 */
8589 AssertMsgReturn(VALID_PTR(pszFilename), ("%p\n", pszFilename), VERR_INVALID_PARAMETER);
8590 AssertMsgReturn(!fFlags, ("%#x\n", fFlags), VERR_INVALID_PARAMETER);
8591 AssertMsgReturn(VALID_PTR(ppSSM), ("%p\n", ppSSM), VERR_INVALID_PARAMETER);
8592
8593 /*
8594 * Allocate a handle.
8595 */
8596 PSSMHANDLE pSSM = (PSSMHANDLE)RTMemAllocZ(sizeof(*pSSM));
8597 AssertReturn(pSSM, VERR_NO_MEMORY);
8598
8599 /*
8600 * Try open the file and validate it.
8601 */
8602 int rc = ssmR3OpenFile(NULL, pszFilename, NULL /*pStreamOps*/, NULL /*pvUser*/, false /*fChecksumIt*/,
8603 true /*fChecksumOnRead*/, 1 /*cBuffers*/, pSSM);
8604 if (RT_SUCCESS(rc))
8605 {
8606 pSSM->enmAfter = SSMAFTER_OPENED;
8607 pSSM->enmOp = SSMSTATE_OPEN_READ;
8608 *ppSSM = pSSM;
8609 LogFlow(("SSMR3Open: returns VINF_SUCCESS *ppSSM=%p\n", *ppSSM));
8610 return VINF_SUCCESS;
8611 }
8612
8613 Log(("SSMR3Open: Failed to open saved state file '%s', rc=%Rrc.\n", pszFilename, rc));
8614 RTMemFree(pSSM);
8615 return rc;
8616
8617}
8618
8619
8620/**
8621 * Closes a saved state file opened by SSMR3Open().
8622 *
8623 * @returns VBox status code.
8624 *
8625 * @param pSSM The SSM handle returned by SSMR3Open().
8626 *
8627 * @thread Any, but the caller is responsible for serializing calls per handle.
8628 */
8629VMMR3DECL(int) SSMR3Close(PSSMHANDLE pSSM)
8630{
8631 LogFlow(("SSMR3Close: pSSM=%p\n", pSSM));
8632
8633 /*
8634 * Validate input.
8635 */
8636 AssertMsgReturn(VALID_PTR(pSSM), ("%p\n", pSSM), VERR_INVALID_PARAMETER);
8637 AssertMsgReturn(pSSM->enmAfter == SSMAFTER_OPENED, ("%d\n", pSSM->enmAfter),VERR_INVALID_PARAMETER);
8638 AssertMsgReturn(pSSM->enmOp == SSMSTATE_OPEN_READ, ("%d\n", pSSM->enmOp), VERR_INVALID_PARAMETER);
8639 Assert(pSSM->fCancelled == SSMHANDLE_OK);
8640
8641 /*
8642 * Close the stream and free the handle.
8643 */
8644 int rc = ssmR3StrmClose(&pSSM->Strm, pSSM->rc == VERR_SSM_CANCELLED);
8645 if (pSSM->u.Read.pZipDecompV1)
8646 {
8647 RTZipDecompDestroy(pSSM->u.Read.pZipDecompV1);
8648 pSSM->u.Read.pZipDecompV1 = NULL;
8649 }
8650 RTMemFree(pSSM);
8651 return rc;
8652}
8653
8654
8655/**
8656 * Worker for SSMR3Seek that seeks version 1 saved state files.
8657 *
8658 * @returns VBox status code.
8659 * @param pSSM The SSM handle.
8660 * @param pszUnit The unit to seek to.
8661 * @param iInstance The particular instance we seek.
8662 * @param piVersion Where to store the unit version number.
8663 */
8664static int ssmR3FileSeekV1(PSSMHANDLE pSSM, const char *pszUnit, uint32_t iInstance, uint32_t *piVersion)
8665{
8666 /*
8667 * Walk the data units until we find EOF or a match.
8668 */
8669 size_t cbUnitNm = strlen(pszUnit) + 1;
8670 AssertLogRelReturn(cbUnitNm <= SSM_MAX_NAME_SIZE, VERR_SSM_UNIT_NOT_FOUND);
8671 char szName[SSM_MAX_NAME_SIZE];
8672 SSMFILEUNITHDRV1 UnitHdr;
8673 for (RTFOFF off = pSSM->u.Read.cbFileHdr; ; off += UnitHdr.cbUnit)
8674 {
8675 /*
8676 * Read the unit header and verify it.
8677 */
8678 int rc = ssmR3StrmPeekAt(&pSSM->Strm, off, &UnitHdr, RT_OFFSETOF(SSMFILEUNITHDRV1, szName), NULL);
8679 AssertRCReturn(rc, rc);
8680 if (!memcmp(&UnitHdr.achMagic[0], SSMFILEUNITHDR_MAGIC, sizeof(SSMFILEUNITHDR_MAGIC)))
8681 {
8682 /*
8683 * Does what we've got match, if so read the name.
8684 */
8685 if ( UnitHdr.u32Instance == iInstance
8686 && UnitHdr.cchName == cbUnitNm)
8687 {
8688 rc = ssmR3StrmPeekAt(&pSSM->Strm, off + RT_OFFSETOF(SSMFILEUNITHDRV1, szName), szName, cbUnitNm, NULL);
8689 AssertRCReturn(rc, rc);
8690 AssertLogRelMsgReturn(!szName[UnitHdr.cchName - 1],
8691 (" Unit name '%.*s' was not properly terminated.\n", cbUnitNm, szName),
8692 VERR_SSM_INTEGRITY_UNIT);
8693
8694 /*
8695 * Does the name match?
8696 */
8697 if (!memcmp(szName, pszUnit, cbUnitNm))
8698 {
8699 rc = ssmR3StrmSeek(&pSSM->Strm, off + RT_OFFSETOF(SSMFILEUNITHDRV1, szName) + cbUnitNm, RTFILE_SEEK_BEGIN, 0);
8700 pSSM->cbUnitLeftV1 = UnitHdr.cbUnit - RT_OFFSETOF(SSMFILEUNITHDRV1, szName[cbUnitNm]);
8701 pSSM->offUnit = 0;
8702 if (piVersion)
8703 *piVersion = UnitHdr.u32Version;
8704 return VINF_SUCCESS;
8705 }
8706 }
8707 }
8708 else if (!memcmp(&UnitHdr.achMagic[0], SSMFILEUNITHDR_END, sizeof(SSMFILEUNITHDR_END)))
8709 return VERR_SSM_UNIT_NOT_FOUND;
8710 else
8711 AssertLogRelMsgFailedReturn(("Invalid unit magic at offset %RTfoff, '%.*s'!\n",
8712 off, sizeof(UnitHdr.achMagic) - 1, &UnitHdr.achMagic[0]),
8713 VERR_SSM_INTEGRITY_UNIT_MAGIC);
8714 }
8715 /* won't get here. */
8716}
8717
8718
8719/**
8720 * Worker for ssmR3FileSeekV2 for simplifying memory cleanup.
8721 *
8722 * @returns VBox status code.
8723 * @param pSSM The SSM handle.
8724 * @param pDir The directory buffer.
8725 * @param cbDir The size of the directory.
8726 * @param cDirEntries The number of directory entries.
8727 * @param offDir The directory offset in the file.
8728 * @param pszUnit The unit to seek to.
8729 * @param iInstance The particular instance we seek.
8730 * @param piVersion Where to store the unit version number.
8731 */
8732static int ssmR3FileSeekSubV2(PSSMHANDLE pSSM, PSSMFILEDIR pDir, size_t cbDir, uint32_t cDirEntries, uint64_t offDir,
8733 const char *pszUnit, uint32_t iInstance, uint32_t *piVersion)
8734{
8735 /*
8736 * Read it.
8737 */
8738 int rc = ssmR3StrmPeekAt(&pSSM->Strm, offDir, pDir, cbDir, NULL);
8739 AssertLogRelRCReturn(rc, rc);
8740 rc = ssmR3ValidateDirectory(pDir, (uint32_t)cbDir, offDir, cDirEntries, pSSM->u.Read.cbFileHdr, pSSM->u.Read.u32SvnRev);
8741 if (RT_FAILURE(rc))
8742 return rc;
8743
8744 /*
8745 * Search the directory.
8746 */
8747 size_t cbUnitNm = strlen(pszUnit) + 1;
8748 uint32_t const u32NameCRC = RTCrc32(pszUnit, cbUnitNm - 1);
8749 for (uint32_t i = 0; i < cDirEntries; i++)
8750 {
8751 if ( pDir->aEntries[i].u32NameCRC == u32NameCRC
8752 && pDir->aEntries[i].u32Instance == iInstance
8753 && pDir->aEntries[i].off != 0 /* bug in unreleased code */
8754 )
8755 {
8756 /*
8757 * Read and validate the unit header.
8758 */
8759 SSMFILEUNITHDRV2 UnitHdr;
8760 size_t cbToRead = sizeof(UnitHdr);
8761 if (pDir->aEntries[i].off + cbToRead > offDir)
8762 {
8763 cbToRead = offDir - pDir->aEntries[i].off;
8764 RT_ZERO(UnitHdr);
8765 }
8766 rc = ssmR3StrmPeekAt(&pSSM->Strm, pDir->aEntries[i].off, &UnitHdr, cbToRead, NULL);
8767 AssertLogRelRCReturn(rc, rc);
8768
8769 AssertLogRelMsgReturn(!memcmp(UnitHdr.szMagic, SSMFILEUNITHDR_MAGIC, sizeof(UnitHdr.szMagic)),
8770 ("Bad unit header or dictionary offset: i=%u off=%lld\n", i, pDir->aEntries[i].off),
8771 VERR_SSM_INTEGRITY_UNIT);
8772 AssertLogRelMsgReturn(UnitHdr.offStream == pDir->aEntries[i].off,
8773 ("Bad unit header: i=%d off=%lld offStream=%lld\n", i, pDir->aEntries[i].off, UnitHdr.offStream),
8774 VERR_SSM_INTEGRITY_UNIT);
8775 AssertLogRelMsgReturn(UnitHdr.u32Instance == pDir->aEntries[i].u32Instance,
8776 ("Bad unit header: i=%d off=%lld u32Instance=%u Dir.u32Instance=%u\n",
8777 i, pDir->aEntries[i].off, UnitHdr.u32Instance, pDir->aEntries[i].u32Instance),
8778 VERR_SSM_INTEGRITY_UNIT);
8779 uint32_t cbUnitHdr = RT_UOFFSETOF(SSMFILEUNITHDRV2, szName[UnitHdr.cbName]);
8780 AssertLogRelMsgReturn( UnitHdr.cbName > 0
8781 && UnitHdr.cbName < sizeof(UnitHdr)
8782 && cbUnitHdr <= cbToRead,
8783 ("Bad unit header: i=%u off=%lld cbName=%#x cbToRead=%#x\n", i, pDir->aEntries[i].off, UnitHdr.cbName, cbToRead),
8784 VERR_SSM_INTEGRITY_UNIT);
8785 SSM_CHECK_CRC32_RET(&UnitHdr, RT_OFFSETOF(SSMFILEUNITHDRV2, szName[UnitHdr.cbName]),
8786 ("Bad unit header CRC: i=%u off=%lld u32CRC=%#x u32ActualCRC=%#x\n",
8787 i, pDir->aEntries[i].off, u32CRC, u32ActualCRC));
8788
8789 /*
8790 * Ok, it is valid, get on with the comparing now.
8791 */
8792 if ( UnitHdr.cbName == cbUnitNm
8793 && !memcmp(UnitHdr.szName, pszUnit, cbUnitNm))
8794 {
8795 if (piVersion)
8796 *piVersion = UnitHdr.u32Version;
8797 rc = ssmR3StrmSeek(&pSSM->Strm, pDir->aEntries[i].off + cbUnitHdr, RTFILE_SEEK_BEGIN,
8798 RTCrc32Process(UnitHdr.u32CurStreamCRC, &UnitHdr, cbUnitHdr));
8799 AssertLogRelRCReturn(rc, rc);
8800 ssmR3DataReadBeginV2(pSSM);
8801 return VINF_SUCCESS;
8802 }
8803 }
8804 }
8805
8806 return VERR_SSM_UNIT_NOT_FOUND;
8807}
8808
8809
8810/**
8811 * Worker for SSMR3Seek that seeks version 2 saved state files.
8812 *
8813 * @returns VBox status code.
8814 * @param pSSM The SSM handle.
8815 * @param pszUnit The unit to seek to.
8816 * @param iInstance The particular instance we seek.
8817 * @param piVersion Where to store the unit version number.
8818 */
8819static int ssmR3FileSeekV2(PSSMHANDLE pSSM, const char *pszUnit, uint32_t iInstance, uint32_t *piVersion)
8820{
8821 /*
8822 * Read the footer, allocate a temporary buffer for the dictionary and
8823 * pass it down to a worker to simplify cleanup.
8824 */
8825 uint64_t offFooter;
8826 SSMFILEFTR Footer;
8827 int rc = ssmR3StrmPeekAt(&pSSM->Strm, -(RTFOFF)sizeof(Footer), &Footer, sizeof(Footer), &offFooter);
8828 AssertLogRelRCReturn(rc, rc);
8829 AssertLogRelReturn(!memcmp(Footer.szMagic, SSMFILEFTR_MAGIC, sizeof(Footer.szMagic)), VERR_SSM_INTEGRITY);
8830 SSM_CHECK_CRC32_RET(&Footer, sizeof(Footer), ("Bad footer CRC: %08x, actual %08x\n", u32CRC, u32ActualCRC));
8831
8832 size_t const cbDir = RT_OFFSETOF(SSMFILEDIR, aEntries[Footer.cDirEntries]);
8833 PSSMFILEDIR pDir = (PSSMFILEDIR)RTMemTmpAlloc(cbDir);
8834 if (RT_UNLIKELY(!pDir))
8835 return VERR_NO_TMP_MEMORY;
8836 rc = ssmR3FileSeekSubV2(pSSM, pDir, cbDir, Footer.cDirEntries, offFooter - cbDir,
8837 pszUnit, iInstance, piVersion);
8838 RTMemTmpFree(pDir);
8839
8840 return rc;
8841}
8842
8843
8844/**
8845 * Seeks to a specific data unit.
8846 *
8847 * After seeking it's possible to use the getters to on
8848 * that data unit.
8849 *
8850 * @returns VBox status code.
8851 * @returns VERR_SSM_UNIT_NOT_FOUND if the unit+instance wasn't found.
8852 *
8853 * @param pSSM The SSM handle returned by SSMR3Open().
8854 * @param pszUnit The name of the data unit.
8855 * @param iInstance The instance number.
8856 * @param piVersion Where to store the version number. (Optional)
8857 *
8858 * @thread Any, but the caller is responsible for serializing calls per handle.
8859 */
8860VMMR3DECL(int) SSMR3Seek(PSSMHANDLE pSSM, const char *pszUnit, uint32_t iInstance, uint32_t *piVersion)
8861{
8862 LogFlow(("SSMR3Seek: pSSM=%p pszUnit=%p:{%s} iInstance=%RU32 piVersion=%p\n",
8863 pSSM, pszUnit, pszUnit, iInstance, piVersion));
8864
8865 /*
8866 * Validate input.
8867 */
8868 AssertPtrReturn(pSSM, VERR_INVALID_PARAMETER);
8869 AssertMsgReturn(pSSM->enmAfter == SSMAFTER_OPENED, ("%d\n", pSSM->enmAfter),VERR_INVALID_PARAMETER);
8870 AssertMsgReturn(pSSM->enmOp == SSMSTATE_OPEN_READ, ("%d\n", pSSM->enmOp), VERR_INVALID_PARAMETER);
8871 AssertPtrReturn(pszUnit, VERR_INVALID_POINTER);
8872 AssertMsgReturn(!piVersion || VALID_PTR(piVersion), ("%p\n", piVersion), VERR_INVALID_POINTER);
8873
8874 /*
8875 * Reset the state.
8876 */
8877 if (pSSM->u.Read.pZipDecompV1)
8878 {
8879 RTZipDecompDestroy(pSSM->u.Read.pZipDecompV1);
8880 pSSM->u.Read.pZipDecompV1 = NULL;
8881 }
8882 pSSM->cbUnitLeftV1 = 0;
8883 pSSM->offUnit = UINT64_MAX;
8884
8885 /*
8886 * Call the version specific workers.
8887 */
8888 if (pSSM->u.Read.uFmtVerMajor >= 2)
8889 pSSM->rc = ssmR3FileSeekV2(pSSM, pszUnit, iInstance, piVersion);
8890 else
8891 pSSM->rc = ssmR3FileSeekV1(pSSM, pszUnit, iInstance, piVersion);
8892 return pSSM->rc;
8893}
8894
8895
8896
8897/* ... Misc APIs ... */
8898/* ... Misc APIs ... */
8899/* ... Misc APIs ... */
8900/* ... Misc APIs ... */
8901/* ... Misc APIs ... */
8902/* ... Misc APIs ... */
8903/* ... Misc APIs ... */
8904/* ... Misc APIs ... */
8905/* ... Misc APIs ... */
8906/* ... Misc APIs ... */
8907/* ... Misc APIs ... */
8908
8909
8910
8911/**
8912 * Query what the VBox status code of the operation is.
8913 *
8914 * This can be used for putting and getting a batch of values
8915 * without bother checking the result till all the calls have
8916 * been made.
8917 *
8918 * @returns SSMAFTER enum value.
8919 * @param pSSM The saved state handle.
8920 */
8921VMMR3DECL(int) SSMR3HandleGetStatus(PSSMHANDLE pSSM)
8922{
8923 SSM_ASSERT_VALID_HANDLE(pSSM);
8924 return pSSM->rc;
8925}
8926
8927
8928/**
8929 * Fail the load operation.
8930 *
8931 * This is mainly intended for sub item loaders (like timers) which
8932 * return code isn't necessarily heeded by the caller but is important
8933 * to SSM.
8934 *
8935 * @returns VBox status code of the handle, or VERR_INVALID_PARAMETER.
8936 * @param pSSM The saved state handle.
8937 * @param iStatus Failure status code. This MUST be a VERR_*.
8938 */
8939VMMR3DECL(int) SSMR3HandleSetStatus(PSSMHANDLE pSSM, int iStatus)
8940{
8941 SSM_ASSERT_VALID_HANDLE(pSSM);
8942 Assert(pSSM->enmOp != SSMSTATE_LIVE_VOTE);
8943 if (RT_FAILURE(iStatus))
8944 {
8945 int rc = pSSM->rc;
8946 if (RT_SUCCESS(rc))
8947 pSSM->rc = rc = iStatus;
8948 return rc;
8949 }
8950 AssertMsgFailed(("iStatus=%d %Rrc\n", iStatus, iStatus));
8951 return VERR_INVALID_PARAMETER;
8952}
8953
8954
8955/**
8956 * Get what to do after this operation.
8957 *
8958 * @returns SSMAFTER enum value.
8959 * @param pSSM The saved state handle.
8960 */
8961VMMR3DECL(SSMAFTER) SSMR3HandleGetAfter(PSSMHANDLE pSSM)
8962{
8963 SSM_ASSERT_VALID_HANDLE(pSSM);
8964 return pSSM->enmAfter;
8965}
8966
8967
8968/**
8969 * Checks if it is a live save operation or not.
8970 *
8971 * @returns True if it is, false if it isn't.
8972 * @param pSSM The saved state handle.
8973 */
8974VMMR3DECL(bool) SSMR3HandleIsLiveSave(PSSMHANDLE pSSM)
8975{
8976 SSM_ASSERT_VALID_HANDLE(pSSM);
8977 return pSSM->fLiveSave;
8978}
8979
8980
8981/**
8982 * Gets the maximum downtime for a live operation.
8983 *
8984 * @returns The max downtime in milliseconds. Can be anything from 0 thru
8985 * UINT32_MAX.
8986 *
8987 * @param pSSM The saved state handle.
8988 */
8989VMMR3DECL(uint32_t) SSMR3HandleMaxDowntime(PSSMHANDLE pSSM)
8990{
8991 SSM_ASSERT_VALID_HANDLE(pSSM);
8992 if (pSSM->enmOp <= SSMSTATE_SAVE_DONE)
8993 return pSSM->u.Write.cMsMaxDowntime;
8994 return UINT32_MAX;
8995}
8996
8997
8998/**
8999 * Gets the host bit count of a saved state.
9000 *
9001 * @returns 32 or 64. If pSSM is invalid, 0 is returned.
9002 * @param pSSM The saved state handle.
9003 *
9004 * @remarks This method should ONLY be used for hacks when loading OLDER saved
9005 * state that have data layout or semantic changes without the
9006 * compulsory version number change.
9007 */
9008VMMR3DECL(uint32_t) SSMR3HandleHostBits(PSSMHANDLE pSSM)
9009{
9010 SSM_ASSERT_VALID_HANDLE(pSSM);
9011 return ssmR3GetHostBits(pSSM);
9012}
9013
9014
9015/**
9016 * Get the VirtualBox SVN revision that created the saved state.
9017 *
9018 * @returns The revision number on success.
9019 * form. If we don't know, it's 0.
9020 * @param pSSM The saved state handle.
9021 *
9022 * @remarks This method should ONLY be used for hacks when loading OLDER saved
9023 * state that have data layout or semantic changes without the
9024 * compulsory version number change. Be VERY careful with this
9025 * function since it will return different values for OSE builds!
9026 */
9027VMMR3DECL(uint32_t) SSMR3HandleRevision(PSSMHANDLE pSSM)
9028{
9029 if (pSSM->enmOp >= SSMSTATE_LOAD_PREP)
9030 return pSSM->u.Read.u32SvnRev;
9031#ifdef SSM_STANDALONE
9032 return 0;
9033#else
9034 return VMMGetSvnRev();
9035#endif
9036}
9037
9038
9039/**
9040 * Gets the VirtualBox version that created the saved state.
9041 *
9042 * @returns VBOX_FULL_VERSION style version number.
9043 * Returns UINT32_MAX if unknown or somehow out of range.
9044 *
9045 * @param pSSM The saved state handle.
9046 *
9047 * @remarks This method should ONLY be used for hacks when loading OLDER saved
9048 * state that have data layout or semantic changes without the
9049 * compulsory version number change.
9050 */
9051VMMR3DECL(uint32_t) SSMR3HandleVersion(PSSMHANDLE pSSM)
9052{
9053 if (pSSM->enmOp >= SSMSTATE_LOAD_PREP)
9054 {
9055 if ( !pSSM->u.Read.u16VerMajor
9056 && !pSSM->u.Read.u16VerMinor
9057 && !pSSM->u.Read.u32VerBuild)
9058 return UINT32_MAX;
9059 AssertReturn(pSSM->u.Read.u16VerMajor <= 0xff, UINT32_MAX);
9060 AssertReturn(pSSM->u.Read.u16VerMinor <= 0xff, UINT32_MAX);
9061 AssertReturn(pSSM->u.Read.u32VerBuild <= 0xffff, UINT32_MAX);
9062 return VBOX_FULL_VERSION_MAKE(pSSM->u.Read.u16VerMajor, pSSM->u.Read.u16VerMinor, pSSM->u.Read.u32VerBuild);
9063 }
9064 return VBOX_FULL_VERSION;
9065}
9066
9067
9068/**
9069 * Get the host OS and architecture where the saved state was created.
9070 *
9071 * @returns Pointer to a read only string. When known, this is on the os.arch
9072 * form. If we don't know, it's an empty string.
9073 * @param pSSM The saved state handle.
9074 *
9075 * @remarks This method should ONLY be used for hacks when loading OLDER saved
9076 * state that have data layout or semantic changes without the
9077 * compulsory version number change.
9078 */
9079VMMR3DECL(const char *) SSMR3HandleHostOSAndArch(PSSMHANDLE pSSM)
9080{
9081 if (pSSM->enmOp >= SSMSTATE_LOAD_PREP)
9082 return pSSM->u.Read.szHostOSAndArch;
9083 return KBUILD_TARGET "." KBUILD_TARGET_ARCH;
9084}
9085
9086
9087#ifndef SSM_STANDALONE
9088/**
9089 * Asynchronously cancels the current SSM operation ASAP.
9090 *
9091 * @returns VBox status code.
9092 * @retval VINF_SUCCESS on success.
9093 * @retval VERR_SSM_NO_PENDING_OPERATION if nothing around that can be
9094 * cancelled.
9095 * @retval VERR_SSM_ALREADY_CANCELLED if the operation as already been
9096 * cancelled.
9097 *
9098 * @param pVM The VM handle.
9099 *
9100 * @thread Any.
9101 */
9102VMMR3DECL(int) SSMR3Cancel(PVM pVM)
9103{
9104 VM_ASSERT_VALID_EXT_RETURN(pVM, VERR_INVALID_VM_HANDLE);
9105
9106 int rc = RTCritSectEnter(&pVM->ssm.s.CancelCritSect);
9107 AssertRCReturn(rc, rc);
9108
9109 PSSMHANDLE pSSM = pVM->ssm.s.pSSM;
9110 if (pSSM)
9111 {
9112 uint32_t u32Old;
9113 if (ASMAtomicCmpXchgExU32(&pSSM->fCancelled, SSMHANDLE_CANCELLED, SSMHANDLE_OK, &u32Old))
9114 {
9115 LogRel(("SSM: Cancelled pending operation\n"));
9116 rc = VINF_SUCCESS;
9117 }
9118 else if (u32Old == SSMHANDLE_CANCELLED)
9119 rc = VERR_SSM_ALREADY_CANCELLED;
9120 else
9121 {
9122 AssertLogRelMsgFailed(("fCancelled=%RX32 enmOp=%d\n", u32Old, pSSM->enmOp));
9123 rc = VERR_SSM_IPE_3;
9124 }
9125 }
9126 else
9127 rc = VERR_SSM_NO_PENDING_OPERATION;
9128
9129 RTCritSectLeave(&pVM->ssm.s.CancelCritSect);
9130 return rc;
9131}
9132#endif /* !SSM_STANDALONE */
9133
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette