App-FuguVM

 view release on metacpan or  search on metacpan

lib/App/FuguVM/State.pod  view on Meta::CPAN

    <state_dir>/<vm>/proxy.pid     the proxy child
    <state_dir>/<vm>/disk.qcow2    the working disk

The JSON blob rides on L<Fugu::StateFile>. The two process IDs ride on
L<Fugu::Pidfile>, which takes its lock before it truncates and
reaps a zombie before it answers "running". A QEMU that became a
zombie therefore reads as stopped, which is what a caller that is
about to start a second one needs to know.

The module is persistence only. It starts nothing and stops nothing:
the proxy lifecycle belongs to L<App::FuguVM::Guest>. That split is what
removed the C<require> cycle between the two modules.

=head1 METHODS

=head2 new

    App::FuguVM::State->new($state_dir, $vm_name)

Open the state of one VM, and create its directory when it is absent.

The VM name becomes a directory name, so it must be one safe path
component: no separator, no NUL byte, and not one of the two directory
entries. A name that is not returns C<undef> and a message in the log.
The method also returns C<undef> when the directory is a symlink, is
not a directory, or cannot be created.

=head2 load, save

Read and write the JSON state. C<new> loads. A corrupt file gives
empty state and does not stop the program that would rewrite it.

=head2 store, state_dir, vm_state_dir, vm_name, data

C<store> returns the L<Fugu::StateFile>. L<App::FuguVM::Guest> gives it to the
proxy, which keeps its port there.

C<state_dir> returns the directory that holds every VM's state, and
C<vm_state_dir> the one that holds this VM's. C<data> returns the
state hash reference for a caller that changes several keys at once.

=head2 vm_pidfile, proxy_pidfile

Return the L<Fugu::Pidfile> objects. QEMU writes the first itself,
through its C<-pidfile> option; the proxy supervisor owns the second.

=head2 get_vm_pid, clear_vm_pid, is_vm_running

The QEMU process. QEMU writes the pid file itself, through its
C<-pidfile> option, so there is no setter.

=head2 disk_path, disk_exists

The working disk of the VM.

=head2 is_installed, mark_installed

Whether OpenBSD is installed on the disk. An installed system boots
its own disk and never attaches the miniroot again.

=head2 set_root_password, get_root_password

The password that the installer set. The store writes at mode 0600.

=head2 mark_ssh_key_installed, get_installed_ssh_pubkey

Which SSH public key the guest holds. The state records the key
itself, not only that there is one. Thus a key that changed in the
configuration is installed again on the next C<fuguvm up>.

=head2 mark_running, mark_clean_shutdown, mark_unclean_shutdown, was_unclean_shutdown, clear_shutdown_state

Whether the last stop was clean. C<was_unclean_shutdown> also reports
true when the state says running and the process is gone: the VM
crashed or was killed, and the disk may need a check.

=head1 SEE ALSO

L<Fugu::Pidfile>, L<Fugu::StateFile>, L<App::FuguVM::Guest>

=head1 AUTHOR

Dick Olsson <hi@senzilla.io>



( run in 0.517 second using v1.01-cache-2.11-cpan-4ef0a570458 )