]> git.proxmox.com Git - qemu.git/blob - qemu-common.h
Merge remote-tracking branch 'bonzini/scsi-next' into staging
[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 /**
140 * is_help_option:
141 * @s: string to test
142 *
143 * Check whether @s is one of the standard strings which indicate
144 * that the user is asking for a list of the valid values for a
145 * command option like -cpu or -M. The current accepted strings
146 * are 'help' and '?'. '?' is deprecated (it is a shell wildcard
147 * which makes it annoying to use in a reliable way) but provided
148 * for backwards compatibility.
149 *
150 * Returns: true if @s is a request for a list.
151 */
152 static inline bool is_help_option(const char *s)
153 {
154 return !strcmp(s, "?") || !strcmp(s, "help");
155 }
156
157 /* cutils.c */
158 void pstrcpy(char *buf, int buf_size, const char *str);
159 void strpadcpy(char *buf, int buf_size, const char *str, char pad);
160 char *pstrcat(char *buf, int buf_size, const char *s);
161 int strstart(const char *str, const char *val, const char **ptr);
162 int stristart(const char *str, const char *val, const char **ptr);
163 int qemu_strnlen(const char *s, int max_len);
164 time_t mktimegm(struct tm *tm);
165 int qemu_fls(int i);
166 int qemu_fdatasync(int fd);
167 int fcntl_setfl(int fd, int flag);
168 int qemu_parse_fd(const char *param);
169
170 /*
171 * strtosz() suffixes used to specify the default treatment of an
172 * argument passed to strtosz() without an explicit suffix.
173 * These should be defined using upper case characters in the range
174 * A-Z, as strtosz() will use qemu_toupper() on the given argument
175 * prior to comparison.
176 */
177 #define STRTOSZ_DEFSUFFIX_TB 'T'
178 #define STRTOSZ_DEFSUFFIX_GB 'G'
179 #define STRTOSZ_DEFSUFFIX_MB 'M'
180 #define STRTOSZ_DEFSUFFIX_KB 'K'
181 #define STRTOSZ_DEFSUFFIX_B 'B'
182 int64_t strtosz(const char *nptr, char **end);
183 int64_t strtosz_suffix(const char *nptr, char **end, const char default_suffix);
184 int64_t strtosz_suffix_unit(const char *nptr, char **end,
185 const char default_suffix, int64_t unit);
186
187 /* path.c */
188 void init_paths(const char *prefix);
189 const char *path(const char *pathname);
190
191 #define qemu_isalnum(c) isalnum((unsigned char)(c))
192 #define qemu_isalpha(c) isalpha((unsigned char)(c))
193 #define qemu_iscntrl(c) iscntrl((unsigned char)(c))
194 #define qemu_isdigit(c) isdigit((unsigned char)(c))
195 #define qemu_isgraph(c) isgraph((unsigned char)(c))
196 #define qemu_islower(c) islower((unsigned char)(c))
197 #define qemu_isprint(c) isprint((unsigned char)(c))
198 #define qemu_ispunct(c) ispunct((unsigned char)(c))
199 #define qemu_isspace(c) isspace((unsigned char)(c))
200 #define qemu_isupper(c) isupper((unsigned char)(c))
201 #define qemu_isxdigit(c) isxdigit((unsigned char)(c))
202 #define qemu_tolower(c) tolower((unsigned char)(c))
203 #define qemu_toupper(c) toupper((unsigned char)(c))
204 #define qemu_isascii(c) isascii((unsigned char)(c))
205 #define qemu_toascii(c) toascii((unsigned char)(c))
206
207 void *qemu_oom_check(void *ptr);
208
209 int qemu_open(const char *name, int flags, ...);
210 ssize_t qemu_write_full(int fd, const void *buf, size_t count)
211 QEMU_WARN_UNUSED_RESULT;
212 ssize_t qemu_send_full(int fd, const void *buf, size_t count, int flags)
213 QEMU_WARN_UNUSED_RESULT;
214 ssize_t qemu_recv_full(int fd, void *buf, size_t count, int flags)
215 QEMU_WARN_UNUSED_RESULT;
216
217 #ifndef _WIN32
218 int qemu_eventfd(int pipefd[2]);
219 int qemu_pipe(int pipefd[2]);
220 #endif
221
222 #ifdef _WIN32
223 #define qemu_recv(sockfd, buf, len, flags) recv(sockfd, (void *)buf, len, flags)
224 #else
225 #define qemu_recv(sockfd, buf, len, flags) recv(sockfd, buf, len, flags)
226 #endif
227
228 /* Error handling. */
229
230 void QEMU_NORETURN hw_error(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
231
232 struct ParallelIOArg {
233 void *buffer;
234 int count;
235 };
236
237 typedef int (*DMA_transfer_handler) (void *opaque, int nchan, int pos, int size);
238
239 /* A load of opaque types so that device init declarations don't have to
240 pull in all the real definitions. */
241 typedef struct NICInfo NICInfo;
242 typedef struct HCIInfo HCIInfo;
243 typedef struct AudioState AudioState;
244 typedef struct BlockDriverState BlockDriverState;
245 typedef struct DriveInfo DriveInfo;
246 typedef struct DisplayState DisplayState;
247 typedef struct DisplayChangeListener DisplayChangeListener;
248 typedef struct DisplaySurface DisplaySurface;
249 typedef struct DisplayAllocator DisplayAllocator;
250 typedef struct PixelFormat PixelFormat;
251 typedef struct TextConsole TextConsole;
252 typedef TextConsole QEMUConsole;
253 typedef struct CharDriverState CharDriverState;
254 typedef struct MACAddr MACAddr;
255 typedef struct NetClientState NetClientState;
256 typedef struct i2c_bus i2c_bus;
257 typedef struct ISABus ISABus;
258 typedef struct ISADevice ISADevice;
259 typedef struct SMBusDevice SMBusDevice;
260 typedef struct PCIHostState PCIHostState;
261 typedef struct PCIExpressHost PCIExpressHost;
262 typedef struct PCIBus PCIBus;
263 typedef struct PCIDevice PCIDevice;
264 typedef struct PCIExpressDevice PCIExpressDevice;
265 typedef struct PCIBridge PCIBridge;
266 typedef struct PCIEAERMsg PCIEAERMsg;
267 typedef struct PCIEAERLog PCIEAERLog;
268 typedef struct PCIEAERErr PCIEAERErr;
269 typedef struct PCIEPort PCIEPort;
270 typedef struct PCIESlot PCIESlot;
271 typedef struct MSIMessage MSIMessage;
272 typedef struct SerialState SerialState;
273 typedef struct IRQState *qemu_irq;
274 typedef struct PCMCIACardState PCMCIACardState;
275 typedef struct MouseTransformInfo MouseTransformInfo;
276 typedef struct uWireSlave uWireSlave;
277 typedef struct I2SCodec I2SCodec;
278 typedef struct SSIBus SSIBus;
279 typedef struct EventNotifier EventNotifier;
280 typedef struct VirtIODevice VirtIODevice;
281 typedef struct QEMUSGList QEMUSGList;
282 typedef struct SHPCDevice SHPCDevice;
283
284 typedef uint64_t pcibus_t;
285
286 typedef enum LostTickPolicy {
287 LOST_TICK_DISCARD,
288 LOST_TICK_DELAY,
289 LOST_TICK_MERGE,
290 LOST_TICK_SLEW,
291 LOST_TICK_MAX
292 } LostTickPolicy;
293
294 typedef struct PCIHostDeviceAddress {
295 unsigned int domain;
296 unsigned int bus;
297 unsigned int slot;
298 unsigned int function;
299 } PCIHostDeviceAddress;
300
301 void tcg_exec_init(unsigned long tb_size);
302 bool tcg_enabled(void);
303
304 void cpu_exec_init_all(void);
305
306 /* CPU save/load. */
307 void cpu_save(QEMUFile *f, void *opaque);
308 int cpu_load(QEMUFile *f, void *opaque, int version_id);
309
310 /* Unblock cpu */
311 void qemu_cpu_kick(void *env);
312 void qemu_cpu_kick_self(void);
313 int qemu_cpu_is_self(void *env);
314
315 /* work queue */
316 struct qemu_work_item {
317 struct qemu_work_item *next;
318 void (*func)(void *data);
319 void *data;
320 int done;
321 };
322
323 #ifdef CONFIG_USER_ONLY
324 #define qemu_init_vcpu(env) do { } while (0)
325 #else
326 void qemu_init_vcpu(void *env);
327 #endif
328
329
330 /**
331 * Sends a (part of) iovec down a socket, yielding when the socket is full, or
332 * Receives data into a (part of) iovec from a socket,
333 * yielding when there is no data in the socket.
334 * The same interface as qemu_sendv_recvv(), with added yielding.
335 * XXX should mark these as coroutine_fn
336 */
337 ssize_t qemu_co_sendv_recvv(int sockfd, struct iovec *iov, unsigned iov_cnt,
338 size_t offset, size_t bytes, bool do_send);
339 #define qemu_co_recvv(sockfd, iov, iov_cnt, offset, bytes) \
340 qemu_co_sendv_recvv(sockfd, iov, iov_cnt, offset, bytes, false)
341 #define qemu_co_sendv(sockfd, iov, iov_cnt, offset, bytes) \
342 qemu_co_sendv_recvv(sockfd, iov, iov_cnt, offset, bytes, true)
343
344 /**
345 * The same as above, but with just a single buffer
346 */
347 ssize_t qemu_co_send_recv(int sockfd, void *buf, size_t bytes, bool do_send);
348 #define qemu_co_recv(sockfd, buf, bytes) \
349 qemu_co_send_recv(sockfd, buf, bytes, false)
350 #define qemu_co_send(sockfd, buf, bytes) \
351 qemu_co_send_recv(sockfd, buf, bytes, true)
352
353 typedef struct QEMUIOVector {
354 struct iovec *iov;
355 int niov;
356 int nalloc;
357 size_t size;
358 } QEMUIOVector;
359
360 void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint);
361 void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov);
362 void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len);
363 void qemu_iovec_concat(QEMUIOVector *dst,
364 QEMUIOVector *src, size_t soffset, size_t sbytes);
365 void qemu_iovec_destroy(QEMUIOVector *qiov);
366 void qemu_iovec_reset(QEMUIOVector *qiov);
367 size_t qemu_iovec_to_buf(QEMUIOVector *qiov, size_t offset,
368 void *buf, size_t bytes);
369 size_t qemu_iovec_from_buf(QEMUIOVector *qiov, size_t offset,
370 const void *buf, size_t bytes);
371 size_t qemu_iovec_memset(QEMUIOVector *qiov, size_t offset,
372 int fillc, size_t bytes);
373
374 bool buffer_is_zero(const void *buf, size_t len);
375
376 void qemu_progress_init(int enabled, float min_skip);
377 void qemu_progress_end(void);
378 void qemu_progress_print(float delta, int max);
379 const char *qemu_get_vm_name(void);
380
381 #define QEMU_FILE_TYPE_BIOS 0
382 #define QEMU_FILE_TYPE_KEYMAP 1
383 char *qemu_find_file(int type, const char *name);
384
385 /* OS specific functions */
386 void os_setup_early_signal_handling(void);
387 char *os_find_datadir(const char *argv0);
388 void os_parse_cmd_args(int index, const char *optarg);
389 void os_pidfile_error(void);
390
391 /* Convert a byte between binary and BCD. */
392 static inline uint8_t to_bcd(uint8_t val)
393 {
394 return ((val / 10) << 4) | (val % 10);
395 }
396
397 static inline uint8_t from_bcd(uint8_t val)
398 {
399 return ((val >> 4) * 10) + (val & 0x0f);
400 }
401
402 /* compute with 96 bit intermediate result: (a*b)/c */
403 static inline uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
404 {
405 union {
406 uint64_t ll;
407 struct {
408 #ifdef HOST_WORDS_BIGENDIAN
409 uint32_t high, low;
410 #else
411 uint32_t low, high;
412 #endif
413 } l;
414 } u, res;
415 uint64_t rl, rh;
416
417 u.ll = a;
418 rl = (uint64_t)u.l.low * (uint64_t)b;
419 rh = (uint64_t)u.l.high * (uint64_t)b;
420 rh += (rl >> 32);
421 res.l.high = rh / c;
422 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
423 return res.ll;
424 }
425
426 /* Round number down to multiple */
427 #define QEMU_ALIGN_DOWN(n, m) ((n) / (m) * (m))
428
429 /* Round number up to multiple */
430 #define QEMU_ALIGN_UP(n, m) QEMU_ALIGN_DOWN((n) + (m) - 1, (m))
431
432 #include "module.h"
433
434 #endif