blob: 12f638336ab620792d107c3e766dc13332b83461 [file] [log] [blame]
bellarde88de092005-02-07 12:35:39 +00001#ifndef QEMU_H
2#define QEMU_H
bellard31e31b82003-02-18 22:55:36 +00003
bellard6180a182003-09-30 21:04:53 +00004#include "cpu.h"
Paolo Bonzinif08b6172014-03-28 19:42:10 +01005#include "exec/cpu_ldst.h"
blueswir1992f48a2007-10-14 16:27:31 +00006
balrog06177d32007-12-24 13:47:52 +00007#undef DEBUG_REMAP
balrog06177d32007-12-24 13:47:52 +00008
Paolo Bonzini022c62c2012-12-17 18:19:49 +01009#include "exec/user/abitypes.h"
blueswir1992f48a2007-10-14 16:27:31 +000010
blueswir1992f48a2007-10-14 16:27:31 +000011#include "syscall_defs.h"
LluĂ­s Vilanova460c5792016-02-01 19:38:42 +010012#include "target_syscall.h"
bellard66fb9762003-03-23 01:06:05 +000013
Peter Maydell400b7f62021-09-08 16:43:57 +010014/*
15 * This is the size of the host kernel's sigset_t, needed where we make
Peter Maydell1d48fdd2016-06-14 12:49:18 +010016 * direct system calls that take a sigset_t pointer and a size.
17 */
18#define SIGSET_T_SIZE (_NSIG / 8)
19
Peter Maydell400b7f62021-09-08 16:43:57 +010020/*
21 * This struct is used to hold certain information about the image.
bellard31e31b82003-02-18 22:55:36 +000022 * Basically, it replicates in user space what would be certain
23 * task_struct fields in the kernel
24 */
25struct image_info {
Richard Henderson9955ffa2010-07-27 10:25:30 -070026 abi_ulong load_bias;
blueswir1992f48a2007-10-14 16:27:31 +000027 abi_ulong load_addr;
28 abi_ulong start_code;
29 abi_ulong end_code;
30 abi_ulong start_data;
31 abi_ulong end_data;
blueswir1992f48a2007-10-14 16:27:31 +000032 abi_ulong brk;
blueswir1992f48a2007-10-14 16:27:31 +000033 abi_ulong start_stack;
Paul Brook97374d32010-06-16 13:03:51 +010034 abi_ulong stack_limit;
blueswir1992f48a2007-10-14 16:27:31 +000035 abi_ulong entry;
36 abi_ulong code_offset;
37 abi_ulong data_offset;
Mika Westerbergedf8e2a2009-04-07 09:57:11 +030038 abi_ulong saved_auxv;
Alexander Graf125b0f52012-01-28 21:12:14 +020039 abi_ulong auxv_len;
Richard Henderson60f1c802022-04-26 19:51:29 -070040 abi_ulong argc;
41 abi_ulong argv;
42 abi_ulong envc;
43 abi_ulong envp;
Richard Henderson7c4ee5b2016-12-15 09:38:11 -080044 abi_ulong file_string;
Paul Brookd8fd2952012-03-30 18:02:50 +010045 uint32_t elf_flags;
Peter Maydell400b7f62021-09-08 16:43:57 +010046 int personality;
Laurent Vivier33143c42018-07-16 21:53:49 +020047 abi_ulong alignment;
Richard Henderson872f3d02022-08-10 23:00:52 -070048 bool exec_stack;
Christophe Lyona99856c2018-04-30 10:03:41 +020049
Richard Henderson60f1c802022-04-26 19:51:29 -070050 /* Generic semihosting knows about these pointers. */
51 abi_ulong arg_strings; /* strings for argv */
52 abi_ulong env_strings; /* strings for envp; ends arg_strings */
53
Christophe Lyona99856c2018-04-30 10:03:41 +020054 /* The fields below are used in FDPIC mode. */
Mike Frysinger1af02e82011-02-07 01:05:50 -050055 abi_ulong loadmap_addr;
56 uint16_t nsegs;
Peter Maydell400b7f62021-09-08 16:43:57 +010057 void *loadsegs;
Mike Frysinger1af02e82011-02-07 01:05:50 -050058 abi_ulong pt_dynamic_addr;
Christophe Lyon3cb10cf2018-04-30 10:03:43 +020059 abi_ulong interpreter_loadmap_addr;
60 abi_ulong interpreter_pt_dynamic_addr;
Mike Frysinger1af02e82011-02-07 01:05:50 -050061 struct image_info *other_info;
Richard Henderson83f990e2020-10-21 10:37:47 -070062
63 /* For target-specific processing of NT_GNU_PROPERTY_TYPE_0. */
64 uint32_t note_flags;
65
Stefan Markovic74cfc702018-10-22 16:43:40 +020066#ifdef TARGET_MIPS
67 int fp_abi;
68 int interp_fp_abi;
69#endif
bellard31e31b82003-02-18 22:55:36 +000070};
71
bellardb346ff42003-06-15 20:05:50 +000072#ifdef TARGET_I386
bellard851e67a2003-03-29 16:53:14 +000073/* Information about the current linux thread */
74struct vm86_saved_state {
75 uint32_t eax; /* return code */
76 uint32_t ebx;
77 uint32_t ecx;
78 uint32_t edx;
79 uint32_t esi;
80 uint32_t edi;
81 uint32_t ebp;
82 uint32_t esp;
83 uint32_t eflags;
84 uint32_t eip;
85 uint16_t cs, ss, ds, es, fs, gs;
86};
bellardb346ff42003-06-15 20:05:50 +000087#endif
bellard851e67a2003-03-29 16:53:14 +000088
Peter Maydell848d72c2013-09-03 20:12:17 +010089#if defined(TARGET_ARM) && defined(TARGET_ABI32)
bellard28c4f362004-02-16 21:47:43 +000090/* FPU emulator */
91#include "nwfpe/fpa11.h"
bellard28c4f362004-02-16 21:47:43 +000092#endif
93
pbrook624f7972008-05-31 16:11:38 +000094struct emulated_sigtable {
95 int pending; /* true if signal is pending */
Timothy E Baldwin907f5fd2016-05-27 15:51:52 +010096 target_siginfo_t info;
pbrook624f7972008-05-31 16:11:38 +000097};
98
bellard851e67a2003-03-29 16:53:14 +000099typedef struct TaskState {
Mika Westerbergedf8e2a2009-04-07 09:57:11 +0300100 pid_t ts_tid; /* tid (or pid) of this task */
bellard28c4f362004-02-16 21:47:43 +0000101#ifdef TARGET_ARM
Peter Maydell848d72c2013-09-03 20:12:17 +0100102# ifdef TARGET_ABI32
bellard28c4f362004-02-16 21:47:43 +0000103 /* FPA state */
104 FPA11 fpa;
Peter Maydell848d72c2013-09-03 20:12:17 +0100105# endif
Keith Packarda10b9d92021-01-08 22:42:52 +0000106#endif
107#if defined(TARGET_ARM) || defined(TARGET_RISCV)
bellarda4f81972005-04-23 18:25:41 +0000108 int swi_errno;
bellard28c4f362004-02-16 21:47:43 +0000109#endif
j_mayer84409dd2007-04-06 08:56:50 +0000110#if defined(TARGET_I386) && !defined(TARGET_X86_64)
blueswir1992f48a2007-10-14 16:27:31 +0000111 abi_ulong target_v86;
bellard851e67a2003-03-29 16:53:14 +0000112 struct vm86_saved_state vm86_saved_regs;
bellardb333af02003-05-14 21:48:51 +0000113 struct target_vm86plus_struct vm86plus;
bellard631271d2003-05-10 13:14:52 +0000114 uint32_t v86flags;
115 uint32_t v86mask;
bellardb346ff42003-06-15 20:05:50 +0000116#endif
pbrookc2764712009-03-07 15:24:59 +0000117 abi_ulong child_tidptr;
pbrooke6e59062006-10-22 00:18:54 +0000118#ifdef TARGET_M68K
Peter Maydell1ccd9372013-07-16 18:44:55 +0100119 abi_ulong tp_value;
pbrooke6e59062006-10-22 00:18:54 +0000120#endif
Keith Packarda10b9d92021-01-08 22:42:52 +0000121#if defined(TARGET_ARM) || defined(TARGET_M68K) || defined(TARGET_RISCV)
pbrooka87295e2007-05-26 15:09:38 +0000122 /* Extra fields for semihosted binaries. */
Peter Maydelld3170912016-07-04 13:06:35 +0100123 abi_ulong heap_base;
124 abi_ulong heap_limit;
pbrooka87295e2007-05-26 15:09:38 +0000125#endif
Peter Maydelld3170912016-07-04 13:06:35 +0100126 abi_ulong stack_base;
bellard851e67a2003-03-29 16:53:14 +0000127 int used; /* non zero if used */
pbrook978efd62006-06-17 18:30:42 +0000128 struct image_info *info;
Mika Westerbergedf8e2a2009-04-07 09:57:11 +0300129 struct linux_binprm *bprm;
pbrook624f7972008-05-31 16:11:38 +0000130
Timothy E Baldwin655ed672016-05-27 15:51:53 +0100131 struct emulated_sigtable sync_signal;
pbrook624f7972008-05-31 16:11:38 +0000132 struct emulated_sigtable sigtab[TARGET_NSIG];
Peter Maydell400b7f62021-09-08 16:43:57 +0100133 /*
134 * This thread's signal mask, as requested by the guest program.
Peter Maydell3d3efba2016-05-27 15:51:49 +0100135 * The actual signal mask of this thread may differ:
136 * + we don't let SIGSEGV and SIGBUS be blocked while running guest code
137 * + sometimes we block all signals to avoid races
138 */
139 sigset_t signal_mask;
Peter Maydell400b7f62021-09-08 16:43:57 +0100140 /*
141 * The signal mask imposed by a guest sigsuspend syscall, if we are
Peter Maydell3d3efba2016-05-27 15:51:49 +0100142 * currently in the middle of such a syscall
143 */
144 sigset_t sigsuspend_mask;
145 /* Nonzero if we're leaving a sigsuspend and sigsuspend_mask is valid. */
146 int in_sigsuspend;
147
Peter Maydell400b7f62021-09-08 16:43:57 +0100148 /*
149 * Nonzero if process_pending_signals() needs to do something (either
Peter Maydell3d3efba2016-05-27 15:51:49 +0100150 * handle a pending signal or unblock signals).
151 * This flag is written from a signal handler so should be accessed via
Stefan Hajnoczid73415a2020-09-23 11:56:46 +0100152 * the qatomic_read() and qatomic_set() functions. (It is not accessed
Peter Maydell3d3efba2016-05-27 15:51:49 +0100153 * from multiple threads.)
154 */
155 int signal_pending;
156
Peter Maydell5bfce0b2019-07-25 14:16:45 +0100157 /* This thread's sigaltstack, if it has one */
158 struct target_sigaltstack sigaltstack_used;
Cameron Esfahanieb33cda2022-01-27 16:12:51 -0800159
160 /* Start time of task after system boot in clock ticks */
161 uint64_t start_boottime;
Peter Maydellb1b21382022-01-14 15:37:30 +0000162} TaskState;
bellard851e67a2003-03-29 16:53:14 +0000163
Peter Maydell3b249d22021-09-08 16:44:03 +0100164abi_long do_brk(abi_ulong new_brk);
Ilya Leoshkevicha4dab0a2023-06-30 19:04:16 +0100165int do_guest_openat(CPUArchState *cpu_env, int dirfd, const char *pathname,
Ilya Leoshkevich35be8982023-06-30 19:04:17 +0100166 int flags, mode_t mode, bool safe);
Ilya Leoshkevicha4dab0a2023-06-30 19:04:16 +0100167ssize_t do_guest_readlink(const char *pathname, char *buf, size_t bufsiz);
bellard631271d2003-05-10 13:14:52 +0000168
bellardedf779f2004-02-22 13:40:13 +0000169/* user access */
170
Thomas WeiĂźschuh64d06012023-04-22 12:03:13 +0200171#define VERIFY_NONE 0
Richard Henderson68f77662021-02-12 10:48:38 -0800172#define VERIFY_READ PAGE_READ
173#define VERIFY_WRITE (PAGE_READ | PAGE_WRITE)
bellardedf779f2004-02-22 13:40:13 +0000174
Richard Hendersonc7169b02021-02-12 10:48:47 -0800175static inline bool access_ok_untagged(int type, abi_ulong addr, abi_ulong size)
bellarddae32702007-11-14 10:51:00 +0000176{
Richard Henderson114556c2021-02-12 10:48:45 -0800177 if (size == 0
Richard Henderson46b12f42021-02-12 10:48:46 -0800178 ? !guest_addr_valid_untagged(addr)
179 : !guest_range_valid_untagged(addr, size)) {
Richard Henderson4feac832021-02-12 10:48:37 -0800180 return false;
181 }
Richard Hendersonbef6f002023-07-07 21:40:52 +0100182 return page_check_range((target_ulong)addr, size, type);
bellarddae32702007-11-14 10:51:00 +0000183}
bellardedf779f2004-02-22 13:40:13 +0000184
Richard Hendersonc7169b02021-02-12 10:48:47 -0800185static inline bool access_ok(CPUState *cpu, int type,
186 abi_ulong addr, abi_ulong size)
187{
188 return access_ok_untagged(type, cpu_untagged_addr(cpu, addr), size);
189}
190
Richard Henderson658f2dc2013-01-04 16:39:31 -0800191/* NOTE __get_user and __put_user use host pointers and don't check access.
192 These are usually used to access struct data members once the struct has
193 been locked - usually with lock_user_struct. */
bellardedf779f2004-02-22 13:40:13 +0000194
Peter Maydell850d5e32018-10-09 17:18:14 +0100195/*
196 * Tricky points:
197 * - Use __builtin_choose_expr to avoid type promotion from ?:,
198 * - Invalid sizes result in a compile time error stemming from
199 * the fact that abort has no parameters.
200 * - It's easier to use the endian-specific unaligned load/store
201 * functions than host-endian unaligned load/store plus tswapN.
202 * - The pragmas are necessary only to silence a clang false-positive
203 * warning: see https://bugs.llvm.org/show_bug.cgi?id=39113 .
Peter Maydell850d5e32018-10-09 17:18:14 +0100204 * - gcc has bugs in its _Pragma() support in some versions, eg
205 * https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83256 -- so we only
206 * include the warning-suppression pragmas for clang
207 */
Thomas Huth798b8582018-11-30 09:23:16 +0100208#if defined(__clang__) && __has_warning("-Waddress-of-packed-member")
Peter Maydell850d5e32018-10-09 17:18:14 +0100209#define PRAGMA_DISABLE_PACKED_WARNING \
210 _Pragma("GCC diagnostic push"); \
Peter Maydell850d5e32018-10-09 17:18:14 +0100211 _Pragma("GCC diagnostic ignored \"-Waddress-of-packed-member\"")
Richard Henderson658f2dc2013-01-04 16:39:31 -0800212
Peter Maydell850d5e32018-10-09 17:18:14 +0100213#define PRAGMA_REENABLE_PACKED_WARNING \
214 _Pragma("GCC diagnostic pop")
Richard Henderson658f2dc2013-01-04 16:39:31 -0800215
Peter Maydell850d5e32018-10-09 17:18:14 +0100216#else
217#define PRAGMA_DISABLE_PACKED_WARNING
218#define PRAGMA_REENABLE_PACKED_WARNING
219#endif
220
221#define __put_user_e(x, hptr, e) \
222 do { \
223 PRAGMA_DISABLE_PACKED_WARNING; \
224 (__builtin_choose_expr(sizeof(*(hptr)) == 1, stb_p, \
225 __builtin_choose_expr(sizeof(*(hptr)) == 2, stw_##e##_p, \
226 __builtin_choose_expr(sizeof(*(hptr)) == 4, stl_##e##_p, \
227 __builtin_choose_expr(sizeof(*(hptr)) == 8, stq_##e##_p, abort)))) \
228 ((hptr), (x)), (void)0); \
229 PRAGMA_REENABLE_PACKED_WARNING; \
230 } while (0)
231
232#define __get_user_e(x, hptr, e) \
233 do { \
234 PRAGMA_DISABLE_PACKED_WARNING; \
235 ((x) = (typeof(*hptr))( \
236 __builtin_choose_expr(sizeof(*(hptr)) == 1, ldub_p, \
237 __builtin_choose_expr(sizeof(*(hptr)) == 2, lduw_##e##_p, \
238 __builtin_choose_expr(sizeof(*(hptr)) == 4, ldl_##e##_p, \
239 __builtin_choose_expr(sizeof(*(hptr)) == 8, ldq_##e##_p, abort)))) \
240 (hptr)), (void)0); \
241 PRAGMA_REENABLE_PACKED_WARNING; \
242 } while (0)
243
Richard Henderson658f2dc2013-01-04 16:39:31 -0800244
Marc-André Lureauee3eb3a2022-03-23 19:57:18 +0400245#if TARGET_BIG_ENDIAN
Richard Henderson658f2dc2013-01-04 16:39:31 -0800246# define __put_user(x, hptr) __put_user_e(x, hptr, be)
247# define __get_user(x, hptr) __get_user_e(x, hptr, be)
248#else
249# define __put_user(x, hptr) __put_user_e(x, hptr, le)
250# define __get_user(x, hptr) __get_user_e(x, hptr, le)
251#endif
bellardedf779f2004-02-22 13:40:13 +0000252
bellard579a97f2007-11-11 14:26:47 +0000253/* put_user()/get_user() take a guest address and check access */
254/* These are usually used to access an atomic data type, such as an int,
255 * that has been passed by address. These internally perform locking
256 * and unlocking on the data type.
257 */
258#define put_user(x, gaddr, target_type) \
259({ \
260 abi_ulong __gaddr = (gaddr); \
261 target_type *__hptr; \
Riku Voipioa42267e2014-04-22 15:40:50 +0300262 abi_long __ret = 0; \
bellard579a97f2007-11-11 14:26:47 +0000263 if ((__hptr = lock_user(VERIFY_WRITE, __gaddr, sizeof(target_type), 0))) { \
Riku Voipioa42267e2014-04-22 15:40:50 +0300264 __put_user((x), __hptr); \
bellard579a97f2007-11-11 14:26:47 +0000265 unlock_user(__hptr, __gaddr, sizeof(target_type)); \
266 } else \
267 __ret = -TARGET_EFAULT; \
268 __ret; \
bellardedf779f2004-02-22 13:40:13 +0000269})
270
bellard579a97f2007-11-11 14:26:47 +0000271#define get_user(x, gaddr, target_type) \
272({ \
273 abi_ulong __gaddr = (gaddr); \
274 target_type *__hptr; \
Riku Voipioa42267e2014-04-22 15:40:50 +0300275 abi_long __ret = 0; \
bellard579a97f2007-11-11 14:26:47 +0000276 if ((__hptr = lock_user(VERIFY_READ, __gaddr, sizeof(target_type), 1))) { \
Riku Voipioa42267e2014-04-22 15:40:50 +0300277 __get_user((x), __hptr); \
bellard579a97f2007-11-11 14:26:47 +0000278 unlock_user(__hptr, __gaddr, 0); \
bellard2f619692007-11-16 10:46:05 +0000279 } else { \
280 /* avoid warning */ \
281 (x) = 0; \
bellard579a97f2007-11-11 14:26:47 +0000282 __ret = -TARGET_EFAULT; \
bellard2f619692007-11-16 10:46:05 +0000283 } \
bellard579a97f2007-11-11 14:26:47 +0000284 __ret; \
bellardedf779f2004-02-22 13:40:13 +0000285})
286
bellard2f619692007-11-16 10:46:05 +0000287#define put_user_ual(x, gaddr) put_user((x), (gaddr), abi_ulong)
288#define put_user_sal(x, gaddr) put_user((x), (gaddr), abi_long)
289#define put_user_u64(x, gaddr) put_user((x), (gaddr), uint64_t)
290#define put_user_s64(x, gaddr) put_user((x), (gaddr), int64_t)
291#define put_user_u32(x, gaddr) put_user((x), (gaddr), uint32_t)
292#define put_user_s32(x, gaddr) put_user((x), (gaddr), int32_t)
293#define put_user_u16(x, gaddr) put_user((x), (gaddr), uint16_t)
294#define put_user_s16(x, gaddr) put_user((x), (gaddr), int16_t)
295#define put_user_u8(x, gaddr) put_user((x), (gaddr), uint8_t)
296#define put_user_s8(x, gaddr) put_user((x), (gaddr), int8_t)
297
298#define get_user_ual(x, gaddr) get_user((x), (gaddr), abi_ulong)
299#define get_user_sal(x, gaddr) get_user((x), (gaddr), abi_long)
300#define get_user_u64(x, gaddr) get_user((x), (gaddr), uint64_t)
301#define get_user_s64(x, gaddr) get_user((x), (gaddr), int64_t)
302#define get_user_u32(x, gaddr) get_user((x), (gaddr), uint32_t)
303#define get_user_s32(x, gaddr) get_user((x), (gaddr), int32_t)
304#define get_user_u16(x, gaddr) get_user((x), (gaddr), uint16_t)
305#define get_user_s16(x, gaddr) get_user((x), (gaddr), int16_t)
306#define get_user_u8(x, gaddr) get_user((x), (gaddr), uint8_t)
307#define get_user_s8(x, gaddr) get_user((x), (gaddr), int8_t)
308
bellard579a97f2007-11-11 14:26:47 +0000309/* copy_from_user() and copy_to_user() are usually used to copy data
310 * buffers between the target and host. These internally perform
311 * locking/unlocking of the memory.
312 */
Richard Henderson360f0ab2021-03-15 14:40:04 -0600313int copy_from_user(void *hptr, abi_ulong gaddr, ssize_t len);
314int copy_to_user(abi_ulong gaddr, void *hptr, ssize_t len);
bellard579a97f2007-11-11 14:26:47 +0000315
pbrook53a59602006-03-25 19:31:22 +0000316/* Functions for accessing guest memory. The tget and tput functions
Stefan Weil6f20f552013-09-12 19:57:15 +0200317 read/write single values, byteswapping as necessary. The lock_user function
pbrook53a59602006-03-25 19:31:22 +0000318 gets a pointer to a contiguous area of guest memory, but does not perform
Stefan Weil6f20f552013-09-12 19:57:15 +0200319 any byteswapping. lock_user may return either a pointer to the guest
pbrook53a59602006-03-25 19:31:22 +0000320 memory, or a temporary buffer. */
321
322/* Lock an area of guest memory into the host. If copy is true then the
323 host area will have the same contents as the guest. */
Richard Henderson360f0ab2021-03-15 14:40:04 -0600324void *lock_user(int type, abi_ulong guest_addr, ssize_t len, bool copy);
bellardedf779f2004-02-22 13:40:13 +0000325
bellard579a97f2007-11-11 14:26:47 +0000326/* Unlock an area of guest memory. The first LEN bytes must be
ths1235fc02008-06-03 19:51:57 +0000327 flushed back to guest memory. host_ptr = NULL is explicitly
bellard579a97f2007-11-11 14:26:47 +0000328 allowed and does nothing. */
Richard Henderson687ca792021-02-12 10:48:48 -0800329#ifndef DEBUG_REMAP
Richard Henderson360f0ab2021-03-15 14:40:04 -0600330static inline void unlock_user(void *host_ptr, abi_ulong guest_addr,
331 ssize_t len)
332{
333 /* no-op */
334}
Richard Henderson687ca792021-02-12 10:48:48 -0800335#else
Richard Henderson360f0ab2021-03-15 14:40:04 -0600336void unlock_user(void *host_ptr, abi_ulong guest_addr, ssize_t len);
pbrook53a59602006-03-25 19:31:22 +0000337#endif
bellardedf779f2004-02-22 13:40:13 +0000338
bellard579a97f2007-11-11 14:26:47 +0000339/* Return the length of a string in target memory or -TARGET_EFAULT if
340 access error. */
Richard Henderson09f679b2021-02-12 10:48:49 -0800341ssize_t target_strlen(abi_ulong gaddr);
bellardedf779f2004-02-22 13:40:13 +0000342
pbrook53a59602006-03-25 19:31:22 +0000343/* Like lock_user but for null terminated strings. */
Richard Henderson687ca792021-02-12 10:48:48 -0800344void *lock_user_string(abi_ulong guest_addr);
pbrook53a59602006-03-25 19:31:22 +0000345
Stefan Weil41d1af42013-09-12 19:57:41 +0200346/* Helper macros for locking/unlocking a target struct. */
bellard579a97f2007-11-11 14:26:47 +0000347#define lock_user_struct(type, host_ptr, guest_addr, copy) \
348 (host_ptr = lock_user(type, guest_addr, sizeof(*host_ptr), copy))
349#define unlock_user_struct(host_ptr, guest_addr, copy) \
pbrook53a59602006-03-25 19:31:22 +0000350 unlock_user(host_ptr, guest_addr, (copy) ? sizeof(*host_ptr) : 0)
351
bellarde88de092005-02-07 12:35:39 +0000352#endif /* QEMU_H */