Skip to content

Commit d9767c6

Browse files
committed
Fix issue with codec initialization
Due to a change in SQLite's behaviour in version 3.48.0 it is no longer possible to locate the cipher configuration table via an SQL function. A named connection parameter is now used for this purpose.
1 parent de01ff8 commit d9767c6

File tree

4 files changed

+26
-18
lines changed

4 files changed

+26
-18
lines changed

src/cipher_common.c

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ typedef struct _CipherName
5555
char m_name[CIPHER_NAME_MAXLEN];
5656
} CipherName;
5757

58+
static char globalConfigTableName[CIPHER_NAME_MAXLEN] = "";
5859
static int globalCipherCount = 0;
5960
static char* globalSentinelName = "";
6061
static CipherName globalCipherNameTable[CODEC_COUNT_LIMIT + 2] = { 0 };

src/cipher_config.c

+11-14
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,7 @@ sqlite3mcConfigTable(sqlite3_context* context, int argc, sqlite3_value** argv)
2929
SQLITE_PRIVATE CodecParameter*
3030
sqlite3mcGetCodecParams(sqlite3* db)
3131
{
32-
CodecParameter* codecParams = NULL;
33-
sqlite3_stmt* pStmt = 0;
34-
int rc = sqlite3_prepare_v2(db, "SELECT sqlite3mc_config_table();", -1, &pStmt, 0);
35-
if (rc == SQLITE_OK)
36-
{
37-
if (SQLITE_ROW == sqlite3_step(pStmt))
38-
{
39-
sqlite3_value* ptrValue = sqlite3_column_value(pStmt, 0);
40-
codecParams = (CodecParameter*) sqlite3_value_pointer(ptrValue, "sqlite3mc_codec_params");
41-
}
42-
sqlite3_finalize(pStmt);
43-
}
32+
CodecParameter* codecParams = (CodecParameter*) sqlite3_get_clientdata(db, globalConfigTableName);
4433
return codecParams;
4534
}
4635

@@ -909,8 +898,16 @@ sqlite3mcFileControlPragma(sqlite3* db, const char* zDbName, int op, void* pArg)
909898
{
910899
value = sqlite3mc_config(db, "cipher", cipherId);
911900
}
912-
rc = SQLITE_OK;
913-
((char**)pArg)[0] = sqlite3_mprintf("%s", globalCodecDescriptorTable[value - 1].m_name);
901+
if (value > 0)
902+
{
903+
((char**)pArg)[0] = sqlite3_mprintf("%s", globalCodecDescriptorTable[value - 1].m_name);
904+
rc = SQLITE_OK;
905+
}
906+
else
907+
{
908+
((char**)pArg)[0] = sqlite3_mprintf("Cipher '%s' could not be located.", pragmaValue);
909+
rc = SQLITE_ERROR;
910+
}
914911
}
915912
else
916913
{

src/codecext.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,8 @@ sqlite3_key_v2(sqlite3* db, const char* zDbName, const void* zKey, int nKey)
360360
return rc;
361361
}
362362
/* Configure cipher from URI parameters if requested */
363-
if (sqlite3FindFunction(db, "sqlite3mc_config_table", 0, SQLITE_UTF8, 0) == NULL)
363+
void* codecParamTable = sqlite3_get_clientdata(db, globalConfigTableName);
364+
if (codecParamTable == NULL)
364365
{
365366
/*
366367
** Encryption extension of database connection not yet initialized;

src/sqlite3mc.c

+12-3
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,8 @@ mcRegisterCodecExtensions(sqlite3* db, char** pzErrMsg, const sqlite3_api_routin
381381
int rc = SQLITE_OK;
382382
CodecParameter* codecParameterTable = NULL;
383383

384-
if (sqlite3FindFunction(db, "sqlite3mc_config_table", 1, SQLITE_UTF8, 0) != NULL)
384+
void* codecParamTable = sqlite3_get_clientdata(db, globalConfigTableName);
385+
if (codecParamTable)
385386
{
386387
/* Return if codec extension functions are already defined */
387388
return rc;
@@ -392,8 +393,7 @@ mcRegisterCodecExtensions(sqlite3* db, char** pzErrMsg, const sqlite3_api_routin
392393
rc = (codecParameterTable != NULL) ? SQLITE_OK : SQLITE_NOMEM;
393394
if (rc == SQLITE_OK)
394395
{
395-
rc = sqlite3_create_function_v2(db, "sqlite3mc_config_table", 0, SQLITE_UTF8 | SQLITE_DETERMINISTIC,
396-
codecParameterTable, sqlite3mcConfigTable, 0, 0, sqlite3mcFreeCodecParameterTable);
396+
sqlite3_set_clientdata(db, globalConfigTableName, codecParameterTable, sqlite3mcFreeCodecParameterTable);
397397
}
398398

399399
rc = (codecParameterTable != NULL) ? SQLITE_OK : SQLITE_NOMEM;
@@ -610,6 +610,15 @@ sqlite3mcInitCipherTables()
610610
{
611611
size_t n;
612612

613+
/* Initialize global configuration table name */
614+
sqlite3_randomness(CIPHER_NAME_MAXLEN, globalConfigTableName);
615+
for (n = 0; n < CIPHER_NAME_MAXLEN-1; ++n)
616+
{
617+
if (globalConfigTableName[n] == 0)
618+
globalConfigTableName[n] = '@';
619+
}
620+
globalConfigTableName[CIPHER_NAME_MAXLEN-1] = 0;
621+
613622
/* Initialize cipher name table */
614623
strcpy(globalCipherNameTable[0].m_name, "global");
615624
for (n = 1; n < CODEC_COUNT_MAX + 2; ++n)

0 commit comments

Comments
 (0)