Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


10 years agosignificant refactoring of RTM emulation code
Kyle Hale [Tue, 25 Mar 2014 00:09:37 +0000]
significant refactoring of RTM emulation code

This is the first cut at a refactor of the transactional memory
extension. Most changes have been to reduce large function sizes, and
to reduce footprint in changes to Palacios core files. There are
several bug fixes as well, and this gets us to the point where we
can run thousand-transaction benchmarks on single-core.

At this point our main limitations are yet-to-be implemented
architectural features (coming soon) and limitations in the
quix86 decoder.

Signed-off-by: Maciek Swiech <dotpyfe@u.northwestern.edu>

10 years agoAdd comment
Kevin Pedretti [Fri, 4 Apr 2014 21:53:36 +0000]
Add comment

10 years agoFix xed build error
Kevin Pedretti [Fri, 4 Apr 2014 21:49:37 +0000]
Fix xed build error

10 years agoIgnore frees of null in all cases (kfree, vfree, pagefree)
Peter Dinda [Mon, 24 Mar 2014 21:59:03 +0000]
Ignore frees of null in all cases (kfree, vfree, pagefree)

10 years agoadd ability to destroy hashtable iterators
Kyle Hale [Mon, 24 Mar 2014 21:42:39 +0000]
add ability to destroy hashtable iterators

10 years agodoc fix for config_v3vee
Kyle Hale [Sun, 23 Mar 2014 20:02:59 +0000]
doc fix for config_v3vee

10 years agoHPET does not abort load/save
Peter Dinda [Tue, 11 Mar 2014 16:09:42 +0000]
HPET does not abort load/save

10 years agoMinor bug fix
Peter Dinda [Thu, 6 Mar 2014 19:33:35 +0000]
Minor bug fix

10 years agoAdded HPET (High Precision Event Timer) device
Kyle Hale [Thu, 6 Mar 2014 19:19:28 +0000]
Added HPET (High Precision Event Timer) device

This is an initial implementation of a virtual HPET. Does not support
checkpoint save/restore yet. The HPET is currently defined to run at
1/16th of guest time

Note that a typical guest will check for the existence of the HPET
via an ACPI table.   To force the current SeaBios to build this table
apply the following patch to it.  This will eventually be automatic.

rem diff --git a/bios/seabios/src/acpi.c b/bios/seabios/src/acpi.c
rem index 95575a1..da7c9e9 100644
rem --- a/bios/seabios/src/acpi.c
rem +++ b/bios/seabios/src/acpi.c
rem @@ -673,9 +673,9 @@ acpi_bios_init(void)
rem     ACPI_INIT_TABLE(build_fadt(pci));
rem     ACPI_INIT_TABLE(build_ssdt());
rem     ACPI_INIT_TABLE(build_madt());
rem -   if (pci) {
rem +   //if (pci) {
rem        ACPI_INIT_TABLE(build_hpet());
rem -   }
rem +   //}
rem     ACPI_INIT_TABLE(build_srat());
rem
rem     u16 i, external_tables = qemu_cfg_acpi_additional_tables();

10 years agoAPIC bugfix - corrected MSR read/write behavior
Peter Dinda [Sat, 22 Feb 2014 00:26:17 +0000]
APIC bugfix - corrected MSR read/write behavior

10 years agovirtio-blk now handles config requests for non-declared config info
Jack Lange [Thu, 20 Feb 2014 18:47:48 +0000]
virtio-blk now handles config requests for non-declared config info

10 years agoMinor cleanups on shadow paging build/debug
Peter Dinda [Tue, 18 Feb 2014 01:18:57 +0000]
Minor cleanups on shadow paging build/debug

10 years agoAddition of state to checkpoint
Maciek Swiech [Wed, 22 Jan 2014 22:54:08 +0000]
Addition of state to checkpoint

- now includes memory and cpu modes and CPL
- CPL sanity check

10 years agov3_stream argument number bugfix
Maciek Swiech [Fri, 17 Jan 2014 22:20:35 +0000]
v3_stream argument number bugfix

