Rusty Russell | f938d2c | 2007-07-26 10:41:02 -0700 | [diff] [blame] | 1 | /*P:500 Just as userspace programs request kernel operations through a system |
| 2 | * call, the Guest requests Host operations through a "hypercall". You might |
| 3 | * notice this nomenclature doesn't really follow any logic, but the name has |
| 4 | * been around for long enough that we're stuck with it. As you'd expect, this |
| 5 | * code is basically a one big switch statement. :*/ |
| 6 | |
| 7 | /* Copyright (C) 2006 Rusty Russell IBM Corporation |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 8 | |
| 9 | This program is free software; you can redistribute it and/or modify |
| 10 | it under the terms of the GNU General Public License as published by |
| 11 | the Free Software Foundation; either version 2 of the License, or |
| 12 | (at your option) any later version. |
| 13 | |
| 14 | This program is distributed in the hope that it will be useful, |
| 15 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | GNU General Public License for more details. |
| 18 | |
| 19 | You should have received a copy of the GNU General Public License |
| 20 | along with this program; if not, write to the Free Software |
| 21 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 22 | */ |
| 23 | #include <linux/uaccess.h> |
| 24 | #include <linux/syscalls.h> |
| 25 | #include <linux/mm.h> |
| 26 | #include <asm/page.h> |
| 27 | #include <asm/pgtable.h> |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 28 | #include "lg.h" |
| 29 | |
Jes Sorensen | b410e7b | 2007-10-22 11:03:31 +1000 | [diff] [blame] | 30 | /*H:120 This is the core hypercall routine: where the Guest gets what it wants. |
| 31 | * Or gets killed. Or, in the case of LHCALL_CRASH, both. */ |
Glauber de Oliveira Costa | 73044f0 | 2008-01-07 11:05:27 -0200 | [diff] [blame] | 32 | static void do_hcall(struct lg_cpu *cpu, struct hcall_args *args) |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 33 | { |
Jes Sorensen | b410e7b | 2007-10-22 11:03:31 +1000 | [diff] [blame] | 34 | switch (args->arg0) { |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 35 | case LHCALL_FLUSH_ASYNC: |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 36 | /* This call does nothing, except by breaking out of the Guest |
| 37 | * it makes us process all the asynchronous hypercalls. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 38 | break; |
| 39 | case LHCALL_LGUEST_INIT: |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 40 | /* You can't get here unless you're already initialized. Don't |
| 41 | * do that. */ |
Glauber de Oliveira Costa | 382ac6b | 2008-01-17 19:19:42 -0200 | [diff] [blame^] | 42 | kill_guest(cpu, "already have lguest_data"); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 43 | break; |
Balaji Rao | ec04b13 | 2007-12-28 14:26:24 +0530 | [diff] [blame] | 44 | case LHCALL_SHUTDOWN: { |
| 45 | /* Shutdown is such a trivial hypercall that we do it in four |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 46 | * lines right here. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 47 | char msg[128]; |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 48 | /* If the lgread fails, it will call kill_guest() itself; the |
| 49 | * kill_guest() with the message will be ignored. */ |
Glauber de Oliveira Costa | 382ac6b | 2008-01-17 19:19:42 -0200 | [diff] [blame^] | 50 | __lgread(cpu, msg, args->arg1, sizeof(msg)); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 51 | msg[sizeof(msg)-1] = '\0'; |
Glauber de Oliveira Costa | 382ac6b | 2008-01-17 19:19:42 -0200 | [diff] [blame^] | 52 | kill_guest(cpu, "CRASH: %s", msg); |
Balaji Rao | ec04b13 | 2007-12-28 14:26:24 +0530 | [diff] [blame] | 53 | if (args->arg2 == LGUEST_SHUTDOWN_RESTART) |
Glauber de Oliveira Costa | 382ac6b | 2008-01-17 19:19:42 -0200 | [diff] [blame^] | 54 | cpu->lg->dead = ERR_PTR(-ERESTART); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 55 | break; |
| 56 | } |
| 57 | case LHCALL_FLUSH_TLB: |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 58 | /* FLUSH_TLB comes in two flavors, depending on the |
| 59 | * argument: */ |
Jes Sorensen | b410e7b | 2007-10-22 11:03:31 +1000 | [diff] [blame] | 60 | if (args->arg1) |
Glauber de Oliveira Costa | 4665ac8 | 2008-01-07 11:05:35 -0200 | [diff] [blame] | 61 | guest_pagetable_clear_all(cpu); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 62 | else |
Glauber de Oliveira Costa | 1713608 | 2008-01-07 11:05:37 -0200 | [diff] [blame] | 63 | guest_pagetable_flush_user(cpu); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 64 | break; |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 65 | |
| 66 | /* All these calls simply pass the arguments through to the right |
| 67 | * routines. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 68 | case LHCALL_NEW_PGTABLE: |
Glauber de Oliveira Costa | 4665ac8 | 2008-01-07 11:05:35 -0200 | [diff] [blame] | 69 | guest_new_pagetable(cpu, args->arg1); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 70 | break; |
| 71 | case LHCALL_SET_STACK: |
Glauber de Oliveira Costa | 4665ac8 | 2008-01-07 11:05:35 -0200 | [diff] [blame] | 72 | guest_set_stack(cpu, args->arg1, args->arg2, args->arg3); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 73 | break; |
| 74 | case LHCALL_SET_PTE: |
Glauber de Oliveira Costa | 382ac6b | 2008-01-17 19:19:42 -0200 | [diff] [blame^] | 75 | guest_set_pte(cpu, args->arg1, args->arg2, __pte(args->arg3)); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 76 | break; |
| 77 | case LHCALL_SET_PMD: |
Glauber de Oliveira Costa | 382ac6b | 2008-01-17 19:19:42 -0200 | [diff] [blame^] | 78 | guest_set_pmd(cpu->lg, args->arg1, args->arg2); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 79 | break; |
| 80 | case LHCALL_SET_CLOCKEVENT: |
Glauber de Oliveira Costa | ad8d8f3 | 2008-01-07 11:05:28 -0200 | [diff] [blame] | 81 | guest_set_clockevent(cpu, args->arg1); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 82 | break; |
| 83 | case LHCALL_TS: |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 84 | /* This sets the TS flag, as we saw used in run_guest(). */ |
Glauber de Oliveira Costa | 4665ac8 | 2008-01-07 11:05:35 -0200 | [diff] [blame] | 85 | cpu->ts = args->arg1; |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 86 | break; |
| 87 | case LHCALL_HALT: |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 88 | /* Similarly, this sets the halted flag for run_guest(). */ |
Glauber de Oliveira Costa | 66686c2 | 2008-01-07 11:05:34 -0200 | [diff] [blame] | 89 | cpu->halted = 1; |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 90 | break; |
Rusty Russell | 1504527 | 2007-10-22 11:24:10 +1000 | [diff] [blame] | 91 | case LHCALL_NOTIFY: |
Glauber de Oliveira Costa | 5e232f4 | 2008-01-07 11:05:36 -0200 | [diff] [blame] | 92 | cpu->pending_notify = args->arg1; |
Rusty Russell | 1504527 | 2007-10-22 11:24:10 +1000 | [diff] [blame] | 93 | break; |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 94 | default: |
Rusty Russell | e1e7296 | 2007-10-25 15:02:50 +1000 | [diff] [blame] | 95 | /* It should be an architecture-specific hypercall. */ |
Glauber de Oliveira Costa | 73044f0 | 2008-01-07 11:05:27 -0200 | [diff] [blame] | 96 | if (lguest_arch_do_hcall(cpu, args)) |
Glauber de Oliveira Costa | 382ac6b | 2008-01-17 19:19:42 -0200 | [diff] [blame^] | 97 | kill_guest(cpu, "Bad hypercall %li\n", args->arg0); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 98 | } |
| 99 | } |
Jes Sorensen | b410e7b | 2007-10-22 11:03:31 +1000 | [diff] [blame] | 100 | /*:*/ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 101 | |
Jes Sorensen | b410e7b | 2007-10-22 11:03:31 +1000 | [diff] [blame] | 102 | /*H:124 Asynchronous hypercalls are easy: we just look in the array in the |
| 103 | * Guest's "struct lguest_data" to see if any new ones are marked "ready". |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 104 | * |
| 105 | * We are careful to do these in order: obviously we respect the order the |
| 106 | * Guest put them in the ring, but we also promise the Guest that they will |
| 107 | * happen before any normal hypercall (which is why we check this before |
| 108 | * checking for a normal hcall). */ |
Glauber de Oliveira Costa | 73044f0 | 2008-01-07 11:05:27 -0200 | [diff] [blame] | 109 | static void do_async_hcalls(struct lg_cpu *cpu) |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 110 | { |
| 111 | unsigned int i; |
| 112 | u8 st[LHCALL_RING_SIZE]; |
| 113 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 114 | /* For simplicity, we copy the entire call status array in at once. */ |
Glauber de Oliveira Costa | 382ac6b | 2008-01-17 19:19:42 -0200 | [diff] [blame^] | 115 | if (copy_from_user(&st, &cpu->lg->lguest_data->hcall_status, sizeof(st))) |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 116 | return; |
| 117 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 118 | /* We process "struct lguest_data"s hcalls[] ring once. */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 119 | for (i = 0; i < ARRAY_SIZE(st); i++) { |
Jes Sorensen | b410e7b | 2007-10-22 11:03:31 +1000 | [diff] [blame] | 120 | struct hcall_args args; |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 121 | /* We remember where we were up to from last time. This makes |
| 122 | * sure that the hypercalls are done in the order the Guest |
| 123 | * places them in the ring. */ |
Glauber de Oliveira Costa | 73044f0 | 2008-01-07 11:05:27 -0200 | [diff] [blame] | 124 | unsigned int n = cpu->next_hcall; |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 125 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 126 | /* 0xFF means there's no call here (yet). */ |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 127 | if (st[n] == 0xFF) |
| 128 | break; |
| 129 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 130 | /* OK, we have hypercall. Increment the "next_hcall" cursor, |
| 131 | * and wrap back to 0 if we reach the end. */ |
Glauber de Oliveira Costa | 73044f0 | 2008-01-07 11:05:27 -0200 | [diff] [blame] | 132 | if (++cpu->next_hcall == LHCALL_RING_SIZE) |
| 133 | cpu->next_hcall = 0; |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 134 | |
Jes Sorensen | b410e7b | 2007-10-22 11:03:31 +1000 | [diff] [blame] | 135 | /* Copy the hypercall arguments into a local copy of |
| 136 | * the hcall_args struct. */ |
Glauber de Oliveira Costa | 382ac6b | 2008-01-17 19:19:42 -0200 | [diff] [blame^] | 137 | if (copy_from_user(&args, &cpu->lg->lguest_data->hcalls[n], |
Jes Sorensen | b410e7b | 2007-10-22 11:03:31 +1000 | [diff] [blame] | 138 | sizeof(struct hcall_args))) { |
Glauber de Oliveira Costa | 382ac6b | 2008-01-17 19:19:42 -0200 | [diff] [blame^] | 139 | kill_guest(cpu, "Fetching async hypercalls"); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 140 | break; |
| 141 | } |
| 142 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 143 | /* Do the hypercall, same as a normal one. */ |
Glauber de Oliveira Costa | 73044f0 | 2008-01-07 11:05:27 -0200 | [diff] [blame] | 144 | do_hcall(cpu, &args); |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 145 | |
| 146 | /* Mark the hypercall done. */ |
Glauber de Oliveira Costa | 382ac6b | 2008-01-17 19:19:42 -0200 | [diff] [blame^] | 147 | if (put_user(0xFF, &cpu->lg->lguest_data->hcall_status[n])) { |
| 148 | kill_guest(cpu, "Writing result for async hypercall"); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 149 | break; |
| 150 | } |
| 151 | |
Rusty Russell | 1504527 | 2007-10-22 11:24:10 +1000 | [diff] [blame] | 152 | /* Stop doing hypercalls if they want to notify the Launcher: |
| 153 | * it needs to service this first. */ |
Glauber de Oliveira Costa | 5e232f4 | 2008-01-07 11:05:36 -0200 | [diff] [blame] | 154 | if (cpu->pending_notify) |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 155 | break; |
| 156 | } |
| 157 | } |
| 158 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 159 | /* Last of all, we look at what happens first of all. The very first time the |
| 160 | * Guest makes a hypercall, we end up here to set things up: */ |
Glauber de Oliveira Costa | 73044f0 | 2008-01-07 11:05:27 -0200 | [diff] [blame] | 161 | static void initialize(struct lg_cpu *cpu) |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 162 | { |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 163 | /* You can't do anything until you're initialized. The Guest knows the |
| 164 | * rules, so we're unforgiving here. */ |
Glauber de Oliveira Costa | 73044f0 | 2008-01-07 11:05:27 -0200 | [diff] [blame] | 165 | if (cpu->hcall->arg0 != LHCALL_LGUEST_INIT) { |
Glauber de Oliveira Costa | 382ac6b | 2008-01-17 19:19:42 -0200 | [diff] [blame^] | 166 | kill_guest(cpu, "hypercall %li before INIT", cpu->hcall->arg0); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 167 | return; |
| 168 | } |
| 169 | |
Glauber de Oliveira Costa | 73044f0 | 2008-01-07 11:05:27 -0200 | [diff] [blame] | 170 | if (lguest_arch_init_hypercalls(cpu)) |
Glauber de Oliveira Costa | 382ac6b | 2008-01-17 19:19:42 -0200 | [diff] [blame^] | 171 | kill_guest(cpu, "bad guest page %p", cpu->lg->lguest_data); |
Rusty Russell | 3c6b5bf | 2007-10-22 11:03:26 +1000 | [diff] [blame] | 172 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 173 | /* The Guest tells us where we're not to deliver interrupts by putting |
| 174 | * the range of addresses into "struct lguest_data". */ |
Glauber de Oliveira Costa | 382ac6b | 2008-01-17 19:19:42 -0200 | [diff] [blame^] | 175 | if (get_user(cpu->lg->noirq_start, &cpu->lg->lguest_data->noirq_start) |
| 176 | || get_user(cpu->lg->noirq_end, &cpu->lg->lguest_data->noirq_end)) |
| 177 | kill_guest(cpu, "bad guest page %p", cpu->lg->lguest_data); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 178 | |
Rusty Russell | e1e7296 | 2007-10-25 15:02:50 +1000 | [diff] [blame] | 179 | /* We write the current time into the Guest's data page once so it can |
| 180 | * set its clock. */ |
Glauber de Oliveira Costa | 382ac6b | 2008-01-17 19:19:42 -0200 | [diff] [blame^] | 181 | write_timestamp(cpu); |
Rusty Russell | 6c8dca5 | 2007-07-27 13:42:52 +1000 | [diff] [blame] | 182 | |
Rusty Russell | 47436aa | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 183 | /* page_tables.c will also do some setup. */ |
Glauber de Oliveira Costa | 382ac6b | 2008-01-17 19:19:42 -0200 | [diff] [blame^] | 184 | page_table_guest_data_init(cpu); |
Rusty Russell | 47436aa | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 185 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 186 | /* This is the one case where the above accesses might have been the |
| 187 | * first write to a Guest page. This may have caused a copy-on-write |
Rusty Russell | e1e7296 | 2007-10-25 15:02:50 +1000 | [diff] [blame] | 188 | * fault, but the old page might be (read-only) in the Guest |
| 189 | * pagetable. */ |
Glauber de Oliveira Costa | 4665ac8 | 2008-01-07 11:05:35 -0200 | [diff] [blame] | 190 | guest_pagetable_clear_all(cpu); |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 191 | } |
| 192 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 193 | /*H:100 |
| 194 | * Hypercalls |
| 195 | * |
| 196 | * Remember from the Guest, hypercalls come in two flavors: normal and |
| 197 | * asynchronous. This file handles both of types. |
| 198 | */ |
Glauber de Oliveira Costa | 73044f0 | 2008-01-07 11:05:27 -0200 | [diff] [blame] | 199 | void do_hypercalls(struct lg_cpu *cpu) |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 200 | { |
Rusty Russell | cc6d4fb | 2007-10-22 11:03:30 +1000 | [diff] [blame] | 201 | /* Not initialized yet? This hypercall must do it. */ |
Glauber de Oliveira Costa | 73044f0 | 2008-01-07 11:05:27 -0200 | [diff] [blame] | 202 | if (unlikely(!cpu->lg->lguest_data)) { |
Rusty Russell | cc6d4fb | 2007-10-22 11:03:30 +1000 | [diff] [blame] | 203 | /* Set up the "struct lguest_data" */ |
Glauber de Oliveira Costa | 73044f0 | 2008-01-07 11:05:27 -0200 | [diff] [blame] | 204 | initialize(cpu); |
Rusty Russell | cc6d4fb | 2007-10-22 11:03:30 +1000 | [diff] [blame] | 205 | /* Hcall is done. */ |
Glauber de Oliveira Costa | 73044f0 | 2008-01-07 11:05:27 -0200 | [diff] [blame] | 206 | cpu->hcall = NULL; |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 207 | return; |
| 208 | } |
| 209 | |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 210 | /* The Guest has initialized. |
| 211 | * |
| 212 | * Look in the hypercall ring for the async hypercalls: */ |
Glauber de Oliveira Costa | 73044f0 | 2008-01-07 11:05:27 -0200 | [diff] [blame] | 213 | do_async_hcalls(cpu); |
Rusty Russell | bff672e | 2007-07-26 10:41:04 -0700 | [diff] [blame] | 214 | |
| 215 | /* If we stopped reading the hypercall ring because the Guest did a |
Rusty Russell | 1504527 | 2007-10-22 11:24:10 +1000 | [diff] [blame] | 216 | * NOTIFY to the Launcher, we want to return now. Otherwise we do |
Rusty Russell | cc6d4fb | 2007-10-22 11:03:30 +1000 | [diff] [blame] | 217 | * the hypercall. */ |
Glauber de Oliveira Costa | 5e232f4 | 2008-01-07 11:05:36 -0200 | [diff] [blame] | 218 | if (!cpu->pending_notify) { |
Glauber de Oliveira Costa | 73044f0 | 2008-01-07 11:05:27 -0200 | [diff] [blame] | 219 | do_hcall(cpu, cpu->hcall); |
Rusty Russell | cc6d4fb | 2007-10-22 11:03:30 +1000 | [diff] [blame] | 220 | /* Tricky point: we reset the hcall pointer to mark the |
| 221 | * hypercall as "done". We use the hcall pointer rather than |
| 222 | * the trap number to indicate a hypercall is pending. |
| 223 | * Normally it doesn't matter: the Guest will run again and |
| 224 | * update the trap number before we come back here. |
| 225 | * |
Rusty Russell | e1e7296 | 2007-10-25 15:02:50 +1000 | [diff] [blame] | 226 | * However, if we are signalled or the Guest sends I/O to the |
Rusty Russell | cc6d4fb | 2007-10-22 11:03:30 +1000 | [diff] [blame] | 227 | * Launcher, the run_guest() loop will exit without running the |
| 228 | * Guest. When it comes back it would try to re-run the |
| 229 | * hypercall. */ |
Glauber de Oliveira Costa | 73044f0 | 2008-01-07 11:05:27 -0200 | [diff] [blame] | 230 | cpu->hcall = NULL; |
Rusty Russell | d7e28ff | 2007-07-19 01:49:23 -0700 | [diff] [blame] | 231 | } |
| 232 | } |
Rusty Russell | 6c8dca5 | 2007-07-27 13:42:52 +1000 | [diff] [blame] | 233 | |
| 234 | /* This routine supplies the Guest with time: it's used for wallclock time at |
| 235 | * initial boot and as a rough time source if the TSC isn't available. */ |
Glauber de Oliveira Costa | 382ac6b | 2008-01-17 19:19:42 -0200 | [diff] [blame^] | 236 | void write_timestamp(struct lg_cpu *cpu) |
Rusty Russell | 6c8dca5 | 2007-07-27 13:42:52 +1000 | [diff] [blame] | 237 | { |
| 238 | struct timespec now; |
| 239 | ktime_get_real_ts(&now); |
Glauber de Oliveira Costa | 382ac6b | 2008-01-17 19:19:42 -0200 | [diff] [blame^] | 240 | if (copy_to_user(&cpu->lg->lguest_data->time, |
| 241 | &now, sizeof(struct timespec))) |
| 242 | kill_guest(cpu, "Writing timestamp"); |
Rusty Russell | 6c8dca5 | 2007-07-27 13:42:52 +1000 | [diff] [blame] | 243 | } |