2015-04-19 07:39:58 +00:00
|
|
|
/*
|
|
|
|
* This file is part of mpv.
|
|
|
|
*
|
2016-01-19 17:36:34 +00:00
|
|
|
* mpv is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2015-04-19 07:39:58 +00:00
|
|
|
*
|
|
|
|
* mpv is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2016-01-19 17:36:34 +00:00
|
|
|
* GNU Lesser General Public License for more details.
|
2015-11-07 22:22:38 +00:00
|
|
|
*
|
2016-01-19 17:36:34 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
|
2015-04-19 07:39:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
2016-10-04 20:07:19 +00:00
|
|
|
#include <string.h>
|
2015-04-19 07:39:58 +00:00
|
|
|
#include <signal.h>
|
|
|
|
#include <sys/ioctl.h>
|
2017-01-09 15:21:28 +00:00
|
|
|
#include <poll.h>
|
2016-10-04 20:07:19 +00:00
|
|
|
#include <sys/stat.h>
|
2015-04-19 07:39:58 +00:00
|
|
|
#include <sys/vt.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "drm_common.h"
|
|
|
|
|
|
|
|
#include "common/common.h"
|
|
|
|
#include "common/msg.h"
|
|
|
|
#include "osdep/io.h"
|
|
|
|
|
|
|
|
#define EVT_RELEASE 1
|
|
|
|
#define EVT_ACQUIRE 2
|
|
|
|
#define EVT_INTERRUPT 255
|
|
|
|
#define HANDLER_ACQUIRE 0
|
|
|
|
#define HANDLER_RELEASE 1
|
2015-10-30 17:55:48 +00:00
|
|
|
#define RELEASE_SIGNAL SIGUSR1
|
|
|
|
#define ACQUIRE_SIGNAL SIGUSR2
|
2016-10-04 20:07:19 +00:00
|
|
|
#define MAX_CONNECTOR_NAME_LEN 20
|
2015-04-19 07:39:58 +00:00
|
|
|
|
|
|
|
static int vt_switcher_pipe[2];
|
|
|
|
|
2016-10-04 20:07:19 +00:00
|
|
|
static const char *connector_names[] = {
|
|
|
|
"Unknown", // DRM_MODE_CONNECTOR_Unknown
|
|
|
|
"VGA", // DRM_MODE_CONNECTOR_VGA
|
|
|
|
"DVI-I", // DRM_MODE_CONNECTOR_DVII
|
|
|
|
"DVI-D", // DRM_MODE_CONNECTOR_DVID
|
|
|
|
"DVI-A", // DRM_MODE_CONNECTOR_DVIA
|
|
|
|
"Composite", // DRM_MODE_CONNECTOR_Composite
|
|
|
|
"SVIDEO", // DRM_MODE_CONNECTOR_SVIDEO
|
|
|
|
"LVDS", // DRM_MODE_CONNECTOR_LVDS
|
|
|
|
"Component", // DRM_MODE_CONNECTOR_Component
|
|
|
|
"DIN", // DRM_MODE_CONNECTOR_9PinDIN
|
|
|
|
"DP", // DRM_MODE_CONNECTOR_DisplayPort
|
|
|
|
"HDMI-A", // DRM_MODE_CONNECTOR_HDMIA
|
|
|
|
"HDMI-B", // DRM_MODE_CONNECTOR_HDMIB
|
|
|
|
"TV", // DRM_MODE_CONNECTOR_TV
|
|
|
|
"eDP", // DRM_MODE_CONNECTOR_eDP
|
|
|
|
"Virtual", // DRM_MODE_CONNECTOR_VIRTUAL
|
|
|
|
"DSI", // DRM_MODE_CONNECTOR_DSI
|
|
|
|
"DPI", // DRM_MODE_CONNECTOR_DPI
|
|
|
|
};
|
|
|
|
|
2015-11-07 12:41:40 +00:00
|
|
|
// KMS ------------------------------------------------------------------------
|
|
|
|
|
2016-10-04 20:07:19 +00:00
|
|
|
static void get_connector_name(
|
|
|
|
drmModeConnector *connector, char ret[MAX_CONNECTOR_NAME_LEN])
|
2015-11-07 12:41:40 +00:00
|
|
|
{
|
2016-10-04 20:07:19 +00:00
|
|
|
snprintf(ret, MAX_CONNECTOR_NAME_LEN, "%s-%d",
|
|
|
|
connector_names[connector->connector_type],
|
|
|
|
connector->connector_type_id);
|
|
|
|
}
|
2015-11-07 12:41:40 +00:00
|
|
|
|
2016-10-04 20:07:19 +00:00
|
|
|
// Gets the first connector whose name matches the input parameter.
|
|
|
|
// The returned connector may be disconnected.
|
|
|
|
// Result must be freed with drmModeFreeConnector.
|
|
|
|
static drmModeConnector *get_connector_by_name(const struct kms *kms,
|
|
|
|
const drmModeRes *res,
|
|
|
|
const char *connector_name)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < res->count_connectors; i++) {
|
|
|
|
drmModeConnector *connector
|
|
|
|
= drmModeGetConnector(kms->fd, res->connectors[i]);
|
|
|
|
if (!connector)
|
|
|
|
continue;
|
|
|
|
char other_connector_name[MAX_CONNECTOR_NAME_LEN];
|
|
|
|
get_connector_name(connector, other_connector_name);
|
|
|
|
if (!strcmp(connector_name, other_connector_name))
|
|
|
|
return connector;
|
|
|
|
drmModeFreeConnector(connector);
|
2015-11-07 12:41:40 +00:00
|
|
|
}
|
2016-10-04 20:07:19 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2015-11-07 12:41:40 +00:00
|
|
|
|
2016-10-04 20:07:19 +00:00
|
|
|
// Gets the first connected connector.
|
|
|
|
// Result must be freed with drmModeFreeConnector.
|
|
|
|
static drmModeConnector *get_first_connected_connector(const struct kms *kms,
|
|
|
|
const drmModeRes *res)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < res->count_connectors; i++) {
|
|
|
|
drmModeConnector *connector
|
|
|
|
= drmModeGetConnector(kms->fd, res->connectors[i]);
|
|
|
|
if (!connector)
|
|
|
|
continue;
|
|
|
|
if (connector->connection == DRM_MODE_CONNECTED
|
|
|
|
&& connector->count_modes > 0) {
|
|
|
|
return connector;
|
2015-11-07 12:41:40 +00:00
|
|
|
}
|
2016-10-04 20:07:19 +00:00
|
|
|
drmModeFreeConnector(connector);
|
2015-11-07 12:41:40 +00:00
|
|
|
}
|
2016-10-04 20:07:19 +00:00
|
|
|
return NULL;
|
2015-11-07 12:41:40 +00:00
|
|
|
}
|
|
|
|
|
2016-10-04 20:07:19 +00:00
|
|
|
static bool setup_connector(struct kms *kms, const drmModeRes *res,
|
|
|
|
const char *connector_name)
|
2015-11-07 12:41:40 +00:00
|
|
|
{
|
2016-10-04 20:07:19 +00:00
|
|
|
drmModeConnector *connector;
|
|
|
|
|
|
|
|
if (connector_name
|
|
|
|
&& strcmp(connector_name, "")
|
|
|
|
&& strcmp(connector_name, "auto")) {
|
|
|
|
connector = get_connector_by_name(kms, res, connector_name);
|
|
|
|
if (!connector) {
|
|
|
|
MP_ERR(kms, "No connector with name %s found\n", connector_name);
|
|
|
|
kms_show_available_connectors(kms->log, kms->card_no);
|
|
|
|
return false;
|
2015-11-07 12:41:40 +00:00
|
|
|
}
|
2016-10-04 20:07:19 +00:00
|
|
|
} else {
|
|
|
|
connector = get_first_connected_connector(kms, res);
|
|
|
|
if (!connector) {
|
2015-11-07 12:41:40 +00:00
|
|
|
MP_ERR(kms, "No connected connectors found\n");
|
2015-11-07 20:11:04 +00:00
|
|
|
return false;
|
2015-11-07 12:41:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-04 20:07:19 +00:00
|
|
|
if (connector->connection != DRM_MODE_CONNECTED) {
|
|
|
|
drmModeFreeConnector(connector);
|
|
|
|
MP_ERR(kms, "Chosen connector is disconnected\n");
|
2015-11-07 20:11:04 +00:00
|
|
|
return false;
|
2015-11-07 12:41:40 +00:00
|
|
|
}
|
|
|
|
|
2016-10-04 20:07:19 +00:00
|
|
|
if (connector->count_modes == 0) {
|
|
|
|
drmModeFreeConnector(connector);
|
|
|
|
MP_ERR(kms, "Chosen connector has no valid modes\n");
|
2015-11-07 20:11:04 +00:00
|
|
|
return false;
|
2016-10-04 20:07:19 +00:00
|
|
|
}
|
2015-11-07 12:41:40 +00:00
|
|
|
|
|
|
|
kms->connector = connector;
|
2015-11-07 20:11:04 +00:00
|
|
|
return true;
|
2015-11-07 12:41:40 +00:00
|
|
|
}
|
|
|
|
|
2015-11-07 20:11:04 +00:00
|
|
|
static bool setup_crtc(struct kms *kms, const drmModeRes *res)
|
2015-11-07 12:41:40 +00:00
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < kms->connector->count_encoders; ++i) {
|
|
|
|
drmModeEncoder *encoder
|
|
|
|
= drmModeGetEncoder(kms->fd, kms->connector->encoders[i]);
|
|
|
|
if (!encoder) {
|
|
|
|
MP_WARN(kms, "Cannot retrieve encoder %u:%u: %s\n",
|
|
|
|
i, kms->connector->encoders[i], mp_strerror(errno));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// iterate all global CRTCs
|
|
|
|
for (unsigned int j = 0; j < res->count_crtcs; ++j) {
|
|
|
|
// check whether this CRTC works with the encoder
|
|
|
|
if (!(encoder->possible_crtcs & (1 << j)))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
kms->encoder = encoder;
|
2016-01-18 21:33:52 +00:00
|
|
|
kms->crtc_id = res->crtcs[j];
|
2015-11-07 20:11:04 +00:00
|
|
|
return true;
|
2015-11-07 12:41:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
drmModeFreeEncoder(encoder);
|
|
|
|
}
|
|
|
|
|
2016-10-04 20:07:19 +00:00
|
|
|
MP_ERR(kms, "Connector %u has no suitable CRTC\n",
|
2015-11-07 12:41:40 +00:00
|
|
|
kms->connector->connector_id);
|
2015-11-07 20:11:04 +00:00
|
|
|
return false;
|
2015-11-07 12:41:40 +00:00
|
|
|
}
|
|
|
|
|
2015-11-07 20:11:04 +00:00
|
|
|
static bool setup_mode(struct kms *kms, int mode_id)
|
2015-11-07 12:41:40 +00:00
|
|
|
{
|
|
|
|
if (mode_id < 0 || mode_id >= kms->connector->count_modes) {
|
2016-10-04 20:07:19 +00:00
|
|
|
MP_ERR(kms, "Bad mode ID (max = %d).\n",
|
|
|
|
kms->connector->count_modes - 1);
|
|
|
|
|
|
|
|
kms_show_available_modes(kms->log, kms->connector);
|
2015-11-07 20:11:04 +00:00
|
|
|
return false;
|
2015-11-07 12:41:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
kms->mode = kms->connector->modes[mode_id];
|
2015-11-07 20:11:04 +00:00
|
|
|
return true;
|
2015-11-07 12:41:40 +00:00
|
|
|
}
|
|
|
|
|
2016-10-04 20:07:19 +00:00
|
|
|
static int open_card(int card_no)
|
|
|
|
{
|
|
|
|
char card_path[128];
|
|
|
|
snprintf(card_path, sizeof(card_path), DRM_DEV_NAME, DRM_DIR_NAME, card_no);
|
|
|
|
return open(card_path, O_RDWR | O_CLOEXEC);
|
|
|
|
}
|
2015-11-07 12:41:40 +00:00
|
|
|
|
2016-10-04 20:07:19 +00:00
|
|
|
static void parse_connector_spec(struct mp_log *log,
|
|
|
|
const char *connector_spec,
|
|
|
|
int *card_no, char **connector_name)
|
2015-11-07 12:41:40 +00:00
|
|
|
{
|
2016-10-04 20:07:19 +00:00
|
|
|
if (!connector_spec) {
|
|
|
|
*card_no = 0;
|
|
|
|
*connector_name = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
char *dot_ptr = strchr(connector_spec, '.');
|
|
|
|
if (dot_ptr) {
|
|
|
|
*card_no = atoi(connector_spec);
|
|
|
|
*connector_name = talloc_strdup(log, dot_ptr + 1);
|
|
|
|
} else {
|
|
|
|
*card_no = 0;
|
|
|
|
*connector_name = talloc_strdup(log, connector_spec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct kms *kms_create(struct mp_log *log, const char *connector_spec,
|
|
|
|
int mode_id)
|
|
|
|
{
|
|
|
|
int card_no = -1;
|
|
|
|
char *connector_name = NULL;
|
|
|
|
parse_connector_spec(log, connector_spec, &card_no, &connector_name);
|
|
|
|
|
|
|
|
struct kms *kms = talloc(NULL, struct kms);
|
|
|
|
*kms = (struct kms) {
|
|
|
|
.log = mp_log_new(kms, log, "kms"),
|
|
|
|
.fd = open_card(card_no),
|
2015-11-07 12:41:40 +00:00
|
|
|
.connector = NULL,
|
|
|
|
.encoder = NULL,
|
|
|
|
.mode = { 0 },
|
|
|
|
.crtc_id = -1,
|
2016-10-04 20:07:19 +00:00
|
|
|
.card_no = card_no,
|
2015-11-07 12:41:40 +00:00
|
|
|
};
|
|
|
|
|
2016-10-04 20:07:19 +00:00
|
|
|
drmModeRes *res = NULL;
|
|
|
|
|
2015-11-07 12:41:40 +00:00
|
|
|
if (kms->fd < 0) {
|
2016-10-04 20:07:19 +00:00
|
|
|
mp_err(log, "Cannot open card \"%d\": %s.\n",
|
|
|
|
card_no, mp_strerror(errno));
|
|
|
|
goto err;
|
2015-11-07 12:41:40 +00:00
|
|
|
}
|
|
|
|
|
2016-10-04 20:07:19 +00:00
|
|
|
res = drmModeGetResources(kms->fd);
|
2015-11-07 12:41:40 +00:00
|
|
|
if (!res) {
|
2016-10-04 20:07:19 +00:00
|
|
|
mp_err(log, "Cannot retrieve DRM resources: %s\n", mp_strerror(errno));
|
|
|
|
goto err;
|
2015-11-07 12:41:40 +00:00
|
|
|
}
|
|
|
|
|
2016-10-04 20:07:19 +00:00
|
|
|
if (!setup_connector(kms, res, connector_name))
|
2016-10-03 22:20:07 +00:00
|
|
|
goto err;
|
2015-11-07 20:11:04 +00:00
|
|
|
if (!setup_crtc(kms, res))
|
2016-10-03 22:20:07 +00:00
|
|
|
goto err;
|
2015-11-07 20:11:04 +00:00
|
|
|
if (!setup_mode(kms, mode_id))
|
2016-10-03 22:20:07 +00:00
|
|
|
goto err;
|
2015-11-07 12:41:40 +00:00
|
|
|
|
2016-10-03 22:20:07 +00:00
|
|
|
drmModeFreeResources(res);
|
2016-10-04 20:07:19 +00:00
|
|
|
return kms;
|
2016-10-03 22:20:07 +00:00
|
|
|
|
|
|
|
err:
|
2016-10-04 20:07:19 +00:00
|
|
|
if (res)
|
|
|
|
drmModeFreeResources(res);
|
|
|
|
if (connector_name)
|
|
|
|
talloc_free(connector_name);
|
|
|
|
kms_destroy(kms);
|
|
|
|
return NULL;
|
2015-11-07 12:41:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void kms_destroy(struct kms *kms)
|
|
|
|
{
|
|
|
|
if (!kms)
|
|
|
|
return;
|
|
|
|
if (kms->connector) {
|
|
|
|
drmModeFreeConnector(kms->connector);
|
|
|
|
kms->connector = NULL;
|
|
|
|
}
|
|
|
|
if (kms->encoder) {
|
|
|
|
drmModeFreeEncoder(kms->encoder);
|
|
|
|
kms->encoder = NULL;
|
|
|
|
}
|
|
|
|
close(kms->fd);
|
|
|
|
talloc_free(kms);
|
|
|
|
}
|
|
|
|
|
2016-10-04 20:07:19 +00:00
|
|
|
void kms_show_available_modes(
|
|
|
|
struct mp_log *log, const drmModeConnector *connector)
|
|
|
|
{
|
|
|
|
mp_info(log, "Available modes:\n");
|
|
|
|
for (unsigned int i = 0; i < connector->count_modes; i++) {
|
|
|
|
mp_info(log, "Mode %d: %s (%dx%d)\n", i,
|
|
|
|
connector->modes[i].name,
|
|
|
|
connector->modes[i].hdisplay,
|
|
|
|
connector->modes[i].vdisplay);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void kms_show_available_connectors(struct mp_log *log, int card_no)
|
|
|
|
{
|
|
|
|
mp_info(log, "Available connectors for card %d:\n", card_no);
|
|
|
|
|
|
|
|
int fd = open_card(card_no);
|
|
|
|
if (fd < 0) {
|
|
|
|
mp_err(log, "Failed to open card %d\n", card_no);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
drmModeRes *res = drmModeGetResources(fd);
|
|
|
|
if (!res) {
|
|
|
|
mp_err(log, "Cannot retrieve DRM resources: %s\n", mp_strerror(errno));
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < res->count_connectors; i++) {
|
|
|
|
drmModeConnector *connector
|
|
|
|
= drmModeGetConnector(fd, res->connectors[i]);
|
|
|
|
if (!connector)
|
|
|
|
continue;
|
|
|
|
char other_connector_name[MAX_CONNECTOR_NAME_LEN];
|
|
|
|
get_connector_name(connector, other_connector_name);
|
|
|
|
mp_info(log, "%s (%s)\n", other_connector_name,
|
|
|
|
connector->connection == DRM_MODE_CONNECTED
|
|
|
|
? "connected"
|
|
|
|
: "disconnected");
|
|
|
|
drmModeFreeConnector(connector);
|
|
|
|
}
|
|
|
|
|
|
|
|
err:
|
|
|
|
if (fd >= 0)
|
|
|
|
close(fd);
|
|
|
|
if (res)
|
|
|
|
drmModeFreeResources(res);
|
|
|
|
}
|
|
|
|
|
|
|
|
void kms_show_available_cards_and_connectors(struct mp_log *log)
|
|
|
|
{
|
|
|
|
for (int card_no = 0; card_no < DRM_MAX_MINOR; card_no++) {
|
|
|
|
int fd = open_card(card_no);
|
|
|
|
if (fd < 0)
|
|
|
|
break;
|
|
|
|
close(fd);
|
|
|
|
kms_show_available_connectors(log, card_no);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-03 21:56:35 +00:00
|
|
|
double kms_get_display_fps(const struct kms *kms)
|
|
|
|
{
|
|
|
|
return kms->mode.clock * 1000.0 / kms->mode.htotal / kms->mode.vtotal;
|
|
|
|
}
|
|
|
|
|
2016-10-04 20:07:19 +00:00
|
|
|
int drm_validate_connector_opt(struct mp_log *log, const struct m_option *opt,
|
|
|
|
struct bstr name, struct bstr param)
|
|
|
|
{
|
|
|
|
if (bstr_equals0(param, "help")) {
|
|
|
|
kms_show_available_cards_and_connectors(log);
|
|
|
|
return M_OPT_EXIT;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-11-07 12:41:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
// VT switcher ----------------------------------------------------------------
|
|
|
|
|
2015-04-19 07:39:58 +00:00
|
|
|
static void vt_switcher_sighandler(int sig)
|
|
|
|
{
|
2015-10-30 17:55:48 +00:00
|
|
|
unsigned char event = sig == RELEASE_SIGNAL ? EVT_RELEASE : EVT_ACQUIRE;
|
2016-06-07 11:39:43 +00:00
|
|
|
(void)write(vt_switcher_pipe[1], &event, sizeof(event));
|
2015-04-19 07:39:58 +00:00
|
|
|
}
|
|
|
|
|
2015-10-30 17:55:48 +00:00
|
|
|
static bool has_signal_installed(int signo)
|
|
|
|
{
|
|
|
|
struct sigaction act = { 0 };
|
|
|
|
sigaction(signo, 0, &act);
|
|
|
|
return act.sa_handler != 0;
|
|
|
|
}
|
|
|
|
|
2015-10-30 18:10:11 +00:00
|
|
|
static int install_signal(int signo, void (*handler)(int))
|
|
|
|
{
|
|
|
|
struct sigaction act = { 0 };
|
|
|
|
act.sa_handler = handler;
|
|
|
|
sigemptyset(&act.sa_mask);
|
|
|
|
act.sa_flags = SA_RESTART;
|
|
|
|
return sigaction(signo, &act, NULL);
|
|
|
|
}
|
|
|
|
|
2015-11-07 12:41:40 +00:00
|
|
|
|
2015-11-07 20:11:04 +00:00
|
|
|
bool vt_switcher_init(struct vt_switcher *s, struct mp_log *log)
|
2015-04-19 07:39:58 +00:00
|
|
|
{
|
|
|
|
s->log = log;
|
|
|
|
s->tty_fd = -1;
|
|
|
|
vt_switcher_pipe[0] = -1;
|
|
|
|
vt_switcher_pipe[1] = -1;
|
|
|
|
|
|
|
|
if (mp_make_cloexec_pipe(vt_switcher_pipe)) {
|
2015-06-28 13:14:49 +00:00
|
|
|
MP_ERR(s, "Creating pipe failed: %s\n", mp_strerror(errno));
|
2015-11-07 20:11:04 +00:00
|
|
|
return false;
|
2015-04-19 07:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
s->tty_fd = open("/dev/tty", O_RDWR | O_CLOEXEC);
|
|
|
|
if (s->tty_fd < 0) {
|
2015-06-28 13:14:49 +00:00
|
|
|
MP_ERR(s, "Can't open TTY for VT control: %s\n", mp_strerror(errno));
|
2015-11-07 20:11:04 +00:00
|
|
|
return false;
|
2015-04-19 07:39:58 +00:00
|
|
|
}
|
|
|
|
|
2015-10-30 17:55:48 +00:00
|
|
|
if (has_signal_installed(RELEASE_SIGNAL)) {
|
|
|
|
MP_ERR(s, "Can't handle VT release - signal already used\n");
|
2015-11-07 20:11:04 +00:00
|
|
|
return false;
|
2015-10-30 17:55:48 +00:00
|
|
|
}
|
|
|
|
if (has_signal_installed(ACQUIRE_SIGNAL)) {
|
|
|
|
MP_ERR(s, "Can't handle VT acquire - signal already used\n");
|
2015-11-07 20:11:04 +00:00
|
|
|
return false;
|
2015-10-30 17:55:48 +00:00
|
|
|
}
|
|
|
|
|
2015-10-30 18:10:11 +00:00
|
|
|
if (install_signal(RELEASE_SIGNAL, vt_switcher_sighandler)) {
|
|
|
|
MP_ERR(s, "Failed to install release signal: %s\n", mp_strerror(errno));
|
2015-11-07 20:11:04 +00:00
|
|
|
return false;
|
2015-10-30 18:10:11 +00:00
|
|
|
}
|
|
|
|
if (install_signal(ACQUIRE_SIGNAL, vt_switcher_sighandler)) {
|
|
|
|
MP_ERR(s, "Failed to install acquire signal: %s\n", mp_strerror(errno));
|
2015-11-07 20:11:04 +00:00
|
|
|
return false;
|
2015-10-30 18:10:11 +00:00
|
|
|
}
|
2015-04-19 07:39:58 +00:00
|
|
|
|
|
|
|
struct vt_mode vt_mode;
|
|
|
|
if (ioctl(s->tty_fd, VT_GETMODE, &vt_mode) < 0) {
|
2015-06-28 13:14:49 +00:00
|
|
|
MP_ERR(s, "VT_GETMODE failed: %s\n", mp_strerror(errno));
|
2015-11-07 20:11:04 +00:00
|
|
|
return false;
|
2015-04-19 07:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
vt_mode.mode = VT_PROCESS;
|
2015-10-30 17:55:48 +00:00
|
|
|
vt_mode.relsig = RELEASE_SIGNAL;
|
|
|
|
vt_mode.acqsig = ACQUIRE_SIGNAL;
|
2015-04-19 07:39:58 +00:00
|
|
|
if (ioctl(s->tty_fd, VT_SETMODE, &vt_mode) < 0) {
|
2015-06-28 13:14:49 +00:00
|
|
|
MP_ERR(s, "VT_SETMODE failed: %s\n", mp_strerror(errno));
|
2015-11-07 20:11:04 +00:00
|
|
|
return false;
|
2015-04-19 07:39:58 +00:00
|
|
|
}
|
|
|
|
|
2015-11-07 20:11:04 +00:00
|
|
|
return true;
|
2015-04-19 07:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void vt_switcher_acquire(struct vt_switcher *s,
|
|
|
|
void (*handler)(void*), void *user_data)
|
|
|
|
{
|
|
|
|
s->handlers[HANDLER_ACQUIRE] = handler;
|
|
|
|
s->handler_data[HANDLER_ACQUIRE] = user_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void vt_switcher_release(struct vt_switcher *s,
|
|
|
|
void (*handler)(void*), void *user_data)
|
|
|
|
{
|
|
|
|
s->handlers[HANDLER_RELEASE] = handler;
|
|
|
|
s->handler_data[HANDLER_RELEASE] = user_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void vt_switcher_interrupt_poll(struct vt_switcher *s)
|
|
|
|
{
|
|
|
|
unsigned char event = EVT_INTERRUPT;
|
2016-06-07 11:39:43 +00:00
|
|
|
(void)write(vt_switcher_pipe[1], &event, sizeof(event));
|
2015-04-19 07:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void vt_switcher_destroy(struct vt_switcher *s)
|
|
|
|
{
|
2015-10-30 18:11:04 +00:00
|
|
|
install_signal(RELEASE_SIGNAL, SIG_DFL);
|
|
|
|
install_signal(ACQUIRE_SIGNAL, SIG_DFL);
|
2015-04-19 07:39:58 +00:00
|
|
|
close(s->tty_fd);
|
|
|
|
close(vt_switcher_pipe[0]);
|
|
|
|
close(vt_switcher_pipe[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void vt_switcher_poll(struct vt_switcher *s, int timeout_ms)
|
|
|
|
{
|
|
|
|
struct pollfd fds[1] = {
|
|
|
|
{ .events = POLLIN, .fd = vt_switcher_pipe[0] },
|
|
|
|
};
|
|
|
|
poll(fds, 1, timeout_ms);
|
2015-04-21 09:50:44 +00:00
|
|
|
if (!fds[0].revents)
|
2015-04-19 07:39:58 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
unsigned char event;
|
2015-04-21 09:50:44 +00:00
|
|
|
if (read(fds[0].fd, &event, sizeof(event)) != sizeof(event))
|
2015-04-19 07:39:58 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
switch (event) {
|
|
|
|
case EVT_RELEASE:
|
|
|
|
s->handlers[HANDLER_RELEASE](s->handler_data[HANDLER_RELEASE]);
|
|
|
|
|
|
|
|
if (ioctl(s->tty_fd, VT_RELDISP, 1) < 0) {
|
|
|
|
MP_ERR(s, "Failed to release virtual terminal\n");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EVT_ACQUIRE:
|
|
|
|
s->handlers[HANDLER_ACQUIRE](s->handler_data[HANDLER_ACQUIRE]);
|
|
|
|
|
|
|
|
if (ioctl(s->tty_fd, VT_RELDISP, VT_ACKACQ) < 0) {
|
|
|
|
MP_ERR(s, "Failed to acquire virtual terminal\n");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EVT_INTERRUPT:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|