10 years agoAdditional sanity-checks for guest configuration (v3_config_guest.pl)
Peter Dinda [Tue, 14 Jan 2014 00:13:08 +0000]
Additional sanity-checks for guest configuration (v3_config_guest.pl)

10 years agoError checking fixes, minor bug in keyed stream, minor bug in checkpoint
Peter Dinda [Tue, 14 Jan 2014 00:04:02 +0000]
Error checking fixes, minor bug in keyed stream, minor bug in checkpoint

All allocations now zeroed by default

10 years agoApic initialization bugfix
Maciej Swiech [Fri, 10 Jan 2014 23:23:28 +0000]
Apic initialization bugfix

10 years agoAdded ATA PIO write, other ide cleanup
Kyle Hale [Tue, 7 Jan 2014 23:31:45 +0000]
Added ATA PIO write, other ide cleanup

10 years agoarg length bugfix in v3_stream
Kyle Hale [Mon, 6 Jan 2014 17:46:28 +0000]
arg length bugfix in v3_stream

10 years agoGuest PXE boot code
Chen Jin, Bharath Pattabiraman, and Patrick Foley [Fri, 3 Jan 2014 21:19:49 +0000]
Guest PXE boot code

10 years agoBoot sequenece selection for nvram
Peter Dinda [Sun, 22 Dec 2013 22:16:36 +0000]
Boot sequenece selection for nvram

10 years agoAdd logic to VGA for vertical/horizontal retrace
Peter Dinda [Sat, 21 Dec 2013 18:45:28 +0000]
Add logic to VGA for vertical/horizontal retrace

10 years agoAdd missing case to print all debugging info in vmm_debug
Kyle Hale [Sat, 21 Dec 2013 18:43:45 +0000]
Add missing case to print all debugging info in vmm_debug

10 years agoFix for floating point save/restore in case where fp context switching is turned off
Maciek Swiech [Fri, 6 Dec 2013 19:14:40 +0000]
Fix for floating point save/restore in case where fp context switching is turned off

10 years agoGuest-side test tools, config, and X11 stuff for PARAGRAPH graphics device
Ruba Merza [Sun, 1 Dec 2013 01:23:39 +0000]
Guest-side test tools, config, and X11 stuff for PARAGRAPH graphics device

10 years agoUpdated defaults to reflect former behavior for CPUID, MSRs, FP-Switching
Peter Dinda [Tue, 26 Nov 2013 01:52:14 +0000]
Updated defaults to reflect former behavior for CPUID, MSRs, FP-Switching

The user must explicitly enable custom cpuid, strict msrs, and fp-swithing

10 years agoBugfix to base memory region lookup
Peter Dinda [Tue, 26 Nov 2013 01:39:51 +0000]
Bugfix to base memory region lookup

10 years agoMinor tweaks
Peter Dinda [Tue, 26 Nov 2013 01:37:40 +0000]
Minor tweaks

- vmxassist doesn't print errors for information output
- guest config script cleanup

10 years agoAllow strict MSR semantics
Peter Dinda [Tue, 26 Nov 2013 01:35:07 +0000]
Allow strict MSR semantics

When enabled, reads/writes to MSRs we do not handle cause GPF to be injected.
This is the architecturally specified reaction.

When disabled, our more lenient behavior is used (read=0, write=ignored)

10 years agoAllow custom CPUID
Peter Dinda [Tue, 26 Nov 2013 01:32:00 +0000]
Allow custom CPUID

- when enabled, guest sees a strictly controlled cpuid result
  with a "V3VEE" cpu vendor, etc.  This is intended to help with
  cross-architecture migrations where we want to prevent the
  the guest from doing anything specific to the eratta of the
  startup CPU.
- when disabled, guest sees former behavior (cpuid of host
  masked for functionality we cannot support)

10 years agoatapi and ioapic bugfixes
Kyle Hale [Tue, 26 Nov 2013 01:30:16 +0000]
atapi and ioapic bugfixes

atapi: allow start/stop cd rom - needed for some kernels
ioapic: assure it's zeroed out at startup

