2018-10-14 19:28:18 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* 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()
|
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 <sys/errno.h>
|
|
|
|
#include <sys/time.h>
|
2018-12-28 21:41:01 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2011-10-08 21:02:22 +08:00
|
|
|
#include <rtthread.h>
|
|
|
|
|
2014-07-31 09:30:18 +08:00
|
|
|
#ifdef RT_USING_DFS
|
|
|
|
#include <dfs_posix.h>
|
|
|
|
#endif
|
|
|
|
|
2018-08-30 20:27:45 +08:00
|
|
|
#ifdef RT_USING_MODULE
|
|
|
|
#include <dlmodule.h>
|
|
|
|
#endif
|
|
|
|
|
2011-10-08 21:02:22 +08:00
|
|
|
/* Reentrant versions of system calls. */
|
|
|
|
|
2019-04-11 14:21:05 +08:00
|
|
|
#ifndef _REENT_ONLY
|
|
|
|
int *
|
|
|
|
__errno ()
|
|
|
|
{
|
|
|
|
return _rt_errno();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-10-08 21:02:22 +08:00
|
|
|
int
|
|
|
|
_close_r(struct _reent *ptr, int fd)
|
|
|
|
{
|
2012-02-18 00:26:49 +08:00
|
|
|
#ifndef RT_USING_DFS
|
2017-12-31 16:43:08 +08:00
|
|
|
return 0;
|
2012-02-18 00:26:49 +08:00
|
|
|
#else
|
2017-12-31 16:43:08 +08:00
|
|
|
return close(fd);
|
2012-02-18 00:26:49 +08:00
|
|
|
#endif
|
2011-10-08 21:02: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
|
|
|
/* return "not supported" */
|
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_fcntl_r(struct _reent *ptr, int fd, int cmd, int arg)
|
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
/* return "not supported" */
|
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_fork_r(struct _reent *ptr)
|
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
/* return "not supported" */
|
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_fstat_r(struct _reent *ptr, int fd, struct stat *pstat)
|
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
/* return "not supported" */
|
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_getpid_r(struct _reent *ptr)
|
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
return 0;
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_isatty_r(struct _reent *ptr, int fd)
|
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
if (fd >=0 && fd < 3) return 1;
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2017-12-31 16:43:08 +08:00
|
|
|
/* return "not supported" */
|
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_kill_r(struct _reent *ptr, int pid, int sig)
|
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
/* return "not supported" */
|
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_link_r(struct _reent *ptr, const char *old, const char *new)
|
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
/* return "not supported" */
|
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
_off_t
|
|
|
|
_lseek_r(struct _reent *ptr, int fd, _off_t pos, int whence)
|
|
|
|
{
|
2012-11-24 16:02:56 +08:00
|
|
|
#ifndef RT_USING_DFS
|
2017-12-31 16:43:08 +08:00
|
|
|
return 0;
|
2012-02-18 00:26:49 +08:00
|
|
|
#else
|
2017-12-31 16:43:08 +08:00
|
|
|
_off_t rc;
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2017-12-31 16:43:08 +08:00
|
|
|
rc = lseek(fd, pos, whence);
|
|
|
|
return rc;
|
2012-02-18 00:26:49 +08:00
|
|
|
#endif
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_mkdir_r(struct _reent *ptr, const char *name, int mode)
|
|
|
|
{
|
2012-02-18 00:26:49 +08:00
|
|
|
#ifndef RT_USING_DFS
|
2017-12-31 16:43:08 +08:00
|
|
|
return 0;
|
2012-02-18 00:26:49 +08:00
|
|
|
#else
|
2017-12-31 16:43:08 +08:00
|
|
|
int rc;
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2017-12-31 16:43:08 +08:00
|
|
|
rc = mkdir(name, mode);
|
|
|
|
return rc;
|
2012-02-18 00:26:49 +08:00
|
|
|
#endif
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_open_r(struct _reent *ptr, const char *file, int flags, int mode)
|
|
|
|
{
|
2012-02-18 00:26:49 +08:00
|
|
|
#ifndef RT_USING_DFS
|
2017-12-31 16:43:08 +08:00
|
|
|
return 0;
|
2012-02-18 00:26:49 +08:00
|
|
|
#else
|
2017-12-31 16:43:08 +08:00
|
|
|
int rc;
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2017-12-31 16:43:08 +08:00
|
|
|
rc = open(file, flags, mode);
|
|
|
|
return rc;
|
2012-02-18 00:26:49 +08:00
|
|
|
#endif
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
2018-06-10 17:56:02 +08:00
|
|
|
_ssize_t
|
2011-10-08 21:02:22 +08:00
|
|
|
_read_r(struct _reent *ptr, int fd, void *buf, size_t nbytes)
|
|
|
|
{
|
2012-02-18 00:26:49 +08:00
|
|
|
#ifndef RT_USING_DFS
|
2017-12-31 16:43:08 +08:00
|
|
|
return 0;
|
2012-02-18 00:26:49 +08:00
|
|
|
#else
|
2017-12-31 16:43:08 +08:00
|
|
|
_ssize_t rc;
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2017-12-31 16:43:08 +08:00
|
|
|
rc = read(fd, buf, nbytes);
|
|
|
|
return rc;
|
2012-02-18 00:26:49 +08:00
|
|
|
#endif
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_rename_r(struct _reent *ptr, const char *old, const char *new)
|
|
|
|
{
|
2012-02-18 00:26:49 +08:00
|
|
|
#ifndef RT_USING_DFS
|
2017-12-31 16:43:08 +08:00
|
|
|
return 0;
|
2012-02-18 00:26:49 +08:00
|
|
|
#else
|
2017-12-31 16:43:08 +08:00
|
|
|
int rc;
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2017-12-31 16:43:08 +08:00
|
|
|
rc = rename(old, new);
|
|
|
|
return rc;
|
2012-02-18 00:26:49 +08:00
|
|
|
#endif
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
_sbrk_r(struct _reent *ptr, ptrdiff_t incr)
|
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
/* no use this routine to get memory */
|
|
|
|
return RT_NULL;
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_stat_r(struct _reent *ptr, const char *file, struct stat *pstat)
|
|
|
|
{
|
2012-02-18 00:26:49 +08:00
|
|
|
#ifndef RT_USING_DFS
|
2017-12-31 16:43:08 +08:00
|
|
|
return 0;
|
2012-02-18 00:26:49 +08:00
|
|
|
#else
|
2017-12-31 16:43:08 +08:00
|
|
|
int rc;
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2017-12-31 16:43:08 +08:00
|
|
|
rc = stat(file, pstat);
|
|
|
|
return rc;
|
2012-02-18 00:26:49 +08:00
|
|
|
#endif
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_unlink_r(struct _reent *ptr, const char *file)
|
|
|
|
{
|
2012-02-18 00:26:49 +08:00
|
|
|
#ifndef RT_USING_DFS
|
2017-12-31 16:43:08 +08:00
|
|
|
return 0;
|
2012-02-18 00:26:49 +08:00
|
|
|
#else
|
2017-12-31 16:43:08 +08:00
|
|
|
int rc;
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2017-12-31 16:43:08 +08:00
|
|
|
rc = unlink(file);
|
|
|
|
return rc;
|
2012-02-18 00:26:49 +08:00
|
|
|
#endif
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_wait_r(struct _reent *ptr, int *status)
|
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
/* return "not supported" */
|
|
|
|
ptr->_errno = ENOTSUP;
|
|
|
|
return -1;
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
2012-06-30 09:52:48 +08:00
|
|
|
#ifdef RT_USING_DEVICE
|
2011-10-08 21:02:22 +08:00
|
|
|
_ssize_t
|
|
|
|
_write_r(struct _reent *ptr, int fd, const void *buf, size_t nbytes)
|
|
|
|
{
|
2017-10-15 22:41:59 +08:00
|
|
|
#ifndef RT_USING_DFS
|
2018-12-28 21:41:01 +08:00
|
|
|
if (fileno(stdout) == fd)
|
2017-12-31 16:43:08 +08:00
|
|
|
{
|
|
|
|
rt_device_t console;
|
2012-02-18 00:26:49 +08:00
|
|
|
|
2017-12-31 16:43:08 +08:00
|
|
|
console = rt_console_get_device();
|
|
|
|
if (console) return rt_device_write(console, -1, buf, nbytes);
|
|
|
|
}
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2017-10-15 22:41:59 +08:00
|
|
|
return 0;
|
|
|
|
|
2012-11-13 23:30:31 +08:00
|
|
|
#else
|
2017-12-31 16:43:08 +08:00
|
|
|
_ssize_t rc;
|
2017-10-15 22:41:59 +08:00
|
|
|
|
2017-12-31 16:43:08 +08:00
|
|
|
rc = write(fd, buf, nbytes);
|
|
|
|
return rc;
|
2012-11-13 23:30:31 +08:00
|
|
|
#endif
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
2012-06-30 09:52:48 +08:00
|
|
|
#endif
|
2011-10-08 21:02:22 +08:00
|
|
|
|
|
|
|
/* Memory routine */
|
|
|
|
void *
|
|
|
|
_malloc_r (struct _reent *ptr, size_t size)
|
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
void* result;
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2017-12-31 16:43:08 +08:00
|
|
|
result = (void*)rt_malloc (size);
|
|
|
|
if (result == RT_NULL)
|
|
|
|
{
|
|
|
|
ptr->_errno = ENOMEM;
|
|
|
|
}
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2017-12-31 16:43:08 +08:00
|
|
|
return result;
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
_realloc_r (struct _reent *ptr, void *old, size_t newlen)
|
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
void* result;
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2017-12-31 16:43:08 +08:00
|
|
|
result = (void*)rt_realloc (old, newlen);
|
|
|
|
if (result == RT_NULL)
|
|
|
|
{
|
|
|
|
ptr->_errno = ENOMEM;
|
|
|
|
}
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2017-12-31 16:43:08 +08:00
|
|
|
return result;
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void *_calloc_r (struct _reent *ptr, size_t size, size_t len)
|
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
void* result;
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2017-12-31 16:43:08 +08:00
|
|
|
result = (void*)rt_calloc (size, len);
|
|
|
|
if (result == RT_NULL)
|
|
|
|
{
|
|
|
|
ptr->_errno = ENOMEM;
|
|
|
|
}
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2017-12-31 16:43:08 +08:00
|
|
|
return result;
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
2018-06-10 17:56:02 +08:00
|
|
|
void
|
2011-10-08 21:02:22 +08:00
|
|
|
_free_r (struct _reent *ptr, void *addr)
|
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
rt_free (addr);
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-08-30 20:27:45 +08:00
|
|
|
exit (int status)
|
2011-10-08 21:02:22 +08:00
|
|
|
{
|
2021-02-13 13:16:17 +08:00
|
|
|
rt_thread_t self = rt_thread_self();
|
|
|
|
|
2012-11-23 14:36:58 +08:00
|
|
|
#ifdef RT_USING_MODULE
|
2018-08-30 20:27:45 +08:00
|
|
|
if (dlmodule_self())
|
2017-12-31 16:43:08 +08:00
|
|
|
{
|
2018-08-30 20:27:45 +08:00
|
|
|
dlmodule_exit(status);
|
2017-12-31 16:43:08 +08:00
|
|
|
}
|
2012-11-23 14:36:58 +08:00
|
|
|
#endif
|
2018-06-10 17:56:02 +08:00
|
|
|
|
2021-02-13 13:16:17 +08:00
|
|
|
if (self != RT_NULL)
|
|
|
|
{
|
|
|
|
rt_kprintf("thread:%-8.*s exit:%d!\n", RT_NAME_MAX, self->name, status);
|
|
|
|
rt_thread_suspend(self);
|
|
|
|
rt_schedule();
|
|
|
|
}
|
2021-02-13 13:23:18 +08:00
|
|
|
|
|
|
|
while(1); /* noreturn */
|
2011-10-08 21:02:22 +08:00
|
|
|
}
|
2012-11-23 14:36:58 +08:00
|
|
|
|
2018-06-10 17:56:02 +08:00
|
|
|
void
|
2012-11-23 14:36:58 +08:00
|
|
|
_system(const char *s)
|
|
|
|
{
|
|
|
|
/* not support this call */
|
|
|
|
return;
|
|
|
|
}
|
2015-09-21 18:00:38 +08:00
|
|
|
|
|
|
|
void __libc_init_array(void)
|
|
|
|
{
|
2017-12-31 16:43:08 +08:00
|
|
|
/* we not use __libc init_aray to initialize C++ objects */
|
2015-09-21 18:00:38 +08:00
|
|
|
}
|
2016-05-01 16:04:26 +08:00
|
|
|
|
|
|
|
void abort(void)
|
|
|
|
{
|
2021-02-13 13:16:17 +08:00
|
|
|
rt_thread_t self = rt_thread_self();
|
|
|
|
|
|
|
|
#ifdef RT_USING_MODULE
|
|
|
|
if (dlmodule_self())
|
2016-05-10 09:22:01 +08:00
|
|
|
{
|
2021-02-13 13:16:17 +08:00
|
|
|
dlmodule_exit(-1);
|
|
|
|
}
|
|
|
|
#endif
|
2016-05-10 09:22:01 +08:00
|
|
|
|
2021-02-13 13:16:17 +08:00
|
|
|
if (self != RT_NULL)
|
|
|
|
{
|
2016-05-10 09:22:01 +08:00
|
|
|
rt_kprintf("thread:%-8.*s abort!\n", RT_NAME_MAX, self->name);
|
|
|
|
rt_thread_suspend(self);
|
|
|
|
rt_schedule();
|
|
|
|
}
|
2021-02-13 13:23:18 +08:00
|
|
|
|
|
|
|
while(1); /* noreturn */
|
2016-05-01 16:04:26 +08:00
|
|
|
}
|
2019-09-26 11:27:37 +08:00
|
|
|
|
|
|
|
uid_t getuid(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
mode_t umask(mode_t mask)
|
|
|
|
{
|
|
|
|
return 022;
|
|
|
|
}
|
|
|
|
|
2019-09-26 14:34:59 +08:00
|
|
|
int flock(int fd, int operation)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2021-02-11 02:58:19 +08:00
|
|
|
|
|
|
|
/*
|
2021-02-11 03:03:59 +08:00
|
|
|
These functions will be 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);
|
|
|
|
*/
|