/* $OpenBSD: config.c,v 1.37 2017/11/04 07:57:14 mlarkin Exp $ */ /* * Copyright (c) 2015 Reyk Floeter * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "proc.h" #include "vmd.h" /* Supported bridge types */ const char *vmd_descsw[] = { "switch", "bridge", NULL }; int config_init(struct vmd *env) { struct privsep *ps = &env->vmd_ps; unsigned int what; /* Global configuration */ ps->ps_what[PROC_PARENT] = CONFIG_ALL; ps->ps_what[PROC_VMM] = CONFIG_VMS; if (host(VMD_DHCP_PREFIX, &env->vmd_cfg.cfg_localprefix) == -1) return (-1); /* Other configuration */ what = ps->ps_what[privsep_process]; if (what & CONFIG_VMS) { if ((env->vmd_vms = calloc(1, sizeof(*env->vmd_vms))) == NULL) return (-1); TAILQ_INIT(env->vmd_vms); } if (what & CONFIG_SWITCHES) { if ((env->vmd_switches = calloc(1, sizeof(*env->vmd_switches))) == NULL) return (-1); TAILQ_INIT(env->vmd_switches); } return (0); } void config_purge(struct vmd *env, unsigned int reset) { struct privsep *ps = &env->vmd_ps; struct vmd_vm *vm; struct vmd_switch *vsw; unsigned int what; log_debug("%s: purging vms and switches from running config", __func__); /* Reset global configuration (prefix was verified before) */ (void)host(VMD_DHCP_PREFIX, &env->vmd_cfg.cfg_localprefix); /* Reset other configuration */ what = ps->ps_what[privsep_process] & reset; if (what & CONFIG_VMS && env->vmd_vms != NULL) { while ((vm = TAILQ_FIRST(env->vmd_vms)) != NULL) { log_debug("%s: calling vm_remove", __func__); vm_remove(vm); } env->vmd_nvm = 0; } if (what & CONFIG_SWITCHES && env->vmd_switches != NULL) { while ((vsw = TAILQ_FIRST(env->vmd_switches)) != NULL) switch_remove(vsw); env->vmd_nswitches = 0; } } int config_setconfig(struct vmd *env) { struct privsep *ps = &env->vmd_ps; unsigned int id; log_debug("%s: setting config", __func__); for (id = 0; id < PROC_MAX; id++) { if (id == privsep_process) continue; proc_compose(ps, id, IMSG_VMDOP_CONFIG, &env->vmd_cfg, sizeof(env->vmd_cfg)); } return (0); } int config_getconfig(struct vmd *env, struct imsg *imsg) { log_debug("%s: retrieving config", __func__); IMSG_SIZE_CHECK(imsg, &env->vmd_cfg); memcpy(&env->vmd_cfg, imsg->data, sizeof(env->vmd_cfg)); return (0); } int config_setreset(struct vmd *env, unsigned int reset) { struct privsep *ps = &env->vmd_ps; unsigned int id; log_debug("%s: resetting state", __func__); for (id = 0; id < PROC_MAX; id++) { if ((reset & ps->ps_what[id]) == 0 || id == privsep_process) continue; proc_compose(ps, id, IMSG_CTL_RESET, &reset, sizeof(reset)); } return (0); } int config_getreset(struct vmd *env, struct imsg *imsg) { unsigned int mode; IMSG_SIZE_CHECK(imsg, &mode); memcpy(&mode, imsg->data, sizeof(mode)); log_debug("%s: resetting state", __func__); config_purge(env, mode); return (0); } int config_setvm(struct privsep *ps, struct vmd_vm *vm, uint32_t peerid, uid_t uid) { struct vmd_if *vif; struct vmop_create_params *vmc = &vm->vm_params; struct vm_create_params *vcp = &vmc->vmc_params; struct stat stat_buf; unsigned int i; int fd = -1, vmboot = 0; int kernfd = -1, *diskfds = NULL, *tapfds = NULL; int saved_errno = 0; char ifname[IF_NAMESIZE], *s; char path[PATH_MAX]; unsigned int unit; errno = 0; if (vm->vm_running) { log_warnx("%s: vm is already running", __func__); errno = EALREADY; goto fail; } diskfds = reallocarray(NULL, vcp->vcp_ndisks, sizeof(*diskfds)); if (diskfds == NULL) { log_warn("%s: can't allocate disk fds", __func__); goto fail; } for (i = 0; i < vcp->vcp_ndisks; i++) diskfds[i] = -1; tapfds = reallocarray(NULL, vcp->vcp_nnics, sizeof(*tapfds)); if (tapfds == NULL) { log_warn("%s: can't allocate tap fds", __func__); goto fail; } for (i = 0; i < vcp->vcp_nnics; i++) tapfds[i] = -1; vm->vm_peerid = peerid; vm->vm_uid = uid; if (!vm->vm_received) { if (strlen(vcp->vcp_kernel)) { /* * Boot kernel from disk image if path matches the * root disk. */ if (vcp->vcp_ndisks && strcmp(vcp->vcp_kernel, vcp->vcp_disks[0]) == 0) vmboot = 1; /* Open external kernel for child */ else if ((kernfd = open(vcp->vcp_kernel, O_RDONLY)) == -1) { log_warn("%s: can't open kernel or BIOS " "boot image %s", __func__, vcp->vcp_kernel); goto fail; } } /* * Try to open the default BIOS image if no kernel/BIOS has been * specified. The BIOS is an external firmware file that is * typically distributed separately due to an incompatible * license. */ if (kernfd == -1 && !vmboot && (kernfd = open(VM_DEFAULT_BIOS, O_RDONLY)) == -1) { log_warn("%s: can't open %s", __func__, VM_DEFAULT_BIOS); errno = VMD_BIOS_MISSING; goto fail; } } /* Open disk images for child */ for (i = 0 ; i < vcp->vcp_ndisks; i++) { /* Stat disk[i] to ensure it is a regular file */ if (stat(vcp->vcp_disks[i], &stat_buf) == -1) { log_warn("%s: can't open disk %s", __func__, vcp->vcp_disks[i]); errno = VMD_DISK_MISSING; goto fail; } if (S_ISREG(stat_buf.st_mode) == 0) { log_warn("%s: disk %s is not a regular file", __func__, vcp->vcp_disks[i]); errno = VMD_DISK_INVALID; goto fail; } if ((diskfds[i] = open(vcp->vcp_disks[i], O_RDWR)) == -1) { log_warn("%s: can't open disk %s", __func__, vcp->vcp_disks[i]); errno = VMD_DISK_MISSING; goto fail; } } /* Open network interfaces */ for (i = 0 ; i < vcp->vcp_nnics; i++) { vif = &vm->vm_ifs[i]; /* Check if the user has requested a specific tap(4) */ s = vmc->vmc_ifnames[i]; if (*s != '\0' && strcmp("tap", s) != 0) { if (priv_getiftype(s, ifname, &unit) == -1 || strcmp(ifname, "tap") != 0) { log_warnx("%s: invalid tap name %s", __func__, s); errno = EINVAL; goto fail; } } else s = NULL; /* * Either open the requested tap(4) device or get * the next available one. */ if (s != NULL) { snprintf(path, PATH_MAX, "/dev/%s", s); tapfds[i] = open(path, O_RDWR | O_NONBLOCK); } else { tapfds[i] = opentap(ifname); s = ifname; } if (tapfds[i] == -1) { log_warn("%s: can't open tap %s", __func__, s); goto fail; } if ((vif->vif_name = strdup(s)) == NULL) { log_warn("%s: can't save tap %s", __func__, s); goto fail; } /* Check if the the interface is attached to a switch */ s = vmc->vmc_ifswitch[i]; if (*s != '\0') { if ((vif->vif_switch = strdup(s)) == NULL) { log_warn("%s: can't save switch %s", __func__, s); goto fail; } } /* Check if the the interface is assigned to a group */ s = vmc->vmc_ifgroup[i]; if (*s != '\0') { if ((vif->vif_group = strdup(s)) == NULL) { log_warn("%s: can't save group %s", __func__, s); goto fail; } } /* non-default rdomain (requires VMIFF_RDOMAIN below) */ vif->vif_rdomain = vmc->vmc_ifrdomain[i]; /* Set the interface status */ vif->vif_flags = vmc->vmc_ifflags[i] & (VMIFF_UP|VMIFF_OPTMASK); } /* Open TTY */ if (vm->vm_ttyname == NULL) { if (vm_opentty(vm) == -1) { log_warn("%s: can't open tty %s", __func__, vm->vm_ttyname == NULL ? "" : vm->vm_ttyname); goto fail; } } if ((fd = dup(vm->vm_tty)) == -1) { log_warn("%s: can't re-open tty %s", __func__, vm->vm_ttyname); goto fail; } /* Send VM information */ if (vm->vm_received) proc_compose_imsg(ps, PROC_VMM, -1, IMSG_VMDOP_RECEIVE_VM_REQUEST, vm->vm_vmid, fd, vmc, sizeof(struct vmop_create_params)); else proc_compose_imsg(ps, PROC_VMM, -1, IMSG_VMDOP_START_VM_REQUEST, vm->vm_vmid, kernfd, vmc, sizeof(*vmc)); for (i = 0; i < vcp->vcp_ndisks; i++) { proc_compose_imsg(ps, PROC_VMM, -1, IMSG_VMDOP_START_VM_DISK, vm->vm_vmid, diskfds[i], &i, sizeof(i)); } for (i = 0; i < vcp->vcp_nnics; i++) { proc_compose_imsg(ps, PROC_VMM, -1, IMSG_VMDOP_START_VM_IF, vm->vm_vmid, tapfds[i], &i, sizeof(i)); } if (!vm->vm_received) proc_compose_imsg(ps, PROC_VMM, -1, IMSG_VMDOP_START_VM_END, vm->vm_vmid, fd, NULL, 0); free(diskfds); free(tapfds); vm->vm_running = 1; return (0); fail: saved_errno = errno; log_warnx("%s: failed to start vm %s", __func__, vcp->vcp_name); if (kernfd != -1) close(kernfd); if (diskfds != NULL) { for (i = 0; i < vcp->vcp_ndisks; i++) close(diskfds[i]); free(diskfds); } if (tapfds != NULL) { for (i = 0; i < vcp->vcp_nnics; i++) close(tapfds[i]); free(tapfds); } log_debug("%s: calling vm_remove", __func__); vm_remove(vm); errno = saved_errno; if (errno == 0) errno = EINVAL; return (-1); } int config_getvm(struct privsep *ps, struct imsg *imsg) { struct vmop_create_params vmc; struct vmd_vm *vm; IMSG_SIZE_CHECK(imsg, &vmc); memcpy(&vmc, imsg->data, sizeof(vmc)); errno = 0; if (vm_register(ps, &vmc, &vm, imsg->hdr.peerid, 0) == -1) goto fail; /* If the fd is -1, the kernel will be searched on the disk */ vm->vm_kernel = imsg->fd; vm->vm_running = 1; return (0); fail: if (imsg->fd != -1) { close(imsg->fd); imsg->fd = -1; } log_debug("%s: calling vm_remove", __func__); vm_remove(vm); if (errno == 0) errno = EINVAL; return (-1); } int config_getdisk(struct privsep *ps, struct imsg *imsg) { struct vmd_vm *vm; unsigned int n; errno = 0; if ((vm = vm_getbyvmid(imsg->hdr.peerid)) == NULL) { errno = ENOENT; return (-1); } IMSG_SIZE_CHECK(imsg, &n); memcpy(&n, imsg->data, sizeof(n)); if (n >= vm->vm_params.vmc_params.vcp_ndisks || vm->vm_disks[n] != -1 || imsg->fd == -1) { log_debug("invalid disk id"); errno = EINVAL; return (-1); } vm->vm_disks[n] = imsg->fd; return (0); } int config_getif(struct privsep *ps, struct imsg *imsg) { struct vmd_vm *vm; unsigned int n; errno = 0; if ((vm = vm_getbyvmid(imsg->hdr.peerid)) == NULL) { errno = ENOENT; return (-1); } IMSG_SIZE_CHECK(imsg, &n); memcpy(&n, imsg->data, sizeof(n)); if (n >= vm->vm_params.vmc_params.vcp_nnics || vm->vm_ifs[n].vif_fd != -1 || imsg->fd == -1) { log_debug("invalid interface id"); goto fail; } vm->vm_ifs[n].vif_fd = imsg->fd; return (0); fail: if (imsg->fd != -1) close(imsg->fd); errno = EINVAL; return (-1); }