23 lines
1.3 KiB
Bash
23 lines
1.3 KiB
Bash
#!/bin/sh
|
|
# Generate patched sqlite3.c from SQLite3 amalgamation and write it to stdout.
|
|
# Usage: ./script/patchsqlite3.sh sqlite3.c >sqlite3patched.c
|
|
|
|
INPUT="$([ "$#" -eq 1 ] && echo "$1" || echo "sqlite3.c")"
|
|
if ! [ -f "$INPUT" ]; then
|
|
echo "Usage: $0 <SQLITE3_AMALGAMATION>" >&2
|
|
echo " e.g.: $0 sqlite3.c" >&2
|
|
exit 1
|
|
fi
|
|
|
|
die() {
|
|
echo "[-]" "$@" >&2
|
|
exit 2
|
|
}
|
|
|
|
# 1) Intercept VFS pragma handling
|
|
# 2) Add handling of KEY parameter in ATTACH statements
|
|
sed 's/sqlite3_file_control\(.*SQLITE_FCNTL_PRAGMA\)/sqlite3mcFileControlPragma\1/' "$INPUT" \
|
|
| sed '/\#endif \/\* SQLITE3\_H \*\//a \ \n\/\* Function prototypes of SQLite3 Multiple Ciphers \*\/\nSQLITE_PRIVATE int sqlite3mcFileControlPragma(sqlite3*, const char*, int, void*);\nSQLITE_PRIVATE int sqlite3mcHandleAttachKey(sqlite3*, const char*, const char*, sqlite3_value*, char**);\nSQLITE_PRIVATE int sqlite3mcHandleMainKey(sqlite3*, const char*);' \
|
|
| sed '/sqlite3_free_filename( zPath );/i \\n \/\* Handle KEY parameter. \*\/\n if( rc==SQLITE_OK ){\n rc = sqlite3mcHandleAttachKey(db, zName, zPath, argv[2], &zErrDyn);\n }' \
|
|
| sed '/sqlite3_free_filename(zOpen);/i \\n \/\* Handle encryption related URI parameters. \*\/\n if( rc==SQLITE_OK ){\n rc = sqlite3mcHandleMainKey(db, zOpen);\n }'
|