summaryrefslogtreecommitdiff
path: root/usr.sbin/vmd
diff options
context:
space:
mode:
authorEdd Barrett <edd@cvs.openbsd.org>2017-01-13 19:21:17 +0000
committerEdd Barrett <edd@cvs.openbsd.org>2017-01-13 19:21:17 +0000
commit78f66b7fffee4bfa814b317a1d9bb9251dc217b1 (patch)
treeb546f6765b6becb7aa63b673952bc4280da036f0 /usr.sbin/vmd
parent711ecbd6e4eb80012d22a2cb2058c80b253433d2 (diff)
Make it possible to remove VMs from vmd(8)'s internal queue.
The semantics agreed with reyk@ are: * ad-hoc created vms, created with `vmctl start`, are removed once stopped. * Stopped VMs defined in a config file are flushed before a `vmctl reload`. OK reyk@
Diffstat (limited to 'usr.sbin/vmd')
-rw-r--r--usr.sbin/vmd/parse.y3
-rw-r--r--usr.sbin/vmd/vmd.c37
-rw-r--r--usr.sbin/vmd/vmd.h4
3 files changed, 34 insertions, 10 deletions
diff --git a/usr.sbin/vmd/parse.y b/usr.sbin/vmd/parse.y
index 3337032e128..30f002fae75 100644
--- a/usr.sbin/vmd/parse.y
+++ b/usr.sbin/vmd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.19 2017/01/05 13:53:10 krw Exp $ */
+/* $OpenBSD: parse.y,v 1.20 2017/01/13 19:21:16 edd Exp $ */
/*
* Copyright (c) 2007-2016 Reyk Floeter <reyk@openbsd.org>
@@ -288,6 +288,7 @@ vm : VM string {
vcp->vcp_name,
vcp_disable ? "disabled" : "enabled");
}
+ vm->vm_from_config = 1;
}
}
;
diff --git a/usr.sbin/vmd/vmd.c b/usr.sbin/vmd/vmd.c
index 02af5cbc047..a01e40f2b13 100644
--- a/usr.sbin/vmd/vmd.c
+++ b/usr.sbin/vmd/vmd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmd.c,v 1.49 2017/01/11 22:38:10 reyk Exp $ */
+/* $OpenBSD: vmd.c,v 1.50 2017/01/13 19:21:16 edd Exp $ */
/*
* Copyright (c) 2015 Reyk Floeter <reyk@openbsd.org>
@@ -226,9 +226,11 @@ vmd_dispatch_vmm(int fd, struct privsep_proc *p, struct imsg *imsg)
memcpy(&vmr, imsg->data, sizeof(vmr));
proc_forward_imsg(ps, imsg, PROC_CONTROL, -1);
if (vmr.vmr_result == 0) {
- /* Remove local reference */
vm = vm_getbyid(vmr.vmr_id);
- vm_remove(vm);
+ if (vm->vm_from_config)
+ vm->vm_running = 0;
+ else
+ vm_remove(vm);
}
break;
case IMSG_VMDOP_TERMINATE_VM_EVENT:
@@ -237,8 +239,10 @@ vmd_dispatch_vmm(int fd, struct privsep_proc *p, struct imsg *imsg)
if ((vm = vm_getbyid(vmr.vmr_id)) == NULL)
break;
if (vmr.vmr_result == 0) {
- /* Remove local reference */
- vm_remove(vm);
+ if (vm->vm_from_config)
+ vm->vm_running = 0;
+ else
+ vm_remove(vm);
} else if (vmr.vmr_result == EAGAIN) {
/* Stop VM instance but keep the tty open */
vm_stop(vm, 1);
@@ -531,12 +535,15 @@ vmd_configure(void)
void
vmd_reload(unsigned int reset, const char *filename)
{
- struct vmd_vm *vm;
+ struct vmd_vm *vm, *next_vm;
struct vmd_switch *vsw;
+ int reload = 0;
/* Switch back to the default config file */
- if (filename == NULL || *filename == '\0')
+ if (filename == NULL || *filename == '\0') {
filename = env->vmd_conffile;
+ reload = 1;
+ }
log_debug("%s: level %d config file %s", __func__, reset, filename);
@@ -545,7 +552,21 @@ vmd_reload(unsigned int reset, const char *filename)
config_purge(env, reset);
config_setreset(env, reset);
} else {
- /* Reload the configuration */
+ /*
+ * Load or reload the configuration.
+ *
+ * Reloading removes all non-running VMs before processing the
+ * config file, whereas loading only adds to the existing list
+ * of VMs.
+ */
+
+ if (reload) {
+ TAILQ_FOREACH_SAFE(vm, env->vmd_vms, vm_entry, next_vm) {
+ if (vm->vm_running == 0)
+ vm_remove(vm);
+ }
+ }
+
if (parse_config(filename) == -1) {
log_debug("%s: failed to load config file %s",
__func__, filename);
diff --git a/usr.sbin/vmd/vmd.h b/usr.sbin/vmd/vmd.h
index 4433b169def..e371112feef 100644
--- a/usr.sbin/vmd/vmd.h
+++ b/usr.sbin/vmd/vmd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmd.h,v 1.42 2017/01/13 14:50:56 reyk Exp $ */
+/* $OpenBSD: vmd.h,v 1.43 2017/01/13 19:21:16 edd Exp $ */
/*
* Copyright (c) 2015 Mike Larkin <mlarkin@openbsd.org>
@@ -162,6 +162,8 @@ struct vmd_vm {
int vm_running;
/* When set, VM is not started by default (PROC_PARENT only) */
int vm_disabled;
+ /* When set, VM was defined in a config file */
+ int vm_from_config;
struct imsgev vm_iev;
int vm_shutdown;
TAILQ_ENTRY(vmd_vm) vm_entry;