mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-23 22:18:17 +00:00
DM: separate pty vuart operation from IOC
for pty vuart operation will be commonly used by other module, like pm-vuart: control UOS power off through vuart. Tracked-On: #3564 Signed-off-by: Minggui Cao <minggui.cao@intel.com> Acked-by: Yin Fengwei <fengwei.yin@intel.com>
This commit is contained in:
parent
d188afbc59
commit
00401a1e78
@ -92,6 +92,7 @@ SRCS += hw/platform/ioapic.c
|
|||||||
SRCS += hw/platform/cmos_io.c
|
SRCS += hw/platform/cmos_io.c
|
||||||
SRCS += hw/platform/ioc.c
|
SRCS += hw/platform/ioc.c
|
||||||
SRCS += hw/platform/ioc_cbc.c
|
SRCS += hw/platform/ioc_cbc.c
|
||||||
|
SRCS += hw/platform/pty_vuart.c
|
||||||
SRCS += hw/platform/acpi/acpi.c
|
SRCS += hw/platform/acpi/acpi.c
|
||||||
SRCS += hw/platform/acpi/acpi_pm.c
|
SRCS += hw/platform/acpi/acpi_pm.c
|
||||||
SRCS += hw/platform/rpmb/rpmb_sim.c
|
SRCS += hw/platform/rpmb/rpmb_sim.c
|
||||||
|
@ -55,7 +55,6 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <pty.h>
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <types.h>
|
#include <types.h>
|
||||||
@ -64,6 +63,8 @@
|
|||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
#include "pty_vuart.h"
|
||||||
|
|
||||||
#include "dm.h"
|
#include "dm.h"
|
||||||
#include "ioc.h"
|
#include "ioc.h"
|
||||||
#include "vmmapi.h"
|
#include "vmmapi.h"
|
||||||
@ -709,83 +710,6 @@ ioc_open_native_ch(const char *dev_name)
|
|||||||
return fd;
|
return fd;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* Check and create the directory.
|
|
||||||
* To avoid symlink failure if the directory does not exist.
|
|
||||||
*/
|
|
||||||
static int
|
|
||||||
check_dir(const char *file)
|
|
||||||
{
|
|
||||||
char *tmp, *dir;
|
|
||||||
|
|
||||||
tmp = strdup(file);
|
|
||||||
if (!tmp) {
|
|
||||||
DPRINTF("ioc falied to dup file, error:%s\r\n",
|
|
||||||
strerror(errno));
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
dir = dirname(tmp);
|
|
||||||
if (access(dir, F_OK) && mkdir(dir, 0666)) {
|
|
||||||
DPRINTF("ioc falied to create dir:%s, erorr:%s\r\n", dir,
|
|
||||||
strerror(errno));
|
|
||||||
free(tmp);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
free(tmp);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Open PTY master device for IOC mediator and the PTY slave device for virtual
|
|
||||||
* UART. The pair(master/slave) can work as a communication channel between
|
|
||||||
* IOC mediator and virtual UART.
|
|
||||||
*/
|
|
||||||
static int
|
|
||||||
ioc_open_virtual_uart(const char *dev_name)
|
|
||||||
{
|
|
||||||
int fd;
|
|
||||||
char *slave_name;
|
|
||||||
struct termios attr;
|
|
||||||
|
|
||||||
fd = open("/dev/ptmx", O_RDWR | O_NOCTTY | O_NONBLOCK);
|
|
||||||
if (fd < 0)
|
|
||||||
goto open_err;
|
|
||||||
if (grantpt(fd) < 0)
|
|
||||||
goto pty_err;
|
|
||||||
if (unlockpt(fd) < 0)
|
|
||||||
goto pty_err;
|
|
||||||
slave_name = ptsname(fd);
|
|
||||||
if (!slave_name)
|
|
||||||
goto pty_err;
|
|
||||||
if ((unlink(dev_name) < 0) && errno != ENOENT)
|
|
||||||
goto pty_err;
|
|
||||||
/*
|
|
||||||
* The check_dir restriction is that only create one directory
|
|
||||||
* not support multi-level directroy.
|
|
||||||
*/
|
|
||||||
if (check_dir(dev_name) < 0)
|
|
||||||
goto pty_err;
|
|
||||||
if (symlink(slave_name, dev_name) < 0)
|
|
||||||
goto pty_err;
|
|
||||||
if (chmod(dev_name, 0660) < 0)
|
|
||||||
goto attr_err;
|
|
||||||
if (tcgetattr(fd, &attr) < 0)
|
|
||||||
goto attr_err;
|
|
||||||
cfmakeraw(&attr);
|
|
||||||
attr.c_cflag |= CLOCAL;
|
|
||||||
if (tcsetattr(fd, TCSANOW, &attr) < 0)
|
|
||||||
goto attr_err;
|
|
||||||
return fd;
|
|
||||||
|
|
||||||
attr_err:
|
|
||||||
unlink(dev_name);
|
|
||||||
pty_err:
|
|
||||||
close(fd);
|
|
||||||
open_err:
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Open native CBC cdevs and virtual UART.
|
* Open native CBC cdevs and virtual UART.
|
||||||
*/
|
*/
|
||||||
@ -807,7 +731,7 @@ ioc_ch_init(struct ioc_dev *ioc)
|
|||||||
fd = ioc_open_native_ch(chl->name);
|
fd = ioc_open_native_ch(chl->name);
|
||||||
break;
|
break;
|
||||||
case IOC_VIRTUAL_UART:
|
case IOC_VIRTUAL_UART:
|
||||||
fd = ioc_open_virtual_uart(virtual_uart_path);
|
fd = pty_open_virtual_uart(virtual_uart_path);
|
||||||
break;
|
break;
|
||||||
case IOC_LOCAL_EVENT:
|
case IOC_LOCAL_EVENT:
|
||||||
if (!pipe(pipe_fds)) {
|
if (!pipe(pipe_fds)) {
|
||||||
@ -823,7 +747,7 @@ ioc_ch_init(struct ioc_dev *ioc)
|
|||||||
*/
|
*/
|
||||||
case IOC_NATIVE_DUMMY0:
|
case IOC_NATIVE_DUMMY0:
|
||||||
if (ioc_debug_enable) {
|
if (ioc_debug_enable) {
|
||||||
fd = ioc_open_virtual_uart(chl->name);
|
fd = pty_open_virtual_uart(chl->name);
|
||||||
dummy0_sfd = open(chl->name, O_RDWR | O_NOCTTY |
|
dummy0_sfd = open(chl->name, O_RDWR | O_NOCTTY |
|
||||||
O_NONBLOCK);
|
O_NONBLOCK);
|
||||||
} else
|
} else
|
||||||
@ -831,7 +755,7 @@ ioc_ch_init(struct ioc_dev *ioc)
|
|||||||
break;
|
break;
|
||||||
case IOC_NATIVE_DUMMY1:
|
case IOC_NATIVE_DUMMY1:
|
||||||
if (ioc_debug_enable) {
|
if (ioc_debug_enable) {
|
||||||
fd = ioc_open_virtual_uart(chl->name);
|
fd = pty_open_virtual_uart(chl->name);
|
||||||
dummy1_sfd = open(chl->name, O_RDWR | O_NOCTTY |
|
dummy1_sfd = open(chl->name, O_RDWR | O_NOCTTY |
|
||||||
O_NONBLOCK);
|
O_NONBLOCK);
|
||||||
} else
|
} else
|
||||||
@ -839,7 +763,7 @@ ioc_ch_init(struct ioc_dev *ioc)
|
|||||||
break;
|
break;
|
||||||
case IOC_NATIVE_DUMMY2:
|
case IOC_NATIVE_DUMMY2:
|
||||||
if (ioc_debug_enable) {
|
if (ioc_debug_enable) {
|
||||||
fd = ioc_open_virtual_uart(chl->name);
|
fd = pty_open_virtual_uart(chl->name);
|
||||||
dummy2_sfd = open(chl->name, O_RDWR | O_NOCTTY |
|
dummy2_sfd = open(chl->name, O_RDWR | O_NOCTTY |
|
||||||
O_NONBLOCK);
|
O_NONBLOCK);
|
||||||
} else
|
} else
|
||||||
|
96
devicemodel/hw/platform/pty_vuart.c
Normal file
96
devicemodel/hw/platform/pty_vuart.c
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
/*
|
||||||
|
* Project Acrn
|
||||||
|
* Acrn-dm-pty
|
||||||
|
*
|
||||||
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
#include <dirent.h>
|
||||||
|
#include <termios.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <libgen.h>
|
||||||
|
|
||||||
|
#include "log.h"
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Check and create the directory.
|
||||||
|
* To avoid symlink failure if the directory does not exist.
|
||||||
|
*/
|
||||||
|
static int check_dir(const char *file)
|
||||||
|
{
|
||||||
|
char *tmp, *dir;
|
||||||
|
|
||||||
|
tmp = strdup(file);
|
||||||
|
if (!tmp) {
|
||||||
|
pr_err("failed to dup file, error:%s\n", strerror(errno));
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
dir = dirname(tmp);
|
||||||
|
if (access(dir, F_OK) && mkdir(dir, 0666)) {
|
||||||
|
pr_err("failed to create dir:%s, erorr:%s\n", dir, strerror(errno));
|
||||||
|
free(tmp);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
free(tmp);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Open PTY master device to used by caller and the PTY slave device for virtual
|
||||||
|
* UART. The pair(master/slave) can work as a communication channel between
|
||||||
|
* the caller and virtual UART.
|
||||||
|
*/
|
||||||
|
int pty_open_virtual_uart(const char *dev_name)
|
||||||
|
{
|
||||||
|
int fd;
|
||||||
|
char *slave_name;
|
||||||
|
struct termios attr;
|
||||||
|
|
||||||
|
fd = open("/dev/ptmx", O_RDWR | O_NOCTTY | O_NONBLOCK);
|
||||||
|
if (fd < 0)
|
||||||
|
goto open_err;
|
||||||
|
if (grantpt(fd) < 0)
|
||||||
|
goto pty_err;
|
||||||
|
if (unlockpt(fd) < 0)
|
||||||
|
goto pty_err;
|
||||||
|
slave_name = ptsname(fd);
|
||||||
|
if (!slave_name)
|
||||||
|
goto pty_err;
|
||||||
|
if ((unlink(dev_name) < 0) && errno != ENOENT)
|
||||||
|
goto pty_err;
|
||||||
|
/*
|
||||||
|
* The check_dir restriction is that only create one directory
|
||||||
|
* not support multi-level directroy.
|
||||||
|
*/
|
||||||
|
if (check_dir(dev_name) < 0)
|
||||||
|
goto pty_err;
|
||||||
|
if (symlink(slave_name, dev_name) < 0)
|
||||||
|
goto pty_err;
|
||||||
|
if (chmod(dev_name, 0660) < 0)
|
||||||
|
goto attr_err;
|
||||||
|
if (tcgetattr(fd, &attr) < 0)
|
||||||
|
goto attr_err;
|
||||||
|
cfmakeraw(&attr);
|
||||||
|
attr.c_cflag |= CLOCAL;
|
||||||
|
if (tcsetattr(fd, TCSANOW, &attr) < 0)
|
||||||
|
goto attr_err;
|
||||||
|
return fd;
|
||||||
|
|
||||||
|
attr_err:
|
||||||
|
unlink(dev_name);
|
||||||
|
pty_err:
|
||||||
|
close(fd);
|
||||||
|
open_err:
|
||||||
|
return -1;
|
||||||
|
}
|
16
devicemodel/include/pty_vuart.h
Normal file
16
devicemodel/include/pty_vuart.h
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
/*
|
||||||
|
* Project Acrn
|
||||||
|
* Acrn-dm-pty
|
||||||
|
*
|
||||||
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __PTY_H__
|
||||||
|
#define __PTY_H__
|
||||||
|
|
||||||
|
int pty_open_virtual_uart(const char *dev_name);
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue
Block a user