Merge pull request #1584 from xiaoyifang/fix/slob-truncate

fix: slob truncated file check.
This commit is contained in:
xiaoyifang 2024-06-14 23:02:23 +08:00 committed by GitHub
commit 4ac44e9a48
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -58,6 +58,7 @@ using BtreeIndexing::IndexedWords;
using BtreeIndexing::IndexInfo;
DEF_EX_STR( exNotSlobFile, "Not an Slob file", Dictionary::Ex )
DEF_EX( exTruncateFile, "Slob file truncated", Dictionary::Ex )
using Dictionary::exCantReadFile;
DEF_EX_STR( exCantDecodeFile, "Can't decode file", Dictionary::Ex )
DEF_EX_STR( exNoCodecFound, "No text codec found", Dictionary::Ex )
@ -323,8 +324,8 @@ void SlobFile::open( const QString & name )
encoding = readTinyText();
codec = QTextCodec::codecForName( encoding.toLatin1() );
if ( codec == 0 ) {
error = QString( "for encoding \"" ) + encoding + "\"";
if ( codec == nullptr ) {
error = QString( R"(for encoding "%1")" ).arg( encoding );
throw exNoCodecFound( string( error.toUtf8().data() ) );
}
@ -383,6 +384,11 @@ void SlobFile::open( const QString & name )
break;
fileSize = qFromBigEndian( tmp );
//truncated file
if ( file.size() < fileSize ) {
throw exTruncateFile();
}
if ( file.read( (char *)&cnt, sizeof( cnt ) ) != sizeof( cnt ) )
break;
refsCount = qFromBigEndian( cnt );
@ -672,13 +678,7 @@ SlobDictionary::SlobDictionary( string const & id, string const & indexFile, vec
idxHeader( idx.read< IdxHeader >() )
{
// Open data file
try {
sf.open( dictionaryFiles[ 0 ].c_str() );
}
catch ( std::exception & e ) {
gdWarning( "Slob dictionary initializing failed: %s, error: %s\n", dictionaryFiles[ 0 ].c_str(), e.what() );
}
sf.open( dictionaryFiles[ 0 ].c_str() );
// Initialize the indexes