X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffopen.c;h=14ce3a8f57b2fe8911baba2c941f0529c76050a0;hb=d9e48b611b63bcfc55727463cb9d9d0e87a7a405;hp=ad8d8765716a69752b27c15a911a08d0e9aca4d9;hpb=519443d45a417a108fc47caaf790efc963d8d3f6;p=pdclib diff --git a/functions/stdio/fopen.c b/functions/stdio/fopen.c index ad8d876..14ce3a8 100644 --- a/functions/stdio/fopen.c +++ b/functions/stdio/fopen.c @@ -12,76 +12,33 @@ #ifndef REGTEST #include <_PDCLIB_glue.h> -static FILE * _PDCLIB_filelist = NULL; +/* FIXME: This approach is a possible attack vector. */ +struct _PDCLIB_file_t * _PDCLIB_filelist = NULL; -/* Helper function that parses the C-style mode string passed to fopen() into - the PDCLib flags.FREAD, FWRITE, FAPPEND, FRW (read-write) and FBIN ( - mode). -*/ -static unsigned int filemode( char const * const mode ) +struct _PDCLIB_file_t * fopen( const char * _PDCLIB_restrict filename, const char * _PDCLIB_restrict mode ) { - int rc = 0; - switch ( mode[0] ) - { - case 'r': - rc |= _PDCLIB_FREAD; - break; - case 'w': - rc |= _PDCLIB_FWRITE; - break; - case 'a': - rc |= _PDCLIB_FAPPEND; - break; - default: - /* Other than read, write, or append - invalid */ - return 0; - } - for ( size_t i = 1; i < 4; ++i ) - { - switch ( mode[1] ) - { - case '+': - if ( rc & _PDCLIB_FRW ) return 0; /* Duplicates are invalid */ - rc |= _PDCLIB_FRW; - break; - case 'b': - if ( rc & _PDCLIB_FBIN ) return 0; /* Duplicates are invalid */ - rc |= _PDCLIB_FBIN; - break; - case '\0': - /* End of mode */ - return rc; - default: - /* Other than read/write or binary - invalid. */ - return 0; - } - } - /* Longer than three chars - invalid. */ - return 0; -} - -FILE * fopen( const char * _PDCLIB_restrict filename, const char * _PDCLIB_restrict mode ) -{ - FILE * rc; + struct _PDCLIB_file_t * rc; if ( mode == NULL || filename == NULL || filename[0] == '\0' ) { /* Mode or filename invalid */ return NULL; } - if ( ( rc = calloc( 1, sizeof( FILE ) ) ) == NULL ) + if ( ( rc = calloc( 1, sizeof( struct _PDCLIB_file_t ) ) ) == NULL ) { /* no memory for another FILE */ return NULL; } - if ( ( rc->status = filemode( mode ) ) == 0 ) goto fail; /* invalid mode */ + if ( ( rc->status = _PDCLIB_filemode( mode ) ) == 0 ) goto fail; /* invalid mode */ rc->handle = _PDCLIB_open( filename, rc->status ); if ( rc->handle == _PDCLIB_NOHANDLE ) goto fail; /* OS open() failed */ - /* Adding to list of open files */ rc->next = _PDCLIB_filelist; _PDCLIB_filelist = rc; - /* Setting buffer. TODO: Check for unbuffered? */ + /* Setting buffer, and mark as internal. TODO: Check for unbuffered */ if ( ( rc->buffer = malloc( BUFSIZ ) ) == NULL ) goto fail; + rc->bufsize = BUFSIZ; + rc->bufidx = 0; + rc->status |= ( _PDCLIB_LIBBUFFER | _PDCLIB_VIRGINSTR ); /* TODO: Setting mbstate */ return rc; fail: @@ -96,7 +53,15 @@ fail: int main( void ) { - TESTCASE( NO_TESTDRIVER ); + TESTCASE( fopen( NULL, NULL ) == NULL ); + TESTCASE( fopen( NULL, "w" ) == NULL ); + TESTCASE( fopen( "", NULL ) == NULL ); + TESTCASE( fopen( "", "w" ) == NULL ); + TESTCASE( fopen( "foo", "" ) == NULL ); + TESTCASE( fopen( "testfile", "wq" ) == NULL ); /* Illegal mode */ + TESTCASE( fopen( "testfile", "wr" ) == NULL ); /* Illegal mode */ + TESTCASE( fopen( "testfile", "w" ) != NULL ); + system( "rm testfile" ); return TEST_RESULTS; }