-
Notifications
You must be signed in to change notification settings - Fork 477
Expand file tree
/
Copy pathsqlite3mc_vfs.c
More file actions
1521 lines (1398 loc) · 43.8 KB
/
sqlite3mc_vfs.c
File metadata and controls
1521 lines (1398 loc) · 43.8 KB
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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
** Name: sqlite3mc_vfs.c
** Purpose: Implementation of SQLite VFS for Multiple Ciphers
** Author: Ulrich Telle
** Created: 2020-02-28
** Copyright: (c) 2020-2023 Ulrich Telle
** License: MIT
*/
#include "sqlite3mc_vfs.h"
#include "sqlite3.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "mystdint.h"
/*
** Type definitions
*/
typedef struct sqlite3mc_file sqlite3mc_file;
typedef struct sqlite3mc_vfs sqlite3mc_vfs;
/*
** SQLite3 Multiple Ciphers file structure
*/
struct sqlite3mc_file
{
sqlite3_file base; /* sqlite3_file I/O methods */
sqlite3_file* pFile; /* Real underlying OS file */
sqlite3mc_vfs* pVfsMC; /* Pointer to the sqlite3mc_vfs object */
const char* zFileName; /* File name */
int openFlags; /* Open flags */
sqlite3mc_file* pMainNext; /* Next main db file */
sqlite3mc_file* pMainDb; /* Main database to which this one is attached */
Codec* codec; /* Codec if encrypted */
int pageNo; /* Page number (in case of journal files) */
};
/*
** SQLite3 Multiple Ciphers VFS structure
*/
struct sqlite3mc_vfs
{
sqlite3_vfs base; /* Multiple Ciphers VFS shim methods */
sqlite3_mutex* mutex; /* Mutex to protect pMain */
sqlite3mc_file* pMain; /* List of main database files */
};
#define REALVFS(p) ((sqlite3_vfs*)(((sqlite3mc_vfs*)(p))->base.pAppData))
#define REALFILE(p) (((sqlite3mc_file*)(p))->pFile)
/*
** Prototypes for VFS methods
*/
static int mcVfsOpen(sqlite3_vfs* pVfs, const char* zName, sqlite3_file* pFile, int flags, int* pOutFlags);
static int mcVfsDelete(sqlite3_vfs* pVfs, const char* zName, int syncDir);
static int mcVfsAccess(sqlite3_vfs* pVfs, const char* zName, int flags, int* pResOut);
static int mcVfsFullPathname(sqlite3_vfs* pVfs, const char* zName, int nOut, char* zOut);
static void* mcVfsDlOpen(sqlite3_vfs* pVfs, const char* zFilename);
static void mcVfsDlError(sqlite3_vfs* pVfs, int nByte, char* zErrMsg);
static void (*mcVfsDlSym(sqlite3_vfs* pVfs, void* p, const char* zSymbol))(void);
static void mcVfsDlClose(sqlite3_vfs* pVfs, void* p);
static int mcVfsRandomness(sqlite3_vfs* pVfs, int nByte, char* zOut);
static int mcVfsSleep(sqlite3_vfs* pVfs, int microseconds);
static int mcVfsCurrentTime(sqlite3_vfs* pVfs, double* pOut);
static int mcVfsGetLastError(sqlite3_vfs* pVfs, int nErr, char* zOut);
static int mcVfsCurrentTimeInt64(sqlite3_vfs* pVfs, sqlite3_int64* pOut);
static int mcVfsSetSystemCall(sqlite3_vfs* pVfs, const char* zName, sqlite3_syscall_ptr pNewFunc);
static sqlite3_syscall_ptr mcVfsGetSystemCall(sqlite3_vfs* pVfs, const char* zName);
static const char* mcVfsNextSystemCall(sqlite3_vfs* pVfs, const char* zName);
/*
** Prototypes for IO methods
*/
static int mcIoClose(sqlite3_file* pFile);
static int mcIoRead(sqlite3_file* pFile, void*, int iAmt, sqlite3_int64 iOfst);
static int mcIoWrite(sqlite3_file* pFile,const void*,int iAmt, sqlite3_int64 iOfst);
static int mcIoTruncate(sqlite3_file* pFile, sqlite3_int64 size);
static int mcIoSync(sqlite3_file* pFile, int flags);
static int mcIoFileSize(sqlite3_file* pFile, sqlite3_int64* pSize);
static int mcIoLock(sqlite3_file* pFile, int lock);
static int mcIoUnlock(sqlite3_file* pFile, int lock);
static int mcIoCheckReservedLock(sqlite3_file* pFile, int *pResOut);
static int mcIoFileControl(sqlite3_file* pFile, int op, void *pArg);
static int mcIoSectorSize(sqlite3_file* pFile);
static int mcIoDeviceCharacteristics(sqlite3_file* pFile);
static int mcIoShmMap(sqlite3_file* pFile, int iPg, int pgsz, int map, void volatile** p);
static int mcIoShmLock(sqlite3_file* pFile, int offset, int n, int flags);
static void mcIoShmBarrier(sqlite3_file* pFile);
static int mcIoShmUnmap(sqlite3_file* pFile, int deleteFlag);
static int mcIoFetch(sqlite3_file* pFile, sqlite3_int64 iOfst, int iAmt, void** pp);
static int mcIoUnfetch(sqlite3_file* pFile, sqlite3_int64 iOfst, void* p);
#define SQLITE3MC_VFS_NAME ("multipleciphers")
/*
** Header sizes of WAL journal files
*/
static const int walFrameHeaderSize = 24;
static const int walFileHeaderSize = 32;
/*
** Global I/O method structure of SQLite3 Multiple Ciphers VFS
*/
#define IOMETHODS_VERSION_MIN 1
#define IOMETHODS_VERSION_MAX 3
static sqlite3_io_methods mcIoMethodsGlobal1 =
{
1, /* iVersion */
mcIoClose, /* xClose */
mcIoRead, /* xRead */
mcIoWrite, /* xWrite */
mcIoTruncate, /* xTruncate */
mcIoSync, /* xSync */
mcIoFileSize, /* xFileSize */
mcIoLock, /* xLock */
mcIoUnlock, /* xUnlock */
mcIoCheckReservedLock, /* xCheckReservedLock */
mcIoFileControl, /* xFileControl */
mcIoSectorSize, /* xSectorSize */
mcIoDeviceCharacteristics, /* xDeviceCharacteristics */
0, /* xShmMap */
0, /* xShmLock */
0, /* xShmBarrier */
0, /* xShmUnmap */
0, /* xFetch */
0, /* xUnfetch */
};
static sqlite3_io_methods mcIoMethodsGlobal2 =
{
2, /* iVersion */
mcIoClose, /* xClose */
mcIoRead, /* xRead */
mcIoWrite, /* xWrite */
mcIoTruncate, /* xTruncate */
mcIoSync, /* xSync */
mcIoFileSize, /* xFileSize */
mcIoLock, /* xLock */
mcIoUnlock, /* xUnlock */
mcIoCheckReservedLock, /* xCheckReservedLock */
mcIoFileControl, /* xFileControl */
mcIoSectorSize, /* xSectorSize */
mcIoDeviceCharacteristics, /* xDeviceCharacteristics */
mcIoShmMap, /* xShmMap */
mcIoShmLock, /* xShmLock */
mcIoShmBarrier, /* xShmBarrier */
mcIoShmUnmap, /* xShmUnmap */
0, /* xFetch */
0, /* xUnfetch */
};
static sqlite3_io_methods mcIoMethodsGlobal3 =
{
3, /* iVersion */
mcIoClose, /* xClose */
mcIoRead, /* xRead */
mcIoWrite, /* xWrite */
mcIoTruncate, /* xTruncate */
mcIoSync, /* xSync */
mcIoFileSize, /* xFileSize */
mcIoLock, /* xLock */
mcIoUnlock, /* xUnlock */
mcIoCheckReservedLock, /* xCheckReservedLock */
mcIoFileControl, /* xFileControl */
mcIoSectorSize, /* xSectorSize */
mcIoDeviceCharacteristics, /* xDeviceCharacteristics */
mcIoShmMap, /* xShmMap */
mcIoShmLock, /* xShmLock */
mcIoShmBarrier, /* xShmBarrier */
mcIoShmUnmap, /* xShmUnmap */
mcIoFetch, /* xFetch */
mcIoUnfetch, /* xUnfetch */
};
static sqlite3_io_methods* mcIoMethodsGlobal[] =
{ 0, &mcIoMethodsGlobal1 , &mcIoMethodsGlobal2 , &mcIoMethodsGlobal3 };
/*
** Internal functions
*/
/*
** Add an item to the list of main database files, if it is not already present.
*/
static void mcMainListAdd(sqlite3mc_file* pFile)
{
assert( (pFile->openFlags & SQLITE_OPEN_MAIN_DB) );
sqlite3_mutex_enter(pFile->pVfsMC->mutex);
pFile->pMainNext = pFile->pVfsMC->pMain;
pFile->pVfsMC->pMain = pFile;
sqlite3_mutex_leave(pFile->pVfsMC->mutex);
}
/*
** Remove an item from the list of main database files.
*/
static void mcMainListRemove(sqlite3mc_file* pFile)
{
sqlite3mc_file** pMainPrev;
sqlite3_mutex_enter(pFile->pVfsMC->mutex);
for (pMainPrev = &pFile->pVfsMC->pMain; *pMainPrev && *pMainPrev != pFile; pMainPrev = &((*pMainPrev)->pMainNext)){}
if (*pMainPrev) *pMainPrev = pFile->pMainNext;
pFile->pMainNext = 0;
sqlite3_mutex_leave(pFile->pVfsMC->mutex);
}
/*
** Given that zFileName points to a buffer containing a database file name passed to
** either the xOpen() or xAccess() VFS method, search the list of main database files
** for a file handle opened by the same database connection on the corresponding
** database file.
*/
static sqlite3mc_file* mcFindDbMainFileName(sqlite3mc_vfs* mcVfs, const char* zFileName)
{
sqlite3mc_file* pDb;
sqlite3_mutex_enter(mcVfs->mutex);
for (pDb = mcVfs->pMain; pDb && pDb->zFileName != zFileName; pDb = pDb->pMainNext){}
sqlite3_mutex_leave(mcVfs->mutex);
return pDb;
}
/*
** Find a pointer to the Multiple Ciphers VFS in use for a database connection.
*/
static sqlite3mc_vfs* mcFindVfs(sqlite3* db, const char* zDbName)
{
sqlite3mc_vfs* pVfsMC = NULL;
if (db->pVfs && db->pVfs->xOpen == mcVfsOpen)
{
/* The top level VFS is a Multiple Ciphers VFS */
pVfsMC = (sqlite3mc_vfs*)(db->pVfs);
}
else
{
/*
** The top level VFS is not a Multiple Ciphers VFS.
** Retrieve the VFS names stack.
*/
char* zVfsNameStack = 0;
if ((sqlite3_file_control(db, zDbName, SQLITE_FCNTL_VFSNAME, &zVfsNameStack) == SQLITE_OK) && (zVfsNameStack != NULL))
{
/* Search for the name prefix of a Multiple Ciphers VFS. */
char* zVfsName = strstr(zVfsNameStack, SQLITE3MC_VFS_NAME);
if (zVfsName != NULL)
{
/* The prefix was found, now determine the full VFS name. */
char* zVfsNameEnd = zVfsName + strlen(SQLITE3MC_VFS_NAME);
if (*zVfsNameEnd == '-')
{
for (++zVfsNameEnd; *zVfsNameEnd != '/' && *zVfsNameEnd != 0; ++zVfsNameEnd);
if (*zVfsNameEnd == '/') *zVfsNameEnd = 0;
/* Find a pointer to the VFS with the determined name. */
sqlite3_vfs* pVfs = sqlite3_vfs_find(zVfsName);
if (pVfs && pVfs->xOpen == mcVfsOpen)
{
pVfsMC = (sqlite3mc_vfs*) pVfs;
}
}
}
sqlite3_free(zVfsNameStack);
}
}
return pVfsMC;
}
/*
** Find the codec of the database file
** corresponding to the database schema name.
*/
SQLITE_PRIVATE Codec* sqlite3mcGetCodec(sqlite3* db, const char* zDbName)
{
Codec* codec = NULL;
sqlite3mc_vfs* pVfsMC = mcFindVfs(db, zDbName);
if (pVfsMC)
{
const char* dbFileName = sqlite3_db_filename(db, zDbName);
sqlite3mc_file* pDbMain = mcFindDbMainFileName(pVfsMC, dbFileName);
if (pDbMain)
{
codec = pDbMain->codec;
}
}
return codec;
}
/*
** Find the codec of the main database file.
*/
SQLITE_PRIVATE Codec* sqlite3mcGetMainCodec(sqlite3* db)
{
return sqlite3mcGetCodec(db, "main");
}
/*
** Set the codec of the database file with the given database file name.
**
** The parameter db, the handle of the database connection, is currently
** not used to determine the database file handle, for which the codec
** should be set. The reason is that for shared cache mode the database
** connection handle is not unique, and it is not even clear which
** connection handle is actually valid, because the association between
** connection handles and database file handles is not maintained properly.
*/
SQLITE_PRIVATE void sqlite3mcSetCodec(sqlite3* db, const char* zDbName, const char* zFileName, Codec* codec)
{
sqlite3mc_file* pDbMain = NULL;
sqlite3mc_vfs* pVfsMC = mcFindVfs(db, zDbName);
if (pVfsMC)
{
pDbMain = mcFindDbMainFileName((sqlite3mc_vfs*)(db->pVfs), zFileName);
}
if (pDbMain)
{
Codec* prevCodec = pDbMain->codec;
Codec* msgCodec = (codec) ? codec : prevCodec;
if (msgCodec)
{
/* Reset error state of pager */
mcReportCodecError(sqlite3mcGetBtShared(msgCodec), SQLITE_OK);
}
if (prevCodec)
{
/*
** Free a codec that was already associated with this main database file handle
*/
sqlite3mcCodecFree(prevCodec);
}
pDbMain->codec = codec;
}
else
{
/*
** No main database file handle found, free codec
*/
sqlite3mcCodecFree(codec);
}
}
/*
** This function is called by the wal module when writing page content
** into the log file.
**
** This function returns a pointer to a buffer containing the encrypted
** page content. If a malloc fails, this function may return NULL.
*/
int libsql_pager_codec_impl(libsql_pghdr* pPg, void **ret)
{
int rc = SQLITE_NOMEM;
if (!pPg || !pPg->pPager) {
return SQLITE_MISUSE_BKPT;
}
sqlite3_file* pFile = sqlite3PagerFile(pPg->pPager);
void* aData = 0;
if (pFile->pMethods == &mcIoMethodsGlobal1 ||
pFile->pMethods == &mcIoMethodsGlobal2 ||
pFile->pMethods == &mcIoMethodsGlobal3)
{
sqlite3mc_file* mcFile = (sqlite3mc_file*) pFile;
Codec* codec = mcFile->codec;
if (codec != 0 && codec->m_walLegacy == 0 && sqlite3mcIsEncrypted(codec))
{
aData = sqlite3mcCodec(codec, pPg->pData, pPg->pgno, 6);
}
else
{
aData = (char*) pPg->pData;
}
}
else
{
aData = (char*) pPg->pData;
}
if (aData) {
*ret = aData;
rc = SQLITE_OK;
}
return rc;
}
/*
** Implementation of VFS methods
*/
static int mcVfsOpen(sqlite3_vfs* pVfs, const char* zName, sqlite3_file* pFile, int flags, int* pOutFlags)
{
int rc;
sqlite3mc_vfs* mcVfs = (sqlite3mc_vfs*) pVfs;
sqlite3mc_file* mcFile = (sqlite3mc_file*) pFile;
mcFile->pFile = (sqlite3_file*) &mcFile[1];
mcFile->pVfsMC = mcVfs;
mcFile->openFlags = flags;
mcFile->zFileName = zName;
mcFile->codec = 0;
mcFile->pMainDb = 0;
mcFile->pMainNext = 0;
mcFile->pageNo = 0;
if (zName)
{
if (flags & SQLITE_OPEN_MAIN_DB)
{
mcFile->zFileName = zName;
SQLITE3MC_DEBUG_LOG("mcVfsOpen MAIN: mcFile=%p fileName=%s\n", mcFile, mcFile->zFileName);
}
else if (flags & SQLITE_OPEN_TEMP_DB)
{
mcFile->zFileName = zName;
SQLITE3MC_DEBUG_LOG("mcVfsOpen TEMP: mcFile=%p fileName=%s\n", mcFile, mcFile->zFileName);
}
#if 0
else if (flags & SQLITE_OPEN_TRANSIENT_DB)
{
/*
** TODO: When does SQLite open a transient DB? Could/Should it be encrypted?
*/
}
#endif
else if (flags & SQLITE_OPEN_MAIN_JOURNAL)
{
const char* dbFileName = sqlite3_filename_database(zName);
mcFile->pMainDb = mcFindDbMainFileName(mcFile->pVfsMC, dbFileName);
mcFile->zFileName = zName;
SQLITE3MC_DEBUG_LOG("mcVfsOpen MAIN Journal: mcFile=%p fileName=%s dbFileName=%s\n", mcFile, mcFile->zFileName, dbFileName);
}
#if 0
else if (flags & SQLITE_OPEN_TEMP_JOURNAL)
{
/*
** TODO: When does SQLite open a temporary journal? Could/Should it be encrypted?
*/
}
#endif
else if (flags & SQLITE_OPEN_SUBJOURNAL)
{
const char* dbFileName = sqlite3_filename_database(zName);
mcFile->pMainDb = mcFindDbMainFileName(mcFile->pVfsMC, dbFileName);
mcFile->zFileName = zName;
SQLITE3MC_DEBUG_LOG("mcVfsOpen SUB Journal: mcFile=%p fileName=%s dbFileName=%s\n", mcFile, mcFile->zFileName, dbFileName);
}
#if 0
else if (flags & SQLITE_OPEN_MASTER_JOURNAL)
{
/*
** Master journal contains only administrative information
** No encryption necessary
*/
}
#endif
else if (flags & SQLITE_OPEN_WAL)
{
const char* dbFileName = sqlite3_filename_database(zName);
mcFile->pMainDb = mcFindDbMainFileName(mcFile->pVfsMC, dbFileName);
mcFile->zFileName = zName;
SQLITE3MC_DEBUG_LOG("mcVfsOpen WAL Journal: mcFile=%p fileName=%s dbFileName=%s\n", mcFile, mcFile->zFileName, dbFileName);
}
}
rc = REALVFS(pVfs)->xOpen(REALVFS(pVfs), zName, mcFile->pFile, flags, pOutFlags);
if (rc == SQLITE_OK)
{
/*
** Real open succeeded
** Initialize methods (use same version number as underlying implementation
** Register main database files
*/
int ioMethodsVersion = mcFile->pFile->pMethods->iVersion;
if (ioMethodsVersion < IOMETHODS_VERSION_MIN ||
ioMethodsVersion > IOMETHODS_VERSION_MAX)
{
/* If version out of range, use highest known version */
ioMethodsVersion = IOMETHODS_VERSION_MAX;
}
pFile->pMethods = mcIoMethodsGlobal[ioMethodsVersion];
if (flags & SQLITE_OPEN_MAIN_DB)
{
mcMainListAdd(mcFile);
}
}
return rc;
}
static int mcVfsDelete(sqlite3_vfs* pVfs, const char* zName, int syncDir)
{
return REALVFS(pVfs)->xDelete(REALVFS(pVfs), zName, syncDir);
}
static int mcVfsAccess(sqlite3_vfs* pVfs, const char* zName, int flags, int* pResOut)
{
return REALVFS(pVfs)->xAccess(REALVFS(pVfs), zName, flags, pResOut);
}
static int mcVfsFullPathname(sqlite3_vfs* pVfs, const char* zName, int nOut, char* zOut)
{
return REALVFS(pVfs)->xFullPathname(REALVFS(pVfs), zName, nOut, zOut);
}
static void* mcVfsDlOpen(sqlite3_vfs* pVfs, const char* zFilename)
{
return REALVFS(pVfs)->xDlOpen(REALVFS(pVfs), zFilename);
}
static void mcVfsDlError(sqlite3_vfs* pVfs, int nByte, char* zErrMsg)
{
REALVFS(pVfs)->xDlError(REALVFS(pVfs), nByte, zErrMsg);
}
static void (*mcVfsDlSym(sqlite3_vfs* pVfs, void* p, const char* zSymbol))(void)
{
return REALVFS(pVfs)->xDlSym(REALVFS(pVfs), p, zSymbol);
}
static void mcVfsDlClose(sqlite3_vfs* pVfs, void* p)
{
REALVFS(pVfs)->xDlClose(REALVFS(pVfs), p);
}
static int mcVfsRandomness(sqlite3_vfs* pVfs, int nByte, char* zOut)
{
return REALVFS(pVfs)->xRandomness(REALVFS(pVfs), nByte, zOut);
}
static int mcVfsSleep(sqlite3_vfs* pVfs, int microseconds)
{
return REALVFS(pVfs)->xSleep(REALVFS(pVfs), microseconds);
}
static int mcVfsCurrentTime(sqlite3_vfs* pVfs, double* pOut)
{
return REALVFS(pVfs)->xCurrentTime(REALVFS(pVfs), pOut);
}
static int mcVfsGetLastError(sqlite3_vfs* pVfs, int code, char* pOut)
{
return REALVFS(pVfs)->xGetLastError(REALVFS(pVfs), code, pOut);
}
static int mcVfsCurrentTimeInt64(sqlite3_vfs* pVfs, sqlite3_int64* pOut)
{
return REALVFS(pVfs)->xCurrentTimeInt64(REALVFS(pVfs), pOut);
}
static int mcVfsSetSystemCall(sqlite3_vfs* pVfs, const char* zName, sqlite3_syscall_ptr pNewFunc)
{
return REALVFS(pVfs)->xSetSystemCall(REALVFS(pVfs), zName, pNewFunc);
}
static sqlite3_syscall_ptr mcVfsGetSystemCall(sqlite3_vfs* pVfs, const char* zName)
{
return REALVFS(pVfs)->xGetSystemCall(REALVFS(pVfs), zName);
}
static const char* mcVfsNextSystemCall(sqlite3_vfs* pVfs, const char* zName)
{
return REALVFS(pVfs)->xNextSystemCall(REALVFS(pVfs), zName);
}
/*
** IO methods
*/
static int mcIoClose(sqlite3_file* pFile)
{
int rc;
sqlite3mc_file* p = (sqlite3mc_file*) pFile;
/*
** Unregister main database files
*/
if (p->openFlags & SQLITE_OPEN_MAIN_DB)
{
mcMainListRemove(p);
}
/*
** Release codec memory
*/
if (p->codec)
{
sqlite3mcCodecFree(p->codec);
p->codec = 0;
}
assert(p->pMainNext == 0 && p->pVfsMC->pMain != p);
rc = REALFILE(pFile)->pMethods->xClose(REALFILE(pFile));
return rc;
}
/*
** Read operation on main database file
*/
static int mcReadMainDb(sqlite3_file* pFile, void* buffer, int count, sqlite3_int64 offset)
{
int rc = SQLITE_OK;
sqlite3mc_file* mcFile = (sqlite3mc_file*) pFile;
/*
** Special case: read 16 bytes salt from beginning of database file without decrypting
*/
if (offset == 0 && count == 16)
{
return rc;
}
if (mcFile->codec != 0 && sqlite3mcIsEncrypted(mcFile->codec))
{
const int pageSize = sqlite3mcGetPageSize(mcFile->codec);
const int deltaOffset = offset % pageSize;
const int deltaCount = count % pageSize;
if (deltaOffset || deltaCount)
{
/*
** Read partial page
*/
int pageNo = 0;
void* bufferDecrypted = 0;
const sqlite3_int64 prevOffset = offset - deltaOffset;
unsigned char* pageBuffer = sqlite3mcGetPageBuffer(mcFile->codec);
/*
** Read complete page from file
*/
rc = REALFILE(pFile)->pMethods->xRead(REALFILE(pFile), pageBuffer, pageSize, prevOffset);
if (rc == SQLITE_IOERR_SHORT_READ)
{
return rc;
}
/*
** Determine page number and decrypt page buffer
*/
pageNo = prevOffset / pageSize + 1;
bufferDecrypted = sqlite3mcCodec(mcFile->codec, pageBuffer, pageNo, 3);
/*
** Return the requested content
*/
if (deltaOffset)
{
memcpy(buffer, pageBuffer + deltaOffset, count);
}
else
{
memcpy(buffer, pageBuffer, count);
}
}
else
{
/*
** Read full page(s)
**
** In fact, SQLite reads only one database page at a time.
** This would allow to remove the page loop below.
*/
unsigned char* data = (unsigned char*) buffer;
int pageNo = offset / pageSize + 1;
int nPages = count / pageSize;
int iPage;
for (iPage = 0; iPage < nPages; ++iPage)
{
void* bufferDecrypted = sqlite3mcCodec(mcFile->codec, data, pageNo, 3);
data += pageSize;
offset += pageSize;
++pageNo;
}
}
}
return rc;
}
/*
** Read operation on main journal file
*/
static int mcReadMainJournal(sqlite3_file* pFile, const void* buffer, int count, sqlite3_int64 offset)
{
int rc = SQLITE_OK;
sqlite3mc_file* mcFile = (sqlite3mc_file*) pFile;
Codec* codec = (mcFile->pMainDb) ? mcFile->pMainDb->codec : 0;
if (codec != 0 && sqlite3mcIsEncrypted(codec))
{
const int pageSize = sqlite3mcGetPageSize(codec);
if (count == pageSize && mcFile->pageNo != 0)
{
/*
** Decrypt the page buffer, but only if the page number is valid
*/
void* bufferDecrypted = sqlite3mcCodec(codec, (char*) buffer, mcFile->pageNo, 3);
mcFile->pageNo = 0;
}
else if (count == 4)
{
/*
** SQLite always reads the page number from the journal file
** immediately before the corresponding page content is read.
*/
mcFile->pageNo = sqlite3Get4byte(buffer);
}
}
return rc;
}
/*
** Read operation on subjournal file
*/
static int mcReadSubJournal(sqlite3_file* pFile, const void* buffer, int count, sqlite3_int64 offset)
{
int rc = SQLITE_OK;
sqlite3mc_file* mcFile = (sqlite3mc_file*) pFile;
Codec* codec = (mcFile->pMainDb) ? mcFile->pMainDb->codec : 0;
if (codec != 0 && sqlite3mcIsEncrypted(codec))
{
const int pageSize = sqlite3mcGetPageSize(codec);
if (count == pageSize && mcFile->pageNo != 0)
{
/*
** Decrypt the page buffer, but only if the page number is valid
*/
void* bufferDecrypted = sqlite3mcCodec(codec, (char*) buffer, mcFile->pageNo, 3);
}
else if (count == 4)
{
/*
** SQLite always reads the page number from the journal file
** immediately before the corresponding page content is read.
*/
mcFile->pageNo = sqlite3Get4byte(buffer);
}
}
return rc;
}
/*
** Read operation on WAL journal file
*/
static int mcReadWal(sqlite3_file* pFile, const void* buffer, int count, sqlite3_int64 offset)
{
int rc = SQLITE_OK;
sqlite3mc_file* mcFile = (sqlite3mc_file*) pFile;
Codec* codec = (mcFile->pMainDb) ? mcFile->pMainDb->codec : 0;
if (codec != 0 && sqlite3mcIsEncrypted(codec))
{
const int pageSize = sqlite3mcGetPageSize(codec);
if (count == pageSize)
{
int pageNo = 0;
unsigned char ac[4];
/*
** Determine page number
**
** It is necessary to explicitly read the page number from the frame header.
*/
rc = REALFILE(pFile)->pMethods->xRead(REALFILE(pFile), ac, 4, offset - walFrameHeaderSize);
if (rc == SQLITE_OK)
{
pageNo = sqlite3Get4byte(ac);
}
/*
** Decrypt page content if page number is valid
*/
if (pageNo != 0)
{
void* bufferDecrypted = sqlite3mcCodec(codec, (char*)buffer, pageNo, 3);
}
}
else if (codec->m_walLegacy != 0 && count == pageSize + walFrameHeaderSize)
{
int pageNo = sqlite3Get4byte(buffer);
/*
** Decrypt page content if page number is valid
*/
if (pageNo != 0)
{
void* bufferDecrypted = sqlite3mcCodec(codec, (char*)buffer+walFrameHeaderSize, pageNo, 3);
}
}
}
return rc;
}
static int mcIoRead(sqlite3_file* pFile, void* buffer, int count, sqlite3_int64 offset)
{
sqlite3mc_file* mcFile = (sqlite3mc_file*) pFile;
int rc = REALFILE(pFile)->pMethods->xRead(REALFILE(pFile), buffer, count, offset);
if (rc == SQLITE_IOERR_SHORT_READ)
{
return rc;
}
if (mcFile->openFlags & SQLITE_OPEN_MAIN_DB)
{
rc = mcReadMainDb(pFile, buffer, count, offset);
}
#if 0
else if (mcFile->openFlags & SQLITE_OPEN_TEMP_DB)
{
/*
** TODO: Could/Should a temporary database file be encrypted?
*/
}
#endif
#if 0
else if (mcFile->openFlags & SQLITE_OPEN_TRANSIENT_DB)
{
/*
** TODO: Could/Should a transient database file be encrypted?
*/
}
#endif
else if (mcFile->openFlags & SQLITE_OPEN_MAIN_JOURNAL)
{
rc = mcReadMainJournal(pFile, buffer, count, offset);
}
#if 0
else if (mcFile->openFlags & SQLITE_OPEN_TEMP_JOURNAL)
{
/*
** TODO: Could/Should a temporary journal file be encrypted?
*/
}
#endif
else if (mcFile->openFlags & SQLITE_OPEN_SUBJOURNAL)
{
rc = mcReadSubJournal(pFile, buffer, count, offset);
}
#if 0
else if (mcFile->openFlags & SQLITE_OPEN_MASTER_JOURNAL)
{
/*
** Master journal contains only administrative information
** No encryption necessary
*/
}
#endif
else if (mcFile->openFlags & SQLITE_OPEN_WAL)
{
rc = mcReadWal(pFile, buffer, count, offset);
}
return rc;
}
/*
** Write operation on main database file
*/
static int mcWriteMainDb(sqlite3_file* pFile, const void* buffer, int count, sqlite3_int64 offset)
{
int rc = SQLITE_OK;
sqlite3mc_file* mcFile = (sqlite3mc_file*) pFile;
if (mcFile->codec != 0 && sqlite3mcIsEncrypted(mcFile->codec))
{
const int pageSize = sqlite3mcGetPageSize(mcFile->codec);
const int deltaOffset = offset % pageSize;
const int deltaCount = count % pageSize;
if (deltaOffset || deltaCount)
{
/*
** Write partial page
**
** SQLite does never write partial database pages.
** Therefore no encryption is required in this case.
*/
rc = REALFILE(pFile)->pMethods->xWrite(REALFILE(pFile), buffer, count, offset);
}
else
{
/*
** Write full page(s)
**
** In fact, SQLite writes only one database page at a time.
** This would allow to remove the page loop below.
*/
char* data = (char*) buffer;
int pageNo = offset / pageSize + 1;
int nPages = count / pageSize;
int iPage;
for (iPage = 0; iPage < nPages; ++iPage)
{
void* bufferEncrypted = sqlite3mcCodec(mcFile->codec, data, pageNo, 6);
rc = REALFILE(pFile)->pMethods->xWrite(REALFILE(pFile), bufferEncrypted, pageSize, offset);
data += pageSize;
offset += pageSize;
++pageNo;
}
}
}
else
{
/*
** Write buffer without encryption
*/
rc = REALFILE(pFile)->pMethods->xWrite(REALFILE(pFile), buffer, count, offset);
}
return rc;
}
/*
** Write operation on main journal file
*/
static int mcWriteMainJournal(sqlite3_file* pFile, const void* buffer, int count, sqlite3_int64 offset)
{
int rc = SQLITE_OK;
sqlite3mc_file* mcFile = (sqlite3mc_file*) pFile;
Codec* codec = (mcFile->pMainDb) ? mcFile->pMainDb->codec : 0;
if (codec != 0 && sqlite3mcIsEncrypted(codec))
{
const int pageSize = sqlite3mcGetPageSize(codec);
const int frameSize = pageSize + 4 + 4;
if (count == pageSize && mcFile->pageNo != 0)
{
/*
** Encrypt the page buffer, but only if the page number is valid
*/
void* bufferEncrypted = sqlite3mcCodec(codec, (char*) buffer, mcFile->pageNo, 7);
rc = REALFILE(pFile)->pMethods->xWrite(REALFILE(pFile), bufferEncrypted, pageSize, offset);
}
else
{
/*
** Write buffer without encryption
*/
rc = REALFILE(pFile)->pMethods->xWrite(REALFILE(pFile), buffer, count, offset);
if (count == 4)
{
/*
** SQLite always writes the page number to the journal file
** immediately before the corresponding page content is written.
*/
mcFile->pageNo = (rc == SQLITE_OK) ? sqlite3Get4byte(buffer) : 0;
}
}
}
else
{
/*
** Write buffer without encryption
*/
rc = REALFILE(pFile)->pMethods->xWrite(REALFILE(pFile), buffer, count, offset);
}
return rc;
}
/*
** Write operation on subjournal file
*/
static int mcWriteSubJournal(sqlite3_file* pFile, const void* buffer, int count, sqlite3_int64 offset)
{
int rc = SQLITE_OK;
sqlite3mc_file* mcFile = (sqlite3mc_file*) pFile;
Codec* codec = (mcFile->pMainDb) ? mcFile->pMainDb->codec : 0;
if (codec != 0 && sqlite3mcIsEncrypted(codec))
{
const int pageSize = sqlite3mcGetPageSize(codec);
const int frameSize = pageSize + 4;
if (count == pageSize && mcFile->pageNo != 0)
{
/*
** Encrypt the page buffer, but only if the page number is valid
*/
void* bufferEncrypted = sqlite3mcCodec(codec, (char*) buffer, mcFile->pageNo, 7);
rc = REALFILE(pFile)->pMethods->xWrite(REALFILE(pFile), bufferEncrypted, pageSize, offset);
}
else
{
/*
** Write buffer without encryption
*/
rc = REALFILE(pFile)->pMethods->xWrite(REALFILE(pFile), buffer, count, offset);
if (count == 4)
{
/*
** SQLite always writes the page number to the journal file
** immediately before the corresponding page content is written.
*/
mcFile->pageNo = (rc == SQLITE_OK) ? sqlite3Get4byte(buffer) : 0;