4 * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43 #include <sys/queue.h>
44 #include <sys/types.h>
45 #include <sys/socket.h>
46 #include <sys/select.h>
48 #include <rte_config.h>
49 #include <rte_malloc.h>
50 #include <rte_memory.h>
51 #include <rte_mempool.h>
53 #include <rte_atomic.h>
54 #include <rte_spinlock.h>
56 #include <libvirt/libvirt.h>
58 #include "channel_manager.h"
59 #include "channel_commands.h"
60 #include "channel_monitor.h"
63 #define RTE_LOGTYPE_CHANNEL_MANAGER RTE_LOGTYPE_USER1
65 #define ITERATIVE_BITMASK_CHECK_64(mask_u64b, i) \
66 for (i = 0; mask_u64b; mask_u64b &= ~(1ULL << i++)) \
67 if ((mask_u64b >> i) & 1) \
69 /* Global pointer to libvirt connection */
70 static virConnectPtr global_vir_conn_ptr;
72 static unsigned char *global_cpumaps;
73 static virVcpuInfo *global_vircpuinfo;
74 static size_t global_maplen;
76 static unsigned global_n_host_cpus;
79 * Represents a single Virtual Machine
81 struct virtual_machine_info {
82 char name[CHANNEL_MGR_MAX_NAME_LEN];
83 rte_atomic64_t pcpu_mask[CHANNEL_CMDS_MAX_CPUS];
84 struct channel_info *channels[CHANNEL_CMDS_MAX_VM_CHANNELS];
85 uint64_t channel_mask;
87 enum vm_status status;
88 virDomainPtr domainPtr;
90 rte_spinlock_t config_spinlock;
91 LIST_ENTRY(virtual_machine_info) vms_info;
94 LIST_HEAD(, virtual_machine_info) vm_list_head;
96 static struct virtual_machine_info *
97 find_domain_by_name(const char *name)
99 struct virtual_machine_info *info;
100 LIST_FOREACH(info, &vm_list_head, vms_info) {
101 if (!strncmp(info->name, name, CHANNEL_MGR_MAX_NAME_LEN-1))
108 update_pcpus_mask(struct virtual_machine_info *vm_info)
110 virVcpuInfoPtr cpuinfo;
115 memset(global_cpumaps, 0, CHANNEL_CMDS_MAX_CPUS*global_maplen);
117 if (!virDomainIsActive(vm_info->domainPtr)) {
118 n_vcpus = virDomainGetVcpuPinInfo(vm_info->domainPtr,
119 vm_info->info.nrVirtCpu, global_cpumaps, global_maplen,
120 VIR_DOMAIN_AFFECT_CONFIG);
122 RTE_LOG(ERR, CHANNEL_MANAGER, "Error getting vCPU info for "
123 "in-active VM '%s'\n", vm_info->name);
129 memset(global_vircpuinfo, 0, sizeof(*global_vircpuinfo)*
130 CHANNEL_CMDS_MAX_CPUS);
132 cpuinfo = global_vircpuinfo;
134 n_vcpus = virDomainGetVcpus(vm_info->domainPtr, cpuinfo,
135 CHANNEL_CMDS_MAX_CPUS, global_cpumaps, global_maplen);
137 RTE_LOG(ERR, CHANNEL_MANAGER, "Error getting vCPU info for "
138 "active VM '%s'\n", vm_info->name);
142 if (n_vcpus >= CHANNEL_CMDS_MAX_CPUS) {
143 RTE_LOG(ERR, CHANNEL_MANAGER, "Number of vCPUS(%u) is out of range "
144 "0...%d\n", n_vcpus, CHANNEL_CMDS_MAX_CPUS-1);
147 if (n_vcpus != vm_info->info.nrVirtCpu) {
148 RTE_LOG(INFO, CHANNEL_MANAGER, "Updating the number of vCPUs for VM '%s"
149 " from %d -> %d\n", vm_info->name, vm_info->info.nrVirtCpu,
151 vm_info->info.nrVirtCpu = n_vcpus;
153 for (i = 0; i < vm_info->info.nrVirtCpu; i++) {
155 for (j = 0; j < global_n_host_cpus; j++) {
156 if (VIR_CPU_USABLE(global_cpumaps, global_maplen, i, j) > 0) {
160 rte_atomic64_set(&vm_info->pcpu_mask[i], mask);
166 set_pcpus_mask(char *vm_name, unsigned vcpu, uint64_t core_mask)
169 int flags = VIR_DOMAIN_AFFECT_LIVE|VIR_DOMAIN_AFFECT_CONFIG;
170 struct virtual_machine_info *vm_info;
171 uint64_t mask = core_mask;
173 if (vcpu >= CHANNEL_CMDS_MAX_CPUS) {
174 RTE_LOG(ERR, CHANNEL_MANAGER, "vCPU(%u) exceeds max allowable(%d)\n",
175 vcpu, CHANNEL_CMDS_MAX_CPUS-1);
179 vm_info = find_domain_by_name(vm_name);
180 if (vm_info == NULL) {
181 RTE_LOG(ERR, CHANNEL_MANAGER, "VM '%s' not found\n", vm_name);
185 if (!virDomainIsActive(vm_info->domainPtr)) {
186 RTE_LOG(ERR, CHANNEL_MANAGER, "Unable to set vCPU(%u) to pCPU "
187 "mask(0x%"PRIx64") for VM '%s', VM is not active\n",
188 vcpu, core_mask, vm_info->name);
192 if (vcpu >= vm_info->info.nrVirtCpu) {
193 RTE_LOG(ERR, CHANNEL_MANAGER, "vCPU(%u) exceeds the assigned number of "
194 "vCPUs(%u)\n", vcpu, vm_info->info.nrVirtCpu);
197 memset(global_cpumaps, 0 , CHANNEL_CMDS_MAX_CPUS * global_maplen);
198 ITERATIVE_BITMASK_CHECK_64(mask, i) {
199 VIR_USE_CPU(global_cpumaps, i);
200 if (i >= global_n_host_cpus) {
201 RTE_LOG(ERR, CHANNEL_MANAGER, "CPU(%u) exceeds the available "
202 "number of CPUs(%u)\n", i, global_n_host_cpus);
206 if (virDomainPinVcpuFlags(vm_info->domainPtr, vcpu, global_cpumaps,
207 global_maplen, flags) < 0) {
208 RTE_LOG(ERR, CHANNEL_MANAGER, "Unable to set vCPU(%u) to pCPU "
209 "mask(0x%"PRIx64") for VM '%s'\n", vcpu, core_mask,
213 rte_atomic64_set(&vm_info->pcpu_mask[vcpu], core_mask);
219 set_pcpu(char *vm_name, unsigned vcpu, unsigned core_num)
221 uint64_t mask = 1ULL << core_num;
223 return set_pcpus_mask(vm_name, vcpu, mask);
227 get_pcpus_mask(struct channel_info *chan_info, unsigned vcpu)
229 struct virtual_machine_info *vm_info =
230 (struct virtual_machine_info *)chan_info->priv_info;
231 return rte_atomic64_read(&vm_info->pcpu_mask[vcpu]);
235 channel_exists(struct virtual_machine_info *vm_info, unsigned channel_num)
237 rte_spinlock_lock(&(vm_info->config_spinlock));
238 if (vm_info->channel_mask & (1ULL << channel_num)) {
239 rte_spinlock_unlock(&(vm_info->config_spinlock));
242 rte_spinlock_unlock(&(vm_info->config_spinlock));
249 open_non_blocking_channel(struct channel_info *info)
252 struct sockaddr_un sock_addr;
256 info->fd = socket(AF_UNIX, SOCK_STREAM, 0);
257 if (info->fd == -1) {
258 RTE_LOG(ERR, CHANNEL_MANAGER, "Error(%s) creating socket for '%s'\n",
263 sock_addr.sun_family = AF_UNIX;
264 memcpy(&sock_addr.sun_path, info->channel_path,
265 strlen(info->channel_path)+1);
267 /* Get current flags */
268 flags = fcntl(info->fd, F_GETFL, 0);
270 RTE_LOG(WARNING, CHANNEL_MANAGER, "Error(%s) fcntl get flags socket for"
271 "'%s'\n", strerror(errno), info->channel_path);
274 /* Set to Non Blocking */
276 if (fcntl(info->fd, F_SETFL, flags) < 0) {
277 RTE_LOG(WARNING, CHANNEL_MANAGER, "Error(%s) setting non-blocking "
278 "socket for '%s'\n", strerror(errno), info->channel_path);
281 ret = connect(info->fd, (struct sockaddr *)&sock_addr,
284 /* ECONNREFUSED error is given when VM is not active */
285 if (errno == ECONNREFUSED) {
286 RTE_LOG(WARNING, CHANNEL_MANAGER, "VM is not active or has not "
287 "activated its endpoint to channel %s\n",
291 /* Wait for tv_sec if in progress */
292 else if (errno == EINPROGRESS) {
295 FD_ZERO(&soc_fd_set);
296 FD_SET(info->fd, &soc_fd_set);
297 if (select(info->fd+1, NULL, &soc_fd_set, NULL, &tv) > 0) {
298 RTE_LOG(WARNING, CHANNEL_MANAGER, "Timeout or error on channel "
299 "'%s'\n", info->channel_path);
303 /* Any other error */
304 RTE_LOG(WARNING, CHANNEL_MANAGER, "Error(%s) connecting socket"
305 " for '%s'\n", strerror(errno), info->channel_path);
313 setup_channel_info(struct virtual_machine_info **vm_info_dptr,
314 struct channel_info **chan_info_dptr, unsigned channel_num)
316 struct channel_info *chan_info = *chan_info_dptr;
317 struct virtual_machine_info *vm_info = *vm_info_dptr;
319 chan_info->channel_num = channel_num;
320 chan_info->priv_info = (void *)vm_info;
321 chan_info->status = CHANNEL_MGR_CHANNEL_DISCONNECTED;
322 if (open_non_blocking_channel(chan_info) < 0) {
323 RTE_LOG(ERR, CHANNEL_MANAGER, "Could not open channel: "
324 "'%s' for VM '%s'\n",
325 chan_info->channel_path, vm_info->name);
328 if (add_channel_to_monitor(&chan_info) < 0) {
329 RTE_LOG(ERR, CHANNEL_MANAGER, "Could add channel: "
330 "'%s' to epoll ctl for VM '%s'\n",
331 chan_info->channel_path, vm_info->name);
335 rte_spinlock_lock(&(vm_info->config_spinlock));
336 vm_info->num_channels++;
337 vm_info->channel_mask |= 1ULL << channel_num;
338 vm_info->channels[channel_num] = chan_info;
339 chan_info->status = CHANNEL_MGR_CHANNEL_CONNECTED;
340 rte_spinlock_unlock(&(vm_info->config_spinlock));
345 add_all_channels(const char *vm_name)
349 struct virtual_machine_info *vm_info;
350 struct channel_info *chan_info;
351 char *token, *remaining, *tail_ptr;
352 char socket_name[PATH_MAX];
353 unsigned channel_num;
354 int num_channels_enabled = 0;
356 /* verify VM exists */
357 vm_info = find_domain_by_name(vm_name);
358 if (vm_info == NULL) {
359 RTE_LOG(ERR, CHANNEL_MANAGER, "VM: '%s' not found"
360 " during channel discovery\n", vm_name);
363 if (!virDomainIsActive(vm_info->domainPtr)) {
364 RTE_LOG(ERR, CHANNEL_MANAGER, "VM: '%s' is not active\n", vm_name);
365 vm_info->status = CHANNEL_MGR_VM_INACTIVE;
368 d = opendir(CHANNEL_MGR_SOCKET_PATH);
370 RTE_LOG(ERR, CHANNEL_MANAGER, "Error opening directory '%s': %s\n",
371 CHANNEL_MGR_SOCKET_PATH, strerror(errno));
374 while ((dir = readdir(d)) != NULL) {
375 if (!strncmp(dir->d_name, ".", 1) ||
376 !strncmp(dir->d_name, "..", 2))
379 snprintf(socket_name, sizeof(socket_name), "%s", dir->d_name);
380 remaining = socket_name;
381 /* Extract vm_name from "<vm_name>.<channel_num>" */
382 token = strsep(&remaining, ".");
383 if (remaining == NULL)
385 if (strncmp(vm_name, token, CHANNEL_MGR_MAX_NAME_LEN))
388 /* remaining should contain only <channel_num> */
390 channel_num = (unsigned)strtol(remaining, &tail_ptr, 0);
391 if ((errno != 0) || (remaining[0] == '\0') ||
392 tail_ptr == NULL || (*tail_ptr != '\0')) {
393 RTE_LOG(WARNING, CHANNEL_MANAGER, "Malformed channel name"
394 "'%s' found it should be in the form of "
395 "'<guest_name>.<channel_num>(decimal)'\n",
399 if (channel_num >= CHANNEL_CMDS_MAX_VM_CHANNELS) {
400 RTE_LOG(WARNING, CHANNEL_MANAGER, "Channel number(%u) is "
401 "greater than max allowable: %d, skipping '%s%s'\n",
402 channel_num, CHANNEL_CMDS_MAX_VM_CHANNELS-1,
403 CHANNEL_MGR_SOCKET_PATH, dir->d_name);
406 /* if channel has not been added previously */
407 if (channel_exists(vm_info, channel_num))
410 chan_info = rte_malloc(NULL, sizeof(*chan_info),
411 RTE_CACHE_LINE_SIZE);
412 if (chan_info == NULL) {
413 RTE_LOG(ERR, CHANNEL_MANAGER, "Error allocating memory for "
414 "channel '%s%s'\n", CHANNEL_MGR_SOCKET_PATH, dir->d_name);
418 snprintf(chan_info->channel_path,
419 sizeof(chan_info->channel_path), "%s%s",
420 CHANNEL_MGR_SOCKET_PATH, dir->d_name);
422 if (setup_channel_info(&vm_info, &chan_info, channel_num) < 0) {
427 num_channels_enabled++;
430 return num_channels_enabled;
434 add_channels(const char *vm_name, unsigned *channel_list,
435 unsigned len_channel_list)
437 struct virtual_machine_info *vm_info;
438 struct channel_info *chan_info;
439 char socket_path[PATH_MAX];
441 int num_channels_enabled = 0;
443 vm_info = find_domain_by_name(vm_name);
444 if (vm_info == NULL) {
445 RTE_LOG(ERR, CHANNEL_MANAGER, "Unable to add channels: VM '%s' "
446 "not found\n", vm_name);
450 if (!virDomainIsActive(vm_info->domainPtr)) {
451 RTE_LOG(ERR, CHANNEL_MANAGER, "VM: '%s' is not active\n", vm_name);
452 vm_info->status = CHANNEL_MGR_VM_INACTIVE;
456 for (i = 0; i < len_channel_list; i++) {
458 if (channel_list[i] >= CHANNEL_CMDS_MAX_VM_CHANNELS) {
459 RTE_LOG(INFO, CHANNEL_MANAGER, "Channel(%u) is out of range "
460 "0...%d\n", channel_list[i],
461 CHANNEL_CMDS_MAX_VM_CHANNELS-1);
464 if (channel_exists(vm_info, channel_list[i])) {
465 RTE_LOG(INFO, CHANNEL_MANAGER, "Channel already exists, skipping "
466 "'%s.%u'\n", vm_name, i);
470 snprintf(socket_path, sizeof(socket_path), "%s%s.%u",
471 CHANNEL_MGR_SOCKET_PATH, vm_name, channel_list[i]);
473 if (access(socket_path, F_OK) < 0) {
474 RTE_LOG(ERR, CHANNEL_MANAGER, "Channel path '%s' error: "
475 "%s\n", socket_path, strerror(errno));
478 chan_info = rte_malloc(NULL, sizeof(*chan_info),
479 RTE_CACHE_LINE_SIZE);
480 if (chan_info == NULL) {
481 RTE_LOG(ERR, CHANNEL_MANAGER, "Error allocating memory for "
482 "channel '%s'\n", socket_path);
485 snprintf(chan_info->channel_path,
486 sizeof(chan_info->channel_path), "%s%s.%u",
487 CHANNEL_MGR_SOCKET_PATH, vm_name, channel_list[i]);
488 if (setup_channel_info(&vm_info, &chan_info, channel_list[i]) < 0) {
492 num_channels_enabled++;
495 return num_channels_enabled;
499 remove_channel(struct channel_info **chan_info_dptr)
501 struct virtual_machine_info *vm_info;
502 struct channel_info *chan_info = *chan_info_dptr;
504 close(chan_info->fd);
506 vm_info = (struct virtual_machine_info *)chan_info->priv_info;
508 rte_spinlock_lock(&(vm_info->config_spinlock));
509 vm_info->channel_mask &= ~(1ULL << chan_info->channel_num);
510 vm_info->num_channels--;
511 rte_spinlock_unlock(&(vm_info->config_spinlock));
518 set_channel_status_all(const char *vm_name, enum channel_status status)
520 struct virtual_machine_info *vm_info;
523 int num_channels_changed = 0;
525 if (!(status == CHANNEL_MGR_CHANNEL_CONNECTED ||
526 status == CHANNEL_MGR_CHANNEL_DISABLED)) {
527 RTE_LOG(ERR, CHANNEL_MANAGER, "Channels can only be enabled or "
528 "disabled: Unable to change status for VM '%s'\n", vm_name);
530 vm_info = find_domain_by_name(vm_name);
531 if (vm_info == NULL) {
532 RTE_LOG(ERR, CHANNEL_MANAGER, "Unable to disable channels: VM '%s' "
533 "not found\n", vm_name);
537 rte_spinlock_lock(&(vm_info->config_spinlock));
538 mask = vm_info->channel_mask;
539 ITERATIVE_BITMASK_CHECK_64(mask, i) {
540 vm_info->channels[i]->status = status;
541 num_channels_changed++;
543 rte_spinlock_unlock(&(vm_info->config_spinlock));
544 return num_channels_changed;
549 set_channel_status(const char *vm_name, unsigned *channel_list,
550 unsigned len_channel_list, enum channel_status status)
552 struct virtual_machine_info *vm_info;
554 int num_channels_changed = 0;
556 if (!(status == CHANNEL_MGR_CHANNEL_CONNECTED ||
557 status == CHANNEL_MGR_CHANNEL_DISABLED)) {
558 RTE_LOG(ERR, CHANNEL_MANAGER, "Channels can only be enabled or "
559 "disabled: Unable to change status for VM '%s'\n", vm_name);
561 vm_info = find_domain_by_name(vm_name);
562 if (vm_info == NULL) {
563 RTE_LOG(ERR, CHANNEL_MANAGER, "Unable to add channels: VM '%s' "
564 "not found\n", vm_name);
567 for (i = 0; i < len_channel_list; i++) {
568 if (channel_exists(vm_info, channel_list[i])) {
569 rte_spinlock_lock(&(vm_info->config_spinlock));
570 vm_info->channels[channel_list[i]]->status = status;
571 rte_spinlock_unlock(&(vm_info->config_spinlock));
572 num_channels_changed++;
575 return num_channels_changed;
579 get_info_vm(const char *vm_name, struct vm_info *info)
581 struct virtual_machine_info *vm_info;
582 unsigned i, channel_num = 0;
585 vm_info = find_domain_by_name(vm_name);
586 if (vm_info == NULL) {
587 RTE_LOG(ERR, CHANNEL_MANAGER, "VM '%s' not found\n", vm_name);
590 info->status = CHANNEL_MGR_VM_ACTIVE;
591 if (!virDomainIsActive(vm_info->domainPtr))
592 info->status = CHANNEL_MGR_VM_INACTIVE;
594 rte_spinlock_lock(&(vm_info->config_spinlock));
596 mask = vm_info->channel_mask;
597 ITERATIVE_BITMASK_CHECK_64(mask, i) {
598 info->channels[channel_num].channel_num = i;
599 memcpy(info->channels[channel_num].channel_path,
600 vm_info->channels[i]->channel_path, UNIX_PATH_MAX);
601 info->channels[channel_num].status = vm_info->channels[i]->status;
602 info->channels[channel_num].fd = vm_info->channels[i]->fd;
606 info->num_channels = channel_num;
607 info->num_vcpus = vm_info->info.nrVirtCpu;
608 rte_spinlock_unlock(&(vm_info->config_spinlock));
610 memcpy(info->name, vm_info->name, sizeof(vm_info->name));
611 for (i = 0; i < info->num_vcpus; i++) {
612 info->pcpu_mask[i] = rte_atomic64_read(&vm_info->pcpu_mask[i]);
618 add_vm(const char *vm_name)
620 struct virtual_machine_info *new_domain;
621 virDomainPtr dom_ptr;
624 if (find_domain_by_name(vm_name) != NULL) {
625 RTE_LOG(ERR, CHANNEL_MANAGER, "Unable to add VM: VM '%s' "
626 "already exists\n", vm_name);
630 if (global_vir_conn_ptr == NULL) {
631 RTE_LOG(ERR, CHANNEL_MANAGER, "No connection to hypervisor exists\n");
634 dom_ptr = virDomainLookupByName(global_vir_conn_ptr, vm_name);
635 if (dom_ptr == NULL) {
636 RTE_LOG(ERR, CHANNEL_MANAGER, "Error on VM lookup with libvirt: "
637 "VM '%s' not found\n", vm_name);
641 new_domain = rte_malloc("virtual_machine_info", sizeof(*new_domain),
642 RTE_CACHE_LINE_SIZE);
643 if (new_domain == NULL) {
644 RTE_LOG(ERR, CHANNEL_MANAGER, "Unable to allocate memory for VM "
648 new_domain->domainPtr = dom_ptr;
649 if (virDomainGetInfo(new_domain->domainPtr, &new_domain->info) != 0) {
650 RTE_LOG(ERR, CHANNEL_MANAGER, "Unable to get libvirt VM info\n");
651 rte_free(new_domain);
654 if (new_domain->info.nrVirtCpu > CHANNEL_CMDS_MAX_CPUS) {
655 RTE_LOG(ERR, CHANNEL_MANAGER, "Error the number of virtual CPUs(%u) is "
656 "greater than allowable(%d)\n", new_domain->info.nrVirtCpu,
657 CHANNEL_CMDS_MAX_CPUS);
658 rte_free(new_domain);
662 for (i = 0; i < CHANNEL_CMDS_MAX_CPUS; i++) {
663 rte_atomic64_init(&new_domain->pcpu_mask[i]);
665 if (update_pcpus_mask(new_domain) < 0) {
666 RTE_LOG(ERR, CHANNEL_MANAGER, "Error getting physical CPU pinning\n");
667 rte_free(new_domain);
670 strncpy(new_domain->name, vm_name, sizeof(new_domain->name));
671 new_domain->channel_mask = 0;
672 new_domain->num_channels = 0;
674 if (!virDomainIsActive(dom_ptr))
675 new_domain->status = CHANNEL_MGR_VM_INACTIVE;
677 new_domain->status = CHANNEL_MGR_VM_ACTIVE;
679 rte_spinlock_init(&(new_domain->config_spinlock));
680 LIST_INSERT_HEAD(&vm_list_head, new_domain, vms_info);
685 remove_vm(const char *vm_name)
687 struct virtual_machine_info *vm_info = find_domain_by_name(vm_name);
689 if (vm_info == NULL) {
690 RTE_LOG(ERR, CHANNEL_MANAGER, "Unable to remove VM: VM '%s' "
691 "not found\n", vm_name);
694 rte_spinlock_lock(&vm_info->config_spinlock);
695 if (vm_info->num_channels != 0) {
696 RTE_LOG(ERR, CHANNEL_MANAGER, "Unable to remove VM '%s', there are "
697 "%"PRId8" channels still active\n",
698 vm_name, vm_info->num_channels);
699 rte_spinlock_unlock(&vm_info->config_spinlock);
702 LIST_REMOVE(vm_info, vms_info);
703 rte_spinlock_unlock(&vm_info->config_spinlock);
709 disconnect_hypervisor(void)
711 if (global_vir_conn_ptr != NULL) {
712 virConnectClose(global_vir_conn_ptr);
713 global_vir_conn_ptr = NULL;
718 connect_hypervisor(const char *path)
720 if (global_vir_conn_ptr != NULL) {
721 RTE_LOG(ERR, CHANNEL_MANAGER, "Error connecting to %s, connection "
722 "already established\n", path);
725 global_vir_conn_ptr = virConnectOpen(path);
726 if (global_vir_conn_ptr == NULL) {
727 RTE_LOG(ERR, CHANNEL_MANAGER, "Error failed to open connection to "
728 "Hypervisor '%s'\n", path);
735 channel_manager_init(const char *path)
739 LIST_INIT(&vm_list_head);
740 if (connect_hypervisor(path) < 0) {
741 RTE_LOG(ERR, CHANNEL_MANAGER, "Unable to initialize channel manager\n");
745 global_maplen = VIR_CPU_MAPLEN(CHANNEL_CMDS_MAX_CPUS);
747 global_vircpuinfo = rte_zmalloc(NULL, sizeof(*global_vircpuinfo) *
748 CHANNEL_CMDS_MAX_CPUS, RTE_CACHE_LINE_SIZE);
749 if (global_vircpuinfo == NULL) {
750 RTE_LOG(ERR, CHANNEL_MANAGER, "Error allocating memory for CPU Info\n");
753 global_cpumaps = rte_zmalloc(NULL, CHANNEL_CMDS_MAX_CPUS * global_maplen,
754 RTE_CACHE_LINE_SIZE);
755 if (global_cpumaps == NULL) {
759 n_cpus = virNodeGetCPUMap(global_vir_conn_ptr, NULL, NULL, 0);
761 RTE_LOG(ERR, CHANNEL_MANAGER, "Unable to get the number of Host "
765 global_n_host_cpus = (unsigned)n_cpus;
767 if (global_n_host_cpus > CHANNEL_CMDS_MAX_CPUS) {
768 RTE_LOG(ERR, CHANNEL_MANAGER, "The number of host CPUs(%u) exceeds the "
769 "maximum of %u\n", global_n_host_cpus, CHANNEL_CMDS_MAX_CPUS);
776 disconnect_hypervisor();
781 channel_manager_exit(void)
785 struct virtual_machine_info *vm_info;
787 LIST_FOREACH(vm_info, &vm_list_head, vms_info) {
789 rte_spinlock_lock(&(vm_info->config_spinlock));
791 mask = vm_info->channel_mask;
792 ITERATIVE_BITMASK_CHECK_64(mask, i) {
793 remove_channel_from_monitor(vm_info->channels[i]);
794 close(vm_info->channels[i]->fd);
795 rte_free(vm_info->channels[i]);
797 rte_spinlock_unlock(&(vm_info->config_spinlock));
799 LIST_REMOVE(vm_info, vms_info);
803 if (global_cpumaps != NULL)
804 rte_free(global_cpumaps);
805 if (global_vircpuinfo != NULL)
806 rte_free(global_vircpuinfo);
807 disconnect_hypervisor();