]> git.proxmox.com Git - qemu.git/blame - linux-user/qemu.h
new directory structure
[qemu.git] / linux-user / qemu.h
CommitLineData
31e31b8a
FB
1#ifndef GEMU_H
2#define GEMU_H
3
4#include "thunk.h"
5
9de5e440
FB
6#include <signal.h>
7#include "syscall_defs.h"
31e31b8a 8
6180a181
FB
9#include "cpu.h"
10#include "syscall.h"
66fb9763 11
31e31b8a
FB
12/* This struct is used to hold certain information about the image.
13 * Basically, it replicates in user space what would be certain
14 * task_struct fields in the kernel
15 */
16struct image_info {
17 unsigned long start_code;
18 unsigned long end_code;
19 unsigned long end_data;
20 unsigned long start_brk;
21 unsigned long brk;
22 unsigned long start_mmap;
23 unsigned long mmap;
24 unsigned long rss;
25 unsigned long start_stack;
26 unsigned long arg_start;
27 unsigned long arg_end;
28 unsigned long env_start;
29 unsigned long env_end;
30 unsigned long entry;
31 int personality;
32};
33
b346ff46 34#ifdef TARGET_I386
851e67a1
FB
35/* Information about the current linux thread */
36struct vm86_saved_state {
37 uint32_t eax; /* return code */
38 uint32_t ebx;
39 uint32_t ecx;
40 uint32_t edx;
41 uint32_t esi;
42 uint32_t edi;
43 uint32_t ebp;
44 uint32_t esp;
45 uint32_t eflags;
46 uint32_t eip;
47 uint16_t cs, ss, ds, es, fs, gs;
48};
b346ff46 49#endif
851e67a1
FB
50
51/* NOTE: we force a big alignment so that the stack stored after is
52 aligned too */
53typedef struct TaskState {
54 struct TaskState *next;
b346ff46 55#ifdef TARGET_I386
851e67a1
FB
56 struct target_vm86plus_struct *target_v86;
57 struct vm86_saved_state vm86_saved_regs;
b333af06 58 struct target_vm86plus_struct vm86plus;
631271d7
FB
59 uint32_t v86flags;
60 uint32_t v86mask;
b346ff46 61#endif
851e67a1
FB
62 int used; /* non zero if used */
63 uint8_t stack[0];
64} __attribute__((aligned(16))) TaskState;
65
66extern TaskState *first_task_state;
67
32ce6337 68int elf_exec(const char * filename, char ** argv, char ** envp,
01ffc75b 69 struct target_pt_regs * regs, struct image_info *infop);
31e31b8a
FB
70
71void target_set_brk(char *new_brk);
72void syscall_init(void);
6dbad63e 73long do_syscall(void *cpu_env, int num, long arg1, long arg2, long arg3,
31e31b8a
FB
74 long arg4, long arg5, long arg6);
75void gemu_log(const char *fmt, ...) __attribute__((format(printf,1,2)));
b346ff46
FB
76extern CPUState *global_env;
77void cpu_loop(CPUState *env);
32ce6337
FB
78void init_paths(const char *prefix);
79const char *path(const char *pathname);
6977fbfd
FB
80
81extern int loglevel;
631271d7
FB
82extern FILE *logfile;
83
b346ff46
FB
84/* signal.c */
85void process_pending_signals(void *cpu_env);
86void signal_init(void);
87int queue_signal(int sig, target_siginfo_t *info);
88void host_to_target_siginfo(target_siginfo_t *tinfo, const siginfo_t *info);
89void target_to_host_siginfo(siginfo_t *info, const target_siginfo_t *tinfo);
90long do_sigreturn(CPUState *env);
91long do_rt_sigreturn(CPUState *env);
92
93#ifdef TARGET_I386
631271d7
FB
94/* vm86.c */
95void save_v86_state(CPUX86State *env);
447db213 96void handle_vm86_trap(CPUX86State *env, int trapno);
631271d7
FB
97void handle_vm86_fault(CPUX86State *env);
98int do_vm86(CPUX86State *env, long subfunction,
99 struct target_vm86plus_struct * target_v86);
b346ff46 100#endif
631271d7 101
54936004
FB
102/* mmap.c */
103int target_mprotect(unsigned long start, unsigned long len, int prot);
104long target_mmap(unsigned long start, unsigned long len, int prot,
105 int flags, int fd, unsigned long offset);
106int target_munmap(unsigned long start, unsigned long len);
107long target_mremap(unsigned long old_addr, unsigned long old_size,
108 unsigned long new_size, unsigned long flags,
109 unsigned long new_addr);
110int target_msync(unsigned long start, unsigned long len, int flags);
111
31e31b8a 112#endif