]> git.proxmox.com Git - qemu.git/blob - qemu-common.h
7d7fbec5dc7c8a735e6313d46f5f2f57233f5834
[qemu.git] / qemu-common.h
1 /* Common header file that is included by all of qemu. */
2 #ifndef QEMU_COMMON_H
3 #define QEMU_COMMON_H
4
5 #include "compiler.h"
6 #include "config-host.h"
7
8 #if defined(__arm__) || defined(__sparc__) || defined(__mips__) || defined(__hppa__) || defined(__ia64__)
9 #define WORDS_ALIGNED
10 #endif
11
12 #define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR)
13
14 typedef struct QEMUTimer QEMUTimer;
15 typedef struct QEMUFile QEMUFile;
16 typedef struct DeviceState DeviceState;
17
18 struct Monitor;
19 typedef struct Monitor Monitor;
20 typedef struct MigrationParams MigrationParams;
21
22 /* we put basic includes here to avoid repeating them in device drivers */
23 #include <stdlib.h>
24 #include <stdio.h>
25 #include <stdarg.h>
26 #include <stdbool.h>
27 #include <string.h>
28 #include <strings.h>
29 #include <inttypes.h>
30 #include <limits.h>
31 #include <time.h>
32 #include <ctype.h>
33 #include <errno.h>
34 #include <unistd.h>
35 #include <fcntl.h>
36 #include <sys/stat.h>
37 #include <sys/time.h>
38 #include <assert.h>
39 #include <signal.h>
40 #include <glib.h>
41
42 #ifdef _WIN32
43 #include "qemu-os-win32.h"
44 #endif
45
46 #ifdef CONFIG_POSIX
47 #include "qemu-os-posix.h"
48 #endif
49
50 #ifndef O_LARGEFILE
51 #define O_LARGEFILE 0
52 #endif
53 #ifndef O_BINARY
54 #define O_BINARY 0
55 #endif
56 #ifndef MAP_ANONYMOUS
57 #define MAP_ANONYMOUS MAP_ANON
58 #endif
59 #ifndef ENOMEDIUM
60 #define ENOMEDIUM ENODEV
61 #endif
62 #if !defined(ENOTSUP)
63 #define ENOTSUP 4096
64 #endif
65 #if !defined(ECANCELED)
66 #define ECANCELED 4097
67 #endif
68 #ifndef TIME_MAX
69 #define TIME_MAX LONG_MAX
70 #endif
71
72 /* HOST_LONG_BITS is the size of a native pointer in bits. */
73 #if UINTPTR_MAX == UINT32_MAX
74 # define HOST_LONG_BITS 32
75 #elif UINTPTR_MAX == UINT64_MAX
76 # define HOST_LONG_BITS 64
77 #else
78 # error Unknown pointer size
79 #endif
80
81 #ifndef CONFIG_IOVEC
82 #define CONFIG_IOVEC
83 struct iovec {
84 void *iov_base;
85 size_t iov_len;
86 };
87 /*
88 * Use the same value as Linux for now.
89 */
90 #define IOV_MAX 1024
91 #else
92 #include <sys/uio.h>
93 #endif
94
95 typedef int (*fprintf_function)(FILE *f, const char *fmt, ...)
96 GCC_FMT_ATTR(2, 3);
97
98 #ifdef _WIN32
99 #define fsync _commit
100 #if !defined(lseek)
101 # define lseek _lseeki64
102 #endif
103 int qemu_ftruncate64(int, int64_t);
104 #if !defined(ftruncate)
105 # define ftruncate qemu_ftruncate64
106 #endif
107
108 static inline char *realpath(const char *path, char *resolved_path)
109 {
110 _fullpath(resolved_path, path, _MAX_PATH);
111 return resolved_path;
112 }
113 #endif
114
115 /* icount */
116 void configure_icount(const char *option);
117 extern int use_icount;
118
119 /* FIXME: Remove NEED_CPU_H. */
120 #ifndef NEED_CPU_H
121
122 #include "osdep.h"
123 #include "bswap.h"
124
125 #else
126
127 #include "cpu.h"
128
129 #endif /* !defined(NEED_CPU_H) */
130
131 /* main function, renamed */
132 #if defined(CONFIG_COCOA)
133 int qemu_main(int argc, char **argv, char **envp);
134 #endif
135
136 void qemu_get_timedate(struct tm *tm, int offset);
137 int qemu_timedate_diff(struct tm *tm);
138
139 /* cutils.c */
140 void pstrcpy(char *buf, int buf_size, const char *str);
141 void strpadcpy(char *buf, int buf_size, const char *str, char pad);
142 char *pstrcat(char *buf, int buf_size, const char *s);
143 int strstart(const char *str, const char *val, const char **ptr);
144 int stristart(const char *str, const char *val, const char **ptr);
145 int qemu_strnlen(const char *s, int max_len);
146 time_t mktimegm(struct tm *tm);
147 int qemu_fls(int i);
148 int qemu_fdatasync(int fd);
149 int fcntl_setfl(int fd, int flag);
150 int qemu_parse_fd(const char *param);
151
152 /*
153 * strtosz() suffixes used to specify the default treatment of an
154 * argument passed to strtosz() without an explicit suffix.
155 * These should be defined using upper case characters in the range
156 * A-Z, as strtosz() will use qemu_toupper() on the given argument
157 * prior to comparison.
158 */
159 #define STRTOSZ_DEFSUFFIX_TB 'T'
160 #define STRTOSZ_DEFSUFFIX_GB 'G'
161 #define STRTOSZ_DEFSUFFIX_MB 'M'
162 #define STRTOSZ_DEFSUFFIX_KB 'K'
163 #define STRTOSZ_DEFSUFFIX_B 'B'
164 int64_t strtosz(const char *nptr, char **end);
165 int64_t strtosz_suffix(const char *nptr, char **end, const char default_suffix);
166 int64_t strtosz_suffix_unit(const char *nptr, char **end,
167 const char default_suffix, int64_t unit);
168
169 /* path.c */
170 void init_paths(const char *prefix);
171 const char *path(const char *pathname);
172
173 #define qemu_isalnum(c) isalnum((unsigned char)(c))
174 #define qemu_isalpha(c) isalpha((unsigned char)(c))
175 #define qemu_iscntrl(c) iscntrl((unsigned char)(c))
176 #define qemu_isdigit(c) isdigit((unsigned char)(c))
177 #define qemu_isgraph(c) isgraph((unsigned char)(c))
178 #define qemu_islower(c) islower((unsigned char)(c))
179 #define qemu_isprint(c) isprint((unsigned char)(c))
180 #define qemu_ispunct(c) ispunct((unsigned char)(c))
181 #define qemu_isspace(c) isspace((unsigned char)(c))
182 #define qemu_isupper(c) isupper((unsigned char)(c))
183 #define qemu_isxdigit(c) isxdigit((unsigned char)(c))
184 #define qemu_tolower(c) tolower((unsigned char)(c))
185 #define qemu_toupper(c) toupper((unsigned char)(c))
186 #define qemu_isascii(c) isascii((unsigned char)(c))
187 #define qemu_toascii(c) toascii((unsigned char)(c))
188
189 void *qemu_oom_check(void *ptr);
190
191 int qemu_open(const char *name, int flags, ...);
192 ssize_t qemu_write_full(int fd, const void *buf, size_t count)
193 QEMU_WARN_UNUSED_RESULT;
194 ssize_t qemu_send_full(int fd, const void *buf, size_t count, int flags)
195 QEMU_WARN_UNUSED_RESULT;
196 ssize_t qemu_recv_full(int fd, void *buf, size_t count, int flags)
197 QEMU_WARN_UNUSED_RESULT;
198
199 #ifndef _WIN32
200 int qemu_eventfd(int pipefd[2]);
201 int qemu_pipe(int pipefd[2]);
202 #endif
203
204 #ifdef _WIN32
205 #define qemu_recv(sockfd, buf, len, flags) recv(sockfd, (void *)buf, len, flags)
206 #else
207 #define qemu_recv(sockfd, buf, len, flags) recv(sockfd, buf, len, flags)
208 #endif
209
210 /* Error handling. */
211
212 void QEMU_NORETURN hw_error(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
213
214 struct ParallelIOArg {
215 void *buffer;
216 int count;
217 };
218
219 typedef int (*DMA_transfer_handler) (void *opaque, int nchan, int pos, int size);
220
221 /* A load of opaque types so that device init declarations don't have to
222 pull in all the real definitions. */
223 typedef struct NICInfo NICInfo;
224 typedef struct HCIInfo HCIInfo;
225 typedef struct AudioState AudioState;
226 typedef struct BlockDriverState BlockDriverState;
227 typedef struct DriveInfo DriveInfo;
228 typedef struct DisplayState DisplayState;
229 typedef struct DisplayChangeListener DisplayChangeListener;
230 typedef struct DisplaySurface DisplaySurface;
231 typedef struct DisplayAllocator DisplayAllocator;
232 typedef struct PixelFormat PixelFormat;
233 typedef struct TextConsole TextConsole;
234 typedef TextConsole QEMUConsole;
235 typedef struct CharDriverState CharDriverState;
236 typedef struct MACAddr MACAddr;
237 typedef struct VLANClientState VLANClientState;
238 typedef struct i2c_bus i2c_bus;
239 typedef struct ISABus ISABus;
240 typedef struct ISADevice ISADevice;
241 typedef struct SMBusDevice SMBusDevice;
242 typedef struct PCIHostState PCIHostState;
243 typedef struct PCIExpressHost PCIExpressHost;
244 typedef struct PCIBus PCIBus;
245 typedef struct PCIDevice PCIDevice;
246 typedef struct PCIExpressDevice PCIExpressDevice;
247 typedef struct PCIBridge PCIBridge;
248 typedef struct PCIEAERMsg PCIEAERMsg;
249 typedef struct PCIEAERLog PCIEAERLog;
250 typedef struct PCIEAERErr PCIEAERErr;
251 typedef struct PCIEPort PCIEPort;
252 typedef struct PCIESlot PCIESlot;
253 typedef struct MSIMessage MSIMessage;
254 typedef struct SerialState SerialState;
255 typedef struct IRQState *qemu_irq;
256 typedef struct PCMCIACardState PCMCIACardState;
257 typedef struct MouseTransformInfo MouseTransformInfo;
258 typedef struct uWireSlave uWireSlave;
259 typedef struct I2SCodec I2SCodec;
260 typedef struct SSIBus SSIBus;
261 typedef struct EventNotifier EventNotifier;
262 typedef struct VirtIODevice VirtIODevice;
263 typedef struct QEMUSGList QEMUSGList;
264 typedef struct SHPCDevice SHPCDevice;
265
266 typedef uint64_t pcibus_t;
267
268 typedef enum LostTickPolicy {
269 LOST_TICK_DISCARD,
270 LOST_TICK_DELAY,
271 LOST_TICK_MERGE,
272 LOST_TICK_SLEW,
273 LOST_TICK_MAX
274 } LostTickPolicy;
275
276 typedef struct PCIHostDeviceAddress {
277 unsigned int domain;
278 unsigned int bus;
279 unsigned int slot;
280 unsigned int function;
281 } PCIHostDeviceAddress;
282
283 void tcg_exec_init(unsigned long tb_size);
284 bool tcg_enabled(void);
285
286 void cpu_exec_init_all(void);
287
288 /* CPU save/load. */
289 void cpu_save(QEMUFile *f, void *opaque);
290 int cpu_load(QEMUFile *f, void *opaque, int version_id);
291
292 /* Unblock cpu */
293 void qemu_cpu_kick(void *env);
294 void qemu_cpu_kick_self(void);
295 int qemu_cpu_is_self(void *env);
296
297 /* work queue */
298 struct qemu_work_item {
299 struct qemu_work_item *next;
300 void (*func)(void *data);
301 void *data;
302 int done;
303 };
304
305 #ifdef CONFIG_USER_ONLY
306 #define qemu_init_vcpu(env) do { } while (0)
307 #else
308 void qemu_init_vcpu(void *env);
309 #endif
310
311
312 /**
313 * Sends a (part of) iovec down a socket, yielding when the socket is full, or
314 * Receives data into a (part of) iovec from a socket,
315 * yielding when there is no data in the socket.
316 * The same interface as qemu_sendv_recvv(), with added yielding.
317 * XXX should mark these as coroutine_fn
318 */
319 ssize_t qemu_co_sendv_recvv(int sockfd, struct iovec *iov, unsigned iov_cnt,
320 size_t offset, size_t bytes, bool do_send);
321 #define qemu_co_recvv(sockfd, iov, iov_cnt, offset, bytes) \
322 qemu_co_sendv_recvv(sockfd, iov, iov_cnt, offset, bytes, false)
323 #define qemu_co_sendv(sockfd, iov, iov_cnt, offset, bytes) \
324 qemu_co_sendv_recvv(sockfd, iov, iov_cnt, offset, bytes, true)
325
326 /**
327 * The same as above, but with just a single buffer
328 */
329 ssize_t qemu_co_send_recv(int sockfd, void *buf, size_t bytes, bool do_send);
330 #define qemu_co_recv(sockfd, buf, bytes) \
331 qemu_co_send_recv(sockfd, buf, bytes, false)
332 #define qemu_co_send(sockfd, buf, bytes) \
333 qemu_co_send_recv(sockfd, buf, bytes, true)
334
335 typedef struct QEMUIOVector {
336 struct iovec *iov;
337 int niov;
338 int nalloc;
339 size_t size;
340 } QEMUIOVector;
341
342 void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint);
343 void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov);
344 void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len);
345 void qemu_iovec_concat(QEMUIOVector *dst,
346 QEMUIOVector *src, size_t soffset, size_t sbytes);
347 void qemu_iovec_destroy(QEMUIOVector *qiov);
348 void qemu_iovec_reset(QEMUIOVector *qiov);
349 size_t qemu_iovec_to_buf(QEMUIOVector *qiov, size_t offset,
350 void *buf, size_t bytes);
351 size_t qemu_iovec_from_buf(QEMUIOVector *qiov, size_t offset,
352 const void *buf, size_t bytes);
353 size_t qemu_iovec_memset(QEMUIOVector *qiov, size_t offset,
354 int fillc, size_t bytes);
355
356 bool buffer_is_zero(const void *buf, size_t len);
357
358 void qemu_progress_init(int enabled, float min_skip);
359 void qemu_progress_end(void);
360 void qemu_progress_print(float delta, int max);
361
362 #define QEMU_FILE_TYPE_BIOS 0
363 #define QEMU_FILE_TYPE_KEYMAP 1
364 char *qemu_find_file(int type, const char *name);
365
366 /* OS specific functions */
367 void os_setup_early_signal_handling(void);
368 char *os_find_datadir(const char *argv0);
369 void os_parse_cmd_args(int index, const char *optarg);
370 void os_pidfile_error(void);
371
372 /* Convert a byte between binary and BCD. */
373 static inline uint8_t to_bcd(uint8_t val)
374 {
375 return ((val / 10) << 4) | (val % 10);
376 }
377
378 static inline uint8_t from_bcd(uint8_t val)
379 {
380 return ((val >> 4) * 10) + (val & 0x0f);
381 }
382
383 /* compute with 96 bit intermediate result: (a*b)/c */
384 static inline uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
385 {
386 union {
387 uint64_t ll;
388 struct {
389 #ifdef HOST_WORDS_BIGENDIAN
390 uint32_t high, low;
391 #else
392 uint32_t low, high;
393 #endif
394 } l;
395 } u, res;
396 uint64_t rl, rh;
397
398 u.ll = a;
399 rl = (uint64_t)u.l.low * (uint64_t)b;
400 rh = (uint64_t)u.l.high * (uint64_t)b;
401 rh += (rl >> 32);
402 res.l.high = rh / c;
403 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
404 return res.ll;
405 }
406
407 /* Round number down to multiple */
408 #define QEMU_ALIGN_DOWN(n, m) ((n) / (m) * (m))
409
410 /* Round number up to multiple */
411 #define QEMU_ALIGN_UP(n, m) QEMU_ALIGN_DOWN((n) + (m) - 1, (m))
412
413 #include "module.h"
414
415 #endif