273 lines
5.5 KiB
C
273 lines
5.5 KiB
C
/*
|
|
* Project Acrn
|
|
* Acrn-dm-monitor
|
|
*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
*
|
|
* Author: TaoYuhong <yuhong.tao@intel.com>
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/queue.h>
|
|
#include <pthread.h>
|
|
#include "dm.h"
|
|
#include "monitor.h"
|
|
#include "acrn_mngr.h"
|
|
#include "pm.h"
|
|
|
|
/* helpers */
|
|
/* Check if @path is a directory, and create if not exist */
|
|
static int check_dir(const char *path)
|
|
{
|
|
struct stat st;
|
|
|
|
if (stat(path, &st)) {
|
|
if (mkdir(path, 0666)) {
|
|
perror(path);
|
|
return -1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
if (S_ISDIR(st.st_mode))
|
|
return 0;
|
|
|
|
fprintf(stderr, "%s exist, and not a directory!\n", path);
|
|
return -1;
|
|
}
|
|
|
|
struct vm_ops {
|
|
char name[16];
|
|
void *arg;
|
|
struct monitor_vm_ops *ops;
|
|
LIST_ENTRY(vm_ops) list;
|
|
};
|
|
|
|
static unsigned wakeup_reason = 0;
|
|
|
|
unsigned get_wakeup_reason(void)
|
|
{
|
|
return wakeup_reason;
|
|
}
|
|
|
|
int set_wakeup_timer(time_t t)
|
|
{
|
|
int acrnd_fd;
|
|
struct mngr_msg req;
|
|
struct mngr_msg ack;
|
|
int ret;
|
|
|
|
acrnd_fd = mngr_open_un("acrnd", MNGR_CLIENT);
|
|
if (acrnd_fd < 0) {
|
|
return -1;
|
|
}
|
|
|
|
req.magic = MNGR_MSG_MAGIC;
|
|
req.msgid = ACRND_TIMER;
|
|
req.timestamp = time(NULL);
|
|
|
|
req.data.rtc_timer.t = t;
|
|
strncpy(req.data.rtc_timer.vmname, vmname,
|
|
sizeof(req.data.rtc_timer.vmname));
|
|
|
|
ret = mngr_send_msg(acrnd_fd, &req, &ack, 2);
|
|
mngr_close(acrnd_fd);
|
|
if (ret != sizeof(ack)) {
|
|
fprintf(stderr, "%s %d\r\n", __FUNCTION__, __LINE__);
|
|
return -1;
|
|
}
|
|
|
|
return ack.data.err;
|
|
}
|
|
|
|
static LIST_HEAD(vm_ops_list, vm_ops) vm_ops_head;
|
|
static pthread_mutex_t vm_ops_mtx = PTHREAD_MUTEX_INITIALIZER;
|
|
|
|
int monitor_register_vm_ops(struct monitor_vm_ops *mops, void *arg,
|
|
const char *name)
|
|
{
|
|
struct vm_ops *ops;
|
|
|
|
if (!mops) {
|
|
fprintf(stderr, "%s %d\r\n", __FUNCTION__, __LINE__);
|
|
return -1;
|
|
}
|
|
|
|
ops = calloc(1, sizeof(*ops));
|
|
if (!ops) {
|
|
perror("Alloc ops");
|
|
return -1;
|
|
}
|
|
|
|
if (name)
|
|
strncpy(ops->name, name, sizeof(ops->name) - 1);
|
|
|
|
ops->ops = mops;
|
|
ops->arg = arg;
|
|
|
|
pthread_mutex_lock(&vm_ops_mtx);
|
|
LIST_INSERT_HEAD(&vm_ops_head, ops, list);
|
|
pthread_mutex_unlock(&vm_ops_mtx);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int monitor_fd = -1;
|
|
|
|
/* handlers */
|
|
#define ACK_TIMEOUT 1
|
|
|
|
#define DEFINE_HANDLER(name, func) \
|
|
static void name(struct mngr_msg *msg, int client_fd, void *param) \
|
|
{ \
|
|
struct mngr_msg ack; \
|
|
struct vm_ops *ops; \
|
|
\
|
|
int ret = 0; \
|
|
int count = 0; \
|
|
\
|
|
ack.magic = MNGR_MSG_MAGIC; \
|
|
ack.msgid = msg->msgid; \
|
|
ack.timestamp = msg->timestamp; \
|
|
\
|
|
LIST_FOREACH(ops, &vm_ops_head, list) { \
|
|
if (ops->ops->func) { \
|
|
ret += ops->ops->func(ops->arg); \
|
|
count++; \
|
|
} \
|
|
} \
|
|
\
|
|
if (!count) { \
|
|
ack.data.err = -1; \
|
|
fprintf(stderr, "No handler for id:%u\r\n", msg->msgid); \
|
|
} else \
|
|
ack.data.err = ret; \
|
|
\
|
|
mngr_send_msg(client_fd, &ack, NULL, ACK_TIMEOUT); \
|
|
}
|
|
|
|
DEFINE_HANDLER(handle_stop, stop);
|
|
DEFINE_HANDLER(handle_suspend, suspend);
|
|
DEFINE_HANDLER(handle_pause, pause);
|
|
DEFINE_HANDLER(handle_continue, unpause);
|
|
|
|
static void handle_resume(struct mngr_msg *msg, int client_fd, void *param)
|
|
{
|
|
struct mngr_msg ack;
|
|
struct vm_ops *ops;
|
|
int ret = 0;
|
|
int count = 0;
|
|
|
|
ack.magic = MNGR_MSG_MAGIC;
|
|
ack.msgid = msg->msgid;
|
|
ack.timestamp = msg->timestamp;
|
|
|
|
wakeup_reason = msg->data.reason;
|
|
|
|
LIST_FOREACH(ops, &vm_ops_head, list) {
|
|
if (ops->ops->resume) {
|
|
ret += ops->ops->resume(ops->arg);
|
|
count++;
|
|
}
|
|
}
|
|
|
|
if (!count) {
|
|
ack.data.err = -1;
|
|
fprintf(stderr, "No handler for id:%u\r\n", msg->msgid);
|
|
} else
|
|
ack.data.err = ret;
|
|
|
|
mngr_send_msg(client_fd, &ack, NULL, ACK_TIMEOUT);
|
|
}
|
|
|
|
static void handle_query(struct mngr_msg *msg, int client_fd, void *param)
|
|
{
|
|
struct mngr_msg ack;
|
|
struct vm_ops *ops;
|
|
|
|
ack.magic = MNGR_MSG_MAGIC;
|
|
ack.msgid = msg->msgid;
|
|
ack.timestamp = msg->timestamp;
|
|
ack.data.state = -1;
|
|
|
|
LIST_FOREACH(ops, &vm_ops_head, list) {
|
|
if (ops->ops->query) {
|
|
ack.data.state = ops->ops->query(ops->arg);
|
|
break;
|
|
}
|
|
}
|
|
|
|
mngr_send_msg(client_fd, &ack, NULL, ACK_TIMEOUT);
|
|
}
|
|
|
|
static struct monitor_vm_ops pmc_ops = {
|
|
.stop = NULL,
|
|
.resume = vm_monitor_resume,
|
|
.suspend = NULL,
|
|
.pause = NULL,
|
|
.unpause = NULL,
|
|
.query = vm_monitor_query,
|
|
};
|
|
|
|
int monitor_init(struct vmctx *ctx)
|
|
{
|
|
int ret;
|
|
char path[128] = {};
|
|
|
|
ret = check_dir("/run/acrn/");
|
|
if (ret) {
|
|
fprintf(stderr, "%s %d\r\n", __FUNCTION__, __LINE__);
|
|
goto dir_err;
|
|
}
|
|
|
|
ret = check_dir("/run/acrn/mngr");
|
|
if (ret) {
|
|
fprintf(stderr, "%s %d\r\n", __FUNCTION__, __LINE__);
|
|
goto dir_err;
|
|
}
|
|
|
|
snprintf(path, sizeof(path) - 1, "%s.monitor", vmname);
|
|
|
|
monitor_fd = mngr_open_un(path, MNGR_SERVER);
|
|
if (monitor_fd < 0) {
|
|
fprintf(stderr, "%s %d\r\n", __FUNCTION__, __LINE__);
|
|
goto server_err;
|
|
}
|
|
|
|
ret = 0;
|
|
ret += mngr_add_handler(monitor_fd, DM_STOP, handle_stop, NULL);
|
|
ret += mngr_add_handler(monitor_fd, DM_SUSPEND, handle_suspend, NULL);
|
|
ret += mngr_add_handler(monitor_fd, DM_RESUME, handle_resume, NULL);
|
|
ret += mngr_add_handler(monitor_fd, DM_PAUSE, handle_pause, NULL);
|
|
ret += mngr_add_handler(monitor_fd, DM_CONTINUE, handle_continue, NULL);
|
|
ret += mngr_add_handler(monitor_fd, DM_QUERY, handle_query, NULL);
|
|
|
|
if (ret) {
|
|
fprintf(stderr, "%s %d\r\n", __FUNCTION__, __LINE__);
|
|
goto handlers_err;
|
|
}
|
|
|
|
monitor_register_vm_ops(&pmc_ops, ctx, "PMC_VM_OPs");
|
|
|
|
return 0;
|
|
|
|
handlers_err:
|
|
mngr_close(monitor_fd);
|
|
monitor_fd = -1;
|
|
server_err:
|
|
dir_err:
|
|
return -1;
|
|
}
|
|
|
|
void monitor_close(void)
|
|
{
|
|
if (monitor_fd >= 0)
|
|
mngr_close(monitor_fd);
|
|
}
|