| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342 | /* * Copyright (c) 2006-2021, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date           Author       Notes * 2012-11-23     Yihui        The first version * 2013-11-24     aozima       fixed _sys_read()/_sys_write() issues. * 2014-08-03     bernard      If using msh, use system() implementation *                             in msh. * 2020-08-05     Meco Man     fixed _sys_flen() compiling-warning when *                             RT_USING_DFS is not defined * 2020-02-13     Meco Man     re-implement exit() and abort() * 2020-02-14     Meco Man     implement _sys_tmpnam() */#include <string.h>#include <rt_sys.h>#include <rtthread.h>#include "libc.h"#include <fcntl.h>#include <unistd.h>#include <sys/stat.h>#define DBG_TAG    "armlibc.syscalls"#define DBG_LVL    DBG_INFO#include <rtdbg.h>#ifdef __CLANG_ARM__asm(".global __use_no_semihosting\n\t");#else#pragma import(__use_no_semihosting_swi)#endif/* Standard IO device handles. */#define STDIN       0#define STDOUT      1#define STDERR      2/* Standard IO device name defines. */const char __stdin_name[]  = "STDIN";const char __stdout_name[] = "STDOUT";const char __stderr_name[] = "STDERR";/** * required by fopen() and freopen(). * * @param name - file name with path. * @param openmode - a bitmap hose bits mostly correspond directly to *                     the ISO mode specification. * @return  -1 if an error occurs. */FILEHANDLE _sys_open(const char *name, int openmode){#ifdef RT_USING_POSIX    int fd;    int mode = O_RDONLY;#endif    /* Register standard Input Output devices. */    if (strcmp(name, __stdin_name) == 0)        return (STDIN);    if (strcmp(name, __stdout_name) == 0)        return (STDOUT);    if (strcmp(name, __stderr_name) == 0)        return (STDERR);#ifndef RT_USING_POSIX    return 0; /* error */#else    /* Correct openmode from fopen to open */    if (openmode & OPEN_PLUS)    {        if (openmode & OPEN_W)        {            mode |= (O_RDWR | O_TRUNC | O_CREAT);        }        else if (openmode & OPEN_A)        {            mode |= (O_RDWR | O_APPEND | O_CREAT);        }        else            mode |= O_RDWR;    }    else    {        if (openmode & OPEN_W)        {            mode |= (O_WRONLY | O_TRUNC | O_CREAT);        }        else if (openmode & OPEN_A)        {            mode |= (O_WRONLY | O_APPEND | O_CREAT);        }    }    fd = open(name, mode, 0);    if (fd < 0)        return 0; /* error */    else        return fd;#endif /* RT_USING_POSIX */}int _sys_close(FILEHANDLE fh){#ifdef RT_USING_POSIX    if (fh <= STDERR)        return 0; /* error */    return close(fh);#else    return 0;#endif /* RT_USING_POSIX */}/* * Read from a file. Can return: *  - zero if the read was completely successful *  - the number of bytes _not_ read, if the read was partially successful *  - the number of bytes not read, plus the top bit set (0x80000000), if *    the read was partially successful due to end of file *  - -1 if some error other than EOF occurred * * It is also legal to signal EOF by returning no data but * signalling no error (i.e. the top-bit-set mechanism need never * be used). * * So if (for example) the user is trying to read 8 bytes at a time * from a file in which only 5 remain, this routine can do three * equally valid things: * *  - it can return 0x80000003 (3 bytes not read due to EOF) *  - OR it can return 3 (3 bytes not read), and then return *    0x80000008 (8 bytes not read due to EOF) on the next attempt *  - OR it can return 3 (3 bytes not read), and then return *    8 (8 bytes not read, meaning 0 read, meaning EOF) on the next *    attempt * * `mode' exists for historical reasons and must be ignored. */int _sys_read(FILEHANDLE fh, unsigned char *buf, unsigned len, int mode){#ifdef RT_USING_POSIX    int size;    if (fh == STDIN)    {        if (libc_stdio_get_console() < 0)        {            LOG_W("Do not invoke standard output before initializing libc");            return 0;        }        size = read(STDIN_FILENO, buf, len);        return len - size;    }    else if ((fh == STDOUT) || (fh == STDERR))    {        return 0; /* error */    }    size = read(fh, buf, len);    if (size >= 0)        return len - size;    else        return 0; /* error */#else    return 0; /* error */#endif /* RT_USING_POSIX */}/* * Write to a file. Returns 0 on success, negative on error, and * the number of characters _not_ written on partial success. * `mode' exists for historical reasons and must be ignored. */int _sys_write(FILEHANDLE fh, const unsigned char *buf, unsigned len, int mode){#ifdef RT_USING_POSIX    int size;#endif /* RT_USING_POSIX */    if ((fh == STDOUT) || (fh == STDERR))    {#ifdef RT_USING_POSIX        if (libc_stdio_get_console() < 0)        {            LOG_W("Do not invoke standard input before initializing libc");            return 0;        }        size = write(STDOUT_FILENO, buf, len);        return len - size;#elif defined(RT_USING_CONSOLE)        if (rt_console_get_device())        {            rt_device_write(rt_console_get_device(), -1, buf, len);        }        return 0; /* error */#endif /* RT_USING_POSIX */    }    else if (fh == STDIN)    {        return 0; /* error */    }#ifdef RT_USING_POSIX    size = write(fh, buf, len);    if (size >= 0)        return len - size;    else        return 0; /* error */#else    return 0;#endif /* RT_USING_POSIX */}/* * Move the file position to a given offset from the file start. * Returns >=0 on success, <0 on failure. */int _sys_seek(FILEHANDLE fh, long pos){#ifdef RT_USING_POSIX    if (fh < STDERR)        return 0; /* error */    /* position is relative to the start of file fh */    return lseek(fh, pos, 0);#else    return 0; /* error */#endif /* RT_USING_POSIX */}/** * used by tmpnam() or tmpfile() */int _sys_tmpnam(char *name, int fileno, unsigned maxlength){    rt_snprintf(name, maxlength, "tem%03d", fileno);    return 1;}char *_sys_command_string(char *cmd, int len){    /* no support */    return RT_NULL;}/* This function writes a character to the console. */void _ttywrch(int ch){#ifdef RT_USING_CONSOLE    char c;    c = (char)ch;    rt_kprintf(&c);#endif /* RT_USING_CONSOLE */}/* for exit() and abort() */RT_WEAK void _sys_exit(int return_code){    extern void __rt_libc_exit(int status);    __rt_libc_exit(return_code);    while(1);}/** * return current length of file. * * @param fh - file handle * @return file length, or -1 on failed */long _sys_flen(FILEHANDLE fh){#ifdef RT_USING_POSIX    struct stat stat;    if (fh < STDERR)        return 0; /* error */    fstat(fh, &stat);    return stat.st_size;#else    return 0;#endif /* RT_USING_POSIX */}int _sys_istty(FILEHANDLE fh){    if((STDIN <= fh) && (fh <= STDERR))        return 1;    else        return 0;}int remove(const char *filename){#ifdef RT_USING_POSIX    return unlink(filename);#else    return 0; /* error */#endif /* RT_USING_POSIX */}#ifdef __MICROLIB#include <stdio.h>int fputc(int c, FILE *f){#ifdef RT_USING_CONSOLE    char ch[2] = {0};    ch[0] = c;    rt_kprintf(&ch[0]);    return 1;#else    return 0; /* error */#endif /* RT_USING_CONSOLE */}int fgetc(FILE *f){#ifdef RT_USING_POSIX    char ch;    if (libc_stdio_get_console() < 0)    {        LOG_W("Do not invoke standard output before initializing libc");        return 0;    }    if(read(STDIN_FILENO, &ch, 1) == 1)        return ch;#endif /* RT_USING_POSIX */    return 0; /* error */}#endif /* __MICROLIB */
 |