Linux: driver for unix pseudoTTY character device

pull/279/head
Silvano Seva 2023-09-27 19:46:33 +02:00
rodzic d808546031
commit 30be60183c
3 zmienionych plików z 153 dodań i 1 usunięć

Wyświetl plik

@ -283,6 +283,7 @@ linux_platform_src = ['platform/targets/linux/emulator/emulator.c',
'platform/drivers/NVM/nvmem_linux.c',
'platform/drivers/GPS/GPS_linux.c',
'platform/mcu/x86_64/drivers/delays.c',
'platform/mcu/x86_64/drivers/pty.c',
'platform/mcu/x86_64/drivers/rng.cpp',
'platform/drivers/baseband/radio_linux.cpp',
'platform/drivers/audio/audio_linux.c',
@ -307,6 +308,7 @@ linux_def = def + {'SCREEN_WIDTH': '160', 'SCREEN_HEIGHT': '128', 'PIX_FMT_RGB56
linux_def += {'VP_USE_FILESYSTEM':''}
linux_inc = inc + ['platform/targets/linux',
'platform/mcu/x86_64',
'platform/targets/linux/emulator']
if not meson.is_cross_build()
@ -408,7 +410,7 @@ mod17_def = def + stm32f405_def + {'PLATFORM_MOD17': ''}
linux_c_args = ['-ffunction-sections', '-fdata-sections', '-DPLATFORM_LINUX']
linux_cpp_args = ['-ffunction-sections', '-fdata-sections', '-std=c++14', '-DPLATFORM_LINUX']
linux_l_args = ['-lm', '-lreadline', '-lpulse-simple', '-Wl,--gc-sections']
linux_l_args = ['-lm', '-lreadline', '-lpulse-simple', '-Wl,--gc-sections', '-Wl,-Map,main.map']
# Add AddressSanitizer if required
if get_option('asan')

Wyświetl plik

@ -0,0 +1,102 @@
/***************************************************************************
* Copyright (C) 2023 by Federico Amedeo Izzo IU2NUO, *
* Niccolò Izzo IU2KIN *
* Frederik Saraci IU2NRO *
* Silvano Seva IU2KWO *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program 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 *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, see <http://www.gnu.org/licenses/> *
***************************************************************************/
#define _XOPEN_SOURCE 600
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h>
#include <errno.h>
#include "pty.h"
static int pty_init(const struct chardev *dev)
{
int ptyFd = posix_openpt(O_RDWR);
if(ptyFd < 0)
return errno;
int rc = grantpt(ptyFd);
if (rc != 0)
return errno;
rc = unlockpt(ptyFd);
if (rc != 0)
return errno;
printf("Successfully open pseudoTTY on %s\n", ptsname(ptyFd));
*((int *)dev->data) = ptyFd;
return 0;
}
static int pty_terminate(const struct chardev *dev)
{
int ptyFd = *((int *)dev->data);
if(ptyFd < 0)
return -ENOENT;
close(ptyFd);
*((int *)dev->data) = -1;
return 0;
}
static ssize_t pty_read(const struct chardev *dev, void *data, const size_t len)
{
int ptyFd = *((int *)dev->data);
if(ptyFd < 0)
return -ENOENT;
return read(ptyFd, data, len);
}
static ssize_t pty_write(const struct chardev *dev, const void *data,
const size_t len)
{
int ptyFd = *((int *)dev->data);
if(ptyFd < 0)
return -ENOENT;
return write(ptyFd, data, len);
}
static int pty_ioctl(const struct chardev *dev, const int cmd, const void *arg)
{
(void) dev;
(void) cmd;
(void) arg;
return 0;
}
const struct chardev_api pty_chardev_api =
{
.init = &pty_init,
.terminate = &pty_terminate,
.read = &pty_read,
.write = &pty_write,
.ioctl = &pty_ioctl
};

Wyświetl plik

@ -0,0 +1,48 @@
/***************************************************************************
* Copyright (C) 2023 by Federico Amedeo Izzo IU2NUO, *
* Niccolò Izzo IU2KIN *
* Frederik Saraci IU2NRO *
* Silvano Seva IU2KWO *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program 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 *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, see <http://www.gnu.org/licenses/> *
***************************************************************************/
#ifndef PTY_H
#define PTY_H
#include <interfaces/chardev.h>
/**
* Set up a linux PTY character device.
* This macro instantiates and initializes the data structures for a PTY character
* device.
*
* @param name: device name.
*/
#define CHARDEV_PTY_DEFINE(name) \
static int data_##name; \
struct chardev name = \
{ \
.config = NULL, \
.data = &data_##name, \
.api = &pty_chardev_api \
};
/**
* Character device API definition for linux PTY.
*/
extern const struct chardev_api pty_chardev_api;
#endif