10 years agoFloating point context-switching and checkpoint/load
Peter Dinda [Fri, 25 Oct 2013 23:30:39 +0000]
Floating point context-switching and checkpoint/load

This integrates:

- the option to do floating point context-switching
- conservative code to do context-switching in Palacios
- a lazy floating point save/restore host interface
- an implementation of this interface in the linux module
- liberal code to use this interface in Palacios
- floating point checkpointing

This also includes a performance tuning element that
is hard to separate

10 years agoVGA bugfixes
Peter Dinda [Mon, 25 Nov 2013 23:23:07 +0000]
VGA bugfixes

This patch corrects the behavior of VGA write modes 2 and 3 and
VGA read mode 1.  This repairs ugly output in typical graphics use

10 years agofix GEARS code inject dependency
Kyle Hale [Tue, 8 Oct 2013 21:20:45 +0000]
fix GEARS code inject dependency

10 years agoremove assertions in power monitoring initialization
Kyle Hale [Tue, 8 Oct 2013 21:04:04 +0000]
remove assertions in power monitoring initialization

10 years agoSwitch VNET to use adaptive yielding by default, to reduce busy-waiting in the bridge...
Peter Dinda [Thu, 10 Oct 2013 20:27:12 +0000]
Switch VNET to use adaptive yielding by default, to reduce busy-waiting in the bridge and transmit-kick threads

10 years agoDynamic migration of memory from node to node
Peter Dinda [Thu, 10 Oct 2013 20:22:01 +0000]
Dynamic migration of memory from node to node

This adds the ability to move memory regions of a VM from user space:

  v3_mem_move /dev/v3-vmX guest_paddr host_cpuid

This will move the memory region in which guest_paddr is contained
from its current numa node to the one affiliated with host_cpuid

Combined with v3_core_move, this should provide the ability to
dynamically manipulate NUMA mappings at runtime, to the granularity
of the v3_mem_block_size (which is selected at insmod time)

10 years agobring GEARS up to date with interface changes
Kyle Hale [Tue, 8 Oct 2013 17:54:17 +0000]
bring GEARS up to date with interface changes

10 years agoerror checking in file close
Kyle Hale [Tue, 8 Oct 2013 17:45:53 +0000]
error checking in file close

10 years agoclean up v3_mem errors
Kyle Hale [Tue, 8 Oct 2013 17:08:56 +0000]
clean up v3_mem errors

10 years agomore paranoid error checking
Kyle Hale [Mon, 7 Oct 2013 20:29:12 +0000]
more paranoid error checking

These changes handle the case in which v3_free_vm is called
before several subsystems have been initialized. The ones that are particularly
prone are the non-pointers in the v3_vm_info struct that have list_head elements.

10 years agoReduced debugging output from consoles / ioctls
Kyle Hale [Mon, 7 Oct 2013 20:17:24 +0000]
Reduced debugging output from consoles / ioctls

10 years agoGuest configurator cleanup (nvram, vnet)
Kyle Hale [Mon, 7 Oct 2013 20:16:23 +0000]
Guest configurator cleanup (nvram, vnet)

10 years agoHandle oddball NUMA alloc/dealloc cases when kernel provides memory on undesired...
Peter Dinda [Fri, 4 Oct 2013 22:12:23 +0000]
Handle oddball NUMA alloc/dealloc cases when kernel provides memory on undesired node

10 years agoClean up hashtable frees to fix rmmod crash on redhat
Peter Dinda [Fri, 4 Oct 2013 18:22:49 +0000]
Clean up hashtable frees to fix rmmod crash on redhat

10 years agoVNET memory interface and deinit cleanup
Peter Dinda [Fri, 4 Oct 2013 15:18:03 +0000]
VNET memory interface and deinit cleanup

10 years agoRestructure device configuration menus to make things clearer -
Peter Dinda [Fri, 4 Oct 2013 15:16:24 +0000]
Restructure device configuration menus to make things clearer -
we have too many devices to just have a giant list

