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"
37 #define SIG_IPI (SIGRTMIN+4)
39 #define SIG_IPI SIGUSR1
42 static CPUState *cur_cpu;
43 static CPUState *next_cpu;
45 /***********************************************************/
46 void hw_error(const char *fmt, ...)
52 fprintf(stderr, "qemu: hardware error: ");
53 vfprintf(stderr, fmt, ap);
54 fprintf(stderr, "\n");
55 for(env = first_cpu; env != NULL; env = env->next_cpu) {
56 fprintf(stderr, "CPU #%d:\n", env->cpu_index);
58 cpu_dump_state(env, stderr, fprintf, X86_DUMP_FPU);
60 cpu_dump_state(env, stderr, fprintf, 0);
67 void cpu_synchronize_all_states(void)
71 for (cpu = first_cpu; cpu; cpu = cpu->next_cpu) {
72 cpu_synchronize_state(cpu);
76 void cpu_synchronize_all_post_reset(void)
80 for (cpu = first_cpu; cpu; cpu = cpu->next_cpu) {
81 cpu_synchronize_post_reset(cpu);
85 void cpu_synchronize_all_post_init(void)
89 for (cpu = first_cpu; cpu; cpu = cpu->next_cpu) {
90 cpu_synchronize_post_init(cpu);
94 int cpu_is_stopped(CPUState *env)
96 return !vm_running || env->stopped;
99 static void do_vm_stop(int reason)
105 vm_state_notify(0, reason);
106 monitor_protocol_event(QEVENT_STOP, NULL);
110 static int cpu_can_run(CPUState *env)
114 if (env->stopped || !vm_running)
119 static int cpu_has_work(CPUState *env)
123 if (env->queued_work_first)
125 if (env->stopped || !vm_running)
129 if (qemu_cpu_has_work(env))
134 static int tcg_has_work(void)
138 for (env = first_cpu; env != NULL; env = env->next_cpu)
139 if (cpu_has_work(env))
145 static int io_thread_fd = -1;
147 static void qemu_event_increment(void)
149 /* Write 8 bytes to be compatible with eventfd. */
150 static const uint64_t val = 1;
153 if (io_thread_fd == -1)
157 ret = write(io_thread_fd, &val, sizeof(val));
158 } while (ret < 0 && errno == EINTR);
160 /* EAGAIN is fine, a read must be pending. */
161 if (ret < 0 && errno != EAGAIN) {
162 fprintf(stderr, "qemu_event_increment: write() filed: %s\n",
168 static void qemu_event_read(void *opaque)
170 int fd = (unsigned long)opaque;
174 /* Drain the notify pipe. For eventfd, only 8 bytes will be read. */
176 len = read(fd, buffer, sizeof(buffer));
177 } while ((len == -1 && errno == EINTR) || len == sizeof(buffer));
180 static int qemu_event_init(void)
185 err = qemu_eventfd(fds);
189 err = fcntl_setfl(fds[0], O_NONBLOCK);
193 err = fcntl_setfl(fds[1], O_NONBLOCK);
197 qemu_set_fd_handler2(fds[0], NULL, qemu_event_read, NULL,
198 (void *)(unsigned long)fds[0]);
200 io_thread_fd = fds[1];
209 HANDLE qemu_event_handle;
211 static void dummy_event_handler(void *opaque)
215 static int qemu_event_init(void)
217 qemu_event_handle = CreateEvent(NULL, FALSE, FALSE, NULL);
218 if (!qemu_event_handle) {
219 fprintf(stderr, "Failed CreateEvent: %ld\n", GetLastError());
222 qemu_add_wait_object(qemu_event_handle, dummy_event_handler, NULL);
226 static void qemu_event_increment(void)
228 if (!SetEvent(qemu_event_handle)) {
229 fprintf(stderr, "qemu_event_increment: SetEvent failed: %ld\n",
236 #ifndef CONFIG_IOTHREAD
237 int qemu_init_main_loop(void)
239 return qemu_event_init();
242 void qemu_main_loop_start(void)
246 void qemu_init_vcpu(void *_env)
248 CPUState *env = _env;
250 env->nr_cores = smp_cores;
251 env->nr_threads = smp_threads;
257 int qemu_cpu_self(void *env)
262 void run_on_cpu(CPUState *env, void (*func)(void *data), void *data)
267 void resume_all_vcpus(void)
271 void pause_all_vcpus(void)
275 void qemu_cpu_kick(void *env)
280 void qemu_notify_event(void)
282 CPUState *env = cpu_single_env;
284 qemu_event_increment ();
288 if (next_cpu && env != next_cpu) {
293 void qemu_mutex_lock_iothread(void) {}
294 void qemu_mutex_unlock_iothread(void) {}
296 void vm_stop(int reason)
301 #else /* CONFIG_IOTHREAD */
303 #include "qemu-thread.h"
305 QemuMutex qemu_global_mutex;
306 static QemuMutex qemu_fair_mutex;
308 static QemuThread io_thread;
310 static QemuThread *tcg_cpu_thread;
311 static QemuCond *tcg_halt_cond;
313 static int qemu_system_ready;
315 static QemuCond qemu_cpu_cond;
317 static QemuCond qemu_system_cond;
318 static QemuCond qemu_pause_cond;
319 static QemuCond qemu_work_cond;
321 static void tcg_init_ipi(void);
322 static void kvm_init_ipi(CPUState *env);
323 static void unblock_io_signals(void);
325 int qemu_init_main_loop(void)
329 ret = qemu_event_init();
333 qemu_cond_init(&qemu_pause_cond);
334 qemu_mutex_init(&qemu_fair_mutex);
335 qemu_mutex_init(&qemu_global_mutex);
336 qemu_mutex_lock(&qemu_global_mutex);
338 unblock_io_signals();
339 qemu_thread_self(&io_thread);
344 void qemu_main_loop_start(void)
346 qemu_system_ready = 1;
347 qemu_cond_broadcast(&qemu_system_cond);
350 void run_on_cpu(CPUState *env, void (*func)(void *data), void *data)
352 struct qemu_work_item wi;
354 if (qemu_cpu_self(env)) {
361 if (!env->queued_work_first)
362 env->queued_work_first = &wi;
364 env->queued_work_last->next = &wi;
365 env->queued_work_last = &wi;
371 CPUState *self_env = cpu_single_env;
373 qemu_cond_wait(&qemu_work_cond, &qemu_global_mutex);
374 cpu_single_env = self_env;
378 static void flush_queued_work(CPUState *env)
380 struct qemu_work_item *wi;
382 if (!env->queued_work_first)
385 while ((wi = env->queued_work_first)) {
386 env->queued_work_first = wi->next;
390 env->queued_work_last = NULL;
391 qemu_cond_broadcast(&qemu_work_cond);
394 static void qemu_wait_io_event_common(CPUState *env)
399 qemu_cond_signal(&qemu_pause_cond);
401 flush_queued_work(env);
404 static void qemu_wait_io_event(CPUState *env)
406 while (!tcg_has_work())
407 qemu_cond_timedwait(env->halt_cond, &qemu_global_mutex, 1000);
409 qemu_mutex_unlock(&qemu_global_mutex);
412 * Users of qemu_global_mutex can be starved, having no chance
413 * to acquire it since this path will get to it first.
414 * So use another lock to provide fairness.
416 qemu_mutex_lock(&qemu_fair_mutex);
417 qemu_mutex_unlock(&qemu_fair_mutex);
419 qemu_mutex_lock(&qemu_global_mutex);
420 qemu_wait_io_event_common(env);
423 static void qemu_kvm_eat_signal(CPUState *env, int timeout)
430 ts.tv_sec = timeout / 1000;
431 ts.tv_nsec = (timeout % 1000) * 1000000;
433 sigemptyset(&waitset);
434 sigaddset(&waitset, SIG_IPI);
436 qemu_mutex_unlock(&qemu_global_mutex);
437 r = sigtimedwait(&waitset, &siginfo, &ts);
439 qemu_mutex_lock(&qemu_global_mutex);
441 if (r == -1 && !(e == EAGAIN || e == EINTR)) {
442 fprintf(stderr, "sigtimedwait: %s\n", strerror(e));
447 static void qemu_kvm_wait_io_event(CPUState *env)
449 while (!cpu_has_work(env))
450 qemu_cond_timedwait(env->halt_cond, &qemu_global_mutex, 1000);
452 qemu_kvm_eat_signal(env, 0);
453 qemu_wait_io_event_common(env);
456 static int qemu_cpu_exec(CPUState *env);
458 static void *kvm_cpu_thread_fn(void *arg)
462 qemu_mutex_lock(&qemu_global_mutex);
463 qemu_thread_self(env->thread);
469 /* signal CPU creation */
471 qemu_cond_signal(&qemu_cpu_cond);
473 /* and wait for machine initialization */
474 while (!qemu_system_ready)
475 qemu_cond_timedwait(&qemu_system_cond, &qemu_global_mutex, 100);
478 if (cpu_can_run(env))
480 qemu_kvm_wait_io_event(env);
486 static void *tcg_cpu_thread_fn(void *arg)
491 qemu_thread_self(env->thread);
493 /* signal CPU creation */
494 qemu_mutex_lock(&qemu_global_mutex);
495 for (env = first_cpu; env != NULL; env = env->next_cpu)
497 qemu_cond_signal(&qemu_cpu_cond);
499 /* and wait for machine initialization */
500 while (!qemu_system_ready)
501 qemu_cond_timedwait(&qemu_system_cond, &qemu_global_mutex, 100);
505 qemu_wait_io_event(cur_cpu);
511 void qemu_cpu_kick(void *_env)
513 CPUState *env = _env;
514 qemu_cond_broadcast(env->halt_cond);
515 qemu_thread_signal(env->thread, SIG_IPI);
518 int qemu_cpu_self(void *_env)
520 CPUState *env = _env;
523 qemu_thread_self(&this);
525 return qemu_thread_equal(&this, env->thread);
528 static void cpu_signal(int sig)
531 cpu_exit(cpu_single_env);
535 static void tcg_init_ipi(void)
538 struct sigaction sigact;
540 memset(&sigact, 0, sizeof(sigact));
541 sigact.sa_handler = cpu_signal;
542 sigaction(SIG_IPI, &sigact, NULL);
545 sigaddset(&set, SIG_IPI);
546 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
549 static void dummy_signal(int sig)
553 static void kvm_init_ipi(CPUState *env)
557 struct sigaction sigact;
559 memset(&sigact, 0, sizeof(sigact));
560 sigact.sa_handler = dummy_signal;
561 sigaction(SIG_IPI, &sigact, NULL);
563 pthread_sigmask(SIG_BLOCK, NULL, &set);
564 sigdelset(&set, SIG_IPI);
565 r = kvm_set_signal_mask(env, &set);
567 fprintf(stderr, "kvm_set_signal_mask: %s\n", strerror(r));
572 static void unblock_io_signals(void)
577 sigaddset(&set, SIGUSR2);
578 sigaddset(&set, SIGIO);
579 sigaddset(&set, SIGALRM);
580 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
583 sigaddset(&set, SIG_IPI);
584 pthread_sigmask(SIG_BLOCK, &set, NULL);
587 void qemu_mutex_lock_iothread(void)
590 qemu_mutex_lock(&qemu_fair_mutex);
591 qemu_mutex_lock(&qemu_global_mutex);
592 qemu_mutex_unlock(&qemu_fair_mutex);
594 qemu_mutex_lock(&qemu_fair_mutex);
595 if (qemu_mutex_trylock(&qemu_global_mutex)) {
596 qemu_thread_signal(tcg_cpu_thread, SIG_IPI);
597 qemu_mutex_lock(&qemu_global_mutex);
599 qemu_mutex_unlock(&qemu_fair_mutex);
603 void qemu_mutex_unlock_iothread(void)
605 qemu_mutex_unlock(&qemu_global_mutex);
608 static int all_vcpus_paused(void)
610 CPUState *penv = first_cpu;
615 penv = (CPUState *)penv->next_cpu;
621 void pause_all_vcpus(void)
623 CPUState *penv = first_cpu;
628 penv = (CPUState *)penv->next_cpu;
631 while (!all_vcpus_paused()) {
632 qemu_cond_timedwait(&qemu_pause_cond, &qemu_global_mutex, 100);
636 penv = (CPUState *)penv->next_cpu;
641 void resume_all_vcpus(void)
643 CPUState *penv = first_cpu;
649 penv = (CPUState *)penv->next_cpu;
653 static void tcg_init_vcpu(void *_env)
655 CPUState *env = _env;
656 /* share a single thread for all cpus with TCG */
657 if (!tcg_cpu_thread) {
658 env->thread = qemu_mallocz(sizeof(QemuThread));
659 env->halt_cond = qemu_mallocz(sizeof(QemuCond));
660 qemu_cond_init(env->halt_cond);
661 qemu_thread_create(env->thread, tcg_cpu_thread_fn, env);
662 while (env->created == 0)
663 qemu_cond_timedwait(&qemu_cpu_cond, &qemu_global_mutex, 100);
664 tcg_cpu_thread = env->thread;
665 tcg_halt_cond = env->halt_cond;
667 env->thread = tcg_cpu_thread;
668 env->halt_cond = tcg_halt_cond;
672 static void kvm_start_vcpu(CPUState *env)
674 env->thread = qemu_mallocz(sizeof(QemuThread));
675 env->halt_cond = qemu_mallocz(sizeof(QemuCond));
676 qemu_cond_init(env->halt_cond);
677 qemu_thread_create(env->thread, kvm_cpu_thread_fn, env);
678 while (env->created == 0)
679 qemu_cond_timedwait(&qemu_cpu_cond, &qemu_global_mutex, 100);
682 void qemu_init_vcpu(void *_env)
684 CPUState *env = _env;
686 env->nr_cores = smp_cores;
687 env->nr_threads = smp_threads;
694 void qemu_notify_event(void)
696 qemu_event_increment();
699 static void qemu_system_vmstop_request(int reason)
701 vmstop_requested = reason;
705 void vm_stop(int reason)
708 qemu_thread_self(&me);
710 if (!qemu_thread_equal(&me, &io_thread)) {
711 qemu_system_vmstop_request(reason);
713 * FIXME: should not return to device code in case
714 * vm_stop() has been requested.
716 if (cpu_single_env) {
717 cpu_exit(cpu_single_env);
718 cpu_single_env->stop = 1;
727 static int qemu_cpu_exec(CPUState *env)
730 #ifdef CONFIG_PROFILER
734 #ifdef CONFIG_PROFILER
735 ti = profile_getclock();
740 qemu_icount -= (env->icount_decr.u16.low + env->icount_extra);
741 env->icount_decr.u16.low = 0;
742 env->icount_extra = 0;
743 count = qemu_icount_round (qemu_next_deadline());
744 qemu_icount += count;
745 decr = (count > 0xffff) ? 0xffff : count;
747 env->icount_decr.u16.low = decr;
748 env->icount_extra = count;
751 #ifdef CONFIG_PROFILER
752 qemu_time += profile_getclock() - ti;
755 /* Fold pending instructions back into the
756 instruction counter, and clear the interrupt flag. */
757 qemu_icount -= (env->icount_decr.u16.low
758 + env->icount_extra);
759 env->icount_decr.u32 = 0;
760 env->icount_extra = 0;
765 bool tcg_cpu_exec(void)
769 if (next_cpu == NULL)
770 next_cpu = first_cpu;
771 for (; next_cpu != NULL; next_cpu = next_cpu->next_cpu) {
772 CPUState *env = cur_cpu = next_cpu;
774 qemu_clock_enable(vm_clock,
775 (cur_cpu->singlestep_enabled & SSTEP_NOTIMER) == 0);
777 if (qemu_alarm_pending())
779 if (cpu_can_run(env))
780 ret = qemu_cpu_exec(env);
784 if (ret == EXCP_DEBUG) {
785 gdb_set_stop_cpu(env);
786 debug_requested = EXCP_DEBUG;
790 return tcg_has_work();
793 void set_numa_modes(void)
798 for (env = first_cpu; env != NULL; env = env->next_cpu) {
799 for (i = 0; i < nb_numa_nodes; i++) {
800 if (node_cpumask[i] & (1 << env->cpu_index)) {
807 void set_cpu_log(const char *optarg)
810 const CPULogItem *item;
812 mask = cpu_str_to_log_mask(optarg);
814 printf("Log items (comma separated):\n");
815 for (item = cpu_log_items; item->mask != 0; item++) {
816 printf("%-10s %s\n", item->name, item->help);
823 /* Return the virtual CPU time, based on the instruction counter. */
824 int64_t cpu_get_icount(void)
827 CPUState *env = cpu_single_env;;
829 icount = qemu_icount;
831 if (!can_do_io(env)) {
832 fprintf(stderr, "Bad clock read\n");
834 icount -= (env->icount_decr.u16.low + env->icount_extra);
836 return qemu_icount_bias + (icount << icount_time_shift);
839 void list_cpus(FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
842 /* XXX: implement xxx_cpu_list for targets that still miss it */
843 #if defined(cpu_list_id)
844 cpu_list_id(f, cpu_fprintf, optarg);
845 #elif defined(cpu_list)
846 cpu_list(f, cpu_fprintf); /* deprecated */