Module Name:    src
Committed By:   jmcneill
Date:           Mon Oct 17 22:39:23 UTC 2011

Modified Files:
        src/sys/arch/x86/conf: files.x86
Added Files:
        src/sys/arch/x86/x86: vmt.c
        src/sys/modules/vmt: Makefile vmt.ioconf

Log Message:
add a port of the VMware Tools driver vmt(4) from OpenBSD


To generate a diff of this commit:
cvs rdiff -u -r1.72 -r1.73 src/sys/arch/x86/conf/files.x86
cvs rdiff -u -r0 -r1.1 src/sys/arch/x86/x86/vmt.c
cvs rdiff -u -r0 -r1.1 src/sys/modules/vmt/Makefile \
    src/sys/modules/vmt/vmt.ioconf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/x86/conf/files.x86
diff -u src/sys/arch/x86/conf/files.x86:1.72 src/sys/arch/x86/conf/files.x86:1.73
--- src/sys/arch/x86/conf/files.x86:1.72	Mon Aug 29 22:46:56 2011
+++ src/sys/arch/x86/conf/files.x86	Mon Oct 17 22:39:22 2011
@@ -1,4 +1,4 @@
-#	$NetBSD: files.x86,v 1.72 2011/08/29 22:46:56 dyoung Exp $
+#	$NetBSD: files.x86,v 1.73 2011/10/17 22:39:22 jmcneill Exp $
 
 # options for MP configuration through the MP spec
 defflag opt_mpbios.h MPBIOS MPVERBOSE MPDEBUG MPBIOS_SCANPCI
@@ -61,6 +61,10 @@ device	viac7temp: sysmon_envsys
 attach	viac7temp at cpufeaturebus
 file	arch/x86/x86/viac7temp.c	viac7temp
 
+device	vmt: sysmon_power
+attach	vmt at cpufeaturebus
+file	arch/x86/x86/vmt.c		vmt
+
 file	arch/x86/x86/apic.c		ioapic | lapic
 file	arch/x86/x86/bus_dma.c
 file	arch/x86/x86/bus_space.c

Added files:

