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