rt-thread-official/components/libc/compilers/newlib/syscalls.c

339 lines
6.8 KiB
C
Raw Normal View History

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 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
*/
#include <reent.h>
#include <rtthread.h>
2021-10-26 12:51:32 +08:00
#include <stdio.h>
#include <string.h>
#include <stddef.h>
2021-10-26 12:51:32 +08:00
#include <fcntl.h>
#include <unistd.h>
#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>
#endif /* RT_USING_MODULE */
2021-12-26 22:41:24 +08:00
#include <compiler_private.h>
#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)
{
void* result;
2022-06-23 14:38:26 +08:00
result = (void*)rt_malloc(size);
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)
{
void* result;
2022-06-23 14:38:26 +08:00
result = (void*)rt_realloc(old, newlen);
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)
{
void* result;
2022-06-23 14:38:26 +08:00
result = (void*)rt_calloc(size, len);
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)
{
2022-06-23 14:38:26 +08:00
rt_free(addr);
}
#else
2022-06-23 14:38:26 +08:00
void *_sbrk_r(struct _reent *ptr, ptrdiff_t incr)
{
2021-11-13 13:17:16 +08:00
LOG_E("Please enable RT_USING_HEAP");
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. */
}
/* Reentrant versions of system calls. */
#ifndef _REENT_ONLY
2022-06-23 14:38:26 +08:00
int *__errno(void)
{
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)
{
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 */
}
2021-06-21 21:15:22 +08:00
int _execve_r(struct _reent *ptr, const char * name, char *const *argv, char *const *env)
{
2017-12-31 16:43:08 +08:00
ptr->_errno = ENOTSUP;
return -1;
}
2021-06-21 21:15:22 +08:00
int _fcntl_r(struct _reent *ptr, int fd, int cmd, int arg)
{
2017-12-31 16:43:08 +08:00
ptr->_errno = ENOTSUP;
return -1;
}
2021-06-21 21:15:22 +08:00
int _fork_r(struct _reent *ptr)
{
2017-12-31 16:43:08 +08:00
ptr->_errno = ENOTSUP;
return -1;
}
2021-06-21 21:15:22 +08:00
int _fstat_r(struct _reent *ptr, int fd, struct stat *pstat)
{
2017-12-31 16:43:08 +08:00
ptr->_errno = ENOTSUP;
return -1;
}
2021-06-21 21:15:22 +08:00
int _isatty_r(struct _reent *ptr, int fd)
{
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;
}
}
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)
{
2017-12-31 16:43:08 +08:00
ptr->_errno = ENOTSUP;
return -1;
}
2021-06-21 21:15:22 +08:00
int _link_r(struct _reent *ptr, const char *old, const char *new)
{
2017-12-31 16:43:08 +08:00
ptr->_errno = ENOTSUP;
return -1;
}
2021-10-26 12:51:32 +08:00
int _wait_r(struct _reent *ptr, int *status)
{
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 */
}
2021-06-21 21:15:22 +08:00
int _mkdir_r(struct _reent *ptr, const char *name, int mode)
{
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 */
}
2021-06-21 21:15:22 +08:00
int _open_r(struct _reent *ptr, const char *file, int flags, int mode)
{
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 */
}
2021-06-21 21:15:22 +08:00
_ssize_t _read_r(struct _reent *ptr, int fd, void *buf, size_t nbytes)
{
2021-11-16 00:22:49 +08:00
#ifdef DFS_USING_POSIX
2017-12-31 16:43:08 +08:00
_ssize_t rc;
if (fd == STDIN_FILENO)
{
2022-01-03 06:51:44 +08:00
#ifdef RT_USING_POSIX_STDIO
if (libc_stdio_get_console() < 0)
{
2021-12-29 12:25:16 +08:00
LOG_W("Do not invoke standard input before initializing Compiler");
return 0;
}
#else
2022-01-03 06:51:44 +08:00
LOG_W("%s: %s", __func__, _WARNING_WITHOUT_STDIO);
ptr->_errno = ENOTSUP;
return -1;
2022-01-03 06:51:44 +08:00
#endif /* RT_USING_POSIX_STDIO */
}
else if (fd == STDOUT_FILENO || fd == STDERR_FILENO)
{
ptr->_errno = ENOTSUP;
return -1;
}
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 */
}
2021-06-21 21:15:22 +08:00
int _rename_r(struct _reent *ptr, const char *old, const char *new)
{
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 */
}
2021-06-21 21:15:22 +08:00
int _stat_r(struct _reent *ptr, const char *file, struct stat *pstat)
{
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 */
}
2021-10-26 12:51:32 +08:00
int _unlink_r(struct _reent *ptr, const char *file)
{
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 */
}
2021-06-21 21:15:22 +08:00
_ssize_t _write_r(struct _reent *ptr, int fd, const void *buf, size_t nbytes)
{
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 */
if (fd == STDOUT_FILENO || fd == STDERR_FILENO)
2021-10-26 12:51:32 +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);
#else
ptr->_errno = ENOTSUP;
return -1;
#endif /* defined(RT_USING_CONSOLE) && defined(RT_USING_DEVICE) */
2021-10-26 12:51:32 +08:00
}
else if (fd == STDIN_FILENO)
{
ptr->_errno = ENOTSUP;
return -1;
}
2021-11-16 00:22:49 +08:00
#ifdef DFS_USING_POSIX
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 */
}
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)
{
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);
}
/*
2021-02-22 16:30:10 +08:00
These functions are implemented and replaced by the 'common/time.c' file
int _gettimeofday_r(struct _reent *ptr, struct timeval *__tp, void *__tzp);
_CLOCK_T_ _times_r(struct _reent *ptr, struct tms *ptms);
*/