summaryrefslogtreecommitdiff
path: root/usr.sbin/vmd/vmm.c
AgeCommit message (Expand)Author
2016-10-04Add a new "priv" process that is responsible for ioctls and restrictedReyk Floeter
2016-09-29Implement fork+exec for vmd, using the same framework from httpd etc.Reyk Floeter
2016-09-03As vmm(4) can now exit to vmd at any time to process pending interrupts,Mike Larkin
2016-09-02Process incoming com data asynchronously to running VCPUStefan Kempf
2016-09-02Move event handling to separate threadStefan Kempf
2016-09-01fix a merge collision, and add some retval checking on various pthread_*Mike Larkin
2016-09-01change some log_warn to log_warnx and convert some integer literals toMike Larkin
2016-09-01Make vcpu_reset_regs use new writeregs codeStefan Kempf
2016-09-01Add a set of emulated legacy devices (PIT, PIC, RTC)Mike Larkin
2016-08-31Style, and clarify some out of date commentsMike Larkin
2016-08-17small bits of header cleanup; ok mlarkinTheo de Raadt
2016-08-01Do not pass VM name directly to setproctitle format string.Stefan Kempf
2016-07-29Allow starting a VM again after it was terminatedStefan Kempf
2016-07-19Replace malloc() + memset() with calloc().Martin Natano
2016-07-09Prepare vionet to be handled asynchronously to the VCPU threadStefan Kempf
2016-07-08Return 0 on read from PIT control port. Intel explicitly says this is notMike Larkin
2016-07-07sanity check vm create and run args earlierMike Larkin
2016-07-06clarify a comment about memory regionsMike Larkin
2016-06-10Access guest memory with normal loads and stores in vmd(8)Stefan Kempf
2016-06-07Allocate RAM for guest VM in vmd(8) and pass it to vmm(4)Stefan Kempf
2016-04-07Remove headers associated with code that's been moved to other .c filesPhilip Guenther
2016-04-05Support processors without unrestricted guest capability.Mike Larkin
2016-04-04Directly use physical addresses from ELF header for kernel loading.Stefan Kempf
2016-03-13Introduce memory ranges to support VMs with >= 4G RAMStefan Kempf
2016-03-13Rework an erroneous warning message about 16 bit i8253 PIT counter I/O.Mike Larkin
2016-02-16Pass down the initial value of CR0 down to the RESETCPU ioctl() as well.Stefan Kempf
2016-01-16vmd(8) sometimes attempts page-crossing data copies between the hostStefan Kempf
2016-01-13Update the comment that is decribing terminate_vm()'s arguments,Reyk Floeter
2016-01-08Keep the pledge of the vmm and vm processes disabled for now as longReyk Floeter
2016-01-08Must set MAX_PORTS to 65536, since we assign toStefan Kempf
2016-01-04Use an bitmap of handler function pointers to track I/O device to handlerMike Larkin
2016-01-04bzero -> memset for consistencyMike Larkin
2015-12-17Move vcpu register state init to vmd. Allows vmd bootloader to make theMike Larkin
2015-12-15if a vcpu run thread in vmd exits unexpectedly, teardown the VM's kernelMike Larkin
2015-12-07Forcibly remove the local vm reference on error.Reyk Floeter
2015-12-07Fix error handling in a few cases: some function return (-1) on error,Reyk Floeter
2015-12-06Print the TTY in the vmctl status output.Reyk Floeter
2015-12-06When a new vm is created with VMM_IOC_CREATE, the kernel assigns aReyk Floeter
2015-12-06Terminate all running VMs on startup: we're not able to pick up stateReyk Floeter
2015-12-03Re-add the "load" and "reload" commands to vmctl: Instead of parsingReyk Floeter
2015-12-03prepare config_getvm() for parse.yReyk Floeter
2015-12-03spacingReyk Floeter
2015-12-02Split the fully privileged parent into two processes "parent" andReyk Floeter
2015-12-02Sync with relayd, fix previous use of proc_compose*_imsg()Reyk Floeter
2015-12-02Add back the "peerid" to the proc_compose*() functions: in relayd, IReyk Floeter
2015-12-02Start tweaking vmd's privsep and daemon model by splitting the mainReyk Floeter