2018-10-14 19:28:18 +08:00
|
|
|
/*
|
2021-03-08 18:19:04 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2018-10-14 19:28:18 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
2021-02-11 02:58:19 +08:00
|
|
|
* 2021-02-11 Meco Man remove _gettimeofday_r() and _times_r()
|
2022-06-23 14:38:26 +08:00
|
|
|
* 2021-02-13 Meco Man re-implement exit() and abort()
|
|
|
|
* 2021-02-21 Meco Man improve and beautify syscalls
|
|
|
|
* 2021-02-24 Meco Man fix bug of _isatty_r()
|
2018-10-14 19:28:18 +08:00
|
|
|
*/
|
2021-02-11 02:58:19 +08:00
|
|
|
|
2011-10-08 21:02:22 +08:00
|
|
|
#include <reent.h>
|
|
|
|
#include <rtthread.h>
|
2021-10-26 12:51:32 +08:00
|
|
|
#include <stdio.h>
|
2021-10-28 02:42:25 +08:00
|
|
|
#include <string.h>
|
2021-09-26 02:56:10 +08:00
|
|
|
#include <stddef.h>
|
2021-10-26 12:51:32 +08:00
|
|
|
#include <fcntl.h>
|
2021-09-27 19:02:41 +08:00
|
|
|
#include <unistd.h>
|
2021-09-26 02:56:10 +08:00
|
|
|
#include <sys/errno.h>
|
2021-10-26 12:51:32 +08:00
|
|
|
#include <sys/stat.h>
|
2022-01-03 06:51:44 +08:00
|
|
|
#ifdef RT_USING_POSIX_STDIO
|
2021-10-26 12:51:32 +08:00
|
|
|
#include "libc.h"
|
2022-01-03 06:51:44 +08:00
|
|
|
#endif /* RT_USING_POSIX_STDIO */
|
2021-10-26 12:51:32 +08:00
|
|
|
#ifdef RT_USING_MODULE
|
|
|
|
#include <dlmodule.h>
|
2021-11-24 21:41:10 +08:00
|
|
|
#endif /* RT_USING_MODULE */
|
2021-12-26 22:41:24 +08:00
|
|
|
#include <compiler_private.h>
|
2021-09-26 02:56:10 +08:00
|
|
|
#define DBG_TAG "newlib.syscalls"
|
|
|
|
#define DBG_LVL DBG_INFO
|
|
|
|
#include <rtdbg.h>
|
|
|
|
|
|
|
|
#ifdef RT_USING_HEAP /* Memory routine */
|
2022-06-23 14:38:26 +08:00
|
|
|
void *_malloc_r(struct _reent *ptr, size_t size)
|
2021-09-26 02:56:10 +08:00
|
|
|
{
|
|
|
|
void* result;
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2022-06-23 14:38:26 +08:00
|
|
|
result = (void*)rt_malloc(size);
|
2021-09-26 02:56:10 +08:00
|
|
|
if (result == RT_NULL)
|
|
|
|
{
|
|
|
|
ptr->_errno = ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2022-06-23 14:38:26 +08:00
|
|
|
void *_realloc_r(struct _reent *ptr, void *old, size_t newlen)
|
2021-09-26 02:56:10 +08:00
|
|
|
{
|
|
|
|
void* result;
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2022-06-23 14:38:26 +08:00
|
|
|
result = (void*)rt_realloc(old, newlen);
|
2021-09-26 02:56:10 +08:00
|
|
|
if (result == RT_NULL)
|
|
|
|
{
|
|
|
|
ptr->_errno = ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2022-06-23 14:38:26 +08:00
|
|
|
void *_calloc_r(struct _reent *ptr, size_t size, size_t len)
|
2021-09-26 02:56:10 +08:00
|
|
|
{
|
|
|
|
void* result;
|
|
|
|
|
2022-06-23 14:38:26 +08:00
|
|
|
result = (void*)rt_calloc(size, len);
|
2021-09-26 02:56:10 +08:00
|
|
|
if (result == RT_NULL)
|
|
|
|
{
|
|
|
|
ptr->_errno = ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2022-06-23 14:38:26 +08:00
|
|
|
void _free_r(struct _reent *ptr, void *addr)
|
2021-09-26 02:56:10 +08:00
|
|
|
{
|
2022-06-23 14:38:26 +08:00
|
|
|
rt_free(addr);
|
2021-09-26 02:56:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
2022-06-23 14:38:26 +08:00
|
|
|
void *_sbrk_r(struct _reent *ptr, ptrdiff_t incr)
|
2021-09-26 02:56:10 +08:00
|
|
|
{
|
2021-11-13 13:17:16 +08:00
|
|
|
LOG_E("Please enable RT_USING_HEAP");
|
2021-09-26 02:56:10 +08:00
|
|
|
RT_ASSERT(0);
|
|
|
|
return RT_NULL;
|
|
|
|
}
|
|
|
|
#endif /*RT_USING_HEAP*/
|
|
|
|
|
|
|
|
void __libc_init_array(void)
|
|
|
|
{
|
|
|
|
/* we not use __libc init_aray to initialize C++ objects */
|
|
|
|
/* __libc_init_array is ARM code, not Thumb; it will cause a hardfault. */
|
|
|
|
}
|
|
|
|
|
2011-10-08 21:02:22 +08:00
|
|
|
/* Reentrant versions of system calls. */
|
2019-04-11 14:21:05 +08:00
|
|
|
#ifndef _REENT_ONLY
|
2022-06-23 14:38:26 +08:00
|
|
|
int *__errno(void)
|
2019-04-11 14:21:05 +08:00
|
|
|
{
|
|
|
|
return _rt_errno();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2021-06-21 21:15:22 +08:00
|
|
|
int _getpid_r(struct _reent *ptr)
|
2021-02-22 16:53:54 +08:00
|
|
|
{
|
2021-02-22 17:02:45 +08:00
|
|
|
return 0;
|
2021-02-22 16:53:54 +08:00
|
|
|
}
|
|
|
|
|
2021-06-21 21:15:22 +08:00
|
|
|
int _close_r(struct _reent *ptr, int fd)
|
2011-10-08 21:02:22 +08:00
|
|
|
{
|
2021-11-16 00:22:49 +08:00
|
|
|
#ifdef DFS_USING_POSIX
|
2017-12-31 16:43:08 +08:00
|
|
|
return close(fd);
|
2021-11-13 13:17:16 +08:00
|
|
|
#else
|
2021-12-29 20:48:36 +08:00
|
|
|
LOG_W("%s: %s", __func__, _WARNING_WITHOUT_FS);
|
2021-11-13 13:17:16 +08:00
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2021-11-16 00:22:49 +08:00
|
|
|
#endif /* DFS_USING_POSIX */
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
2021-06-21 21:15:22 +08:00
|
|
|
int _execve_r(struct _reent *ptr, const char * name, char *const *argv, char *const *env)
|
2011-10-08 21:02:22 +08:00
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
2021-06-21 21:15:22 +08:00
|
|
|
int _fcntl_r(struct _reent *ptr, int fd, int cmd, int arg)
|
2011-10-08 21:02:22 +08:00
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
2021-06-21 21:15:22 +08:00
|
|
|
int _fork_r(struct _reent *ptr)
|
2011-10-08 21:02:22 +08:00
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
2021-06-21 21:15:22 +08:00
|
|
|
int _fstat_r(struct _reent *ptr, int fd, struct stat *pstat)
|
2011-10-08 21:02:22 +08:00
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
2021-06-21 21:15:22 +08:00
|
|
|
int _isatty_r(struct _reent *ptr, int fd)
|
2011-10-08 21:02:22 +08:00
|
|
|
{
|
2021-02-21 18:20:45 +08:00
|
|
|
if (fd >=0 && fd < 3)
|
2021-02-24 22:09:00 +08:00
|
|
|
{
|
2021-02-21 18:20:45 +08:00
|
|
|
return 1;
|
2021-02-24 22:09:00 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
2021-04-26 14:31:31 +08:00
|
|
|
|
2021-06-21 21:15:22 +08:00
|
|
|
int _kill_r(struct _reent *ptr, int pid, int sig)
|
2011-10-08 21:02:22 +08:00
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
2021-06-21 21:15:22 +08:00
|
|
|
int _link_r(struct _reent *ptr, const char *old, const char *new)
|
2011-10-08 21:02:22 +08:00
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
2021-10-26 12:51:32 +08:00
|
|
|
int _wait_r(struct _reent *ptr, int *status)
|
2011-10-08 21:02:22 +08:00
|
|
|
{
|
2021-02-21 18:20:45 +08:00
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2021-10-26 12:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
mode_t umask(mode_t mask)
|
|
|
|
{
|
|
|
|
return 022;
|
|
|
|
}
|
|
|
|
|
|
|
|
int flock(int fd, int operation)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
_off_t _lseek_r(struct _reent *ptr, int fd, _off_t pos, int whence)
|
|
|
|
{
|
2021-11-16 00:22:49 +08:00
|
|
|
#ifdef DFS_USING_POSIX
|
2017-12-31 16:43:08 +08:00
|
|
|
_off_t rc;
|
|
|
|
rc = lseek(fd, pos, whence);
|
|
|
|
return rc;
|
2021-10-26 12:51:32 +08:00
|
|
|
#else
|
2021-12-29 20:48:36 +08:00
|
|
|
LOG_W("%s: %s", __func__, _WARNING_WITHOUT_FS);
|
2021-10-26 12:51:32 +08:00
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2021-11-16 00:22:49 +08:00
|
|
|
#endif /* DFS_USING_POSIX */
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
2021-06-21 21:15:22 +08:00
|
|
|
int _mkdir_r(struct _reent *ptr, const char *name, int mode)
|
2011-10-08 21:02:22 +08:00
|
|
|
{
|
2021-11-16 00:22:49 +08:00
|
|
|
#ifdef DFS_USING_POSIX
|
2017-12-31 16:43:08 +08:00
|
|
|
int rc;
|
|
|
|
rc = mkdir(name, mode);
|
|
|
|
return rc;
|
2021-10-26 12:51:32 +08:00
|
|
|
#else
|
2021-12-29 20:48:36 +08:00
|
|
|
LOG_W("%s: %s", __func__, _WARNING_WITHOUT_FS);
|
2021-10-26 12:51:32 +08:00
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2021-11-16 00:22:49 +08:00
|
|
|
#endif /* DFS_USING_POSIX */
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
2021-06-21 21:15:22 +08:00
|
|
|
int _open_r(struct _reent *ptr, const char *file, int flags, int mode)
|
2011-10-08 21:02:22 +08:00
|
|
|
{
|
2021-11-16 00:22:49 +08:00
|
|
|
#ifdef DFS_USING_POSIX
|
2017-12-31 16:43:08 +08:00
|
|
|
int rc;
|
|
|
|
rc = open(file, flags, mode);
|
|
|
|
return rc;
|
2021-10-26 12:51:32 +08:00
|
|
|
#else
|
2021-12-29 20:48:36 +08:00
|
|
|
LOG_W("%s: %s", __func__, _WARNING_WITHOUT_FS);
|
2021-10-26 12:51:32 +08:00
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2021-11-16 00:22:49 +08:00
|
|
|
#endif /* DFS_USING_POSIX */
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
2021-06-21 21:15:22 +08:00
|
|
|
_ssize_t _read_r(struct _reent *ptr, int fd, void *buf, size_t nbytes)
|
2011-10-08 21:02:22 +08:00
|
|
|
{
|
2021-11-16 00:22:49 +08:00
|
|
|
#ifdef DFS_USING_POSIX
|
2017-12-31 16:43:08 +08:00
|
|
|
_ssize_t rc;
|
2021-11-11 07:33:43 +08:00
|
|
|
if (fd == STDIN_FILENO)
|
2021-09-27 18:51:40 +08:00
|
|
|
{
|
2022-01-03 06:51:44 +08:00
|
|
|
#ifdef RT_USING_POSIX_STDIO
|
2021-11-11 07:33:43 +08:00
|
|
|
if (libc_stdio_get_console() < 0)
|
|
|
|
{
|
2021-12-29 12:25:16 +08:00
|
|
|
LOG_W("Do not invoke standard input before initializing Compiler");
|
2021-11-11 07:33:43 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
2022-01-03 06:51:44 +08:00
|
|
|
LOG_W("%s: %s", __func__, _WARNING_WITHOUT_STDIO);
|
2021-11-11 07:33:43 +08:00
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2022-01-03 06:51:44 +08:00
|
|
|
#endif /* RT_USING_POSIX_STDIO */
|
2021-11-11 07:33:43 +08:00
|
|
|
}
|
|
|
|
else if (fd == STDOUT_FILENO || fd == STDERR_FILENO)
|
|
|
|
{
|
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2021-09-27 18:51:40 +08:00
|
|
|
}
|
2021-11-11 07:33:43 +08:00
|
|
|
|
2017-12-31 16:43:08 +08:00
|
|
|
rc = read(fd, buf, nbytes);
|
|
|
|
return rc;
|
2021-10-26 12:51:32 +08:00
|
|
|
#else
|
2021-12-29 20:48:36 +08:00
|
|
|
LOG_W("%s: %s", __func__, _WARNING_WITHOUT_FS);
|
2021-10-26 12:51:32 +08:00
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2021-11-16 00:22:49 +08:00
|
|
|
#endif /* DFS_USING_POSIX */
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
2021-06-21 21:15:22 +08:00
|
|
|
int _rename_r(struct _reent *ptr, const char *old, const char *new)
|
2011-10-08 21:02:22 +08:00
|
|
|
{
|
2021-11-16 00:22:49 +08:00
|
|
|
#ifdef DFS_USING_POSIX
|
2017-12-31 16:43:08 +08:00
|
|
|
int rc;
|
|
|
|
rc = rename(old, new);
|
|
|
|
return rc;
|
2021-10-26 12:51:32 +08:00
|
|
|
#else
|
2021-12-29 20:48:36 +08:00
|
|
|
LOG_W("%s: %s", __func__, _WARNING_WITHOUT_FS);
|
2021-10-26 12:51:32 +08:00
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2021-11-16 00:22:49 +08:00
|
|
|
#endif /* DFS_USING_POSIX */
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
2021-06-21 21:15:22 +08:00
|
|
|
int _stat_r(struct _reent *ptr, const char *file, struct stat *pstat)
|
2011-10-08 21:02:22 +08:00
|
|
|
{
|
2021-11-16 00:22:49 +08:00
|
|
|
#ifdef DFS_USING_POSIX
|
2017-12-31 16:43:08 +08:00
|
|
|
int rc;
|
|
|
|
rc = stat(file, pstat);
|
|
|
|
return rc;
|
2021-10-26 12:51:32 +08:00
|
|
|
#else
|
2021-12-29 20:48:36 +08:00
|
|
|
LOG_W("%s: %s", __func__, _WARNING_WITHOUT_FS);
|
2021-02-21 18:20:45 +08:00
|
|
|
ptr->_errno = ENOTSUP;
|
2021-02-15 07:53:58 +08:00
|
|
|
return -1;
|
2021-11-16 00:22:49 +08:00
|
|
|
#endif /* DFS_USING_POSIX */
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
2021-10-26 12:51:32 +08:00
|
|
|
int _unlink_r(struct _reent *ptr, const char *file)
|
2011-10-08 21:02:22 +08:00
|
|
|
{
|
2021-11-16 00:22:49 +08:00
|
|
|
#ifdef DFS_USING_POSIX
|
2021-10-26 12:51:32 +08:00
|
|
|
return unlink(file);
|
|
|
|
#else
|
2021-12-29 20:48:36 +08:00
|
|
|
LOG_W("%s: %s", __func__, _WARNING_WITHOUT_FS);
|
2017-12-31 16:43:08 +08:00
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2021-11-16 00:22:49 +08:00
|
|
|
#endif /* DFS_USING_POSIX */
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
2021-06-21 21:15:22 +08:00
|
|
|
_ssize_t _write_r(struct _reent *ptr, int fd, const void *buf, size_t nbytes)
|
2011-10-08 21:02:22 +08:00
|
|
|
{
|
2021-11-16 00:22:49 +08:00
|
|
|
#ifdef DFS_USING_POSIX
|
2017-12-31 16:43:08 +08:00
|
|
|
_ssize_t rc;
|
2021-11-16 00:22:49 +08:00
|
|
|
#endif /* DFS_USING_POSIX */
|
2021-11-11 07:33:43 +08:00
|
|
|
|
|
|
|
if (fd == STDOUT_FILENO || fd == STDERR_FILENO)
|
2021-10-26 12:51:32 +08:00
|
|
|
{
|
2022-01-08 23:29:41 +08:00
|
|
|
#if defined(RT_USING_CONSOLE) && defined(RT_USING_DEVICE)
|
2021-10-26 12:51:32 +08:00
|
|
|
rt_device_t console;
|
|
|
|
|
|
|
|
console = rt_console_get_device();
|
|
|
|
if (console)
|
|
|
|
return rt_device_write(console, -1, buf, nbytes);
|
2021-11-11 07:33:43 +08:00
|
|
|
#else
|
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2022-01-08 23:29:41 +08:00
|
|
|
#endif /* defined(RT_USING_CONSOLE) && defined(RT_USING_DEVICE) */
|
2021-10-26 12:51:32 +08:00
|
|
|
}
|
2021-11-11 07:33:43 +08:00
|
|
|
else if (fd == STDIN_FILENO)
|
|
|
|
{
|
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-11-16 00:22:49 +08:00
|
|
|
#ifdef DFS_USING_POSIX
|
2021-11-11 07:33:43 +08:00
|
|
|
rc = write(fd, buf, nbytes);
|
|
|
|
return rc;
|
|
|
|
#else
|
2021-12-29 20:48:36 +08:00
|
|
|
LOG_W("%s: %s", __func__, _WARNING_WITHOUT_FS);
|
2021-10-26 12:51:32 +08:00
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2021-11-16 00:22:49 +08:00
|
|
|
#endif /* DFS_USING_POSIX */
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
2021-02-20 11:35:41 +08:00
|
|
|
/* for exit() and abort() */
|
2021-06-21 21:15:22 +08:00
|
|
|
__attribute__ ((noreturn)) void _exit (int status)
|
2011-10-08 21:02:22 +08:00
|
|
|
{
|
2021-02-17 23:50:12 +08:00
|
|
|
extern void __rt_libc_exit(int status);
|
|
|
|
__rt_libc_exit(status);
|
2021-02-17 00:18:49 +08:00
|
|
|
while(1);
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
2012-11-23 14:36:58 +08:00
|
|
|
|
2021-02-11 02:58:19 +08:00
|
|
|
/*
|
2021-02-22 16:30:10 +08:00
|
|
|
These functions are implemented and replaced by the 'common/time.c' file
|
2021-02-11 02:58:19 +08:00
|
|
|
int _gettimeofday_r(struct _reent *ptr, struct timeval *__tp, void *__tzp);
|
|
|
|
_CLOCK_T_ _times_r(struct _reent *ptr, struct tms *ptms);
|
|
|
|
*/
|