aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lguest/lguest.c
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2015-02-10 23:45:10 -0500
committerRusty Russell <rusty@rustcorp.com.au>2015-02-11 01:17:31 -0500
commitc565650b1028bc551e5d16dd0ec8f7078da7cace (patch)
tree019581b2a4821eba84ebdff179034c5ac57ca1a3 /tools/lguest/lguest.c
parentc9e433e4b852b70ea267388cf9b5d8096b04c44c (diff)
lguest: send trap 13 through to userspace.
We copy 7 bytes at eip for userspace's instruction decode; we have to carefully handle the case where eip is at the end of a page. We can't leave this to userspace since kernel has all the page table decode logic. The decode logic moves to userspace, basically unchanged. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'tools/lguest/lguest.c')
-rw-r--r--tools/lguest/lguest.c149
1 files changed, 149 insertions, 0 deletions
diff --git a/tools/lguest/lguest.c b/tools/lguest/lguest.c
index 0e754d04876d..b2217657f62c 100644
--- a/tools/lguest/lguest.c
+++ b/tools/lguest/lguest.c
@@ -41,6 +41,7 @@
41#include <signal.h> 41#include <signal.h>
42#include <pwd.h> 42#include <pwd.h>
43#include <grp.h> 43#include <grp.h>
44#include <sys/user.h>
44 45
45#ifndef VIRTIO_F_ANY_LAYOUT 46#ifndef VIRTIO_F_ANY_LAYOUT
46#define VIRTIO_F_ANY_LAYOUT 27 47#define VIRTIO_F_ANY_LAYOUT 27
@@ -1143,6 +1144,150 @@ static void handle_output(unsigned long addr)
1143 strnlen(from_guest_phys(addr), guest_limit - addr)); 1144 strnlen(from_guest_phys(addr), guest_limit - addr));
1144} 1145}
1145 1146
1147/*L:216
1148 * This is where we emulate a handful of Guest instructions. It's ugly
1149 * and we used to do it in the kernel but it grew over time.
1150 */
1151
1152/*
1153 * We use the ptrace syscall's pt_regs struct to talk about registers
1154 * to lguest: these macros convert the names to the offsets.
1155 */
1156#define getreg(name) getreg_off(offsetof(struct user_regs_struct, name))
1157#define setreg(name, val) \
1158 setreg_off(offsetof(struct user_regs_struct, name), (val))
1159
1160static u32 getreg_off(size_t offset)
1161{
1162 u32 r;
1163 unsigned long args[] = { LHREQ_GETREG, offset };
1164
1165 if (pwrite(lguest_fd, args, sizeof(args), cpu_id) < 0)
1166 err(1, "Getting register %u", offset);
1167 if (pread(lguest_fd, &r, sizeof(r), cpu_id) != sizeof(r))
1168 err(1, "Reading register %u", offset);
1169
1170 return r;
1171}
1172
1173static void setreg_off(size_t offset, u32 val)
1174{
1175 unsigned long args[] = { LHREQ_SETREG, offset, val };
1176
1177 if (pwrite(lguest_fd, args, sizeof(args), cpu_id) < 0)
1178 err(1, "Setting register %u", offset);
1179}
1180
1181static void emulate_insn(const u8 insn[])
1182{
1183 unsigned long args[] = { LHREQ_TRAP, 13 };
1184 unsigned int insnlen = 0, in = 0, small_operand = 0, byte_access;
1185 unsigned int eax, port, mask;
1186 /*
1187 * We always return all-ones on IO port reads, which traditionally
1188 * means "there's nothing there".
1189 */
1190 u32 val = 0xFFFFFFFF;
1191
1192 /*
1193 * This must be the Guest kernel trying to do something, not userspace!
1194 * The bottom two bits of the CS segment register are the privilege
1195 * level.
1196 */
1197 if ((getreg(xcs) & 3) != 0x1)
1198 goto no_emulate;
1199
1200 /* Decoding x86 instructions is icky. */
1201
1202 /*
1203 * Around 2.6.33, the kernel started using an emulation for the
1204 * cmpxchg8b instruction in early boot on many configurations. This
1205 * code isn't paravirtualized, and it tries to disable interrupts.
1206 * Ignore it, which will Mostly Work.
1207 */
1208 if (insn[insnlen] == 0xfa) {
1209 /* "cli", or Clear Interrupt Enable instruction. Skip it. */
1210 insnlen = 1;
1211 goto skip_insn;
1212 }
1213
1214 /*
1215 * 0x66 is an "operand prefix". It means a 16, not 32 bit in/out.
1216 */
1217 if (insn[insnlen] == 0x66) {
1218 small_operand = 1;
1219 /* The instruction is 1 byte so far, read the next byte. */
1220 insnlen = 1;
1221 }
1222
1223 /* If the lower bit isn't set, it's a single byte access */
1224 byte_access = !(insn[insnlen] & 1);
1225
1226 /*
1227 * Now we can ignore the lower bit and decode the 4 opcodes
1228 * we need to emulate.
1229 */
1230 switch (insn[insnlen] & 0xFE) {
1231 case 0xE4: /* in <next byte>,%al */
1232 port = insn[insnlen+1];
1233 insnlen += 2;
1234 in = 1;
1235 break;
1236 case 0xEC: /* in (%dx),%al */
1237 port = getreg(edx) & 0xFFFF;
1238 insnlen += 1;
1239 in = 1;
1240 break;
1241 case 0xE6: /* out %al,<next byte> */
1242 port = insn[insnlen+1];
1243 insnlen += 2;
1244 break;
1245 case 0xEE: /* out %al,(%dx) */
1246 port = getreg(edx) & 0xFFFF;
1247 insnlen += 1;
1248 break;
1249 default:
1250 /* OK, we don't know what this is, can't emulate. */
1251 goto no_emulate;
1252 }
1253
1254 /* Set a mask of the 1, 2 or 4 bytes, depending on size of IO */
1255 if (byte_access)
1256 mask = 0xFF;
1257 else if (small_operand)
1258 mask = 0xFFFF;
1259 else
1260 mask = 0xFFFFFFFF;
1261
1262 /*
1263 * If it was an "IN" instruction, they expect the result to be read
1264 * into %eax, so we change %eax.
1265 */
1266 eax = getreg(eax);
1267
1268 if (in) {
1269 /* Clear the bits we're about to read */
1270 eax &= ~mask;
1271 /* Copy bits in from val. */
1272 eax |= val & mask;
1273 /* Now update the register. */
1274 setreg(eax, eax);
1275 }
1276
1277 verbose("IO %s of %x to %u: %#08x\n",
1278 in ? "IN" : "OUT", mask, port, eax);
1279skip_insn:
1280 /* Finally, we've "done" the instruction, so move past it. */
1281 setreg(eip, getreg(eip) + insnlen);
1282 return;
1283
1284no_emulate:
1285 /* Inject trap into Guest. */
1286 if (write(lguest_fd, args, sizeof(args)) < 0)
1287 err(1, "Reinjecting trap 13 for fault at %#x", getreg(eip));
1288}
1289
1290
1146/*L:190 1291/*L:190
1147 * Device Setup 1292 * Device Setup
1148 * 1293 *
@@ -1832,6 +1977,10 @@ static void __attribute__((noreturn)) run_guest(void)
1832 verbose("Notify on address %#08x\n", 1977 verbose("Notify on address %#08x\n",
1833 notify.addr); 1978 notify.addr);
1834 handle_output(notify.addr); 1979 handle_output(notify.addr);
1980 } else if (notify.trap == 13) {
1981 verbose("Emulating instruction at %#x\n",
1982 getreg(eip));
1983 emulate_insn(notify.insn);
1835 } else 1984 } else
1836 errx(1, "Unknown trap %i addr %#08x\n", 1985 errx(1, "Unknown trap %i addr %#08x\n",
1837 notify.trap, notify.addr); 1986 notify.trap, notify.addr);