X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffopen.c;h=bc9fab4183b42f9b73f2136af778588ac5aa00d4;hb=55cf35957bf8dec0a489ba758c02c83303a5eb50;hp=d181cc1f876ded1362cc297e8c2fad923e67ae64;hpb=566bfcc6924abd9fccbd97fa8207711e899dd0bc;p=pdclib diff --git a/functions/stdio/fopen.c b/functions/stdio/fopen.c index d181cc1..bc9fab4 100644 --- a/functions/stdio/fopen.c +++ b/functions/stdio/fopen.c @@ -11,43 +11,65 @@ #ifndef REGTEST #include <_PDCLIB_glue.h> +#include -/* FIXME: This approach is a possible attack vector. */ -struct _PDCLIB_file_t * _PDCLIB_filelist = NULL; +extern struct _PDCLIB_file_t * _PDCLIB_filelist; struct _PDCLIB_file_t * fopen( const char * _PDCLIB_restrict filename, const char * _PDCLIB_restrict mode ) { struct _PDCLIB_file_t * rc; + size_t filename_len; if ( mode == NULL || filename == NULL || filename[0] == '\0' ) { /* Mode or filename invalid */ return NULL; } - if ( ( rc = calloc( 1, sizeof( struct _PDCLIB_file_t ) ) ) == NULL ) + /* To reduce the number of malloc calls, all data fields are concatenated: + * the FILE structure itself, + * ungetc buffer, + * filename buffer, + * data buffer. + Data buffer comes last because it might change in size ( setvbuf() ). + */ + filename_len = strlen( filename ) + 1; + if ( ( rc = calloc( 1, sizeof( struct _PDCLIB_file_t ) + _PDCLIB_UNGETCBUFSIZE + filename_len + BUFSIZ ) ) == NULL ) { - /* no memory for another FILE */ + /* no memory */ + return NULL; + } + if ( ( rc->status = _PDCLIB_filemode( mode ) ) == 0 ) + { + /* invalid mode */ + free( rc ); return NULL; } - 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, and mark as internal. TODO: Check for unbuffered */ - if ( ( rc->buffer = malloc( BUFSIZ ) ) == NULL ) goto fail; + if ( rc->handle == _PDCLIB_NOHANDLE ) + { + /* OS open() failed */ + free( rc ); + return NULL; + } + /* Setting pointers into the memory block allocated above */ + rc->ungetbuf = (unsigned char *)rc + sizeof( struct _PDCLIB_file_t ); + rc->filename = (char *)rc->ungetbuf + _PDCLIB_UNGETCBUFSIZE; + rc->buffer = rc->filename + filename_len; + /* Copying filename to FILE structure */ + strcpy( rc->filename, filename ); + /* Initializing the rest of the structure */ rc->bufsize = BUFSIZ; rc->bufidx = 0; + rc->ungetidx = 0; /* Setting buffer to _IOLBF because "when opened, a stream is fully buffered if and only if it can be determined not to refer to an interactive device." */ - rc->status |= ( _PDCLIB_LIBBUFFER | _PDCLIB_VIRGINSTR /* | _IOLBF */ ); /* FIXME: Uncommenting the _IOLBF here breaks output. */ + rc->status |= _IOLBF; /* TODO: Setting mbstate */ + /* Adding to list of open files */ + rc->next = _PDCLIB_filelist; + _PDCLIB_filelist = rc; return rc; -fail: - free( rc ); - return NULL; } #endif @@ -61,21 +83,16 @@ int main( void ) my system is at once less forgiving (segfaults on mode NULL) and more forgiving (accepts undefined modes). */ -#ifndef REGTEST - TESTCASE( fopen( NULL, NULL ) == NULL ); -#endif + remove( "testing/testfile" ); + TESTCASE_NOREG( fopen( NULL, NULL ) == NULL ); TESTCASE( fopen( NULL, "w" ) == NULL ); -#ifndef REGTEST - TESTCASE( fopen( "", NULL ) == NULL ); -#endif + TESTCASE_NOREG( fopen( "", NULL ) == NULL ); TESTCASE( fopen( "", "w" ) == NULL ); TESTCASE( fopen( "foo", "" ) == NULL ); -#ifndef REGTEST - TESTCASE( fopen( "testfile", "wq" ) == NULL ); /* Undefined mode */ - TESTCASE( fopen( "testfile", "wr" ) == NULL ); /* Undefined mode */ -#endif - TESTCASE( fopen( "testfile", "w" ) != NULL ); - system( "rm testfile" ); + TESTCASE_NOREG( fopen( "testing/testfile", "wq" ) == NULL ); /* Undefined mode */ + TESTCASE_NOREG( fopen( "testing/testfile", "wr" ) == NULL ); /* Undefined mode */ + TESTCASE( fopen( "testing/testfile", "w" ) != NULL ); + remove( "testing/testfile" ); return TEST_RESULTS; }