]> git.proxmox.com Git - qemu.git/blob - include/qemu-common.h
cutils: Support 'P' and 'E' suffixes in strtosz()
[qemu.git] / include / qemu-common.h
1
2 /* Common header file that is included by all of QEMU.
3 *
4 * This file is supposed to be included only by .c files. No header file should
5 * depend on qemu-common.h, as this would easily lead to circular header
6 * dependencies.
7 *
8 * If a header file uses a definition from qemu-common.h, that definition
9 * must be moved to a separate header file, and the header that uses it
10 * must include that header.
11 */
12 #ifndef QEMU_COMMON_H
13 #define QEMU_COMMON_H
14
15 #include "qemu/compiler.h"
16 #include "config-host.h"
17 #include "qemu/typedefs.h"
18
19 #if defined(__arm__) || defined(__sparc__) || defined(__mips__) || defined(__hppa__) || defined(__ia64__)
20 #define WORDS_ALIGNED
21 #endif
22
23 #define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR)
24
25 /* we put basic includes here to avoid repeating them in device drivers */
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <stdarg.h>
29 #include <stdbool.h>
30 #include <string.h>
31 #include <strings.h>
32 #include <inttypes.h>
33 #include <limits.h>
34 #include <time.h>
35 #include <ctype.h>
36 #include <errno.h>
37 #include <unistd.h>
38 #include <fcntl.h>
39 #include <sys/stat.h>
40 #include <sys/time.h>
41 #include <assert.h>
42 #include <signal.h>
43 #include "glib-compat.h"
44
45 #if defined(__GLIBC__)
46 # include <pty.h>
47 #elif defined CONFIG_BSD
48 # include <termios.h>
49 # if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
50 # include <libutil.h>
51 # else
52 # include <util.h>
53 # endif
54 #elif defined CONFIG_SOLARIS
55 # include <stropts.h>
56 #endif
57
58 #ifdef _WIN32
59 #include "sysemu/os-win32.h"
60 #endif
61
62 #ifdef CONFIG_POSIX
63 #include "sysemu/os-posix.h"
64 #endif
65
66 #ifndef O_LARGEFILE
67 #define O_LARGEFILE 0
68 #endif
69 #ifndef O_BINARY
70 #define O_BINARY 0
71 #endif
72 #ifndef MAP_ANONYMOUS
73 #define MAP_ANONYMOUS MAP_ANON
74 #endif
75 #ifndef ENOMEDIUM
76 #define ENOMEDIUM ENODEV
77 #endif
78 #if !defined(ENOTSUP)
79 #define ENOTSUP 4096
80 #endif
81 #if !defined(ECANCELED)
82 #define ECANCELED 4097
83 #endif
84 #if !defined(EMEDIUMTYPE)
85 #define EMEDIUMTYPE 4098
86 #endif
87 #ifndef TIME_MAX
88 #define TIME_MAX LONG_MAX
89 #endif
90
91 /* HOST_LONG_BITS is the size of a native pointer in bits. */
92 #if UINTPTR_MAX == UINT32_MAX
93 # define HOST_LONG_BITS 32
94 #elif UINTPTR_MAX == UINT64_MAX
95 # define HOST_LONG_BITS 64
96 #else
97 # error Unknown pointer size
98 #endif
99
100 typedef int (*fprintf_function)(FILE *f, const char *fmt, ...)
101 GCC_FMT_ATTR(2, 3);
102
103 #ifdef _WIN32
104 #define fsync _commit
105 #if !defined(lseek)
106 # define lseek _lseeki64
107 #endif
108 int qemu_ftruncate64(int, int64_t);
109 #if !defined(ftruncate)
110 # define ftruncate qemu_ftruncate64
111 #endif
112
113 static inline char *realpath(const char *path, char *resolved_path)
114 {
115 _fullpath(resolved_path, path, _MAX_PATH);
116 return resolved_path;
117 }
118 #endif
119
120 /* icount */
121 void configure_icount(const char *option);
122 extern int use_icount;
123
124 #include "qemu/osdep.h"
125 #include "qemu/bswap.h"
126
127 /* FIXME: Remove NEED_CPU_H. */
128 #ifdef NEED_CPU_H
129 #include "cpu.h"
130 #endif /* !defined(NEED_CPU_H) */
131
132 /* main function, renamed */
133 #if defined(CONFIG_COCOA)
134 int qemu_main(int argc, char **argv, char **envp);
135 #endif
136
137 void qemu_get_timedate(struct tm *tm, int offset);
138 int qemu_timedate_diff(struct tm *tm);
139
140 #if !GLIB_CHECK_VERSION(2, 20, 0)
141 /*
142 * Glib before 2.20.0 doesn't implement g_poll, so wrap it to compile properly
143 * on older systems.
144 */
145 static inline gint g_poll(GPollFD *fds, guint nfds, gint timeout)
146 {
147 GMainContext *ctx = g_main_context_default();
148 return g_main_context_get_poll_func(ctx)(fds, nfds, timeout);
149 }
150 #endif
151
152 /**
153 * is_help_option:
154 * @s: string to test
155 *
156 * Check whether @s is one of the standard strings which indicate
157 * that the user is asking for a list of the valid values for a
158 * command option like -cpu or -M. The current accepted strings
159 * are 'help' and '?'. '?' is deprecated (it is a shell wildcard
160 * which makes it annoying to use in a reliable way) but provided
161 * for backwards compatibility.
162 *
163 * Returns: true if @s is a request for a list.
164 */
165 static inline bool is_help_option(const char *s)
166 {
167 return !strcmp(s, "?") || !strcmp(s, "help");
168 }
169
170 /* cutils.c */
171 void pstrcpy(char *buf, int buf_size, const char *str);
172 void strpadcpy(char *buf, int buf_size, const char *str, char pad);
173 char *pstrcat(char *buf, int buf_size, const char *s);
174 int strstart(const char *str, const char *val, const char **ptr);
175 int stristart(const char *str, const char *val, const char **ptr);
176 int qemu_strnlen(const char *s, int max_len);
177 time_t mktimegm(struct tm *tm);
178 int qemu_fls(int i);
179 int qemu_fdatasync(int fd);
180 int fcntl_setfl(int fd, int flag);
181 int qemu_parse_fd(const char *param);
182
183 int parse_uint(const char *s, unsigned long long *value, char **endptr,
184 int base);
185 int parse_uint_full(const char *s, unsigned long long *value, int base);
186
187 /*
188 * strtosz() suffixes used to specify the default treatment of an
189 * argument passed to strtosz() without an explicit suffix.
190 * These should be defined using upper case characters in the range
191 * A-Z, as strtosz() will use qemu_toupper() on the given argument
192 * prior to comparison.
193 */
194 #define STRTOSZ_DEFSUFFIX_EB 'E'
195 #define STRTOSZ_DEFSUFFIX_PB 'P'
196 #define STRTOSZ_DEFSUFFIX_TB 'T'
197 #define STRTOSZ_DEFSUFFIX_GB 'G'
198 #define STRTOSZ_DEFSUFFIX_MB 'M'
199 #define STRTOSZ_DEFSUFFIX_KB 'K'
200 #define STRTOSZ_DEFSUFFIX_B 'B'
201 int64_t strtosz(const char *nptr, char **end);
202 int64_t strtosz_suffix(const char *nptr, char **end, const char default_suffix);
203 int64_t strtosz_suffix_unit(const char *nptr, char **end,
204 const char default_suffix, int64_t unit);
205
206 /* path.c */
207 void init_paths(const char *prefix);
208 const char *path(const char *pathname);
209
210 #define qemu_isalnum(c) isalnum((unsigned char)(c))
211 #define qemu_isalpha(c) isalpha((unsigned char)(c))
212 #define qemu_iscntrl(c) iscntrl((unsigned char)(c))
213 #define qemu_isdigit(c) isdigit((unsigned char)(c))
214 #define qemu_isgraph(c) isgraph((unsigned char)(c))
215 #define qemu_islower(c) islower((unsigned char)(c))
216 #define qemu_isprint(c) isprint((unsigned char)(c))
217 #define qemu_ispunct(c) ispunct((unsigned char)(c))
218 #define qemu_isspace(c) isspace((unsigned char)(c))
219 #define qemu_isupper(c) isupper((unsigned char)(c))
220 #define qemu_isxdigit(c) isxdigit((unsigned char)(c))
221 #define qemu_tolower(c) tolower((unsigned char)(c))
222 #define qemu_toupper(c) toupper((unsigned char)(c))
223 #define qemu_isascii(c) isascii((unsigned char)(c))
224 #define qemu_toascii(c) toascii((unsigned char)(c))
225
226 void *qemu_oom_check(void *ptr);
227
228 ssize_t qemu_write_full(int fd, const void *buf, size_t count)
229 QEMU_WARN_UNUSED_RESULT;
230 ssize_t qemu_send_full(int fd, const void *buf, size_t count, int flags)
231 QEMU_WARN_UNUSED_RESULT;
232 ssize_t qemu_recv_full(int fd, void *buf, size_t count, int flags)
233 QEMU_WARN_UNUSED_RESULT;
234
235 #ifndef _WIN32
236 int qemu_pipe(int pipefd[2]);
237 #endif
238
239 #ifdef _WIN32
240 /* MinGW needs type casts for the 'buf' and 'optval' arguments. */
241 #define qemu_getsockopt(sockfd, level, optname, optval, optlen) \
242 getsockopt(sockfd, level, optname, (void *)optval, optlen)
243 #define qemu_setsockopt(sockfd, level, optname, optval, optlen) \
244 setsockopt(sockfd, level, optname, (const void *)optval, optlen)
245 #define qemu_recv(sockfd, buf, len, flags) recv(sockfd, (void *)buf, len, flags)
246 #define qemu_sendto(sockfd, buf, len, flags, destaddr, addrlen) \
247 sendto(sockfd, (const void *)buf, len, flags, destaddr, addrlen)
248 #else
249 #define qemu_getsockopt(sockfd, level, optname, optval, optlen) \
250 getsockopt(sockfd, level, optname, optval, optlen)
251 #define qemu_setsockopt(sockfd, level, optname, optval, optlen) \
252 setsockopt(sockfd, level, optname, optval, optlen)
253 #define qemu_recv(sockfd, buf, len, flags) recv(sockfd, buf, len, flags)
254 #define qemu_sendto(sockfd, buf, len, flags, destaddr, addrlen) \
255 sendto(sockfd, buf, len, flags, destaddr, addrlen)
256 #endif
257
258 /* Error handling. */
259
260 void QEMU_NORETURN hw_error(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
261
262 struct ParallelIOArg {
263 void *buffer;
264 int count;
265 };
266
267 typedef int (*DMA_transfer_handler) (void *opaque, int nchan, int pos, int size);
268
269 typedef uint64_t pcibus_t;
270
271 typedef enum LostTickPolicy {
272 LOST_TICK_DISCARD,
273 LOST_TICK_DELAY,
274 LOST_TICK_MERGE,
275 LOST_TICK_SLEW,
276 LOST_TICK_MAX
277 } LostTickPolicy;
278
279 typedef struct PCIHostDeviceAddress {
280 unsigned int domain;
281 unsigned int bus;
282 unsigned int slot;
283 unsigned int function;
284 } PCIHostDeviceAddress;
285
286 void tcg_exec_init(unsigned long tb_size);
287 bool tcg_enabled(void);
288
289 void cpu_exec_init_all(void);
290
291 /* CPU save/load. */
292 void cpu_save(QEMUFile *f, void *opaque);
293 int cpu_load(QEMUFile *f, void *opaque, int version_id);
294
295 /* Unblock cpu */
296 void qemu_cpu_kick_self(void);
297
298 /* work queue */
299 struct qemu_work_item {
300 struct qemu_work_item *next;
301 void (*func)(void *data);
302 void *data;
303 int done;
304 };
305
306 #ifdef CONFIG_USER_ONLY
307 static inline void qemu_init_vcpu(void *env)
308 {
309 }
310 #else
311 void qemu_init_vcpu(void *env);
312 #endif
313
314
315 /**
316 * Sends a (part of) iovec down a socket, yielding when the socket is full, or
317 * Receives data into a (part of) iovec from a socket,
318 * yielding when there is no data in the socket.
319 * The same interface as qemu_sendv_recvv(), with added yielding.
320 * XXX should mark these as coroutine_fn
321 */
322 ssize_t qemu_co_sendv_recvv(int sockfd, struct iovec *iov, unsigned iov_cnt,
323 size_t offset, size_t bytes, bool do_send);
324 #define qemu_co_recvv(sockfd, iov, iov_cnt, offset, bytes) \
325 qemu_co_sendv_recvv(sockfd, iov, iov_cnt, offset, bytes, false)
326 #define qemu_co_sendv(sockfd, iov, iov_cnt, offset, bytes) \
327 qemu_co_sendv_recvv(sockfd, iov, iov_cnt, offset, bytes, true)
328
329 /**
330 * The same as above, but with just a single buffer
331 */
332 ssize_t qemu_co_send_recv(int sockfd, void *buf, size_t bytes, bool do_send);
333 #define qemu_co_recv(sockfd, buf, bytes) \
334 qemu_co_send_recv(sockfd, buf, bytes, false)
335 #define qemu_co_send(sockfd, buf, bytes) \
336 qemu_co_send_recv(sockfd, buf, bytes, true)
337
338 typedef struct QEMUIOVector {
339 struct iovec *iov;
340 int niov;
341 int nalloc;
342 size_t size;
343 } QEMUIOVector;
344
345 void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint);
346 void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov);
347 void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len);
348 void qemu_iovec_concat(QEMUIOVector *dst,
349 QEMUIOVector *src, size_t soffset, size_t sbytes);
350 void qemu_iovec_concat_iov(QEMUIOVector *dst,
351 struct iovec *src_iov, unsigned int src_cnt,
352 size_t soffset, size_t sbytes);
353 void qemu_iovec_destroy(QEMUIOVector *qiov);
354 void qemu_iovec_reset(QEMUIOVector *qiov);
355 size_t qemu_iovec_to_buf(QEMUIOVector *qiov, size_t offset,
356 void *buf, size_t bytes);
357 size_t qemu_iovec_from_buf(QEMUIOVector *qiov, size_t offset,
358 const void *buf, size_t bytes);
359 size_t qemu_iovec_memset(QEMUIOVector *qiov, size_t offset,
360 int fillc, size_t bytes);
361
362 bool buffer_is_zero(const void *buf, size_t len);
363
364 void qemu_progress_init(int enabled, float min_skip);
365 void qemu_progress_end(void);
366 void qemu_progress_print(float delta, int max);
367 const char *qemu_get_vm_name(void);
368
369 #define QEMU_FILE_TYPE_BIOS 0
370 #define QEMU_FILE_TYPE_KEYMAP 1
371 char *qemu_find_file(int type, const char *name);
372
373 /* OS specific functions */
374 void os_setup_early_signal_handling(void);
375 char *os_find_datadir(const char *argv0);
376 void os_parse_cmd_args(int index, const char *optarg);
377 void os_pidfile_error(void);
378
379 /* Convert a byte between binary and BCD. */
380 static inline uint8_t to_bcd(uint8_t val)
381 {
382 return ((val / 10) << 4) | (val % 10);
383 }
384
385 static inline uint8_t from_bcd(uint8_t val)
386 {
387 return ((val >> 4) * 10) + (val & 0x0f);
388 }
389
390 /* compute with 96 bit intermediate result: (a*b)/c */
391 static inline uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
392 {
393 union {
394 uint64_t ll;
395 struct {
396 #ifdef HOST_WORDS_BIGENDIAN
397 uint32_t high, low;
398 #else
399 uint32_t low, high;
400 #endif
401 } l;
402 } u, res;
403 uint64_t rl, rh;
404
405 u.ll = a;
406 rl = (uint64_t)u.l.low * (uint64_t)b;
407 rh = (uint64_t)u.l.high * (uint64_t)b;
408 rh += (rl >> 32);
409 res.l.high = rh / c;
410 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
411 return res.ll;
412 }
413
414 /* Round number down to multiple */
415 #define QEMU_ALIGN_DOWN(n, m) ((n) / (m) * (m))
416
417 /* Round number up to multiple */
418 #define QEMU_ALIGN_UP(n, m) QEMU_ALIGN_DOWN((n) + (m) - 1, (m))
419
420 static inline bool is_power_of_2(uint64_t value)
421 {
422 if (!value) {
423 return 0;
424 }
425
426 return !(value & (value - 1));
427 }
428
429 /* round down to the nearest power of 2*/
430 int64_t pow2floor(int64_t value);
431
432 #include "qemu/module.h"
433
434 /*
435 * Implementation of ULEB128 (http://en.wikipedia.org/wiki/LEB128)
436 * Input is limited to 14-bit numbers
437 */
438
439 int uleb128_encode_small(uint8_t *out, uint32_t n);
440 int uleb128_decode_small(const uint8_t *in, uint32_t *n);
441
442 /* unicode.c */
443 int mod_utf8_codepoint(const char *s, size_t n, char **end);
444
445 /*
446 * Hexdump a buffer to a file. An optional string prefix is added to every line
447 */
448
449 void qemu_hexdump(const char *buf, FILE *fp, const char *prefix, size_t size);
450
451 /* vector definitions */
452 #ifdef __ALTIVEC__
453 #include <altivec.h>
454 /* The altivec.h header says we're allowed to undef these for
455 * C++ compatibility. Here we don't care about C++, but we
456 * undef them anyway to avoid namespace pollution.
457 */
458 #undef vector
459 #undef pixel
460 #undef bool
461 #define VECTYPE __vector unsigned char
462 #define SPLAT(p) vec_splat(vec_ld(0, p), 0)
463 #define ALL_EQ(v1, v2) vec_all_eq(v1, v2)
464 /* altivec.h may redefine the bool macro as vector type.
465 * Reset it to POSIX semantics. */
466 #define bool _Bool
467 #elif defined __SSE2__
468 #include <emmintrin.h>
469 #define VECTYPE __m128i
470 #define SPLAT(p) _mm_set1_epi8(*(p))
471 #define ALL_EQ(v1, v2) (_mm_movemask_epi8(_mm_cmpeq_epi8(v1, v2)) == 0xFFFF)
472 #else
473 #define VECTYPE unsigned long
474 #define SPLAT(p) (*(p) * (~0UL / 255))
475 #define ALL_EQ(v1, v2) ((v1) == (v2))
476 #endif
477
478 #define BUFFER_FIND_NONZERO_OFFSET_UNROLL_FACTOR 8
479 static inline bool
480 can_use_buffer_find_nonzero_offset(const void *buf, size_t len)
481 {
482 return (len % (BUFFER_FIND_NONZERO_OFFSET_UNROLL_FACTOR
483 * sizeof(VECTYPE)) == 0
484 && ((uintptr_t) buf) % sizeof(VECTYPE) == 0);
485 }
486 size_t buffer_find_nonzero_offset(const void *buf, size_t len);
487
488 /*
489 * helper to parse debug environment variables
490 */
491 int parse_debug_env(const char *name, int max, int initial);
492
493 #endif