10 years agoAdded guest configurator and renamed v3vee configurator
Peter Dinda [Fri, 4 Oct 2013 15:11:52 +0000]
Added guest configurator and renamed v3vee configurator

10 years agov3_config emits memory allocations balanced across numa nodes
Peter Dinda [Fri, 4 Oct 2013 15:10:05 +0000]
v3_config emits memory allocations balanced across numa nodes

10 years agoEDF scheduler bugfixes from Oscar
Patrick G. Bridges [Tue, 1 Oct 2013 18:59:17 +0000]
EDF scheduler bugfixes from Oscar

10 years agoGraceful teardown of seabios fw config and fix of memory leak
Peter Dinda [Fri, 20 Sep 2013 22:08:23 +0000]
Graceful teardown of seabios fw config and fix of memory leak

10 years agoFixed spurious warning when memory block size is overrriden
Peter Dinda [Fri, 20 Sep 2013 21:27:39 +0000]
Fixed spurious warning when memory block size is overrriden

10 years agoAssorted cleanup
Peter Dinda [Fri, 20 Sep 2013 21:02:16 +0000]
Assorted cleanup

10 years agominor numa interface cleanup, and make sure initialization occurs
Peter Dinda [Thu, 19 Sep 2013 23:26:54 +0000]
minor numa interface cleanup, and make sure initialization occurs

10 years agoCleaned up deinitialization of VMM and free of VMs
Peter Dinda [Thu, 19 Sep 2013 22:25:42 +0000]
Cleaned up deinitialization of VMM and free of VMs

10 years agoMemory management and /proc enhancements
Peter Dinda [Sun, 15 Sep 2013 22:43:08 +0000]
Memory management and /proc enhancements

- /proc/v3vee/v3-info projects up useful information about the dynamic configuration of Palacios
- v3_mem uses this functionality to catch common problems before making kernel
  requests.  It also can now search for appropriate memory to offline given the numa domain

10 years agoBasic host scheduler bug fix
Patrick Bridges [Sun, 15 Sep 2013 22:42:22 +0000]
Basic host scheduler bug fix

10 years agoClean up debugging output
Peter Dinda [Sun, 15 Sep 2013 19:58:33 +0000]
Clean up debugging output

10 years agoCheckpoint/Restore fixes
Peter Dinda [Wed, 28 Aug 2013 13:58:57 +0000]
Checkpoint/Restore fixes
  - handles multi-base region VMs with distinct tags for each base region
  - checks to see if restore VM's region setup is identical to the checkpoint
    VM's before proceeding (this will eventually be expanded to do translation)
  - minor fix to keyed stream to support large files
  - minor error fix to save/restore of serial

10 years agomptable no longer errors out if it doesn't find the mptable target area
Peter Dinda [Wed, 28 Aug 2013 13:56:18 +0000]
mptable no longer errors out if it doesn't find the mptable target area
in the VM.  This area does not exist if the seabios is used.  With this fix
if you have an mptable in a VM that is instantiated with seabios, it will just
not create an mptable.  instead, the seabios will create one

10 years agoUpdated userspace guest memory access tools for regions, plus added new fast function...
Peter Dinda [Wed, 21 Aug 2013 20:17:23 +0000]
Updated userspace guest memory access tools for regions, plus added new fast functionality for
copies, hashes, and applies

10 years agoMade memory manager reset distinct from removal of memory
Peter Dinda [Tue, 20 Aug 2013 23:25:18 +0000]
Made memory manager reset distinct from removal of memory

10 years agoMemory management enhancements: dynamic removal, cleanup at module remove time
Peter Dinda [Tue, 20 Aug 2013 23:14:30 +0000]
Memory management enhancements:  dynamic removal, cleanup at module remove time

