4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing:
7 ** May you do good and not evil.
8 ** May you find forgiveness for yourself and forgive others.
9 ** May you share freely, never taking more than you give.
11 ******************************************************************************
13 ** This file contains code that is specific to Windows.
15 #include "sqliteInt.h"
16 #if SQLITE_OS_WIN /* This file is used for Windows only */
19 ** Include code that is common to all os_*.c files
21 #include "os_common.h"
24 ** Include the header file for the Windows VFS.
29 ** Compiling and using WAL mode requires several APIs that are only
30 ** available in Windows platforms based on the NT kernel.
32 #if !SQLITE_OS_WINNT && !defined(SQLITE_OMIT_WAL)
33 # error "WAL mode requires support from the Windows NT kernel, compile\
34 with SQLITE_OMIT_WAL."
37 #if !SQLITE_OS_WINNT && SQLITE_MAX_MMAP_SIZE>0
38 # error "Memory mapped files require support from the Windows NT kernel,\
39 compile with SQLITE_MAX_MMAP_SIZE=0."
43 ** Are most of the Win32 ANSI APIs available (i.e. with certain exceptions
44 ** based on the sub-platform)?
46 #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && !defined(SQLITE_WIN32_NO_ANSI)
47 # define SQLITE_WIN32_HAS_ANSI
51 ** Are most of the Win32 Unicode APIs available (i.e. with certain exceptions
52 ** based on the sub-platform)?
54 #if (SQLITE_OS_WINCE || SQLITE_OS_WINNT || SQLITE_OS_WINRT) && \
55 !defined(SQLITE_WIN32_NO_WIDE)
56 # define SQLITE_WIN32_HAS_WIDE
60 ** Make sure at least one set of Win32 APIs is available.
62 #if !defined(SQLITE_WIN32_HAS_ANSI) && !defined(SQLITE_WIN32_HAS_WIDE)
63 # error "At least one of SQLITE_WIN32_HAS_ANSI and SQLITE_WIN32_HAS_WIDE\
68 ** Define the required Windows SDK version constants if they are not
72 # define NTDDI_WIN8 0x06020000
76 # define NTDDI_WINBLUE 0x06030000
79 #ifndef NTDDI_WINTHRESHOLD
80 # define NTDDI_WINTHRESHOLD 0x06040000
84 ** Check to see if the GetVersionEx[AW] functions are deprecated on the
85 ** target system. GetVersionEx was first deprecated in Win8.1.
87 #ifndef SQLITE_WIN32_GETVERSIONEX
88 # if defined(NTDDI_VERSION) && NTDDI_VERSION >= NTDDI_WINBLUE
89 # define SQLITE_WIN32_GETVERSIONEX 0 /* GetVersionEx() is deprecated */
91 # define SQLITE_WIN32_GETVERSIONEX 1 /* GetVersionEx() is current */
96 ** Check to see if the CreateFileMappingA function is supported on the
97 ** target system. It is unavailable when using "mincore.lib" on Win10.
98 ** When compiling for Windows 10, always assume "mincore.lib" is in use.
100 #ifndef SQLITE_WIN32_CREATEFILEMAPPINGA
101 # if defined(NTDDI_VERSION) && NTDDI_VERSION >= NTDDI_WINTHRESHOLD
102 # define SQLITE_WIN32_CREATEFILEMAPPINGA 0
104 # define SQLITE_WIN32_CREATEFILEMAPPINGA 1
109 ** This constant should already be defined (in the "WinDef.h" SDK file).
112 # define MAX_PATH (260)
116 ** Maximum pathname length (in chars) for Win32. This should normally be
119 #ifndef SQLITE_WIN32_MAX_PATH_CHARS
120 # define SQLITE_WIN32_MAX_PATH_CHARS (MAX_PATH)
124 ** This constant should already be defined (in the "WinNT.h" SDK file).
126 #ifndef UNICODE_STRING_MAX_CHARS
127 # define UNICODE_STRING_MAX_CHARS (32767)
131 ** Maximum pathname length (in chars) for WinNT. This should normally be
132 ** UNICODE_STRING_MAX_CHARS.
134 #ifndef SQLITE_WINNT_MAX_PATH_CHARS
135 # define SQLITE_WINNT_MAX_PATH_CHARS (UNICODE_STRING_MAX_CHARS)
139 ** Maximum pathname length (in bytes) for Win32. The MAX_PATH macro is in
140 ** characters, so we allocate 4 bytes per character assuming worst-case of
141 ** 4-bytes-per-character for UTF8.
143 #ifndef SQLITE_WIN32_MAX_PATH_BYTES
144 # define SQLITE_WIN32_MAX_PATH_BYTES (SQLITE_WIN32_MAX_PATH_CHARS*4)
148 ** Maximum pathname length (in bytes) for WinNT. This should normally be
149 ** UNICODE_STRING_MAX_CHARS * sizeof(WCHAR).
151 #ifndef SQLITE_WINNT_MAX_PATH_BYTES
152 # define SQLITE_WINNT_MAX_PATH_BYTES \
153 (sizeof(WCHAR) * SQLITE_WINNT_MAX_PATH_CHARS)
157 ** Maximum error message length (in chars) for WinRT.
159 #ifndef SQLITE_WIN32_MAX_ERRMSG_CHARS
160 # define SQLITE_WIN32_MAX_ERRMSG_CHARS (1024)
164 ** Returns non-zero if the character should be treated as a directory
168 # define winIsDirSep(a) (((a) == '/') || ((a) == '\\'))
172 ** This macro is used when a local variable is set to a value that is
173 ** [sometimes] not used by the code (e.g. via conditional compilation).
175 #ifndef UNUSED_VARIABLE_VALUE
176 # define UNUSED_VARIABLE_VALUE(x) (void)(x)
180 ** Returns the character that should be used as the directory separator.
183 # define winGetDirSep() '\\'
187 ** Do we need to manually define the Win32 file mapping APIs for use with WAL
188 ** mode or memory mapped files (e.g. these APIs are available in the Windows
189 ** CE SDK; however, they are not present in the header file)?
191 #if SQLITE_WIN32_FILEMAPPING_API && \
192 (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0)
194 ** Two of the file mapping APIs are different under WinRT. Figure out which
198 WINBASEAPI HANDLE WINAPI
CreateFileMappingFromApp(HANDLE
, \
199 LPSECURITY_ATTRIBUTES
, ULONG
, ULONG64
, LPCWSTR
);
201 WINBASEAPI LPVOID WINAPI
MapViewOfFileFromApp(HANDLE
, ULONG
, ULONG64
, SIZE_T
);
203 #if defined(SQLITE_WIN32_HAS_ANSI)
204 WINBASEAPI HANDLE WINAPI
CreateFileMappingA(HANDLE
, LPSECURITY_ATTRIBUTES
, \
205 DWORD
, DWORD
, DWORD
, LPCSTR
);
206 #endif /* defined(SQLITE_WIN32_HAS_ANSI) */
208 #if defined(SQLITE_WIN32_HAS_WIDE)
209 WINBASEAPI HANDLE WINAPI
CreateFileMappingW(HANDLE
, LPSECURITY_ATTRIBUTES
, \
210 DWORD
, DWORD
, DWORD
, LPCWSTR
);
211 #endif /* defined(SQLITE_WIN32_HAS_WIDE) */
213 WINBASEAPI LPVOID WINAPI
MapViewOfFile(HANDLE
, DWORD
, DWORD
, DWORD
, SIZE_T
);
214 #endif /* SQLITE_OS_WINRT */
217 ** These file mapping APIs are common to both Win32 and WinRT.
220 WINBASEAPI BOOL WINAPI
FlushViewOfFile(LPCVOID
, SIZE_T
);
221 WINBASEAPI BOOL WINAPI
UnmapViewOfFile(LPCVOID
);
222 #endif /* SQLITE_WIN32_FILEMAPPING_API */
225 ** Some Microsoft compilers lack this definition.
227 #ifndef INVALID_FILE_ATTRIBUTES
228 # define INVALID_FILE_ATTRIBUTES ((DWORD)-1)
231 #ifndef FILE_FLAG_MASK
232 # define FILE_FLAG_MASK (0xFF3C0000)
235 #ifndef FILE_ATTRIBUTE_MASK
236 # define FILE_ATTRIBUTE_MASK (0x0003FFF7)
239 #ifndef SQLITE_OMIT_WAL
240 /* Forward references to structures used for WAL */
241 typedef struct winShm winShm
; /* A connection to shared-memory */
242 typedef struct winShmNode winShmNode
; /* A region of shared-memory */
246 ** WinCE lacks native support for file locking so we have to fake it
247 ** with some code of our own.
250 typedef struct winceLock
{
251 int nReaders
; /* Number of reader locks obtained */
252 BOOL bPending
; /* Indicates a pending lock has been obtained */
253 BOOL bReserved
; /* Indicates a reserved lock has been obtained */
254 BOOL bExclusive
; /* Indicates an exclusive lock has been obtained */
259 ** The winFile structure is a subclass of sqlite3_file* specific to the win32
260 ** portability layer.
262 typedef struct winFile winFile
;
264 const sqlite3_io_methods
*pMethod
; /*** Must be first ***/
265 sqlite3_vfs
*pVfs
; /* The VFS used to open this file */
266 HANDLE h
; /* Handle for accessing the file */
267 u8 locktype
; /* Type of lock currently held on this file */
268 short sharedLockByte
; /* Randomly chosen byte used as a shared lock */
269 u8 ctrlFlags
; /* Flags. See WINFILE_* below */
270 DWORD lastErrno
; /* The Windows errno from the last I/O error */
271 #ifndef SQLITE_OMIT_WAL
272 winShm
*pShm
; /* Instance of shared memory on this file */
274 const char *zPath
; /* Full pathname of this file */
275 int szChunk
; /* Chunk size configured by FCNTL_CHUNK_SIZE */
277 LPWSTR zDeleteOnClose
; /* Name of file to delete when closing */
278 HANDLE hMutex
; /* Mutex used to control access to shared lock */
279 HANDLE hShared
; /* Shared memory segment used for locking */
280 winceLock local
; /* Locks obtained by this instance of winFile */
281 winceLock
*shared
; /* Global shared lock memory for the file */
283 #if SQLITE_MAX_MMAP_SIZE>0
284 int nFetchOut
; /* Number of outstanding xFetch references */
285 HANDLE hMap
; /* Handle for accessing memory mapping */
286 void *pMapRegion
; /* Area memory mapped */
287 sqlite3_int64 mmapSize
; /* Size of mapped region */
288 sqlite3_int64 mmapSizeMax
; /* Configured FCNTL_MMAP_SIZE value */
293 ** The winVfsAppData structure is used for the pAppData member for all of the
294 ** Win32 VFS variants.
296 typedef struct winVfsAppData winVfsAppData
;
297 struct winVfsAppData
{
298 const sqlite3_io_methods
*pMethod
; /* The file I/O methods to use. */
299 void *pAppData
; /* The extra pAppData, if any. */
300 BOOL bNoLock
; /* Non-zero if locking is disabled. */
304 ** Allowed values for winFile.ctrlFlags
306 #define WINFILE_RDONLY 0x02 /* Connection is read only */
307 #define WINFILE_PERSIST_WAL 0x04 /* Persistent WAL mode */
308 #define WINFILE_PSOW 0x10 /* SQLITE_IOCAP_POWERSAFE_OVERWRITE */
311 * The size of the buffer used by sqlite3_win32_write_debug().
313 #ifndef SQLITE_WIN32_DBG_BUF_SIZE
314 # define SQLITE_WIN32_DBG_BUF_SIZE ((int)(4096-sizeof(DWORD)))
318 * If compiled with SQLITE_WIN32_MALLOC on Windows, we will use the
319 * various Win32 API heap functions instead of our own.
321 #ifdef SQLITE_WIN32_MALLOC
324 * If this is non-zero, an isolated heap will be created by the native Win32
325 * allocator subsystem; otherwise, the default process heap will be used. This
326 * setting has no effect when compiling for WinRT. By default, this is enabled
327 * and an isolated heap will be created to store all allocated data.
329 ******************************************************************************
330 * WARNING: It is important to note that when this setting is non-zero and the
331 * winMemShutdown function is called (e.g. by the sqlite3_shutdown
332 * function), all data that was allocated using the isolated heap will
333 * be freed immediately and any attempt to access any of that freed
334 * data will almost certainly result in an immediate access violation.
335 ******************************************************************************
337 #ifndef SQLITE_WIN32_HEAP_CREATE
338 # define SQLITE_WIN32_HEAP_CREATE (TRUE)
342 * This is the maximum possible initial size of the Win32-specific heap, in
345 #ifndef SQLITE_WIN32_HEAP_MAX_INIT_SIZE
346 # define SQLITE_WIN32_HEAP_MAX_INIT_SIZE (4294967295U)
350 * This is the extra space for the initial size of the Win32-specific heap,
351 * in bytes. This value may be zero.
353 #ifndef SQLITE_WIN32_HEAP_INIT_EXTRA
354 # define SQLITE_WIN32_HEAP_INIT_EXTRA (4194304)
358 * Calculate the maximum legal cache size, in pages, based on the maximum
359 * possible initial heap size and the default page size, setting aside the
360 * needed extra space.
362 #ifndef SQLITE_WIN32_MAX_CACHE_SIZE
363 # define SQLITE_WIN32_MAX_CACHE_SIZE (((SQLITE_WIN32_HEAP_MAX_INIT_SIZE) - \
364 (SQLITE_WIN32_HEAP_INIT_EXTRA)) / \
365 (SQLITE_DEFAULT_PAGE_SIZE))
369 * This is cache size used in the calculation of the initial size of the
370 * Win32-specific heap. It cannot be negative.
372 #ifndef SQLITE_WIN32_CACHE_SIZE
373 # if SQLITE_DEFAULT_CACHE_SIZE>=0
374 # define SQLITE_WIN32_CACHE_SIZE (SQLITE_DEFAULT_CACHE_SIZE)
376 # define SQLITE_WIN32_CACHE_SIZE (-(SQLITE_DEFAULT_CACHE_SIZE))
381 * Make sure that the calculated cache size, in pages, cannot cause the
382 * initial size of the Win32-specific heap to exceed the maximum amount
383 * of memory that can be specified in the call to HeapCreate.
385 #if SQLITE_WIN32_CACHE_SIZE>SQLITE_WIN32_MAX_CACHE_SIZE
386 # undef SQLITE_WIN32_CACHE_SIZE
387 # define SQLITE_WIN32_CACHE_SIZE (2000)
391 * The initial size of the Win32-specific heap. This value may be zero.
393 #ifndef SQLITE_WIN32_HEAP_INIT_SIZE
394 # define SQLITE_WIN32_HEAP_INIT_SIZE ((SQLITE_WIN32_CACHE_SIZE) * \
395 (SQLITE_DEFAULT_PAGE_SIZE) + \
396 (SQLITE_WIN32_HEAP_INIT_EXTRA))
400 * The maximum size of the Win32-specific heap. This value may be zero.
402 #ifndef SQLITE_WIN32_HEAP_MAX_SIZE
403 # define SQLITE_WIN32_HEAP_MAX_SIZE (0)
407 * The extra flags to use in calls to the Win32 heap APIs. This value may be
408 * zero for the default behavior.
410 #ifndef SQLITE_WIN32_HEAP_FLAGS
411 # define SQLITE_WIN32_HEAP_FLAGS (0)
416 ** The winMemData structure stores information required by the Win32-specific
417 ** sqlite3_mem_methods implementation.
419 typedef struct winMemData winMemData
;
422 u32 magic1
; /* Magic number to detect structure corruption. */
424 HANDLE hHeap
; /* The handle to our heap. */
425 BOOL bOwned
; /* Do we own the heap (i.e. destroy it on shutdown)? */
427 u32 magic2
; /* Magic number to detect structure corruption. */
432 #define WINMEM_MAGIC1 0x42b2830b
433 #define WINMEM_MAGIC2 0xbd4d7cf4
436 static struct winMemData win_mem_data
= {
447 #define winMemAssertMagic1() assert( win_mem_data.magic1==WINMEM_MAGIC1 )
448 #define winMemAssertMagic2() assert( win_mem_data.magic2==WINMEM_MAGIC2 )
449 #define winMemAssertMagic() winMemAssertMagic1(); winMemAssertMagic2();
451 #define winMemAssertMagic()
454 #define winMemGetDataPtr() &win_mem_data
455 #define winMemGetHeap() win_mem_data.hHeap
456 #define winMemGetOwned() win_mem_data.bOwned
458 static void *winMemMalloc(int nBytes
);
459 static void winMemFree(void *pPrior
);
460 static void *winMemRealloc(void *pPrior
, int nBytes
);
461 static int winMemSize(void *p
);
462 static int winMemRoundup(int n
);
463 static int winMemInit(void *pAppData
);
464 static void winMemShutdown(void *pAppData
);
466 const sqlite3_mem_methods
*sqlite3MemGetWin32(void);
467 #endif /* SQLITE_WIN32_MALLOC */
470 ** The following variable is (normally) set once and never changes
471 ** thereafter. It records whether the operating system is Win9x
474 ** 0: Operating system unknown.
475 ** 1: Operating system is Win9x.
476 ** 2: Operating system is WinNT.
478 ** In order to facilitate testing on a WinNT system, the test fixture
479 ** can manually set this value to 1 to emulate Win98 behavior.
482 LONG SQLITE_WIN32_VOLATILE sqlite3_os_type
= 0;
484 static LONG SQLITE_WIN32_VOLATILE sqlite3_os_type
= 0;
488 # define SYSCALL sqlite3_syscall_ptr
492 ** This function is not available on Windows CE or WinRT.
495 #if SQLITE_OS_WINCE || SQLITE_OS_WINRT
496 # define osAreFileApisANSI() 1
500 ** Many system calls are accessed through pointer-to-functions so that
501 ** they may be overridden at runtime to facilitate fault injection during
502 ** testing and sandboxing. The following array holds the names and pointers
503 ** to all overrideable system calls.
505 static struct win_syscall
{
506 const char *zName
; /* Name of the system call */
507 sqlite3_syscall_ptr pCurrent
; /* Current value of the system call */
508 sqlite3_syscall_ptr pDefault
; /* Default value */
510 #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT
511 { "AreFileApisANSI", (SYSCALL
)AreFileApisANSI
, 0 },
513 { "AreFileApisANSI", (SYSCALL
)0, 0 },
516 #ifndef osAreFileApisANSI
517 #define osAreFileApisANSI ((BOOL(WINAPI*)(VOID))aSyscall[0].pCurrent)
520 #if SQLITE_OS_WINCE && defined(SQLITE_WIN32_HAS_WIDE)
521 { "CharLowerW", (SYSCALL
)CharLowerW
, 0 },
523 { "CharLowerW", (SYSCALL
)0, 0 },
526 #define osCharLowerW ((LPWSTR(WINAPI*)(LPWSTR))aSyscall[1].pCurrent)
528 #if SQLITE_OS_WINCE && defined(SQLITE_WIN32_HAS_WIDE)
529 { "CharUpperW", (SYSCALL
)CharUpperW
, 0 },
531 { "CharUpperW", (SYSCALL
)0, 0 },
534 #define osCharUpperW ((LPWSTR(WINAPI*)(LPWSTR))aSyscall[2].pCurrent)
536 { "CloseHandle", (SYSCALL
)CloseHandle
, 0 },
538 #define osCloseHandle ((BOOL(WINAPI*)(HANDLE))aSyscall[3].pCurrent)
540 #if defined(SQLITE_WIN32_HAS_ANSI)
541 { "CreateFileA", (SYSCALL
)CreateFileA
, 0 },
543 { "CreateFileA", (SYSCALL
)0, 0 },
546 #define osCreateFileA ((HANDLE(WINAPI*)(LPCSTR,DWORD,DWORD, \
547 LPSECURITY_ATTRIBUTES,DWORD,DWORD,HANDLE))aSyscall[4].pCurrent)
549 #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE)
550 { "CreateFileW", (SYSCALL
)CreateFileW
, 0 },
552 { "CreateFileW", (SYSCALL
)0, 0 },
555 #define osCreateFileW ((HANDLE(WINAPI*)(LPCWSTR,DWORD,DWORD, \
556 LPSECURITY_ATTRIBUTES,DWORD,DWORD,HANDLE))aSyscall[5].pCurrent)
558 #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_ANSI) && \
559 (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0) && \
560 SQLITE_WIN32_CREATEFILEMAPPINGA
561 { "CreateFileMappingA", (SYSCALL
)CreateFileMappingA
, 0 },
563 { "CreateFileMappingA", (SYSCALL
)0, 0 },
566 #define osCreateFileMappingA ((HANDLE(WINAPI*)(HANDLE,LPSECURITY_ATTRIBUTES, \
567 DWORD,DWORD,DWORD,LPCSTR))aSyscall[6].pCurrent)
569 #if SQLITE_OS_WINCE || (!SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) && \
570 (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0))
571 { "CreateFileMappingW", (SYSCALL
)CreateFileMappingW
, 0 },
573 { "CreateFileMappingW", (SYSCALL
)0, 0 },
576 #define osCreateFileMappingW ((HANDLE(WINAPI*)(HANDLE,LPSECURITY_ATTRIBUTES, \
577 DWORD,DWORD,DWORD,LPCWSTR))aSyscall[7].pCurrent)
579 #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE)
580 { "CreateMutexW", (SYSCALL
)CreateMutexW
, 0 },
582 { "CreateMutexW", (SYSCALL
)0, 0 },
585 #define osCreateMutexW ((HANDLE(WINAPI*)(LPSECURITY_ATTRIBUTES,BOOL, \
586 LPCWSTR))aSyscall[8].pCurrent)
588 #if defined(SQLITE_WIN32_HAS_ANSI)
589 { "DeleteFileA", (SYSCALL
)DeleteFileA
, 0 },
591 { "DeleteFileA", (SYSCALL
)0, 0 },
594 #define osDeleteFileA ((BOOL(WINAPI*)(LPCSTR))aSyscall[9].pCurrent)
596 #if defined(SQLITE_WIN32_HAS_WIDE)
597 { "DeleteFileW", (SYSCALL
)DeleteFileW
, 0 },
599 { "DeleteFileW", (SYSCALL
)0, 0 },
602 #define osDeleteFileW ((BOOL(WINAPI*)(LPCWSTR))aSyscall[10].pCurrent)
605 { "FileTimeToLocalFileTime", (SYSCALL
)FileTimeToLocalFileTime
, 0 },
607 { "FileTimeToLocalFileTime", (SYSCALL
)0, 0 },
610 #define osFileTimeToLocalFileTime ((BOOL(WINAPI*)(CONST FILETIME*, \
611 LPFILETIME))aSyscall[11].pCurrent)
614 { "FileTimeToSystemTime", (SYSCALL
)FileTimeToSystemTime
, 0 },
616 { "FileTimeToSystemTime", (SYSCALL
)0, 0 },
619 #define osFileTimeToSystemTime ((BOOL(WINAPI*)(CONST FILETIME*, \
620 LPSYSTEMTIME))aSyscall[12].pCurrent)
622 { "FlushFileBuffers", (SYSCALL
)FlushFileBuffers
, 0 },
624 #define osFlushFileBuffers ((BOOL(WINAPI*)(HANDLE))aSyscall[13].pCurrent)
626 #if defined(SQLITE_WIN32_HAS_ANSI)
627 { "FormatMessageA", (SYSCALL
)FormatMessageA
, 0 },
629 { "FormatMessageA", (SYSCALL
)0, 0 },
632 #define osFormatMessageA ((DWORD(WINAPI*)(DWORD,LPCVOID,DWORD,DWORD,LPSTR, \
633 DWORD,va_list*))aSyscall[14].pCurrent)
635 #if defined(SQLITE_WIN32_HAS_WIDE)
636 { "FormatMessageW", (SYSCALL
)FormatMessageW
, 0 },
638 { "FormatMessageW", (SYSCALL
)0, 0 },
641 #define osFormatMessageW ((DWORD(WINAPI*)(DWORD,LPCVOID,DWORD,DWORD,LPWSTR, \
642 DWORD,va_list*))aSyscall[15].pCurrent)
644 #if !defined(SQLITE_OMIT_LOAD_EXTENSION)
645 { "FreeLibrary", (SYSCALL
)FreeLibrary
, 0 },
647 { "FreeLibrary", (SYSCALL
)0, 0 },
650 #define osFreeLibrary ((BOOL(WINAPI*)(HMODULE))aSyscall[16].pCurrent)
652 { "GetCurrentProcessId", (SYSCALL
)GetCurrentProcessId
, 0 },
654 #define osGetCurrentProcessId ((DWORD(WINAPI*)(VOID))aSyscall[17].pCurrent)
656 #if !SQLITE_OS_WINCE && defined(SQLITE_WIN32_HAS_ANSI)
657 { "GetDiskFreeSpaceA", (SYSCALL
)GetDiskFreeSpaceA
, 0 },
659 { "GetDiskFreeSpaceA", (SYSCALL
)0, 0 },
662 #define osGetDiskFreeSpaceA ((BOOL(WINAPI*)(LPCSTR,LPDWORD,LPDWORD,LPDWORD, \
663 LPDWORD))aSyscall[18].pCurrent)
665 #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE)
666 { "GetDiskFreeSpaceW", (SYSCALL
)GetDiskFreeSpaceW
, 0 },
668 { "GetDiskFreeSpaceW", (SYSCALL
)0, 0 },
671 #define osGetDiskFreeSpaceW ((BOOL(WINAPI*)(LPCWSTR,LPDWORD,LPDWORD,LPDWORD, \
672 LPDWORD))aSyscall[19].pCurrent)
674 #if defined(SQLITE_WIN32_HAS_ANSI)
675 { "GetFileAttributesA", (SYSCALL
)GetFileAttributesA
, 0 },
677 { "GetFileAttributesA", (SYSCALL
)0, 0 },
680 #define osGetFileAttributesA ((DWORD(WINAPI*)(LPCSTR))aSyscall[20].pCurrent)
682 #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE)
683 { "GetFileAttributesW", (SYSCALL
)GetFileAttributesW
, 0 },
685 { "GetFileAttributesW", (SYSCALL
)0, 0 },
688 #define osGetFileAttributesW ((DWORD(WINAPI*)(LPCWSTR))aSyscall[21].pCurrent)
690 #if defined(SQLITE_WIN32_HAS_WIDE)
691 { "GetFileAttributesExW", (SYSCALL
)GetFileAttributesExW
, 0 },
693 { "GetFileAttributesExW", (SYSCALL
)0, 0 },
696 #define osGetFileAttributesExW ((BOOL(WINAPI*)(LPCWSTR,GET_FILEEX_INFO_LEVELS, \
697 LPVOID))aSyscall[22].pCurrent)
700 { "GetFileSize", (SYSCALL
)GetFileSize
, 0 },
702 { "GetFileSize", (SYSCALL
)0, 0 },
705 #define osGetFileSize ((DWORD(WINAPI*)(HANDLE,LPDWORD))aSyscall[23].pCurrent)
707 #if !SQLITE_OS_WINCE && defined(SQLITE_WIN32_HAS_ANSI)
708 { "GetFullPathNameA", (SYSCALL
)GetFullPathNameA
, 0 },
710 { "GetFullPathNameA", (SYSCALL
)0, 0 },
713 #define osGetFullPathNameA ((DWORD(WINAPI*)(LPCSTR,DWORD,LPSTR, \
714 LPSTR*))aSyscall[24].pCurrent)
716 #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE)
717 { "GetFullPathNameW", (SYSCALL
)GetFullPathNameW
, 0 },
719 { "GetFullPathNameW", (SYSCALL
)0, 0 },
722 #define osGetFullPathNameW ((DWORD(WINAPI*)(LPCWSTR,DWORD,LPWSTR, \
723 LPWSTR*))aSyscall[25].pCurrent)
725 { "GetLastError", (SYSCALL
)GetLastError
, 0 },
727 #define osGetLastError ((DWORD(WINAPI*)(VOID))aSyscall[26].pCurrent)
729 #if !defined(SQLITE_OMIT_LOAD_EXTENSION)
731 /* The GetProcAddressA() routine is only available on Windows CE. */
732 { "GetProcAddressA", (SYSCALL
)GetProcAddressA
, 0 },
734 /* All other Windows platforms expect GetProcAddress() to take
735 ** an ANSI string regardless of the _UNICODE setting */
736 { "GetProcAddressA", (SYSCALL
)GetProcAddress
, 0 },
739 { "GetProcAddressA", (SYSCALL
)0, 0 },
742 #define osGetProcAddressA ((FARPROC(WINAPI*)(HMODULE, \
743 LPCSTR))aSyscall[27].pCurrent)
746 { "GetSystemInfo", (SYSCALL
)GetSystemInfo
, 0 },
748 { "GetSystemInfo", (SYSCALL
)0, 0 },
751 #define osGetSystemInfo ((VOID(WINAPI*)(LPSYSTEM_INFO))aSyscall[28].pCurrent)
753 { "GetSystemTime", (SYSCALL
)GetSystemTime
, 0 },
755 #define osGetSystemTime ((VOID(WINAPI*)(LPSYSTEMTIME))aSyscall[29].pCurrent)
758 { "GetSystemTimeAsFileTime", (SYSCALL
)GetSystemTimeAsFileTime
, 0 },
760 { "GetSystemTimeAsFileTime", (SYSCALL
)0, 0 },
763 #define osGetSystemTimeAsFileTime ((VOID(WINAPI*)( \
764 LPFILETIME))aSyscall[30].pCurrent)
766 #if defined(SQLITE_WIN32_HAS_ANSI)
767 { "GetTempPathA", (SYSCALL
)GetTempPathA
, 0 },
769 { "GetTempPathA", (SYSCALL
)0, 0 },
772 #define osGetTempPathA ((DWORD(WINAPI*)(DWORD,LPSTR))aSyscall[31].pCurrent)
774 #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE)
775 { "GetTempPathW", (SYSCALL
)GetTempPathW
, 0 },
777 { "GetTempPathW", (SYSCALL
)0, 0 },
780 #define osGetTempPathW ((DWORD(WINAPI*)(DWORD,LPWSTR))aSyscall[32].pCurrent)
783 { "GetTickCount", (SYSCALL
)GetTickCount
, 0 },
785 { "GetTickCount", (SYSCALL
)0, 0 },
788 #define osGetTickCount ((DWORD(WINAPI*)(VOID))aSyscall[33].pCurrent)
790 #if defined(SQLITE_WIN32_HAS_ANSI) && SQLITE_WIN32_GETVERSIONEX
791 { "GetVersionExA", (SYSCALL
)GetVersionExA
, 0 },
793 { "GetVersionExA", (SYSCALL
)0, 0 },
796 #define osGetVersionExA ((BOOL(WINAPI*)( \
797 LPOSVERSIONINFOA))aSyscall[34].pCurrent)
799 #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) && \
800 SQLITE_WIN32_GETVERSIONEX
801 { "GetVersionExW", (SYSCALL
)GetVersionExW
, 0 },
803 { "GetVersionExW", (SYSCALL
)0, 0 },
806 #define osGetVersionExW ((BOOL(WINAPI*)( \
807 LPOSVERSIONINFOW))aSyscall[35].pCurrent)
809 { "HeapAlloc", (SYSCALL
)HeapAlloc
, 0 },
811 #define osHeapAlloc ((LPVOID(WINAPI*)(HANDLE,DWORD, \
812 SIZE_T))aSyscall[36].pCurrent)
815 { "HeapCreate", (SYSCALL
)HeapCreate
, 0 },
817 { "HeapCreate", (SYSCALL
)0, 0 },
820 #define osHeapCreate ((HANDLE(WINAPI*)(DWORD,SIZE_T, \
821 SIZE_T))aSyscall[37].pCurrent)
824 { "HeapDestroy", (SYSCALL
)HeapDestroy
, 0 },
826 { "HeapDestroy", (SYSCALL
)0, 0 },
829 #define osHeapDestroy ((BOOL(WINAPI*)(HANDLE))aSyscall[38].pCurrent)
831 { "HeapFree", (SYSCALL
)HeapFree
, 0 },
833 #define osHeapFree ((BOOL(WINAPI*)(HANDLE,DWORD,LPVOID))aSyscall[39].pCurrent)
835 { "HeapReAlloc", (SYSCALL
)HeapReAlloc
, 0 },
837 #define osHeapReAlloc ((LPVOID(WINAPI*)(HANDLE,DWORD,LPVOID, \
838 SIZE_T))aSyscall[40].pCurrent)
840 { "HeapSize", (SYSCALL
)HeapSize
, 0 },
842 #define osHeapSize ((SIZE_T(WINAPI*)(HANDLE,DWORD, \
843 LPCVOID))aSyscall[41].pCurrent)
846 { "HeapValidate", (SYSCALL
)HeapValidate
, 0 },
848 { "HeapValidate", (SYSCALL
)0, 0 },
851 #define osHeapValidate ((BOOL(WINAPI*)(HANDLE,DWORD, \
852 LPCVOID))aSyscall[42].pCurrent)
854 #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT
855 { "HeapCompact", (SYSCALL
)HeapCompact
, 0 },
857 { "HeapCompact", (SYSCALL
)0, 0 },
860 #define osHeapCompact ((UINT(WINAPI*)(HANDLE,DWORD))aSyscall[43].pCurrent)
862 #if defined(SQLITE_WIN32_HAS_ANSI) && !defined(SQLITE_OMIT_LOAD_EXTENSION)
863 { "LoadLibraryA", (SYSCALL
)LoadLibraryA
, 0 },
865 { "LoadLibraryA", (SYSCALL
)0, 0 },
868 #define osLoadLibraryA ((HMODULE(WINAPI*)(LPCSTR))aSyscall[44].pCurrent)
870 #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) && \
871 !defined(SQLITE_OMIT_LOAD_EXTENSION)
872 { "LoadLibraryW", (SYSCALL
)LoadLibraryW
, 0 },
874 { "LoadLibraryW", (SYSCALL
)0, 0 },
877 #define osLoadLibraryW ((HMODULE(WINAPI*)(LPCWSTR))aSyscall[45].pCurrent)
880 { "LocalFree", (SYSCALL
)LocalFree
, 0 },
882 { "LocalFree", (SYSCALL
)0, 0 },
885 #define osLocalFree ((HLOCAL(WINAPI*)(HLOCAL))aSyscall[46].pCurrent)
887 #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT
888 { "LockFile", (SYSCALL
)LockFile
, 0 },
890 { "LockFile", (SYSCALL
)0, 0 },
894 #define osLockFile ((BOOL(WINAPI*)(HANDLE,DWORD,DWORD,DWORD, \
895 DWORD))aSyscall[47].pCurrent)
899 { "LockFileEx", (SYSCALL
)LockFileEx
, 0 },
901 { "LockFileEx", (SYSCALL
)0, 0 },
905 #define osLockFileEx ((BOOL(WINAPI*)(HANDLE,DWORD,DWORD,DWORD,DWORD, \
906 LPOVERLAPPED))aSyscall[48].pCurrent)
909 #if SQLITE_OS_WINCE || (!SQLITE_OS_WINRT && \
910 (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0))
911 { "MapViewOfFile", (SYSCALL
)MapViewOfFile
, 0 },
913 { "MapViewOfFile", (SYSCALL
)0, 0 },
916 #define osMapViewOfFile ((LPVOID(WINAPI*)(HANDLE,DWORD,DWORD,DWORD, \
917 SIZE_T))aSyscall[49].pCurrent)
919 { "MultiByteToWideChar", (SYSCALL
)MultiByteToWideChar
, 0 },
921 #define osMultiByteToWideChar ((int(WINAPI*)(UINT,DWORD,LPCSTR,int,LPWSTR, \
922 int))aSyscall[50].pCurrent)
924 { "QueryPerformanceCounter", (SYSCALL
)QueryPerformanceCounter
, 0 },
926 #define osQueryPerformanceCounter ((BOOL(WINAPI*)( \
927 LARGE_INTEGER*))aSyscall[51].pCurrent)
929 { "ReadFile", (SYSCALL
)ReadFile
, 0 },
931 #define osReadFile ((BOOL(WINAPI*)(HANDLE,LPVOID,DWORD,LPDWORD, \
932 LPOVERLAPPED))aSyscall[52].pCurrent)
934 { "SetEndOfFile", (SYSCALL
)SetEndOfFile
, 0 },
936 #define osSetEndOfFile ((BOOL(WINAPI*)(HANDLE))aSyscall[53].pCurrent)
939 { "SetFilePointer", (SYSCALL
)SetFilePointer
, 0 },
941 { "SetFilePointer", (SYSCALL
)0, 0 },
944 #define osSetFilePointer ((DWORD(WINAPI*)(HANDLE,LONG,PLONG, \
945 DWORD))aSyscall[54].pCurrent)
948 { "Sleep", (SYSCALL
)Sleep
, 0 },
950 { "Sleep", (SYSCALL
)0, 0 },
953 #define osSleep ((VOID(WINAPI*)(DWORD))aSyscall[55].pCurrent)
955 { "SystemTimeToFileTime", (SYSCALL
)SystemTimeToFileTime
, 0 },
957 #define osSystemTimeToFileTime ((BOOL(WINAPI*)(CONST SYSTEMTIME*, \
958 LPFILETIME))aSyscall[56].pCurrent)
960 #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT
961 { "UnlockFile", (SYSCALL
)UnlockFile
, 0 },
963 { "UnlockFile", (SYSCALL
)0, 0 },
967 #define osUnlockFile ((BOOL(WINAPI*)(HANDLE,DWORD,DWORD,DWORD, \
968 DWORD))aSyscall[57].pCurrent)
972 { "UnlockFileEx", (SYSCALL
)UnlockFileEx
, 0 },
974 { "UnlockFileEx", (SYSCALL
)0, 0 },
977 #define osUnlockFileEx ((BOOL(WINAPI*)(HANDLE,DWORD,DWORD,DWORD, \
978 LPOVERLAPPED))aSyscall[58].pCurrent)
980 #if SQLITE_OS_WINCE || !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0
981 { "UnmapViewOfFile", (SYSCALL
)UnmapViewOfFile
, 0 },
983 { "UnmapViewOfFile", (SYSCALL
)0, 0 },
986 #define osUnmapViewOfFile ((BOOL(WINAPI*)(LPCVOID))aSyscall[59].pCurrent)
988 { "WideCharToMultiByte", (SYSCALL
)WideCharToMultiByte
, 0 },
990 #define osWideCharToMultiByte ((int(WINAPI*)(UINT,DWORD,LPCWSTR,int,LPSTR,int, \
991 LPCSTR,LPBOOL))aSyscall[60].pCurrent)
993 { "WriteFile", (SYSCALL
)WriteFile
, 0 },
995 #define osWriteFile ((BOOL(WINAPI*)(HANDLE,LPCVOID,DWORD,LPDWORD, \
996 LPOVERLAPPED))aSyscall[61].pCurrent)
999 { "CreateEventExW", (SYSCALL
)CreateEventExW
, 0 },
1001 { "CreateEventExW", (SYSCALL
)0, 0 },
1004 #define osCreateEventExW ((HANDLE(WINAPI*)(LPSECURITY_ATTRIBUTES,LPCWSTR, \
1005 DWORD,DWORD))aSyscall[62].pCurrent)
1007 #if !SQLITE_OS_WINRT
1008 { "WaitForSingleObject", (SYSCALL
)WaitForSingleObject
, 0 },
1010 { "WaitForSingleObject", (SYSCALL
)0, 0 },
1013 #define osWaitForSingleObject ((DWORD(WINAPI*)(HANDLE, \
1014 DWORD))aSyscall[63].pCurrent)
1016 #if !SQLITE_OS_WINCE
1017 { "WaitForSingleObjectEx", (SYSCALL
)WaitForSingleObjectEx
, 0 },
1019 { "WaitForSingleObjectEx", (SYSCALL
)0, 0 },
1022 #define osWaitForSingleObjectEx ((DWORD(WINAPI*)(HANDLE,DWORD, \
1023 BOOL))aSyscall[64].pCurrent)
1026 { "SetFilePointerEx", (SYSCALL
)SetFilePointerEx
, 0 },
1028 { "SetFilePointerEx", (SYSCALL
)0, 0 },
1031 #define osSetFilePointerEx ((BOOL(WINAPI*)(HANDLE,LARGE_INTEGER, \
1032 PLARGE_INTEGER,DWORD))aSyscall[65].pCurrent)
1035 { "GetFileInformationByHandleEx", (SYSCALL
)GetFileInformationByHandleEx
, 0 },
1037 { "GetFileInformationByHandleEx", (SYSCALL
)0, 0 },
1040 #define osGetFileInformationByHandleEx ((BOOL(WINAPI*)(HANDLE, \
1041 FILE_INFO_BY_HANDLE_CLASS,LPVOID,DWORD))aSyscall[66].pCurrent)
1043 #if SQLITE_OS_WINRT && (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0)
1044 { "MapViewOfFileFromApp", (SYSCALL
)MapViewOfFileFromApp
, 0 },
1046 { "MapViewOfFileFromApp", (SYSCALL
)0, 0 },
1049 #define osMapViewOfFileFromApp ((LPVOID(WINAPI*)(HANDLE,ULONG,ULONG64, \
1050 SIZE_T))aSyscall[67].pCurrent)
1053 { "CreateFile2", (SYSCALL
)CreateFile2
, 0 },
1055 { "CreateFile2", (SYSCALL
)0, 0 },
1058 #define osCreateFile2 ((HANDLE(WINAPI*)(LPCWSTR,DWORD,DWORD,DWORD, \
1059 LPCREATEFILE2_EXTENDED_PARAMETERS))aSyscall[68].pCurrent)
1061 #if SQLITE_OS_WINRT && !defined(SQLITE_OMIT_LOAD_EXTENSION)
1062 { "LoadPackagedLibrary", (SYSCALL
)LoadPackagedLibrary
, 0 },
1064 { "LoadPackagedLibrary", (SYSCALL
)0, 0 },
1067 #define osLoadPackagedLibrary ((HMODULE(WINAPI*)(LPCWSTR, \
1068 DWORD))aSyscall[69].pCurrent)
1071 { "GetTickCount64", (SYSCALL
)GetTickCount64
, 0 },
1073 { "GetTickCount64", (SYSCALL
)0, 0 },
1076 #define osGetTickCount64 ((ULONGLONG(WINAPI*)(VOID))aSyscall[70].pCurrent)
1079 { "GetNativeSystemInfo", (SYSCALL
)GetNativeSystemInfo
, 0 },
1081 { "GetNativeSystemInfo", (SYSCALL
)0, 0 },
1084 #define osGetNativeSystemInfo ((VOID(WINAPI*)( \
1085 LPSYSTEM_INFO))aSyscall[71].pCurrent)
1087 #if defined(SQLITE_WIN32_HAS_ANSI)
1088 { "OutputDebugStringA", (SYSCALL
)OutputDebugStringA
, 0 },
1090 { "OutputDebugStringA", (SYSCALL
)0, 0 },
1093 #define osOutputDebugStringA ((VOID(WINAPI*)(LPCSTR))aSyscall[72].pCurrent)
1095 #if defined(SQLITE_WIN32_HAS_WIDE)
1096 { "OutputDebugStringW", (SYSCALL
)OutputDebugStringW
, 0 },
1098 { "OutputDebugStringW", (SYSCALL
)0, 0 },
1101 #define osOutputDebugStringW ((VOID(WINAPI*)(LPCWSTR))aSyscall[73].pCurrent)
1103 { "GetProcessHeap", (SYSCALL
)GetProcessHeap
, 0 },
1105 #define osGetProcessHeap ((HANDLE(WINAPI*)(VOID))aSyscall[74].pCurrent)
1107 #if SQLITE_OS_WINRT && (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0)
1108 { "CreateFileMappingFromApp", (SYSCALL
)CreateFileMappingFromApp
, 0 },
1110 { "CreateFileMappingFromApp", (SYSCALL
)0, 0 },
1113 #define osCreateFileMappingFromApp ((HANDLE(WINAPI*)(HANDLE, \
1114 LPSECURITY_ATTRIBUTES,ULONG,ULONG64,LPCWSTR))aSyscall[75].pCurrent)
1117 ** NOTE: On some sub-platforms, the InterlockedCompareExchange "function"
1118 ** is really just a macro that uses a compiler intrinsic (e.g. x64).
1119 ** So do not try to make this is into a redefinable interface.
1121 #if defined(InterlockedCompareExchange)
1122 { "InterlockedCompareExchange", (SYSCALL
)0, 0 },
1124 #define osInterlockedCompareExchange InterlockedCompareExchange
1126 { "InterlockedCompareExchange", (SYSCALL
)InterlockedCompareExchange
, 0 },
1128 #define osInterlockedCompareExchange ((LONG(WINAPI*)(LONG \
1129 SQLITE_WIN32_VOLATILE*, LONG,LONG))aSyscall[76].pCurrent)
1130 #endif /* defined(InterlockedCompareExchange) */
1132 #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && SQLITE_WIN32_USE_UUID
1133 { "UuidCreate", (SYSCALL
)UuidCreate
, 0 },
1135 { "UuidCreate", (SYSCALL
)0, 0 },
1138 #define osUuidCreate ((RPC_STATUS(RPC_ENTRY*)(UUID*))aSyscall[77].pCurrent)
1140 #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && SQLITE_WIN32_USE_UUID
1141 { "UuidCreateSequential", (SYSCALL
)UuidCreateSequential
, 0 },
1143 { "UuidCreateSequential", (SYSCALL
)0, 0 },
1146 #define osUuidCreateSequential \
1147 ((RPC_STATUS(RPC_ENTRY*)(UUID*))aSyscall[78].pCurrent)
1149 #if !defined(SQLITE_NO_SYNC) && SQLITE_MAX_MMAP_SIZE>0
1150 { "FlushViewOfFile", (SYSCALL
)FlushViewOfFile
, 0 },
1152 { "FlushViewOfFile", (SYSCALL
)0, 0 },
1155 #define osFlushViewOfFile \
1156 ((BOOL(WINAPI*)(LPCVOID,SIZE_T))aSyscall[79].pCurrent)
1158 }; /* End of the overrideable system calls */
1161 ** This is the xSetSystemCall() method of sqlite3_vfs for all of the
1162 ** "win32" VFSes. Return SQLITE_OK opon successfully updating the
1163 ** system call pointer, or SQLITE_NOTFOUND if there is no configurable
1164 ** system call named zName.
1166 static int winSetSystemCall(
1167 sqlite3_vfs
*pNotUsed
, /* The VFS pointer. Not used */
1168 const char *zName
, /* Name of system call to override */
1169 sqlite3_syscall_ptr pNewFunc
/* Pointer to new system call value */
1172 int rc
= SQLITE_NOTFOUND
;
1174 UNUSED_PARAMETER(pNotUsed
);
1176 /* If no zName is given, restore all system calls to their default
1177 ** settings and return NULL
1180 for(i
=0; i
<sizeof(aSyscall
)/sizeof(aSyscall
[0]); i
++){
1181 if( aSyscall
[i
].pDefault
){
1182 aSyscall
[i
].pCurrent
= aSyscall
[i
].pDefault
;
1186 /* If zName is specified, operate on only the one system call
1189 for(i
=0; i
<sizeof(aSyscall
)/sizeof(aSyscall
[0]); i
++){
1190 if( strcmp(zName
, aSyscall
[i
].zName
)==0 ){
1191 if( aSyscall
[i
].pDefault
==0 ){
1192 aSyscall
[i
].pDefault
= aSyscall
[i
].pCurrent
;
1195 if( pNewFunc
==0 ) pNewFunc
= aSyscall
[i
].pDefault
;
1196 aSyscall
[i
].pCurrent
= pNewFunc
;
1205 ** Return the value of a system call. Return NULL if zName is not a
1206 ** recognized system call name. NULL is also returned if the system call
1207 ** is currently undefined.
1209 static sqlite3_syscall_ptr
winGetSystemCall(
1210 sqlite3_vfs
*pNotUsed
,
1215 UNUSED_PARAMETER(pNotUsed
);
1216 for(i
=0; i
<sizeof(aSyscall
)/sizeof(aSyscall
[0]); i
++){
1217 if( strcmp(zName
, aSyscall
[i
].zName
)==0 ) return aSyscall
[i
].pCurrent
;
1223 ** Return the name of the first system call after zName. If zName==NULL
1224 ** then return the name of the first system call. Return NULL if zName
1225 ** is the last system call or if zName is not the name of a valid
1228 static const char *winNextSystemCall(sqlite3_vfs
*p
, const char *zName
){
1231 UNUSED_PARAMETER(p
);
1233 for(i
=0; i
<ArraySize(aSyscall
)-1; i
++){
1234 if( strcmp(zName
, aSyscall
[i
].zName
)==0 ) break;
1237 for(i
++; i
<ArraySize(aSyscall
); i
++){
1238 if( aSyscall
[i
].pCurrent
!=0 ) return aSyscall
[i
].zName
;
1243 #ifdef SQLITE_WIN32_MALLOC
1245 ** If a Win32 native heap has been configured, this function will attempt to
1246 ** compact it. Upon success, SQLITE_OK will be returned. Upon failure, one
1247 ** of SQLITE_NOMEM, SQLITE_ERROR, or SQLITE_NOTFOUND will be returned. The
1248 ** "pnLargest" argument, if non-zero, will be used to return the size of the
1249 ** largest committed free block in the heap, in bytes.
1251 int sqlite3_win32_compact_heap(LPUINT pnLargest
){
1256 winMemAssertMagic();
1257 hHeap
= winMemGetHeap();
1259 assert( hHeap
!=INVALID_HANDLE_VALUE
);
1260 #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE)
1261 assert( osHeapValidate(hHeap
, SQLITE_WIN32_HEAP_FLAGS
, NULL
) );
1263 #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT
1264 if( (nLargest
=osHeapCompact(hHeap
, SQLITE_WIN32_HEAP_FLAGS
))==0 ){
1265 DWORD lastErrno
= osGetLastError();
1266 if( lastErrno
==NO_ERROR
){
1267 sqlite3_log(SQLITE_NOMEM
, "failed to HeapCompact (no space), heap=%p",
1269 rc
= SQLITE_NOMEM_BKPT
;
1271 sqlite3_log(SQLITE_ERROR
, "failed to HeapCompact (%lu), heap=%p",
1272 osGetLastError(), (void*)hHeap
);
1277 sqlite3_log(SQLITE_NOTFOUND
, "failed to HeapCompact, heap=%p",
1279 rc
= SQLITE_NOTFOUND
;
1281 if( pnLargest
) *pnLargest
= nLargest
;
1286 ** If a Win32 native heap has been configured, this function will attempt to
1287 ** destroy and recreate it. If the Win32 native heap is not isolated and/or
1288 ** the sqlite3_memory_used() function does not return zero, SQLITE_BUSY will
1289 ** be returned and no changes will be made to the Win32 native heap.
1291 int sqlite3_win32_reset_heap(){
1293 MUTEX_LOGIC( sqlite3_mutex
*pMainMtx
; ) /* The main static mutex */
1294 MUTEX_LOGIC( sqlite3_mutex
*pMem
; ) /* The memsys static mutex */
1295 MUTEX_LOGIC( pMainMtx
= sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN
); )
1296 MUTEX_LOGIC( pMem
= sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MEM
); )
1297 sqlite3_mutex_enter(pMainMtx
);
1298 sqlite3_mutex_enter(pMem
);
1299 winMemAssertMagic();
1300 if( winMemGetHeap()!=NULL
&& winMemGetOwned() && sqlite3_memory_used()==0 ){
1302 ** At this point, there should be no outstanding memory allocations on
1303 ** the heap. Also, since both the main and memsys locks are currently
1304 ** being held by us, no other function (i.e. from another thread) should
1305 ** be able to even access the heap. Attempt to destroy and recreate our
1306 ** isolated Win32 native heap now.
1308 assert( winMemGetHeap()!=NULL
);
1309 assert( winMemGetOwned() );
1310 assert( sqlite3_memory_used()==0 );
1311 winMemShutdown(winMemGetDataPtr());
1312 assert( winMemGetHeap()==NULL
);
1313 assert( !winMemGetOwned() );
1314 assert( sqlite3_memory_used()==0 );
1315 rc
= winMemInit(winMemGetDataPtr());
1316 assert( rc
!=SQLITE_OK
|| winMemGetHeap()!=NULL
);
1317 assert( rc
!=SQLITE_OK
|| winMemGetOwned() );
1318 assert( rc
!=SQLITE_OK
|| sqlite3_memory_used()==0 );
1321 ** The Win32 native heap cannot be modified because it may be in use.
1325 sqlite3_mutex_leave(pMem
);
1326 sqlite3_mutex_leave(pMainMtx
);
1329 #endif /* SQLITE_WIN32_MALLOC */
1332 ** This function outputs the specified (ANSI) string to the Win32 debugger
1336 void sqlite3_win32_write_debug(const char *zBuf
, int nBuf
){
1337 char zDbgBuf
[SQLITE_WIN32_DBG_BUF_SIZE
];
1338 int nMin
= MIN(nBuf
, (SQLITE_WIN32_DBG_BUF_SIZE
- 1)); /* may be negative. */
1339 if( nMin
<-1 ) nMin
= -1; /* all negative values become -1. */
1340 assert( nMin
==-1 || nMin
==0 || nMin
<SQLITE_WIN32_DBG_BUF_SIZE
);
1341 #ifdef SQLITE_ENABLE_API_ARMOR
1343 (void)SQLITE_MISUSE_BKPT
;
1347 #if defined(SQLITE_WIN32_HAS_ANSI)
1349 memset(zDbgBuf
, 0, SQLITE_WIN32_DBG_BUF_SIZE
);
1350 memcpy(zDbgBuf
, zBuf
, nMin
);
1351 osOutputDebugStringA(zDbgBuf
);
1353 osOutputDebugStringA(zBuf
);
1355 #elif defined(SQLITE_WIN32_HAS_WIDE)
1356 memset(zDbgBuf
, 0, SQLITE_WIN32_DBG_BUF_SIZE
);
1357 if ( osMultiByteToWideChar(
1358 osAreFileApisANSI() ? CP_ACP
: CP_OEMCP
, 0, zBuf
,
1359 nMin
, (LPWSTR
)zDbgBuf
, SQLITE_WIN32_DBG_BUF_SIZE
/sizeof(WCHAR
))<=0 ){
1362 osOutputDebugStringW((LPCWSTR
)zDbgBuf
);
1365 memset(zDbgBuf
, 0, SQLITE_WIN32_DBG_BUF_SIZE
);
1366 memcpy(zDbgBuf
, zBuf
, nMin
);
1367 fprintf(stderr
, "%s", zDbgBuf
);
1369 fprintf(stderr
, "%s", zBuf
);
1375 ** The following routine suspends the current thread for at least ms
1376 ** milliseconds. This is equivalent to the Win32 Sleep() interface.
1379 static HANDLE sleepObj
= NULL
;
1382 void sqlite3_win32_sleep(DWORD milliseconds
){
1384 if ( sleepObj
==NULL
){
1385 sleepObj
= osCreateEventExW(NULL
, NULL
, CREATE_EVENT_MANUAL_RESET
,
1388 assert( sleepObj
!=NULL
);
1389 osWaitForSingleObjectEx(sleepObj
, milliseconds
, FALSE
);
1391 osSleep(milliseconds
);
1395 #if SQLITE_MAX_WORKER_THREADS>0 && !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && \
1397 DWORD
sqlite3Win32Wait(HANDLE hObject
){
1399 while( (rc
= osWaitForSingleObjectEx(hObject
, INFINITE
,
1400 TRUE
))==WAIT_IO_COMPLETION
){}
1406 ** Return true (non-zero) if we are running under WinNT, Win2K, WinXP,
1407 ** or WinCE. Return false (zero) for Win95, Win98, or WinME.
1409 ** Here is an interesting observation: Win95, Win98, and WinME lack
1410 ** the LockFileEx() API. But we can still statically link against that
1411 ** API as long as we don't call it when running Win95/98/ME. A call to
1412 ** this routine is used to determine if the host is Win95/98/ME or
1413 ** WinNT/2K/XP so that we will know whether or not we can safely call
1414 ** the LockFileEx() API.
1417 #if !SQLITE_WIN32_GETVERSIONEX
1418 # define osIsNT() (1)
1419 #elif SQLITE_OS_WINCE || SQLITE_OS_WINRT || !defined(SQLITE_WIN32_HAS_ANSI)
1420 # define osIsNT() (1)
1421 #elif !defined(SQLITE_WIN32_HAS_WIDE)
1422 # define osIsNT() (0)
1424 # define osIsNT() ((sqlite3_os_type==2) || sqlite3_win32_is_nt())
1428 ** This function determines if the machine is running a version of Windows
1429 ** based on the NT kernel.
1431 int sqlite3_win32_is_nt(void){
1434 ** NOTE: The WinRT sub-platform is always assumed to be based on the NT
1438 #elif SQLITE_WIN32_GETVERSIONEX
1439 if( osInterlockedCompareExchange(&sqlite3_os_type
, 0, 0)==0 ){
1440 #if defined(SQLITE_WIN32_HAS_ANSI)
1441 OSVERSIONINFOA sInfo
;
1442 sInfo
.dwOSVersionInfoSize
= sizeof(sInfo
);
1443 osGetVersionExA(&sInfo
);
1444 osInterlockedCompareExchange(&sqlite3_os_type
,
1445 (sInfo
.dwPlatformId
== VER_PLATFORM_WIN32_NT
) ? 2 : 1, 0);
1446 #elif defined(SQLITE_WIN32_HAS_WIDE)
1447 OSVERSIONINFOW sInfo
;
1448 sInfo
.dwOSVersionInfoSize
= sizeof(sInfo
);
1449 osGetVersionExW(&sInfo
);
1450 osInterlockedCompareExchange(&sqlite3_os_type
,
1451 (sInfo
.dwPlatformId
== VER_PLATFORM_WIN32_NT
) ? 2 : 1, 0);
1454 return osInterlockedCompareExchange(&sqlite3_os_type
, 2, 2)==2;
1456 return osInterlockedCompareExchange(&sqlite3_os_type
, 2, 2)==2;
1459 ** NOTE: All sub-platforms where the GetVersionEx[AW] functions are
1460 ** deprecated are always assumed to be based on the NT kernel.
1466 #ifdef SQLITE_WIN32_MALLOC
1468 ** Allocate nBytes of memory.
1470 static void *winMemMalloc(int nBytes
){
1474 winMemAssertMagic();
1475 hHeap
= winMemGetHeap();
1477 assert( hHeap
!=INVALID_HANDLE_VALUE
);
1478 #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE)
1479 assert( osHeapValidate(hHeap
, SQLITE_WIN32_HEAP_FLAGS
, NULL
) );
1481 assert( nBytes
>=0 );
1482 p
= osHeapAlloc(hHeap
, SQLITE_WIN32_HEAP_FLAGS
, (SIZE_T
)nBytes
);
1484 sqlite3_log(SQLITE_NOMEM
, "failed to HeapAlloc %u bytes (%lu), heap=%p",
1485 nBytes
, osGetLastError(), (void*)hHeap
);
1493 static void winMemFree(void *pPrior
){
1496 winMemAssertMagic();
1497 hHeap
= winMemGetHeap();
1499 assert( hHeap
!=INVALID_HANDLE_VALUE
);
1500 #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE)
1501 assert( osHeapValidate(hHeap
, SQLITE_WIN32_HEAP_FLAGS
, pPrior
) );
1503 if( !pPrior
) return; /* Passing NULL to HeapFree is undefined. */
1504 if( !osHeapFree(hHeap
, SQLITE_WIN32_HEAP_FLAGS
, pPrior
) ){
1505 sqlite3_log(SQLITE_NOMEM
, "failed to HeapFree block %p (%lu), heap=%p",
1506 pPrior
, osGetLastError(), (void*)hHeap
);
1511 ** Change the size of an existing memory allocation
1513 static void *winMemRealloc(void *pPrior
, int nBytes
){
1517 winMemAssertMagic();
1518 hHeap
= winMemGetHeap();
1520 assert( hHeap
!=INVALID_HANDLE_VALUE
);
1521 #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE)
1522 assert( osHeapValidate(hHeap
, SQLITE_WIN32_HEAP_FLAGS
, pPrior
) );
1524 assert( nBytes
>=0 );
1526 p
= osHeapAlloc(hHeap
, SQLITE_WIN32_HEAP_FLAGS
, (SIZE_T
)nBytes
);
1528 p
= osHeapReAlloc(hHeap
, SQLITE_WIN32_HEAP_FLAGS
, pPrior
, (SIZE_T
)nBytes
);
1531 sqlite3_log(SQLITE_NOMEM
, "failed to %s %u bytes (%lu), heap=%p",
1532 pPrior
? "HeapReAlloc" : "HeapAlloc", nBytes
, osGetLastError(),
1539 ** Return the size of an outstanding allocation, in bytes.
1541 static int winMemSize(void *p
){
1545 winMemAssertMagic();
1546 hHeap
= winMemGetHeap();
1548 assert( hHeap
!=INVALID_HANDLE_VALUE
);
1549 #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE)
1550 assert( osHeapValidate(hHeap
, SQLITE_WIN32_HEAP_FLAGS
, p
) );
1553 n
= osHeapSize(hHeap
, SQLITE_WIN32_HEAP_FLAGS
, p
);
1554 if( n
==(SIZE_T
)-1 ){
1555 sqlite3_log(SQLITE_NOMEM
, "failed to HeapSize block %p (%lu), heap=%p",
1556 p
, osGetLastError(), (void*)hHeap
);
1563 ** Round up a request size to the next valid allocation size.
1565 static int winMemRoundup(int n
){
1570 ** Initialize this module.
1572 static int winMemInit(void *pAppData
){
1573 winMemData
*pWinMemData
= (winMemData
*)pAppData
;
1575 if( !pWinMemData
) return SQLITE_ERROR
;
1576 assert( pWinMemData
->magic1
==WINMEM_MAGIC1
);
1577 assert( pWinMemData
->magic2
==WINMEM_MAGIC2
);
1579 #if !SQLITE_OS_WINRT && SQLITE_WIN32_HEAP_CREATE
1580 if( !pWinMemData
->hHeap
){
1581 DWORD dwInitialSize
= SQLITE_WIN32_HEAP_INIT_SIZE
;
1582 DWORD dwMaximumSize
= (DWORD
)sqlite3GlobalConfig
.nHeap
;
1583 if( dwMaximumSize
==0 ){
1584 dwMaximumSize
= SQLITE_WIN32_HEAP_MAX_SIZE
;
1585 }else if( dwInitialSize
>dwMaximumSize
){
1586 dwInitialSize
= dwMaximumSize
;
1588 pWinMemData
->hHeap
= osHeapCreate(SQLITE_WIN32_HEAP_FLAGS
,
1589 dwInitialSize
, dwMaximumSize
);
1590 if( !pWinMemData
->hHeap
){
1591 sqlite3_log(SQLITE_NOMEM
,
1592 "failed to HeapCreate (%lu), flags=%u, initSize=%lu, maxSize=%lu",
1593 osGetLastError(), SQLITE_WIN32_HEAP_FLAGS
, dwInitialSize
,
1595 return SQLITE_NOMEM_BKPT
;
1597 pWinMemData
->bOwned
= TRUE
;
1598 assert( pWinMemData
->bOwned
);
1601 pWinMemData
->hHeap
= osGetProcessHeap();
1602 if( !pWinMemData
->hHeap
){
1603 sqlite3_log(SQLITE_NOMEM
,
1604 "failed to GetProcessHeap (%lu)", osGetLastError());
1605 return SQLITE_NOMEM_BKPT
;
1607 pWinMemData
->bOwned
= FALSE
;
1608 assert( !pWinMemData
->bOwned
);
1610 assert( pWinMemData
->hHeap
!=0 );
1611 assert( pWinMemData
->hHeap
!=INVALID_HANDLE_VALUE
);
1612 #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE)
1613 assert( osHeapValidate(pWinMemData
->hHeap
, SQLITE_WIN32_HEAP_FLAGS
, NULL
) );
1619 ** Deinitialize this module.
1621 static void winMemShutdown(void *pAppData
){
1622 winMemData
*pWinMemData
= (winMemData
*)pAppData
;
1624 if( !pWinMemData
) return;
1625 assert( pWinMemData
->magic1
==WINMEM_MAGIC1
);
1626 assert( pWinMemData
->magic2
==WINMEM_MAGIC2
);
1628 if( pWinMemData
->hHeap
){
1629 assert( pWinMemData
->hHeap
!=INVALID_HANDLE_VALUE
);
1630 #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE)
1631 assert( osHeapValidate(pWinMemData
->hHeap
, SQLITE_WIN32_HEAP_FLAGS
, NULL
) );
1633 if( pWinMemData
->bOwned
){
1634 if( !osHeapDestroy(pWinMemData
->hHeap
) ){
1635 sqlite3_log(SQLITE_NOMEM
, "failed to HeapDestroy (%lu), heap=%p",
1636 osGetLastError(), (void*)pWinMemData
->hHeap
);
1638 pWinMemData
->bOwned
= FALSE
;
1640 pWinMemData
->hHeap
= NULL
;
1645 ** Populate the low-level memory allocation function pointers in
1646 ** sqlite3GlobalConfig.m with pointers to the routines in this file. The
1647 ** arguments specify the block of memory to manage.
1649 ** This routine is only called by sqlite3_config(), and therefore
1650 ** is not required to be threadsafe (it is not).
1652 const sqlite3_mem_methods
*sqlite3MemGetWin32(void){
1653 static const sqlite3_mem_methods winMemMethods
= {
1663 return &winMemMethods
;
1666 void sqlite3MemSetDefault(void){
1667 sqlite3_config(SQLITE_CONFIG_MALLOC
, sqlite3MemGetWin32());
1669 #endif /* SQLITE_WIN32_MALLOC */
1672 ** Convert a UTF-8 string to Microsoft Unicode.
1674 ** Space to hold the returned string is obtained from sqlite3_malloc().
1676 static LPWSTR
winUtf8ToUnicode(const char *zText
){
1680 nChar
= osMultiByteToWideChar(CP_UTF8
, 0, zText
, -1, NULL
, 0);
1684 zWideText
= sqlite3MallocZero( nChar
*sizeof(WCHAR
) );
1688 nChar
= osMultiByteToWideChar(CP_UTF8
, 0, zText
, -1, zWideText
,
1691 sqlite3_free(zWideText
);
1698 ** Convert a Microsoft Unicode string to UTF-8.
1700 ** Space to hold the returned string is obtained from sqlite3_malloc().
1702 static char *winUnicodeToUtf8(LPCWSTR zWideText
){
1706 nByte
= osWideCharToMultiByte(CP_UTF8
, 0, zWideText
, -1, 0, 0, 0, 0);
1710 zText
= sqlite3MallocZero( nByte
);
1714 nByte
= osWideCharToMultiByte(CP_UTF8
, 0, zWideText
, -1, zText
, nByte
,
1717 sqlite3_free(zText
);
1724 ** Convert an ANSI string to Microsoft Unicode, using the ANSI or OEM
1727 ** Space to hold the returned string is obtained from sqlite3_malloc().
1729 static LPWSTR
winMbcsToUnicode(const char *zText
, int useAnsi
){
1732 int codepage
= useAnsi
? CP_ACP
: CP_OEMCP
;
1734 nByte
= osMultiByteToWideChar(codepage
, 0, zText
, -1, NULL
,
1739 zMbcsText
= sqlite3MallocZero( nByte
*sizeof(WCHAR
) );
1743 nByte
= osMultiByteToWideChar(codepage
, 0, zText
, -1, zMbcsText
,
1746 sqlite3_free(zMbcsText
);
1753 ** Convert a Microsoft Unicode string to a multi-byte character string,
1754 ** using the ANSI or OEM code page.
1756 ** Space to hold the returned string is obtained from sqlite3_malloc().
1758 static char *winUnicodeToMbcs(LPCWSTR zWideText
, int useAnsi
){
1761 int codepage
= useAnsi
? CP_ACP
: CP_OEMCP
;
1763 nByte
= osWideCharToMultiByte(codepage
, 0, zWideText
, -1, 0, 0, 0, 0);
1767 zText
= sqlite3MallocZero( nByte
);
1771 nByte
= osWideCharToMultiByte(codepage
, 0, zWideText
, -1, zText
,
1774 sqlite3_free(zText
);
1781 ** Convert a multi-byte character string to UTF-8.
1783 ** Space to hold the returned string is obtained from sqlite3_malloc().
1785 static char *winMbcsToUtf8(const char *zText
, int useAnsi
){
1789 zTmpWide
= winMbcsToUnicode(zText
, useAnsi
);
1793 zTextUtf8
= winUnicodeToUtf8(zTmpWide
);
1794 sqlite3_free(zTmpWide
);
1799 ** Convert a UTF-8 string to a multi-byte character string.
1801 ** Space to hold the returned string is obtained from sqlite3_malloc().
1803 static char *winUtf8ToMbcs(const char *zText
, int useAnsi
){
1807 zTmpWide
= winUtf8ToUnicode(zText
);
1811 zTextMbcs
= winUnicodeToMbcs(zTmpWide
, useAnsi
);
1812 sqlite3_free(zTmpWide
);
1817 ** This is a public wrapper for the winUtf8ToUnicode() function.
1819 LPWSTR
sqlite3_win32_utf8_to_unicode(const char *zText
){
1820 #ifdef SQLITE_ENABLE_API_ARMOR
1822 (void)SQLITE_MISUSE_BKPT
;
1826 #ifndef SQLITE_OMIT_AUTOINIT
1827 if( sqlite3_initialize() ) return 0;
1829 return winUtf8ToUnicode(zText
);
1833 ** This is a public wrapper for the winUnicodeToUtf8() function.
1835 char *sqlite3_win32_unicode_to_utf8(LPCWSTR zWideText
){
1836 #ifdef SQLITE_ENABLE_API_ARMOR
1838 (void)SQLITE_MISUSE_BKPT
;
1842 #ifndef SQLITE_OMIT_AUTOINIT
1843 if( sqlite3_initialize() ) return 0;
1845 return winUnicodeToUtf8(zWideText
);
1849 ** This is a public wrapper for the winMbcsToUtf8() function.
1851 char *sqlite3_win32_mbcs_to_utf8(const char *zText
){
1852 #ifdef SQLITE_ENABLE_API_ARMOR
1854 (void)SQLITE_MISUSE_BKPT
;
1858 #ifndef SQLITE_OMIT_AUTOINIT
1859 if( sqlite3_initialize() ) return 0;
1861 return winMbcsToUtf8(zText
, osAreFileApisANSI());
1865 ** This is a public wrapper for the winMbcsToUtf8() function.
1867 char *sqlite3_win32_mbcs_to_utf8_v2(const char *zText
, int useAnsi
){
1868 #ifdef SQLITE_ENABLE_API_ARMOR
1870 (void)SQLITE_MISUSE_BKPT
;
1874 #ifndef SQLITE_OMIT_AUTOINIT
1875 if( sqlite3_initialize() ) return 0;
1877 return winMbcsToUtf8(zText
, useAnsi
);
1881 ** This is a public wrapper for the winUtf8ToMbcs() function.
1883 char *sqlite3_win32_utf8_to_mbcs(const char *zText
){
1884 #ifdef SQLITE_ENABLE_API_ARMOR
1886 (void)SQLITE_MISUSE_BKPT
;
1890 #ifndef SQLITE_OMIT_AUTOINIT
1891 if( sqlite3_initialize() ) return 0;
1893 return winUtf8ToMbcs(zText
, osAreFileApisANSI());
1897 ** This is a public wrapper for the winUtf8ToMbcs() function.
1899 char *sqlite3_win32_utf8_to_mbcs_v2(const char *zText
, int useAnsi
){
1900 #ifdef SQLITE_ENABLE_API_ARMOR
1902 (void)SQLITE_MISUSE_BKPT
;
1906 #ifndef SQLITE_OMIT_AUTOINIT
1907 if( sqlite3_initialize() ) return 0;
1909 return winUtf8ToMbcs(zText
, useAnsi
);
1913 ** This function is the same as sqlite3_win32_set_directory (below); however,
1914 ** it accepts a UTF-8 string.
1916 int sqlite3_win32_set_directory8(
1917 unsigned long type
, /* Identifier for directory being set or reset */
1918 const char *zValue
/* New value for directory being set or reset */
1920 char **ppDirectory
= 0;
1921 #ifndef SQLITE_OMIT_AUTOINIT
1922 int rc
= sqlite3_initialize();
1925 if( type
==SQLITE_WIN32_DATA_DIRECTORY_TYPE
){
1926 ppDirectory
= &sqlite3_data_directory
;
1927 }else if( type
==SQLITE_WIN32_TEMP_DIRECTORY_TYPE
){
1928 ppDirectory
= &sqlite3_temp_directory
;
1930 assert( !ppDirectory
|| type
==SQLITE_WIN32_DATA_DIRECTORY_TYPE
1931 || type
==SQLITE_WIN32_TEMP_DIRECTORY_TYPE
1933 assert( !ppDirectory
|| sqlite3MemdebugHasType(*ppDirectory
, MEMTYPE_HEAP
) );
1936 if( zValue
&& zValue
[0] ){
1937 zCopy
= sqlite3_mprintf("%s", zValue
);
1939 return SQLITE_NOMEM_BKPT
;
1942 sqlite3_free(*ppDirectory
);
1943 *ppDirectory
= zCopy
;
1946 return SQLITE_ERROR
;
1950 ** This function is the same as sqlite3_win32_set_directory (below); however,
1951 ** it accepts a UTF-16 string.
1953 int sqlite3_win32_set_directory16(
1954 unsigned long type
, /* Identifier for directory being set or reset */
1955 const void *zValue
/* New value for directory being set or reset */
1960 zUtf8
= sqlite3_win32_unicode_to_utf8(zValue
);
1961 if( zUtf8
==0 ) return SQLITE_NOMEM_BKPT
;
1963 rc
= sqlite3_win32_set_directory8(type
, zUtf8
);
1964 if( zUtf8
) sqlite3_free(zUtf8
);
1969 ** This function sets the data directory or the temporary directory based on
1970 ** the provided arguments. The type argument must be 1 in order to set the
1971 ** data directory or 2 in order to set the temporary directory. The zValue
1972 ** argument is the name of the directory to use. The return value will be
1973 ** SQLITE_OK if successful.
1975 int sqlite3_win32_set_directory(
1976 unsigned long type
, /* Identifier for directory being set or reset */
1977 void *zValue
/* New value for directory being set or reset */
1979 return sqlite3_win32_set_directory16(type
, zValue
);
1983 ** The return value of winGetLastErrorMsg
1984 ** is zero if the error message fits in the buffer, or non-zero
1985 ** otherwise (if the message was truncated).
1987 static int winGetLastErrorMsg(DWORD lastErrno
, int nBuf
, char *zBuf
){
1988 /* FormatMessage returns 0 on failure. Otherwise it
1989 ** returns the number of TCHARs written to the output
1990 ** buffer, excluding the terminating null char.
1997 WCHAR zTempWide
[SQLITE_WIN32_MAX_ERRMSG_CHARS
+1];
1998 dwLen
= osFormatMessageW(FORMAT_MESSAGE_FROM_SYSTEM
|
1999 FORMAT_MESSAGE_IGNORE_INSERTS
,
2004 SQLITE_WIN32_MAX_ERRMSG_CHARS
,
2007 LPWSTR zTempWide
= NULL
;
2008 dwLen
= osFormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER
|
2009 FORMAT_MESSAGE_FROM_SYSTEM
|
2010 FORMAT_MESSAGE_IGNORE_INSERTS
,
2014 (LPWSTR
) &zTempWide
,
2019 /* allocate a buffer and convert to UTF8 */
2020 sqlite3BeginBenignMalloc();
2021 zOut
= winUnicodeToUtf8(zTempWide
);
2022 sqlite3EndBenignMalloc();
2023 #if !SQLITE_OS_WINRT
2024 /* free the system buffer allocated by FormatMessage */
2025 osLocalFree(zTempWide
);
2029 #ifdef SQLITE_WIN32_HAS_ANSI
2032 dwLen
= osFormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER
|
2033 FORMAT_MESSAGE_FROM_SYSTEM
|
2034 FORMAT_MESSAGE_IGNORE_INSERTS
,
2042 /* allocate a buffer and convert to UTF8 */
2043 sqlite3BeginBenignMalloc();
2044 zOut
= winMbcsToUtf8(zTemp
, osAreFileApisANSI());
2045 sqlite3EndBenignMalloc();
2046 /* free the system buffer allocated by FormatMessage */
2052 sqlite3_snprintf(nBuf
, zBuf
, "OsError 0x%lx (%lu)", lastErrno
, lastErrno
);
2054 /* copy a maximum of nBuf chars to output buffer */
2055 sqlite3_snprintf(nBuf
, zBuf
, "%s", zOut
);
2056 /* free the UTF8 buffer */
2064 ** This function - winLogErrorAtLine() - is only ever called via the macro
2067 ** This routine is invoked after an error occurs in an OS function.
2068 ** It logs a message using sqlite3_log() containing the current value of
2069 ** error code and, if possible, the human-readable equivalent from
2072 ** The first argument passed to the macro should be the error code that
2073 ** will be returned to SQLite (e.g. SQLITE_IOERR_DELETE, SQLITE_CANTOPEN).
2074 ** The two subsequent arguments should be the name of the OS function that
2075 ** failed and the associated file-system path, if any.
2077 #define winLogError(a,b,c,d) winLogErrorAtLine(a,b,c,d,__LINE__)
2078 static int winLogErrorAtLine(
2079 int errcode
, /* SQLite error code */
2080 DWORD lastErrno
, /* Win32 last error */
2081 const char *zFunc
, /* Name of OS function that failed */
2082 const char *zPath
, /* File path associated with error */
2083 int iLine
/* Source line number where error occurred */
2085 char zMsg
[500]; /* Human readable error text */
2086 int i
; /* Loop counter */
2089 winGetLastErrorMsg(lastErrno
, sizeof(zMsg
), zMsg
);
2090 assert( errcode
!=SQLITE_OK
);
2091 if( zPath
==0 ) zPath
= "";
2092 for(i
=0; zMsg
[i
] && zMsg
[i
]!='\r' && zMsg
[i
]!='\n'; i
++){}
2094 sqlite3_log(errcode
,
2095 "os_win.c:%d: (%lu) %s(%s) - %s",
2096 iLine
, lastErrno
, zFunc
, zPath
, zMsg
2103 ** The number of times that a ReadFile(), WriteFile(), and DeleteFile()
2104 ** will be retried following a locking error - probably caused by
2105 ** antivirus software. Also the initial delay before the first retry.
2106 ** The delay increases linearly with each retry.
2108 #ifndef SQLITE_WIN32_IOERR_RETRY
2109 # define SQLITE_WIN32_IOERR_RETRY 10
2111 #ifndef SQLITE_WIN32_IOERR_RETRY_DELAY
2112 # define SQLITE_WIN32_IOERR_RETRY_DELAY 25
2114 static int winIoerrRetry
= SQLITE_WIN32_IOERR_RETRY
;
2115 static int winIoerrRetryDelay
= SQLITE_WIN32_IOERR_RETRY_DELAY
;
2118 ** The "winIoerrCanRetry1" macro is used to determine if a particular I/O
2119 ** error code obtained via GetLastError() is eligible to be retried. It
2120 ** must accept the error code DWORD as its only argument and should return
2121 ** non-zero if the error code is transient in nature and the operation
2122 ** responsible for generating the original error might succeed upon being
2123 ** retried. The argument to this macro should be a variable.
2125 ** Additionally, a macro named "winIoerrCanRetry2" may be defined. If it
2126 ** is defined, it will be consulted only when the macro "winIoerrCanRetry1"
2127 ** returns zero. The "winIoerrCanRetry2" macro is completely optional and
2128 ** may be used to include additional error codes in the set that should
2129 ** result in the failing I/O operation being retried by the caller. If
2130 ** defined, the "winIoerrCanRetry2" macro must exhibit external semantics
2131 ** identical to those of the "winIoerrCanRetry1" macro.
2133 #if !defined(winIoerrCanRetry1)
2134 #define winIoerrCanRetry1(a) (((a)==ERROR_ACCESS_DENIED) || \
2135 ((a)==ERROR_SHARING_VIOLATION) || \
2136 ((a)==ERROR_LOCK_VIOLATION) || \
2137 ((a)==ERROR_DEV_NOT_EXIST) || \
2138 ((a)==ERROR_NETNAME_DELETED) || \
2139 ((a)==ERROR_SEM_TIMEOUT) || \
2140 ((a)==ERROR_NETWORK_UNREACHABLE))
2144 ** If a ReadFile() or WriteFile() error occurs, invoke this routine
2145 ** to see if it should be retried. Return TRUE to retry. Return FALSE
2146 ** to give up with an error.
2148 static int winRetryIoerr(int *pnRetry
, DWORD
*pError
){
2149 DWORD e
= osGetLastError();
2150 if( *pnRetry
>=winIoerrRetry
){
2156 if( winIoerrCanRetry1(e
) ){
2157 sqlite3_win32_sleep(winIoerrRetryDelay
*(1+*pnRetry
));
2161 #if defined(winIoerrCanRetry2)
2162 else if( winIoerrCanRetry2(e
) ){
2163 sqlite3_win32_sleep(winIoerrRetryDelay
*(1+*pnRetry
));
2175 ** Log a I/O error retry episode.
2177 static void winLogIoerr(int nRetry
, int lineno
){
2179 sqlite3_log(SQLITE_NOTICE
,
2180 "delayed %dms for lock/sharing conflict at line %d",
2181 winIoerrRetryDelay
*nRetry
*(nRetry
+1)/2, lineno
2187 ** This #if does not rely on the SQLITE_OS_WINCE define because the
2188 ** corresponding section in "date.c" cannot use it.
2190 #if !defined(SQLITE_OMIT_LOCALTIME) && defined(_WIN32_WCE) && \
2191 (!defined(SQLITE_MSVC_LOCALTIME_API) || !SQLITE_MSVC_LOCALTIME_API)
2193 ** The MSVC CRT on Windows CE may not have a localtime() function.
2194 ** So define a substitute.
2197 struct tm
*__cdecl
localtime(const time_t *t
)
2204 t64
= (t64
+ 11644473600)*10000000;
2205 uTm
.dwLowDateTime
= (DWORD
)(t64
& 0xFFFFFFFF);
2206 uTm
.dwHighDateTime
= (DWORD
)(t64
>> 32);
2207 osFileTimeToLocalFileTime(&uTm
,&lTm
);
2208 osFileTimeToSystemTime(&lTm
,&pTm
);
2209 y
.tm_year
= pTm
.wYear
- 1900;
2210 y
.tm_mon
= pTm
.wMonth
- 1;
2211 y
.tm_wday
= pTm
.wDayOfWeek
;
2212 y
.tm_mday
= pTm
.wDay
;
2213 y
.tm_hour
= pTm
.wHour
;
2214 y
.tm_min
= pTm
.wMinute
;
2215 y
.tm_sec
= pTm
.wSecond
;
2221 /*************************************************************************
2222 ** This section contains code for WinCE only.
2224 #define HANDLE_TO_WINFILE(a) (winFile*)&((char*)a)[-(int)offsetof(winFile,h)]
2227 ** Acquire a lock on the handle h
2229 static void winceMutexAcquire(HANDLE h
){
2232 dwErr
= osWaitForSingleObject(h
, INFINITE
);
2233 } while (dwErr
!= WAIT_OBJECT_0
&& dwErr
!= WAIT_ABANDONED
);
2236 ** Release a lock acquired by winceMutexAcquire()
2238 #define winceMutexRelease(h) ReleaseMutex(h)
2241 ** Create the mutex and shared memory used for locking in the file
2244 static int winceCreateLock(const char *zFilename
, winFile
*pFile
){
2248 BOOL bLogged
= FALSE
;
2251 zName
= winUtf8ToUnicode(zFilename
);
2254 return SQLITE_IOERR_NOMEM_BKPT
;
2257 /* Initialize the local lockdata */
2258 memset(&pFile
->local
, 0, sizeof(pFile
->local
));
2260 /* Replace the backslashes from the filename and lowercase it
2261 ** to derive a mutex name. */
2262 zTok
= osCharLowerW(zName
);
2263 for (;*zTok
;zTok
++){
2264 if (*zTok
== '\\') *zTok
= '_';
2267 /* Create/open the named mutex */
2268 pFile
->hMutex
= osCreateMutexW(NULL
, FALSE
, zName
);
2269 if (!pFile
->hMutex
){
2270 pFile
->lastErrno
= osGetLastError();
2271 sqlite3_free(zName
);
2272 return winLogError(SQLITE_IOERR
, pFile
->lastErrno
,
2273 "winceCreateLock1", zFilename
);
2276 /* Acquire the mutex before continuing */
2277 winceMutexAcquire(pFile
->hMutex
);
2279 /* Since the names of named mutexes, semaphores, file mappings etc are
2280 ** case-sensitive, take advantage of that by uppercasing the mutex name
2281 ** and using that as the shared filemapping name.
2283 osCharUpperW(zName
);
2284 pFile
->hShared
= osCreateFileMappingW(INVALID_HANDLE_VALUE
, NULL
,
2285 PAGE_READWRITE
, 0, sizeof(winceLock
),
2288 /* Set a flag that indicates we're the first to create the memory so it
2289 ** must be zero-initialized */
2290 lastErrno
= osGetLastError();
2291 if (lastErrno
== ERROR_ALREADY_EXISTS
){
2295 sqlite3_free(zName
);
2297 /* If we succeeded in making the shared memory handle, map it. */
2298 if( pFile
->hShared
){
2299 pFile
->shared
= (winceLock
*)osMapViewOfFile(pFile
->hShared
,
2300 FILE_MAP_READ
|FILE_MAP_WRITE
, 0, 0, sizeof(winceLock
));
2301 /* If mapping failed, close the shared memory handle and erase it */
2302 if( !pFile
->shared
){
2303 pFile
->lastErrno
= osGetLastError();
2304 winLogError(SQLITE_IOERR
, pFile
->lastErrno
,
2305 "winceCreateLock2", zFilename
);
2307 osCloseHandle(pFile
->hShared
);
2308 pFile
->hShared
= NULL
;
2312 /* If shared memory could not be created, then close the mutex and fail */
2313 if( pFile
->hShared
==NULL
){
2315 pFile
->lastErrno
= lastErrno
;
2316 winLogError(SQLITE_IOERR
, pFile
->lastErrno
,
2317 "winceCreateLock3", zFilename
);
2320 winceMutexRelease(pFile
->hMutex
);
2321 osCloseHandle(pFile
->hMutex
);
2322 pFile
->hMutex
= NULL
;
2323 return SQLITE_IOERR
;
2326 /* Initialize the shared memory if we're supposed to */
2328 memset(pFile
->shared
, 0, sizeof(winceLock
));
2331 winceMutexRelease(pFile
->hMutex
);
2336 ** Destroy the part of winFile that deals with wince locks
2338 static void winceDestroyLock(winFile
*pFile
){
2340 /* Acquire the mutex */
2341 winceMutexAcquire(pFile
->hMutex
);
2343 /* The following blocks should probably assert in debug mode, but they
2344 are to cleanup in case any locks remained open */
2345 if (pFile
->local
.nReaders
){
2346 pFile
->shared
->nReaders
--;
2348 if (pFile
->local
.bReserved
){
2349 pFile
->shared
->bReserved
= FALSE
;
2351 if (pFile
->local
.bPending
){
2352 pFile
->shared
->bPending
= FALSE
;
2354 if (pFile
->local
.bExclusive
){
2355 pFile
->shared
->bExclusive
= FALSE
;
2358 /* De-reference and close our copy of the shared memory handle */
2359 osUnmapViewOfFile(pFile
->shared
);
2360 osCloseHandle(pFile
->hShared
);
2362 /* Done with the mutex */
2363 winceMutexRelease(pFile
->hMutex
);
2364 osCloseHandle(pFile
->hMutex
);
2365 pFile
->hMutex
= NULL
;
2370 ** An implementation of the LockFile() API of Windows for CE
2372 static BOOL
winceLockFile(
2374 DWORD dwFileOffsetLow
,
2375 DWORD dwFileOffsetHigh
,
2376 DWORD nNumberOfBytesToLockLow
,
2377 DWORD nNumberOfBytesToLockHigh
2379 winFile
*pFile
= HANDLE_TO_WINFILE(phFile
);
2380 BOOL bReturn
= FALSE
;
2382 UNUSED_PARAMETER(dwFileOffsetHigh
);
2383 UNUSED_PARAMETER(nNumberOfBytesToLockHigh
);
2385 if (!pFile
->hMutex
) return TRUE
;
2386 winceMutexAcquire(pFile
->hMutex
);
2388 /* Wanting an exclusive lock? */
2389 if (dwFileOffsetLow
== (DWORD
)SHARED_FIRST
2390 && nNumberOfBytesToLockLow
== (DWORD
)SHARED_SIZE
){
2391 if (pFile
->shared
->nReaders
== 0 && pFile
->shared
->bExclusive
== 0){
2392 pFile
->shared
->bExclusive
= TRUE
;
2393 pFile
->local
.bExclusive
= TRUE
;
2398 /* Want a read-only lock? */
2399 else if (dwFileOffsetLow
== (DWORD
)SHARED_FIRST
&&
2400 nNumberOfBytesToLockLow
== 1){
2401 if (pFile
->shared
->bExclusive
== 0){
2402 pFile
->local
.nReaders
++;
2403 if (pFile
->local
.nReaders
== 1){
2404 pFile
->shared
->nReaders
++;
2410 /* Want a pending lock? */
2411 else if (dwFileOffsetLow
== (DWORD
)PENDING_BYTE
2412 && nNumberOfBytesToLockLow
== 1){
2413 /* If no pending lock has been acquired, then acquire it */
2414 if (pFile
->shared
->bPending
== 0) {
2415 pFile
->shared
->bPending
= TRUE
;
2416 pFile
->local
.bPending
= TRUE
;
2421 /* Want a reserved lock? */
2422 else if (dwFileOffsetLow
== (DWORD
)RESERVED_BYTE
2423 && nNumberOfBytesToLockLow
== 1){
2424 if (pFile
->shared
->bReserved
== 0) {
2425 pFile
->shared
->bReserved
= TRUE
;
2426 pFile
->local
.bReserved
= TRUE
;
2431 winceMutexRelease(pFile
->hMutex
);
2436 ** An implementation of the UnlockFile API of Windows for CE
2438 static BOOL
winceUnlockFile(
2440 DWORD dwFileOffsetLow
,
2441 DWORD dwFileOffsetHigh
,
2442 DWORD nNumberOfBytesToUnlockLow
,
2443 DWORD nNumberOfBytesToUnlockHigh
2445 winFile
*pFile
= HANDLE_TO_WINFILE(phFile
);
2446 BOOL bReturn
= FALSE
;
2448 UNUSED_PARAMETER(dwFileOffsetHigh
);
2449 UNUSED_PARAMETER(nNumberOfBytesToUnlockHigh
);
2451 if (!pFile
->hMutex
) return TRUE
;
2452 winceMutexAcquire(pFile
->hMutex
);
2454 /* Releasing a reader lock or an exclusive lock */
2455 if (dwFileOffsetLow
== (DWORD
)SHARED_FIRST
){
2456 /* Did we have an exclusive lock? */
2457 if (pFile
->local
.bExclusive
){
2458 assert(nNumberOfBytesToUnlockLow
== (DWORD
)SHARED_SIZE
);
2459 pFile
->local
.bExclusive
= FALSE
;
2460 pFile
->shared
->bExclusive
= FALSE
;
2464 /* Did we just have a reader lock? */
2465 else if (pFile
->local
.nReaders
){
2466 assert(nNumberOfBytesToUnlockLow
== (DWORD
)SHARED_SIZE
2467 || nNumberOfBytesToUnlockLow
== 1);
2468 pFile
->local
.nReaders
--;
2469 if (pFile
->local
.nReaders
== 0)
2471 pFile
->shared
->nReaders
--;
2477 /* Releasing a pending lock */
2478 else if (dwFileOffsetLow
== (DWORD
)PENDING_BYTE
2479 && nNumberOfBytesToUnlockLow
== 1){
2480 if (pFile
->local
.bPending
){
2481 pFile
->local
.bPending
= FALSE
;
2482 pFile
->shared
->bPending
= FALSE
;
2486 /* Releasing a reserved lock */
2487 else if (dwFileOffsetLow
== (DWORD
)RESERVED_BYTE
2488 && nNumberOfBytesToUnlockLow
== 1){
2489 if (pFile
->local
.bReserved
) {
2490 pFile
->local
.bReserved
= FALSE
;
2491 pFile
->shared
->bReserved
= FALSE
;
2496 winceMutexRelease(pFile
->hMutex
);
2500 ** End of the special code for wince
2501 *****************************************************************************/
2502 #endif /* SQLITE_OS_WINCE */
2505 ** Lock a file region.
2507 static BOOL
winLockFile(
2517 ** NOTE: Windows CE is handled differently here due its lack of the Win32
2520 return winceLockFile(phFile
, offsetLow
, offsetHigh
,
2521 numBytesLow
, numBytesHigh
);
2525 memset(&ovlp
, 0, sizeof(OVERLAPPED
));
2526 ovlp
.Offset
= offsetLow
;
2527 ovlp
.OffsetHigh
= offsetHigh
;
2528 return osLockFileEx(*phFile
, flags
, 0, numBytesLow
, numBytesHigh
, &ovlp
);
2530 return osLockFile(*phFile
, offsetLow
, offsetHigh
, numBytesLow
,
2537 ** Unlock a file region.
2539 static BOOL
winUnlockFile(
2548 ** NOTE: Windows CE is handled differently here due its lack of the Win32
2551 return winceUnlockFile(phFile
, offsetLow
, offsetHigh
,
2552 numBytesLow
, numBytesHigh
);
2556 memset(&ovlp
, 0, sizeof(OVERLAPPED
));
2557 ovlp
.Offset
= offsetLow
;
2558 ovlp
.OffsetHigh
= offsetHigh
;
2559 return osUnlockFileEx(*phFile
, 0, numBytesLow
, numBytesHigh
, &ovlp
);
2561 return osUnlockFile(*phFile
, offsetLow
, offsetHigh
, numBytesLow
,
2567 /*****************************************************************************
2568 ** The next group of routines implement the I/O methods specified
2569 ** by the sqlite3_io_methods object.
2570 ******************************************************************************/
2573 ** Some Microsoft compilers lack this definition.
2575 #ifndef INVALID_SET_FILE_POINTER
2576 # define INVALID_SET_FILE_POINTER ((DWORD)-1)
2580 ** Move the current position of the file handle passed as the first
2581 ** argument to offset iOffset within the file. If successful, return 0.
2582 ** Otherwise, set pFile->lastErrno and return non-zero.
2584 static int winSeekFile(winFile
*pFile
, sqlite3_int64 iOffset
){
2585 #if !SQLITE_OS_WINRT
2586 LONG upperBits
; /* Most sig. 32 bits of new offset */
2587 LONG lowerBits
; /* Least sig. 32 bits of new offset */
2588 DWORD dwRet
; /* Value returned by SetFilePointer() */
2589 DWORD lastErrno
; /* Value returned by GetLastError() */
2591 OSTRACE(("SEEK file=%p, offset=%lld\n", pFile
->h
, iOffset
));
2593 upperBits
= (LONG
)((iOffset
>>32) & 0x7fffffff);
2594 lowerBits
= (LONG
)(iOffset
& 0xffffffff);
2596 /* API oddity: If successful, SetFilePointer() returns a dword
2597 ** containing the lower 32-bits of the new file-offset. Or, if it fails,
2598 ** it returns INVALID_SET_FILE_POINTER. However according to MSDN,
2599 ** INVALID_SET_FILE_POINTER may also be a valid new offset. So to determine
2600 ** whether an error has actually occurred, it is also necessary to call
2603 dwRet
= osSetFilePointer(pFile
->h
, lowerBits
, &upperBits
, FILE_BEGIN
);
2605 if( (dwRet
==INVALID_SET_FILE_POINTER
2606 && ((lastErrno
= osGetLastError())!=NO_ERROR
)) ){
2607 pFile
->lastErrno
= lastErrno
;
2608 winLogError(SQLITE_IOERR_SEEK
, pFile
->lastErrno
,
2609 "winSeekFile", pFile
->zPath
);
2610 OSTRACE(("SEEK file=%p, rc=SQLITE_IOERR_SEEK\n", pFile
->h
));
2614 OSTRACE(("SEEK file=%p, rc=SQLITE_OK\n", pFile
->h
));
2618 ** Same as above, except that this implementation works for WinRT.
2621 LARGE_INTEGER x
; /* The new offset */
2622 BOOL bRet
; /* Value returned by SetFilePointerEx() */
2624 x
.QuadPart
= iOffset
;
2625 bRet
= osSetFilePointerEx(pFile
->h
, x
, 0, FILE_BEGIN
);
2628 pFile
->lastErrno
= osGetLastError();
2629 winLogError(SQLITE_IOERR_SEEK
, pFile
->lastErrno
,
2630 "winSeekFile", pFile
->zPath
);
2631 OSTRACE(("SEEK file=%p, rc=SQLITE_IOERR_SEEK\n", pFile
->h
));
2635 OSTRACE(("SEEK file=%p, rc=SQLITE_OK\n", pFile
->h
));
2640 #if SQLITE_MAX_MMAP_SIZE>0
2641 /* Forward references to VFS helper methods used for memory mapped files */
2642 static int winMapfile(winFile
*, sqlite3_int64
);
2643 static int winUnmapfile(winFile
*);
2649 ** It is reported that an attempt to close a handle might sometimes
2650 ** fail. This is a very unreasonable result, but Windows is notorious
2651 ** for being unreasonable so I do not doubt that it might happen. If
2652 ** the close fails, we pause for 100 milliseconds and try again. As
2653 ** many as MX_CLOSE_ATTEMPT attempts to close the handle are made before
2654 ** giving up and returning an error.
2656 #define MX_CLOSE_ATTEMPT 3
2657 static int winClose(sqlite3_file
*id
){
2659 winFile
*pFile
= (winFile
*)id
;
2662 #ifndef SQLITE_OMIT_WAL
2663 assert( pFile
->pShm
==0 );
2665 assert( pFile
->h
!=NULL
&& pFile
->h
!=INVALID_HANDLE_VALUE
);
2666 OSTRACE(("CLOSE pid=%lu, pFile=%p, file=%p\n",
2667 osGetCurrentProcessId(), pFile
, pFile
->h
));
2669 #if SQLITE_MAX_MMAP_SIZE>0
2670 winUnmapfile(pFile
);
2674 rc
= osCloseHandle(pFile
->h
);
2675 /* SimulateIOError( rc=0; cnt=MX_CLOSE_ATTEMPT; ); */
2676 }while( rc
==0 && ++cnt
< MX_CLOSE_ATTEMPT
&& (sqlite3_win32_sleep(100), 1) );
2678 #define WINCE_DELETION_ATTEMPTS 3
2680 winVfsAppData
*pAppData
= (winVfsAppData
*)pFile
->pVfs
->pAppData
;
2681 if( pAppData
==NULL
|| !pAppData
->bNoLock
){
2682 winceDestroyLock(pFile
);
2685 if( pFile
->zDeleteOnClose
){
2688 osDeleteFileW(pFile
->zDeleteOnClose
)==0
2689 && osGetFileAttributesW(pFile
->zDeleteOnClose
)!=0xffffffff
2690 && cnt
++ < WINCE_DELETION_ATTEMPTS
2692 sqlite3_win32_sleep(100); /* Wait a little before trying again */
2694 sqlite3_free(pFile
->zDeleteOnClose
);
2701 OSTRACE(("CLOSE pid=%lu, pFile=%p, file=%p, rc=%s\n",
2702 osGetCurrentProcessId(), pFile
, pFile
->h
, rc
? "ok" : "failed"));
2703 return rc
? SQLITE_OK
2704 : winLogError(SQLITE_IOERR_CLOSE
, osGetLastError(),
2705 "winClose", pFile
->zPath
);
2709 ** Read data from a file into a buffer. Return SQLITE_OK if all
2710 ** bytes were read successfully and SQLITE_IOERR if anything goes
2714 sqlite3_file
*id
, /* File to read from */
2715 void *pBuf
, /* Write content into this buffer */
2716 int amt
, /* Number of bytes to read */
2717 sqlite3_int64 offset
/* Begin reading at this offset */
2719 #if !SQLITE_OS_WINCE && !defined(SQLITE_WIN32_NO_OVERLAPPED)
2720 OVERLAPPED overlapped
; /* The offset for ReadFile. */
2722 winFile
*pFile
= (winFile
*)id
; /* file handle */
2723 DWORD nRead
; /* Number of bytes actually read from file */
2724 int nRetry
= 0; /* Number of retrys */
2728 assert( offset
>=0 );
2729 SimulateIOError(return SQLITE_IOERR_READ
);
2730 OSTRACE(("READ pid=%lu, pFile=%p, file=%p, buffer=%p, amount=%d, "
2731 "offset=%lld, lock=%d\n", osGetCurrentProcessId(), pFile
,
2732 pFile
->h
, pBuf
, amt
, offset
, pFile
->locktype
));
2734 #if SQLITE_MAX_MMAP_SIZE>0
2735 /* Deal with as much of this read request as possible by transfering
2736 ** data from the memory mapping using memcpy(). */
2737 if( offset
<pFile
->mmapSize
){
2738 if( offset
+amt
<= pFile
->mmapSize
){
2739 memcpy(pBuf
, &((u8
*)(pFile
->pMapRegion
))[offset
], amt
);
2740 OSTRACE(("READ-MMAP pid=%lu, pFile=%p, file=%p, rc=SQLITE_OK\n",
2741 osGetCurrentProcessId(), pFile
, pFile
->h
));
2744 int nCopy
= (int)(pFile
->mmapSize
- offset
);
2745 memcpy(pBuf
, &((u8
*)(pFile
->pMapRegion
))[offset
], nCopy
);
2746 pBuf
= &((u8
*)pBuf
)[nCopy
];
2753 #if SQLITE_OS_WINCE || defined(SQLITE_WIN32_NO_OVERLAPPED)
2754 if( winSeekFile(pFile
, offset
) ){
2755 OSTRACE(("READ pid=%lu, pFile=%p, file=%p, rc=SQLITE_FULL\n",
2756 osGetCurrentProcessId(), pFile
, pFile
->h
));
2759 while( !osReadFile(pFile
->h
, pBuf
, amt
, &nRead
, 0) ){
2761 memset(&overlapped
, 0, sizeof(OVERLAPPED
));
2762 overlapped
.Offset
= (LONG
)(offset
& 0xffffffff);
2763 overlapped
.OffsetHigh
= (LONG
)((offset
>>32) & 0x7fffffff);
2764 while( !osReadFile(pFile
->h
, pBuf
, amt
, &nRead
, &overlapped
) &&
2765 osGetLastError()!=ERROR_HANDLE_EOF
){
2768 if( winRetryIoerr(&nRetry
, &lastErrno
) ) continue;
2769 pFile
->lastErrno
= lastErrno
;
2770 OSTRACE(("READ pid=%lu, pFile=%p, file=%p, rc=SQLITE_IOERR_READ\n",
2771 osGetCurrentProcessId(), pFile
, pFile
->h
));
2772 return winLogError(SQLITE_IOERR_READ
, pFile
->lastErrno
,
2773 "winRead", pFile
->zPath
);
2775 winLogIoerr(nRetry
, __LINE__
);
2776 if( nRead
<(DWORD
)amt
){
2777 /* Unread parts of the buffer must be zero-filled */
2778 memset(&((char*)pBuf
)[nRead
], 0, amt
-nRead
);
2779 OSTRACE(("READ pid=%lu, pFile=%p, file=%p, rc=SQLITE_IOERR_SHORT_READ\n",
2780 osGetCurrentProcessId(), pFile
, pFile
->h
));
2781 return SQLITE_IOERR_SHORT_READ
;
2784 OSTRACE(("READ pid=%lu, pFile=%p, file=%p, rc=SQLITE_OK\n",
2785 osGetCurrentProcessId(), pFile
, pFile
->h
));
2790 ** Write data from a buffer into a file. Return SQLITE_OK on success
2791 ** or some other error code on failure.
2793 static int winWrite(
2794 sqlite3_file
*id
, /* File to write into */
2795 const void *pBuf
, /* The bytes to be written */
2796 int amt
, /* Number of bytes to write */
2797 sqlite3_int64 offset
/* Offset into the file to begin writing at */
2799 int rc
= 0; /* True if error has occurred, else false */
2800 winFile
*pFile
= (winFile
*)id
; /* File handle */
2801 int nRetry
= 0; /* Number of retries */
2805 SimulateIOError(return SQLITE_IOERR_WRITE
);
2806 SimulateDiskfullError(return SQLITE_FULL
);
2808 OSTRACE(("WRITE pid=%lu, pFile=%p, file=%p, buffer=%p, amount=%d, "
2809 "offset=%lld, lock=%d\n", osGetCurrentProcessId(), pFile
,
2810 pFile
->h
, pBuf
, amt
, offset
, pFile
->locktype
));
2812 #if defined(SQLITE_MMAP_READWRITE) && SQLITE_MAX_MMAP_SIZE>0
2813 /* Deal with as much of this write request as possible by transfering
2814 ** data from the memory mapping using memcpy(). */
2815 if( offset
<pFile
->mmapSize
){
2816 if( offset
+amt
<= pFile
->mmapSize
){
2817 memcpy(&((u8
*)(pFile
->pMapRegion
))[offset
], pBuf
, amt
);
2818 OSTRACE(("WRITE-MMAP pid=%lu, pFile=%p, file=%p, rc=SQLITE_OK\n",
2819 osGetCurrentProcessId(), pFile
, pFile
->h
));
2822 int nCopy
= (int)(pFile
->mmapSize
- offset
);
2823 memcpy(&((u8
*)(pFile
->pMapRegion
))[offset
], pBuf
, nCopy
);
2824 pBuf
= &((u8
*)pBuf
)[nCopy
];
2831 #if SQLITE_OS_WINCE || defined(SQLITE_WIN32_NO_OVERLAPPED)
2832 rc
= winSeekFile(pFile
, offset
);
2837 #if !SQLITE_OS_WINCE && !defined(SQLITE_WIN32_NO_OVERLAPPED)
2838 OVERLAPPED overlapped
; /* The offset for WriteFile. */
2840 u8
*aRem
= (u8
*)pBuf
; /* Data yet to be written */
2841 int nRem
= amt
; /* Number of bytes yet to be written */
2842 DWORD nWrite
; /* Bytes written by each WriteFile() call */
2843 DWORD lastErrno
= NO_ERROR
; /* Value returned by GetLastError() */
2845 #if !SQLITE_OS_WINCE && !defined(SQLITE_WIN32_NO_OVERLAPPED)
2846 memset(&overlapped
, 0, sizeof(OVERLAPPED
));
2847 overlapped
.Offset
= (LONG
)(offset
& 0xffffffff);
2848 overlapped
.OffsetHigh
= (LONG
)((offset
>>32) & 0x7fffffff);
2852 #if SQLITE_OS_WINCE || defined(SQLITE_WIN32_NO_OVERLAPPED)
2853 if( !osWriteFile(pFile
->h
, aRem
, nRem
, &nWrite
, 0) ){
2855 if( !osWriteFile(pFile
->h
, aRem
, nRem
, &nWrite
, &overlapped
) ){
2857 if( winRetryIoerr(&nRetry
, &lastErrno
) ) continue;
2860 assert( nWrite
==0 || nWrite
<=(DWORD
)nRem
);
2861 if( nWrite
==0 || nWrite
>(DWORD
)nRem
){
2862 lastErrno
= osGetLastError();
2865 #if !SQLITE_OS_WINCE && !defined(SQLITE_WIN32_NO_OVERLAPPED)
2867 overlapped
.Offset
= (LONG
)(offset
& 0xffffffff);
2868 overlapped
.OffsetHigh
= (LONG
)((offset
>>32) & 0x7fffffff);
2874 pFile
->lastErrno
= lastErrno
;
2880 if( ( pFile
->lastErrno
==ERROR_HANDLE_DISK_FULL
)
2881 || ( pFile
->lastErrno
==ERROR_DISK_FULL
)){
2882 OSTRACE(("WRITE pid=%lu, pFile=%p, file=%p, rc=SQLITE_FULL\n",
2883 osGetCurrentProcessId(), pFile
, pFile
->h
));
2884 return winLogError(SQLITE_FULL
, pFile
->lastErrno
,
2885 "winWrite1", pFile
->zPath
);
2887 OSTRACE(("WRITE pid=%lu, pFile=%p, file=%p, rc=SQLITE_IOERR_WRITE\n",
2888 osGetCurrentProcessId(), pFile
, pFile
->h
));
2889 return winLogError(SQLITE_IOERR_WRITE
, pFile
->lastErrno
,
2890 "winWrite2", pFile
->zPath
);
2892 winLogIoerr(nRetry
, __LINE__
);
2894 OSTRACE(("WRITE pid=%lu, pFile=%p, file=%p, rc=SQLITE_OK\n",
2895 osGetCurrentProcessId(), pFile
, pFile
->h
));
2900 ** Truncate an open file to a specified size
2902 static int winTruncate(sqlite3_file
*id
, sqlite3_int64 nByte
){
2903 winFile
*pFile
= (winFile
*)id
; /* File handle object */
2904 int rc
= SQLITE_OK
; /* Return code for this function */
2906 #if SQLITE_MAX_MMAP_SIZE>0
2907 sqlite3_int64 oldMmapSize
;
2908 if( pFile
->nFetchOut
>0 ){
2909 /* File truncation is a no-op if there are outstanding memory mapped
2910 ** pages. This is because truncating the file means temporarily unmapping
2911 ** the file, and that might delete memory out from under existing cursors.
2913 ** This can result in incremental vacuum not truncating the file,
2914 ** if there is an active read cursor when the incremental vacuum occurs.
2915 ** No real harm comes of this - the database file is not corrupted,
2916 ** though some folks might complain that the file is bigger than it
2919 ** The only feasible work-around is to defer the truncation until after
2920 ** all references to memory-mapped content are closed. That is doable,
2921 ** but involves adding a few branches in the common write code path which
2922 ** could slow down normal operations slightly. Hence, we have decided for
2923 ** now to simply make trancations a no-op if there are pending reads. We
2924 ** can maybe revisit this decision in the future.
2931 SimulateIOError(return SQLITE_IOERR_TRUNCATE
);
2932 OSTRACE(("TRUNCATE pid=%lu, pFile=%p, file=%p, size=%lld, lock=%d\n",
2933 osGetCurrentProcessId(), pFile
, pFile
->h
, nByte
, pFile
->locktype
));
2935 /* If the user has configured a chunk-size for this file, truncate the
2936 ** file so that it consists of an integer number of chunks (i.e. the
2937 ** actual file size after the operation may be larger than the requested
2940 if( pFile
->szChunk
>0 ){
2941 nByte
= ((nByte
+ pFile
->szChunk
- 1)/pFile
->szChunk
) * pFile
->szChunk
;
2944 #if SQLITE_MAX_MMAP_SIZE>0
2945 if( pFile
->pMapRegion
){
2946 oldMmapSize
= pFile
->mmapSize
;
2950 winUnmapfile(pFile
);
2953 /* SetEndOfFile() returns non-zero when successful, or zero when it fails. */
2954 if( winSeekFile(pFile
, nByte
) ){
2955 rc
= winLogError(SQLITE_IOERR_TRUNCATE
, pFile
->lastErrno
,
2956 "winTruncate1", pFile
->zPath
);
2957 }else if( 0==osSetEndOfFile(pFile
->h
) &&
2958 ((lastErrno
= osGetLastError())!=ERROR_USER_MAPPED_FILE
) ){
2959 pFile
->lastErrno
= lastErrno
;
2960 rc
= winLogError(SQLITE_IOERR_TRUNCATE
, pFile
->lastErrno
,
2961 "winTruncate2", pFile
->zPath
);
2964 #if SQLITE_MAX_MMAP_SIZE>0
2965 if( rc
==SQLITE_OK
&& oldMmapSize
>0 ){
2966 if( oldMmapSize
>nByte
){
2967 winMapfile(pFile
, -1);
2969 winMapfile(pFile
, oldMmapSize
);
2974 OSTRACE(("TRUNCATE pid=%lu, pFile=%p, file=%p, rc=%s\n",
2975 osGetCurrentProcessId(), pFile
, pFile
->h
, sqlite3ErrName(rc
)));
2981 ** Count the number of fullsyncs and normal syncs. This is used to test
2982 ** that syncs and fullsyncs are occuring at the right times.
2984 int sqlite3_sync_count
= 0;
2985 int sqlite3_fullsync_count
= 0;
2989 ** Make sure all writes to a particular file are committed to disk.
2991 static int winSync(sqlite3_file
*id
, int flags
){
2992 #ifndef SQLITE_NO_SYNC
2994 ** Used only when SQLITE_NO_SYNC is not defined.
2998 #if !defined(NDEBUG) || !defined(SQLITE_NO_SYNC) || \
2999 defined(SQLITE_HAVE_OS_TRACE)
3001 ** Used when SQLITE_NO_SYNC is not defined and by the assert() and/or
3002 ** OSTRACE() macros.
3004 winFile
*pFile
= (winFile
*)id
;
3006 UNUSED_PARAMETER(id
);
3010 /* Check that one of SQLITE_SYNC_NORMAL or FULL was passed */
3011 assert((flags
&0x0F)==SQLITE_SYNC_NORMAL
3012 || (flags
&0x0F)==SQLITE_SYNC_FULL
3015 /* Unix cannot, but some systems may return SQLITE_FULL from here. This
3016 ** line is to test that doing so does not cause any problems.
3018 SimulateDiskfullError( return SQLITE_FULL
);
3020 OSTRACE(("SYNC pid=%lu, pFile=%p, file=%p, flags=%x, lock=%d\n",
3021 osGetCurrentProcessId(), pFile
, pFile
->h
, flags
,
3025 UNUSED_PARAMETER(flags
);
3027 if( (flags
&0x0F)==SQLITE_SYNC_FULL
){
3028 sqlite3_fullsync_count
++;
3030 sqlite3_sync_count
++;
3033 /* If we compiled with the SQLITE_NO_SYNC flag, then syncing is a
3036 #ifdef SQLITE_NO_SYNC
3037 OSTRACE(("SYNC-NOP pid=%lu, pFile=%p, file=%p, rc=SQLITE_OK\n",
3038 osGetCurrentProcessId(), pFile
, pFile
->h
));
3041 #if SQLITE_MAX_MMAP_SIZE>0
3042 if( pFile
->pMapRegion
){
3043 if( osFlushViewOfFile(pFile
->pMapRegion
, 0) ){
3044 OSTRACE(("SYNC-MMAP pid=%lu, pFile=%p, pMapRegion=%p, "
3045 "rc=SQLITE_OK\n", osGetCurrentProcessId(),
3046 pFile
, pFile
->pMapRegion
));
3048 pFile
->lastErrno
= osGetLastError();
3049 OSTRACE(("SYNC-MMAP pid=%lu, pFile=%p, pMapRegion=%p, "
3050 "rc=SQLITE_IOERR_MMAP\n", osGetCurrentProcessId(),
3051 pFile
, pFile
->pMapRegion
));
3052 return winLogError(SQLITE_IOERR_MMAP
, pFile
->lastErrno
,
3053 "winSync1", pFile
->zPath
);
3057 rc
= osFlushFileBuffers(pFile
->h
);
3058 SimulateIOError( rc
=FALSE
);
3060 OSTRACE(("SYNC pid=%lu, pFile=%p, file=%p, rc=SQLITE_OK\n",
3061 osGetCurrentProcessId(), pFile
, pFile
->h
));
3064 pFile
->lastErrno
= osGetLastError();
3065 OSTRACE(("SYNC pid=%lu, pFile=%p, file=%p, rc=SQLITE_IOERR_FSYNC\n",
3066 osGetCurrentProcessId(), pFile
, pFile
->h
));
3067 return winLogError(SQLITE_IOERR_FSYNC
, pFile
->lastErrno
,
3068 "winSync2", pFile
->zPath
);
3074 ** Determine the current size of a file in bytes
3076 static int winFileSize(sqlite3_file
*id
, sqlite3_int64
*pSize
){
3077 winFile
*pFile
= (winFile
*)id
;
3082 SimulateIOError(return SQLITE_IOERR_FSTAT
);
3083 OSTRACE(("SIZE file=%p, pSize=%p\n", pFile
->h
, pSize
));
3087 FILE_STANDARD_INFO info
;
3088 if( osGetFileInformationByHandleEx(pFile
->h
, FileStandardInfo
,
3089 &info
, sizeof(info
)) ){
3090 *pSize
= info
.EndOfFile
.QuadPart
;
3092 pFile
->lastErrno
= osGetLastError();
3093 rc
= winLogError(SQLITE_IOERR_FSTAT
, pFile
->lastErrno
,
3094 "winFileSize", pFile
->zPath
);
3103 lowerBits
= osGetFileSize(pFile
->h
, &upperBits
);
3104 *pSize
= (((sqlite3_int64
)upperBits
)<<32) + lowerBits
;
3105 if( (lowerBits
== INVALID_FILE_SIZE
)
3106 && ((lastErrno
= osGetLastError())!=NO_ERROR
) ){
3107 pFile
->lastErrno
= lastErrno
;
3108 rc
= winLogError(SQLITE_IOERR_FSTAT
, pFile
->lastErrno
,
3109 "winFileSize", pFile
->zPath
);
3113 OSTRACE(("SIZE file=%p, pSize=%p, *pSize=%lld, rc=%s\n",
3114 pFile
->h
, pSize
, *pSize
, sqlite3ErrName(rc
)));
3119 ** LOCKFILE_FAIL_IMMEDIATELY is undefined on some Windows systems.
3121 #ifndef LOCKFILE_FAIL_IMMEDIATELY
3122 # define LOCKFILE_FAIL_IMMEDIATELY 1
3125 #ifndef LOCKFILE_EXCLUSIVE_LOCK
3126 # define LOCKFILE_EXCLUSIVE_LOCK 2
3130 ** Historically, SQLite has used both the LockFile and LockFileEx functions.
3131 ** When the LockFile function was used, it was always expected to fail
3132 ** immediately if the lock could not be obtained. Also, it always expected to
3133 ** obtain an exclusive lock. These flags are used with the LockFileEx function
3134 ** and reflect those expectations; therefore, they should not be changed.
3136 #ifndef SQLITE_LOCKFILE_FLAGS
3137 # define SQLITE_LOCKFILE_FLAGS (LOCKFILE_FAIL_IMMEDIATELY | \
3138 LOCKFILE_EXCLUSIVE_LOCK)
3142 ** Currently, SQLite never calls the LockFileEx function without wanting the
3143 ** call to fail immediately if the lock cannot be obtained.
3145 #ifndef SQLITE_LOCKFILEEX_FLAGS
3146 # define SQLITE_LOCKFILEEX_FLAGS (LOCKFILE_FAIL_IMMEDIATELY)
3150 ** Acquire a reader lock.
3151 ** Different API routines are called depending on whether or not this
3152 ** is Win9x or WinNT.
3154 static int winGetReadLock(winFile
*pFile
){
3156 OSTRACE(("READ-LOCK file=%p, lock=%d\n", pFile
->h
, pFile
->locktype
));
3160 ** NOTE: Windows CE is handled differently here due its lack of the Win32
3163 res
= winceLockFile(&pFile
->h
, SHARED_FIRST
, 0, 1, 0);
3165 res
= winLockFile(&pFile
->h
, SQLITE_LOCKFILEEX_FLAGS
, SHARED_FIRST
, 0,
3169 #ifdef SQLITE_WIN32_HAS_ANSI
3172 sqlite3_randomness(sizeof(lk
), &lk
);
3173 pFile
->sharedLockByte
= (short)((lk
& 0x7fffffff)%(SHARED_SIZE
- 1));
3174 res
= winLockFile(&pFile
->h
, SQLITE_LOCKFILE_FLAGS
,
3175 SHARED_FIRST
+pFile
->sharedLockByte
, 0, 1, 0);
3179 pFile
->lastErrno
= osGetLastError();
3180 /* No need to log a failure to lock */
3182 OSTRACE(("READ-LOCK file=%p, result=%d\n", pFile
->h
, res
));
3189 static int winUnlockReadLock(winFile
*pFile
){
3192 OSTRACE(("READ-UNLOCK file=%p, lock=%d\n", pFile
->h
, pFile
->locktype
));
3194 res
= winUnlockFile(&pFile
->h
, SHARED_FIRST
, 0, SHARED_SIZE
, 0);
3196 #ifdef SQLITE_WIN32_HAS_ANSI
3198 res
= winUnlockFile(&pFile
->h
, SHARED_FIRST
+pFile
->sharedLockByte
, 0, 1, 0);
3201 if( res
==0 && ((lastErrno
= osGetLastError())!=ERROR_NOT_LOCKED
) ){
3202 pFile
->lastErrno
= lastErrno
;
3203 winLogError(SQLITE_IOERR_UNLOCK
, pFile
->lastErrno
,
3204 "winUnlockReadLock", pFile
->zPath
);
3206 OSTRACE(("READ-UNLOCK file=%p, result=%d\n", pFile
->h
, res
));
3211 ** Lock the file with the lock specified by parameter locktype - one
3212 ** of the following:
3215 ** (2) RESERVED_LOCK
3217 ** (4) EXCLUSIVE_LOCK
3219 ** Sometimes when requesting one lock state, additional lock states
3220 ** are inserted in between. The locking might fail on one of the later
3221 ** transitions leaving the lock state different from what it started but
3222 ** still short of its goal. The following chart shows the allowed
3223 ** transitions and the inserted intermediate states:
3225 ** UNLOCKED -> SHARED
3226 ** SHARED -> RESERVED
3227 ** SHARED -> (PENDING) -> EXCLUSIVE
3228 ** RESERVED -> (PENDING) -> EXCLUSIVE
3229 ** PENDING -> EXCLUSIVE
3231 ** This routine will only increase a lock. The winUnlock() routine
3232 ** erases all locks at once and returns us immediately to locking level 0.
3233 ** It is not possible to lower the locking level one step at a time. You
3234 ** must go straight to locking level 0.
3236 static int winLock(sqlite3_file
*id
, int locktype
){
3237 int rc
= SQLITE_OK
; /* Return code from subroutines */
3238 int res
= 1; /* Result of a Windows lock call */
3239 int newLocktype
; /* Set pFile->locktype to this value before exiting */
3240 int gotPendingLock
= 0;/* True if we acquired a PENDING lock this time */
3241 winFile
*pFile
= (winFile
*)id
;
3242 DWORD lastErrno
= NO_ERROR
;
3245 OSTRACE(("LOCK file=%p, oldLock=%d(%d), newLock=%d\n",
3246 pFile
->h
, pFile
->locktype
, pFile
->sharedLockByte
, locktype
));
3248 /* If there is already a lock of this type or more restrictive on the
3249 ** OsFile, do nothing. Don't use the end_lock: exit path, as
3250 ** sqlite3OsEnterMutex() hasn't been called yet.
3252 if( pFile
->locktype
>=locktype
){
3253 OSTRACE(("LOCK-HELD file=%p, rc=SQLITE_OK\n", pFile
->h
));
3257 /* Do not allow any kind of write-lock on a read-only database
3259 if( (pFile
->ctrlFlags
& WINFILE_RDONLY
)!=0 && locktype
>=RESERVED_LOCK
){
3260 return SQLITE_IOERR_LOCK
;
3263 /* Make sure the locking sequence is correct
3265 assert( pFile
->locktype
!=NO_LOCK
|| locktype
==SHARED_LOCK
);
3266 assert( locktype
!=PENDING_LOCK
);
3267 assert( locktype
!=RESERVED_LOCK
|| pFile
->locktype
==SHARED_LOCK
);
3269 /* Lock the PENDING_LOCK byte if we need to acquire a PENDING lock or
3270 ** a SHARED lock. If we are acquiring a SHARED lock, the acquisition of
3271 ** the PENDING_LOCK byte is temporary.
3273 newLocktype
= pFile
->locktype
;
3274 if( pFile
->locktype
==NO_LOCK
3275 || (locktype
==EXCLUSIVE_LOCK
&& pFile
->locktype
<=RESERVED_LOCK
)
3278 while( cnt
-->0 && (res
= winLockFile(&pFile
->h
, SQLITE_LOCKFILE_FLAGS
,
3279 PENDING_BYTE
, 0, 1, 0))==0 ){
3280 /* Try 3 times to get the pending lock. This is needed to work
3281 ** around problems caused by indexing and/or anti-virus software on
3283 ** If you are using this code as a model for alternative VFSes, do not
3284 ** copy this retry logic. It is a hack intended for Windows only.
3286 lastErrno
= osGetLastError();
3287 OSTRACE(("LOCK-PENDING-FAIL file=%p, count=%d, result=%d\n",
3288 pFile
->h
, cnt
, res
));
3289 if( lastErrno
==ERROR_INVALID_HANDLE
){
3290 pFile
->lastErrno
= lastErrno
;
3291 rc
= SQLITE_IOERR_LOCK
;
3292 OSTRACE(("LOCK-FAIL file=%p, count=%d, rc=%s\n",
3293 pFile
->h
, cnt
, sqlite3ErrName(rc
)));
3296 if( cnt
) sqlite3_win32_sleep(1);
3298 gotPendingLock
= res
;
3300 lastErrno
= osGetLastError();
3304 /* Acquire a shared lock
3306 if( locktype
==SHARED_LOCK
&& res
){
3307 assert( pFile
->locktype
==NO_LOCK
);
3308 res
= winGetReadLock(pFile
);
3310 newLocktype
= SHARED_LOCK
;
3312 lastErrno
= osGetLastError();
3316 /* Acquire a RESERVED lock
3318 if( locktype
==RESERVED_LOCK
&& res
){
3319 assert( pFile
->locktype
==SHARED_LOCK
);
3320 res
= winLockFile(&pFile
->h
, SQLITE_LOCKFILE_FLAGS
, RESERVED_BYTE
, 0, 1, 0);
3322 newLocktype
= RESERVED_LOCK
;
3324 lastErrno
= osGetLastError();
3328 /* Acquire a PENDING lock
3330 if( locktype
==EXCLUSIVE_LOCK
&& res
){
3331 newLocktype
= PENDING_LOCK
;
3335 /* Acquire an EXCLUSIVE lock
3337 if( locktype
==EXCLUSIVE_LOCK
&& res
){
3338 assert( pFile
->locktype
>=SHARED_LOCK
);
3339 res
= winUnlockReadLock(pFile
);
3340 res
= winLockFile(&pFile
->h
, SQLITE_LOCKFILE_FLAGS
, SHARED_FIRST
, 0,
3343 newLocktype
= EXCLUSIVE_LOCK
;
3345 lastErrno
= osGetLastError();
3346 winGetReadLock(pFile
);
3350 /* If we are holding a PENDING lock that ought to be released, then
3353 if( gotPendingLock
&& locktype
==SHARED_LOCK
){
3354 winUnlockFile(&pFile
->h
, PENDING_BYTE
, 0, 1, 0);
3357 /* Update the state of the lock has held in the file descriptor then
3358 ** return the appropriate result code.
3363 pFile
->lastErrno
= lastErrno
;
3365 OSTRACE(("LOCK-FAIL file=%p, wanted=%d, got=%d\n",
3366 pFile
->h
, locktype
, newLocktype
));
3368 pFile
->locktype
= (u8
)newLocktype
;
3369 OSTRACE(("LOCK file=%p, lock=%d, rc=%s\n",
3370 pFile
->h
, pFile
->locktype
, sqlite3ErrName(rc
)));
3375 ** This routine checks if there is a RESERVED lock held on the specified
3376 ** file by this or any other process. If such a lock is held, return
3377 ** non-zero, otherwise zero.
3379 static int winCheckReservedLock(sqlite3_file
*id
, int *pResOut
){
3381 winFile
*pFile
= (winFile
*)id
;
3383 SimulateIOError( return SQLITE_IOERR_CHECKRESERVEDLOCK
; );
3384 OSTRACE(("TEST-WR-LOCK file=%p, pResOut=%p\n", pFile
->h
, pResOut
));
3387 if( pFile
->locktype
>=RESERVED_LOCK
){
3389 OSTRACE(("TEST-WR-LOCK file=%p, result=%d (local)\n", pFile
->h
, res
));
3391 res
= winLockFile(&pFile
->h
, SQLITE_LOCKFILEEX_FLAGS
,RESERVED_BYTE
,0,1,0);
3393 winUnlockFile(&pFile
->h
, RESERVED_BYTE
, 0, 1, 0);
3396 OSTRACE(("TEST-WR-LOCK file=%p, result=%d (remote)\n", pFile
->h
, res
));
3399 OSTRACE(("TEST-WR-LOCK file=%p, pResOut=%p, *pResOut=%d, rc=SQLITE_OK\n",
3400 pFile
->h
, pResOut
, *pResOut
));
3405 ** Lower the locking level on file descriptor id to locktype. locktype
3406 ** must be either NO_LOCK or SHARED_LOCK.
3408 ** If the locking level of the file descriptor is already at or below
3409 ** the requested locking level, this routine is a no-op.
3411 ** It is not possible for this routine to fail if the second argument
3412 ** is NO_LOCK. If the second argument is SHARED_LOCK then this routine
3413 ** might return SQLITE_IOERR;
3415 static int winUnlock(sqlite3_file
*id
, int locktype
){
3417 winFile
*pFile
= (winFile
*)id
;
3420 assert( locktype
<=SHARED_LOCK
);
3421 OSTRACE(("UNLOCK file=%p, oldLock=%d(%d), newLock=%d\n",
3422 pFile
->h
, pFile
->locktype
, pFile
->sharedLockByte
, locktype
));
3423 type
= pFile
->locktype
;
3424 if( type
>=EXCLUSIVE_LOCK
){
3425 winUnlockFile(&pFile
->h
, SHARED_FIRST
, 0, SHARED_SIZE
, 0);
3426 if( locktype
==SHARED_LOCK
&& !winGetReadLock(pFile
) ){
3427 /* This should never happen. We should always be able to
3428 ** reacquire the read lock */
3429 rc
= winLogError(SQLITE_IOERR_UNLOCK
, osGetLastError(),
3430 "winUnlock", pFile
->zPath
);
3433 if( type
>=RESERVED_LOCK
){
3434 winUnlockFile(&pFile
->h
, RESERVED_BYTE
, 0, 1, 0);
3436 if( locktype
==NO_LOCK
&& type
>=SHARED_LOCK
){
3437 winUnlockReadLock(pFile
);
3439 if( type
>=PENDING_LOCK
){
3440 winUnlockFile(&pFile
->h
, PENDING_BYTE
, 0, 1, 0);
3442 pFile
->locktype
= (u8
)locktype
;
3443 OSTRACE(("UNLOCK file=%p, lock=%d, rc=%s\n",
3444 pFile
->h
, pFile
->locktype
, sqlite3ErrName(rc
)));
3448 /******************************************************************************
3449 ****************************** No-op Locking **********************************
3451 ** Of the various locking implementations available, this is by far the
3452 ** simplest: locking is ignored. No attempt is made to lock the database
3453 ** file for reading or writing.
3455 ** This locking mode is appropriate for use on read-only databases
3456 ** (ex: databases that are burned into CD-ROM, for example.) It can
3457 ** also be used if the application employs some external mechanism to
3458 ** prevent simultaneous access of the same database by two or more
3459 ** database connections. But there is a serious risk of database
3460 ** corruption if this locking mode is used in situations where multiple
3461 ** database connections are accessing the same database file at the same
3462 ** time and one or more of those connections are writing.
3465 static int winNolockLock(sqlite3_file
*id
, int locktype
){
3466 UNUSED_PARAMETER(id
);
3467 UNUSED_PARAMETER(locktype
);
3471 static int winNolockCheckReservedLock(sqlite3_file
*id
, int *pResOut
){
3472 UNUSED_PARAMETER(id
);
3473 UNUSED_PARAMETER(pResOut
);
3477 static int winNolockUnlock(sqlite3_file
*id
, int locktype
){
3478 UNUSED_PARAMETER(id
);
3479 UNUSED_PARAMETER(locktype
);
3483 /******************* End of the no-op lock implementation *********************
3484 ******************************************************************************/
3487 ** If *pArg is initially negative then this is a query. Set *pArg to
3488 ** 1 or 0 depending on whether or not bit mask of pFile->ctrlFlags is set.
3490 ** If *pArg is 0 or 1, then clear or set the mask bit of pFile->ctrlFlags.
3492 static void winModeBit(winFile
*pFile
, unsigned char mask
, int *pArg
){
3494 *pArg
= (pFile
->ctrlFlags
& mask
)!=0;
3495 }else if( (*pArg
)==0 ){
3496 pFile
->ctrlFlags
&= ~mask
;
3498 pFile
->ctrlFlags
|= mask
;
3502 /* Forward references to VFS helper methods used for temporary files */
3503 static int winGetTempname(sqlite3_vfs
*, char **);
3504 static int winIsDir(const void *);
3505 static BOOL
winIsLongPathPrefix(const char *);
3506 static BOOL
winIsDriveLetterAndColon(const char *);
3509 ** Control and query of the open file handle.
3511 static int winFileControl(sqlite3_file
*id
, int op
, void *pArg
){
3512 winFile
*pFile
= (winFile
*)id
;
3513 OSTRACE(("FCNTL file=%p, op=%d, pArg=%p\n", pFile
->h
, op
, pArg
));
3515 case SQLITE_FCNTL_LOCKSTATE
: {
3516 *(int*)pArg
= pFile
->locktype
;
3517 OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile
->h
));
3520 case SQLITE_FCNTL_LAST_ERRNO
: {
3521 *(int*)pArg
= (int)pFile
->lastErrno
;
3522 OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile
->h
));
3525 case SQLITE_FCNTL_CHUNK_SIZE
: {
3526 pFile
->szChunk
= *(int *)pArg
;
3527 OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile
->h
));
3530 case SQLITE_FCNTL_SIZE_HINT
: {
3531 if( pFile
->szChunk
>0 ){
3532 sqlite3_int64 oldSz
;
3533 int rc
= winFileSize(id
, &oldSz
);
3534 if( rc
==SQLITE_OK
){
3535 sqlite3_int64 newSz
= *(sqlite3_int64
*)pArg
;
3537 SimulateIOErrorBenign(1);
3538 rc
= winTruncate(id
, newSz
);
3539 SimulateIOErrorBenign(0);
3542 OSTRACE(("FCNTL file=%p, rc=%s\n", pFile
->h
, sqlite3ErrName(rc
)));
3545 OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile
->h
));
3548 case SQLITE_FCNTL_PERSIST_WAL
: {
3549 winModeBit(pFile
, WINFILE_PERSIST_WAL
, (int*)pArg
);
3550 OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile
->h
));
3553 case SQLITE_FCNTL_POWERSAFE_OVERWRITE
: {
3554 winModeBit(pFile
, WINFILE_PSOW
, (int*)pArg
);
3555 OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile
->h
));
3558 case SQLITE_FCNTL_VFSNAME
: {
3559 *(char**)pArg
= sqlite3_mprintf("%s", pFile
->pVfs
->zName
);
3560 OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile
->h
));
3563 case SQLITE_FCNTL_WIN32_AV_RETRY
: {
3564 int *a
= (int*)pArg
;
3566 winIoerrRetry
= a
[0];
3568 a
[0] = winIoerrRetry
;
3571 winIoerrRetryDelay
= a
[1];
3573 a
[1] = winIoerrRetryDelay
;
3575 OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile
->h
));
3578 case SQLITE_FCNTL_WIN32_GET_HANDLE
: {
3579 LPHANDLE phFile
= (LPHANDLE
)pArg
;
3581 OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile
->h
));
3585 case SQLITE_FCNTL_WIN32_SET_HANDLE
: {
3586 LPHANDLE phFile
= (LPHANDLE
)pArg
;
3587 HANDLE hOldFile
= pFile
->h
;
3590 OSTRACE(("FCNTL oldFile=%p, newFile=%p, rc=SQLITE_OK\n",
3591 hOldFile
, pFile
->h
));
3595 case SQLITE_FCNTL_TEMPFILENAME
: {
3597 int rc
= winGetTempname(pFile
->pVfs
, &zTFile
);
3598 if( rc
==SQLITE_OK
){
3599 *(char**)pArg
= zTFile
;
3601 OSTRACE(("FCNTL file=%p, rc=%s\n", pFile
->h
, sqlite3ErrName(rc
)));
3604 #if SQLITE_MAX_MMAP_SIZE>0
3605 case SQLITE_FCNTL_MMAP_SIZE
: {
3606 i64 newLimit
= *(i64
*)pArg
;
3608 if( newLimit
>sqlite3GlobalConfig
.mxMmap
){
3609 newLimit
= sqlite3GlobalConfig
.mxMmap
;
3612 /* The value of newLimit may be eventually cast to (SIZE_T) and passed
3613 ** to MapViewOfFile(). Restrict its value to 2GB if (SIZE_T) is not at
3614 ** least a 64-bit type. */
3615 if( newLimit
>0 && sizeof(SIZE_T
)<8 ){
3616 newLimit
= (newLimit
& 0x7FFFFFFF);
3619 *(i64
*)pArg
= pFile
->mmapSizeMax
;
3620 if( newLimit
>=0 && newLimit
!=pFile
->mmapSizeMax
&& pFile
->nFetchOut
==0 ){
3621 pFile
->mmapSizeMax
= newLimit
;
3622 if( pFile
->mmapSize
>0 ){
3623 winUnmapfile(pFile
);
3624 rc
= winMapfile(pFile
, -1);
3627 OSTRACE(("FCNTL file=%p, rc=%s\n", pFile
->h
, sqlite3ErrName(rc
)));
3632 OSTRACE(("FCNTL file=%p, rc=SQLITE_NOTFOUND\n", pFile
->h
));
3633 return SQLITE_NOTFOUND
;
3637 ** Return the sector size in bytes of the underlying block device for
3638 ** the specified file. This is almost always 512 bytes, but may be
3639 ** larger for some devices.
3641 ** SQLite code assumes this function cannot fail. It also assumes that
3642 ** if two files are created in the same file-system directory (i.e.
3643 ** a database and its journal file) that the sector size will be the
3646 static int winSectorSize(sqlite3_file
*id
){
3648 return SQLITE_DEFAULT_SECTOR_SIZE
;
3652 ** Return a vector of device characteristics.
3654 static int winDeviceCharacteristics(sqlite3_file
*id
){
3655 winFile
*p
= (winFile
*)id
;
3656 return SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN
|
3657 ((p
->ctrlFlags
& WINFILE_PSOW
)?SQLITE_IOCAP_POWERSAFE_OVERWRITE
:0);
3661 ** Windows will only let you create file view mappings
3662 ** on allocation size granularity boundaries.
3663 ** During sqlite3_os_init() we do a GetSystemInfo()
3664 ** to get the granularity size.
3666 static SYSTEM_INFO winSysInfo
;
3668 #ifndef SQLITE_OMIT_WAL
3671 ** Helper functions to obtain and relinquish the global mutex. The
3672 ** global mutex is used to protect the winLockInfo objects used by
3673 ** this file, all of which may be shared by multiple threads.
3675 ** Function winShmMutexHeld() is used to assert() that the global mutex
3676 ** is held when required. This function is only used as part of assert()
3679 ** winShmEnterMutex()
3680 ** assert( winShmMutexHeld() );
3681 ** winShmLeaveMutex()
3683 static sqlite3_mutex
*winBigLock
= 0;
3684 static void winShmEnterMutex(void){
3685 sqlite3_mutex_enter(winBigLock
);
3687 static void winShmLeaveMutex(void){
3688 sqlite3_mutex_leave(winBigLock
);
3691 static int winShmMutexHeld(void) {
3692 return sqlite3_mutex_held(winBigLock
);
3697 ** Object used to represent a single file opened and mmapped to provide
3698 ** shared memory. When multiple threads all reference the same
3699 ** log-summary, each thread has its own winFile object, but they all
3700 ** point to a single instance of this object. In other words, each
3701 ** log-summary is opened only once per process.
3703 ** winShmMutexHeld() must be true when creating or destroying
3704 ** this object or while reading or writing the following fields:
3709 ** The following fields are read-only after the object is created:
3714 ** Either winShmNode.mutex must be held or winShmNode.nRef==0 and
3715 ** winShmMutexHeld() is true when reading or writing any other field
3716 ** in this structure.
3720 sqlite3_mutex
*mutex
; /* Mutex to access this object */
3721 char *zFilename
; /* Name of the file */
3722 winFile hFile
; /* File handle from winOpen */
3724 int szRegion
; /* Size of shared-memory regions */
3725 int nRegion
; /* Size of array apRegion */
3726 u8 isReadonly
; /* True if read-only */
3727 u8 isUnlocked
; /* True if no DMS lock held */
3730 HANDLE hMap
; /* File handle from CreateFileMapping */
3733 DWORD lastErrno
; /* The Windows errno from the last I/O error */
3735 int nRef
; /* Number of winShm objects pointing to this */
3736 winShm
*pFirst
; /* All winShm objects pointing to this */
3737 winShmNode
*pNext
; /* Next in list of all winShmNode objects */
3738 #if defined(SQLITE_DEBUG) || defined(SQLITE_HAVE_OS_TRACE)
3739 u8 nextShmId
; /* Next available winShm.id value */
3744 ** A global array of all winShmNode objects.
3746 ** The winShmMutexHeld() must be true while reading or writing this list.
3748 static winShmNode
*winShmNodeList
= 0;
3751 ** Structure used internally by this VFS to record the state of an
3752 ** open shared memory connection.
3754 ** The following fields are initialized when this object is created and
3755 ** are read-only thereafter:
3760 ** All other fields are read/write. The winShm.pShmNode->mutex must be held
3761 ** while accessing any read/write fields.
3764 winShmNode
*pShmNode
; /* The underlying winShmNode object */
3765 winShm
*pNext
; /* Next winShm with the same winShmNode */
3766 u8 hasMutex
; /* True if holding the winShmNode mutex */
3767 u16 sharedMask
; /* Mask of shared locks held */
3768 u16 exclMask
; /* Mask of exclusive locks held */
3769 #if defined(SQLITE_DEBUG) || defined(SQLITE_HAVE_OS_TRACE)
3770 u8 id
; /* Id of this connection with its winShmNode */
3775 ** Constants used for locking
3777 #define WIN_SHM_BASE ((22+SQLITE_SHM_NLOCK)*4) /* first lock byte */
3778 #define WIN_SHM_DMS (WIN_SHM_BASE+SQLITE_SHM_NLOCK) /* deadman switch */
3781 ** Apply advisory locks for all n bytes beginning at ofst.
3783 #define WINSHM_UNLCK 1
3784 #define WINSHM_RDLCK 2
3785 #define WINSHM_WRLCK 3
3786 static int winShmSystemLock(
3787 winShmNode
*pFile
, /* Apply locks to this open shared-memory segment */
3788 int lockType
, /* WINSHM_UNLCK, WINSHM_RDLCK, or WINSHM_WRLCK */
3789 int ofst
, /* Offset to first byte to be locked/unlocked */
3790 int nByte
/* Number of bytes to lock or unlock */
3792 int rc
= 0; /* Result code form Lock/UnlockFileEx() */
3794 /* Access to the winShmNode object is serialized by the caller */
3795 assert( pFile
->nRef
==0 || sqlite3_mutex_held(pFile
->mutex
) );
3797 OSTRACE(("SHM-LOCK file=%p, lock=%d, offset=%d, size=%d\n",
3798 pFile
->hFile
.h
, lockType
, ofst
, nByte
));
3800 /* Release/Acquire the system-level lock */
3801 if( lockType
==WINSHM_UNLCK
){
3802 rc
= winUnlockFile(&pFile
->hFile
.h
, ofst
, 0, nByte
, 0);
3804 /* Initialize the locking parameters */
3805 DWORD dwFlags
= LOCKFILE_FAIL_IMMEDIATELY
;
3806 if( lockType
== WINSHM_WRLCK
) dwFlags
|= LOCKFILE_EXCLUSIVE_LOCK
;
3807 rc
= winLockFile(&pFile
->hFile
.h
, dwFlags
, ofst
, 0, nByte
, 0);
3813 pFile
->lastErrno
= osGetLastError();
3817 OSTRACE(("SHM-LOCK file=%p, func=%s, errno=%lu, rc=%s\n",
3818 pFile
->hFile
.h
, (lockType
== WINSHM_UNLCK
) ? "winUnlockFile" :
3819 "winLockFile", pFile
->lastErrno
, sqlite3ErrName(rc
)));
3824 /* Forward references to VFS methods */
3825 static int winOpen(sqlite3_vfs
*,const char*,sqlite3_file
*,int,int*);
3826 static int winDelete(sqlite3_vfs
*,const char*,int);
3829 ** Purge the winShmNodeList list of all entries with winShmNode.nRef==0.
3831 ** This is not a VFS shared-memory method; it is a utility function called
3832 ** by VFS shared-memory methods.
3834 static void winShmPurge(sqlite3_vfs
*pVfs
, int deleteFlag
){
3837 assert( winShmMutexHeld() );
3838 OSTRACE(("SHM-PURGE pid=%lu, deleteFlag=%d\n",
3839 osGetCurrentProcessId(), deleteFlag
));
3840 pp
= &winShmNodeList
;
3841 while( (p
= *pp
)!=0 ){
3844 if( p
->mutex
){ sqlite3_mutex_free(p
->mutex
); }
3845 for(i
=0; i
<p
->nRegion
; i
++){
3846 BOOL bRc
= osUnmapViewOfFile(p
->aRegion
[i
].pMap
);
3847 OSTRACE(("SHM-PURGE-UNMAP pid=%lu, region=%d, rc=%s\n",
3848 osGetCurrentProcessId(), i
, bRc
? "ok" : "failed"));
3849 UNUSED_VARIABLE_VALUE(bRc
);
3850 bRc
= osCloseHandle(p
->aRegion
[i
].hMap
);
3851 OSTRACE(("SHM-PURGE-CLOSE pid=%lu, region=%d, rc=%s\n",
3852 osGetCurrentProcessId(), i
, bRc
? "ok" : "failed"));
3853 UNUSED_VARIABLE_VALUE(bRc
);
3855 if( p
->hFile
.h
!=NULL
&& p
->hFile
.h
!=INVALID_HANDLE_VALUE
){
3856 SimulateIOErrorBenign(1);
3857 winClose((sqlite3_file
*)&p
->hFile
);
3858 SimulateIOErrorBenign(0);
3861 SimulateIOErrorBenign(1);
3862 sqlite3BeginBenignMalloc();
3863 winDelete(pVfs
, p
->zFilename
, 0);
3864 sqlite3EndBenignMalloc();
3865 SimulateIOErrorBenign(0);
3868 sqlite3_free(p
->aRegion
);
3877 ** The DMS lock has not yet been taken on shm file pShmNode. Attempt to
3878 ** take it now. Return SQLITE_OK if successful, or an SQLite error
3881 ** If the DMS cannot be locked because this is a readonly_shm=1
3882 ** connection and no other process already holds a lock, return
3883 ** SQLITE_READONLY_CANTINIT and set pShmNode->isUnlocked=1.
3885 static int winLockSharedMemory(winShmNode
*pShmNode
){
3886 int rc
= winShmSystemLock(pShmNode
, WINSHM_WRLCK
, WIN_SHM_DMS
, 1);
3888 if( rc
==SQLITE_OK
){
3889 if( pShmNode
->isReadonly
){
3890 pShmNode
->isUnlocked
= 1;
3891 winShmSystemLock(pShmNode
, WINSHM_UNLCK
, WIN_SHM_DMS
, 1);
3892 return SQLITE_READONLY_CANTINIT
;
3893 }else if( winTruncate((sqlite3_file
*)&pShmNode
->hFile
, 0) ){
3894 winShmSystemLock(pShmNode
, WINSHM_UNLCK
, WIN_SHM_DMS
, 1);
3895 return winLogError(SQLITE_IOERR_SHMOPEN
, osGetLastError(),
3896 "winLockSharedMemory", pShmNode
->zFilename
);
3900 if( rc
==SQLITE_OK
){
3901 winShmSystemLock(pShmNode
, WINSHM_UNLCK
, WIN_SHM_DMS
, 1);
3904 return winShmSystemLock(pShmNode
, WINSHM_RDLCK
, WIN_SHM_DMS
, 1);
3908 ** Open the shared-memory area associated with database file pDbFd.
3910 ** When opening a new shared-memory file, if no other instances of that
3911 ** file are currently open, in this process or in other processes, then
3912 ** the file must be truncated to zero length or have its header cleared.
3914 static int winOpenSharedMemory(winFile
*pDbFd
){
3915 struct winShm
*p
; /* The connection to be opened */
3916 winShmNode
*pShmNode
= 0; /* The underlying mmapped file */
3917 int rc
= SQLITE_OK
; /* Result code */
3918 winShmNode
*pNew
; /* Newly allocated winShmNode */
3919 int nName
; /* Size of zName in bytes */
3921 assert( pDbFd
->pShm
==0 ); /* Not previously opened */
3923 /* Allocate space for the new sqlite3_shm object. Also speculatively
3924 ** allocate space for a new winShmNode and filename.
3926 p
= sqlite3MallocZero( sizeof(*p
) );
3927 if( p
==0 ) return SQLITE_IOERR_NOMEM_BKPT
;
3928 nName
= sqlite3Strlen30(pDbFd
->zPath
);
3929 pNew
= sqlite3MallocZero( sizeof(*pShmNode
) + nName
+ 17 );
3932 return SQLITE_IOERR_NOMEM_BKPT
;
3934 pNew
->zFilename
= (char*)&pNew
[1];
3935 sqlite3_snprintf(nName
+15, pNew
->zFilename
, "%s-shm", pDbFd
->zPath
);
3936 sqlite3FileSuffix3(pDbFd
->zPath
, pNew
->zFilename
);
3938 /* Look to see if there is an existing winShmNode that can be used.
3939 ** If no matching winShmNode currently exists, create a new one.
3942 for(pShmNode
= winShmNodeList
; pShmNode
; pShmNode
=pShmNode
->pNext
){
3943 /* TBD need to come up with better match here. Perhaps
3944 ** use FILE_ID_BOTH_DIR_INFO Structure.
3946 if( sqlite3StrICmp(pShmNode
->zFilename
, pNew
->zFilename
)==0 ) break;
3951 int inFlags
= SQLITE_OPEN_WAL
;
3956 ((winFile
*)(&pShmNode
->hFile
))->h
= INVALID_HANDLE_VALUE
;
3957 pShmNode
->pNext
= winShmNodeList
;
3958 winShmNodeList
= pShmNode
;
3960 if( sqlite3GlobalConfig
.bCoreMutex
){
3961 pShmNode
->mutex
= sqlite3_mutex_alloc(SQLITE_MUTEX_FAST
);
3962 if( pShmNode
->mutex
==0 ){
3963 rc
= SQLITE_IOERR_NOMEM_BKPT
;
3968 if( 0==sqlite3_uri_boolean(pDbFd
->zPath
, "readonly_shm", 0) ){
3969 inFlags
|= SQLITE_OPEN_READWRITE
| SQLITE_OPEN_CREATE
;
3971 inFlags
|= SQLITE_OPEN_READONLY
;
3973 rc
= winOpen(pDbFd
->pVfs
, pShmNode
->zFilename
,
3974 (sqlite3_file
*)&pShmNode
->hFile
,
3975 inFlags
, &outFlags
);
3976 if( rc
!=SQLITE_OK
){
3977 rc
= winLogError(rc
, osGetLastError(), "winOpenShm",
3978 pShmNode
->zFilename
);
3981 if( outFlags
==SQLITE_OPEN_READONLY
) pShmNode
->isReadonly
= 1;
3983 rc
= winLockSharedMemory(pShmNode
);
3984 if( rc
!=SQLITE_OK
&& rc
!=SQLITE_READONLY_CANTINIT
) goto shm_open_err
;
3987 /* Make the new connection a child of the winShmNode */
3988 p
->pShmNode
= pShmNode
;
3989 #if defined(SQLITE_DEBUG) || defined(SQLITE_HAVE_OS_TRACE)
3990 p
->id
= pShmNode
->nextShmId
++;
3996 /* The reference count on pShmNode has already been incremented under
3997 ** the cover of the winShmEnterMutex() mutex and the pointer from the
3998 ** new (struct winShm) object to the pShmNode has been set. All that is
3999 ** left to do is to link the new object into the linked list starting
4000 ** at pShmNode->pFirst. This must be done while holding the pShmNode->mutex
4003 sqlite3_mutex_enter(pShmNode
->mutex
);
4004 p
->pNext
= pShmNode
->pFirst
;
4005 pShmNode
->pFirst
= p
;
4006 sqlite3_mutex_leave(pShmNode
->mutex
);
4009 /* Jump here on any error */
4011 winShmSystemLock(pShmNode
, WINSHM_UNLCK
, WIN_SHM_DMS
, 1);
4012 winShmPurge(pDbFd
->pVfs
, 0); /* This call frees pShmNode if required */
4020 ** Close a connection to shared-memory. Delete the underlying
4021 ** storage if deleteFlag is true.
4023 static int winShmUnmap(
4024 sqlite3_file
*fd
, /* Database holding shared memory */
4025 int deleteFlag
/* Delete after closing if true */
4027 winFile
*pDbFd
; /* Database holding shared-memory */
4028 winShm
*p
; /* The connection to be closed */
4029 winShmNode
*pShmNode
; /* The underlying shared-memory file */
4030 winShm
**pp
; /* For looping over sibling connections */
4032 pDbFd
= (winFile
*)fd
;
4034 if( p
==0 ) return SQLITE_OK
;
4035 pShmNode
= p
->pShmNode
;
4037 /* Remove connection p from the set of connections associated
4039 sqlite3_mutex_enter(pShmNode
->mutex
);
4040 for(pp
=&pShmNode
->pFirst
; (*pp
)!=p
; pp
= &(*pp
)->pNext
){}
4043 /* Free the connection p */
4046 sqlite3_mutex_leave(pShmNode
->mutex
);
4048 /* If pShmNode->nRef has reached 0, then close the underlying
4049 ** shared-memory file, too */
4051 assert( pShmNode
->nRef
>0 );
4053 if( pShmNode
->nRef
==0 ){
4054 winShmPurge(pDbFd
->pVfs
, deleteFlag
);
4062 ** Change the lock state for a shared-memory segment.
4064 static int winShmLock(
4065 sqlite3_file
*fd
, /* Database file holding the shared memory */
4066 int ofst
, /* First lock to acquire or release */
4067 int n
, /* Number of locks to acquire or release */
4068 int flags
/* What to do with the lock */
4070 winFile
*pDbFd
= (winFile
*)fd
; /* Connection holding shared memory */
4071 winShm
*p
= pDbFd
->pShm
; /* The shared memory being locked */
4072 winShm
*pX
; /* For looping over all siblings */
4073 winShmNode
*pShmNode
;
4074 int rc
= SQLITE_OK
; /* Result code */
4075 u16 mask
; /* Mask of locks to take or release */
4077 if( p
==0 ) return SQLITE_IOERR_SHMLOCK
;
4078 pShmNode
= p
->pShmNode
;
4079 if( NEVER(pShmNode
==0) ) return SQLITE_IOERR_SHMLOCK
;
4081 assert( ofst
>=0 && ofst
+n
<=SQLITE_SHM_NLOCK
);
4083 assert( flags
==(SQLITE_SHM_LOCK
| SQLITE_SHM_SHARED
)
4084 || flags
==(SQLITE_SHM_LOCK
| SQLITE_SHM_EXCLUSIVE
)
4085 || flags
==(SQLITE_SHM_UNLOCK
| SQLITE_SHM_SHARED
)
4086 || flags
==(SQLITE_SHM_UNLOCK
| SQLITE_SHM_EXCLUSIVE
) );
4087 assert( n
==1 || (flags
& SQLITE_SHM_EXCLUSIVE
)!=0 );
4089 mask
= (u16
)((1U<<(ofst
+n
)) - (1U<<ofst
));
4090 assert( n
>1 || mask
==(1<<ofst
) );
4091 sqlite3_mutex_enter(pShmNode
->mutex
);
4092 if( flags
& SQLITE_SHM_UNLOCK
){
4093 u16 allMask
= 0; /* Mask of locks held by siblings */
4095 /* See if any siblings hold this same lock */
4096 for(pX
=pShmNode
->pFirst
; pX
; pX
=pX
->pNext
){
4097 if( pX
==p
) continue;
4098 assert( (pX
->exclMask
& (p
->exclMask
|p
->sharedMask
))==0 );
4099 allMask
|= pX
->sharedMask
;
4102 /* Unlock the system-level locks */
4103 if( (mask
& allMask
)==0 ){
4104 rc
= winShmSystemLock(pShmNode
, WINSHM_UNLCK
, ofst
+WIN_SHM_BASE
, n
);
4109 /* Undo the local locks */
4110 if( rc
==SQLITE_OK
){
4111 p
->exclMask
&= ~mask
;
4112 p
->sharedMask
&= ~mask
;
4114 }else if( flags
& SQLITE_SHM_SHARED
){
4115 u16 allShared
= 0; /* Union of locks held by connections other than "p" */
4117 /* Find out which shared locks are already held by sibling connections.
4118 ** If any sibling already holds an exclusive lock, go ahead and return
4121 for(pX
=pShmNode
->pFirst
; pX
; pX
=pX
->pNext
){
4122 if( (pX
->exclMask
& mask
)!=0 ){
4126 allShared
|= pX
->sharedMask
;
4129 /* Get shared locks at the system level, if necessary */
4130 if( rc
==SQLITE_OK
){
4131 if( (allShared
& mask
)==0 ){
4132 rc
= winShmSystemLock(pShmNode
, WINSHM_RDLCK
, ofst
+WIN_SHM_BASE
, n
);
4138 /* Get the local shared locks */
4139 if( rc
==SQLITE_OK
){
4140 p
->sharedMask
|= mask
;
4143 /* Make sure no sibling connections hold locks that will block this
4144 ** lock. If any do, return SQLITE_BUSY right away.
4146 for(pX
=pShmNode
->pFirst
; pX
; pX
=pX
->pNext
){
4147 if( (pX
->exclMask
& mask
)!=0 || (pX
->sharedMask
& mask
)!=0 ){
4153 /* Get the exclusive locks at the system level. Then if successful
4154 ** also mark the local connection as being locked.
4156 if( rc
==SQLITE_OK
){
4157 rc
= winShmSystemLock(pShmNode
, WINSHM_WRLCK
, ofst
+WIN_SHM_BASE
, n
);
4158 if( rc
==SQLITE_OK
){
4159 assert( (p
->sharedMask
& mask
)==0 );
4160 p
->exclMask
|= mask
;
4164 sqlite3_mutex_leave(pShmNode
->mutex
);
4165 OSTRACE(("SHM-LOCK pid=%lu, id=%d, sharedMask=%03x, exclMask=%03x, rc=%s\n",
4166 osGetCurrentProcessId(), p
->id
, p
->sharedMask
, p
->exclMask
,
4167 sqlite3ErrName(rc
)));
4172 ** Implement a memory barrier or memory fence on shared memory.
4174 ** All loads and stores begun before the barrier must complete before
4175 ** any load or store begun after the barrier.
4177 static void winShmBarrier(
4178 sqlite3_file
*fd
/* Database holding the shared memory */
4180 UNUSED_PARAMETER(fd
);
4181 sqlite3MemoryBarrier(); /* compiler-defined memory barrier */
4182 winShmEnterMutex(); /* Also mutex, for redundancy */
4187 ** This function is called to obtain a pointer to region iRegion of the
4188 ** shared-memory associated with the database file fd. Shared-memory regions
4189 ** are numbered starting from zero. Each shared-memory region is szRegion
4192 ** If an error occurs, an error code is returned and *pp is set to NULL.
4194 ** Otherwise, if the isWrite parameter is 0 and the requested shared-memory
4195 ** region has not been allocated (by any client, including one running in a
4196 ** separate process), then *pp is set to NULL and SQLITE_OK returned. If
4197 ** isWrite is non-zero and the requested shared-memory region has not yet
4198 ** been allocated, it is allocated by this function.
4200 ** If the shared-memory region has already been allocated or is allocated by
4201 ** this call as described above, then it is mapped into this processes
4202 ** address space (if it is not already), *pp is set to point to the mapped
4203 ** memory and SQLITE_OK returned.
4205 static int winShmMap(
4206 sqlite3_file
*fd
, /* Handle open on database file */
4207 int iRegion
, /* Region to retrieve */
4208 int szRegion
, /* Size of regions */
4209 int isWrite
, /* True to extend file if necessary */
4210 void volatile **pp
/* OUT: Mapped memory */
4212 winFile
*pDbFd
= (winFile
*)fd
;
4213 winShm
*pShm
= pDbFd
->pShm
;
4214 winShmNode
*pShmNode
;
4215 DWORD protect
= PAGE_READWRITE
;
4216 DWORD flags
= FILE_MAP_WRITE
| FILE_MAP_READ
;
4220 rc
= winOpenSharedMemory(pDbFd
);
4221 if( rc
!=SQLITE_OK
) return rc
;
4225 pShmNode
= pShm
->pShmNode
;
4227 sqlite3_mutex_enter(pShmNode
->mutex
);
4228 if( pShmNode
->isUnlocked
){
4229 rc
= winLockSharedMemory(pShmNode
);
4230 if( rc
!=SQLITE_OK
) goto shmpage_out
;
4231 pShmNode
->isUnlocked
= 0;
4233 assert( szRegion
==pShmNode
->szRegion
|| pShmNode
->nRegion
==0 );
4235 if( pShmNode
->nRegion
<=iRegion
){
4236 struct ShmRegion
*apNew
; /* New aRegion[] array */
4237 int nByte
= (iRegion
+1)*szRegion
; /* Minimum required file size */
4238 sqlite3_int64 sz
; /* Current size of wal-index file */
4240 pShmNode
->szRegion
= szRegion
;
4242 /* The requested region is not mapped into this processes address space.
4243 ** Check to see if it has been allocated (i.e. if the wal-index file is
4244 ** large enough to contain the requested region).
4246 rc
= winFileSize((sqlite3_file
*)&pShmNode
->hFile
, &sz
);
4247 if( rc
!=SQLITE_OK
){
4248 rc
= winLogError(SQLITE_IOERR_SHMSIZE
, osGetLastError(),
4249 "winShmMap1", pDbFd
->zPath
);
4254 /* The requested memory region does not exist. If isWrite is set to
4255 ** zero, exit early. *pp will be set to NULL and SQLITE_OK returned.
4257 ** Alternatively, if isWrite is non-zero, use ftruncate() to allocate
4258 ** the requested memory region.
4260 if( !isWrite
) goto shmpage_out
;
4261 rc
= winTruncate((sqlite3_file
*)&pShmNode
->hFile
, nByte
);
4262 if( rc
!=SQLITE_OK
){
4263 rc
= winLogError(SQLITE_IOERR_SHMSIZE
, osGetLastError(),
4264 "winShmMap2", pDbFd
->zPath
);
4269 /* Map the requested memory region into this processes address space. */
4270 apNew
= (struct ShmRegion
*)sqlite3_realloc64(
4271 pShmNode
->aRegion
, (iRegion
+1)*sizeof(apNew
[0])
4274 rc
= SQLITE_IOERR_NOMEM_BKPT
;
4277 pShmNode
->aRegion
= apNew
;
4279 if( pShmNode
->isReadonly
){
4280 protect
= PAGE_READONLY
;
4281 flags
= FILE_MAP_READ
;
4284 while( pShmNode
->nRegion
<=iRegion
){
4285 HANDLE hMap
= NULL
; /* file-mapping handle */
4286 void *pMap
= 0; /* Mapped memory region */
4289 hMap
= osCreateFileMappingFromApp(pShmNode
->hFile
.h
,
4290 NULL
, protect
, nByte
, NULL
4292 #elif defined(SQLITE_WIN32_HAS_WIDE)
4293 hMap
= osCreateFileMappingW(pShmNode
->hFile
.h
,
4294 NULL
, protect
, 0, nByte
, NULL
4296 #elif defined(SQLITE_WIN32_HAS_ANSI) && SQLITE_WIN32_CREATEFILEMAPPINGA
4297 hMap
= osCreateFileMappingA(pShmNode
->hFile
.h
,
4298 NULL
, protect
, 0, nByte
, NULL
4301 OSTRACE(("SHM-MAP-CREATE pid=%lu, region=%d, size=%d, rc=%s\n",
4302 osGetCurrentProcessId(), pShmNode
->nRegion
, nByte
,
4303 hMap
? "ok" : "failed"));
4305 int iOffset
= pShmNode
->nRegion
*szRegion
;
4306 int iOffsetShift
= iOffset
% winSysInfo
.dwAllocationGranularity
;
4308 pMap
= osMapViewOfFileFromApp(hMap
, flags
,
4309 iOffset
- iOffsetShift
, szRegion
+ iOffsetShift
4312 pMap
= osMapViewOfFile(hMap
, flags
,
4313 0, iOffset
- iOffsetShift
, szRegion
+ iOffsetShift
4316 OSTRACE(("SHM-MAP-MAP pid=%lu, region=%d, offset=%d, size=%d, rc=%s\n",
4317 osGetCurrentProcessId(), pShmNode
->nRegion
, iOffset
,
4318 szRegion
, pMap
? "ok" : "failed"));
4321 pShmNode
->lastErrno
= osGetLastError();
4322 rc
= winLogError(SQLITE_IOERR_SHMMAP
, pShmNode
->lastErrno
,
4323 "winShmMap3", pDbFd
->zPath
);
4324 if( hMap
) osCloseHandle(hMap
);
4328 pShmNode
->aRegion
[pShmNode
->nRegion
].pMap
= pMap
;
4329 pShmNode
->aRegion
[pShmNode
->nRegion
].hMap
= hMap
;
4330 pShmNode
->nRegion
++;
4335 if( pShmNode
->nRegion
>iRegion
){
4336 int iOffset
= iRegion
*szRegion
;
4337 int iOffsetShift
= iOffset
% winSysInfo
.dwAllocationGranularity
;
4338 char *p
= (char *)pShmNode
->aRegion
[iRegion
].pMap
;
4339 *pp
= (void *)&p
[iOffsetShift
];
4343 if( pShmNode
->isReadonly
&& rc
==SQLITE_OK
) rc
= SQLITE_READONLY
;
4344 sqlite3_mutex_leave(pShmNode
->mutex
);
4349 # define winShmMap 0
4350 # define winShmLock 0
4351 # define winShmBarrier 0
4352 # define winShmUnmap 0
4353 #endif /* #ifndef SQLITE_OMIT_WAL */
4356 ** Cleans up the mapped region of the specified file, if any.
4358 #if SQLITE_MAX_MMAP_SIZE>0
4359 static int winUnmapfile(winFile
*pFile
){
4361 OSTRACE(("UNMAP-FILE pid=%lu, pFile=%p, hMap=%p, pMapRegion=%p, "
4362 "mmapSize=%lld, mmapSizeMax=%lld\n",
4363 osGetCurrentProcessId(), pFile
, pFile
->hMap
, pFile
->pMapRegion
,
4364 pFile
->mmapSize
, pFile
->mmapSizeMax
));
4365 if( pFile
->pMapRegion
){
4366 if( !osUnmapViewOfFile(pFile
->pMapRegion
) ){
4367 pFile
->lastErrno
= osGetLastError();
4368 OSTRACE(("UNMAP-FILE pid=%lu, pFile=%p, pMapRegion=%p, "
4369 "rc=SQLITE_IOERR_MMAP\n", osGetCurrentProcessId(), pFile
,
4370 pFile
->pMapRegion
));
4371 return winLogError(SQLITE_IOERR_MMAP
, pFile
->lastErrno
,
4372 "winUnmapfile1", pFile
->zPath
);
4374 pFile
->pMapRegion
= 0;
4375 pFile
->mmapSize
= 0;
4377 if( pFile
->hMap
!=NULL
){
4378 if( !osCloseHandle(pFile
->hMap
) ){
4379 pFile
->lastErrno
= osGetLastError();
4380 OSTRACE(("UNMAP-FILE pid=%lu, pFile=%p, hMap=%p, rc=SQLITE_IOERR_MMAP\n",
4381 osGetCurrentProcessId(), pFile
, pFile
->hMap
));
4382 return winLogError(SQLITE_IOERR_MMAP
, pFile
->lastErrno
,
4383 "winUnmapfile2", pFile
->zPath
);
4387 OSTRACE(("UNMAP-FILE pid=%lu, pFile=%p, rc=SQLITE_OK\n",
4388 osGetCurrentProcessId(), pFile
));
4393 ** Memory map or remap the file opened by file-descriptor pFd (if the file
4394 ** is already mapped, the existing mapping is replaced by the new). Or, if
4395 ** there already exists a mapping for this file, and there are still
4396 ** outstanding xFetch() references to it, this function is a no-op.
4398 ** If parameter nByte is non-negative, then it is the requested size of
4399 ** the mapping to create. Otherwise, if nByte is less than zero, then the
4400 ** requested size is the size of the file on disk. The actual size of the
4401 ** created mapping is either the requested size or the value configured
4402 ** using SQLITE_FCNTL_MMAP_SIZE, whichever is smaller.
4404 ** SQLITE_OK is returned if no error occurs (even if the mapping is not
4405 ** recreated as a result of outstanding references) or an SQLite error
4408 static int winMapfile(winFile
*pFd
, sqlite3_int64 nByte
){
4409 sqlite3_int64 nMap
= nByte
;
4412 assert( nMap
>=0 || pFd
->nFetchOut
==0 );
4413 OSTRACE(("MAP-FILE pid=%lu, pFile=%p, size=%lld\n",
4414 osGetCurrentProcessId(), pFd
, nByte
));
4416 if( pFd
->nFetchOut
>0 ) return SQLITE_OK
;
4419 rc
= winFileSize((sqlite3_file
*)pFd
, &nMap
);
4421 OSTRACE(("MAP-FILE pid=%lu, pFile=%p, rc=SQLITE_IOERR_FSTAT\n",
4422 osGetCurrentProcessId(), pFd
));
4423 return SQLITE_IOERR_FSTAT
;
4426 if( nMap
>pFd
->mmapSizeMax
){
4427 nMap
= pFd
->mmapSizeMax
;
4429 nMap
&= ~(sqlite3_int64
)(winSysInfo
.dwPageSize
- 1);
4431 if( nMap
==0 && pFd
->mmapSize
>0 ){
4434 if( nMap
!=pFd
->mmapSize
){
4436 DWORD protect
= PAGE_READONLY
;
4437 DWORD flags
= FILE_MAP_READ
;
4440 #ifdef SQLITE_MMAP_READWRITE
4441 if( (pFd
->ctrlFlags
& WINFILE_RDONLY
)==0 ){
4442 protect
= PAGE_READWRITE
;
4443 flags
|= FILE_MAP_WRITE
;
4447 pFd
->hMap
= osCreateFileMappingFromApp(pFd
->h
, NULL
, protect
, nMap
, NULL
);
4448 #elif defined(SQLITE_WIN32_HAS_WIDE)
4449 pFd
->hMap
= osCreateFileMappingW(pFd
->h
, NULL
, protect
,
4450 (DWORD
)((nMap
>>32) & 0xffffffff),
4451 (DWORD
)(nMap
& 0xffffffff), NULL
);
4452 #elif defined(SQLITE_WIN32_HAS_ANSI) && SQLITE_WIN32_CREATEFILEMAPPINGA
4453 pFd
->hMap
= osCreateFileMappingA(pFd
->h
, NULL
, protect
,
4454 (DWORD
)((nMap
>>32) & 0xffffffff),
4455 (DWORD
)(nMap
& 0xffffffff), NULL
);
4457 if( pFd
->hMap
==NULL
){
4458 pFd
->lastErrno
= osGetLastError();
4459 rc
= winLogError(SQLITE_IOERR_MMAP
, pFd
->lastErrno
,
4460 "winMapfile1", pFd
->zPath
);
4461 /* Log the error, but continue normal operation using xRead/xWrite */
4462 OSTRACE(("MAP-FILE-CREATE pid=%lu, pFile=%p, rc=%s\n",
4463 osGetCurrentProcessId(), pFd
, sqlite3ErrName(rc
)));
4466 assert( (nMap
% winSysInfo
.dwPageSize
)==0 );
4467 assert( sizeof(SIZE_T
)==sizeof(sqlite3_int64
) || nMap
<=0xffffffff );
4469 pNew
= osMapViewOfFileFromApp(pFd
->hMap
, flags
, 0, (SIZE_T
)nMap
);
4471 pNew
= osMapViewOfFile(pFd
->hMap
, flags
, 0, 0, (SIZE_T
)nMap
);
4474 osCloseHandle(pFd
->hMap
);
4476 pFd
->lastErrno
= osGetLastError();
4477 rc
= winLogError(SQLITE_IOERR_MMAP
, pFd
->lastErrno
,
4478 "winMapfile2", pFd
->zPath
);
4479 /* Log the error, but continue normal operation using xRead/xWrite */
4480 OSTRACE(("MAP-FILE-MAP pid=%lu, pFile=%p, rc=%s\n",
4481 osGetCurrentProcessId(), pFd
, sqlite3ErrName(rc
)));
4484 pFd
->pMapRegion
= pNew
;
4485 pFd
->mmapSize
= nMap
;
4488 OSTRACE(("MAP-FILE pid=%lu, pFile=%p, rc=SQLITE_OK\n",
4489 osGetCurrentProcessId(), pFd
));
4492 #endif /* SQLITE_MAX_MMAP_SIZE>0 */
4495 ** If possible, return a pointer to a mapping of file fd starting at offset
4496 ** iOff. The mapping must be valid for at least nAmt bytes.
4498 ** If such a pointer can be obtained, store it in *pp and return SQLITE_OK.
4499 ** Or, if one cannot but no error occurs, set *pp to 0 and return SQLITE_OK.
4500 ** Finally, if an error does occur, return an SQLite error code. The final
4501 ** value of *pp is undefined in this case.
4503 ** If this function does return a pointer, the caller must eventually
4504 ** release the reference by calling winUnfetch().
4506 static int winFetch(sqlite3_file
*fd
, i64 iOff
, int nAmt
, void **pp
){
4507 #if SQLITE_MAX_MMAP_SIZE>0
4508 winFile
*pFd
= (winFile
*)fd
; /* The underlying database file */
4512 OSTRACE(("FETCH pid=%lu, pFile=%p, offset=%lld, amount=%d, pp=%p\n",
4513 osGetCurrentProcessId(), fd
, iOff
, nAmt
, pp
));
4515 #if SQLITE_MAX_MMAP_SIZE>0
4516 if( pFd
->mmapSizeMax
>0 ){
4517 if( pFd
->pMapRegion
==0 ){
4518 int rc
= winMapfile(pFd
, -1);
4519 if( rc
!=SQLITE_OK
){
4520 OSTRACE(("FETCH pid=%lu, pFile=%p, rc=%s\n",
4521 osGetCurrentProcessId(), pFd
, sqlite3ErrName(rc
)));
4525 if( pFd
->mmapSize
>= iOff
+nAmt
){
4526 assert( pFd
->pMapRegion
!=0 );
4527 *pp
= &((u8
*)pFd
->pMapRegion
)[iOff
];
4533 OSTRACE(("FETCH pid=%lu, pFile=%p, pp=%p, *pp=%p, rc=SQLITE_OK\n",
4534 osGetCurrentProcessId(), fd
, pp
, *pp
));
4539 ** If the third argument is non-NULL, then this function releases a
4540 ** reference obtained by an earlier call to winFetch(). The second
4541 ** argument passed to this function must be the same as the corresponding
4542 ** argument that was passed to the winFetch() invocation.
4544 ** Or, if the third argument is NULL, then this function is being called
4545 ** to inform the VFS layer that, according to POSIX, any existing mapping
4546 ** may now be invalid and should be unmapped.
4548 static int winUnfetch(sqlite3_file
*fd
, i64 iOff
, void *p
){
4549 #if SQLITE_MAX_MMAP_SIZE>0
4550 winFile
*pFd
= (winFile
*)fd
; /* The underlying database file */
4552 /* If p==0 (unmap the entire file) then there must be no outstanding
4553 ** xFetch references. Or, if p!=0 (meaning it is an xFetch reference),
4554 ** then there must be at least one outstanding. */
4555 assert( (p
==0)==(pFd
->nFetchOut
==0) );
4557 /* If p!=0, it must match the iOff value. */
4558 assert( p
==0 || p
==&((u8
*)pFd
->pMapRegion
)[iOff
] );
4560 OSTRACE(("UNFETCH pid=%lu, pFile=%p, offset=%lld, p=%p\n",
4561 osGetCurrentProcessId(), pFd
, iOff
, p
));
4566 /* FIXME: If Windows truly always prevents truncating or deleting a
4567 ** file while a mapping is held, then the following winUnmapfile() call
4568 ** is unnecessary can be omitted - potentially improving
4573 assert( pFd
->nFetchOut
>=0 );
4576 OSTRACE(("UNFETCH pid=%lu, pFile=%p, rc=SQLITE_OK\n",
4577 osGetCurrentProcessId(), fd
));
4582 ** Here ends the implementation of all sqlite3_file methods.
4584 ********************** End sqlite3_file Methods *******************************
4585 ******************************************************************************/
4588 ** This vector defines all the methods that can operate on an
4589 ** sqlite3_file for win32.
4591 static const sqlite3_io_methods winIoMethod
= {
4593 winClose
, /* xClose */
4594 winRead
, /* xRead */
4595 winWrite
, /* xWrite */
4596 winTruncate
, /* xTruncate */
4597 winSync
, /* xSync */
4598 winFileSize
, /* xFileSize */
4599 winLock
, /* xLock */
4600 winUnlock
, /* xUnlock */
4601 winCheckReservedLock
, /* xCheckReservedLock */
4602 winFileControl
, /* xFileControl */
4603 winSectorSize
, /* xSectorSize */
4604 winDeviceCharacteristics
, /* xDeviceCharacteristics */
4605 winShmMap
, /* xShmMap */
4606 winShmLock
, /* xShmLock */
4607 winShmBarrier
, /* xShmBarrier */
4608 winShmUnmap
, /* xShmUnmap */
4609 winFetch
, /* xFetch */
4610 winUnfetch
/* xUnfetch */
4614 ** This vector defines all the methods that can operate on an
4615 ** sqlite3_file for win32 without performing any locking.
4617 static const sqlite3_io_methods winIoNolockMethod
= {
4619 winClose
, /* xClose */
4620 winRead
, /* xRead */
4621 winWrite
, /* xWrite */
4622 winTruncate
, /* xTruncate */
4623 winSync
, /* xSync */
4624 winFileSize
, /* xFileSize */
4625 winNolockLock
, /* xLock */
4626 winNolockUnlock
, /* xUnlock */
4627 winNolockCheckReservedLock
, /* xCheckReservedLock */
4628 winFileControl
, /* xFileControl */
4629 winSectorSize
, /* xSectorSize */
4630 winDeviceCharacteristics
, /* xDeviceCharacteristics */
4631 winShmMap
, /* xShmMap */
4632 winShmLock
, /* xShmLock */
4633 winShmBarrier
, /* xShmBarrier */
4634 winShmUnmap
, /* xShmUnmap */
4635 winFetch
, /* xFetch */
4636 winUnfetch
/* xUnfetch */
4639 static winVfsAppData winAppData
= {
4640 &winIoMethod
, /* pMethod */
4645 static winVfsAppData winNolockAppData
= {
4646 &winIoNolockMethod
, /* pMethod */
4651 /****************************************************************************
4652 **************************** sqlite3_vfs methods ****************************
4654 ** This division contains the implementation of methods on the
4655 ** sqlite3_vfs object.
4658 #if defined(__CYGWIN__)
4660 ** Convert a filename from whatever the underlying operating system
4661 ** supports for filenames into UTF-8. Space to hold the result is
4662 ** obtained from malloc and must be freed by the calling function.
4664 static char *winConvertToUtf8Filename(const void *zFilename
){
4665 char *zConverted
= 0;
4667 zConverted
= winUnicodeToUtf8(zFilename
);
4669 #ifdef SQLITE_WIN32_HAS_ANSI
4671 zConverted
= winMbcsToUtf8(zFilename
, osAreFileApisANSI());
4674 /* caller will handle out of memory */
4680 ** Convert a UTF-8 filename into whatever form the underlying
4681 ** operating system wants filenames in. Space to hold the result
4682 ** is obtained from malloc and must be freed by the calling
4685 static void *winConvertFromUtf8Filename(const char *zFilename
){
4686 void *zConverted
= 0;
4688 zConverted
= winUtf8ToUnicode(zFilename
);
4690 #ifdef SQLITE_WIN32_HAS_ANSI
4692 zConverted
= winUtf8ToMbcs(zFilename
, osAreFileApisANSI());
4695 /* caller will handle out of memory */
4700 ** This function returns non-zero if the specified UTF-8 string buffer
4701 ** ends with a directory separator character or one was successfully
4704 static int winMakeEndInDirSep(int nBuf
, char *zBuf
){
4706 int nLen
= sqlite3Strlen30(zBuf
);
4708 if( winIsDirSep(zBuf
[nLen
-1]) ){
4710 }else if( nLen
+1<nBuf
){
4711 zBuf
[nLen
] = winGetDirSep();
4712 zBuf
[nLen
+1] = '\0';
4721 ** Create a temporary file name and store the resulting pointer into pzBuf.
4722 ** The pointer returned in pzBuf must be freed via sqlite3_free().
4724 static int winGetTempname(sqlite3_vfs
*pVfs
, char **pzBuf
){
4725 static char zChars
[] =
4726 "abcdefghijklmnopqrstuvwxyz"
4727 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
4730 int nPre
= sqlite3Strlen30(SQLITE_TEMP_FILE_PREFIX
);
4731 int nMax
, nBuf
, nDir
, nLen
;
4734 /* It's odd to simulate an io-error here, but really this is just
4735 ** using the io-error infrastructure to test that SQLite handles this
4736 ** function failing.
4738 SimulateIOError( return SQLITE_IOERR
);
4740 /* Allocate a temporary buffer to store the fully qualified file
4741 ** name for the temporary file. If this fails, we cannot continue.
4743 nMax
= pVfs
->mxPathname
; nBuf
= nMax
+ 2;
4744 zBuf
= sqlite3MallocZero( nBuf
);
4746 OSTRACE(("TEMP-FILENAME rc=SQLITE_IOERR_NOMEM\n"));
4747 return SQLITE_IOERR_NOMEM_BKPT
;
4750 /* Figure out the effective temporary directory. First, check if one
4751 ** has been explicitly set by the application; otherwise, use the one
4752 ** configured by the operating system.
4754 nDir
= nMax
- (nPre
+ 15);
4756 if( sqlite3_temp_directory
){
4757 int nDirLen
= sqlite3Strlen30(sqlite3_temp_directory
);
4759 if( !winIsDirSep(sqlite3_temp_directory
[nDirLen
-1]) ){
4764 OSTRACE(("TEMP-FILENAME rc=SQLITE_ERROR\n"));
4765 return winLogError(SQLITE_ERROR
, 0, "winGetTempname1", 0);
4767 sqlite3_snprintf(nMax
, zBuf
, "%s", sqlite3_temp_directory
);
4770 #if defined(__CYGWIN__)
4772 static const char *azDirs
[] = {
4773 0, /* getenv("SQLITE_TMPDIR") */
4774 0, /* getenv("TMPDIR") */
4775 0, /* getenv("TMP") */
4776 0, /* getenv("TEMP") */
4777 0, /* getenv("USERPROFILE") */
4782 0 /* List terminator */
4785 const char *zDir
= 0;
4787 if( !azDirs
[0] ) azDirs
[0] = getenv("SQLITE_TMPDIR");
4788 if( !azDirs
[1] ) azDirs
[1] = getenv("TMPDIR");
4789 if( !azDirs
[2] ) azDirs
[2] = getenv("TMP");
4790 if( !azDirs
[3] ) azDirs
[3] = getenv("TEMP");
4791 if( !azDirs
[4] ) azDirs
[4] = getenv("USERPROFILE");
4792 for(i
=0; i
<sizeof(azDirs
)/sizeof(azDirs
[0]); zDir
=azDirs
[i
++]){
4794 if( zDir
==0 ) continue;
4795 /* If the path starts with a drive letter followed by the colon
4796 ** character, assume it is already a native Win32 path; otherwise,
4797 ** it must be converted to a native Win32 path via the Cygwin API
4798 ** prior to using it.
4800 if( winIsDriveLetterAndColon(zDir
) ){
4801 zConverted
= winConvertFromUtf8Filename(zDir
);
4804 OSTRACE(("TEMP-FILENAME rc=SQLITE_IOERR_NOMEM\n"));
4805 return SQLITE_IOERR_NOMEM_BKPT
;
4807 if( winIsDir(zConverted
) ){
4808 sqlite3_snprintf(nMax
, zBuf
, "%s", zDir
);
4809 sqlite3_free(zConverted
);
4812 sqlite3_free(zConverted
);
4814 zConverted
= sqlite3MallocZero( nMax
+1 );
4817 OSTRACE(("TEMP-FILENAME rc=SQLITE_IOERR_NOMEM\n"));
4818 return SQLITE_IOERR_NOMEM_BKPT
;
4820 if( cygwin_conv_path(
4821 osIsNT() ? CCP_POSIX_TO_WIN_W
: CCP_POSIX_TO_WIN_A
, zDir
,
4822 zConverted
, nMax
+1)<0 ){
4823 sqlite3_free(zConverted
);
4825 OSTRACE(("TEMP-FILENAME rc=SQLITE_IOERR_CONVPATH\n"));
4826 return winLogError(SQLITE_IOERR_CONVPATH
, (DWORD
)errno
,
4827 "winGetTempname2", zDir
);
4829 if( winIsDir(zConverted
) ){
4830 /* At this point, we know the candidate directory exists and should
4831 ** be used. However, we may need to convert the string containing
4832 ** its name into UTF-8 (i.e. if it is UTF-16 right now).
4834 char *zUtf8
= winConvertToUtf8Filename(zConverted
);
4836 sqlite3_free(zConverted
);
4838 OSTRACE(("TEMP-FILENAME rc=SQLITE_IOERR_NOMEM\n"));
4839 return SQLITE_IOERR_NOMEM_BKPT
;
4841 sqlite3_snprintf(nMax
, zBuf
, "%s", zUtf8
);
4842 sqlite3_free(zUtf8
);
4843 sqlite3_free(zConverted
);
4846 sqlite3_free(zConverted
);
4850 #elif !SQLITE_OS_WINRT && !defined(__CYGWIN__)
4851 else if( osIsNT() ){
4853 LPWSTR zWidePath
= sqlite3MallocZero( nMax
*sizeof(WCHAR
) );
4856 OSTRACE(("TEMP-FILENAME rc=SQLITE_IOERR_NOMEM\n"));
4857 return SQLITE_IOERR_NOMEM_BKPT
;
4859 if( osGetTempPathW(nMax
, zWidePath
)==0 ){
4860 sqlite3_free(zWidePath
);
4862 OSTRACE(("TEMP-FILENAME rc=SQLITE_IOERR_GETTEMPPATH\n"));
4863 return winLogError(SQLITE_IOERR_GETTEMPPATH
, osGetLastError(),
4864 "winGetTempname2", 0);
4866 zMulti
= winUnicodeToUtf8(zWidePath
);
4868 sqlite3_snprintf(nMax
, zBuf
, "%s", zMulti
);
4869 sqlite3_free(zMulti
);
4870 sqlite3_free(zWidePath
);
4872 sqlite3_free(zWidePath
);
4874 OSTRACE(("TEMP-FILENAME rc=SQLITE_IOERR_NOMEM\n"));
4875 return SQLITE_IOERR_NOMEM_BKPT
;
4878 #ifdef SQLITE_WIN32_HAS_ANSI
4881 char *zMbcsPath
= sqlite3MallocZero( nMax
);
4884 OSTRACE(("TEMP-FILENAME rc=SQLITE_IOERR_NOMEM\n"));
4885 return SQLITE_IOERR_NOMEM_BKPT
;
4887 if( osGetTempPathA(nMax
, zMbcsPath
)==0 ){
4889 OSTRACE(("TEMP-FILENAME rc=SQLITE_IOERR_GETTEMPPATH\n"));
4890 return winLogError(SQLITE_IOERR_GETTEMPPATH
, osGetLastError(),
4891 "winGetTempname3", 0);
4893 zUtf8
= winMbcsToUtf8(zMbcsPath
, osAreFileApisANSI());
4895 sqlite3_snprintf(nMax
, zBuf
, "%s", zUtf8
);
4896 sqlite3_free(zUtf8
);
4899 OSTRACE(("TEMP-FILENAME rc=SQLITE_IOERR_NOMEM\n"));
4900 return SQLITE_IOERR_NOMEM_BKPT
;
4903 #endif /* SQLITE_WIN32_HAS_ANSI */
4904 #endif /* !SQLITE_OS_WINRT */
4907 ** Check to make sure the temporary directory ends with an appropriate
4908 ** separator. If it does not and there is not enough space left to add
4911 if( !winMakeEndInDirSep(nDir
+1, zBuf
) ){
4913 OSTRACE(("TEMP-FILENAME rc=SQLITE_ERROR\n"));
4914 return winLogError(SQLITE_ERROR
, 0, "winGetTempname4", 0);
4918 ** Check that the output buffer is large enough for the temporary file
4919 ** name in the following format:
4921 ** "<temporary_directory>/etilqs_XXXXXXXXXXXXXXX\0\0"
4923 ** If not, return SQLITE_ERROR. The number 17 is used here in order to
4924 ** account for the space used by the 15 character random suffix and the
4925 ** two trailing NUL characters. The final directory separator character
4926 ** has already added if it was not already present.
4928 nLen
= sqlite3Strlen30(zBuf
);
4929 if( (nLen
+ nPre
+ 17) > nBuf
){
4931 OSTRACE(("TEMP-FILENAME rc=SQLITE_ERROR\n"));
4932 return winLogError(SQLITE_ERROR
, 0, "winGetTempname5", 0);
4935 sqlite3_snprintf(nBuf
-16-nLen
, zBuf
+nLen
, SQLITE_TEMP_FILE_PREFIX
);
4937 j
= sqlite3Strlen30(zBuf
);
4938 sqlite3_randomness(15, &zBuf
[j
]);
4939 for(i
=0; i
<15; i
++, j
++){
4940 zBuf
[j
] = (char)zChars
[ ((unsigned char)zBuf
[j
])%(sizeof(zChars
)-1) ];
4946 OSTRACE(("TEMP-FILENAME name=%s, rc=SQLITE_OK\n", zBuf
));
4951 ** Return TRUE if the named file is really a directory. Return false if
4952 ** it is something other than a directory, or if there is any kind of memory
4953 ** allocation failure.
4955 static int winIsDir(const void *zConverted
){
4962 WIN32_FILE_ATTRIBUTE_DATA sAttrData
;
4963 memset(&sAttrData
, 0, sizeof(sAttrData
));
4964 while( !(rc
= osGetFileAttributesExW((LPCWSTR
)zConverted
,
4965 GetFileExInfoStandard
,
4966 &sAttrData
)) && winRetryIoerr(&cnt
, &lastErrno
) ){}
4968 return 0; /* Invalid name? */
4970 attr
= sAttrData
.dwFileAttributes
;
4971 #if SQLITE_OS_WINCE==0
4973 attr
= osGetFileAttributesA((char*)zConverted
);
4976 return (attr
!=INVALID_FILE_ATTRIBUTES
) && (attr
&FILE_ATTRIBUTE_DIRECTORY
);
4979 /* forward reference */
4980 static int winAccess(
4981 sqlite3_vfs
*pVfs
, /* Not used on win32 */
4982 const char *zFilename
, /* Name of file to check */
4983 int flags
, /* Type of test to make on this file */
4984 int *pResOut
/* OUT: Result */
4991 sqlite3_vfs
*pVfs
, /* Used to get maximum path length and AppData */
4992 const char *zName
, /* Name of the file (UTF-8) */
4993 sqlite3_file
*id
, /* Write the SQLite file handle here */
4994 int flags
, /* Open mode flags */
4995 int *pOutFlags
/* Status return flags */
4998 DWORD lastErrno
= 0;
4999 DWORD dwDesiredAccess
;
5001 DWORD dwCreationDisposition
;
5002 DWORD dwFlagsAndAttributes
= 0;
5006 winVfsAppData
*pAppData
;
5007 winFile
*pFile
= (winFile
*)id
;
5008 void *zConverted
; /* Filename in OS encoding */
5009 const char *zUtf8Name
= zName
; /* Filename in UTF-8 encoding */
5012 /* If argument zPath is a NULL pointer, this function is required to open
5013 ** a temporary file. Use this buffer to store the file name in.
5015 char *zTmpname
= 0; /* For temporary filename, if necessary. */
5017 int rc
= SQLITE_OK
; /* Function Return Code */
5018 #if !defined(NDEBUG) || SQLITE_OS_WINCE
5019 int eType
= flags
&0xFFFFFF00; /* Type of file to open */
5022 int isExclusive
= (flags
& SQLITE_OPEN_EXCLUSIVE
);
5023 int isDelete
= (flags
& SQLITE_OPEN_DELETEONCLOSE
);
5024 int isCreate
= (flags
& SQLITE_OPEN_CREATE
);
5025 int isReadonly
= (flags
& SQLITE_OPEN_READONLY
);
5026 int isReadWrite
= (flags
& SQLITE_OPEN_READWRITE
);
5029 int isOpenJournal
= (isCreate
&& (
5030 eType
==SQLITE_OPEN_SUPER_JOURNAL
5031 || eType
==SQLITE_OPEN_MAIN_JOURNAL
5032 || eType
==SQLITE_OPEN_WAL
5036 OSTRACE(("OPEN name=%s, pFile=%p, flags=%x, pOutFlags=%p\n",
5037 zUtf8Name
, id
, flags
, pOutFlags
));
5039 /* Check the following statements are true:
5041 ** (a) Exactly one of the READWRITE and READONLY flags must be set, and
5042 ** (b) if CREATE is set, then READWRITE must also be set, and
5043 ** (c) if EXCLUSIVE is set, then CREATE must also be set.
5044 ** (d) if DELETEONCLOSE is set, then CREATE must also be set.
5046 assert((isReadonly
==0 || isReadWrite
==0) && (isReadWrite
|| isReadonly
));
5047 assert(isCreate
==0 || isReadWrite
);
5048 assert(isExclusive
==0 || isCreate
);
5049 assert(isDelete
==0 || isCreate
);
5051 /* The main DB, main journal, WAL file and super-journal are never
5052 ** automatically deleted. Nor are they ever temporary files. */
5053 assert( (!isDelete
&& zName
) || eType
!=SQLITE_OPEN_MAIN_DB
);
5054 assert( (!isDelete
&& zName
) || eType
!=SQLITE_OPEN_MAIN_JOURNAL
);
5055 assert( (!isDelete
&& zName
) || eType
!=SQLITE_OPEN_SUPER_JOURNAL
);
5056 assert( (!isDelete
&& zName
) || eType
!=SQLITE_OPEN_WAL
);
5058 /* Assert that the upper layer has set one of the "file-type" flags. */
5059 assert( eType
==SQLITE_OPEN_MAIN_DB
|| eType
==SQLITE_OPEN_TEMP_DB
5060 || eType
==SQLITE_OPEN_MAIN_JOURNAL
|| eType
==SQLITE_OPEN_TEMP_JOURNAL
5061 || eType
==SQLITE_OPEN_SUBJOURNAL
|| eType
==SQLITE_OPEN_SUPER_JOURNAL
5062 || eType
==SQLITE_OPEN_TRANSIENT_DB
|| eType
==SQLITE_OPEN_WAL
5066 memset(pFile
, 0, sizeof(winFile
));
5067 pFile
->h
= INVALID_HANDLE_VALUE
;
5070 if( !zUtf8Name
&& !sqlite3_temp_directory
){
5071 sqlite3_log(SQLITE_ERROR
,
5072 "sqlite3_temp_directory variable should be set for WinRT");
5076 /* If the second argument to this function is NULL, generate a
5077 ** temporary file name to use
5080 assert( isDelete
&& !isOpenJournal
);
5081 rc
= winGetTempname(pVfs
, &zTmpname
);
5082 if( rc
!=SQLITE_OK
){
5083 OSTRACE(("OPEN name=%s, rc=%s", zUtf8Name
, sqlite3ErrName(rc
)));
5086 zUtf8Name
= zTmpname
;
5089 /* Database filenames are double-zero terminated if they are not
5090 ** URIs with parameters. Hence, they can always be passed into
5091 ** sqlite3_uri_parameter().
5093 assert( (eType
!=SQLITE_OPEN_MAIN_DB
) || (flags
& SQLITE_OPEN_URI
) ||
5094 zUtf8Name
[sqlite3Strlen30(zUtf8Name
)+1]==0 );
5096 /* Convert the filename to the system encoding. */
5097 zConverted
= winConvertFromUtf8Filename(zUtf8Name
);
5098 if( zConverted
==0 ){
5099 sqlite3_free(zTmpname
);
5100 OSTRACE(("OPEN name=%s, rc=SQLITE_IOERR_NOMEM", zUtf8Name
));
5101 return SQLITE_IOERR_NOMEM_BKPT
;
5104 if( winIsDir(zConverted
) ){
5105 sqlite3_free(zConverted
);
5106 sqlite3_free(zTmpname
);
5107 OSTRACE(("OPEN name=%s, rc=SQLITE_CANTOPEN_ISDIR", zUtf8Name
));
5108 return SQLITE_CANTOPEN_ISDIR
;
5112 dwDesiredAccess
= GENERIC_READ
| GENERIC_WRITE
;
5114 dwDesiredAccess
= GENERIC_READ
;
5117 /* SQLITE_OPEN_EXCLUSIVE is used to make sure that a new file is
5118 ** created. SQLite doesn't use it to indicate "exclusive access"
5119 ** as it is usually understood.
5122 /* Creates a new file, only if it does not already exist. */
5123 /* If the file exists, it fails. */
5124 dwCreationDisposition
= CREATE_NEW
;
5125 }else if( isCreate
){
5126 /* Open existing file, or create if it doesn't exist */
5127 dwCreationDisposition
= OPEN_ALWAYS
;
5129 /* Opens a file, only if it exists. */
5130 dwCreationDisposition
= OPEN_EXISTING
;
5133 if( 0==sqlite3_uri_boolean(zName
, "exclusive", 0) ){
5134 dwShareMode
= FILE_SHARE_READ
| FILE_SHARE_WRITE
;
5141 dwFlagsAndAttributes
= FILE_ATTRIBUTE_HIDDEN
;
5144 dwFlagsAndAttributes
= FILE_ATTRIBUTE_TEMPORARY
5145 | FILE_ATTRIBUTE_HIDDEN
5146 | FILE_FLAG_DELETE_ON_CLOSE
;
5149 dwFlagsAndAttributes
= FILE_ATTRIBUTE_NORMAL
;
5151 /* Reports from the internet are that performance is always
5152 ** better if FILE_FLAG_RANDOM_ACCESS is used. Ticket #2699. */
5154 dwFlagsAndAttributes
|= FILE_FLAG_RANDOM_ACCESS
;
5159 CREATEFILE2_EXTENDED_PARAMETERS extendedParameters
;
5160 extendedParameters
.dwSize
= sizeof(CREATEFILE2_EXTENDED_PARAMETERS
);
5161 extendedParameters
.dwFileAttributes
=
5162 dwFlagsAndAttributes
& FILE_ATTRIBUTE_MASK
;
5163 extendedParameters
.dwFileFlags
= dwFlagsAndAttributes
& FILE_FLAG_MASK
;
5164 extendedParameters
.dwSecurityQosFlags
= SECURITY_ANONYMOUS
;
5165 extendedParameters
.lpSecurityAttributes
= NULL
;
5166 extendedParameters
.hTemplateFile
= NULL
;
5168 h
= osCreateFile2((LPCWSTR
)zConverted
,
5171 dwCreationDisposition
,
5172 &extendedParameters
);
5173 if( h
!=INVALID_HANDLE_VALUE
) break;
5176 sqlite3BeginBenignMalloc();
5177 rc2
= winAccess(pVfs
, zName
, SQLITE_ACCESS_READ
, &isRO
);
5178 sqlite3EndBenignMalloc();
5179 if( rc2
==SQLITE_OK
&& isRO
) break;
5181 }while( winRetryIoerr(&cnt
, &lastErrno
) );
5184 h
= osCreateFileW((LPCWSTR
)zConverted
,
5187 dwCreationDisposition
,
5188 dwFlagsAndAttributes
,
5190 if( h
!=INVALID_HANDLE_VALUE
) break;
5193 sqlite3BeginBenignMalloc();
5194 rc2
= winAccess(pVfs
, zName
, SQLITE_ACCESS_READ
, &isRO
);
5195 sqlite3EndBenignMalloc();
5196 if( rc2
==SQLITE_OK
&& isRO
) break;
5198 }while( winRetryIoerr(&cnt
, &lastErrno
) );
5201 #ifdef SQLITE_WIN32_HAS_ANSI
5204 h
= osCreateFileA((LPCSTR
)zConverted
,
5207 dwCreationDisposition
,
5208 dwFlagsAndAttributes
,
5210 if( h
!=INVALID_HANDLE_VALUE
) break;
5213 sqlite3BeginBenignMalloc();
5214 rc2
= winAccess(pVfs
, zName
, SQLITE_ACCESS_READ
, &isRO
);
5215 sqlite3EndBenignMalloc();
5216 if( rc2
==SQLITE_OK
&& isRO
) break;
5218 }while( winRetryIoerr(&cnt
, &lastErrno
) );
5221 winLogIoerr(cnt
, __LINE__
);
5223 OSTRACE(("OPEN file=%p, name=%s, access=%lx, rc=%s\n", h
, zUtf8Name
,
5224 dwDesiredAccess
, (h
==INVALID_HANDLE_VALUE
) ? "failed" : "ok"));
5226 if( h
==INVALID_HANDLE_VALUE
){
5227 sqlite3_free(zConverted
);
5228 sqlite3_free(zTmpname
);
5229 if( isReadWrite
&& !isExclusive
){
5230 return winOpen(pVfs
, zName
, id
,
5231 ((flags
|SQLITE_OPEN_READONLY
) &
5232 ~(SQLITE_OPEN_CREATE
|SQLITE_OPEN_READWRITE
)),
5235 pFile
->lastErrno
= lastErrno
;
5236 winLogError(SQLITE_CANTOPEN
, pFile
->lastErrno
, "winOpen", zUtf8Name
);
5237 return SQLITE_CANTOPEN_BKPT
;
5243 *pOutFlags
= SQLITE_OPEN_READWRITE
;
5245 *pOutFlags
= SQLITE_OPEN_READONLY
;
5249 OSTRACE(("OPEN file=%p, name=%s, access=%lx, pOutFlags=%p, *pOutFlags=%d, "
5250 "rc=%s\n", h
, zUtf8Name
, dwDesiredAccess
, pOutFlags
, pOutFlags
?
5251 *pOutFlags
: 0, (h
==INVALID_HANDLE_VALUE
) ? "failed" : "ok"));
5253 pAppData
= (winVfsAppData
*)pVfs
->pAppData
;
5257 if( isReadWrite
&& eType
==SQLITE_OPEN_MAIN_DB
5258 && ((pAppData
==NULL
) || !pAppData
->bNoLock
)
5259 && (rc
= winceCreateLock(zName
, pFile
))!=SQLITE_OK
5262 sqlite3_free(zConverted
);
5263 sqlite3_free(zTmpname
);
5264 OSTRACE(("OPEN-CE-LOCK name=%s, rc=%s\n", zName
, sqlite3ErrName(rc
)));
5269 pFile
->zDeleteOnClose
= zConverted
;
5273 sqlite3_free(zConverted
);
5276 sqlite3_free(zTmpname
);
5277 id
->pMethods
= pAppData
? pAppData
->pMethod
: &winIoMethod
;
5281 pFile
->ctrlFlags
|= WINFILE_RDONLY
;
5283 if( (flags
& SQLITE_OPEN_MAIN_DB
)
5284 && sqlite3_uri_boolean(zName
, "psow", SQLITE_POWERSAFE_OVERWRITE
)
5286 pFile
->ctrlFlags
|= WINFILE_PSOW
;
5288 pFile
->lastErrno
= NO_ERROR
;
5289 pFile
->zPath
= zName
;
5290 #if SQLITE_MAX_MMAP_SIZE>0
5292 pFile
->pMapRegion
= 0;
5293 pFile
->mmapSize
= 0;
5294 pFile
->mmapSizeMax
= sqlite3GlobalConfig
.szMmap
;
5302 ** Delete the named file.
5304 ** Note that Windows does not allow a file to be deleted if some other
5305 ** process has it open. Sometimes a virus scanner or indexing program
5306 ** will open a journal file shortly after it is created in order to do
5307 ** whatever it does. While this other process is holding the
5308 ** file open, we will be unable to delete it. To work around this
5309 ** problem, we delay 100 milliseconds and try to delete again. Up
5310 ** to MX_DELETION_ATTEMPTs deletion attempts are run before giving
5311 ** up and returning an error.
5313 static int winDelete(
5314 sqlite3_vfs
*pVfs
, /* Not used on win32 */
5315 const char *zFilename
, /* Name of file to delete */
5316 int syncDir
/* Not used on win32 */
5321 DWORD lastErrno
= 0;
5323 UNUSED_PARAMETER(pVfs
);
5324 UNUSED_PARAMETER(syncDir
);
5326 SimulateIOError(return SQLITE_IOERR_DELETE
);
5327 OSTRACE(("DELETE name=%s, syncDir=%d\n", zFilename
, syncDir
));
5329 zConverted
= winConvertFromUtf8Filename(zFilename
);
5330 if( zConverted
==0 ){
5331 OSTRACE(("DELETE name=%s, rc=SQLITE_IOERR_NOMEM\n", zFilename
));
5332 return SQLITE_IOERR_NOMEM_BKPT
;
5337 WIN32_FILE_ATTRIBUTE_DATA sAttrData
;
5338 memset(&sAttrData
, 0, sizeof(sAttrData
));
5339 if ( osGetFileAttributesExW(zConverted
, GetFileExInfoStandard
,
5341 attr
= sAttrData
.dwFileAttributes
;
5343 lastErrno
= osGetLastError();
5344 if( lastErrno
==ERROR_FILE_NOT_FOUND
5345 || lastErrno
==ERROR_PATH_NOT_FOUND
){
5346 rc
= SQLITE_IOERR_DELETE_NOENT
; /* Already gone? */
5353 attr
= osGetFileAttributesW(zConverted
);
5355 if ( attr
==INVALID_FILE_ATTRIBUTES
){
5356 lastErrno
= osGetLastError();
5357 if( lastErrno
==ERROR_FILE_NOT_FOUND
5358 || lastErrno
==ERROR_PATH_NOT_FOUND
){
5359 rc
= SQLITE_IOERR_DELETE_NOENT
; /* Already gone? */
5365 if ( attr
&FILE_ATTRIBUTE_DIRECTORY
){
5366 rc
= SQLITE_ERROR
; /* Files only. */
5369 if ( osDeleteFileW(zConverted
) ){
5370 rc
= SQLITE_OK
; /* Deleted OK. */
5373 if ( !winRetryIoerr(&cnt
, &lastErrno
) ){
5374 rc
= SQLITE_ERROR
; /* No more retries. */
5379 #ifdef SQLITE_WIN32_HAS_ANSI
5382 attr
= osGetFileAttributesA(zConverted
);
5383 if ( attr
==INVALID_FILE_ATTRIBUTES
){
5384 lastErrno
= osGetLastError();
5385 if( lastErrno
==ERROR_FILE_NOT_FOUND
5386 || lastErrno
==ERROR_PATH_NOT_FOUND
){
5387 rc
= SQLITE_IOERR_DELETE_NOENT
; /* Already gone? */
5393 if ( attr
&FILE_ATTRIBUTE_DIRECTORY
){
5394 rc
= SQLITE_ERROR
; /* Files only. */
5397 if ( osDeleteFileA(zConverted
) ){
5398 rc
= SQLITE_OK
; /* Deleted OK. */
5401 if ( !winRetryIoerr(&cnt
, &lastErrno
) ){
5402 rc
= SQLITE_ERROR
; /* No more retries. */
5408 if( rc
&& rc
!=SQLITE_IOERR_DELETE_NOENT
){
5409 rc
= winLogError(SQLITE_IOERR_DELETE
, lastErrno
, "winDelete", zFilename
);
5411 winLogIoerr(cnt
, __LINE__
);
5413 sqlite3_free(zConverted
);
5414 OSTRACE(("DELETE name=%s, rc=%s\n", zFilename
, sqlite3ErrName(rc
)));
5419 ** Check the existence and status of a file.
5421 static int winAccess(
5422 sqlite3_vfs
*pVfs
, /* Not used on win32 */
5423 const char *zFilename
, /* Name of file to check */
5424 int flags
, /* Type of test to make on this file */
5425 int *pResOut
/* OUT: Result */
5429 DWORD lastErrno
= 0;
5431 UNUSED_PARAMETER(pVfs
);
5433 SimulateIOError( return SQLITE_IOERR_ACCESS
; );
5434 OSTRACE(("ACCESS name=%s, flags=%x, pResOut=%p\n",
5435 zFilename
, flags
, pResOut
));
5437 zConverted
= winConvertFromUtf8Filename(zFilename
);
5438 if( zConverted
==0 ){
5439 OSTRACE(("ACCESS name=%s, rc=SQLITE_IOERR_NOMEM\n", zFilename
));
5440 return SQLITE_IOERR_NOMEM_BKPT
;
5444 WIN32_FILE_ATTRIBUTE_DATA sAttrData
;
5445 memset(&sAttrData
, 0, sizeof(sAttrData
));
5446 while( !(rc
= osGetFileAttributesExW((LPCWSTR
)zConverted
,
5447 GetFileExInfoStandard
,
5448 &sAttrData
)) && winRetryIoerr(&cnt
, &lastErrno
) ){}
5450 /* For an SQLITE_ACCESS_EXISTS query, treat a zero-length file
5451 ** as if it does not exist.
5453 if( flags
==SQLITE_ACCESS_EXISTS
5454 && sAttrData
.nFileSizeHigh
==0
5455 && sAttrData
.nFileSizeLow
==0 ){
5456 attr
= INVALID_FILE_ATTRIBUTES
;
5458 attr
= sAttrData
.dwFileAttributes
;
5461 winLogIoerr(cnt
, __LINE__
);
5462 if( lastErrno
!=ERROR_FILE_NOT_FOUND
&& lastErrno
!=ERROR_PATH_NOT_FOUND
){
5463 sqlite3_free(zConverted
);
5464 return winLogError(SQLITE_IOERR_ACCESS
, lastErrno
, "winAccess",
5467 attr
= INVALID_FILE_ATTRIBUTES
;
5471 #ifdef SQLITE_WIN32_HAS_ANSI
5473 attr
= osGetFileAttributesA((char*)zConverted
);
5476 sqlite3_free(zConverted
);
5478 case SQLITE_ACCESS_READ
:
5479 case SQLITE_ACCESS_EXISTS
:
5480 rc
= attr
!=INVALID_FILE_ATTRIBUTES
;
5482 case SQLITE_ACCESS_READWRITE
:
5483 rc
= attr
!=INVALID_FILE_ATTRIBUTES
&&
5484 (attr
& FILE_ATTRIBUTE_READONLY
)==0;
5487 assert(!"Invalid flags argument");
5490 OSTRACE(("ACCESS name=%s, pResOut=%p, *pResOut=%d, rc=SQLITE_OK\n",
5491 zFilename
, pResOut
, *pResOut
));
5496 ** Returns non-zero if the specified path name starts with the "long path"
5499 static BOOL
winIsLongPathPrefix(
5500 const char *zPathname
5502 return ( zPathname
[0]=='\\' && zPathname
[1]=='\\'
5503 && zPathname
[2]=='?' && zPathname
[3]=='\\' );
5507 ** Returns non-zero if the specified path name starts with a drive letter
5508 ** followed by a colon character.
5510 static BOOL
winIsDriveLetterAndColon(
5511 const char *zPathname
5513 return ( sqlite3Isalpha(zPathname
[0]) && zPathname
[1]==':' );
5517 ** Returns non-zero if the specified path name should be used verbatim. If
5518 ** non-zero is returned from this function, the calling function must simply
5519 ** use the provided path name verbatim -OR- resolve it into a full path name
5520 ** using the GetFullPathName Win32 API function (if available).
5522 static BOOL
winIsVerbatimPathname(
5523 const char *zPathname
5526 ** If the path name starts with a forward slash or a backslash, it is either
5527 ** a legal UNC name, a volume relative path, or an absolute path name in the
5528 ** "Unix" format on Windows. There is no easy way to differentiate between
5529 ** the final two cases; therefore, we return the safer return value of TRUE
5530 ** so that callers of this function will simply use it verbatim.
5532 if ( winIsDirSep(zPathname
[0]) ){
5537 ** If the path name starts with a letter and a colon it is either a volume
5538 ** relative path or an absolute path. Callers of this function must not
5539 ** attempt to treat it as a relative path name (i.e. they should simply use
5542 if ( winIsDriveLetterAndColon(zPathname
) ){
5547 ** If we get to this point, the path name should almost certainly be a purely
5548 ** relative one (i.e. not a UNC name, not absolute, and not volume relative).
5554 ** Turn a relative pathname into a full pathname. Write the full
5555 ** pathname into zOut[]. zOut[] will be at least pVfs->mxPathname
5558 static int winFullPathname(
5559 sqlite3_vfs
*pVfs
, /* Pointer to vfs object */
5560 const char *zRelative
, /* Possibly relative input path */
5561 int nFull
, /* Size of output buffer in bytes */
5562 char *zFull
/* Output buffer */
5564 #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && !defined(__CYGWIN__)
5570 /* If this path name begins with "/X:" or "\\?\", where "X" is any
5571 ** alphabetic character, discard the initial "/" from the pathname.
5573 if( zRelative
[0]=='/' && (winIsDriveLetterAndColon(zRelative
+1)
5574 || winIsLongPathPrefix(zRelative
+1)) ){
5578 #if defined(__CYGWIN__)
5579 SimulateIOError( return SQLITE_ERROR
);
5580 UNUSED_PARAMETER(nFull
);
5581 assert( nFull
>=pVfs
->mxPathname
);
5582 if ( sqlite3_data_directory
&& !winIsVerbatimPathname(zRelative
) ){
5584 ** NOTE: We are dealing with a relative path name and the data
5585 ** directory has been set. Therefore, use it as the basis
5586 ** for converting the relative path name to an absolute
5587 ** one by prepending the data directory and a slash.
5589 char *zOut
= sqlite3MallocZero( pVfs
->mxPathname
+1 );
5591 return SQLITE_IOERR_NOMEM_BKPT
;
5593 if( cygwin_conv_path(
5594 (osIsNT() ? CCP_POSIX_TO_WIN_W
: CCP_POSIX_TO_WIN_A
) |
5595 CCP_RELATIVE
, zRelative
, zOut
, pVfs
->mxPathname
+1)<0 ){
5597 return winLogError(SQLITE_CANTOPEN_CONVPATH
, (DWORD
)errno
,
5598 "winFullPathname1", zRelative
);
5600 char *zUtf8
= winConvertToUtf8Filename(zOut
);
5603 return SQLITE_IOERR_NOMEM_BKPT
;
5605 sqlite3_snprintf(MIN(nFull
, pVfs
->mxPathname
), zFull
, "%s%c%s",
5606 sqlite3_data_directory
, winGetDirSep(), zUtf8
);
5607 sqlite3_free(zUtf8
);
5611 char *zOut
= sqlite3MallocZero( pVfs
->mxPathname
+1 );
5613 return SQLITE_IOERR_NOMEM_BKPT
;
5615 if( cygwin_conv_path(
5616 (osIsNT() ? CCP_POSIX_TO_WIN_W
: CCP_POSIX_TO_WIN_A
),
5617 zRelative
, zOut
, pVfs
->mxPathname
+1)<0 ){
5619 return winLogError(SQLITE_CANTOPEN_CONVPATH
, (DWORD
)errno
,
5620 "winFullPathname2", zRelative
);
5622 char *zUtf8
= winConvertToUtf8Filename(zOut
);
5625 return SQLITE_IOERR_NOMEM_BKPT
;
5627 sqlite3_snprintf(MIN(nFull
, pVfs
->mxPathname
), zFull
, "%s", zUtf8
);
5628 sqlite3_free(zUtf8
);
5635 #if (SQLITE_OS_WINCE || SQLITE_OS_WINRT) && !defined(__CYGWIN__)
5636 SimulateIOError( return SQLITE_ERROR
);
5637 /* WinCE has no concept of a relative pathname, or so I am told. */
5638 /* WinRT has no way to convert a relative path to an absolute one. */
5639 if ( sqlite3_data_directory
&& !winIsVerbatimPathname(zRelative
) ){
5641 ** NOTE: We are dealing with a relative path name and the data
5642 ** directory has been set. Therefore, use it as the basis
5643 ** for converting the relative path name to an absolute
5644 ** one by prepending the data directory and a backslash.
5646 sqlite3_snprintf(MIN(nFull
, pVfs
->mxPathname
), zFull
, "%s%c%s",
5647 sqlite3_data_directory
, winGetDirSep(), zRelative
);
5649 sqlite3_snprintf(MIN(nFull
, pVfs
->mxPathname
), zFull
, "%s", zRelative
);
5654 #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && !defined(__CYGWIN__)
5655 /* It's odd to simulate an io-error here, but really this is just
5656 ** using the io-error infrastructure to test that SQLite handles this
5657 ** function failing. This function could fail if, for example, the
5658 ** current working directory has been unlinked.
5660 SimulateIOError( return SQLITE_ERROR
);
5661 if ( sqlite3_data_directory
&& !winIsVerbatimPathname(zRelative
) ){
5663 ** NOTE: We are dealing with a relative path name and the data
5664 ** directory has been set. Therefore, use it as the basis
5665 ** for converting the relative path name to an absolute
5666 ** one by prepending the data directory and a backslash.
5668 sqlite3_snprintf(MIN(nFull
, pVfs
->mxPathname
), zFull
, "%s%c%s",
5669 sqlite3_data_directory
, winGetDirSep(), zRelative
);
5672 zConverted
= winConvertFromUtf8Filename(zRelative
);
5673 if( zConverted
==0 ){
5674 return SQLITE_IOERR_NOMEM_BKPT
;
5678 nByte
= osGetFullPathNameW((LPCWSTR
)zConverted
, 0, 0, 0);
5680 sqlite3_free(zConverted
);
5681 return winLogError(SQLITE_CANTOPEN_FULLPATH
, osGetLastError(),
5682 "winFullPathname1", zRelative
);
5685 zTemp
= sqlite3MallocZero( nByte
*sizeof(zTemp
[0]) );
5687 sqlite3_free(zConverted
);
5688 return SQLITE_IOERR_NOMEM_BKPT
;
5690 nByte
= osGetFullPathNameW((LPCWSTR
)zConverted
, nByte
, zTemp
, 0);
5692 sqlite3_free(zConverted
);
5693 sqlite3_free(zTemp
);
5694 return winLogError(SQLITE_CANTOPEN_FULLPATH
, osGetLastError(),
5695 "winFullPathname2", zRelative
);
5697 sqlite3_free(zConverted
);
5698 zOut
= winUnicodeToUtf8(zTemp
);
5699 sqlite3_free(zTemp
);
5701 #ifdef SQLITE_WIN32_HAS_ANSI
5704 nByte
= osGetFullPathNameA((char*)zConverted
, 0, 0, 0);
5706 sqlite3_free(zConverted
);
5707 return winLogError(SQLITE_CANTOPEN_FULLPATH
, osGetLastError(),
5708 "winFullPathname3", zRelative
);
5711 zTemp
= sqlite3MallocZero( nByte
*sizeof(zTemp
[0]) );
5713 sqlite3_free(zConverted
);
5714 return SQLITE_IOERR_NOMEM_BKPT
;
5716 nByte
= osGetFullPathNameA((char*)zConverted
, nByte
, zTemp
, 0);
5718 sqlite3_free(zConverted
);
5719 sqlite3_free(zTemp
);
5720 return winLogError(SQLITE_CANTOPEN_FULLPATH
, osGetLastError(),
5721 "winFullPathname4", zRelative
);
5723 sqlite3_free(zConverted
);
5724 zOut
= winMbcsToUtf8(zTemp
, osAreFileApisANSI());
5725 sqlite3_free(zTemp
);
5729 sqlite3_snprintf(MIN(nFull
, pVfs
->mxPathname
), zFull
, "%s", zOut
);
5733 return SQLITE_IOERR_NOMEM_BKPT
;
5738 #ifndef SQLITE_OMIT_LOAD_EXTENSION
5740 ** Interfaces for opening a shared library, finding entry points
5741 ** within the shared library, and closing the shared library.
5743 static void *winDlOpen(sqlite3_vfs
*pVfs
, const char *zFilename
){
5745 #if defined(__CYGWIN__)
5746 int nFull
= pVfs
->mxPathname
+1;
5747 char *zFull
= sqlite3MallocZero( nFull
);
5748 void *zConverted
= 0;
5750 OSTRACE(("DLOPEN name=%s, handle=%p\n", zFilename
, (void*)0));
5753 if( winFullPathname(pVfs
, zFilename
, nFull
, zFull
)!=SQLITE_OK
){
5754 sqlite3_free(zFull
);
5755 OSTRACE(("DLOPEN name=%s, handle=%p\n", zFilename
, (void*)0));
5758 zConverted
= winConvertFromUtf8Filename(zFull
);
5759 sqlite3_free(zFull
);
5761 void *zConverted
= winConvertFromUtf8Filename(zFilename
);
5762 UNUSED_PARAMETER(pVfs
);
5764 if( zConverted
==0 ){
5765 OSTRACE(("DLOPEN name=%s, handle=%p\n", zFilename
, (void*)0));
5770 h
= osLoadPackagedLibrary((LPCWSTR
)zConverted
, 0);
5772 h
= osLoadLibraryW((LPCWSTR
)zConverted
);
5775 #ifdef SQLITE_WIN32_HAS_ANSI
5777 h
= osLoadLibraryA((char*)zConverted
);
5780 OSTRACE(("DLOPEN name=%s, handle=%p\n", zFilename
, (void*)h
));
5781 sqlite3_free(zConverted
);
5784 static void winDlError(sqlite3_vfs
*pVfs
, int nBuf
, char *zBufOut
){
5785 UNUSED_PARAMETER(pVfs
);
5786 winGetLastErrorMsg(osGetLastError(), nBuf
, zBufOut
);
5788 static void (*winDlSym(sqlite3_vfs
*pVfs
,void *pH
,const char *zSym
))(void){
5790 UNUSED_PARAMETER(pVfs
);
5791 proc
= osGetProcAddressA((HANDLE
)pH
, zSym
);
5792 OSTRACE(("DLSYM handle=%p, symbol=%s, address=%p\n",
5793 (void*)pH
, zSym
, (void*)proc
));
5794 return (void(*)(void))proc
;
5796 static void winDlClose(sqlite3_vfs
*pVfs
, void *pHandle
){
5797 UNUSED_PARAMETER(pVfs
);
5798 osFreeLibrary((HANDLE
)pHandle
);
5799 OSTRACE(("DLCLOSE handle=%p\n", (void*)pHandle
));
5801 #else /* if SQLITE_OMIT_LOAD_EXTENSION is defined: */
5803 #define winDlError 0
5805 #define winDlClose 0
5808 /* State information for the randomness gatherer. */
5809 typedef struct EntropyGatherer EntropyGatherer
;
5810 struct EntropyGatherer
{
5811 unsigned char *a
; /* Gather entropy into this buffer */
5812 int na
; /* Size of a[] in bytes */
5813 int i
; /* XOR next input into a[i] */
5814 int nXor
; /* Number of XOR operations done */
5817 #if !defined(SQLITE_TEST) && !defined(SQLITE_OMIT_RANDOMNESS)
5818 /* Mix sz bytes of entropy into p. */
5819 static void xorMemory(EntropyGatherer
*p
, unsigned char *x
, int sz
){
5821 for(j
=0, k
=p
->i
; j
<sz
; j
++){
5823 if( k
>=p
->na
) k
= 0;
5828 #endif /* !defined(SQLITE_TEST) && !defined(SQLITE_OMIT_RANDOMNESS) */
5831 ** Write up to nBuf bytes of randomness into zBuf.
5833 static int winRandomness(sqlite3_vfs
*pVfs
, int nBuf
, char *zBuf
){
5834 #if defined(SQLITE_TEST) || defined(SQLITE_OMIT_RANDOMNESS)
5835 UNUSED_PARAMETER(pVfs
);
5836 memset(zBuf
, 0, nBuf
);
5840 UNUSED_PARAMETER(pVfs
);
5841 memset(zBuf
, 0, nBuf
);
5842 e
.a
= (unsigned char*)zBuf
;
5848 osGetSystemTime(&x
);
5849 xorMemory(&e
, (unsigned char*)&x
, sizeof(SYSTEMTIME
));
5852 DWORD pid
= osGetCurrentProcessId();
5853 xorMemory(&e
, (unsigned char*)&pid
, sizeof(DWORD
));
5857 ULONGLONG cnt
= osGetTickCount64();
5858 xorMemory(&e
, (unsigned char*)&cnt
, sizeof(ULONGLONG
));
5862 DWORD cnt
= osGetTickCount();
5863 xorMemory(&e
, (unsigned char*)&cnt
, sizeof(DWORD
));
5865 #endif /* SQLITE_OS_WINRT */
5868 osQueryPerformanceCounter(&i
);
5869 xorMemory(&e
, (unsigned char*)&i
, sizeof(LARGE_INTEGER
));
5871 #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && SQLITE_WIN32_USE_UUID
5874 memset(&id
, 0, sizeof(UUID
));
5876 xorMemory(&e
, (unsigned char*)&id
, sizeof(UUID
));
5877 memset(&id
, 0, sizeof(UUID
));
5878 osUuidCreateSequential(&id
);
5879 xorMemory(&e
, (unsigned char*)&id
, sizeof(UUID
));
5881 #endif /* !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && SQLITE_WIN32_USE_UUID */
5882 return e
.nXor
>nBuf
? nBuf
: e
.nXor
;
5883 #endif /* defined(SQLITE_TEST) || defined(SQLITE_OMIT_RANDOMNESS) */
5888 ** Sleep for a little while. Return the amount of time slept.
5890 static int winSleep(sqlite3_vfs
*pVfs
, int microsec
){
5891 sqlite3_win32_sleep((microsec
+999)/1000);
5892 UNUSED_PARAMETER(pVfs
);
5893 return ((microsec
+999)/1000)*1000;
5897 ** The following variable, if set to a non-zero value, is interpreted as
5898 ** the number of seconds since 1970 and is used to set the result of
5899 ** sqlite3OsCurrentTime() during testing.
5902 int sqlite3_current_time
= 0; /* Fake system time in seconds since 1970. */
5906 ** Find the current time (in Universal Coordinated Time). Write into *piNow
5907 ** the current time and date as a Julian Day number times 86_400_000. In
5908 ** other words, write into *piNow the number of milliseconds since the Julian
5909 ** epoch of noon in Greenwich on November 24, 4714 B.C according to the
5910 ** proleptic Gregorian calendar.
5912 ** On success, return SQLITE_OK. Return SQLITE_ERROR if the time and date
5915 static int winCurrentTimeInt64(sqlite3_vfs
*pVfs
, sqlite3_int64
*piNow
){
5916 /* FILETIME structure is a 64-bit value representing the number of
5917 100-nanosecond intervals since January 1, 1601 (= JD 2305813.5).
5920 static const sqlite3_int64 winFiletimeEpoch
= 23058135*(sqlite3_int64
)8640000;
5922 static const sqlite3_int64 unixEpoch
= 24405875*(sqlite3_int64
)8640000;
5924 /* 2^32 - to avoid use of LL and warnings in gcc */
5925 static const sqlite3_int64 max32BitValue
=
5926 (sqlite3_int64
)2000000000 + (sqlite3_int64
)2000000000 +
5927 (sqlite3_int64
)294967296;
5931 osGetSystemTime(&time
);
5932 /* if SystemTimeToFileTime() fails, it returns zero. */
5933 if (!osSystemTimeToFileTime(&time
,&ft
)){
5934 return SQLITE_ERROR
;
5937 osGetSystemTimeAsFileTime( &ft
);
5940 *piNow
= winFiletimeEpoch
+
5941 ((((sqlite3_int64
)ft
.dwHighDateTime
)*max32BitValue
) +
5942 (sqlite3_int64
)ft
.dwLowDateTime
)/(sqlite3_int64
)10000;
5945 if( sqlite3_current_time
){
5946 *piNow
= 1000*(sqlite3_int64
)sqlite3_current_time
+ unixEpoch
;
5949 UNUSED_PARAMETER(pVfs
);
5954 ** Find the current time (in Universal Coordinated Time). Write the
5955 ** current time and date as a Julian Day number into *prNow and
5956 ** return 0. Return 1 if the time and date cannot be found.
5958 static int winCurrentTime(sqlite3_vfs
*pVfs
, double *prNow
){
5961 rc
= winCurrentTimeInt64(pVfs
, &i
);
5963 *prNow
= i
/86400000.0;
5969 ** The idea is that this function works like a combination of
5970 ** GetLastError() and FormatMessage() on Windows (or errno and
5971 ** strerror_r() on Unix). After an error is returned by an OS
5972 ** function, SQLite calls this function with zBuf pointing to
5973 ** a buffer of nBuf bytes. The OS layer should populate the
5974 ** buffer with a nul-terminated UTF-8 encoded error message
5975 ** describing the last IO error to have occurred within the calling
5978 ** If the error message is too large for the supplied buffer,
5979 ** it should be truncated. The return value of xGetLastError
5980 ** is zero if the error message fits in the buffer, or non-zero
5981 ** otherwise (if the message was truncated). If non-zero is returned,
5982 ** then it is not necessary to include the nul-terminator character
5983 ** in the output buffer.
5985 ** Not supplying an error message will have no adverse effect
5986 ** on SQLite. It is fine to have an implementation that never
5987 ** returns an error message:
5989 ** int xGetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf){
5990 ** assert(zBuf[0]=='\0');
5994 ** However if an error message is supplied, it will be incorporated
5995 ** by sqlite into the error message available to the user using
5996 ** sqlite3_errmsg(), possibly making IO errors easier to debug.
5998 static int winGetLastError(sqlite3_vfs
*pVfs
, int nBuf
, char *zBuf
){
5999 DWORD e
= osGetLastError();
6000 UNUSED_PARAMETER(pVfs
);
6001 if( nBuf
>0 ) winGetLastErrorMsg(e
, nBuf
, zBuf
);
6006 ** Initialize and deinitialize the operating system interface.
6008 int sqlite3_os_init(void){
6009 static sqlite3_vfs winVfs
= {
6011 sizeof(winFile
), /* szOsFile */
6012 SQLITE_WIN32_MAX_PATH_BYTES
, /* mxPathname */
6014 "win32", /* zName */
6015 &winAppData
, /* pAppData */
6016 winOpen
, /* xOpen */
6017 winDelete
, /* xDelete */
6018 winAccess
, /* xAccess */
6019 winFullPathname
, /* xFullPathname */
6020 winDlOpen
, /* xDlOpen */
6021 winDlError
, /* xDlError */
6022 winDlSym
, /* xDlSym */
6023 winDlClose
, /* xDlClose */
6024 winRandomness
, /* xRandomness */
6025 winSleep
, /* xSleep */
6026 winCurrentTime
, /* xCurrentTime */
6027 winGetLastError
, /* xGetLastError */
6028 winCurrentTimeInt64
, /* xCurrentTimeInt64 */
6029 winSetSystemCall
, /* xSetSystemCall */
6030 winGetSystemCall
, /* xGetSystemCall */
6031 winNextSystemCall
, /* xNextSystemCall */
6033 #if defined(SQLITE_WIN32_HAS_WIDE)
6034 static sqlite3_vfs winLongPathVfs
= {
6036 sizeof(winFile
), /* szOsFile */
6037 SQLITE_WINNT_MAX_PATH_BYTES
, /* mxPathname */
6039 "win32-longpath", /* zName */
6040 &winAppData
, /* pAppData */
6041 winOpen
, /* xOpen */
6042 winDelete
, /* xDelete */
6043 winAccess
, /* xAccess */
6044 winFullPathname
, /* xFullPathname */
6045 winDlOpen
, /* xDlOpen */
6046 winDlError
, /* xDlError */
6047 winDlSym
, /* xDlSym */
6048 winDlClose
, /* xDlClose */
6049 winRandomness
, /* xRandomness */
6050 winSleep
, /* xSleep */
6051 winCurrentTime
, /* xCurrentTime */
6052 winGetLastError
, /* xGetLastError */
6053 winCurrentTimeInt64
, /* xCurrentTimeInt64 */
6054 winSetSystemCall
, /* xSetSystemCall */
6055 winGetSystemCall
, /* xGetSystemCall */
6056 winNextSystemCall
, /* xNextSystemCall */
6059 static sqlite3_vfs winNolockVfs
= {
6061 sizeof(winFile
), /* szOsFile */
6062 SQLITE_WIN32_MAX_PATH_BYTES
, /* mxPathname */
6064 "win32-none", /* zName */
6065 &winNolockAppData
, /* pAppData */
6066 winOpen
, /* xOpen */
6067 winDelete
, /* xDelete */
6068 winAccess
, /* xAccess */
6069 winFullPathname
, /* xFullPathname */
6070 winDlOpen
, /* xDlOpen */
6071 winDlError
, /* xDlError */
6072 winDlSym
, /* xDlSym */
6073 winDlClose
, /* xDlClose */
6074 winRandomness
, /* xRandomness */
6075 winSleep
, /* xSleep */
6076 winCurrentTime
, /* xCurrentTime */
6077 winGetLastError
, /* xGetLastError */
6078 winCurrentTimeInt64
, /* xCurrentTimeInt64 */
6079 winSetSystemCall
, /* xSetSystemCall */
6080 winGetSystemCall
, /* xGetSystemCall */
6081 winNextSystemCall
, /* xNextSystemCall */
6083 #if defined(SQLITE_WIN32_HAS_WIDE)
6084 static sqlite3_vfs winLongPathNolockVfs
= {
6086 sizeof(winFile
), /* szOsFile */
6087 SQLITE_WINNT_MAX_PATH_BYTES
, /* mxPathname */
6089 "win32-longpath-none", /* zName */
6090 &winNolockAppData
, /* pAppData */
6091 winOpen
, /* xOpen */
6092 winDelete
, /* xDelete */
6093 winAccess
, /* xAccess */
6094 winFullPathname
, /* xFullPathname */
6095 winDlOpen
, /* xDlOpen */
6096 winDlError
, /* xDlError */
6097 winDlSym
, /* xDlSym */
6098 winDlClose
, /* xDlClose */
6099 winRandomness
, /* xRandomness */
6100 winSleep
, /* xSleep */
6101 winCurrentTime
, /* xCurrentTime */
6102 winGetLastError
, /* xGetLastError */
6103 winCurrentTimeInt64
, /* xCurrentTimeInt64 */
6104 winSetSystemCall
, /* xSetSystemCall */
6105 winGetSystemCall
, /* xGetSystemCall */
6106 winNextSystemCall
, /* xNextSystemCall */
6110 /* Double-check that the aSyscall[] array has been constructed
6111 ** correctly. See ticket [bb3a86e890c8e96ab] */
6112 assert( ArraySize(aSyscall
)==80 );
6114 /* get memory map allocation granularity */
6115 memset(&winSysInfo
, 0, sizeof(SYSTEM_INFO
));
6117 osGetNativeSystemInfo(&winSysInfo
);
6119 osGetSystemInfo(&winSysInfo
);
6121 assert( winSysInfo
.dwAllocationGranularity
>0 );
6122 assert( winSysInfo
.dwPageSize
>0 );
6124 sqlite3_vfs_register(&winVfs
, 1);
6126 #if defined(SQLITE_WIN32_HAS_WIDE)
6127 sqlite3_vfs_register(&winLongPathVfs
, 0);
6130 sqlite3_vfs_register(&winNolockVfs
, 0);
6132 #if defined(SQLITE_WIN32_HAS_WIDE)
6133 sqlite3_vfs_register(&winLongPathNolockVfs
, 0);
6136 #ifndef SQLITE_OMIT_WAL
6137 winBigLock
= sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_VFS1
);
6143 int sqlite3_os_end(void){
6145 if( sleepObj
!=NULL
){
6146 osCloseHandle(sleepObj
);
6151 #ifndef SQLITE_OMIT_WAL
6158 #endif /* SQLITE_OS_WIN */