Index: src/sys/arch/x86/x86/vmt.c
diff -u /dev/null src/sys/arch/x86/x86/vmt.c:1.1
--- /dev/null	Mon Oct 17 22:39:23 2011
+++ src/sys/arch/x86/x86/vmt.c	Mon Oct 17 22:39:23 2011
@@ -0,0 +1,1195 @@
+/* $NetBSD: vmt.c,v 1.1 2011/10/17 22:39:23 jmcneill Exp $ */
+/* $OpenBSD: vmt.c,v 1.11 2011/01/27 21:29:25 dtucker Exp $ */
+
+/*
+ * Copyright (c) 2007 David Crawshaw <da...@zentus.com>
+ * Copyright (c) 2008 David Gwynne <d...@openbsd.org>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+/*
+ * Protocol reverse engineered by Ken Kato:
+ * http://chitchat.at.infoseek.co.jp/vmware/backdoor.html
+ */
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/kernel.h>
+#include <sys/device.h>
+#include <sys/types.h>
+#include <sys/kmem.h>
+#include <sys/callout.h>
+#include <sys/reboot.h>
+#include <sys/syslog.h>
+#include <sys/proc.h>
+#include <sys/socket.h>
+#include <sys/module.h>
+
+#include <net/if.h>
+#include <netinet/in.h>
+
+#include <machine/cpuvar.h>
+
+#include <dev/sysmon/sysmonvar.h>
+#include <dev/sysmon/sysmon_taskq.h>
+
+/* #define VMT_DEBUG */
+
+/* "The" magic number, always occupies the EAX register. */
+#define VM_MAGIC			0x564D5868
+
+/* Port numbers, passed on EDX.LOW . */
+#define VM_PORT_CMD			0x5658
+#define VM_PORT_RPC			0x5659
+
+/* Commands, passed on ECX.LOW. */
+#define VM_CMD_GET_SPEED		0x01
+#define VM_CMD_APM			0x02
+#define VM_CMD_GET_MOUSEPOS		0x04
+#define VM_CMD_SET_MOUSEPOS		0x05
+#define VM_CMD_GET_CLIPBOARD_LEN	0x06
+#define VM_CMD_GET_CLIPBOARD		0x07
+#define VM_CMD_SET_CLIPBOARD_LEN	0x08
+#define VM_CMD_SET_CLIPBOARD		0x09
+#define VM_CMD_GET_VERSION		0x0a
+#define  VM_VERSION_UNMANAGED			0x7fffffff
+#define VM_CMD_GET_DEVINFO		0x0b
+#define VM_CMD_DEV_ADDREMOVE		0x0c
+#define VM_CMD_GET_GUI_OPTIONS		0x0d
+#define VM_CMD_SET_GUI_OPTIONS		0x0e
+#define VM_CMD_GET_SCREEN_SIZE		0x0f
+#define VM_CMD_GET_HWVER		0x11
+#define VM_CMD_POPUP_OSNOTFOUND		0x12
+#define VM_CMD_GET_BIOS_UUID		0x13
+#define VM_CMD_GET_MEM_SIZE		0x14
+/*#define VM_CMD_GET_TIME		0x17 */	/* deprecated */
+#define VM_CMD_RPC			0x1e
+#define VM_CMD_GET_TIME_FULL		0x2e
+
+/* RPC sub-commands, passed on ECX.HIGH. */
+#define VM_RPC_OPEN			0x00
+#define VM_RPC_SET_LENGTH		0x01
+#define VM_RPC_SET_DATA			0x02
+#define VM_RPC_GET_LENGTH		0x03
+#define VM_RPC_GET_DATA			0x04
+#define VM_RPC_GET_END			0x05
+#define VM_RPC_CLOSE			0x06
+
+/* RPC magic numbers, passed on EBX. */
+#define VM_RPC_OPEN_RPCI	0x49435052UL /* with VM_RPC_OPEN. */
+#define VM_RPC_OPEN_TCLO	0x4F4C4354UL /* with VP_RPC_OPEN. */
+#define VM_RPC_ENH_DATA		0x00010000UL /* with enhanced RPC data calls. */
+
+#define VM_RPC_FLAG_COOKIE	0x80000000UL
+
+/* RPC reply flags */
+#define VM_RPC_REPLY_SUCCESS	0x0001
+#define VM_RPC_REPLY_DORECV	0x0002		/* incoming message available */
+#define VM_RPC_REPLY_CLOSED	0x0004		/* RPC channel is closed */
+#define VM_RPC_REPLY_UNSENT	0x0008		/* incoming message was removed? */
+#define VM_RPC_REPLY_CHECKPOINT	0x0010		/* checkpoint occurred -> retry */
+#define VM_RPC_REPLY_POWEROFF	0x0020		/* underlying device is powering off */
+#define VM_RPC_REPLY_TIMEOUT	0x0040
+#define VM_RPC_REPLY_HB		0x0080		/* high-bandwidth tx/rx available */
+
+/* VM state change IDs */
+#define VM_STATE_CHANGE_HALT	1
+#define VM_STATE_CHANGE_REBOOT	2
+#define VM_STATE_CHANGE_POWERON 3
+#define VM_STATE_CHANGE_RESUME  4
+#define VM_STATE_CHANGE_SUSPEND 5
+
+/* VM guest info keys */
+#define VM_GUEST_INFO_DNS_NAME		1
+#define VM_GUEST_INFO_IP_ADDRESS	2
+#define VM_GUEST_INFO_DISK_FREE_SPACE	3
+#define VM_GUEST_INFO_BUILD_NUMBER	4
+#define VM_GUEST_INFO_OS_NAME_FULL	5
+#define VM_GUEST_INFO_OS_NAME		6
+#define VM_GUEST_INFO_UPTIME		7
+#define VM_GUEST_INFO_MEMORY		8
+#define VM_GUEST_INFO_IP_ADDRESS_V2	9
+
+/* RPC responses */
+#define VM_RPC_REPLY_OK			"OK "
+#define VM_RPC_RESET_REPLY		"OK ATR toolbox"
+#define VM_RPC_REPLY_ERROR		"ERROR Unknown command"
+#define VM_RPC_REPLY_ERROR_IP_ADDR	"ERROR Unable to find guest IP address"
+
+/* A register. */
+union vm_reg {
+	struct {
+		uint16_t low;
+		uint16_t high;
+	} part;
+	uint32_t word;
+#ifdef __amd64__
+	struct {
+		uint32_t low;
+		uint32_t high;
+	} words;
+	uint64_t quad;
+#endif
+} __packed;
+
+/* A register frame. */
+struct vm_backdoor {
+	union vm_reg eax;
+	union vm_reg ebx;
+	union vm_reg ecx;
+	union vm_reg edx;
+	union vm_reg esi;
+	union vm_reg edi;
+	union vm_reg ebp;
+} __packed;
+
+/* RPC context. */
+struct vm_rpc {
+	uint16_t channel;
+	uint32_t cookie1;
+	uint32_t cookie2;
+};
+
+static int	vmt_match(device_t, cfdata_t, void *);
+static void	vmt_attach(device_t, device_t, void *);
+static int	vmt_detach(device_t, int);
+
+struct vmt_softc {
+	device_t		sc_dev;
+
+	struct vm_rpc		sc_tclo_rpc;
+	bool			sc_tclo_rpc_open;
+	char			*sc_rpc_buf;
+	int			sc_rpc_error;
+	int			sc_tclo_ping;
+	int			sc_set_guest_os;
+#define VMT_RPC_BUFLEN			256
+
+	struct callout		sc_tick;
+	struct callout		sc_tclo_tick;
+#if notyet
+	struct ksensordev	sc_sensordev;
+	struct ksensor		sc_sensor;
+#endif
+
+	struct sysmon_pswitch	sc_smpsw_power;
+	struct sysmon_pswitch	sc_smpsw_reset;
+	bool			sc_smpsw_valid;
+
+	char			sc_hostname[MAXHOSTNAMELEN];
+};
+
+CFATTACH_DECL_NEW(vmt, sizeof(struct vmt_softc),
+	vmt_match, vmt_attach, vmt_detach, NULL);
+
+static void vm_cmd(struct vm_backdoor *);
+static void vm_ins(struct vm_backdoor *);
+static void vm_outs(struct vm_backdoor *);
+
+/* Functions for communicating with the VM Host. */
+static int vm_rpc_open(struct vm_rpc *, uint32_t);
+static int vm_rpc_close(struct vm_rpc *);
+static int vm_rpc_send(const struct vm_rpc *, const uint8_t *, uint32_t);
+static int vm_rpc_send_str(const struct vm_rpc *, const uint8_t *);
+static int vm_rpc_get_length(const struct vm_rpc *, uint32_t *, uint16_t *);
+static int vm_rpc_get_data(const struct vm_rpc *, char *, uint32_t, uint16_t);
+static int vm_rpc_send_rpci_tx_buf(struct vmt_softc *, const uint8_t *, uint32_t);
+static int vm_rpc_send_rpci_tx(struct vmt_softc *, const char *, ...)
+    __printflike(2, 3);
+static int vm_rpci_response_successful(struct vmt_softc *);
+
+static void vmt_tclo_state_change_success(struct vmt_softc *, int, char);
+static void vmt_do_reboot(struct vmt_softc *);
+static void vmt_do_shutdown(struct vmt_softc *);
+
+static void vmt_update_guest_info(struct vmt_softc *);
+static void vmt_update_guest_uptime(struct vmt_softc *);
+
+static void vmt_tick(void *);
+static void vmt_tclo_tick(void *);
+static bool vmt_shutdown(device_t, int);
+static void vmt_pswitch_event(void *);
+
+extern char hostname[MAXHOSTNAMELEN];
+
+static bool
+vmt_probe(uint32_t *type)
+{
+	struct vm_backdoor frame;
+
+	memset(&frame, 0, sizeof(frame));
+
+	frame.eax.word = VM_MAGIC;
+	frame.ebx.word = ~VM_MAGIC;
+	frame.ecx.part.low = VM_CMD_GET_VERSION;
+	frame.ecx.part.high = 0xffff;
+	frame.edx.part.low  = VM_PORT_CMD;
+	frame.edx.part.high = 0;
+
+	vm_cmd(&frame);
+
+	if (frame.eax.word == 0xffffffff ||
+	    frame.ebx.word != VM_MAGIC)
+		return false;
+
+	if (type)
+		*type = frame.ecx.word;
+
+	return true;
+}
+
+static int
+vmt_match(device_t parent, cfdata_t match, void *aux)
+{
+	struct cpufeature_attach_args *cfaa = aux;
+	struct cpu_info *ci = cfaa->ci;
+
+	if (strcmp(cfaa->name, "vm") != 0)
+		return 0;
+	if ((ci->ci_flags & (CPUF_BSP|CPUF_SP|CPUF_PRIMARY)) == 0)
+		return 0;
+
+	return vmt_probe(NULL);
+}
+
+static const char *
+vmt_type(void)
+{
+	uint32_t vmwaretype = 0;
+
+	vmt_probe(&vmwaretype);
+
+	switch (vmwaretype) {
+	case 1:	return "Express";
+	case 2:	return "ESX Server";
+	case 3:	return "VMware Server";
+	case 4: return "Workstation";
+	default: return "Unknown";
+	}
+}
+
+static void
+vmt_attach(device_t parent, device_t self, void *aux)
+{
+	struct vmt_softc *sc = device_private(self);
+
+	aprint_naive("\n");
+	aprint_normal(": %s\n", vmt_type());
+
+	sc->sc_dev = self;
+	callout_init(&sc->sc_tick, 0);
+	callout_init(&sc->sc_tclo_tick, 0);
+
+	sc->sc_rpc_buf = kmem_alloc(VMT_RPC_BUFLEN, KM_SLEEP);
+	if (sc->sc_rpc_buf == NULL) {
+		aprint_error_dev(self, "unable to allocate buffer for RPC\n");
+		goto free;
+	}
+
+	if (vm_rpc_open(&sc->sc_tclo_rpc, VM_RPC_OPEN_TCLO) != 0) {
+		aprint_error_dev(self, "failed to open backdoor RPC channel (TCLO protocol)\n");
+		goto free;
+	}
+	sc->sc_tclo_rpc_open = true;
+
+	/* don't know if this is important at all yet */
+	if (vm_rpc_send_rpci_tx(sc, "tools.capability.hgfs_server toolbox 1") != 0) {
+		aprint_error_dev(self, "failed to set HGFS server capability\n");
+		goto free;
+	}
+
+	pmf_device_register1(self, NULL, NULL, vmt_shutdown);
+
+#if notyet
+	strlcpy(sc->sc_sensordev.xname, sc->sc_dev.dv_xname,
+	    sizeof(sc->sc_sensordev.xname));
+
+	sc->sc_sensor.type = SENSOR_TIMEDELTA;
+	sc->sc_sensor.status = SENSOR_S_UNKNOWN;
+
+	sensor_attach(&sc->sc_sensordev, &sc->sc_sensor);
+	sensordev_install(&sc->sc_sensordev);
+#endif
+
+	sysmon_task_queue_init();
+
+	sc->sc_smpsw_power.smpsw_type = PSWITCH_TYPE_POWER;
+	sc->sc_smpsw_power.smpsw_name = device_xname(self);
+	sysmon_pswitch_register(&sc->sc_smpsw_power);
+	sc->sc_smpsw_reset.smpsw_type = PSWITCH_TYPE_RESET;
+	sc->sc_smpsw_reset.smpsw_name = device_xname(self);
+	sysmon_pswitch_register(&sc->sc_smpsw_reset);
+	sc->sc_smpsw_valid = true;
+
+	callout_setfunc(&sc->sc_tick, vmt_tick, sc);
+	callout_schedule(&sc->sc_tick, hz);
+
+	callout_setfunc(&sc->sc_tclo_tick, vmt_tclo_tick, sc);
+	callout_schedule(&sc->sc_tclo_tick, hz);
+	sc->sc_tclo_ping = 1;
+
+	return;
+
+free:
+	if (sc->sc_rpc_buf)
+		kmem_free(sc->sc_rpc_buf, VMT_RPC_BUFLEN);
+	pmf_device_register(self, NULL, NULL);
+}
+
+static int
+vmt_detach(device_t self, int flags)
+{
+	struct vmt_softc *sc = device_private(self);
+
+	if (sc->sc_tclo_rpc_open)
+		vm_rpc_close(&sc->sc_tclo_rpc);
+
+	if (sc->sc_smpsw_valid) {
+		sysmon_pswitch_unregister(&sc->sc_smpsw_reset);
+		sysmon_pswitch_unregister(&sc->sc_smpsw_power);
+	}
+
+	callout_halt(&sc->sc_tick, NULL);
+	callout_destroy(&sc->sc_tick);
+
+	callout_halt(&sc->sc_tclo_tick, NULL);
+	callout_destroy(&sc->sc_tclo_tick);
+
+	if (sc->sc_rpc_buf)
+		kmem_free(sc->sc_rpc_buf, VMT_RPC_BUFLEN);
+
+	return 0;
+}
+
+static void
+vmt_update_guest_uptime(struct vmt_softc *sc)
+{
+	/* host wants uptime in hundredths of a second */
+	if (vm_rpc_send_rpci_tx(sc, "SetGuestInfo  %d %llu00",
+	    VM_GUEST_INFO_UPTIME, time_uptime) != 0) {
+		device_printf(sc->sc_dev, "unable to set guest uptime\n");
+		sc->sc_rpc_error = 1;
+	}
+}
+
+static void
+vmt_update_guest_info(struct vmt_softc *sc)
+{
+	if (strncmp(sc->sc_hostname, hostname, sizeof(sc->sc_hostname)) != 0) {
+		strlcpy(sc->sc_hostname, hostname, sizeof(sc->sc_hostname));
+
+		if (vm_rpc_send_rpci_tx(sc, "SetGuestInfo  %d %s",
+		    VM_GUEST_INFO_DNS_NAME, sc->sc_hostname) != 0) {
+			device_printf(sc->sc_dev, "unable to set hostname\n");
+			sc->sc_rpc_error = 1;
+		}
+	}
+
+	/*
+	 * we're supposed to pass the full network address information back here,
+	 * but that involves xdr (sunrpc) data encoding, which seems a bit unreasonable.
+	 */
+
+	if (sc->sc_set_guest_os == 0) {
+		if (vm_rpc_send_rpci_tx(sc, "SetGuestInfo  %d %s %s %s",
+		    VM_GUEST_INFO_OS_NAME_FULL, ostype, osrelease, machine_arch) != 0) {
+			device_printf(sc->sc_dev, "unable to set full guest OS\n");
+			sc->sc_rpc_error = 1;
+		}
+
+		/*
+		 * host doesn't like it if we send an OS name it doesn't recognise,
+		 * so use the closest match, which happens to be FreeBSD.
+		 */
+		if (vm_rpc_send_rpci_tx(sc, "SetGuestInfo  %d %s",
+		    VM_GUEST_INFO_OS_NAME, "FreeBSD") != 0) {
+			device_printf(sc->sc_dev, "unable to set guest OS\n");
+			sc->sc_rpc_error = 1;
+		}
+
+		sc->sc_set_guest_os = 1;
+	}
+}
+
+static void
+vmt_tick(void *xarg)
+{
+	struct vmt_softc *sc = xarg;
+	struct vm_backdoor frame;
+#if notyet
+	struct timeval *guest = &sc->sc_sensor.tv;
+	struct timeval host, diff;
+
+	microtime(guest);
+#endif
+
+	memset(&frame, 0, sizeof(frame));
+	frame.eax.word = VM_MAGIC;
+	frame.ecx.part.low = VM_CMD_GET_TIME_FULL;
+	frame.edx.part.low  = VM_PORT_CMD;
+	vm_cmd(&frame);
+
+	if (frame.eax.word != 0xffffffff) {
+#if notyet
+		host.tv_sec = ((uint64_t)frame.esi.word << 32) | frame.edx.word;
+		host.tv_usec = frame.ebx.word;
+
+		timersub(guest, &host, &diff);
+
+		sc->sc_sensor.value = (u_int64_t)diff.tv_sec * 1000000000LL +
+		    (u_int64_t)diff.tv_usec * 1000LL;
+		sc->sc_sensor.status = SENSOR_S_OK;
+#endif
+	} else {
+#if notyet
+		sc->sc_sensor.status = SENSOR_S_UNKNOWN;
+#endif
+	}
+
+	vmt_update_guest_info(sc);
+	vmt_update_guest_uptime(sc);
+
+	callout_schedule(&sc->sc_tick, hz * 15);
+}
+
+static void
+vmt_tclo_state_change_success(struct vmt_softc *sc, int success, char state)
+{
+	if (vm_rpc_send_rpci_tx(sc, "tools.os.statechange.status %d %d",
+	    success, state) != 0) {
+		device_printf(sc->sc_dev, "unable to send state change result\n");
+		sc->sc_rpc_error = 1;
+	}
+}
+
+static void
+vmt_do_shutdown(struct vmt_softc *sc)
+{
+	vmt_tclo_state_change_success(sc, 1, VM_STATE_CHANGE_HALT);
+	vm_rpc_send_str(&sc->sc_tclo_rpc, VM_RPC_REPLY_OK);
+
+	device_printf(sc->sc_dev, "host requested shutdown\n");
+	sysmon_task_queue_sched(0, vmt_pswitch_event, &sc->sc_smpsw_power);
+}
+
+static void
+vmt_do_reboot(struct vmt_softc *sc)
+{
+	vmt_tclo_state_change_success(sc, 1, VM_STATE_CHANGE_REBOOT);
+	vm_rpc_send_str(&sc->sc_tclo_rpc, VM_RPC_REPLY_OK);
+
+	device_printf(sc->sc_dev, "host requested reboot\n");
+	sysmon_task_queue_sched(0, vmt_pswitch_event, &sc->sc_smpsw_reset);
+}
+
+static bool
+vmt_shutdown(device_t self, int flags)
+{
+	struct vmt_softc *sc = device_private(self);
+
+	if (vm_rpc_send_rpci_tx(sc, "tools.capability.hgfs_server toolbox 0") != 0) {
+		device_printf(sc->sc_dev, "failed to disable hgfs server capability\n");
+	}
+
+	if (vm_rpc_send(&sc->sc_tclo_rpc, NULL, 0) != 0) {
+		device_printf(sc->sc_dev, "failed to send shutdown ping\n");
+	}
+
+	vm_rpc_close(&sc->sc_tclo_rpc);
+
+	return true;
+}
+
+static void
+vmt_pswitch_event(void *xarg)
+{
+	struct sysmon_pswitch *smpsw = xarg;
+
+	sysmon_pswitch_event(smpsw, PSWITCH_EVENT_PRESSED);
+}
+
+static void
+vmt_tclo_tick(void *xarg)
+{
+	struct vmt_softc *sc = xarg;
+	u_int32_t rlen;
+	u_int16_t ack;
+
+	/* reopen tclo channel if it's currently closed */
+	if (sc->sc_tclo_rpc.channel == 0 &&
+	    sc->sc_tclo_rpc.cookie1 == 0 &&
+	    sc->sc_tclo_rpc.cookie2 == 0) {
+		if (vm_rpc_open(&sc->sc_tclo_rpc, VM_RPC_OPEN_TCLO) != 0) {
+			device_printf(sc->sc_dev, "unable to reopen TCLO channel\n");
+			callout_schedule(&sc->sc_tclo_tick, hz * 15);
+			return;
+		}
+
+		if (vm_rpc_send_str(&sc->sc_tclo_rpc, VM_RPC_RESET_REPLY) != 0) {
+			device_printf(sc->sc_dev, "failed to send reset reply\n");
+			sc->sc_rpc_error = 1;
+			goto out;
+		} else {
+			sc->sc_rpc_error = 0;
+		}
+	}
+
+	if (sc->sc_tclo_ping) {
+		if (vm_rpc_send(&sc->sc_tclo_rpc, NULL, 0) != 0) {
+			device_printf(sc->sc_dev, "failed to send TCLO outgoing ping\n");
+			sc->sc_rpc_error = 1;
+			goto out;
+		}
+	}
+
+	if (vm_rpc_get_length(&sc->sc_tclo_rpc, &rlen, &ack) != 0) {
+		device_printf(sc->sc_dev, "failed to get length of incoming TCLO data\n");
+		sc->sc_rpc_error = 1;
+		goto out;
+	}
+
+	if (rlen == 0) {
+		sc->sc_tclo_ping = 1;
+		goto out;
+	}
+
+	if (rlen >= VMT_RPC_BUFLEN) {
+		rlen = VMT_RPC_BUFLEN - 1;
+	}
+	if (vm_rpc_get_data(&sc->sc_tclo_rpc, sc->sc_rpc_buf, rlen, ack) != 0) {
+		device_printf(sc->sc_dev, "failed to get incoming TCLO data\n");
+		sc->sc_rpc_error = 1;
+		goto out;
+	}
+	sc->sc_tclo_ping = 0;
+
+#ifdef VMT_DEBUG
+	printf("vmware: received message '%s'\n", sc->sc_rpc_buf);
+#endif
+
+	if (strcmp(sc->sc_rpc_buf, "reset") == 0) {
+
+		if (sc->sc_rpc_error != 0) {
+			device_printf(sc->sc_dev, "resetting rpc\n");
+			vm_rpc_close(&sc->sc_tclo_rpc);
+			/* reopen and send the reset reply next time around */
+			goto out;
+		}
+
+		if (vm_rpc_send_str(&sc->sc_tclo_rpc, VM_RPC_RESET_REPLY) != 0) {
+			device_printf(sc->sc_dev, "failed to send reset reply\n");
+			sc->sc_rpc_error = 1;
+		}
+
+	} else if (strcmp(sc->sc_rpc_buf, "ping") == 0) {
+
+		vmt_update_guest_info(sc);
+		if (vm_rpc_send_str(&sc->sc_tclo_rpc, VM_RPC_REPLY_OK) != 0) {
+			device_printf(sc->sc_dev, "error sending ping response\n");
+			sc->sc_rpc_error = 1;
+		}
+
+	} else if (strcmp(sc->sc_rpc_buf, "OS_Halt") == 0) {
+		vmt_do_shutdown(sc);
+	} else if (strcmp(sc->sc_rpc_buf, "OS_Reboot") == 0) {
+		vmt_do_reboot(sc);
+	} else if (strcmp(sc->sc_rpc_buf, "OS_PowerOn") == 0) {
+		vmt_tclo_state_change_success(sc, 1, VM_STATE_CHANGE_POWERON);
+		if (vm_rpc_send_str(&sc->sc_tclo_rpc, VM_RPC_REPLY_OK) != 0) {
+			device_printf(sc->sc_dev, "error sending poweron response\n");
+			sc->sc_rpc_error = 1;
+		}
+	} else if (strcmp(sc->sc_rpc_buf, "OS_Suspend") == 0) {
+		log(LOG_KERN | LOG_NOTICE, "VMware guest entering suspended state\n");
+
+		vmt_tclo_state_change_success(sc, 1, VM_STATE_CHANGE_SUSPEND);
+		if (vm_rpc_send_str(&sc->sc_tclo_rpc, VM_RPC_REPLY_OK) != 0) {
+			device_printf(sc->sc_dev, "error sending suspend response\n");
+			sc->sc_rpc_error = 1;
+		}
+	} else if (strcmp(sc->sc_rpc_buf, "OS_Resume") == 0) {
+		log(LOG_KERN | LOG_NOTICE, "VMware guest resuming from suspended state\n");
+
+		/* force guest info update */
+		sc->sc_hostname[0] = '\0';
+		sc->sc_set_guest_os = 0;
+		vmt_update_guest_info(sc);
+
+		vmt_tclo_state_change_success(sc, 1, VM_STATE_CHANGE_RESUME);
+		if (vm_rpc_send_str(&sc->sc_tclo_rpc, VM_RPC_REPLY_OK) != 0) {
+			device_printf(sc->sc_dev, "error sending resume response\n");
+			sc->sc_rpc_error = 1;
+		}
+	} else if (strcmp(sc->sc_rpc_buf, "Capabilities_Register") == 0) {
+
+		/* don't know if this is important at all */
+		if (vm_rpc_send_rpci_tx(sc, "vmx.capability.unified_loop toolbox") != 0) {
+			device_printf(sc->sc_dev, "unable to set unified loop\n");
+			sc->sc_rpc_error = 1;
+		}
+		if (vm_rpci_response_successful(sc) == 0) {
+			device_printf(sc->sc_dev, "host rejected unified loop setting\n");
+		}
+
+		/* the trailing space is apparently important here */
+		if (vm_rpc_send_rpci_tx(sc, "tools.capability.statechange ") != 0) {
+			device_printf(sc->sc_dev, "unable to send statechange capability\n");
+			sc->sc_rpc_error = 1;
+		}
+		if (vm_rpci_response_successful(sc) == 0) {
+			device_printf(sc->sc_dev, "host rejected statechange capability\n");
+		}
+
+		if (vm_rpc_send_rpci_tx(sc, "tools.set.version %u", VM_VERSION_UNMANAGED) != 0) {
+			device_printf(sc->sc_dev, "unable to set tools version\n");
+			sc->sc_rpc_error = 1;
+		}
+
+		vmt_update_guest_uptime(sc);
+
+		if (vm_rpc_send_str(&sc->sc_tclo_rpc, VM_RPC_REPLY_OK) != 0) {
+			device_printf(sc->sc_dev, "error sending capabilities_register response\n");
+			sc->sc_rpc_error = 1;
+		}
+	} else if (strcmp(sc->sc_rpc_buf, "Set_Option broadcastIP 1") == 0) {
+		struct ifnet *iface;
+		struct sockaddr_in *guest_ip;
+
+		/* find first available ipv4 address */
+		guest_ip = NULL;
+		TAILQ_FOREACH(iface, &ifnet, if_list) {
+			struct ifaddr *iface_addr;
+
+			/* skip loopback */
+			if (strncmp(iface->if_xname, "lo", 2) == 0 &&
+			    iface->if_xname[2] >= '0' && iface->if_xname[2] <= '9') {
+				continue;
+			}
+
+			TAILQ_FOREACH(iface_addr, &iface->if_addrlist, ifa_list) {
+				if (iface_addr->ifa_addr->sa_family != AF_INET) {
+					continue;
+				}
+
+				guest_ip = satosin(iface_addr->ifa_addr);
+				break;
+			}
+		}
+
+		if (guest_ip != NULL) {
+			if (vm_rpc_send_rpci_tx(sc, "info-set guestinfo.ip %s",
+			    inet_ntoa(guest_ip->sin_addr)) != 0) {
+				device_printf(sc->sc_dev, "unable to send guest IP address\n");
+				sc->sc_rpc_error = 1;
+			}
+
+			if (vm_rpc_send_str(&sc->sc_tclo_rpc, VM_RPC_REPLY_OK) != 0) {
+				device_printf(sc->sc_dev, "error sending broadcastIP response\n");
+				sc->sc_rpc_error = 1;
+			}
+		} else {
+			if (vm_rpc_send_str(&sc->sc_tclo_rpc, VM_RPC_REPLY_ERROR_IP_ADDR) != 0) {
+				device_printf(sc->sc_dev,
+				    "error sending broadcastIP error response\n");
+				sc->sc_rpc_error = 1;
+			}
+		}
+	} else {
+		if (vm_rpc_send_str(&sc->sc_tclo_rpc, VM_RPC_REPLY_ERROR) != 0) {
+			device_printf(sc->sc_dev, "error sending unknown command reply\n");
+			sc->sc_rpc_error = 1;
+		}
+	}
+
+out:
+	callout_schedule(&sc->sc_tclo_tick, sc->sc_tclo_ping ? hz : 1);
+}
+
+#define BACKDOOR_OP_I386(op, frame)		\
+	__asm__ __volatile__ (			\
+		"pushal;"			\
+		"pushl %%eax;"			\
+		"movl 0x18(%%eax), %%ebp;"	\
+		"movl 0x14(%%eax), %%edi;"	\
+		"movl 0x10(%%eax), %%esi;"	\
+		"movl 0x0c(%%eax), %%edx;"	\
+		"movl 0x08(%%eax), %%ecx;"	\
+		"movl 0x04(%%eax), %%ebx;"	\
+		"movl 0x00(%%eax), %%eax;"	\
+		op				\
+		"xchgl %%eax, 0x00(%%esp);"	\
+		"movl %%ebp, 0x18(%%eax);"	\
+		"movl %%edi, 0x14(%%eax);"	\
+		"movl %%esi, 0x10(%%eax);"	\
+		"movl %%edx, 0x0c(%%eax);"	\
+		"movl %%ecx, 0x08(%%eax);"	\
+		"movl %%ebx, 0x04(%%eax);"	\
+		"popl 0x00(%%eax);"		\
+		"popal;"			\
+		:				\
+		:"a"(frame)			\
+	)
+
+#define BACKDOOR_OP_AMD64(op, frame)		\
+	__asm__ __volatile__ (			\
+		"pushq %%rbp;			\n\t" \
+		"pushq %%rax;			\n\t" \
+		"movq 0x30(%%rax), %%rbp;	\n\t" \
+		"movq 0x28(%%rax), %%rdi;	\n\t" \
+		"movq 0x20(%%rax), %%rsi;	\n\t" \
+		"movq 0x18(%%rax), %%rdx;	\n\t" \
+		"movq 0x10(%%rax), %%rcx;	\n\t" \
+		"movq 0x08(%%rax), %%rbx;	\n\t" \
+		"movq 0x00(%%rax), %%rax;	\n\t" \
+		op				"\n\t" \
+		"xchgq %%rax, 0x00(%%rsp);	\n\t" \
+		"movq %%rbp, 0x30(%%rax);	\n\t" \
+		"movq %%rdi, 0x28(%%rax);	\n\t" \
+		"movq %%rsi, 0x20(%%rax);	\n\t" \
+		"movq %%rdx, 0x18(%%rax);	\n\t" \
+		"movq %%rcx, 0x10(%%rax);	\n\t" \
+		"movq %%rbx, 0x08(%%rax);	\n\t" \
+		"popq 0x00(%%rax);		\n\t" \
+		"popq %%rbp;			\n\t" \
+		: /* No outputs. */ : "a" (frame) \
+		  /* No pushal on amd64 so warn gcc about the clobbered registers. */ \
+		: "rbx", "rcx", "rdx", "rdi", "rsi", "cc", "memory" \
+	)
+
+
+#ifdef __i386__
+#define BACKDOOR_OP(op, frame) BACKDOOR_OP_I386(op, frame)
+#else
+#define BACKDOOR_OP(op, frame) BACKDOOR_OP_AMD64(op, frame)
+#endif
+
+static void
+vm_cmd(struct vm_backdoor *frame)
+{
+	BACKDOOR_OP("inl %%dx, %%eax;", frame);
+}
+
+static void
+vm_ins(struct vm_backdoor *frame)
+{
+	BACKDOOR_OP("cld;\n\trep insb;", frame);
+}
+
+static void
+vm_outs(struct vm_backdoor *frame)
+{
+	BACKDOOR_OP("cld;\n\trep outsb;", frame);
+}
+
+static int
+vm_rpc_open(struct vm_rpc *rpc, uint32_t proto)
+{
+	struct vm_backdoor frame;
+
+	memset(&frame, 0, sizeof(frame));
+	frame.eax.word      = VM_MAGIC;
+	frame.ebx.word      = proto | VM_RPC_FLAG_COOKIE;
+	frame.ecx.part.low  = VM_CMD_RPC;
+	frame.ecx.part.high = VM_RPC_OPEN;
+	frame.edx.part.low  = VM_PORT_CMD;
+	frame.edx.part.high = 0;
+
+	vm_cmd(&frame);
+
+	if (frame.ecx.part.high != 1 || frame.edx.part.low != 0) {
+		/* open-vm-tools retries without VM_RPC_FLAG_COOKIE here.. */
+		printf("vmware: open failed, eax=%08x, ecx=%08x, edx=%08x\n",
+			frame.eax.word, frame.ecx.word, frame.edx.word);
+		return EIO;
+	}
+
+	rpc->channel = frame.edx.part.high;
+	rpc->cookie1 = frame.esi.word;
+	rpc->cookie2 = frame.edi.word;
+
+	return 0;
+}
+
+static int
+vm_rpc_close(struct vm_rpc *rpc)
+{
+	struct vm_backdoor frame;
+
+	memset(&frame, 0, sizeof(frame));
+	frame.eax.word      = VM_MAGIC;
+	frame.ebx.word      = 0;
+	frame.ecx.part.low  = VM_CMD_RPC;
+	frame.ecx.part.high = VM_RPC_CLOSE;
+	frame.edx.part.low  = VM_PORT_CMD;
+	frame.edx.part.high = rpc->channel;
+	frame.edi.word      = rpc->cookie2;
+	frame.esi.word      = rpc->cookie1;
+
+	vm_cmd(&frame);
+
+	if (frame.ecx.part.high == 0 || frame.ecx.part.low != 0) {
+		printf("vmware: close failed, eax=%08x, ecx=%08x\n",
+				frame.eax.word, frame.ecx.word);
+		return EIO;
+	}
+
+	rpc->channel = 0;
+	rpc->cookie1 = 0;
+	rpc->cookie2 = 0;
+
+	return 0;
+}
+
+static int
+vm_rpc_send(const struct vm_rpc *rpc, const uint8_t *buf, uint32_t length)
+{
+	struct vm_backdoor frame;
+
+	/* Send the length of the command. */
+	memset(&frame, 0, sizeof(frame));
+	frame.eax.word = VM_MAGIC;
+	frame.ebx.word = length;
+	frame.ecx.part.low  = VM_CMD_RPC;
+	frame.ecx.part.high = VM_RPC_SET_LENGTH;
+	frame.edx.part.low  = VM_PORT_CMD;
+	frame.edx.part.high = rpc->channel;
+	frame.esi.word = rpc->cookie1;
+	frame.edi.word = rpc->cookie2;
+
+	vm_cmd(&frame);
+
+	if ((frame.ecx.part.high & VM_RPC_REPLY_SUCCESS) == 0) {
+		printf("vmware: sending length failed, eax=%08x, ecx=%08x\n",
+				frame.eax.word, frame.ecx.word);
+		return EIO;
+	}
+
+	if (length == 0)
+		return 0; /* Only need to poke once if command is null. */
+
+	/* Send the command using enhanced RPC. */
+	memset(&frame, 0, sizeof(frame));
+	frame.eax.word = VM_MAGIC;
+	frame.ebx.word = VM_RPC_ENH_DATA;
+	frame.ecx.word = length;
+	frame.edx.part.low  = VM_PORT_RPC;
+	frame.edx.part.high = rpc->channel;
+	frame.ebp.word = rpc->cookie1;
+	frame.edi.word = rpc->cookie2;
+#ifdef __amd64__
+	frame.esi.quad = (uint64_t)buf;
+#else
+	frame.esi.word = (uint32_t)buf;
+#endif
+
+	vm_outs(&frame);
+
+	if (frame.ebx.word != VM_RPC_ENH_DATA) {
+		/* open-vm-tools retries on VM_RPC_REPLY_CHECKPOINT */
+		printf("vmware: send failed, ebx=%08x\n", frame.ebx.word);
+		return EIO;
+	}
+
+	return 0;
+}
+
+static int
+vm_rpc_send_str(const struct vm_rpc *rpc, const uint8_t *str)
+{
+	return vm_rpc_send(rpc, str, strlen(str));
+}
+
+static int
+vm_rpc_get_data(const struct vm_rpc *rpc, char *data, uint32_t length,
+    uint16_t dataid)
+{
+	struct vm_backdoor frame;
+
+	/* Get data using enhanced RPC. */
+	memset(&frame, 0, sizeof(frame));
+	frame.eax.word      = VM_MAGIC;
+	frame.ebx.word      = VM_RPC_ENH_DATA;
+	frame.ecx.word      = length;
+	frame.edx.part.low  = VM_PORT_RPC;
+	frame.edx.part.high = rpc->channel;
+	frame.esi.word      = rpc->cookie1;
+#ifdef __amd64__
+	frame.edi.quad      = (uint64_t)data;
+#else
+	frame.edi.word      = (uint32_t)data;
+#endif
+	frame.ebp.word      = rpc->cookie2;
+
+	vm_ins(&frame);
+
+	/* NUL-terminate the data */
+	data[length] = '\0';
+
+	if (frame.ebx.word != VM_RPC_ENH_DATA) {
+		printf("vmware: get data failed, ebx=%08x\n",
+				frame.ebx.word);
+		return EIO;
+	}
+
+	/* Acknowledge data received. */
+	memset(&frame, 0, sizeof(frame));
+	frame.eax.word      = VM_MAGIC;
+	frame.ebx.word      = dataid;
+	frame.ecx.part.low  = VM_CMD_RPC;
+	frame.ecx.part.high = VM_RPC_GET_END;
+	frame.edx.part.low  = VM_PORT_CMD;
+	frame.edx.part.high = rpc->channel;
+	frame.esi.word      = rpc->cookie1;
+	frame.edi.word      = rpc->cookie2;
+
+	vm_cmd(&frame);
+
+	if (frame.ecx.part.high == 0) {
+		printf("vmware: ack data failed, eax=%08x, ecx=%08x\n",
+				frame.eax.word, frame.ecx.word);
+		return EIO;
+	}
+
+	return 0;
+}
+
+static int
+vm_rpc_get_length(const struct vm_rpc *rpc, uint32_t *length, uint16_t *dataid)
+{
+	struct vm_backdoor frame;
+
+	memset(&frame, 0, sizeof(frame));
+	frame.eax.word      = VM_MAGIC;
+	frame.ebx.word      = 0;
+	frame.ecx.part.low  = VM_CMD_RPC;
+	frame.ecx.part.high = VM_RPC_GET_LENGTH;
+	frame.edx.part.low  = VM_PORT_CMD;
+	frame.edx.part.high = rpc->channel;
+	frame.esi.word      = rpc->cookie1;
+	frame.edi.word      = rpc->cookie2;
+
+	vm_cmd(&frame);
+
+	if ((frame.ecx.part.high & VM_RPC_REPLY_SUCCESS) == 0) {
+		printf("vmware: get length failed, eax=%08x, ecx=%08x\n",
+				frame.eax.word, frame.ecx.word);
+		return EIO;
+	}
+	if ((frame.ecx.part.high & VM_RPC_REPLY_DORECV) == 0) {
+		*length = 0;
+		*dataid = 0;
+	} else {
+		*length = frame.ebx.word;
+		*dataid = frame.edx.part.high;
+	}
+
+	return 0;
+}
+
+static int
+vm_rpci_response_successful(struct vmt_softc *sc)
+{
+	return (sc->sc_rpc_buf[0] == '1' && sc->sc_rpc_buf[1] == ' ');
+}
+
+static int
+vm_rpc_send_rpci_tx_buf(struct vmt_softc *sc, const uint8_t *buf, uint32_t length)
+{
+	struct vm_rpc rpci;
+	u_int32_t rlen;
+	u_int16_t ack;
+	int result = 0;
+
+	if (vm_rpc_open(&rpci, VM_RPC_OPEN_RPCI) != 0) {
+		device_printf(sc->sc_dev, "rpci channel open failed\n");
+		return EIO;
+	}
+
+	if (vm_rpc_send(&rpci, sc->sc_rpc_buf, length) != 0) {
+		device_printf(sc->sc_dev, "unable to send rpci command\n");
+		result = EIO;
+		goto out;
+	}
+
+	if (vm_rpc_get_length(&rpci, &rlen, &ack) != 0) {
+		device_printf(sc->sc_dev, "failed to get length of rpci response data\n");
+		result = EIO;
+		goto out;
+	}
+
+	if (rlen > 0) {
+		if (rlen >= VMT_RPC_BUFLEN) {
+			rlen = VMT_RPC_BUFLEN - 1;
+		}
+
+		if (vm_rpc_get_data(&rpci, sc->sc_rpc_buf, rlen, ack) != 0) {
+			device_printf(sc->sc_dev, "failed to get rpci response data\n");
+			result = EIO;
+			goto out;
+		}
+	}
+
+out:
+	if (vm_rpc_close(&rpci) != 0) {
+		device_printf(sc->sc_dev, "unable to close rpci channel\n");
+	}
+
+	return result;
+}
+
+static int
+vm_rpc_send_rpci_tx(struct vmt_softc *sc, const char *fmt, ...)
+{
+	va_list args;
+	int len;
+
+	va_start(args, fmt);
+	len = vsnprintf(sc->sc_rpc_buf, VMT_RPC_BUFLEN, fmt, args);
+	va_end(args);
+
+	if (len >= VMT_RPC_BUFLEN) {
+		device_printf(sc->sc_dev, "rpci command didn't fit in buffer\n");
+		return EIO;
+	}
+
+	return vm_rpc_send_rpci_tx_buf(sc, sc->sc_rpc_buf, len);
+}
+
+#if 0
+	struct vm_backdoor frame;
+
+	memset(&frame, 0, sizeof(frame));
+
+	frame.eax.word = VM_MAGIC;
+	frame.ecx.part.low = VM_CMD_GET_VERSION;
+	frame.edx.part.low  = VM_PORT_CMD;
+
+	printf("\n");
+	printf("eax 0x%08x\n", frame.eax.word);
+	printf("ebx 0x%08x\n", frame.ebx.word);
+	printf("ecx 0x%08x\n", frame.ecx.word);
+	printf("edx 0x%08x\n", frame.edx.word);
+	printf("ebp 0x%08x\n", frame.ebp.word);
+	printf("edi 0x%08x\n", frame.edi.word);
+	printf("esi 0x%08x\n", frame.esi.word);
+
+	vm_cmd(&frame);
+
+	printf("-\n");
+	printf("eax 0x%08x\n", frame.eax.word);
+	printf("ebx 0x%08x\n", frame.ebx.word);
+	printf("ecx 0x%08x\n", frame.ecx.word);
+	printf("edx 0x%08x\n", frame.edx.word);
+	printf("ebp 0x%08x\n", frame.ebp.word);
+	printf("edi 0x%08x\n", frame.edi.word);
+	printf("esi 0x%08x\n", frame.esi.word);
+#endif
+
+/*
+ * Notes on tracing backdoor activity in vmware-guestd:
+ *
+ * - Find the addresses of the inl / rep insb / rep outsb
+ *   instructions used to perform backdoor operations.
+ *   One way to do this is to disassemble vmware-guestd:
+ *
+ *   $ objdump -S /emul/freebsd/sbin/vmware-guestd > vmware-guestd.S
+ *
+ *   and search for '<tab>in ' in the resulting file.  The rep insb and
+ *   rep outsb code is directly below that.
+ *
+ * - Run vmware-guestd under gdb, setting up breakpoints as follows:
+ *   (the addresses shown here are the ones from VMware-server-1.0.10-203137,
+ *   the last version that actually works in FreeBSD emulation on OpenBSD)
+ *
+ * break *0x805497b   (address of 'in' instruction)
+ * commands 1
+ * silent
+ * echo INOUT\n
+ * print/x $ecx
+ * print/x $ebx
+ * print/x $edx
+ * continue
+ * end
+ * break *0x805497c   (address of instruction after 'in')
+ * commands 2
+ * silent
+ * echo ===\n
+ * print/x $ecx
+ * print/x $ebx
+ * print/x $edx
+ * echo \n
+ * continue
+ * end
+ * break *0x80549b7   (address of instruction before 'rep insb')
+ * commands 3
+ * silent
+ * set variable $inaddr = $edi
+ * set variable $incount = $ecx
+ * continue
+ * end
+ * break *0x80549ba   (address of instruction after 'rep insb')
+ * commands 4
+ * silent
+ * echo IN\n
+ * print $incount
+ * x/s $inaddr
+ * echo \n
+ * continue
+ * end
+ * break *0x80549fb    (address of instruction before 'rep outsb')
+ * commands 5
+ * silent
+ * echo OUT\n
+ * print $ecx
+ * x/s $esi
+ * echo \n
+ * continue
+ * end
+ *
+ * This will produce a log of the backdoor operations, including the
+ * data sent and received and the relevant register values.  You can then
+ * match the register values to the various constants in this file.
+ */
+
+MODULE(MODULE_CLASS_DRIVER, vmt, NULL);
+
+#ifdef _MODULE
+#include "ioconf.c"
+#endif
+
+static int
+vmt_modcmd(modcmd_t cmd, void *aux)
+{
+	int error = 0;
+
+	switch (cmd) {
+	case MODULE_CMD_INIT:
+#ifdef _MODULE
+		error = config_init_component(cfdriver_ioconf_vmt,
+		    cfattach_ioconf_vmt, cfdata_ioconf_vmt);
+#endif
+		break;
+	case MODULE_CMD_FINI:
+#ifdef _MODULE
+		error = config_fini_component(cfdriver_ioconf_vmt,
+		    cfattach_ioconf_vmt, cfdata_ioconf_vmt);
+#endif
+		break;
+	default:
+		error = ENOTTY;
+		break;
+	}
+
+	return error;
+}