10 years agoEnhanced configuration generation (now handles memory removal/offlining
Peter Dinda [Tue, 20 Aug 2013 23:07:59 +0000]
Enhanced configuration generation (now handles memory removal/offlining

10 years agov3_mem enhancements - managed offlining; ability to deallocate memory (obviates v3_me...
Peter Dinda [Tue, 20 Aug 2013 23:06:36 +0000]
v3_mem enhancements - managed offlining; ability to deallocate memory (obviates v3_mem_free)

10 years agoImproved /proc/v3vee/v3-guests* output
Peter Dinda [Sun, 18 Aug 2013 22:12:33 +0000]
Improved /proc/v3vee/v3-guests* output

10 years agoConstraints in page allocation, and code changes to use them; shadow paging allocati...
Peter Dinda [Sun, 18 Aug 2013 21:01:07 +0000]
Constraints in page allocation, and code changes to use them;  shadow paging allocations below 4 GB

This updates the page allocation os hook to take a "constraints" parameter.  Currently,
there only one constraint, allocation below 4 GB.   The buddy allocator and other elements
of the support code now obey this constraint.   I have vetted page allocations in Palacios
so that with a guest using shadow paging, any allocation that could become part of the
guest memory map, and any allocation done in 32 bit shadow paging (page tables) is done
with this constraint.  THis includes direct paging.  Nested paging should be unaffected.

10 years agoBug fixes to v3_mem
Peter Dinda [Sun, 18 Aug 2013 20:57:27 +0000]
Bug fixes to v3_mem

10 years agoConfiguration Generation tool for Linux Embedding
Peter Dinda [Thu, 8 Aug 2013 00:37:11 +0000]
Configuration Generation tool for Linux Embedding

This attempts to wrap the complexity of memory configuration, devmem, etc
to tune to the user's environment and to their needs

10 years agoVNET compatibility with NUMA interfaces
Peter Dinda [Wed, 7 Aug 2013 22:48:38 +0000]
VNET compatibility with NUMA interfaces

10 years agov3_mem fixes
Peter Dinda [Wed, 7 Aug 2013 21:37:13 +0000]
v3_mem fixes

- memory offlining now contingent on a block being both removable
  and not already offline
- re-onlines memory on failure for additional cases

10 years agoMemory manager fixes and assorted other fixes
Peter Dinda [Wed, 7 Aug 2013 21:32:32 +0000]
Memory manager fixes and assorted other fixes

- MM allocates seeed pool from 32 bit memory to facilitate 32 bit shadow guests
- MM page allocation falls back to any node (-1) if request
  cannot be satisfied for the specific requested node
- MM fixes for in-kernel allocated regions
- init now falls back gracefully on failure
- early procdir creation to support MM and VNET

10 years agoVNET control /proc permission fixes
Peter Dinda [Wed, 7 Aug 2013 21:31:08 +0000]
VNET control /proc permission fixes

10 years agoVM configuration attempts to roll back on failure
Peter Dinda [Wed, 7 Aug 2013 21:26:54 +0000]
VM configuration attempts to roll back on failure

10 years agoAdd load-time configurable memory block size
Peter Dinda [Sun, 4 Aug 2013 22:31:02 +0000]
Add load-time configurable memory block size

10 years agoCorrect memory addition calculations
Peter Dinda [Fri, 2 Aug 2013 01:27:10 +0000]
Correct memory addition calculations

10 years agoEnhanced user-space memory interface, allowing dynamic kernel-allocations
Peter Dinda [Fri, 2 Aug 2013 00:48:12 +0000]
Enhanced user-space memory interface, allowing dynamic kernel-allocations

10 years agoBuddy allocator metadata for pools
Peter Dinda [Fri, 2 Aug 2013 00:46:08 +0000]
Buddy allocator metadata for pools

10 years agoIntegration of buddy allocator
Jack Lange [Fri, 2 Aug 2013 00:45:15 +0000]
Integration of buddy allocator

This also includes a new dynamic allocation feature (Dinda)

10 years agoEnable barrier participation and core stop while in halt
Jack Lange [Thu, 1 Aug 2013 21:32:50 +0000]
Enable barrier participation and core stop while in halt

10 years agoMask hyperthreading CPUID bit
Peter Dinda [Wed, 31 Jul 2013 23:52:55 +0000]
Mask hyperthreading CPUID bit

10 years agoEnable cores to be reset via INIT IPI
Jack Lange [Wed, 31 Jul 2013 22:46:09 +0000]
Enable cores to be reset via INIT IPI

10 years agoupdated host pci interface to support non-contiguous memory regions
Jack Lange [Wed, 31 Jul 2013 22:01:10 +0000]
updated host pci interface to support non-contiguous memory regions

10 years agoFurther changes to support new non-contiguous memory model (checkpointing, vm informa...
Peter Dinda [Wed, 31 Jul 2013 22:00:22 +0000]
Further changes to support new non-contiguous memory model (checkpointing, vm information interface, vm guest memory interface)

10 years agoAdded non-contiguous memory region support.
Jack Lange [Wed, 31 Jul 2013 21:56:38 +0000]
Added non-contiguous memory region support.

10 years agoMinor tweaks and configuration comments for vmm_fw_cfg (the interface to the SEABIOS)
Peter Dinda [Mon, 1 Jul 2013 22:06:43 +0000]
Minor tweaks and configuration comments for vmm_fw_cfg (the interface to the SEABIOS)

This also includes some minor cleanup

fs

10 years agoAllow selection of different BIOSes for the PC hardware class
Peter Dinda [Mon, 1 Jul 2013 22:05:46 +0000]
Allow selection of different BIOSes for the PC hardware class

10 years agoadded high memory capacity to NVRAM memory space
Alexander Kudryavtsev [Tue, 22 Jan 2013 03:46:33 +0000]
added high memory capacity to NVRAM memory space

10 years agoSEABIOS binaries added for ease in building palacios
Peter Dinda [Fri, 28 Jun 2013 20:50:29 +0000]
SEABIOS binaries added for ease in building palacios

10 years agoupdates to enable functionality necessary for SEABIOS to run
Jack Lange [Fri, 28 Jun 2013 20:45:28 +0000]
updates to enable functionality necessary for SEABIOS to run
added fw_cfg framework, special mov instruction decoding

also added NUMA framework files to compilation process

10 years agoadded NUMA interface files to pass NUMA layout between host and Palacios
Peter Dinda [Fri, 28 Jun 2013 20:00:35 +0000]
added NUMA interface files to pass NUMA layout between host and Palacios

10 years agoquix86 instruction patches
Maciek Swiech [Fri, 7 Jun 2013 20:46:02 +0000]
quix86 instruction patches

10 years agoadded updated version of the VGABIOS needed to work with SEABIOS
Jack Lange [Fri, 7 Jun 2013 20:32:35 +0000]
added updated version of the VGABIOS needed to work with SEABIOS

10 years agoadded NUMA query support for Linux to allow Palacios to determine the NUMA layout...
Jack Lange [Fri, 7 Jun 2013 20:20:23 +0000]
added NUMA query support for Linux to allow Palacios to determine the NUMA layout of the host system

10 years agoadded modified buddy allocator derived from Kitten implementation
Jack Lange [Fri, 7 Jun 2013 20:16:59 +0000]
added modified buddy allocator derived from Kitten implementation

This version allows discontiguous memory pools, to enable NUMA support for Palacios VMs

10 years agoadd FW_CFG interface implementation for SEABIOS
Alexander Kudryavtsev [Fri, 7 Jun 2013 20:13:53 +0000]
add FW_CFG interface implementation for SEABIOS

10 years agoimported SEABIOS source tree
Jack Lange [Fri, 7 Jun 2013 20:01:11 +0000]
imported SEABIOS source tree

10 years agoPolling changes in host devices and keyed stream
Peter Dinda [Sun, 4 Aug 2013 22:16:02 +0000]
Polling changes in host devices and keyed stream

10 years agov3_stream fix for escape character handling
Peter Dinda [Fri, 2 Aug 2013 22:43:04 +0000]
v3_stream fix for escape character handling

10 years ago8259A PIC obeys master ICW3 masking of the slave
Peter Dinda [Fri, 2 Aug 2013 22:27:32 +0000]
8259A PIC obeys master ICW3 masking of the slave