123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553 |
- /*
- * QEMU System Emulator
- *
- * Copyright (c) 2003-2008 Fabrice Bellard
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
- #include <unistd.h>
- #include <fcntl.h>
- #include <time.h>
- #include <errno.h>
- #include <sys/time.h>
- #include <zlib.h>
- /* Needed early for CONFIG_BSD etc. */
- #include "config-host.h"
- #ifndef _WIN32
- #include <sys/times.h>
- #include <sys/wait.h>
- #include <termios.h>
- #include <sys/mman.h>
- #include <sys/ioctl.h>
- #include <sys/resource.h>
- #include <sys/socket.h>
- #include <netinet/in.h>
- #include <net/if.h>
- #include <arpa/inet.h>
- #include <dirent.h>
- #include <netdb.h>
- #include <sys/select.h>
- #ifdef CONFIG_BSD
- #include <sys/stat.h>
- #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
- #include <libutil.h>
- #else
- #include <util.h>
- #endif
- #ifdef __linux__
- #include <pty.h>
- #include <malloc.h>
- #include <linux/rtc.h>
- #endif
- #endif
- #endif
- #ifdef _WIN32
- #include <windows.h>
- #include <malloc.h>
- #include <sys/timeb.h>
- #include <mmsystem.h>
- #define getopt_long_only getopt_long
- #define memalign(align, size) malloc(size)
- #endif
- #include "qemu-common.h"
- #include "hw/hw.h"
- #include "hw/qdev.h"
- #include "net.h"
- #include "monitor.h"
- #include "sysemu.h"
- #include "qemu-timer.h"
- #include "qemu-char.h"
- #include "audio/audio.h"
- #include "migration.h"
- #include "qemu_socket.h"
- #include "qemu-queue.h"
- #include "qemu-timer.h"
- #include "cpus.h"
- #include "memory.h"
- #include "qmp-commands.h"
- #include "trace.h"
- #define SELF_ANNOUNCE_ROUNDS 5
- #ifndef ETH_P_RARP
- #define ETH_P_RARP 0x8035
- #endif
- #define ARP_HTYPE_ETH 0x0001
- #define ARP_PTYPE_IP 0x0800
- #define ARP_OP_REQUEST_REV 0x3
- static int announce_self_create(uint8_t *buf,
- uint8_t *mac_addr)
- {
- /* Ethernet header. */
- memset(buf, 0xff, 6); /* destination MAC addr */
- memcpy(buf + 6, mac_addr, 6); /* source MAC addr */
- *(uint16_t *)(buf + 12) = htons(ETH_P_RARP); /* ethertype */
- /* RARP header. */
- *(uint16_t *)(buf + 14) = htons(ARP_HTYPE_ETH); /* hardware addr space */
- *(uint16_t *)(buf + 16) = htons(ARP_PTYPE_IP); /* protocol addr space */
- *(buf + 18) = 6; /* hardware addr length (ethernet) */
- *(buf + 19) = 4; /* protocol addr length (IPv4) */
- *(uint16_t *)(buf + 20) = htons(ARP_OP_REQUEST_REV); /* opcode */
- memcpy(buf + 22, mac_addr, 6); /* source hw addr */
- memset(buf + 28, 0x00, 4); /* source protocol addr */
- memcpy(buf + 32, mac_addr, 6); /* target hw addr */
- memset(buf + 38, 0x00, 4); /* target protocol addr */
- /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
- memset(buf + 42, 0x00, 18);
- return 60; /* len (FCS will be added by hardware) */
- }
- static void qemu_announce_self_iter(NICState *nic, void *opaque)
- {
- uint8_t buf[60];
- int len;
- len = announce_self_create(buf, nic->conf->macaddr.a);
- qemu_send_packet_raw(&nic->nc, buf, len);
- }
- static void qemu_announce_self_once(void *opaque)
- {
- static int count = SELF_ANNOUNCE_ROUNDS;
- QEMUTimer *timer = *(QEMUTimer **)opaque;
- qemu_foreach_nic(qemu_announce_self_iter, NULL);
- if (--count) {
- /* delay 50ms, 150ms, 250ms, ... */
- qemu_mod_timer(timer, qemu_get_clock_ms(rt_clock) +
- 50 + (SELF_ANNOUNCE_ROUNDS - count - 1) * 100);
- } else {
- qemu_del_timer(timer);
- qemu_free_timer(timer);
- }
- }
- void qemu_announce_self(void)
- {
- static QEMUTimer *timer;
- timer = qemu_new_timer_ms(rt_clock, qemu_announce_self_once, &timer);
- qemu_announce_self_once(&timer);
- }
- /***********************************************************/
- /* savevm/loadvm support */
- #define IO_BUF_SIZE 32768
- struct QEMUFile {
- QEMUFilePutBufferFunc *put_buffer;
- QEMUFileGetBufferFunc *get_buffer;
- QEMUFileCloseFunc *close;
- QEMUFileRateLimit *rate_limit;
- QEMUFileSetRateLimit *set_rate_limit;
- QEMUFileGetRateLimit *get_rate_limit;
- void *opaque;
- int is_write;
- int64_t buf_offset; /* start of buffer when writing, end of buffer
- when reading */
- int buf_index;
- int buf_size; /* 0 when writing */
- uint8_t buf[IO_BUF_SIZE];
- int last_error;
- };
- typedef struct QEMUFileStdio
- {
- FILE *stdio_file;
- QEMUFile *file;
- } QEMUFileStdio;
- typedef struct QEMUFileSocket
- {
- int fd;
- QEMUFile *file;
- } QEMUFileSocket;
- static int socket_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
- {
- QEMUFileSocket *s = opaque;
- ssize_t len;
- do {
- len = qemu_recv(s->fd, buf, size, 0);
- } while (len == -1 && socket_error() == EINTR);
- if (len == -1)
- len = -socket_error();
- return len;
- }
- static int socket_close(void *opaque)
- {
- QEMUFileSocket *s = opaque;
- g_free(s);
- return 0;
- }
- static int stdio_put_buffer(void *opaque, const uint8_t *buf, int64_t pos, int size)
- {
- QEMUFileStdio *s = opaque;
- return fwrite(buf, 1, size, s->stdio_file);
- }
- static int stdio_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
- {
- QEMUFileStdio *s = opaque;
- FILE *fp = s->stdio_file;
- int bytes;
- do {
- clearerr(fp);
- bytes = fread(buf, 1, size, fp);
- } while ((bytes == 0) && ferror(fp) && (errno == EINTR));
- return bytes;
- }
- static int stdio_pclose(void *opaque)
- {
- QEMUFileStdio *s = opaque;
- int ret;
- ret = pclose(s->stdio_file);
- if (ret == -1) {
- ret = -errno;
- }
- g_free(s);
- return ret;
- }
- static int stdio_fclose(void *opaque)
- {
- QEMUFileStdio *s = opaque;
- int ret = 0;
- if (fclose(s->stdio_file) == EOF) {
- ret = -errno;
- }
- g_free(s);
- return ret;
- }
- QEMUFile *qemu_popen(FILE *stdio_file, const char *mode)
- {
- QEMUFileStdio *s;
- if (stdio_file == NULL || mode == NULL || (mode[0] != 'r' && mode[0] != 'w') || mode[1] != 0) {
- fprintf(stderr, "qemu_popen: Argument validity check failed\n");
- return NULL;
- }
- s = g_malloc0(sizeof(QEMUFileStdio));
- s->stdio_file = stdio_file;
- if(mode[0] == 'r') {
- s->file = qemu_fopen_ops(s, NULL, stdio_get_buffer, stdio_pclose,
- NULL, NULL, NULL);
- } else {
- s->file = qemu_fopen_ops(s, stdio_put_buffer, NULL, stdio_pclose,
- NULL, NULL, NULL);
- }
- return s->file;
- }
- QEMUFile *qemu_popen_cmd(const char *command, const char *mode)
- {
- FILE *popen_file;
- popen_file = popen(command, mode);
- if(popen_file == NULL) {
- return NULL;
- }
- return qemu_popen(popen_file, mode);
- }
- int qemu_stdio_fd(QEMUFile *f)
- {
- QEMUFileStdio *p;
- int fd;
- p = (QEMUFileStdio *)f->opaque;
- fd = fileno(p->stdio_file);
- return fd;
- }
- QEMUFile *qemu_fdopen(int fd, const char *mode)
- {
- QEMUFileStdio *s;
- if (mode == NULL ||
- (mode[0] != 'r' && mode[0] != 'w') ||
- mode[1] != 'b' || mode[2] != 0) {
- fprintf(stderr, "qemu_fdopen: Argument validity check failed\n");
- return NULL;
- }
- s = g_malloc0(sizeof(QEMUFileStdio));
- s->stdio_file = fdopen(fd, mode);
- if (!s->stdio_file)
- goto fail;
- if(mode[0] == 'r') {
- s->file = qemu_fopen_ops(s, NULL, stdio_get_buffer, stdio_fclose,
- NULL, NULL, NULL);
- } else {
- s->file = qemu_fopen_ops(s, stdio_put_buffer, NULL, stdio_fclose,
- NULL, NULL, NULL);
- }
- return s->file;
- fail:
- g_free(s);
- return NULL;
- }
- QEMUFile *qemu_fopen_socket(int fd)
- {
- QEMUFileSocket *s = g_malloc0(sizeof(QEMUFileSocket));
- s->fd = fd;
- s->file = qemu_fopen_ops(s, NULL, socket_get_buffer, socket_close,
- NULL, NULL, NULL);
- return s->file;
- }
- static int file_put_buffer(void *opaque, const uint8_t *buf,
- int64_t pos, int size)
- {
- QEMUFileStdio *s = opaque;
- fseek(s->stdio_file, pos, SEEK_SET);
- return fwrite(buf, 1, size, s->stdio_file);
- }
- static int file_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
- {
- QEMUFileStdio *s = opaque;
- fseek(s->stdio_file, pos, SEEK_SET);
- return fread(buf, 1, size, s->stdio_file);
- }
- QEMUFile *qemu_fopen(const char *filename, const char *mode)
- {
- QEMUFileStdio *s;
- if (mode == NULL ||
- (mode[0] != 'r' && mode[0] != 'w') ||
- mode[1] != 'b' || mode[2] != 0) {
- fprintf(stderr, "qemu_fopen: Argument validity check failed\n");
- return NULL;
- }
- s = g_malloc0(sizeof(QEMUFileStdio));
- s->stdio_file = fopen(filename, mode);
- if (!s->stdio_file)
- goto fail;
-
- if(mode[0] == 'w') {
- s->file = qemu_fopen_ops(s, file_put_buffer, NULL, stdio_fclose,
- NULL, NULL, NULL);
- } else {
- s->file = qemu_fopen_ops(s, NULL, file_get_buffer, stdio_fclose,
- NULL, NULL, NULL);
- }
- return s->file;
- fail:
- g_free(s);
- return NULL;
- }
- static int block_put_buffer(void *opaque, const uint8_t *buf,
- int64_t pos, int size)
- {
- bdrv_save_vmstate(opaque, buf, pos, size);
- return size;
- }
- static int block_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
- {
- return bdrv_load_vmstate(opaque, buf, pos, size);
- }
- static int bdrv_fclose(void *opaque)
- {
- return bdrv_flush(opaque);
- }
- static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int is_writable)
- {
- if (is_writable)
- return qemu_fopen_ops(bs, block_put_buffer, NULL, bdrv_fclose,
- NULL, NULL, NULL);
- return qemu_fopen_ops(bs, NULL, block_get_buffer, bdrv_fclose, NULL, NULL, NULL);
- }
- QEMUFile *qemu_fopen_ops(void *opaque, QEMUFilePutBufferFunc *put_buffer,
- QEMUFileGetBufferFunc *get_buffer,
- QEMUFileCloseFunc *close,
- QEMUFileRateLimit *rate_limit,
- QEMUFileSetRateLimit *set_rate_limit,
- QEMUFileGetRateLimit *get_rate_limit)
- {
- QEMUFile *f;
- f = g_malloc0(sizeof(QEMUFile));
- f->opaque = opaque;
- f->put_buffer = put_buffer;
- f->get_buffer = get_buffer;
- f->close = close;
- f->rate_limit = rate_limit;
- f->set_rate_limit = set_rate_limit;
- f->get_rate_limit = get_rate_limit;
- f->is_write = 0;
- return f;
- }
- int qemu_file_get_error(QEMUFile *f)
- {
- return f->last_error;
- }
- void qemu_file_set_error(QEMUFile *f, int ret)
- {
- f->last_error = ret;
- }
- /** Sets last_error conditionally
- *
- * Sets last_error only if ret is negative _and_ no error
- * was set before.
- */
- static void qemu_file_set_if_error(QEMUFile *f, int ret)
- {
- if (ret < 0 && !f->last_error) {
- qemu_file_set_error(f, ret);
- }
- }
- /** Flushes QEMUFile buffer
- *
- * In case of error, last_error is set.
- */
- void qemu_fflush(QEMUFile *f)
- {
- if (!f->put_buffer)
- return;
- if (f->is_write && f->buf_index > 0) {
- int len;
- len = f->put_buffer(f->opaque, f->buf, f->buf_offset, f->buf_index);
- if (len > 0)
- f->buf_offset += f->buf_index;
- else
- qemu_file_set_error(f, -EINVAL);
- f->buf_index = 0;
- }
- }
- static void qemu_fill_buffer(QEMUFile *f)
- {
- int len;
- int pending;
- if (!f->get_buffer)
- return;
- if (f->is_write)
- abort();
- pending = f->buf_size - f->buf_index;
- if (pending > 0) {
- memmove(f->buf, f->buf + f->buf_index, pending);
- }
- f->buf_index = 0;
- f->buf_size = pending;
- len = f->get_buffer(f->opaque, f->buf + pending, f->buf_offset,
- IO_BUF_SIZE - pending);
- if (len > 0) {
- f->buf_size += len;
- f->buf_offset += len;
- } else if (len == 0) {
- f->last_error = -EIO;
- } else if (len != -EAGAIN)
- qemu_file_set_error(f, len);
- }
- /** Calls close function and set last_error if needed
- *
- * Internal function. qemu_fflush() must be called before this.
- *
- * Returns f->close() return value, or 0 if close function is not set.
- */
- static int qemu_fclose_internal(QEMUFile *f)
- {
- int ret = 0;
- if (f->close) {
- ret = f->close(f->opaque);
- qemu_file_set_if_error(f, ret);
- }
- return ret;
- }
- /** Closes the file
- *
- * Returns negative error value if any error happened on previous operations or
- * while closing the file. Returns 0 or positive number on success.
- *
- * The meaning of return value on success depends on the specific backend
- * being used.
- */
- int qemu_fclose(QEMUFile *f)
- {
- int ret;
- qemu_fflush(f);
- ret = qemu_fclose_internal(f);
- /* If any error was spotted before closing, we should report it
- * instead of the close() return value.
- */
- if (f->last_error) {
- ret = f->last_error;
- }
- g_free(f);
- return ret;
- }
- void qemu_file_put_notify(QEMUFile *f)
- {
- f->put_buffer(f->opaque, NULL, 0, 0);
- }
- void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, int size)
- {
- int l;
- if (!f->last_error && f->is_write == 0 && f->buf_index > 0) {
- fprintf(stderr,
- "Attempted to write to buffer while read buffer is not empty\n");
- abort();
- }
- while (!f->last_error && size > 0) {
- l = IO_BUF_SIZE - f->buf_index;
- if (l > size)
- l = size;
- memcpy(f->buf + f->buf_index, buf, l);
- f->is_write = 1;
- f->buf_index += l;
- buf += l;
- size -= l;
- if (f->buf_index >= IO_BUF_SIZE)
- qemu_fflush(f);
- }
- }
- void qemu_put_byte(QEMUFile *f, int v)
- {
- if (!f->last_error && f->is_write == 0 && f->buf_index > 0) {
- fprintf(stderr,
- "Attempted to write to buffer while read buffer is not empty\n");
- abort();
- }
- f->buf[f->buf_index++] = v;
- f->is_write = 1;
- if (f->buf_index >= IO_BUF_SIZE)
- qemu_fflush(f);
- }
- static void qemu_file_skip(QEMUFile *f, int size)
- {
- if (f->buf_index + size <= f->buf_size) {
- f->buf_index += size;
- }
- }
- static int qemu_peek_buffer(QEMUFile *f, uint8_t *buf, int size, size_t offset)
- {
- int pending;
- int index;
- if (f->is_write) {
- abort();
- }
- index = f->buf_index + offset;
- pending = f->buf_size - index;
- if (pending < size) {
- qemu_fill_buffer(f);
- index = f->buf_index + offset;
- pending = f->buf_size - index;
- }
- if (pending <= 0) {
- return 0;
- }
- if (size > pending) {
- size = pending;
- }
- memcpy(buf, f->buf + index, size);
- return size;
- }
- int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size)
- {
- int pending = size;
- int done = 0;
- while (pending > 0) {
- int res;
- res = qemu_peek_buffer(f, buf, pending, 0);
- if (res == 0) {
- return done;
- }
- qemu_file_skip(f, res);
- buf += res;
- pending -= res;
- done += res;
- }
- return done;
- }
- static int qemu_peek_byte(QEMUFile *f, int offset)
- {
- int index = f->buf_index + offset;
- if (f->is_write) {
- abort();
- }
- if (index >= f->buf_size) {
- qemu_fill_buffer(f);
- index = f->buf_index + offset;
- if (index >= f->buf_size) {
- return 0;
- }
- }
- return f->buf[index];
- }
- int qemu_get_byte(QEMUFile *f)
- {
- int result;
- result = qemu_peek_byte(f, 0);
- qemu_file_skip(f, 1);
- return result;
- }
- int64_t qemu_ftell(QEMUFile *f)
- {
- return f->buf_offset - f->buf_size + f->buf_index;
- }
- int64_t qemu_fseek(QEMUFile *f, int64_t pos, int whence)
- {
- if (whence == SEEK_SET) {
- /* nothing to do */
- } else if (whence == SEEK_CUR) {
- pos += qemu_ftell(f);
- } else {
- /* SEEK_END not supported */
- return -1;
- }
- if (f->put_buffer) {
- qemu_fflush(f);
- f->buf_offset = pos;
- } else {
- f->buf_offset = pos;
- f->buf_index = 0;
- f->buf_size = 0;
- }
- return pos;
- }
- int qemu_file_rate_limit(QEMUFile *f)
- {
- if (f->rate_limit)
- return f->rate_limit(f->opaque);
- return 0;
- }
- int64_t qemu_file_get_rate_limit(QEMUFile *f)
- {
- if (f->get_rate_limit)
- return f->get_rate_limit(f->opaque);
- return 0;
- }
- int64_t qemu_file_set_rate_limit(QEMUFile *f, int64_t new_rate)
- {
- /* any failed or completed migration keeps its state to allow probing of
- * migration data, but has no associated file anymore */
- if (f && f->set_rate_limit)
- return f->set_rate_limit(f->opaque, new_rate);
- return 0;
- }
- void qemu_put_be16(QEMUFile *f, unsigned int v)
- {
- qemu_put_byte(f, v >> 8);
- qemu_put_byte(f, v);
- }
- void qemu_put_be32(QEMUFile *f, unsigned int v)
- {
- qemu_put_byte(f, v >> 24);
- qemu_put_byte(f, v >> 16);
- qemu_put_byte(f, v >> 8);
- qemu_put_byte(f, v);
- }
- void qemu_put_be64(QEMUFile *f, uint64_t v)
- {
- qemu_put_be32(f, v >> 32);
- qemu_put_be32(f, v);
- }
- unsigned int qemu_get_be16(QEMUFile *f)
- {
- unsigned int v;
- v = qemu_get_byte(f) << 8;
- v |= qemu_get_byte(f);
- return v;
- }
- unsigned int qemu_get_be32(QEMUFile *f)
- {
- unsigned int v;
- v = qemu_get_byte(f) << 24;
- v |= qemu_get_byte(f) << 16;
- v |= qemu_get_byte(f) << 8;
- v |= qemu_get_byte(f);
- return v;
- }
- uint64_t qemu_get_be64(QEMUFile *f)
- {
- uint64_t v;
- v = (uint64_t)qemu_get_be32(f) << 32;
- v |= qemu_get_be32(f);
- return v;
- }
- /* timer */
- void qemu_put_timer(QEMUFile *f, QEMUTimer *ts)
- {
- uint64_t expire_time;
- expire_time = qemu_timer_expire_time_ns(ts);
- qemu_put_be64(f, expire_time);
- }
- void qemu_get_timer(QEMUFile *f, QEMUTimer *ts)
- {
- uint64_t expire_time;
- expire_time = qemu_get_be64(f);
- if (expire_time != -1) {
- qemu_mod_timer_ns(ts, expire_time);
- } else {
- qemu_del_timer(ts);
- }
- }
- /* bool */
- static int get_bool(QEMUFile *f, void *pv, size_t size)
- {
- bool *v = pv;
- *v = qemu_get_byte(f);
- return 0;
- }
- static void put_bool(QEMUFile *f, void *pv, size_t size)
- {
- bool *v = pv;
- qemu_put_byte(f, *v);
- }
- const VMStateInfo vmstate_info_bool = {
- .name = "bool",
- .get = get_bool,
- .put = put_bool,
- };
- /* 8 bit int */
- static int get_int8(QEMUFile *f, void *pv, size_t size)
- {
- int8_t *v = pv;
- qemu_get_s8s(f, v);
- return 0;
- }
- static void put_int8(QEMUFile *f, void *pv, size_t size)
- {
- int8_t *v = pv;
- qemu_put_s8s(f, v);
- }
- const VMStateInfo vmstate_info_int8 = {
- .name = "int8",
- .get = get_int8,
- .put = put_int8,
- };
- /* 16 bit int */
- static int get_int16(QEMUFile *f, void *pv, size_t size)
- {
- int16_t *v = pv;
- qemu_get_sbe16s(f, v);
- return 0;
- }
- static void put_int16(QEMUFile *f, void *pv, size_t size)
- {
- int16_t *v = pv;
- qemu_put_sbe16s(f, v);
- }
- const VMStateInfo vmstate_info_int16 = {
- .name = "int16",
- .get = get_int16,
- .put = put_int16,
- };
- /* 32 bit int */
- static int get_int32(QEMUFile *f, void *pv, size_t size)
- {
- int32_t *v = pv;
- qemu_get_sbe32s(f, v);
- return 0;
- }
- static void put_int32(QEMUFile *f, void *pv, size_t size)
- {
- int32_t *v = pv;
- qemu_put_sbe32s(f, v);
- }
- const VMStateInfo vmstate_info_int32 = {
- .name = "int32",
- .get = get_int32,
- .put = put_int32,
- };
- /* 32 bit int. See that the received value is the same than the one
- in the field */
- static int get_int32_equal(QEMUFile *f, void *pv, size_t size)
- {
- int32_t *v = pv;
- int32_t v2;
- qemu_get_sbe32s(f, &v2);
- if (*v == v2)
- return 0;
- return -EINVAL;
- }
- const VMStateInfo vmstate_info_int32_equal = {
- .name = "int32 equal",
- .get = get_int32_equal,
- .put = put_int32,
- };
- /* 32 bit int. See that the received value is the less or the same
- than the one in the field */
- static int get_int32_le(QEMUFile *f, void *pv, size_t size)
- {
- int32_t *old = pv;
- int32_t new;
- qemu_get_sbe32s(f, &new);
- if (*old <= new)
- return 0;
- return -EINVAL;
- }
- const VMStateInfo vmstate_info_int32_le = {
- .name = "int32 equal",
- .get = get_int32_le,
- .put = put_int32,
- };
- /* 64 bit int */
- static int get_int64(QEMUFile *f, void *pv, size_t size)
- {
- int64_t *v = pv;
- qemu_get_sbe64s(f, v);
- return 0;
- }
- static void put_int64(QEMUFile *f, void *pv, size_t size)
- {
- int64_t *v = pv;
- qemu_put_sbe64s(f, v);
- }
- const VMStateInfo vmstate_info_int64 = {
- .name = "int64",
- .get = get_int64,
- .put = put_int64,
- };
- /* 8 bit unsigned int */
- static int get_uint8(QEMUFile *f, void *pv, size_t size)
- {
- uint8_t *v = pv;
- qemu_get_8s(f, v);
- return 0;
- }
- static void put_uint8(QEMUFile *f, void *pv, size_t size)
- {
- uint8_t *v = pv;
- qemu_put_8s(f, v);
- }
- const VMStateInfo vmstate_info_uint8 = {
- .name = "uint8",
- .get = get_uint8,
- .put = put_uint8,
- };
- /* 16 bit unsigned int */
- static int get_uint16(QEMUFile *f, void *pv, size_t size)
- {
- uint16_t *v = pv;
- qemu_get_be16s(f, v);
- return 0;
- }
- static void put_uint16(QEMUFile *f, void *pv, size_t size)
- {
- uint16_t *v = pv;
- qemu_put_be16s(f, v);
- }
- const VMStateInfo vmstate_info_uint16 = {
- .name = "uint16",
- .get = get_uint16,
- .put = put_uint16,
- };
- /* 32 bit unsigned int */
- static int get_uint32(QEMUFile *f, void *pv, size_t size)
- {
- uint32_t *v = pv;
- qemu_get_be32s(f, v);
- return 0;
- }
- static void put_uint32(QEMUFile *f, void *pv, size_t size)
- {
- uint32_t *v = pv;
- qemu_put_be32s(f, v);
- }
- const VMStateInfo vmstate_info_uint32 = {
- .name = "uint32",
- .get = get_uint32,
- .put = put_uint32,
- };
- /* 32 bit uint. See that the received value is the same than the one
- in the field */
- static int get_uint32_equal(QEMUFile *f, void *pv, size_t size)
- {
- uint32_t *v = pv;
- uint32_t v2;
- qemu_get_be32s(f, &v2);
- if (*v == v2) {
- return 0;
- }
- return -EINVAL;
- }
- const VMStateInfo vmstate_info_uint32_equal = {
- .name = "uint32 equal",
- .get = get_uint32_equal,
- .put = put_uint32,
- };
- /* 64 bit unsigned int */
- static int get_uint64(QEMUFile *f, void *pv, size_t size)
- {
- uint64_t *v = pv;
- qemu_get_be64s(f, v);
- return 0;
- }
- static void put_uint64(QEMUFile *f, void *pv, size_t size)
- {
- uint64_t *v = pv;
- qemu_put_be64s(f, v);
- }
- const VMStateInfo vmstate_info_uint64 = {
- .name = "uint64",
- .get = get_uint64,
- .put = put_uint64,
- };
- /* 8 bit int. See that the received value is the same than the one
- in the field */
- static int get_uint8_equal(QEMUFile *f, void *pv, size_t size)
- {
- uint8_t *v = pv;
- uint8_t v2;
- qemu_get_8s(f, &v2);
- if (*v == v2)
- return 0;
- return -EINVAL;
- }
- const VMStateInfo vmstate_info_uint8_equal = {
- .name = "uint8 equal",
- .get = get_uint8_equal,
- .put = put_uint8,
- };
- /* 16 bit unsigned int int. See that the received value is the same than the one
- in the field */
- static int get_uint16_equal(QEMUFile *f, void *pv, size_t size)
- {
- uint16_t *v = pv;
- uint16_t v2;
- qemu_get_be16s(f, &v2);
- if (*v == v2)
- return 0;
- return -EINVAL;
- }
- const VMStateInfo vmstate_info_uint16_equal = {
- .name = "uint16 equal",
- .get = get_uint16_equal,
- .put = put_uint16,
- };
- /* timers */
- static int get_timer(QEMUFile *f, void *pv, size_t size)
- {
- QEMUTimer *v = pv;
- qemu_get_timer(f, v);
- return 0;
- }
- static void put_timer(QEMUFile *f, void *pv, size_t size)
- {
- QEMUTimer *v = pv;
- qemu_put_timer(f, v);
- }
- const VMStateInfo vmstate_info_timer = {
- .name = "timer",
- .get = get_timer,
- .put = put_timer,
- };
- /* uint8_t buffers */
- static int get_buffer(QEMUFile *f, void *pv, size_t size)
- {
- uint8_t *v = pv;
- qemu_get_buffer(f, v, size);
- return 0;
- }
- static void put_buffer(QEMUFile *f, void *pv, size_t size)
- {
- uint8_t *v = pv;
- qemu_put_buffer(f, v, size);
- }
- const VMStateInfo vmstate_info_buffer = {
- .name = "buffer",
- .get = get_buffer,
- .put = put_buffer,
- };
- /* unused buffers: space that was used for some fields that are
- not useful anymore */
- static int get_unused_buffer(QEMUFile *f, void *pv, size_t size)
- {
- uint8_t buf[1024];
- int block_len;
- while (size > 0) {
- block_len = MIN(sizeof(buf), size);
- size -= block_len;
- qemu_get_buffer(f, buf, block_len);
- }
- return 0;
- }
- static void put_unused_buffer(QEMUFile *f, void *pv, size_t size)
- {
- static const uint8_t buf[1024];
- int block_len;
- while (size > 0) {
- block_len = MIN(sizeof(buf), size);
- size -= block_len;
- qemu_put_buffer(f, buf, block_len);
- }
- }
- const VMStateInfo vmstate_info_unused_buffer = {
- .name = "unused_buffer",
- .get = get_unused_buffer,
- .put = put_unused_buffer,
- };
- typedef struct CompatEntry {
- char idstr[256];
- int instance_id;
- } CompatEntry;
- typedef struct SaveStateEntry {
- QTAILQ_ENTRY(SaveStateEntry) entry;
- char idstr[256];
- int instance_id;
- int alias_id;
- int version_id;
- int section_id;
- SaveVMHandlers *ops;
- const VMStateDescription *vmsd;
- void *opaque;
- CompatEntry *compat;
- int no_migrate;
- int is_ram;
- } SaveStateEntry;
- static QTAILQ_HEAD(savevm_handlers, SaveStateEntry) savevm_handlers =
- QTAILQ_HEAD_INITIALIZER(savevm_handlers);
- static int global_section_id;
- static int calculate_new_instance_id(const char *idstr)
- {
- SaveStateEntry *se;
- int instance_id = 0;
- QTAILQ_FOREACH(se, &savevm_handlers, entry) {
- if (strcmp(idstr, se->idstr) == 0
- && instance_id <= se->instance_id) {
- instance_id = se->instance_id + 1;
- }
- }
- return instance_id;
- }
- static int calculate_compat_instance_id(const char *idstr)
- {
- SaveStateEntry *se;
- int instance_id = 0;
- QTAILQ_FOREACH(se, &savevm_handlers, entry) {
- if (!se->compat)
- continue;
- if (strcmp(idstr, se->compat->idstr) == 0
- && instance_id <= se->compat->instance_id) {
- instance_id = se->compat->instance_id + 1;
- }
- }
- return instance_id;
- }
- /* TODO: Individual devices generally have very little idea about the rest
- of the system, so instance_id should be removed/replaced.
- Meanwhile pass -1 as instance_id if you do not already have a clearly
- distinguishing id for all instances of your device class. */
- int register_savevm_live(DeviceState *dev,
- const char *idstr,
- int instance_id,
- int version_id,
- SaveVMHandlers *ops,
- void *opaque)
- {
- SaveStateEntry *se;
- se = g_malloc0(sizeof(SaveStateEntry));
- se->version_id = version_id;
- se->section_id = global_section_id++;
- se->ops = ops;
- se->opaque = opaque;
- se->vmsd = NULL;
- se->no_migrate = 0;
- /* if this is a live_savem then set is_ram */
- if (ops->save_live_setup != NULL) {
- se->is_ram = 1;
- }
- if (dev) {
- char *id = qdev_get_dev_path(dev);
- if (id) {
- pstrcpy(se->idstr, sizeof(se->idstr), id);
- pstrcat(se->idstr, sizeof(se->idstr), "/");
- g_free(id);
- se->compat = g_malloc0(sizeof(CompatEntry));
- pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), idstr);
- se->compat->instance_id = instance_id == -1 ?
- calculate_compat_instance_id(idstr) : instance_id;
- instance_id = -1;
- }
- }
- pstrcat(se->idstr, sizeof(se->idstr), idstr);
- if (instance_id == -1) {
- se->instance_id = calculate_new_instance_id(se->idstr);
- } else {
- se->instance_id = instance_id;
- }
- assert(!se->compat || se->instance_id == 0);
- /* add at the end of list */
- QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
- return 0;
- }
- int register_savevm(DeviceState *dev,
- const char *idstr,
- int instance_id,
- int version_id,
- SaveStateHandler *save_state,
- LoadStateHandler *load_state,
- void *opaque)
- {
- SaveVMHandlers *ops = g_malloc0(sizeof(SaveVMHandlers));
- ops->save_state = save_state;
- ops->load_state = load_state;
- return register_savevm_live(dev, idstr, instance_id, version_id,
- ops, opaque);
- }
- void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
- {
- SaveStateEntry *se, *new_se;
- char id[256] = "";
- if (dev) {
- char *path = qdev_get_dev_path(dev);
- if (path) {
- pstrcpy(id, sizeof(id), path);
- pstrcat(id, sizeof(id), "/");
- g_free(path);
- }
- }
- pstrcat(id, sizeof(id), idstr);
- QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
- if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
- QTAILQ_REMOVE(&savevm_handlers, se, entry);
- if (se->compat) {
- g_free(se->compat);
- }
- g_free(se->ops);
- g_free(se);
- }
- }
- }
- int vmstate_register_with_alias_id(DeviceState *dev, int instance_id,
- const VMStateDescription *vmsd,
- void *opaque, int alias_id,
- int required_for_version)
- {
- SaveStateEntry *se;
- /* If this triggers, alias support can be dropped for the vmsd. */
- assert(alias_id == -1 || required_for_version >= vmsd->minimum_version_id);
- se = g_malloc0(sizeof(SaveStateEntry));
- se->version_id = vmsd->version_id;
- se->section_id = global_section_id++;
- se->opaque = opaque;
- se->vmsd = vmsd;
- se->alias_id = alias_id;
- se->no_migrate = vmsd->unmigratable;
- if (dev) {
- char *id = qdev_get_dev_path(dev);
- if (id) {
- pstrcpy(se->idstr, sizeof(se->idstr), id);
- pstrcat(se->idstr, sizeof(se->idstr), "/");
- g_free(id);
- se->compat = g_malloc0(sizeof(CompatEntry));
- pstrcpy(se->compat->idstr, sizeof(se->compat->idstr), vmsd->name);
- se->compat->instance_id = instance_id == -1 ?
- calculate_compat_instance_id(vmsd->name) : instance_id;
- instance_id = -1;
- }
- }
- pstrcat(se->idstr, sizeof(se->idstr), vmsd->name);
- if (instance_id == -1) {
- se->instance_id = calculate_new_instance_id(se->idstr);
- } else {
- se->instance_id = instance_id;
- }
- assert(!se->compat || se->instance_id == 0);
- /* add at the end of list */
- QTAILQ_INSERT_TAIL(&savevm_handlers, se, entry);
- return 0;
- }
- int vmstate_register(DeviceState *dev, int instance_id,
- const VMStateDescription *vmsd, void *opaque)
- {
- return vmstate_register_with_alias_id(dev, instance_id, vmsd,
- opaque, -1, 0);
- }
- void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
- void *opaque)
- {
- SaveStateEntry *se, *new_se;
- QTAILQ_FOREACH_SAFE(se, &savevm_handlers, entry, new_se) {
- if (se->vmsd == vmsd && se->opaque == opaque) {
- QTAILQ_REMOVE(&savevm_handlers, se, entry);
- if (se->compat) {
- g_free(se->compat);
- }
- g_free(se);
- }
- }
- }
- static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
- void *opaque);
- static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
- void *opaque);
- int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
- void *opaque, int version_id)
- {
- VMStateField *field = vmsd->fields;
- int ret;
- if (version_id > vmsd->version_id) {
- return -EINVAL;
- }
- if (version_id < vmsd->minimum_version_id_old) {
- return -EINVAL;
- }
- if (version_id < vmsd->minimum_version_id) {
- return vmsd->load_state_old(f, opaque, version_id);
- }
- if (vmsd->pre_load) {
- int ret = vmsd->pre_load(opaque);
- if (ret)
- return ret;
- }
- while(field->name) {
- if ((field->field_exists &&
- field->field_exists(opaque, version_id)) ||
- (!field->field_exists &&
- field->version_id <= version_id)) {
- void *base_addr = opaque + field->offset;
- int i, n_elems = 1;
- int size = field->size;
- if (field->flags & VMS_VBUFFER) {
- size = *(int32_t *)(opaque+field->size_offset);
- if (field->flags & VMS_MULTIPLY) {
- size *= field->size;
- }
- }
- if (field->flags & VMS_ARRAY) {
- n_elems = field->num;
- } else if (field->flags & VMS_VARRAY_INT32) {
- n_elems = *(int32_t *)(opaque+field->num_offset);
- } else if (field->flags & VMS_VARRAY_UINT32) {
- n_elems = *(uint32_t *)(opaque+field->num_offset);
- } else if (field->flags & VMS_VARRAY_UINT16) {
- n_elems = *(uint16_t *)(opaque+field->num_offset);
- } else if (field->flags & VMS_VARRAY_UINT8) {
- n_elems = *(uint8_t *)(opaque+field->num_offset);
- }
- if (field->flags & VMS_POINTER) {
- base_addr = *(void **)base_addr + field->start;
- }
- for (i = 0; i < n_elems; i++) {
- void *addr = base_addr + size * i;
- if (field->flags & VMS_ARRAY_OF_POINTER) {
- addr = *(void **)addr;
- }
- if (field->flags & VMS_STRUCT) {
- ret = vmstate_load_state(f, field->vmsd, addr, field->vmsd->version_id);
- } else {
- ret = field->info->get(f, addr, size);
- }
- if (ret < 0) {
- return ret;
- }
- }
- }
- field++;
- }
- ret = vmstate_subsection_load(f, vmsd, opaque);
- if (ret != 0) {
- return ret;
- }
- if (vmsd->post_load) {
- return vmsd->post_load(opaque, version_id);
- }
- return 0;
- }
- void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
- void *opaque)
- {
- VMStateField *field = vmsd->fields;
- if (vmsd->pre_save) {
- vmsd->pre_save(opaque);
- }
- while(field->name) {
- if (!field->field_exists ||
- field->field_exists(opaque, vmsd->version_id)) {
- void *base_addr = opaque + field->offset;
- int i, n_elems = 1;
- int size = field->size;
- if (field->flags & VMS_VBUFFER) {
- size = *(int32_t *)(opaque+field->size_offset);
- if (field->flags & VMS_MULTIPLY) {
- size *= field->size;
- }
- }
- if (field->flags & VMS_ARRAY) {
- n_elems = field->num;
- } else if (field->flags & VMS_VARRAY_INT32) {
- n_elems = *(int32_t *)(opaque+field->num_offset);
- } else if (field->flags & VMS_VARRAY_UINT32) {
- n_elems = *(uint32_t *)(opaque+field->num_offset);
- } else if (field->flags & VMS_VARRAY_UINT16) {
- n_elems = *(uint16_t *)(opaque+field->num_offset);
- } else if (field->flags & VMS_VARRAY_UINT8) {
- n_elems = *(uint8_t *)(opaque+field->num_offset);
- }
- if (field->flags & VMS_POINTER) {
- base_addr = *(void **)base_addr + field->start;
- }
- for (i = 0; i < n_elems; i++) {
- void *addr = base_addr + size * i;
- if (field->flags & VMS_ARRAY_OF_POINTER) {
- addr = *(void **)addr;
- }
- if (field->flags & VMS_STRUCT) {
- vmstate_save_state(f, field->vmsd, addr);
- } else {
- field->info->put(f, addr, size);
- }
- }
- }
- field++;
- }
- vmstate_subsection_save(f, vmsd, opaque);
- }
- static int vmstate_load(QEMUFile *f, SaveStateEntry *se, int version_id)
- {
- if (!se->vmsd) { /* Old style */
- return se->ops->load_state(f, se->opaque, version_id);
- }
- return vmstate_load_state(f, se->vmsd, se->opaque, version_id);
- }
- static void vmstate_save(QEMUFile *f, SaveStateEntry *se)
- {
- if (!se->vmsd) { /* Old style */
- se->ops->save_state(f, se->opaque);
- return;
- }
- vmstate_save_state(f,se->vmsd, se->opaque);
- }
- #define QEMU_VM_FILE_MAGIC 0x5145564d
- #define QEMU_VM_FILE_VERSION_COMPAT 0x00000002
- #define QEMU_VM_FILE_VERSION 0x00000003
- #define QEMU_VM_EOF 0x00
- #define QEMU_VM_SECTION_START 0x01
- #define QEMU_VM_SECTION_PART 0x02
- #define QEMU_VM_SECTION_END 0x03
- #define QEMU_VM_SECTION_FULL 0x04
- #define QEMU_VM_SUBSECTION 0x05
- bool qemu_savevm_state_blocked(Error **errp)
- {
- SaveStateEntry *se;
- QTAILQ_FOREACH(se, &savevm_handlers, entry) {
- if (se->no_migrate) {
- error_set(errp, QERR_MIGRATION_NOT_SUPPORTED, se->idstr);
- return true;
- }
- }
- return false;
- }
- int qemu_savevm_state_begin(QEMUFile *f,
- const MigrationParams *params)
- {
- SaveStateEntry *se;
- int ret;
- QTAILQ_FOREACH(se, &savevm_handlers, entry) {
- if (!se->ops || !se->ops->set_params) {
- continue;
- }
- se->ops->set_params(params, se->opaque);
- }
-
- qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
- qemu_put_be32(f, QEMU_VM_FILE_VERSION);
- QTAILQ_FOREACH(se, &savevm_handlers, entry) {
- int len;
- if (!se->ops || !se->ops->save_live_setup) {
- continue;
- }
- if (se->ops && se->ops->is_active) {
- if (!se->ops->is_active(se->opaque)) {
- continue;
- }
- }
- /* Section type */
- qemu_put_byte(f, QEMU_VM_SECTION_START);
- qemu_put_be32(f, se->section_id);
- /* ID string */
- len = strlen(se->idstr);
- qemu_put_byte(f, len);
- qemu_put_buffer(f, (uint8_t *)se->idstr, len);
- qemu_put_be32(f, se->instance_id);
- qemu_put_be32(f, se->version_id);
- ret = se->ops->save_live_setup(f, se->opaque);
- if (ret < 0) {
- qemu_savevm_state_cancel(f);
- return ret;
- }
- }
- ret = qemu_file_get_error(f);
- if (ret != 0) {
- qemu_savevm_state_cancel(f);
- }
- return ret;
- }
- /*
- * this function has three return values:
- * negative: there was one error, and we have -errno.
- * 0 : We haven't finished, caller have to go again
- * 1 : We have finished, we can go to complete phase
- */
- int qemu_savevm_state_iterate(QEMUFile *f)
- {
- SaveStateEntry *se;
- int ret = 1;
- QTAILQ_FOREACH(se, &savevm_handlers, entry) {
- if (!se->ops || !se->ops->save_live_iterate) {
- continue;
- }
- if (se->ops && se->ops->is_active) {
- if (!se->ops->is_active(se->opaque)) {
- continue;
- }
- }
- if (qemu_file_rate_limit(f)) {
- return 0;
- }
- trace_savevm_section_start();
- /* Section type */
- qemu_put_byte(f, QEMU_VM_SECTION_PART);
- qemu_put_be32(f, se->section_id);
- ret = se->ops->save_live_iterate(f, se->opaque);
- trace_savevm_section_end(se->section_id);
- if (ret <= 0) {
- /* Do not proceed to the next vmstate before this one reported
- completion of the current stage. This serializes the migration
- and reduces the probability that a faster changing state is
- synchronized over and over again. */
- break;
- }
- }
- if (ret != 0) {
- return ret;
- }
- ret = qemu_file_get_error(f);
- if (ret != 0) {
- qemu_savevm_state_cancel(f);
- }
- return ret;
- }
- int qemu_savevm_state_complete(QEMUFile *f)
- {
- SaveStateEntry *se;
- int ret;
- cpu_synchronize_all_states();
- QTAILQ_FOREACH(se, &savevm_handlers, entry) {
- if (!se->ops || !se->ops->save_live_complete) {
- continue;
- }
- if (se->ops && se->ops->is_active) {
- if (!se->ops->is_active(se->opaque)) {
- continue;
- }
- }
- trace_savevm_section_start();
- /* Section type */
- qemu_put_byte(f, QEMU_VM_SECTION_END);
- qemu_put_be32(f, se->section_id);
- ret = se->ops->save_live_complete(f, se->opaque);
- trace_savevm_section_end(se->section_id);
- if (ret < 0) {
- return ret;
- }
- }
- QTAILQ_FOREACH(se, &savevm_handlers, entry) {
- int len;
- if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
- continue;
- }
- trace_savevm_section_start();
- /* Section type */
- qemu_put_byte(f, QEMU_VM_SECTION_FULL);
- qemu_put_be32(f, se->section_id);
- /* ID string */
- len = strlen(se->idstr);
- qemu_put_byte(f, len);
- qemu_put_buffer(f, (uint8_t *)se->idstr, len);
- qemu_put_be32(f, se->instance_id);
- qemu_put_be32(f, se->version_id);
- vmstate_save(f, se);
- trace_savevm_section_end(se->section_id);
- }
- qemu_put_byte(f, QEMU_VM_EOF);
- return qemu_file_get_error(f);
- }
- void qemu_savevm_state_cancel(QEMUFile *f)
- {
- SaveStateEntry *se;
- QTAILQ_FOREACH(se, &savevm_handlers, entry) {
- if (se->ops && se->ops->cancel) {
- se->ops->cancel(se->opaque);
- }
- }
- }
- static int qemu_savevm_state(QEMUFile *f)
- {
- int ret;
- MigrationParams params = {
- .blk = 0,
- .shared = 0
- };
- if (qemu_savevm_state_blocked(NULL)) {
- ret = -EINVAL;
- goto out;
- }
- ret = qemu_savevm_state_begin(f, ¶ms);
- if (ret < 0)
- goto out;
- do {
- ret = qemu_savevm_state_iterate(f);
- if (ret < 0)
- goto out;
- } while (ret == 0);
- ret = qemu_savevm_state_complete(f);
- out:
- if (ret == 0) {
- ret = qemu_file_get_error(f);
- }
- return ret;
- }
- static int qemu_save_device_state(QEMUFile *f)
- {
- SaveStateEntry *se;
- qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
- qemu_put_be32(f, QEMU_VM_FILE_VERSION);
- cpu_synchronize_all_states();
- QTAILQ_FOREACH(se, &savevm_handlers, entry) {
- int len;
- if (se->is_ram) {
- continue;
- }
- if ((!se->ops || !se->ops->save_state) && !se->vmsd) {
- continue;
- }
- /* Section type */
- qemu_put_byte(f, QEMU_VM_SECTION_FULL);
- qemu_put_be32(f, se->section_id);
- /* ID string */
- len = strlen(se->idstr);
- qemu_put_byte(f, len);
- qemu_put_buffer(f, (uint8_t *)se->idstr, len);
- qemu_put_be32(f, se->instance_id);
- qemu_put_be32(f, se->version_id);
- vmstate_save(f, se);
- }
- qemu_put_byte(f, QEMU_VM_EOF);
- return qemu_file_get_error(f);
- }
- static SaveStateEntry *find_se(const char *idstr, int instance_id)
- {
- SaveStateEntry *se;
- QTAILQ_FOREACH(se, &savevm_handlers, entry) {
- if (!strcmp(se->idstr, idstr) &&
- (instance_id == se->instance_id ||
- instance_id == se->alias_id))
- return se;
- /* Migrating from an older version? */
- if (strstr(se->idstr, idstr) && se->compat) {
- if (!strcmp(se->compat->idstr, idstr) &&
- (instance_id == se->compat->instance_id ||
- instance_id == se->alias_id))
- return se;
- }
- }
- return NULL;
- }
- static const VMStateDescription *vmstate_get_subsection(const VMStateSubsection *sub, char *idstr)
- {
- while(sub && sub->needed) {
- if (strcmp(idstr, sub->vmsd->name) == 0) {
- return sub->vmsd;
- }
- sub++;
- }
- return NULL;
- }
- static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
- void *opaque)
- {
- while (qemu_peek_byte(f, 0) == QEMU_VM_SUBSECTION) {
- char idstr[256];
- int ret;
- uint8_t version_id, len, size;
- const VMStateDescription *sub_vmsd;
- len = qemu_peek_byte(f, 1);
- if (len < strlen(vmsd->name) + 1) {
- /* subsection name has be be "section_name/a" */
- return 0;
- }
- size = qemu_peek_buffer(f, (uint8_t *)idstr, len, 2);
- if (size != len) {
- return 0;
- }
- idstr[size] = 0;
- if (strncmp(vmsd->name, idstr, strlen(vmsd->name)) != 0) {
- /* it don't have a valid subsection name */
- return 0;
- }
- sub_vmsd = vmstate_get_subsection(vmsd->subsections, idstr);
- if (sub_vmsd == NULL) {
- return -ENOENT;
- }
- qemu_file_skip(f, 1); /* subsection */
- qemu_file_skip(f, 1); /* len */
- qemu_file_skip(f, len); /* idstr */
- version_id = qemu_get_be32(f);
- ret = vmstate_load_state(f, sub_vmsd, opaque, version_id);
- if (ret) {
- return ret;
- }
- }
- return 0;
- }
- static void vmstate_subsection_save(QEMUFile *f, const VMStateDescription *vmsd,
- void *opaque)
- {
- const VMStateSubsection *sub = vmsd->subsections;
- while (sub && sub->needed) {
- if (sub->needed(opaque)) {
- const VMStateDescription *vmsd = sub->vmsd;
- uint8_t len;
- qemu_put_byte(f, QEMU_VM_SUBSECTION);
- len = strlen(vmsd->name);
- qemu_put_byte(f, len);
- qemu_put_buffer(f, (uint8_t *)vmsd->name, len);
- qemu_put_be32(f, vmsd->version_id);
- vmstate_save_state(f, vmsd, opaque);
- }
- sub++;
- }
- }
- typedef struct LoadStateEntry {
- QLIST_ENTRY(LoadStateEntry) entry;
- SaveStateEntry *se;
- int section_id;
- int version_id;
- } LoadStateEntry;
- int qemu_loadvm_state(QEMUFile *f)
- {
- QLIST_HEAD(, LoadStateEntry) loadvm_handlers =
- QLIST_HEAD_INITIALIZER(loadvm_handlers);
- LoadStateEntry *le, *new_le;
- uint8_t section_type;
- unsigned int v;
- int ret;
- if (qemu_savevm_state_blocked(NULL)) {
- return -EINVAL;
- }
- v = qemu_get_be32(f);
- if (v != QEMU_VM_FILE_MAGIC)
- return -EINVAL;
- v = qemu_get_be32(f);
- if (v == QEMU_VM_FILE_VERSION_COMPAT) {
- fprintf(stderr, "SaveVM v2 format is obsolete and don't work anymore\n");
- return -ENOTSUP;
- }
- if (v != QEMU_VM_FILE_VERSION)
- return -ENOTSUP;
- while ((section_type = qemu_get_byte(f)) != QEMU_VM_EOF) {
- uint32_t instance_id, version_id, section_id;
- SaveStateEntry *se;
- char idstr[257];
- int len;
- switch (section_type) {
- case QEMU_VM_SECTION_START:
- case QEMU_VM_SECTION_FULL:
- /* Read section start */
- section_id = qemu_get_be32(f);
- len = qemu_get_byte(f);
- qemu_get_buffer(f, (uint8_t *)idstr, len);
- idstr[len] = 0;
- instance_id = qemu_get_be32(f);
- version_id = qemu_get_be32(f);
- /* Find savevm section */
- se = find_se(idstr, instance_id);
- if (se == NULL) {
- fprintf(stderr, "Unknown savevm section or instance '%s' %d\n", idstr, instance_id);
- ret = -EINVAL;
- goto out;
- }
- /* Validate version */
- if (version_id > se->version_id) {
- fprintf(stderr, "savevm: unsupported version %d for '%s' v%d\n",
- version_id, idstr, se->version_id);
- ret = -EINVAL;
- goto out;
- }
- /* Add entry */
- le = g_malloc0(sizeof(*le));
- le->se = se;
- le->section_id = section_id;
- le->version_id = version_id;
- QLIST_INSERT_HEAD(&loadvm_handlers, le, entry);
- ret = vmstate_load(f, le->se, le->version_id);
- if (ret < 0) {
- fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
- instance_id, idstr);
- goto out;
- }
- break;
- case QEMU_VM_SECTION_PART:
- case QEMU_VM_SECTION_END:
- section_id = qemu_get_be32(f);
- QLIST_FOREACH(le, &loadvm_handlers, entry) {
- if (le->section_id == section_id) {
- break;
- }
- }
- if (le == NULL) {
- fprintf(stderr, "Unknown savevm section %d\n", section_id);
- ret = -EINVAL;
- goto out;
- }
- ret = vmstate_load(f, le->se, le->version_id);
- if (ret < 0) {
- fprintf(stderr, "qemu: warning: error while loading state section id %d\n",
- section_id);
- goto out;
- }
- break;
- default:
- fprintf(stderr, "Unknown savevm section type %d\n", section_type);
- ret = -EINVAL;
- goto out;
- }
- }
- cpu_synchronize_all_post_init();
- ret = 0;
- out:
- QLIST_FOREACH_SAFE(le, &loadvm_handlers, entry, new_le) {
- QLIST_REMOVE(le, entry);
- g_free(le);
- }
- if (ret == 0) {
- ret = qemu_file_get_error(f);
- }
- return ret;
- }
- static int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
- const char *name)
- {
- QEMUSnapshotInfo *sn_tab, *sn;
- int nb_sns, i, ret;
- ret = -ENOENT;
- nb_sns = bdrv_snapshot_list(bs, &sn_tab);
- if (nb_sns < 0)
- return ret;
- for(i = 0; i < nb_sns; i++) {
- sn = &sn_tab[i];
- if (!strcmp(sn->id_str, name) || !strcmp(sn->name, name)) {
- *sn_info = *sn;
- ret = 0;
- break;
- }
- }
- g_free(sn_tab);
- return ret;
- }
- /*
- * Deletes snapshots of a given name in all opened images.
- */
- static int del_existing_snapshots(Monitor *mon, const char *name)
- {
- BlockDriverState *bs;
- QEMUSnapshotInfo sn1, *snapshot = &sn1;
- int ret;
- bs = NULL;
- while ((bs = bdrv_next(bs))) {
- if (bdrv_can_snapshot(bs) &&
- bdrv_snapshot_find(bs, snapshot, name) >= 0)
- {
- ret = bdrv_snapshot_delete(bs, name);
- if (ret < 0) {
- monitor_printf(mon,
- "Error while deleting snapshot on '%s'\n",
- bdrv_get_device_name(bs));
- return -1;
- }
- }
- }
- return 0;
- }
- void do_savevm(Monitor *mon, const QDict *qdict)
- {
- BlockDriverState *bs, *bs1;
- QEMUSnapshotInfo sn1, *sn = &sn1, old_sn1, *old_sn = &old_sn1;
- int ret;
- QEMUFile *f;
- int saved_vm_running;
- uint64_t vm_state_size;
- #ifdef _WIN32
- struct _timeb tb;
- struct tm *ptm;
- #else
- struct timeval tv;
- struct tm tm;
- #endif
- const char *name = qdict_get_try_str(qdict, "name");
- /* Verify if there is a device that doesn't support snapshots and is writable */
- bs = NULL;
- while ((bs = bdrv_next(bs))) {
- if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
- continue;
- }
- if (!bdrv_can_snapshot(bs)) {
- monitor_printf(mon, "Device '%s' is writable but does not support snapshots.\n",
- bdrv_get_device_name(bs));
- return;
- }
- }
- bs = bdrv_snapshots();
- if (!bs) {
- monitor_printf(mon, "No block device can accept snapshots\n");
- return;
- }
- saved_vm_running = runstate_is_running();
- vm_stop(RUN_STATE_SAVE_VM);
- memset(sn, 0, sizeof(*sn));
- /* fill auxiliary fields */
- #ifdef _WIN32
- _ftime(&tb);
- sn->date_sec = tb.time;
- sn->date_nsec = tb.millitm * 1000000;
- #else
- gettimeofday(&tv, NULL);
- sn->date_sec = tv.tv_sec;
- sn->date_nsec = tv.tv_usec * 1000;
- #endif
- sn->vm_clock_nsec = qemu_get_clock_ns(vm_clock);
- if (name) {
- ret = bdrv_snapshot_find(bs, old_sn, name);
- if (ret >= 0) {
- pstrcpy(sn->name, sizeof(sn->name), old_sn->name);
- pstrcpy(sn->id_str, sizeof(sn->id_str), old_sn->id_str);
- } else {
- pstrcpy(sn->name, sizeof(sn->name), name);
- }
- } else {
- #ifdef _WIN32
- time_t t = tb.time;
- ptm = localtime(&t);
- strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", ptm);
- #else
- /* cast below needed for OpenBSD where tv_sec is still 'long' */
- localtime_r((const time_t *)&tv.tv_sec, &tm);
- strftime(sn->name, sizeof(sn->name), "vm-%Y%m%d%H%M%S", &tm);
- #endif
- }
- /* Delete old snapshots of the same name */
- if (name && del_existing_snapshots(mon, name) < 0) {
- goto the_end;
- }
- /* save the VM state */
- f = qemu_fopen_bdrv(bs, 1);
- if (!f) {
- monitor_printf(mon, "Could not open VM state file\n");
- goto the_end;
- }
- ret = qemu_savevm_state(f);
- vm_state_size = qemu_ftell(f);
- qemu_fclose(f);
- if (ret < 0) {
- monitor_printf(mon, "Error %d while writing VM\n", ret);
- goto the_end;
- }
- /* create the snapshots */
- bs1 = NULL;
- while ((bs1 = bdrv_next(bs1))) {
- if (bdrv_can_snapshot(bs1)) {
- /* Write VM state size only to the image that contains the state */
- sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
- ret = bdrv_snapshot_create(bs1, sn);
- if (ret < 0) {
- monitor_printf(mon, "Error while creating snapshot on '%s'\n",
- bdrv_get_device_name(bs1));
- }
- }
- }
- the_end:
- if (saved_vm_running)
- vm_start();
- }
- void qmp_xen_save_devices_state(const char *filename, Error **errp)
- {
- QEMUFile *f;
- int saved_vm_running;
- int ret;
- saved_vm_running = runstate_is_running();
- vm_stop(RUN_STATE_SAVE_VM);
- f = qemu_fopen(filename, "wb");
- if (!f) {
- error_set(errp, QERR_OPEN_FILE_FAILED, filename);
- goto the_end;
- }
- ret = qemu_save_device_state(f);
- qemu_fclose(f);
- if (ret < 0) {
- error_set(errp, QERR_IO_ERROR);
- }
- the_end:
- if (saved_vm_running)
- vm_start();
- return;
- }
- int load_vmstate(const char *name)
- {
- BlockDriverState *bs, *bs_vm_state;
- QEMUSnapshotInfo sn;
- QEMUFile *f;
- int ret;
- bs_vm_state = bdrv_snapshots();
- if (!bs_vm_state) {
- error_report("No block device supports snapshots");
- return -ENOTSUP;
- }
- /* Don't even try to load empty VM states */
- ret = bdrv_snapshot_find(bs_vm_state, &sn, name);
- if (ret < 0) {
- return ret;
- } else if (sn.vm_state_size == 0) {
- error_report("This is a disk-only snapshot. Revert to it offline "
- "using qemu-img.");
- return -EINVAL;
- }
- /* Verify if there is any device that doesn't support snapshots and is
- writable and check if the requested snapshot is available too. */
- bs = NULL;
- while ((bs = bdrv_next(bs))) {
- if (!bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
- continue;
- }
- if (!bdrv_can_snapshot(bs)) {
- error_report("Device '%s' is writable but does not support snapshots.",
- bdrv_get_device_name(bs));
- return -ENOTSUP;
- }
- ret = bdrv_snapshot_find(bs, &sn, name);
- if (ret < 0) {
- error_report("Device '%s' does not have the requested snapshot '%s'",
- bdrv_get_device_name(bs), name);
- return ret;
- }
- }
- /* Flush all IO requests so they don't interfere with the new state. */
- bdrv_drain_all();
- bs = NULL;
- while ((bs = bdrv_next(bs))) {
- if (bdrv_can_snapshot(bs)) {
- ret = bdrv_snapshot_goto(bs, name);
- if (ret < 0) {
- error_report("Error %d while activating snapshot '%s' on '%s'",
- ret, name, bdrv_get_device_name(bs));
- return ret;
- }
- }
- }
- /* restore the VM state */
- f = qemu_fopen_bdrv(bs_vm_state, 0);
- if (!f) {
- error_report("Could not open VM state file");
- return -EINVAL;
- }
- qemu_system_reset(VMRESET_SILENT);
- ret = qemu_loadvm_state(f);
- qemu_fclose(f);
- if (ret < 0) {
- error_report("Error %d while loading VM state", ret);
- return ret;
- }
- return 0;
- }
- void do_delvm(Monitor *mon, const QDict *qdict)
- {
- BlockDriverState *bs, *bs1;
- int ret;
- const char *name = qdict_get_str(qdict, "name");
- bs = bdrv_snapshots();
- if (!bs) {
- monitor_printf(mon, "No block device supports snapshots\n");
- return;
- }
- bs1 = NULL;
- while ((bs1 = bdrv_next(bs1))) {
- if (bdrv_can_snapshot(bs1)) {
- ret = bdrv_snapshot_delete(bs1, name);
- if (ret < 0) {
- if (ret == -ENOTSUP)
- monitor_printf(mon,
- "Snapshots not supported on device '%s'\n",
- bdrv_get_device_name(bs1));
- else
- monitor_printf(mon, "Error %d while deleting snapshot on "
- "'%s'\n", ret, bdrv_get_device_name(bs1));
- }
- }
- }
- }
- void do_info_snapshots(Monitor *mon)
- {
- BlockDriverState *bs, *bs1;
- QEMUSnapshotInfo *sn_tab, *sn, s, *sn_info = &s;
- int nb_sns, i, ret, available;
- int total;
- int *available_snapshots;
- char buf[256];
- bs = bdrv_snapshots();
- if (!bs) {
- monitor_printf(mon, "No available block device supports snapshots\n");
- return;
- }
- nb_sns = bdrv_snapshot_list(bs, &sn_tab);
- if (nb_sns < 0) {
- monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
- return;
- }
- if (nb_sns == 0) {
- monitor_printf(mon, "There is no snapshot available.\n");
- return;
- }
- available_snapshots = g_malloc0(sizeof(int) * nb_sns);
- total = 0;
- for (i = 0; i < nb_sns; i++) {
- sn = &sn_tab[i];
- available = 1;
- bs1 = NULL;
- while ((bs1 = bdrv_next(bs1))) {
- if (bdrv_can_snapshot(bs1) && bs1 != bs) {
- ret = bdrv_snapshot_find(bs1, sn_info, sn->id_str);
- if (ret < 0) {
- available = 0;
- break;
- }
- }
- }
- if (available) {
- available_snapshots[total] = i;
- total++;
- }
- }
- if (total > 0) {
- monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), NULL));
- for (i = 0; i < total; i++) {
- sn = &sn_tab[available_snapshots[i]];
- monitor_printf(mon, "%s\n", bdrv_snapshot_dump(buf, sizeof(buf), sn));
- }
- } else {
- monitor_printf(mon, "There is no suitable snapshot available\n");
- }
- g_free(sn_tab);
- g_free(available_snapshots);
- }
- void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
- {
- qemu_ram_set_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK,
- memory_region_name(mr), dev);
- }
- void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
- {
- /* Nothing do to while the implementation is in RAMBlock */
- }
- void vmstate_register_ram_global(MemoryRegion *mr)
- {
- vmstate_register_ram(mr, NULL);
- }
- /*
- page = zrun nzrun
- | zrun nzrun page
- zrun = length
- nzrun = length byte...
- length = uleb128 encoded integer
- */
- int xbzrle_encode_buffer(uint8_t *old_buf, uint8_t *new_buf, int slen,
- uint8_t *dst, int dlen)
- {
- uint32_t zrun_len = 0, nzrun_len = 0;
- int d = 0, i = 0;
- long res, xor;
- uint8_t *nzrun_start = NULL;
- g_assert(!(((uintptr_t)old_buf | (uintptr_t)new_buf | slen) %
- sizeof(long)));
- while (i < slen) {
- /* overflow */
- if (d + 2 > dlen) {
- return -1;
- }
- /* not aligned to sizeof(long) */
- res = (slen - i) % sizeof(long);
- while (res && old_buf[i] == new_buf[i]) {
- zrun_len++;
- i++;
- res--;
- }
- /* word at a time for speed */
- if (!res) {
- while (i < slen &&
- (*(long *)(old_buf + i)) == (*(long *)(new_buf + i))) {
- i += sizeof(long);
- zrun_len += sizeof(long);
- }
- /* go over the rest */
- while (i < slen && old_buf[i] == new_buf[i]) {
- zrun_len++;
- i++;
- }
- }
- /* buffer unchanged */
- if (zrun_len == slen) {
- return 0;
- }
- /* skip last zero run */
- if (i == slen) {
- return d;
- }
- d += uleb128_encode_small(dst + d, zrun_len);
- zrun_len = 0;
- nzrun_start = new_buf + i;
- /* overflow */
- if (d + 2 > dlen) {
- return -1;
- }
- /* not aligned to sizeof(long) */
- res = (slen - i) % sizeof(long);
- while (res && old_buf[i] != new_buf[i]) {
- i++;
- nzrun_len++;
- res--;
- }
- /* word at a time for speed, use of 32-bit long okay */
- if (!res) {
- /* truncation to 32-bit long okay */
- long mask = (long)0x0101010101010101ULL;
- while (i < slen) {
- xor = *(long *)(old_buf + i) ^ *(long *)(new_buf + i);
- if ((xor - mask) & ~xor & (mask << 7)) {
- /* found the end of an nzrun within the current long */
- while (old_buf[i] != new_buf[i]) {
- nzrun_len++;
- i++;
- }
- break;
- } else {
- i += sizeof(long);
- nzrun_len += sizeof(long);
- }
- }
- }
- d += uleb128_encode_small(dst + d, nzrun_len);
- /* overflow */
- if (d + nzrun_len > dlen) {
- return -1;
- }
- memcpy(dst + d, nzrun_start, nzrun_len);
- d += nzrun_len;
- nzrun_len = 0;
- }
- return d;
- }
- int xbzrle_decode_buffer(uint8_t *src, int slen, uint8_t *dst, int dlen)
- {
- int i = 0, d = 0;
- int ret;
- uint32_t count = 0;
- while (i < slen) {
- /* zrun */
- if ((slen - i) < 2) {
- return -1;
- }
- ret = uleb128_decode_small(src + i, &count);
- if (ret < 0 || (i && !count)) {
- return -1;
- }
- i += ret;
- d += count;
- /* overflow */
- if (d > dlen) {
- return -1;
- }
- /* nzrun */
- if ((slen - i) < 2) {
- return -1;
- }
- ret = uleb128_decode_small(src + i, &count);
- if (ret < 0 || !count) {
- return -1;
- }
- i += ret;
- /* overflow */
- if (d + count > dlen || i + count > slen) {
- return -1;
- }
- memcpy(dst + d, src + i, count);
- d += count;
- i += count;
- }
- return d;
- }
|