libvirt/src/esx
Matthias Bolte 681ff75e88 esx: Add read-only storage volume access
This allows to list existing volumes and to retrieve information
about them.
2010-08-26 23:19:55 +02:00
..
.gitignore
esx_device_monitor.c esx: Switch from name to number checks in the subdrivers 2010-07-30 14:42:57 +02:00
esx_device_monitor.h
esx_driver.c esx: Add read-only storage volume access 2010-08-26 23:19:55 +02:00
esx_driver.h
esx_interface_driver.c esx: Switch from name to number checks in the subdrivers 2010-07-30 14:42:57 +02:00
esx_interface_driver.h
esx_network_driver.c esx: Switch from name to number checks in the subdrivers 2010-07-30 14:42:57 +02:00
esx_network_driver.h
esx_nwfilter_driver.c esx: Switch from name to number checks in the subdrivers 2010-07-30 14:42:57 +02:00
esx_nwfilter_driver.h
esx_private.h esx: Add vpx:// scheme to allow direct connection to a vCenter 2010-07-24 20:46:05 +02:00
esx_secret_driver.c esx: Switch from name to number checks in the subdrivers 2010-07-30 14:42:57 +02:00
esx_secret_driver.h
esx_storage_driver.c esx: Add read-only storage volume access 2010-08-26 23:19:55 +02:00
esx_storage_driver.h
esx_util.c esx: Make storage pool lookup by name and UUID more robust 2010-08-02 22:25:15 +02:00
esx_util.h esx: Make storage pool lookup by name and UUID more robust 2010-08-02 22:25:15 +02:00
esx_vi_generator.input esx: Add read-only storage volume access 2010-08-26 23:19:55 +02:00
esx_vi_generator.py esx: Set storage pool target path to host.mountInfo.path 2010-08-02 22:25:15 +02:00
esx_vi_methods.c esx: Simplify goto usage 2010-05-27 01:32:25 +02:00
esx_vi_methods.h
esx_vi_types.c esx: Map some managed object types 2010-08-02 22:25:15 +02:00
esx_vi_types.h esx: Map some managed object types 2010-08-02 22:25:15 +02:00
esx_vi.c esx: Add read-only storage volume access 2010-08-26 23:19:55 +02:00
esx_vi.h esx: Add read-only storage volume access 2010-08-26 23:19:55 +02:00
esx_vmx.c esx: Explicitly disable unused floppy devices 2010-08-14 20:16:14 +02:00
esx_vmx.h esx: Explicitly disable unused floppy devices 2010-08-14 20:16:14 +02:00
README

Some links to relevant documentation
====================================


VI/vSphere API:   http://www.vmware.com/support/developer/vc-sdk/visdk25pubs/ReferenceGuide/
                  http://www.vmware.com/support/developer/vc-sdk/visdk400pubs/ReferenceGuide/
VMX config:       http://www.sanbarrow.com/vmx.html
CPUID:            http://www.sandpile.org/ia32/cpuid.htm
Memory model:     http://www.vmware.com/pdf/esx3_memory.pdf
                  http://www.vmware.com/pdf/usenix_resource_mgmt.pdf




Automatic question handling
===========================


What is a question in the ESX context?
--------------------------------------

The VI API contains methods that start tasks, for example PowerOnVM_Task(). Such
tasks may be blocked by questions if the ESX host detects an issue with the
virtual machine that requires user interaction.

An example: If a virtual machine has a serial port that is realized via a file,
the ESX host will ask a question on power-on of this virtual machine whether
new content should be appended to this file or the file should be replaced.
Until this question is answered the power-on task is blocked and the virtual
machine won't get powered on.

The ESX driver cannot prompt the user to answer a question, libvirt doesn't
have an API for something like this. The VI API provides the AnswerVM() method
to programmatically answer such questions. A question comes together with a list
of possible answers. One of this answers is marked as the default one. For all
questions I've seen so far the default answer is always a non-destructive one.

There are two options how to handle a question that is blocking a task: either
answer it automatically or report it as error and try to cancel the blocked
task.

The auto_answer query parameter defines how the driver should handle questions.
Possible values are 0 for the report-error-and-try-to-cancel option and 1 for
the automatic-answer option.


How is automatic question handling implemented?
-----------------------------------------------

Before any new task is started the driver checks if there is a pending task
blocked by a question. If automatic question handling is disabled the driver
reports an error that includes the question and returns from the driver
function. If automatic question handling is enabled the driver answers the
question with the default answer and returns from the driver function.

In both cases the actual desired task is not started. If the question was not
answered the blocked task is still blocked and because task can't be executed
in parallel in general it's of no use to start yet another task. If the
question was answered the blocked task may already perform the desired action
and one must wait for its completion, so it's of no use to start yet another
task.

If there is no question blocking a task or another pending task that had not
finished yet the driver starts the desired task and waits for its completion.
While polling for status updates of the task it also checks for question that
may have been triggered by the current task and handles them according to the
value of the auto_answer query parameter. If automatic question handling is
enabled the driver answers the question with the default answer and continues
polling for status updates. If automatic question handling is disabled the
driver reports an error that includes the question, tries to cancel the blocked
task and returns from the driver function.

It tries to cancel the blocked task, but this may not be possible, because
there are task like the power-on task that is marked as non-cancelable. So the
driver may leave blocked tasks behind if automatic question handling is
disabled.