Index: src/sys/modules/vmt/Makefile
diff -u /dev/null src/sys/modules/vmt/Makefile:1.1
--- /dev/null	Mon Oct 17 22:39:23 2011
+++ src/sys/modules/vmt/Makefile	Mon Oct 17 22:39:23 2011
@@ -0,0 +1,14 @@
+#	$NetBSD: Makefile,v 1.1 2011/10/17 22:39:23 jmcneill Exp $
+
+.include "../Makefile.inc"
+
+.PATH:	${S}/arch/x86/x86
+
+KMOD=	vmt	
+IOCONF=	vmt.ioconf
+SRCS=	vmt.c
+COPTS.vmt.c=	-O0
+
+WARNS=	4
+
+.include <bsd.kmodule.mk>
Index: src/sys/modules/vmt/vmt.ioconf
diff -u /dev/null src/sys/modules/vmt/vmt.ioconf:1.1
--- /dev/null	Mon Oct 17 22:39:23 2011
+++ src/sys/modules/vmt/vmt.ioconf	Mon Oct 17 22:39:23 2011
@@ -0,0 +1,10 @@
+# $NetBSD: vmt.ioconf,v 1.1 2011/10/17 22:39:23 jmcneill Exp $
+
+ioconf vmt
+
+include "conf/files"
+include "arch/x86/conf/files.x86"
+
+pseudo-root cpufeaturebus*
+
+vmt0 at cpufeaturebus?

Reply via email to