diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2016-12-14 21:17:26 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2016-12-14 21:17:26 +0000 |
commit | 431456d9562b44beeb2bb8aed8dcb8e63f40a34a (patch) | |
tree | a9f83290b6dcdd2c453f0f4afad4256b6bbd612f /usr.sbin/vmd/vmd.c | |
parent | c09471df0ae18ca50af982c5fdda5f9c43f55220 (diff) |
Allow to start disabled and pre-configured VMs by name, "vmctl start foo".
With testing from Jon Bernard
OK mlarkin@
Diffstat (limited to 'usr.sbin/vmd/vmd.c')
-rw-r--r-- | usr.sbin/vmd/vmd.c | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/usr.sbin/vmd/vmd.c b/usr.sbin/vmd/vmd.c index d572784bb05..26de91144d4 100644 --- a/usr.sbin/vmd/vmd.c +++ b/usr.sbin/vmd/vmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vmd.c,v 1.46 2016/12/14 06:59:12 reyk Exp $ */ +/* $OpenBSD: vmd.c,v 1.47 2016/12/14 21:17:25 reyk Exp $ */ /* * Copyright (c) 2015 Reyk Floeter <reyk@openbsd.org> @@ -65,7 +65,7 @@ int vmd_dispatch_control(int fd, struct privsep_proc *p, struct imsg *imsg) { struct privsep *ps = p->p_ps; - int res = 0, cmd = 0; + int res = 0, ret = 0, cmd = 0; unsigned int v = 0; struct vmop_create_params vmc; struct vmop_id vid; @@ -79,7 +79,18 @@ vmd_dispatch_control(int fd, struct privsep_proc *p, struct imsg *imsg) case IMSG_VMDOP_START_VM_REQUEST: IMSG_SIZE_CHECK(imsg, &vmc); memcpy(&vmc, imsg->data, sizeof(vmc)); - if (vm_register(ps, &vmc, &vm, 0) == -1 || + ret = vm_register(ps, &vmc, &vm, 0); + if (vmc.vmc_flags == 0) { + /* start an existing VM with pre-configured options */ + if (!(ret == -1 && errno == EALREADY)) { + res = errno; + cmd = IMSG_VMDOP_START_VM_RESPONSE; + } + } else if (ret != 0) { + res = errno; + cmd = IMSG_VMDOP_START_VM_RESPONSE; + } + if (res == 0 && config_setvm(ps, vm, imsg->hdr.peerid) == -1) { res = errno; cmd = IMSG_VMDOP_START_VM_RESPONSE; @@ -698,6 +709,10 @@ vm_register(struct privsep *ps, struct vmop_create_params *vmc, goto fail; } + if (vmc->vmc_flags == 0) { + errno = ENOENT; + goto fail; + } if (vcp->vcp_ncpus == 0) vcp->vcp_ncpus = 1; if (vcp->vcp_memranges[0].vmr_size == 0) |