1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
/* getenv_s( size_t *, char *, rsize_t, const char * )
This file is part of the Public Domain C Library (PDCLib).
Permission is granted to use, modify, and / or redistribute at will.
*/
/* This is an example implementation of getenv() fit for use with POSIX kernels.
*/
#define __STDC_WANT_LIB_EXT1__ 1
#include <string.h>
#include <stdint.h>
#include <stdlib.h>
#ifndef REGTEST
extern char ** environ;
/* The standard states (7.22.4.6 (3), "the implementation shall behave
as if no library function calls the getenv function." That is,
however, in context of the previous paragraph stating that getenv
"need not avoid data races with other threads of execution that
modify the environment list".
PDCLib does not provide means of modifying the environment list.
*/
errno_t getenv_s( size_t * _PDCLIB_restrict len, char * _PDCLIB_restrict value, rsize_t maxsize, const char * _PDCLIB_restrict name )
{
size_t nlen;
size_t index = 0;
size_t vlen = 0;
char const * environ_value = "";
errno_t rc = -1;
if ( name == NULL || maxsize == 0 || maxsize > RSIZE_MAX || value == NULL )
{
_PDCLIB_constraint_handler( _PDCLIB_CONSTRAINT_VIOLATION( _PDCLIB_EINVAL ) );
return _PDCLIB_EINVAL;
}
nlen = strlen( name );
while ( environ[ index ] != NULL )
{
if ( strncmp( environ[ index ], name, nlen ) == 0 )
{
environ_value = environ[ index ] + nlen + 1;
vlen = strlen( environ_value );
rc = 0;
break;
}
index++;
}
if ( len != NULL )
{
*len = vlen;
}
if ( vlen < maxsize )
{
strcpy( value, environ_value );
}
return rc;
}
#endif
#ifdef TEST
#include "_PDCLIB_test.h"
#if ! defined( REGTEST ) || defined( __STDC_LIB_EXT1__ )
static int HANDLER_CALLS = 0;
static void test_handler( const char * _PDCLIB_restrict msg, void * _PDCLIB_restrict ptr, errno_t error )
{
++HANDLER_CALLS;
}
#endif
int main( void )
{
#if ! defined( REGTEST ) || defined( __STDC_LIB_EXT1__ )
size_t len;
char value[20];
set_constraint_handler_s( test_handler );
TESTCASE( getenv_s( &len, value, 20, "SHELL" ) == 0 );
TESTCASE( strcmp( value, "/bin/bash" ) == 0 );
/* TESTCASE( strcmp( value, "/bin/sh" ) == 0 ); */
/* constraint violations */
TESTCASE( getenv_s( &len, NULL, 20, "SHELL" ) != 0 );
TESTCASE( getenv_s( &len, value, 0, "SHELL" ) != 0 );
TESTCASE( getenv_s( &len, value, RSIZE_MAX + 1, "SHELL" ) != 0 );
TESTCASE( getenv_s( &len, value, 20, NULL ) != 0 );
/* non-existing (hopefully), != 0 but not constraint violation */
TESTCASE( getenv_s( &len, value, 20, "supercalifragilisticexpialidocius" ) != 0 );
TESTCASE( HANDLER_CALLS == 4 );
#endif
return TEST_RESULTS;
}
#endif
|