2020-08-04 18:39:35 +03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020, Linaro Ltd.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
|
*
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
|
*
|
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
|
*
|
|
|
|
|
* 3. Neither the name of the copyright holder nor the names of its contributors
|
|
|
|
|
* may be used to endorse or promote products derived from this software without
|
|
|
|
|
* specific prior written permission.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
*/
|
|
|
|
|
#include <sys/file.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
|
|
#include <err.h>
|
2023-10-02 17:33:03 +03:00
|
|
|
#include <stdlib.h>
|
2020-08-04 18:39:35 +03:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
|
|
#include "cdba-server.h"
|
|
|
|
|
#include "device.h"
|
|
|
|
|
|
2023-10-02 17:33:03 +03:00
|
|
|
struct console {
|
|
|
|
|
int console_fd;
|
|
|
|
|
struct termios console_tios;
|
|
|
|
|
};
|
|
|
|
|
|
2020-08-04 18:39:35 +03:00
|
|
|
static int console_data(int fd, void *data)
|
|
|
|
|
{
|
|
|
|
|
char buf[128];
|
|
|
|
|
ssize_t n;
|
|
|
|
|
|
|
|
|
|
n = read(fd, buf, sizeof(buf));
|
|
|
|
|
if (n < 0)
|
|
|
|
|
return n;
|
|
|
|
|
|
2023-09-23 21:31:14 +03:00
|
|
|
cdba_send_buf(MSG_CONSOLE, n, buf);
|
2020-08-04 18:39:35 +03:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-17 06:29:35 +03:00
|
|
|
static void *console_open(struct device *device)
|
2020-08-04 18:39:35 +03:00
|
|
|
{
|
2023-10-02 17:33:03 +03:00
|
|
|
struct console *console;
|
|
|
|
|
|
|
|
|
|
console = calloc(1, sizeof(*console));
|
|
|
|
|
console->console_fd = tty_open(device->console_dev, &console->console_tios);
|
|
|
|
|
if (console->console_fd < 0)
|
2020-08-04 18:39:35 +03:00
|
|
|
err(1, "failed to open %s", device->console_dev);
|
|
|
|
|
|
2023-10-02 17:33:03 +03:00
|
|
|
watch_add_readfd(console->console_fd, console_data, device);
|
|
|
|
|
|
|
|
|
|
return console;
|
2020-08-04 18:39:35 +03:00
|
|
|
}
|
|
|
|
|
|
2021-12-17 06:29:35 +03:00
|
|
|
static int console_write(struct device *device, const void *buf, size_t len)
|
2020-08-04 18:39:35 +03:00
|
|
|
{
|
2023-10-02 17:33:03 +03:00
|
|
|
struct console *console = device->console;
|
|
|
|
|
|
|
|
|
|
return write(console->console_fd, buf, len);;
|
2020-08-04 18:39:35 +03:00
|
|
|
}
|
2021-01-22 18:04:58 -06:00
|
|
|
|
2021-12-17 06:29:35 +03:00
|
|
|
static void console_send_break(struct device *device)
|
2021-01-22 18:04:58 -06:00
|
|
|
{
|
2023-10-02 17:33:03 +03:00
|
|
|
struct console *console = device->console;
|
|
|
|
|
|
|
|
|
|
tcsendbreak(console->console_fd, 0);
|
2021-01-22 18:04:58 -06:00
|
|
|
}
|
2023-10-02 17:33:03 +03:00
|
|
|
|
|
|
|
|
const struct console_ops console_ops = {
|
|
|
|
|
.open = console_open,
|
|
|
|
|
.write = console_write,
|
|
|
|
|
.send_break = console_send_break,
|
|
|
|
|
};
|