2017-10-15 22:41:59 +08:00
|
|
|
/*
|
2021-03-08 18:19:04 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2017-10-15 22:41:59 +08:00
|
|
|
*
|
2018-10-14 19:28:18 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2017-10-15 22:41:59 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2017/10/15 bernard the first version
|
|
|
|
*/
|
2022-01-08 23:29:41 +08:00
|
|
|
|
2021-10-28 14:48:51 +08:00
|
|
|
#include <rtthread.h>
|
2017-10-15 22:41:59 +08:00
|
|
|
#include <stdio.h>
|
2021-10-28 02:42:25 +08:00
|
|
|
#include <stdlib.h>
|
2021-10-28 14:48:51 +08:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2021-09-11 11:07:51 +08:00
|
|
|
#include <fcntl.h>
|
2021-10-28 14:48:51 +08:00
|
|
|
#include <sys/time.h>
|
2022-01-24 09:16:57 +08:00
|
|
|
#include <sys/errno.h>
|
2017-10-15 22:41:59 +08:00
|
|
|
#include "libc.h"
|
2021-10-28 14:48:51 +08:00
|
|
|
|
2022-11-23 10:40:50 +08:00
|
|
|
#define STDIO_DEVICE_NAME_MAX 32
|
|
|
|
|
2022-12-03 12:07:44 +08:00
|
|
|
int sys_dup2(int oldfd, int new);
|
|
|
|
|
2021-10-28 14:48:51 +08:00
|
|
|
int libc_system_init(void)
|
|
|
|
{
|
2022-01-03 06:51:44 +08:00
|
|
|
#ifdef RT_USING_POSIX_STDIO
|
2021-10-28 14:48:51 +08:00
|
|
|
rt_device_t dev_console;
|
|
|
|
|
|
|
|
dev_console = rt_console_get_device();
|
|
|
|
if (dev_console)
|
|
|
|
{
|
2022-12-03 12:07:44 +08:00
|
|
|
int fd = libc_stdio_set_console(dev_console->parent.name, O_RDWR);
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
/* set fd (0, 1, 2) */
|
|
|
|
sys_dup2(fd, 0);
|
|
|
|
sys_dup2(fd, 1);
|
|
|
|
sys_dup2(fd, 2);
|
2021-10-28 14:48:51 +08:00
|
|
|
}
|
2022-01-03 06:51:44 +08:00
|
|
|
#endif /* RT_USING_POSIX_STDIO */
|
2021-10-28 14:48:51 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
INIT_COMPONENT_EXPORT(libc_system_init);
|
|
|
|
|
2022-10-25 12:01:37 +08:00
|
|
|
#if defined(RT_USING_POSIX_STDIO) && defined(RT_USING_NEWLIBC)
|
2022-11-23 10:40:50 +08:00
|
|
|
|
2017-10-15 22:41:59 +08:00
|
|
|
static FILE* std_console = NULL;
|
|
|
|
int libc_stdio_set_console(const char* device_name, int mode)
|
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
char name[STDIO_DEVICE_NAME_MAX];
|
|
|
|
char *file_mode;
|
|
|
|
|
2022-11-23 10:40:50 +08:00
|
|
|
rt_snprintf(name, sizeof(name) - 1, "/dev/%s", device_name);
|
2017-10-15 22:41:59 +08:00
|
|
|
name[STDIO_DEVICE_NAME_MAX - 1] = '\0';
|
|
|
|
|
2021-10-27 14:52:04 +08:00
|
|
|
if (mode == O_RDWR)
|
|
|
|
{
|
|
|
|
file_mode = "r+";
|
|
|
|
}
|
|
|
|
else if (mode == O_WRONLY)
|
|
|
|
{
|
|
|
|
file_mode = "wb";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
file_mode = "rb";
|
|
|
|
}
|
2017-10-15 22:41:59 +08:00
|
|
|
|
|
|
|
fp = fopen(name, file_mode);
|
|
|
|
if (fp)
|
|
|
|
{
|
|
|
|
setvbuf(fp, NULL, _IONBF, 0);
|
|
|
|
|
|
|
|
if (std_console)
|
|
|
|
{
|
|
|
|
fclose(std_console);
|
|
|
|
std_console = NULL;
|
|
|
|
}
|
|
|
|
std_console = fp;
|
|
|
|
|
|
|
|
if (mode == O_RDWR)
|
|
|
|
{
|
|
|
|
_GLOBAL_REENT->_stdin = std_console;
|
|
|
|
}
|
2021-03-08 18:19:04 +08:00
|
|
|
else
|
2017-10-15 22:41:59 +08:00
|
|
|
{
|
|
|
|
_GLOBAL_REENT->_stdin = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode == O_RDONLY)
|
|
|
|
{
|
|
|
|
_GLOBAL_REENT->_stdout = NULL;
|
|
|
|
_GLOBAL_REENT->_stderr = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_GLOBAL_REENT->_stdout = std_console;
|
|
|
|
_GLOBAL_REENT->_stderr = std_console;
|
|
|
|
}
|
|
|
|
|
|
|
|
_GLOBAL_REENT->__sdidinit = 1;
|
|
|
|
}
|
|
|
|
|
2021-10-28 02:42:25 +08:00
|
|
|
if (std_console)
|
|
|
|
return fileno(std_console);
|
2018-02-11 13:57:51 +08:00
|
|
|
|
|
|
|
return -1;
|
2017-10-15 22:41:59 +08:00
|
|
|
}
|
2018-01-12 16:55:47 +08:00
|
|
|
|
2021-10-14 00:57:32 +08:00
|
|
|
int libc_stdio_get_console(void)
|
|
|
|
{
|
2018-01-12 16:55:47 +08:00
|
|
|
if (std_console)
|
|
|
|
return fileno(std_console);
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
2021-10-26 12:51:32 +08:00
|
|
|
|
2022-11-23 10:40:50 +08:00
|
|
|
#elif defined(RT_USING_POSIX_STDIO) && defined(RT_USING_MUSLLIBC)
|
|
|
|
|
|
|
|
static FILE* std_console = NULL;
|
|
|
|
|
|
|
|
int libc_stdio_set_console(const char* device_name, int mode)
|
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
char name[STDIO_DEVICE_NAME_MAX];
|
|
|
|
char *file_mode;
|
|
|
|
|
|
|
|
rt_snprintf(name, sizeof(name) - 1, "/dev/%s", device_name);
|
|
|
|
name[STDIO_DEVICE_NAME_MAX - 1] = '\0';
|
|
|
|
|
|
|
|
if (mode == O_RDWR) file_mode = "r+";
|
|
|
|
else if (mode == O_WRONLY) file_mode = "wb";
|
|
|
|
else file_mode = "rb";
|
|
|
|
|
|
|
|
fp = fopen(name, file_mode);
|
|
|
|
if (fp)
|
|
|
|
{
|
|
|
|
setvbuf(fp, NULL, _IONBF, 0);
|
|
|
|
|
|
|
|
if (std_console)
|
|
|
|
{
|
|
|
|
fclose(std_console);
|
|
|
|
std_console = NULL;
|
|
|
|
}
|
|
|
|
std_console = fp;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (std_console)
|
|
|
|
{
|
|
|
|
int fd = fileno(std_console);
|
|
|
|
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int libc_stdio_get_console(void)
|
|
|
|
{
|
|
|
|
int ret = -1;
|
|
|
|
if (std_console)
|
|
|
|
{
|
|
|
|
ret = fileno(std_console);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2022-01-24 09:16:57 +08:00
|
|
|
#elif defined(RT_USING_POSIX_STDIO)
|
2022-11-23 10:40:50 +08:00
|
|
|
|
2021-10-28 14:48:51 +08:00
|
|
|
static int std_fd = -1;
|
|
|
|
int libc_stdio_set_console(const char* device_name, int mode)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
char name[STDIO_DEVICE_NAME_MAX];
|
|
|
|
|
2022-11-23 10:40:50 +08:00
|
|
|
rt_snprintf(name, sizeof(name) - 1, "/dev/%s", device_name);
|
2021-10-28 14:48:51 +08:00
|
|
|
name[STDIO_DEVICE_NAME_MAX - 1] = '\0';
|
|
|
|
|
|
|
|
fd = open(name, mode, 0);
|
|
|
|
if (fd >= 0)
|
|
|
|
{
|
|
|
|
if (std_fd >= 0)
|
|
|
|
{
|
|
|
|
close(std_fd);
|
|
|
|
}
|
|
|
|
std_fd = fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
return std_fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
int libc_stdio_get_console(void) {
|
|
|
|
return std_fd;
|
|
|
|
}
|
2022-10-25 12:01:37 +08:00
|
|
|
#endif /* defined(RT_USING_POSIX_STDIO) && defined(RT_USING_NEWLIBC) */
|
2022-01-24 09:16:57 +08:00
|
|
|
|
|
|
|
int isatty(int fd)
|
|
|
|
{
|
|
|
|
#if defined(RT_USING_CONSOLE) && defined(RT_USING_DEVICE)
|
|
|
|
if(fd == STDOUT_FILENO || fd == STDERR_FILENO)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef RT_USING_POSIX_STDIO
|
|
|
|
if(fd == STDIN_FILENO)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
rt_set_errno(ENOTTY);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
RTM_EXPORT(isatty);
|