4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 /* Needed early for CONFIG_BSD etc. */
26 #include "config-host.h"
38 #define SIG_IPI (SIGRTMIN+4)
40 #define SIG_IPI SIGUSR1
43 static CPUState
*cur_cpu
;
44 static CPUState
*next_cpu
;
46 /***********************************************************/
47 void hw_error(const char *fmt
, ...)
53 fprintf(stderr
, "qemu: hardware error: ");
54 vfprintf(stderr
, fmt
, ap
);
55 fprintf(stderr
, "\n");
56 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
57 fprintf(stderr
, "CPU #%d:\n", env
->cpu_index
);
59 cpu_dump_state(env
, stderr
, fprintf
, X86_DUMP_FPU
);
61 cpu_dump_state(env
, stderr
, fprintf
, 0);
68 void cpu_synchronize_all_states(void)
72 for (cpu
= first_cpu
; cpu
; cpu
= cpu
->next_cpu
) {
73 cpu_synchronize_state(cpu
);
77 void cpu_synchronize_all_post_reset(void)
81 for (cpu
= first_cpu
; cpu
; cpu
= cpu
->next_cpu
) {
82 cpu_synchronize_post_reset(cpu
);
86 void cpu_synchronize_all_post_init(void)
90 for (cpu
= first_cpu
; cpu
; cpu
= cpu
->next_cpu
) {
91 cpu_synchronize_post_init(cpu
);
95 int cpu_is_stopped(CPUState
*env
)
97 return !vm_running
|| env
->stopped
;
100 static void do_vm_stop(int reason
)
106 vm_state_notify(0, reason
);
107 monitor_protocol_event(QEVENT_STOP
, NULL
);
111 static int cpu_can_run(CPUState
*env
)
115 if (env
->stopped
|| !vm_running
)
120 static int cpu_has_work(CPUState
*env
)
124 if (env
->queued_work_first
)
126 if (env
->stopped
|| !vm_running
)
130 if (qemu_cpu_has_work(env
))
135 static int tcg_has_work(void)
139 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
140 if (cpu_has_work(env
))
146 static int io_thread_fd
= -1;
148 static void qemu_event_increment(void)
150 /* Write 8 bytes to be compatible with eventfd. */
151 static const uint64_t val
= 1;
154 if (io_thread_fd
== -1)
158 ret
= write(io_thread_fd
, &val
, sizeof(val
));
159 } while (ret
< 0 && errno
== EINTR
);
161 /* EAGAIN is fine, a read must be pending. */
162 if (ret
< 0 && errno
!= EAGAIN
) {
163 fprintf(stderr
, "qemu_event_increment: write() filed: %s\n",
169 static void qemu_event_read(void *opaque
)
171 int fd
= (unsigned long)opaque
;
175 /* Drain the notify pipe. For eventfd, only 8 bytes will be read. */
177 len
= read(fd
, buffer
, sizeof(buffer
));
178 } while ((len
== -1 && errno
== EINTR
) || len
== sizeof(buffer
));
181 static int qemu_event_init(void)
186 err
= qemu_eventfd(fds
);
190 err
= fcntl_setfl(fds
[0], O_NONBLOCK
);
194 err
= fcntl_setfl(fds
[1], O_NONBLOCK
);
198 qemu_set_fd_handler2(fds
[0], NULL
, qemu_event_read
, NULL
,
199 (void *)(unsigned long)fds
[0]);
201 io_thread_fd
= fds
[1];
210 HANDLE qemu_event_handle
;
212 static void dummy_event_handler(void *opaque
)
216 static int qemu_event_init(void)
218 qemu_event_handle
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
219 if (!qemu_event_handle
) {
220 fprintf(stderr
, "Failed CreateEvent: %ld\n", GetLastError());
223 qemu_add_wait_object(qemu_event_handle
, dummy_event_handler
, NULL
);
227 static void qemu_event_increment(void)
229 if (!SetEvent(qemu_event_handle
)) {
230 fprintf(stderr
, "qemu_event_increment: SetEvent failed: %ld\n",
237 #ifndef CONFIG_IOTHREAD
238 int qemu_init_main_loop(void)
240 return qemu_event_init();
243 void qemu_main_loop_start(void)
247 void qemu_init_vcpu(void *_env
)
249 CPUState
*env
= _env
;
251 env
->nr_cores
= smp_cores
;
252 env
->nr_threads
= smp_threads
;
258 int qemu_cpu_self(void *env
)
263 void run_on_cpu(CPUState
*env
, void (*func
)(void *data
), void *data
)
268 void resume_all_vcpus(void)
272 void pause_all_vcpus(void)
276 void qemu_cpu_kick(void *env
)
281 void qemu_notify_event(void)
283 CPUState
*env
= cpu_single_env
;
285 qemu_event_increment ();
289 if (next_cpu
&& env
!= next_cpu
) {
294 void qemu_mutex_lock_iothread(void) {}
295 void qemu_mutex_unlock_iothread(void) {}
297 void vm_stop(int reason
)
302 #else /* CONFIG_IOTHREAD */
304 #include "qemu-thread.h"
306 QemuMutex qemu_global_mutex
;
307 static QemuMutex qemu_fair_mutex
;
309 static QemuThread io_thread
;
311 static QemuThread
*tcg_cpu_thread
;
312 static QemuCond
*tcg_halt_cond
;
314 static int qemu_system_ready
;
316 static QemuCond qemu_cpu_cond
;
318 static QemuCond qemu_system_cond
;
319 static QemuCond qemu_pause_cond
;
320 static QemuCond qemu_work_cond
;
322 static void tcg_init_ipi(void);
323 static void kvm_init_ipi(CPUState
*env
);
324 static void unblock_io_signals(void);
326 int qemu_init_main_loop(void)
330 ret
= qemu_event_init();
334 qemu_cond_init(&qemu_pause_cond
);
335 qemu_mutex_init(&qemu_fair_mutex
);
336 qemu_mutex_init(&qemu_global_mutex
);
337 qemu_mutex_lock(&qemu_global_mutex
);
339 unblock_io_signals();
340 qemu_thread_self(&io_thread
);
345 void qemu_main_loop_start(void)
347 qemu_system_ready
= 1;
348 qemu_cond_broadcast(&qemu_system_cond
);
351 void run_on_cpu(CPUState
*env
, void (*func
)(void *data
), void *data
)
353 struct qemu_work_item wi
;
355 if (qemu_cpu_self(env
)) {
362 if (!env
->queued_work_first
)
363 env
->queued_work_first
= &wi
;
365 env
->queued_work_last
->next
= &wi
;
366 env
->queued_work_last
= &wi
;
372 CPUState
*self_env
= cpu_single_env
;
374 qemu_cond_wait(&qemu_work_cond
, &qemu_global_mutex
);
375 cpu_single_env
= self_env
;
379 static void flush_queued_work(CPUState
*env
)
381 struct qemu_work_item
*wi
;
383 if (!env
->queued_work_first
)
386 while ((wi
= env
->queued_work_first
)) {
387 env
->queued_work_first
= wi
->next
;
391 env
->queued_work_last
= NULL
;
392 qemu_cond_broadcast(&qemu_work_cond
);
395 static void qemu_wait_io_event_common(CPUState
*env
)
400 qemu_cond_signal(&qemu_pause_cond
);
402 flush_queued_work(env
);
405 static void qemu_wait_io_event(CPUState
*env
)
407 while (!tcg_has_work())
408 qemu_cond_timedwait(env
->halt_cond
, &qemu_global_mutex
, 1000);
410 qemu_mutex_unlock(&qemu_global_mutex
);
413 * Users of qemu_global_mutex can be starved, having no chance
414 * to acquire it since this path will get to it first.
415 * So use another lock to provide fairness.
417 qemu_mutex_lock(&qemu_fair_mutex
);
418 qemu_mutex_unlock(&qemu_fair_mutex
);
420 qemu_mutex_lock(&qemu_global_mutex
);
421 qemu_wait_io_event_common(env
);
424 static void qemu_kvm_eat_signal(CPUState
*env
, int timeout
)
431 ts
.tv_sec
= timeout
/ 1000;
432 ts
.tv_nsec
= (timeout
% 1000) * 1000000;
434 sigemptyset(&waitset
);
435 sigaddset(&waitset
, SIG_IPI
);
437 qemu_mutex_unlock(&qemu_global_mutex
);
438 r
= sigtimedwait(&waitset
, &siginfo
, &ts
);
440 qemu_mutex_lock(&qemu_global_mutex
);
442 if (r
== -1 && !(e
== EAGAIN
|| e
== EINTR
)) {
443 fprintf(stderr
, "sigtimedwait: %s\n", strerror(e
));
448 static void qemu_kvm_wait_io_event(CPUState
*env
)
450 while (!cpu_has_work(env
))
451 qemu_cond_timedwait(env
->halt_cond
, &qemu_global_mutex
, 1000);
453 qemu_kvm_eat_signal(env
, 0);
454 qemu_wait_io_event_common(env
);
457 static int qemu_cpu_exec(CPUState
*env
);
459 static void *kvm_cpu_thread_fn(void *arg
)
463 qemu_mutex_lock(&qemu_global_mutex
);
464 qemu_thread_self(env
->thread
);
470 /* signal CPU creation */
472 qemu_cond_signal(&qemu_cpu_cond
);
474 /* and wait for machine initialization */
475 while (!qemu_system_ready
)
476 qemu_cond_timedwait(&qemu_system_cond
, &qemu_global_mutex
, 100);
479 if (cpu_can_run(env
))
481 qemu_kvm_wait_io_event(env
);
487 static void *tcg_cpu_thread_fn(void *arg
)
492 qemu_thread_self(env
->thread
);
494 /* signal CPU creation */
495 qemu_mutex_lock(&qemu_global_mutex
);
496 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
498 qemu_cond_signal(&qemu_cpu_cond
);
500 /* and wait for machine initialization */
501 while (!qemu_system_ready
)
502 qemu_cond_timedwait(&qemu_system_cond
, &qemu_global_mutex
, 100);
506 qemu_wait_io_event(cur_cpu
);
512 void qemu_cpu_kick(void *_env
)
514 CPUState
*env
= _env
;
515 qemu_cond_broadcast(env
->halt_cond
);
516 qemu_thread_signal(env
->thread
, SIG_IPI
);
519 int qemu_cpu_self(void *_env
)
521 CPUState
*env
= _env
;
524 qemu_thread_self(&this);
526 return qemu_thread_equal(&this, env
->thread
);
529 static void cpu_signal(int sig
)
532 cpu_exit(cpu_single_env
);
536 static void tcg_init_ipi(void)
539 struct sigaction sigact
;
541 memset(&sigact
, 0, sizeof(sigact
));
542 sigact
.sa_handler
= cpu_signal
;
543 sigaction(SIG_IPI
, &sigact
, NULL
);
546 sigaddset(&set
, SIG_IPI
);
547 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
550 static void dummy_signal(int sig
)
554 static void kvm_init_ipi(CPUState
*env
)
558 struct sigaction sigact
;
560 memset(&sigact
, 0, sizeof(sigact
));
561 sigact
.sa_handler
= dummy_signal
;
562 sigaction(SIG_IPI
, &sigact
, NULL
);
564 pthread_sigmask(SIG_BLOCK
, NULL
, &set
);
565 sigdelset(&set
, SIG_IPI
);
566 r
= kvm_set_signal_mask(env
, &set
);
568 fprintf(stderr
, "kvm_set_signal_mask: %s\n", strerror(r
));
573 static void unblock_io_signals(void)
578 sigaddset(&set
, SIGUSR2
);
579 sigaddset(&set
, SIGIO
);
580 sigaddset(&set
, SIGALRM
);
581 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
584 sigaddset(&set
, SIG_IPI
);
585 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
588 void qemu_mutex_lock_iothread(void)
591 qemu_mutex_lock(&qemu_fair_mutex
);
592 qemu_mutex_lock(&qemu_global_mutex
);
593 qemu_mutex_unlock(&qemu_fair_mutex
);
595 qemu_mutex_lock(&qemu_fair_mutex
);
596 if (qemu_mutex_trylock(&qemu_global_mutex
)) {
597 qemu_thread_signal(tcg_cpu_thread
, SIG_IPI
);
598 qemu_mutex_lock(&qemu_global_mutex
);
600 qemu_mutex_unlock(&qemu_fair_mutex
);
604 void qemu_mutex_unlock_iothread(void)
606 qemu_mutex_unlock(&qemu_global_mutex
);
609 static int all_vcpus_paused(void)
611 CPUState
*penv
= first_cpu
;
616 penv
= (CPUState
*)penv
->next_cpu
;
622 void pause_all_vcpus(void)
624 CPUState
*penv
= first_cpu
;
629 penv
= (CPUState
*)penv
->next_cpu
;
632 while (!all_vcpus_paused()) {
633 qemu_cond_timedwait(&qemu_pause_cond
, &qemu_global_mutex
, 100);
637 penv
= (CPUState
*)penv
->next_cpu
;
642 void resume_all_vcpus(void)
644 CPUState
*penv
= first_cpu
;
650 penv
= (CPUState
*)penv
->next_cpu
;
654 static void tcg_init_vcpu(void *_env
)
656 CPUState
*env
= _env
;
657 /* share a single thread for all cpus with TCG */
658 if (!tcg_cpu_thread
) {
659 env
->thread
= qemu_mallocz(sizeof(QemuThread
));
660 env
->halt_cond
= qemu_mallocz(sizeof(QemuCond
));
661 qemu_cond_init(env
->halt_cond
);
662 qemu_thread_create(env
->thread
, tcg_cpu_thread_fn
, env
);
663 while (env
->created
== 0)
664 qemu_cond_timedwait(&qemu_cpu_cond
, &qemu_global_mutex
, 100);
665 tcg_cpu_thread
= env
->thread
;
666 tcg_halt_cond
= env
->halt_cond
;
668 env
->thread
= tcg_cpu_thread
;
669 env
->halt_cond
= tcg_halt_cond
;
673 static void kvm_start_vcpu(CPUState
*env
)
675 env
->thread
= qemu_mallocz(sizeof(QemuThread
));
676 env
->halt_cond
= qemu_mallocz(sizeof(QemuCond
));
677 qemu_cond_init(env
->halt_cond
);
678 qemu_thread_create(env
->thread
, kvm_cpu_thread_fn
, env
);
679 while (env
->created
== 0)
680 qemu_cond_timedwait(&qemu_cpu_cond
, &qemu_global_mutex
, 100);
683 void qemu_init_vcpu(void *_env
)
685 CPUState
*env
= _env
;
687 env
->nr_cores
= smp_cores
;
688 env
->nr_threads
= smp_threads
;
695 void qemu_notify_event(void)
697 qemu_event_increment();
700 static void qemu_system_vmstop_request(int reason
)
702 vmstop_requested
= reason
;
706 void vm_stop(int reason
)
709 qemu_thread_self(&me
);
711 if (!qemu_thread_equal(&me
, &io_thread
)) {
712 qemu_system_vmstop_request(reason
);
714 * FIXME: should not return to device code in case
715 * vm_stop() has been requested.
717 if (cpu_single_env
) {
718 cpu_exit(cpu_single_env
);
719 cpu_single_env
->stop
= 1;
728 static int qemu_cpu_exec(CPUState
*env
)
731 #ifdef CONFIG_PROFILER
735 #ifdef CONFIG_PROFILER
736 ti
= profile_getclock();
741 qemu_icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
742 env
->icount_decr
.u16
.low
= 0;
743 env
->icount_extra
= 0;
744 count
= qemu_icount_round (qemu_next_deadline());
745 qemu_icount
+= count
;
746 decr
= (count
> 0xffff) ? 0xffff : count
;
748 env
->icount_decr
.u16
.low
= decr
;
749 env
->icount_extra
= count
;
752 #ifdef CONFIG_PROFILER
753 qemu_time
+= profile_getclock() - ti
;
756 /* Fold pending instructions back into the
757 instruction counter, and clear the interrupt flag. */
758 qemu_icount
-= (env
->icount_decr
.u16
.low
759 + env
->icount_extra
);
760 env
->icount_decr
.u32
= 0;
761 env
->icount_extra
= 0;
766 bool tcg_cpu_exec(void)
770 if (next_cpu
== NULL
)
771 next_cpu
= first_cpu
;
772 for (; next_cpu
!= NULL
; next_cpu
= next_cpu
->next_cpu
) {
773 CPUState
*env
= cur_cpu
= next_cpu
;
775 qemu_clock_enable(vm_clock
,
776 (cur_cpu
->singlestep_enabled
& SSTEP_NOTIMER
) == 0);
778 if (qemu_alarm_pending())
780 if (cpu_can_run(env
))
781 ret
= qemu_cpu_exec(env
);
785 if (ret
== EXCP_DEBUG
) {
786 gdb_set_stop_cpu(env
);
787 debug_requested
= EXCP_DEBUG
;
791 return tcg_has_work();
794 void set_numa_modes(void)
799 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
800 for (i
= 0; i
< nb_numa_nodes
; i
++) {
801 if (node_cpumask
[i
] & (1 << env
->cpu_index
)) {
808 void set_cpu_log(const char *optarg
)
811 const CPULogItem
*item
;
813 mask
= cpu_str_to_log_mask(optarg
);
815 printf("Log items (comma separated):\n");
816 for (item
= cpu_log_items
; item
->mask
!= 0; item
++) {
817 printf("%-10s %s\n", item
->name
, item
->help
);
824 /* Return the virtual CPU time, based on the instruction counter. */
825 int64_t cpu_get_icount(void)
828 CPUState
*env
= cpu_single_env
;;
830 icount
= qemu_icount
;
832 if (!can_do_io(env
)) {
833 fprintf(stderr
, "Bad clock read\n");
835 icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
837 return qemu_icount_bias
+ (icount
<< icount_time_shift
);
840 void list_cpus(FILE *f
, int (*cpu_fprintf
)(FILE *f
, const char *fmt
, ...),
843 /* XXX: implement xxx_cpu_list for targets that still miss it */
844 #if defined(cpu_list_id)
845 cpu_list_id(f
, cpu_fprintf
, optarg
);
846 #elif defined(cpu_list)
847 cpu_list(f
, cpu_fprintf
); /* deprecated */