mirror of
https://github.com/ioquake/ioq3.git
synced 2025-06-02 01:42:12 +00:00
Don't load libraries with non-standard file extensions
Also don't allow writting files ending in a library extension such as ".so.0" or ".dylib.0".
This commit is contained in:
parent
fbada2caf6
commit
05858d30e8
6 changed files with 64 additions and 11 deletions
|
@ -912,3 +912,44 @@ qboolean Sys_PIDIsRunning( int pid )
|
|||
{
|
||||
return kill( pid, 0 ) == 0;
|
||||
}
|
||||
|
||||
/*
|
||||
=================
|
||||
Sys_DllExtension
|
||||
|
||||
Check if filename should be allowed to be loaded as a DLL.
|
||||
=================
|
||||
*/
|
||||
qboolean Sys_DllExtension( const char *name ) {
|
||||
const char *p;
|
||||
char c = 0;
|
||||
|
||||
if ( COM_CompareExtension( name, DLL_EXT ) ) {
|
||||
return qtrue;
|
||||
}
|
||||
|
||||
// Check for format of filename.so.1.2.3
|
||||
p = strstr( name, DLL_EXT "." );
|
||||
|
||||
if ( p ) {
|
||||
p += strlen( DLL_EXT );
|
||||
|
||||
// Check if .so is only followed for periods and numbers.
|
||||
while ( *p ) {
|
||||
c = *p;
|
||||
|
||||
if ( !isdigit( c ) && c != '.' ) {
|
||||
return qfalse;
|
||||
}
|
||||
|
||||
p++;
|
||||
}
|
||||
|
||||
// Don't allow filename to end in a period. file.so., file.so.0., etc
|
||||
if ( c != '.' ) {
|
||||
return qtrue;
|
||||
}
|
||||
}
|
||||
|
||||
return qfalse;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue