acrn-hypervisor/hypervisor/debug
Mingqiang Chi bb0327e700 hv: remove UUID
With current arch design the UUID is used to identify ACRN VMs,
all VM configurations must be deployed with given UUIDs at build time.
For post-launched VMs, end user must use UUID as acrn-dm parameter
to launch specified user VM. This is not friendly for end users
that they have to look up the pre-configured UUID before launching VM,
and then can only launch the VM which its UUID in the pre-configured UUID
list,otherwise the launch will fail.Another side, VM name is much straight
forward for end user to identify VMs, whereas the VM name defined
in launch script has not been passed to hypervisor VM configuration
so it is not consistent with the VM name when user list VM
in hypervisor shell, this would confuse user a lot.

This patch will resolve these issues by removing UUID as VM identifier
and use VM name instead:
1. Hypervisor will check the VM name duplication during VM creation time
   to make sure the VM name is unique.
2. If the VM name passed from acrn-dm matches one of pre-configured
   VM configurations, the corresponding VM will be launched,
   we call it static configured VM.
   If there is no matching found, hypervisor will try to allocate one
   unused VM configuration slot for this VM with given VM name and get it
   run if VM number does not reach CONFIG_MAX_VM_NUM,
   we will call it dynamic configured VM.
3. For dynamic configured VMs, we need a guest flag to identify them
   because the VM configuration need to be destroyed
   when it is shutdown or creation failed.

v7->v8:
    -- rename is_static_vm_configured to is_static_configured_vm
    -- only set DM owned guest_flags in hcall_create_vm
    -- add check dynamic flag in get_unused_vmid

v6->v7:
    -- refine get_vmid_by_name, return the first matching vm_id
    -- the GUEST_FLAG_STATIC_VM is added to identify the static or
       dynamic VM, the offline tool will set this flag for
       all the pre-defined VMs.
    -- only clear name field for dynamic VM instead of clear entire
       vm_config

Tracked-On: #6685
Signed-off-by: Mingqiang Chi <mingqiang.chi@intel.com>
Reviewed-by: Zhao Yakui <yakui.zhao@intel.com>
Reviewed-by: Victor Sun<victor.sun@intel.com>
Acked-by: Eddie Dong <eddie.dong@intel.com>
2021-11-16 14:42:59 +08:00
..
Makefile HV: makefile: to avoid duplicated build libs 2020-05-21 15:12:21 +08:00
console.c hv: debug: Add hv console callback to VM-exit event 2021-07-22 10:08:23 +08:00
dbg_cmd.c doc: update BDF information for 'uart=' hypervisor parameter 2021-03-23 13:54:10 -07:00
dump.c hv: cache: wrap common APIs 2021-05-14 09:18:00 +08:00
hypercall.c ACRN: hv: Unify terminology for service vm 2021-11-02 10:00:55 +08:00
logmsg.c ACRN: hv: Terminology modification in hv code 2021-11-02 10:00:55 +08:00
npk_log.c hv: paging: rename ppt_set/clear_ATTR to set_paging_ATTR 2021-05-14 09:18:00 +08:00
printf.c hv:cleanup header files for debug folder 2019-02-27 11:12:48 +08:00
profiling.c hv: remove UUID 2021-11-16 14:42:59 +08:00
sbuf.c hv: mod: do not use explicit arch name when including headers 2021-05-08 11:15:46 +08:00
shell.c hv: remove UUID 2021-11-16 14:42:59 +08:00
shell_priv.h hv: mod: do not use explicit arch name when including headers 2021-05-08 11:15:46 +08:00
string.c hv:cleanup header files for debug folder 2019-02-27 11:12:48 +08:00
trace.c hv/mod_timer: split tsc handling code from timer. 2021-05-18 16:43:28 +08:00
uart16550.c HV: debug: support 64bit BAR pci uart with 32bit space 2021-08-04 10:10:35 +08:00