Merge pull request #54 from pali/master Correctly process and indicate errors
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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
diff --git a/dlfcn.c b/dlfcn.c
index 993808d..ec60423 100644
--- a/dlfcn.c
+++ b/dlfcn.c
@@ -72,34 +72,36 @@ static local_object *local_search( HMODULE hModule )
return NULL;
}
-static void local_add( HMODULE hModule )
+static BOOL local_add( HMODULE hModule )
{
local_object *pobject;
local_object *nobject;
if( hModule == NULL )
- return;
+ return TRUE;
pobject = local_search( hModule );
/* Do not add object again if it's already on the list */
if( pobject )
- return;
+ return TRUE;
for( pobject = &first_object; pobject->next; pobject = pobject->next );
nobject = (local_object*) malloc( sizeof( local_object ) );
- /* Should this be enough to fail local_add, and therefore also fail
- * dlopen?
- */
if( !nobject )
- return;
+ {
+ SetLastError( ERROR_NOT_ENOUGH_MEMORY );
+ return FALSE;
+ }
pobject->next = nobject;
nobject->next = NULL;
nobject->previous = pobject;
nobject->hModule = hModule;
+
+ return TRUE;
}
static void local_rem( HMODULE hModule )
@@ -240,51 +242,73 @@ void *dlopen( const char *file, int mode )
HANDLE hCurrentProc;
DWORD dwProcModsBefore, dwProcModsAfter;
char lpFileName[MAX_PATH];
- size_t i;
+ size_t i, len;
- /* MSDN says backslashes *must* be used instead of forward slashes. */
- for( i = 0 ; i < sizeof(lpFileName) - 1 ; i ++ )
+ len = strlen( file );
+
+ if( len >= sizeof( lpFileName ) )
{
- if( !file[i] )
- break;
- else if( file[i] == '/' )
- lpFileName[i] = '\\';
- else
- lpFileName[i] = file[i];
+ SetLastError( ERROR_FILENAME_EXCED_RANGE );
+ save_err_str( file );
+ hModule = NULL;
}
- lpFileName[i] = '\0';
+ else
+ {
+ /* MSDN says backslashes *must* be used instead of forward slashes. */
+ for( i = 0; i < len; i++ )
+ {
+ if( file[i] == '/' )
+ lpFileName[i] = '\\';
+ else
+ lpFileName[i] = file[i];
+ }
+ lpFileName[len] = '\0';
- hCurrentProc = GetCurrentProcess( );
+ hCurrentProc = GetCurrentProcess( );
- if( MyEnumProcessModules( hCurrentProc, NULL, 0, &dwProcModsBefore ) == 0 )
- dwProcModsBefore = 0;
+ if( MyEnumProcessModules( hCurrentProc, NULL, 0, &dwProcModsBefore ) == 0 )
+ dwProcModsBefore = 0;
- /* POSIX says the search path is implementation-defined.
- * LOAD_WITH_ALTERED_SEARCH_PATH is used to make it behave more closely
- * to UNIX's search paths (start with system folders instead of current
- * folder).
- */
- hModule = LoadLibraryExA(lpFileName, NULL,
- LOAD_WITH_ALTERED_SEARCH_PATH );
-
- if( MyEnumProcessModules( hCurrentProc, NULL, 0, &dwProcModsAfter ) == 0 )
- dwProcModsAfter = 0;
-
- /* If the object was loaded with RTLD_LOCAL, add it to list of local
- * objects, so that its symbols cannot be retrieved even if the handle for
- * the original program file is passed. POSIX says that if the same
- * file is specified in multiple invocations, and any of them are
- * RTLD_GLOBAL, even if any further invocations use RTLD_LOCAL, the
- * symbols will remain global. If number of loaded modules was not
- * changed after calling LoadLibraryEx(), it means that library was
- * already loaded.
- */
- if( !hModule )
- save_err_str( lpFileName );
- else if( (mode & RTLD_LOCAL) && dwProcModsBefore != dwProcModsAfter )
- local_add( hModule );
- else if( !(mode & RTLD_LOCAL) && dwProcModsBefore == dwProcModsAfter )
- local_rem( hModule );
+ /* POSIX says the search path is implementation-defined.
+ * LOAD_WITH_ALTERED_SEARCH_PATH is used to make it behave more closely
+ * to UNIX's search paths (start with system folders instead of current
+ * folder).
+ */
+ hModule = LoadLibraryExA( lpFileName, NULL, LOAD_WITH_ALTERED_SEARCH_PATH );
+
+ if( !hModule )
+ {
+ save_err_str( lpFileName );
+ }
+ else
+ {
+ if( MyEnumProcessModules( hCurrentProc, NULL, 0, &dwProcModsAfter ) == 0 )
+ dwProcModsAfter = 0;
+
+ /* If the object was loaded with RTLD_LOCAL, add it to list of local
+ * objects, so that its symbols cannot be retrieved even if the handle for
+ * the original program file is passed. POSIX says that if the same
+ * file is specified in multiple invocations, and any of them are
+ * RTLD_GLOBAL, even if any further invocations use RTLD_LOCAL, the
+ * symbols will remain global. If number of loaded modules was not
+ * changed after calling LoadLibraryEx(), it means that library was
+ * already loaded.
+ */
+ if( (mode & RTLD_LOCAL) && dwProcModsBefore != dwProcModsAfter )
+ {
+ if( !local_add( hModule ) )
+ {
+ save_err_str( lpFileName );
+ FreeLibrary( hModule );
+ hModule = NULL;
+ }
+ }
+ else if( !(mode & RTLD_LOCAL) && dwProcModsBefore == dwProcModsAfter )
+ {
+ local_rem( hModule );
+ }
+ }
+ }
}
/* Return to previous state of the error-mode bit flags. */
@@ -353,10 +377,17 @@ void *dlsym( void *handle, const char *name )
size_t sLen;
sLen = VirtualQueryEx( hCurrentProc, _ReturnAddress(), &info, sizeof( info ) );
if( sLen != sizeof( info ) )
+ {
+ if( sLen != 0 )
+ SetLastError( ERROR_INVALID_PARAMETER );
goto end;
+ }
hCaller = (HMODULE) info.AllocationBase;
- if(!hCaller)
+ if( !hCaller )
+ {
+ SetLastError( ERROR_INVALID_PARAMETER );
goto end;
+ }
}
if( handle != RTLD_NEXT )
@@ -414,6 +445,8 @@ void *dlsym( void *handle, const char *name )
end:
if( symbol == NULL )
{
+ if( GetLastError() == 0 )
+ SetLastError( ERROR_PROC_NOT_FOUND );
save_err_str( name );
}
diff --git a/test.c b/test.c
index 814aca1..0070f8c 100644
--- a/test.c
+++ b/test.c
@@ -83,6 +83,11 @@ int main()
int (*nonexistentfunction)( void );
int ret;
HMODULE library3;
+ char toolongfile[32767];
+ DWORD code;
+ char nonlibraryfile[MAX_PATH];
+ HANDLE tempfile;
+ DWORD dummy;
#ifdef _DEBUG
_CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
@@ -93,6 +98,112 @@ int main()
_CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDOUT);
#endif
+ ret = GetTempPathA( sizeof( nonlibraryfile ) - sizeof( "temp.dll" ), nonlibraryfile );
+ if( ret == 0 || ret > sizeof( nonlibraryfile ) - sizeof( "temp.dll" ) )
+ {
+ printf( "ERROR\tGetTempPath failed\n" );
+ RETURN_ERROR;
+ }
+
+ memcpy( nonlibraryfile + ret, "temp.dll", sizeof( "temp.dll" ) );
+
+ tempfile = CreateFileA( (LPCSTR) nonlibraryfile, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, NULL );
+ if( tempfile == INVALID_HANDLE_VALUE )
+ {
+ printf( "ERROR\tCannot create temporary file %s: %lu\n", nonlibraryfile, (unsigned long)GetLastError( ) );
+ RETURN_ERROR;
+ }
+
+ WriteFile( tempfile, "test content", 12, &dummy, NULL );
+
+ CloseHandle( tempfile );
+
+ library3 = LoadLibraryA( nonlibraryfile );
+ code = GetLastError( );
+ if( library3 )
+ {
+ printf( "ERROR\tNon-library file %s was opened via WINAPI\n", nonlibraryfile );
+ CloseHandle( library3 );
+ DeleteFileA( nonlibraryfile );
+ RETURN_ERROR;
+ }
+ else if( code != ERROR_BAD_EXE_FORMAT )
+ {
+ printf( "ERROR\tNon-library file %s was processed via WINAPI: %lu\n", nonlibraryfile, (unsigned long)code );
+ DeleteFileA( nonlibraryfile );
+ RETURN_ERROR;
+ }
+ else
+ printf( "SUCCESS\tCould not open non-library file %s via WINAPI: %lu\n", nonlibraryfile, (unsigned long)code );
+
+ library = dlopen( nonlibraryfile, RTLD_GLOBAL );
+ if( library )
+ {
+ printf( "ERROR\tNon-library file %s was opened via dlopen\n", nonlibraryfile );
+ dlclose( library );
+ DeleteFileA( nonlibraryfile );
+ RETURN_ERROR;
+ }
+ error = dlerror( );
+ if( !error )
+ {
+ printf( "ERROR\tNo error from dlopen for non-library file\n" );
+ DeleteFileA( nonlibraryfile );
+ RETURN_ERROR;
+ }
+ else
+ printf( "SUCCESS\tCould not open non-library file %s: %s\n", nonlibraryfile, error );
+
+ DeleteFileA( nonlibraryfile );
+
+ library = dlopen( "nonexistentfile.dll", RTLD_GLOBAL );
+ if( library )
+ {
+ printf( "ERROR\tNon-existent file nonexistentfile.dll was opened via dlopen\n" );
+ RETURN_ERROR;
+ }
+ error = dlerror( );
+ if( !error )
+ {
+ printf( "ERROR\tNo error from dlopen for non-existent file\n" );
+ RETURN_ERROR;
+ }
+ else
+ printf( "SUCCESS\tCould not open non-existent file nonexistentfile.dll: %s\n", error );
+
+ memset( toolongfile, 'X', sizeof( toolongfile ) - 5 );
+ memcpy( toolongfile + sizeof( toolongfile ) - 5, ".dll", 5 );
+
+ library = dlopen( toolongfile, RTLD_GLOBAL );
+ if( library )
+ {
+ printf( "ERROR\tFile with too long file name was opened via dlopen\n" );
+ RETURN_ERROR;
+ }
+ error = dlerror( );
+ if( !error )
+ {
+ printf( "ERROR\tNo error from dlopen for file with too long file name\n" );
+ RETURN_ERROR;
+ }
+ else
+ printf( "SUCCESS\tCould not open file with too long file name: %s\n", error );
+
+ library3 = LoadLibraryA( toolongfile );
+ code = GetLastError( );
+ if( library3 )
+ {
+ printf( "ERROR\tFile with too long file name was opened via WINAPI\n" );
+ RETURN_ERROR;
+ }
+ else if( code != ERROR_FILENAME_EXCED_RANGE )
+ {
+ printf( "ERROR\tFile with too long file name was processed via WINAPI: %lu\n", (unsigned long)code );
+ RETURN_ERROR;
+ }
+ else
+ printf( "SUCCESS\tCould not open file with too long file name via WINAPI: %lu\n", (unsigned long)code );
+
library2 = dlopen( "testdll2.dll", RTLD_GLOBAL );
if( !library2 )
{
@@ -201,11 +312,14 @@ int main()
CLOSE_GLOBAL;
RETURN_ERROR;
}
- else {
- error = dlerror( );
- printf( "SUCCESS\tCould not get nonexistent symbol from library handle: %s\n",
- error ? error : "" );
+ error = dlerror( );
+ if( !error )
+ {
+ printf( "ERROR\tNo error from dlsym for nonexistent symbol\n" );
+ RETURN_ERROR;
}
+ else
+ printf( "SUCCESS\tCould not get nonexistent symbol from library handle: %s\n", error );
function = dlsym( global, "function" );
if( !function )
@@ -231,11 +345,14 @@ int main()
CLOSE_GLOBAL;
RETURN_ERROR;
}
- else {
- error = dlerror( );
- printf( "SUCCESS\tCould not get nonexistent symbol from global handle: %s\n",
- error ? error : "" );
+ error = dlerror( );
+ if( !error )
+ {
+ printf( "ERROR\tNo error from dlsym for nonexistent symbol\n" );
+ RETURN_ERROR;
}
+ else
+ printf( "SUCCESS\tCould not get nonexistent symbol from global handle: %s\n", error );
ret = dlclose( library );
if( ret )
@@ -293,11 +410,14 @@ int main()
CLOSE_GLOBAL;
RETURN_ERROR;
}
- else {
- error = dlerror( );
- printf( "SUCCESS\tCould not get nonexistent symbol from library handle: %s\n",
- error ? error : "" );
+ error = dlerror( );
+ if( !error )
+ {
+ printf( "ERROR\tNo error from dlsym for nonexistent symbol\n" );
+ RETURN_ERROR;
}
+ else
+ printf( "SUCCESS\tCould not get nonexistent symbol from library handle: %s\n", error );
function = dlsym( global, "function" );
if( function )
@@ -321,11 +441,14 @@ int main()
CLOSE_GLOBAL;
RETURN_ERROR;
}
- else {
- error = dlerror( );
- printf( "SUCCESS\tDid not get nonexistent local symbol from global handle: %s\n",
- error ? error : "" );
+ error = dlerror( );
+ if( !error )
+ {
+ printf( "ERROR\tNo error from dlsym for nonexistent symbol\n" );
+ RETURN_ERROR;
}
+ else
+ printf( "SUCCESS\tDid not get nonexistent local symbol from global handle: %s\n", error );
library = dlopen( "testdll.dll", RTLD_GLOBAL );
if( !library )
@@ -363,10 +486,15 @@ int main()
CLOSE_GLOBAL;
RETURN_ERROR;
}
- else {
- error = dlerror( );
- printf( "SUCCESS\tCould not get nonexistent symbol from global handle: %s\n",
- error ? error : "" );
+ error = dlerror( );
+ if( !error )
+ {
+ printf( "ERROR\tNo error from dlsym for nonexistent symbol\n" );
+ RETURN_ERROR;
+ }
+ else
+ {
+ printf( "SUCCESS\tCould not get nonexistent symbol from global handle: %s\n", error );
/* Test that the second call to dlerror() returns null as in the specs
See https://github.com/dlfcn-win32/dlfcn-win32/issues/34 */