blob: b54612b1a5059d7c8374cd98630671c5f8f7f8e3 [file] [log] [blame]
Orit Wasserman9fb26642012-08-06 21:42:50 +03001
pbrookfaf07962007-11-11 02:51:17 +00002/* Common header file that is included by all of qemu. */
3#ifndef QEMU_COMMON_H
4#define QEMU_COMMON_H
5
Luiz Capitulino5c026322011-07-11 14:24:44 -03006#include "compiler.h"
Kevin Wolfbeb6f0d2010-01-15 12:56:41 +01007#include "config-host.h"
8
Paolo Bonzini332ae282011-07-28 12:10:28 +02009#if defined(__arm__) || defined(__sparc__) || defined(__mips__) || defined(__hppa__) || defined(__ia64__)
10#define WORDS_ALIGNED
11#endif
12
Blue Swirl082b5552011-03-27 09:04:57 +000013#define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR)
Paolo Bonzini24ebf5f2010-02-18 21:25:23 +010014
Blue Swirl29e922b2010-03-29 19:24:00 +000015typedef struct QEMUTimer QEMUTimer;
16typedef struct QEMUFile QEMUFile;
Blue Swirl92a16d72010-06-19 07:47:42 +000017typedef struct DeviceState DeviceState;
Blue Swirl29e922b2010-03-29 19:24:00 +000018
Jan Kiszka316378e2011-03-02 08:56:09 +010019struct Monitor;
20typedef struct Monitor Monitor;
Isaku Yamahata6607ae22012-06-19 18:43:09 +030021typedef struct MigrationParams MigrationParams;
Jan Kiszka316378e2011-03-02 08:56:09 +010022
pbrookfaf07962007-11-11 02:51:17 +000023/* we put basic includes here to avoid repeating them in device drivers */
24#include <stdlib.h>
25#include <stdio.h>
26#include <stdarg.h>
Paul Brook11165822010-06-13 19:00:50 +010027#include <stdbool.h>
pbrookfaf07962007-11-11 02:51:17 +000028#include <string.h>
balrogc8906842008-11-12 17:18:41 +000029#include <strings.h>
pbrookfaf07962007-11-11 02:51:17 +000030#include <inttypes.h>
31#include <limits.h>
32#include <time.h>
33#include <ctype.h>
34#include <errno.h>
35#include <unistd.h>
36#include <fcntl.h>
37#include <sys/stat.h>
Hervé Poussineaudcfd0862011-03-06 13:23:13 +000038#include <sys/time.h>
Paul Brook55616502009-05-13 20:51:49 +010039#include <assert.h>
Alexandre Raymond86f69a92011-06-01 22:21:30 -040040#include <signal.h>
Anthony Liguori14015302011-08-20 22:18:37 -050041#include <glib.h>
pbrookfaf07962007-11-11 02:51:17 +000042
Blue Swirl082b5552011-03-27 09:04:57 +000043#ifdef _WIN32
44#include "qemu-os-win32.h"
45#endif
46
47#ifdef CONFIG_POSIX
48#include "qemu-os-posix.h"
49#endif
50
pbrookfaf07962007-11-11 02:51:17 +000051#ifndef O_LARGEFILE
52#define O_LARGEFILE 0
53#endif
54#ifndef O_BINARY
55#define O_BINARY 0
56#endif
Juan Quintela0e74e662009-07-27 16:12:57 +020057#ifndef MAP_ANONYMOUS
58#define MAP_ANONYMOUS MAP_ANON
59#endif
pbrookfaf07962007-11-11 02:51:17 +000060#ifndef ENOMEDIUM
61#define ENOMEDIUM ENODEV
62#endif
Anthony Liguori4c955382009-07-28 15:48:31 -050063#if !defined(ENOTSUP)
Juan Quintela2880bc32009-07-27 16:13:22 +020064#define ENOTSUP 4096
65#endif
Paolo Bonzini2084a8e2012-05-10 09:27:50 +020066#if !defined(ECANCELED)
67#define ECANCELED 4097
68#endif
Gerd Hoffmann3c9405a2010-10-07 11:50:45 +020069#ifndef TIME_MAX
70#define TIME_MAX LONG_MAX
71#endif
pbrookfaf07962007-11-11 02:51:17 +000072
Stefan Weilc0fd2602012-02-01 21:04:13 +010073/* HOST_LONG_BITS is the size of a native pointer in bits. */
74#if UINTPTR_MAX == UINT32_MAX
75# define HOST_LONG_BITS 32
76#elif UINTPTR_MAX == UINT64_MAX
77# define HOST_LONG_BITS 64
78#else
79# error Unknown pointer size
80#endif
81
Juan Quintela6114fdb2009-07-27 16:12:59 +020082#ifndef CONFIG_IOVEC
83#define CONFIG_IOVEC
aliguoribf9298b2008-12-05 20:05:26 +000084struct iovec {
85 void *iov_base;
86 size_t iov_len;
87};
Christoph Hellwige2a305f2010-01-26 14:49:08 +010088/*
89 * Use the same value as Linux for now.
90 */
91#define IOV_MAX 1024
blueswir1331dadd2008-12-06 19:44:56 +000092#else
93#include <sys/uio.h>
aliguoribf9298b2008-12-05 20:05:26 +000094#endif
95
Stefan Weilf8684452010-10-22 23:03:30 +020096typedef int (*fprintf_function)(FILE *f, const char *fmt, ...)
97 GCC_FMT_ATTR(2, 3);
98
pbrookfaf07962007-11-11 02:51:17 +000099#ifdef _WIN32
pbrookfaf07962007-11-11 02:51:17 +0000100#define fsync _commit
Stefan Weil371c6482012-03-10 11:14:31 +0100101#if !defined(lseek)
102# define lseek _lseeki64
103#endif
Blue Swirl64b85a82011-01-23 16:21:20 +0000104int qemu_ftruncate64(int, int64_t);
Stefan Weil371c6482012-03-10 11:14:31 +0100105#if !defined(ftruncate)
106# define ftruncate qemu_ftruncate64
107#endif
pbrookfaf07962007-11-11 02:51:17 +0000108
pbrookfaf07962007-11-11 02:51:17 +0000109static inline char *realpath(const char *path, char *resolved_path)
110{
111 _fullpath(resolved_path, path, _MAX_PATH);
112 return resolved_path;
113}
pbrookfaf07962007-11-11 02:51:17 +0000114#endif
115
Paolo Bonzini946fb272011-09-12 13:57:37 +0200116/* icount */
117void configure_icount(const char *option);
118extern int use_icount;
119
pbrookfaf07962007-11-11 02:51:17 +0000120/* FIXME: Remove NEED_CPU_H. */
121#ifndef NEED_CPU_H
122
pbrookfaf07962007-11-11 02:51:17 +0000123#include "osdep.h"
124#include "bswap.h"
125
126#else
127
128#include "cpu.h"
129
130#endif /* !defined(NEED_CPU_H) */
131
Andreas Färber3bbbee12011-05-29 19:42:51 +0200132/* main function, renamed */
133#if defined(CONFIG_COCOA)
134int qemu_main(int argc, char **argv, char **envp);
135#endif
136
balrogf6503052008-02-17 11:42:19 +0000137void qemu_get_timedate(struct tm *tm, int offset);
138int qemu_timedate_diff(struct tm *tm);
139
Peter Maydellc8057f92012-08-02 13:45:54 +0100140/**
141 * is_help_option:
142 * @s: string to test
143 *
144 * Check whether @s is one of the standard strings which indicate
145 * that the user is asking for a list of the valid values for a
146 * command option like -cpu or -M. The current accepted strings
147 * are 'help' and '?'. '?' is deprecated (it is a shell wildcard
148 * which makes it annoying to use in a reliable way) but provided
149 * for backwards compatibility.
150 *
151 * Returns: true if @s is a request for a list.
152 */
153static inline bool is_help_option(const char *s)
154{
155 return !strcmp(s, "?") || !strcmp(s, "help");
156}
157
pbrookfaf07962007-11-11 02:51:17 +0000158/* cutils.c */
159void pstrcpy(char *buf, int buf_size, const char *str);
Dmitry Fleytman2a025ae2012-07-09 08:50:43 +0200160void strpadcpy(char *buf, int buf_size, const char *str, char pad);
pbrookfaf07962007-11-11 02:51:17 +0000161char *pstrcat(char *buf, int buf_size, const char *s);
162int strstart(const char *str, const char *val, const char **ptr);
163int stristart(const char *str, const char *val, const char **ptr);
Blue Swirld43277c2009-07-01 18:24:44 +0000164int qemu_strnlen(const char *s, int max_len);
pbrookfaf07962007-11-11 02:51:17 +0000165time_t mktimegm(struct tm *tm);
blueswir1ad46db92008-12-11 19:37:54 +0000166int qemu_fls(int i);
Christoph Hellwig6f1953c2009-09-04 19:01:32 +0200167int qemu_fdatasync(int fd);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100168int fcntl_setfl(int fd, int flag);
Stefan Berger443916d2011-09-28 06:41:32 -0400169int qemu_parse_fd(const char *param);
Corey Bryantadb696f2012-08-14 16:43:47 -0400170int qemu_parse_fdset(const char *param);
Jes Sorensend8427002010-12-09 14:17:24 +0100171
Jes Sorensend7142452011-01-26 11:54:58 +0100172/*
173 * strtosz() suffixes used to specify the default treatment of an
174 * argument passed to strtosz() without an explicit suffix.
175 * These should be defined using upper case characters in the range
176 * A-Z, as strtosz() will use qemu_toupper() on the given argument
177 * prior to comparison.
178 */
Jes Sorensend8427002010-12-09 14:17:24 +0100179#define STRTOSZ_DEFSUFFIX_TB 'T'
180#define STRTOSZ_DEFSUFFIX_GB 'G'
181#define STRTOSZ_DEFSUFFIX_MB 'M'
182#define STRTOSZ_DEFSUFFIX_KB 'K'
183#define STRTOSZ_DEFSUFFIX_B 'B'
Jes Sorensen70b4f4b2011-01-05 11:41:02 +0100184int64_t strtosz(const char *nptr, char **end);
185int64_t strtosz_suffix(const char *nptr, char **end, const char default_suffix);
Joerg Roedela732e1b2011-07-07 16:13:11 +0200186int64_t strtosz_suffix_unit(const char *nptr, char **end,
187 const char default_suffix, int64_t unit);
pbrookfaf07962007-11-11 02:51:17 +0000188
Blue Swirl37022082009-08-15 07:51:59 +0000189/* path.c */
190void init_paths(const char *prefix);
191const char *path(const char *pathname);
192
blueswir1cd390082008-11-16 13:53:32 +0000193#define qemu_isalnum(c) isalnum((unsigned char)(c))
194#define qemu_isalpha(c) isalpha((unsigned char)(c))
195#define qemu_iscntrl(c) iscntrl((unsigned char)(c))
196#define qemu_isdigit(c) isdigit((unsigned char)(c))
197#define qemu_isgraph(c) isgraph((unsigned char)(c))
198#define qemu_islower(c) islower((unsigned char)(c))
199#define qemu_isprint(c) isprint((unsigned char)(c))
200#define qemu_ispunct(c) ispunct((unsigned char)(c))
201#define qemu_isspace(c) isspace((unsigned char)(c))
202#define qemu_isupper(c) isupper((unsigned char)(c))
203#define qemu_isxdigit(c) isxdigit((unsigned char)(c))
204#define qemu_tolower(c) tolower((unsigned char)(c))
205#define qemu_toupper(c) toupper((unsigned char)(c))
206#define qemu_isascii(c) isascii((unsigned char)(c))
207#define qemu_toascii(c) toascii((unsigned char)(c))
208
Jes Sorensenb152aa82010-10-26 10:39:26 +0200209void *qemu_oom_check(void *ptr);
aurel32ca10f862008-04-11 21:35:42 +0000210
Kevin Wolf40ff6d72009-12-02 12:24:42 +0100211int qemu_open(const char *name, int flags, ...);
Corey Bryant2e1e79d2012-08-14 16:43:46 -0400212int qemu_close(int fd);
Juan Quintela7c7c0622010-01-20 00:56:09 +0100213ssize_t qemu_write_full(int fd, const void *buf, size_t count)
214 QEMU_WARN_UNUSED_RESULT;
Paolo Bonzini993295f2011-09-17 16:27:59 +0200215ssize_t qemu_send_full(int fd, const void *buf, size_t count, int flags)
216 QEMU_WARN_UNUSED_RESULT;
Paolo Bonzini8c5135f2011-09-08 13:46:25 +0200217ssize_t qemu_recv_full(int fd, void *buf, size_t count, int flags)
Paolo Bonzini993295f2011-09-17 16:27:59 +0200218 QEMU_WARN_UNUSED_RESULT;
Kevin Wolf40ff6d72009-12-02 12:24:42 +0100219
220#ifndef _WIN32
Paolo Bonzinif3dfda62010-02-11 00:23:46 +0100221int qemu_eventfd(int pipefd[2]);
Kevin Wolf40ff6d72009-12-02 12:24:42 +0100222int qemu_pipe(int pipefd[2]);
223#endif
224
Blue Swirl00aa0042011-07-23 20:04:29 +0000225#ifdef _WIN32
Stefan Weil58455eb2012-09-28 19:07:39 +0200226/* MinGW needs type casts for the 'buf' and 'optval' arguments. */
227#define qemu_getsockopt(sockfd, level, optname, optval, optlen) \
228 getsockopt(sockfd, level, optname, (void *)optval, optlen)
229#define qemu_setsockopt(sockfd, level, optname, optval, optlen) \
230 setsockopt(sockfd, level, optname, (const void *)optval, optlen)
Blue Swirl00aa0042011-07-23 20:04:29 +0000231#define qemu_recv(sockfd, buf, len, flags) recv(sockfd, (void *)buf, len, flags)
Stefan Weil73062df2012-09-22 21:13:28 +0200232#define qemu_sendto(sockfd, buf, len, flags, destaddr, addrlen) \
233 sendto(sockfd, (const void *)buf, len, flags, destaddr, addrlen)
Blue Swirl00aa0042011-07-23 20:04:29 +0000234#else
Stefan Weil58455eb2012-09-28 19:07:39 +0200235#define qemu_getsockopt(sockfd, level, optname, optval, optlen) \
236 getsockopt(sockfd, level, optname, optval, optlen)
237#define qemu_setsockopt(sockfd, level, optname, optval, optlen) \
238 setsockopt(sockfd, level, optname, optval, optlen)
Blue Swirl00aa0042011-07-23 20:04:29 +0000239#define qemu_recv(sockfd, buf, len, flags) recv(sockfd, buf, len, flags)
Stefan Weil73062df2012-09-22 21:13:28 +0200240#define qemu_sendto(sockfd, buf, len, flags, destaddr, addrlen) \
241 sendto(sockfd, buf, len, flags, destaddr, addrlen)
Blue Swirl00aa0042011-07-23 20:04:29 +0000242#endif
243
pbrook87ecb682007-11-17 17:14:51 +0000244/* Error handling. */
245
Stefan Weile5924d82010-09-23 21:28:03 +0200246void QEMU_NORETURN hw_error(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
pbrook87ecb682007-11-17 17:14:51 +0000247
pbrook87ecb682007-11-17 17:14:51 +0000248struct ParallelIOArg {
249 void *buffer;
250 int count;
251};
252
253typedef int (*DMA_transfer_handler) (void *opaque, int nchan, int pos, int size);
254
255/* A load of opaque types so that device init declarations don't have to
256 pull in all the real definitions. */
257typedef struct NICInfo NICInfo;
balrog1ae26a12008-09-28 23:19:47 +0000258typedef struct HCIInfo HCIInfo;
pbrook87ecb682007-11-17 17:14:51 +0000259typedef struct AudioState AudioState;
260typedef struct BlockDriverState BlockDriverState;
Blue Swirl24463332010-08-24 15:22:24 +0000261typedef struct DriveInfo DriveInfo;
pbrook87ecb682007-11-17 17:14:51 +0000262typedef struct DisplayState DisplayState;
aliguori7d957bd2009-01-15 22:14:11 +0000263typedef struct DisplayChangeListener DisplayChangeListener;
264typedef struct DisplaySurface DisplaySurface;
aliguori7b5d76d2009-03-13 15:02:13 +0000265typedef struct DisplayAllocator DisplayAllocator;
aliguori7d957bd2009-01-15 22:14:11 +0000266typedef struct PixelFormat PixelFormat;
pbrook87ecb682007-11-17 17:14:51 +0000267typedef struct TextConsole TextConsole;
pbrookc60e08d2008-07-01 16:24:38 +0000268typedef TextConsole QEMUConsole;
pbrook87ecb682007-11-17 17:14:51 +0000269typedef struct CharDriverState CharDriverState;
Gerd Hoffmann76d32cb2009-10-21 15:25:22 +0200270typedef struct MACAddr MACAddr;
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100271typedef struct NetClientState NetClientState;
pbrook87ecb682007-11-17 17:14:51 +0000272typedef struct i2c_bus i2c_bus;
Hervé Poussineau48a18b32011-12-15 22:09:51 +0100273typedef struct ISABus ISABus;
Markus Armbrusterdfc65f12012-05-11 17:22:19 +0200274typedef struct ISADevice ISADevice;
pbrook87ecb682007-11-17 17:14:51 +0000275typedef struct SMBusDevice SMBusDevice;
Isaku Yamahatafb47a2e2009-11-12 14:58:41 +0900276typedef struct PCIHostState PCIHostState;
277typedef struct PCIExpressHost PCIExpressHost;
pbrook87ecb682007-11-17 17:14:51 +0000278typedef struct PCIBus PCIBus;
279typedef struct PCIDevice PCIDevice;
Isaku Yamahata04285272010-10-19 18:06:34 +0900280typedef struct PCIExpressDevice PCIExpressDevice;
Isaku Yamahata68f79992010-07-13 13:01:42 +0900281typedef struct PCIBridge PCIBridge;
Isaku Yamahata34e65942010-11-16 17:26:09 +0900282typedef struct PCIEAERMsg PCIEAERMsg;
283typedef struct PCIEAERLog PCIEAERLog;
284typedef struct PCIEAERErr PCIEAERErr;
Isaku Yamahatabc20ba92010-10-20 17:18:52 +0900285typedef struct PCIEPort PCIEPort;
286typedef struct PCIESlot PCIESlot;
Jan Kiszka14de9ba2012-05-16 15:41:09 -0300287typedef struct MSIMessage MSIMessage;
pbrook87ecb682007-11-17 17:14:51 +0000288typedef struct SerialState SerialState;
289typedef struct IRQState *qemu_irq;
Paul Brookbc24a222009-05-10 01:44:56 +0100290typedef struct PCMCIACardState PCMCIACardState;
291typedef struct MouseTransformInfo MouseTransformInfo;
292typedef struct uWireSlave uWireSlave;
293typedef struct I2SCodec I2SCodec;
Paul Brook90d37232009-05-14 22:35:09 +0100294typedef struct SSIBus SSIBus;
Michael S. Tsirkin2292b332010-03-17 13:07:58 +0200295typedef struct EventNotifier EventNotifier;
Michael S. Tsirkin2be24aa2010-03-17 13:08:10 +0200296typedef struct VirtIODevice VirtIODevice;
Gerd Hoffmannd35bf9a2011-07-12 13:36:23 +0200297typedef struct QEMUSGList QEMUSGList;
Michael S. Tsirkin1dc324d2012-02-12 14:12:21 +0200298typedef struct SHPCDevice SHPCDevice;
pbrook87ecb682007-11-17 17:14:51 +0000299
Michael S. Tsirkin186993e2010-02-10 21:25:42 +0200300typedef uint64_t pcibus_t;
301
Jan Kiszka4e4fa392012-01-23 20:15:11 +0100302typedef enum LostTickPolicy {
303 LOST_TICK_DISCARD,
304 LOST_TICK_DELAY,
305 LOST_TICK_MERGE,
306 LOST_TICK_SLEW,
Paolo Bonzini1ce05122012-02-02 22:09:44 +0100307 LOST_TICK_MAX
Jan Kiszka4e4fa392012-01-23 20:15:11 +0100308} LostTickPolicy;
309
Anthony PERARD679042f2012-06-21 15:36:23 +0000310typedef struct PCIHostDeviceAddress {
311 unsigned int domain;
312 unsigned int bus;
313 unsigned int slot;
314 unsigned int function;
315} PCIHostDeviceAddress;
316
Jan Kiszkad5ab9712011-08-02 16:10:21 +0200317void tcg_exec_init(unsigned long tb_size);
318bool tcg_enabled(void);
319
320void cpu_exec_init_all(void);
Blue Swirld2053c32010-03-29 19:23:48 +0000321
pbrookb3c77242008-06-30 16:31:04 +0000322/* CPU save/load. */
323void cpu_save(QEMUFile *f, void *opaque);
324int cpu_load(QEMUFile *f, void *opaque, int version_id);
325
aliguori8edac962009-04-24 18:03:45 +0000326/* Unblock cpu */
327void qemu_cpu_kick(void *env);
Jan Kiszka46d62fa2011-02-01 22:15:59 +0100328void qemu_cpu_kick_self(void);
Jan Kiszkab7680cb2011-03-12 17:43:51 +0100329int qemu_cpu_is_self(void *env);
aliguori8edac962009-04-24 18:03:45 +0000330
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300331/* work queue */
332struct qemu_work_item {
333 struct qemu_work_item *next;
334 void (*func)(void *data);
335 void *data;
336 int done;
337};
338
aliguori0bf46a42009-04-24 18:03:41 +0000339#ifdef CONFIG_USER_ONLY
340#define qemu_init_vcpu(env) do { } while (0)
341#else
342void qemu_init_vcpu(void *env);
343#endif
344
Paolo Bonzini8c5135f2011-09-08 13:46:25 +0200345
346/**
Michael Tokarev2fc8ae12012-06-07 20:22:46 +0400347 * Sends a (part of) iovec down a socket, yielding when the socket is full, or
348 * Receives data into a (part of) iovec from a socket,
349 * yielding when there is no data in the socket.
350 * The same interface as qemu_sendv_recvv(), with added yielding.
351 * XXX should mark these as coroutine_fn
Paolo Bonzini8c5135f2011-09-08 13:46:25 +0200352 */
Michael Tokarev2fc8ae12012-06-07 20:22:46 +0400353ssize_t qemu_co_sendv_recvv(int sockfd, struct iovec *iov, unsigned iov_cnt,
354 size_t offset, size_t bytes, bool do_send);
355#define qemu_co_recvv(sockfd, iov, iov_cnt, offset, bytes) \
356 qemu_co_sendv_recvv(sockfd, iov, iov_cnt, offset, bytes, false)
357#define qemu_co_sendv(sockfd, iov, iov_cnt, offset, bytes) \
358 qemu_co_sendv_recvv(sockfd, iov, iov_cnt, offset, bytes, true)
Paolo Bonzini8c5135f2011-09-08 13:46:25 +0200359
360/**
Michael Tokarev2fc8ae12012-06-07 20:22:46 +0400361 * The same as above, but with just a single buffer
Paolo Bonzini8c5135f2011-09-08 13:46:25 +0200362 */
Michael Tokarev2fc8ae12012-06-07 20:22:46 +0400363ssize_t qemu_co_send_recv(int sockfd, void *buf, size_t bytes, bool do_send);
364#define qemu_co_recv(sockfd, buf, bytes) \
365 qemu_co_send_recv(sockfd, buf, bytes, false)
366#define qemu_co_send(sockfd, buf, bytes) \
367 qemu_co_send_recv(sockfd, buf, bytes, true)
Paolo Bonzini8c5135f2011-09-08 13:46:25 +0200368
aliguori44e3ee82009-01-22 16:59:20 +0000369typedef struct QEMUIOVector {
370 struct iovec *iov;
371 int niov;
372 int nalloc;
aliguori249aa742009-01-26 17:17:52 +0000373 size_t size;
aliguori44e3ee82009-01-22 16:59:20 +0000374} QEMUIOVector;
375
376void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint);
aliguori522584a2009-03-28 17:46:10 +0000377void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov);
aliguori44e3ee82009-01-22 16:59:20 +0000378void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len);
Michael Tokarev1b093c42012-03-12 21:28:06 +0400379void qemu_iovec_concat(QEMUIOVector *dst,
380 QEMUIOVector *src, size_t soffset, size_t sbytes);
aliguori44e3ee82009-01-22 16:59:20 +0000381void qemu_iovec_destroy(QEMUIOVector *qiov);
aliguoribe959462009-02-05 21:23:54 +0000382void qemu_iovec_reset(QEMUIOVector *qiov);
Michael Tokarevd5e6b162012-06-07 20:21:06 +0400383size_t qemu_iovec_to_buf(QEMUIOVector *qiov, size_t offset,
384 void *buf, size_t bytes);
Michael Tokarev03396142012-06-07 20:17:55 +0400385size_t qemu_iovec_from_buf(QEMUIOVector *qiov, size_t offset,
386 const void *buf, size_t bytes);
Michael Tokarev3d9b4922012-03-10 16:54:23 +0400387size_t qemu_iovec_memset(QEMUIOVector *qiov, size_t offset,
388 int fillc, size_t bytes);
aliguori44e3ee82009-01-22 16:59:20 +0000389
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000390bool buffer_is_zero(const void *buf, size_t len);
391
Jes Sorensen6b837bc2011-03-30 14:16:25 +0200392void qemu_progress_init(int enabled, float min_skip);
393void qemu_progress_end(void);
Jes Sorensen3bfe4db2011-05-09 17:32:20 +0200394void qemu_progress_print(float delta, int max);
Ronnie Sahlberg31459f42012-08-06 18:24:55 +1000395const char *qemu_get_vm_name(void);
Jes Sorensen6b837bc2011-03-30 14:16:25 +0200396
Blue Swirl082b5552011-03-27 09:04:57 +0000397#define QEMU_FILE_TYPE_BIOS 0
398#define QEMU_FILE_TYPE_KEYMAP 1
399char *qemu_find_file(int type, const char *name);
400
401/* OS specific functions */
402void os_setup_early_signal_handling(void);
403char *os_find_datadir(const char *argv0);
404void os_parse_cmd_args(int index, const char *optarg);
405void os_pidfile_error(void);
406
Paul Brookabd0c6b2009-11-20 00:03:47 +0000407/* Convert a byte between binary and BCD. */
408static inline uint8_t to_bcd(uint8_t val)
409{
410 return ((val / 10) << 4) | (val % 10);
411}
412
413static inline uint8_t from_bcd(uint8_t val)
414{
415 return ((val >> 4) * 10) + (val & 0x0f);
416}
417
malc338b9222010-10-30 01:41:01 +0400418/* compute with 96 bit intermediate result: (a*b)/c */
419static inline uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
420{
421 union {
422 uint64_t ll;
423 struct {
424#ifdef HOST_WORDS_BIGENDIAN
425 uint32_t high, low;
426#else
427 uint32_t low, high;
428#endif
429 } l;
430 } u, res;
431 uint64_t rl, rh;
432
433 u.ll = a;
434 rl = (uint64_t)u.l.low * (uint64_t)b;
435 rh = (uint64_t)u.l.high * (uint64_t)b;
436 rh += (rl >> 32);
437 res.l.high = rh / c;
438 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
439 return res.ll;
440}
441
Stefan Hajnoczi39516902011-11-17 13:40:25 +0000442/* Round number down to multiple */
443#define QEMU_ALIGN_DOWN(n, m) ((n) / (m) * (m))
444
445/* Round number up to multiple */
446#define QEMU_ALIGN_UP(n, m) QEMU_ALIGN_DOWN((n) + (m) - 1, (m))
447
Orit Wasserman9fb26642012-08-06 21:42:50 +0300448static inline bool is_power_of_2(uint64_t value)
449{
450 if (!value) {
451 return 0;
452 }
453
454 return !(value & (value - 1));
455}
456
457/* round down to the nearest power of 2*/
458int64_t pow2floor(int64_t value);
459
Anthony Liguori0bfe3ca2009-05-14 19:29:53 +0100460#include "module.h"
461
Orit Wassermane6546bb2012-08-06 21:42:51 +0300462/*
463 * Implementation of ULEB128 (http://en.wikipedia.org/wiki/LEB128)
464 * Input is limited to 14-bit numbers
465 */
466
467int uleb128_encode_small(uint8_t *out, uint32_t n);
468int uleb128_decode_small(const uint8_t *in, uint32_t *n);
469
pbrookfaf07962007-11-11 02:51:17 +0000470#endif