Update contrib.
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 ** $Id: os_win.c,v 1.134 2008/09/30 04:20:08 shane Exp $
17 #include "sqliteInt.h"
18 #if SQLITE_OS_WIN /* This file is used for windows only */
22 ** A Note About Memory Allocation:
24 ** This driver uses malloc()/free() directly rather than going through
25 ** the SQLite-wrappers sqlite3_malloc()/sqlite3_free(). Those wrappers
26 ** are designed for use on embedded systems where memory is scarce and
27 ** malloc failures happen frequently. Win32 does not typically run on
28 ** embedded systems, and when it does the developers normally have bigger
29 ** problems to worry about than running out of memory. So there is not
30 ** a compelling need to use the wrappers.
32 ** But there is a good reason to not use the wrappers. If we use the
33 ** wrappers then we will get simulated malloc() failures within this
34 ** driver. And that causes all kinds of problems for our tests. We
35 ** could enhance SQLite to deal with simulated malloc failures within
36 ** the OS driver, but the code to deal with those failure would not
37 ** be exercised on Linux (which does not need to malloc() in the driver)
38 ** and so we would have difficulty writing coverage tests for that
39 ** code. Better to leave the code out, we think.
41 ** The point of this discussion is as follows: When creating a new
42 ** OS layer for an embedded system, if you use this file as an example,
43 ** avoid the use of malloc()/free(). Those routines work ok on windows
44 ** desktops but not so well in embedded systems.
50 # include <sys/cygwin.h>
54 ** Macros used to determine whether or not to use threads.
56 #if defined(THREADSAFE) && THREADSAFE
57 # define SQLITE_W32_THREADS 1
61 ** Include code that is common to all os_*.c files
63 #include "os_common.h"
66 ** Some microsoft compilers lack this definition.
68 #ifndef INVALID_FILE_ATTRIBUTES
69 # define INVALID_FILE_ATTRIBUTES ((DWORD)-1)
73 ** Determine if we are dealing with WindowsCE - which has a much
76 #if defined(SQLITE_OS_WINCE)
77 # define AreFileApisANSI() 1
81 ** WinCE lacks native support for file locking so we have to fake it
82 ** with some code of our own.
85 typedef struct winceLock {
86 int nReaders; /* Number of reader locks obtained */
87 BOOL bPending; /* Indicates a pending lock has been obtained */
88 BOOL bReserved; /* Indicates a reserved lock has been obtained */
89 BOOL bExclusive; /* Indicates an exclusive lock has been obtained */
94 ** The winFile structure is a subclass of sqlite3_file* specific to the win32
97 typedef struct winFile winFile;
99 const sqlite3_io_methods *pMethod;/* Must be first */
100 HANDLE h; /* Handle for accessing the file */
101 unsigned char locktype; /* Type of lock currently held on this file */
102 short sharedLockByte; /* Randomly chosen byte used as a shared lock */
104 WCHAR *zDeleteOnClose; /* Name of file to delete when closing */
105 HANDLE hMutex; /* Mutex used to control access to shared lock */
106 HANDLE hShared; /* Shared memory segment used for locking */
107 winceLock local; /* Locks obtained by this instance of winFile */
108 winceLock *shared; /* Global shared lock memory for the file */
114 ** The following variable is (normally) set once and never changes
115 ** thereafter. It records whether the operating system is Win95
118 ** 0: Operating system unknown.
119 ** 1: Operating system is Win95.
120 ** 2: Operating system is WinNT.
122 ** In order to facilitate testing on a WinNT system, the test fixture
123 ** can manually set this value to 1 to emulate Win98 behavior.
126 int sqlite3_os_type = 0;
128 static int sqlite3_os_type = 0;
132 ** Return true (non-zero) if we are running under WinNT, Win2K, WinXP,
133 ** or WinCE. Return false (zero) for Win95, Win98, or WinME.
135 ** Here is an interesting observation: Win95, Win98, and WinME lack
136 ** the LockFileEx() API. But we can still statically link against that
137 ** API as long as we don't call it win running Win95/98/ME. A call to
138 ** this routine is used to determine if the host is Win95/98/ME or
139 ** WinNT/2K/XP so that we will know whether or not we can safely call
140 ** the LockFileEx() API.
145 static int isNT(void){
146 if( sqlite3_os_type==0 ){
148 sInfo.dwOSVersionInfoSize = sizeof(sInfo);
149 GetVersionEx(&sInfo);
150 sqlite3_os_type = sInfo.dwPlatformId==VER_PLATFORM_WIN32_NT ? 2 : 1;
152 return sqlite3_os_type==2;
154 #endif /* SQLITE_OS_WINCE */
157 ** Convert a UTF-8 string to microsoft unicode (UTF-16?).
159 ** Space to hold the returned string is obtained from malloc.
161 static WCHAR *utf8ToUnicode(const char *zFilename){
163 WCHAR *zWideFilename;
165 nChar = MultiByteToWideChar(CP_UTF8, 0, zFilename, -1, NULL, 0);
166 zWideFilename = malloc( nChar*sizeof(zWideFilename[0]) );
167 if( zWideFilename==0 ){
170 nChar = MultiByteToWideChar(CP_UTF8, 0, zFilename, -1, zWideFilename, nChar);
175 return zWideFilename;
179 ** Convert microsoft unicode to UTF-8. Space to hold the returned string is
180 ** obtained from malloc().
182 static char *unicodeToUtf8(const WCHAR *zWideFilename){
186 nByte = WideCharToMultiByte(CP_UTF8, 0, zWideFilename, -1, 0, 0, 0, 0);
187 zFilename = malloc( nByte );
191 nByte = WideCharToMultiByte(CP_UTF8, 0, zWideFilename, -1, zFilename, nByte,
201 ** Convert an ansi string to microsoft unicode, based on the
202 ** current codepage settings for file apis.
204 ** Space to hold the returned string is obtained
207 static WCHAR *mbcsToUnicode(const char *zFilename){
209 WCHAR *zMbcsFilename;
210 int codepage = AreFileApisANSI() ? CP_ACP : CP_OEMCP;
212 nByte = MultiByteToWideChar(codepage, 0, zFilename, -1, NULL,0)*sizeof(WCHAR);
213 zMbcsFilename = malloc( nByte*sizeof(zMbcsFilename[0]) );
214 if( zMbcsFilename==0 ){
217 nByte = MultiByteToWideChar(codepage, 0, zFilename, -1, zMbcsFilename, nByte);
222 return zMbcsFilename;
226 ** Convert microsoft unicode to multibyte character string, based on the
227 ** user's Ansi codepage.
229 ** Space to hold the returned string is obtained from
232 static char *unicodeToMbcs(const WCHAR *zWideFilename){
235 int codepage = AreFileApisANSI() ? CP_ACP : CP_OEMCP;
237 nByte = WideCharToMultiByte(codepage, 0, zWideFilename, -1, 0, 0, 0, 0);
238 zFilename = malloc( nByte );
242 nByte = WideCharToMultiByte(codepage, 0, zWideFilename, -1, zFilename, nByte,
252 ** Convert multibyte character string to UTF-8. Space to hold the
253 ** returned string is obtained from malloc().
255 static char *mbcsToUtf8(const char *zFilename){
259 zTmpWide = mbcsToUnicode(zFilename);
263 zFilenameUtf8 = unicodeToUtf8(zTmpWide);
265 return zFilenameUtf8;
269 ** Convert UTF-8 to multibyte character string. Space to hold the
270 ** returned string is obtained from malloc().
272 static char *utf8ToMbcs(const char *zFilename){
276 zTmpWide = utf8ToUnicode(zFilename);
280 zFilenameMbcs = unicodeToMbcs(zTmpWide);
282 return zFilenameMbcs;
286 /*************************************************************************
287 ** This section contains code for WinCE only.
290 ** WindowsCE does not have a localtime() function. So create a
294 struct tm *__cdecl localtime(const time_t *t)
301 t64 = (t64 + 11644473600)*10000000;
302 uTm.dwLowDateTime = t64 & 0xFFFFFFFF;
303 uTm.dwHighDateTime= t64 >> 32;
304 FileTimeToLocalFileTime(&uTm,&lTm);
305 FileTimeToSystemTime(&lTm,&pTm);
306 y.tm_year = pTm.wYear - 1900;
307 y.tm_mon = pTm.wMonth - 1;
308 y.tm_wday = pTm.wDayOfWeek;
309 y.tm_mday = pTm.wDay;
310 y.tm_hour = pTm.wHour;
311 y.tm_min = pTm.wMinute;
312 y.tm_sec = pTm.wSecond;
316 /* This will never be called, but defined to make the code compile */
317 #define GetTempPathA(a,b)
319 #define LockFile(a,b,c,d,e) winceLockFile(&a, b, c, d, e)
320 #define UnlockFile(a,b,c,d,e) winceUnlockFile(&a, b, c, d, e)
321 #define LockFileEx(a,b,c,d,e,f) winceLockFileEx(&a, b, c, d, e, f)
323 #define HANDLE_TO_WINFILE(a) (winFile*)&((char*)a)[-offsetof(winFile,h)]
326 ** Acquire a lock on the handle h
328 static void winceMutexAcquire(HANDLE h){
331 dwErr = WaitForSingleObject(h, INFINITE);
332 } while (dwErr != WAIT_OBJECT_0 && dwErr != WAIT_ABANDONED);
335 ** Release a lock acquired by winceMutexAcquire()
337 #define winceMutexRelease(h) ReleaseMutex(h)
340 ** Create the mutex and shared memory used for locking in the file
343 static BOOL winceCreateLock(const char *zFilename, winFile *pFile){
345 WCHAR *zName = utf8ToUnicode(zFilename);
348 /* Initialize the local lockdata */
349 ZeroMemory(&pFile->local, sizeof(pFile->local));
351 /* Replace the backslashes from the filename and lowercase it
352 ** to derive a mutex name. */
353 zTok = CharLowerW(zName);
355 if (*zTok == '\\') *zTok = '_';
358 /* Create/open the named mutex */
359 pFile->hMutex = CreateMutexW(NULL, FALSE, zName);
365 /* Acquire the mutex before continuing */
366 winceMutexAcquire(pFile->hMutex);
368 /* Since the names of named mutexes, semaphores, file mappings etc are
369 ** case-sensitive, take advantage of that by uppercasing the mutex name
370 ** and using that as the shared filemapping name.
373 pFile->hShared = CreateFileMappingW(INVALID_HANDLE_VALUE, NULL,
374 PAGE_READWRITE, 0, sizeof(winceLock),
377 /* Set a flag that indicates we're the first to create the memory so it
378 ** must be zero-initialized */
379 if (GetLastError() == ERROR_ALREADY_EXISTS){
385 /* If we succeeded in making the shared memory handle, map it. */
387 pFile->shared = (winceLock*)MapViewOfFile(pFile->hShared,
388 FILE_MAP_READ|FILE_MAP_WRITE, 0, 0, sizeof(winceLock));
389 /* If mapping failed, close the shared memory handle and erase it */
391 CloseHandle(pFile->hShared);
392 pFile->hShared = NULL;
396 /* If shared memory could not be created, then close the mutex and fail */
397 if (pFile->hShared == NULL){
398 winceMutexRelease(pFile->hMutex);
399 CloseHandle(pFile->hMutex);
400 pFile->hMutex = NULL;
404 /* Initialize the shared memory if we're supposed to */
406 ZeroMemory(pFile->shared, sizeof(winceLock));
409 winceMutexRelease(pFile->hMutex);
414 ** Destroy the part of winFile that deals with wince locks
416 static void winceDestroyLock(winFile *pFile){
418 /* Acquire the mutex */
419 winceMutexAcquire(pFile->hMutex);
421 /* The following blocks should probably assert in debug mode, but they
422 are to cleanup in case any locks remained open */
423 if (pFile->local.nReaders){
424 pFile->shared->nReaders --;
426 if (pFile->local.bReserved){
427 pFile->shared->bReserved = FALSE;
429 if (pFile->local.bPending){
430 pFile->shared->bPending = FALSE;
432 if (pFile->local.bExclusive){
433 pFile->shared->bExclusive = FALSE;
436 /* De-reference and close our copy of the shared memory handle */
437 UnmapViewOfFile(pFile->shared);
438 CloseHandle(pFile->hShared);
440 /* Done with the mutex */
441 winceMutexRelease(pFile->hMutex);
442 CloseHandle(pFile->hMutex);
443 pFile->hMutex = NULL;
448 ** An implementation of the LockFile() API of windows for wince
450 static BOOL winceLockFile(
452 DWORD dwFileOffsetLow,
453 DWORD dwFileOffsetHigh,
454 DWORD nNumberOfBytesToLockLow,
455 DWORD nNumberOfBytesToLockHigh
457 winFile *pFile = HANDLE_TO_WINFILE(phFile);
458 BOOL bReturn = FALSE;
460 if (!pFile->hMutex) return TRUE;
461 winceMutexAcquire(pFile->hMutex);
463 /* Wanting an exclusive lock? */
464 if (dwFileOffsetLow == SHARED_FIRST
465 && nNumberOfBytesToLockLow == SHARED_SIZE){
466 if (pFile->shared->nReaders == 0 && pFile->shared->bExclusive == 0){
467 pFile->shared->bExclusive = TRUE;
468 pFile->local.bExclusive = TRUE;
473 /* Want a read-only lock? */
474 else if ((dwFileOffsetLow >= SHARED_FIRST &&
475 dwFileOffsetLow < SHARED_FIRST + SHARED_SIZE) &&
476 nNumberOfBytesToLockLow == 1){
477 if (pFile->shared->bExclusive == 0){
478 pFile->local.nReaders ++;
479 if (pFile->local.nReaders == 1){
480 pFile->shared->nReaders ++;
486 /* Want a pending lock? */
487 else if (dwFileOffsetLow == PENDING_BYTE && nNumberOfBytesToLockLow == 1){
488 /* If no pending lock has been acquired, then acquire it */
489 if (pFile->shared->bPending == 0) {
490 pFile->shared->bPending = TRUE;
491 pFile->local.bPending = TRUE;
495 /* Want a reserved lock? */
496 else if (dwFileOffsetLow == RESERVED_BYTE && nNumberOfBytesToLockLow == 1){
497 if (pFile->shared->bReserved == 0) {
498 pFile->shared->bReserved = TRUE;
499 pFile->local.bReserved = TRUE;
504 winceMutexRelease(pFile->hMutex);
509 ** An implementation of the UnlockFile API of windows for wince
511 static BOOL winceUnlockFile(
513 DWORD dwFileOffsetLow,
514 DWORD dwFileOffsetHigh,
515 DWORD nNumberOfBytesToUnlockLow,
516 DWORD nNumberOfBytesToUnlockHigh
518 winFile *pFile = HANDLE_TO_WINFILE(phFile);
519 BOOL bReturn = FALSE;
521 if (!pFile->hMutex) return TRUE;
522 winceMutexAcquire(pFile->hMutex);
524 /* Releasing a reader lock or an exclusive lock */
525 if (dwFileOffsetLow >= SHARED_FIRST &&
526 dwFileOffsetLow < SHARED_FIRST + SHARED_SIZE){
527 /* Did we have an exclusive lock? */
528 if (pFile->local.bExclusive){
529 pFile->local.bExclusive = FALSE;
530 pFile->shared->bExclusive = FALSE;
534 /* Did we just have a reader lock? */
535 else if (pFile->local.nReaders){
536 pFile->local.nReaders --;
537 if (pFile->local.nReaders == 0)
539 pFile->shared->nReaders --;
545 /* Releasing a pending lock */
546 else if (dwFileOffsetLow == PENDING_BYTE && nNumberOfBytesToUnlockLow == 1){
547 if (pFile->local.bPending){
548 pFile->local.bPending = FALSE;
549 pFile->shared->bPending = FALSE;
553 /* Releasing a reserved lock */
554 else if (dwFileOffsetLow == RESERVED_BYTE && nNumberOfBytesToUnlockLow == 1){
555 if (pFile->local.bReserved) {
556 pFile->local.bReserved = FALSE;
557 pFile->shared->bReserved = FALSE;
562 winceMutexRelease(pFile->hMutex);
567 ** An implementation of the LockFileEx() API of windows for wince
569 static BOOL winceLockFileEx(
573 DWORD nNumberOfBytesToLockLow,
574 DWORD nNumberOfBytesToLockHigh,
575 LPOVERLAPPED lpOverlapped
577 /* If the caller wants a shared read lock, forward this call
578 ** to winceLockFile */
579 if (lpOverlapped->Offset == SHARED_FIRST &&
581 nNumberOfBytesToLockLow == SHARED_SIZE){
582 return winceLockFile(phFile, SHARED_FIRST, 0, 1, 0);
587 ** End of the special code for wince
588 *****************************************************************************/
589 #endif /* SQLITE_OS_WINCE */
591 /*****************************************************************************
592 ** The next group of routines implement the I/O methods specified
593 ** by the sqlite3_io_methods object.
594 ******************************************************************************/
599 ** It is reported that an attempt to close a handle might sometimes
600 ** fail. This is a very unreasonable result, but windows is notorious
601 ** for being unreasonable so I do not doubt that it might happen. If
602 ** the close fails, we pause for 100 milliseconds and try again. As
603 ** many as MX_CLOSE_ATTEMPT attempts to close the handle are made before
604 ** giving up and returning an error.
606 #define MX_CLOSE_ATTEMPT 3
607 static int winClose(sqlite3_file *id){
609 winFile *pFile = (winFile*)id;
610 OSTRACE2("CLOSE %d\n", pFile->h);
612 rc = CloseHandle(pFile->h);
613 }while( rc==0 && ++cnt < MX_CLOSE_ATTEMPT && (Sleep(100), 1) );
615 #define WINCE_DELETION_ATTEMPTS 3
616 winceDestroyLock(pFile);
617 if( pFile->zDeleteOnClose ){
620 DeleteFileW(pFile->zDeleteOnClose)==0
621 && GetFileAttributesW(pFile->zDeleteOnClose)!=0xffffffff
622 && cnt++ < WINCE_DELETION_ATTEMPTS
624 Sleep(100); /* Wait a little before trying again */
626 free(pFile->zDeleteOnClose);
630 return rc ? SQLITE_OK : SQLITE_IOERR;
634 ** Some microsoft compilers lack this definition.
636 #ifndef INVALID_SET_FILE_POINTER
637 # define INVALID_SET_FILE_POINTER ((DWORD)-1)
641 ** Read data from a file into a buffer. Return SQLITE_OK if all
642 ** bytes were read successfully and SQLITE_IOERR if anything goes
646 sqlite3_file *id, /* File to read from */
647 void *pBuf, /* Write content into this buffer */
648 int amt, /* Number of bytes to read */
649 sqlite3_int64 offset /* Begin reading at this offset */
651 LONG upperBits = (offset>>32) & 0x7fffffff;
652 LONG lowerBits = offset & 0xffffffff;
655 winFile *pFile = (winFile*)id;
657 SimulateIOError(return SQLITE_IOERR_READ);
658 OSTRACE3("READ %d lock=%d\n", pFile->h, pFile->locktype);
659 rc = SetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN);
660 if( rc==INVALID_SET_FILE_POINTER && GetLastError()!=NO_ERROR ){
663 if( !ReadFile(pFile->h, pBuf, amt, &got, 0) ){
664 return SQLITE_IOERR_READ;
666 if( got==(DWORD)amt ){
669 memset(&((char*)pBuf)[got], 0, amt-got);
670 return SQLITE_IOERR_SHORT_READ;
675 ** Write data from a buffer into a file. Return SQLITE_OK on success
676 ** or some other error code on failure.
679 sqlite3_file *id, /* File to write into */
680 const void *pBuf, /* The bytes to be written */
681 int amt, /* Number of bytes to write */
682 sqlite3_int64 offset /* Offset into the file to begin writing at */
684 LONG upperBits = (offset>>32) & 0x7fffffff;
685 LONG lowerBits = offset & 0xffffffff;
688 winFile *pFile = (winFile*)id;
690 SimulateIOError(return SQLITE_IOERR_WRITE);
691 SimulateDiskfullError(return SQLITE_FULL);
692 OSTRACE3("WRITE %d lock=%d\n", pFile->h, pFile->locktype);
693 rc = SetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN);
694 if( rc==INVALID_SET_FILE_POINTER && GetLastError()!=NO_ERROR ){
700 && (rc = WriteFile(pFile->h, pBuf, amt, &wrote, 0))!=0
704 pBuf = &((char*)pBuf)[wrote];
706 if( !rc || amt>(int)wrote ){
713 ** Truncate an open file to a specified size
715 static int winTruncate(sqlite3_file *id, sqlite3_int64 nByte){
716 LONG upperBits = (nByte>>32) & 0x7fffffff;
717 LONG lowerBits = nByte & 0xffffffff;
718 winFile *pFile = (winFile*)id;
719 OSTRACE3("TRUNCATE %d %lld\n", pFile->h, nByte);
720 SimulateIOError(return SQLITE_IOERR_TRUNCATE);
721 SetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN);
722 SetEndOfFile(pFile->h);
728 ** Count the number of fullsyncs and normal syncs. This is used to test
729 ** that syncs and fullsyncs are occuring at the right times.
731 int sqlite3_sync_count = 0;
732 int sqlite3_fullsync_count = 0;
736 ** Make sure all writes to a particular file are committed to disk.
738 static int winSync(sqlite3_file *id, int flags){
739 winFile *pFile = (winFile*)id;
740 OSTRACE3("SYNC %d lock=%d\n", pFile->h, pFile->locktype);
742 if( flags & SQLITE_SYNC_FULL ){
743 sqlite3_fullsync_count++;
745 sqlite3_sync_count++;
747 if( FlushFileBuffers(pFile->h) ){
755 ** Determine the current size of a file in bytes
757 static int winFileSize(sqlite3_file *id, sqlite3_int64 *pSize){
758 winFile *pFile = (winFile*)id;
759 DWORD upperBits, lowerBits;
760 SimulateIOError(return SQLITE_IOERR_FSTAT);
761 lowerBits = GetFileSize(pFile->h, &upperBits);
762 *pSize = (((sqlite3_int64)upperBits)<<32) + lowerBits;
767 ** LOCKFILE_FAIL_IMMEDIATELY is undefined on some Windows systems.
769 #ifndef LOCKFILE_FAIL_IMMEDIATELY
770 # define LOCKFILE_FAIL_IMMEDIATELY 1
774 ** Acquire a reader lock.
775 ** Different API routines are called depending on whether or not this
776 ** is Win95 or WinNT.
778 static int getReadLock(winFile *pFile){
782 ovlp.Offset = SHARED_FIRST;
785 res = LockFileEx(pFile->h, LOCKFILE_FAIL_IMMEDIATELY,
786 0, SHARED_SIZE, 0, &ovlp);
789 sqlite3_randomness(sizeof(lk), &lk);
790 pFile->sharedLockByte = (lk & 0x7fffffff)%(SHARED_SIZE - 1);
791 res = LockFile(pFile->h, SHARED_FIRST+pFile->sharedLockByte, 0, 1, 0);
799 static int unlockReadLock(winFile *pFile){
802 res = UnlockFile(pFile->h, SHARED_FIRST, 0, SHARED_SIZE, 0);
804 res = UnlockFile(pFile->h, SHARED_FIRST + pFile->sharedLockByte, 0, 1, 0);
810 ** Lock the file with the lock specified by parameter locktype - one
816 ** (4) EXCLUSIVE_LOCK
818 ** Sometimes when requesting one lock state, additional lock states
819 ** are inserted in between. The locking might fail on one of the later
820 ** transitions leaving the lock state different from what it started but
821 ** still short of its goal. The following chart shows the allowed
822 ** transitions and the inserted intermediate states:
824 ** UNLOCKED -> SHARED
825 ** SHARED -> RESERVED
826 ** SHARED -> (PENDING) -> EXCLUSIVE
827 ** RESERVED -> (PENDING) -> EXCLUSIVE
828 ** PENDING -> EXCLUSIVE
830 ** This routine will only increase a lock. The winUnlock() routine
831 ** erases all locks at once and returns us immediately to locking level 0.
832 ** It is not possible to lower the locking level one step at a time. You
833 ** must go straight to locking level 0.
835 static int winLock(sqlite3_file *id, int locktype){
836 int rc = SQLITE_OK; /* Return code from subroutines */
837 int res = 1; /* Result of a windows lock call */
838 int newLocktype; /* Set pFile->locktype to this value before exiting */
839 int gotPendingLock = 0;/* True if we acquired a PENDING lock this time */
840 winFile *pFile = (winFile*)id;
843 OSTRACE5("LOCK %d %d was %d(%d)\n",
844 pFile->h, locktype, pFile->locktype, pFile->sharedLockByte);
846 /* If there is already a lock of this type or more restrictive on the
847 ** OsFile, do nothing. Don't use the end_lock: exit path, as
848 ** sqlite3OsEnterMutex() hasn't been called yet.
850 if( pFile->locktype>=locktype ){
854 /* Make sure the locking sequence is correct
856 assert( pFile->locktype!=NO_LOCK || locktype==SHARED_LOCK );
857 assert( locktype!=PENDING_LOCK );
858 assert( locktype!=RESERVED_LOCK || pFile->locktype==SHARED_LOCK );
860 /* Lock the PENDING_LOCK byte if we need to acquire a PENDING lock or
861 ** a SHARED lock. If we are acquiring a SHARED lock, the acquisition of
862 ** the PENDING_LOCK byte is temporary.
864 newLocktype = pFile->locktype;
865 if( pFile->locktype==NO_LOCK
866 || (locktype==EXCLUSIVE_LOCK && pFile->locktype==RESERVED_LOCK)
869 while( cnt-->0 && (res = LockFile(pFile->h, PENDING_BYTE, 0, 1, 0))==0 ){
870 /* Try 3 times to get the pending lock. The pending lock might be
871 ** held by another reader process who will release it momentarily.
873 OSTRACE2("could not get a PENDING lock. cnt=%d\n", cnt);
876 gotPendingLock = res;
879 /* Acquire a shared lock
881 if( locktype==SHARED_LOCK && res ){
882 assert( pFile->locktype==NO_LOCK );
883 res = getReadLock(pFile);
885 newLocktype = SHARED_LOCK;
889 /* Acquire a RESERVED lock
891 if( locktype==RESERVED_LOCK && res ){
892 assert( pFile->locktype==SHARED_LOCK );
893 res = LockFile(pFile->h, RESERVED_BYTE, 0, 1, 0);
895 newLocktype = RESERVED_LOCK;
899 /* Acquire a PENDING lock
901 if( locktype==EXCLUSIVE_LOCK && res ){
902 newLocktype = PENDING_LOCK;
906 /* Acquire an EXCLUSIVE lock
908 if( locktype==EXCLUSIVE_LOCK && res ){
909 assert( pFile->locktype>=SHARED_LOCK );
910 res = unlockReadLock(pFile);
911 OSTRACE2("unreadlock = %d\n", res);
912 res = LockFile(pFile->h, SHARED_FIRST, 0, SHARED_SIZE, 0);
914 newLocktype = EXCLUSIVE_LOCK;
916 OSTRACE2("error-code = %d\n", GetLastError());
921 /* If we are holding a PENDING lock that ought to be released, then
924 if( gotPendingLock && locktype==SHARED_LOCK ){
925 UnlockFile(pFile->h, PENDING_BYTE, 0, 1, 0);
928 /* Update the state of the lock has held in the file descriptor then
929 ** return the appropriate result code.
934 OSTRACE4("LOCK FAILED %d trying for %d but got %d\n", pFile->h,
935 locktype, newLocktype);
938 pFile->locktype = newLocktype;
943 ** This routine checks if there is a RESERVED lock held on the specified
944 ** file by this or any other process. If such a lock is held, return
945 ** non-zero, otherwise zero.
947 static int winCheckReservedLock(sqlite3_file *id, int *pResOut){
949 winFile *pFile = (winFile*)id;
951 if( pFile->locktype>=RESERVED_LOCK ){
953 OSTRACE3("TEST WR-LOCK %d %d (local)\n", pFile->h, rc);
955 rc = LockFile(pFile->h, RESERVED_BYTE, 0, 1, 0);
957 UnlockFile(pFile->h, RESERVED_BYTE, 0, 1, 0);
960 OSTRACE3("TEST WR-LOCK %d %d (remote)\n", pFile->h, rc);
967 ** Lower the locking level on file descriptor id to locktype. locktype
968 ** must be either NO_LOCK or SHARED_LOCK.
970 ** If the locking level of the file descriptor is already at or below
971 ** the requested locking level, this routine is a no-op.
973 ** It is not possible for this routine to fail if the second argument
974 ** is NO_LOCK. If the second argument is SHARED_LOCK then this routine
975 ** might return SQLITE_IOERR;
977 static int winUnlock(sqlite3_file *id, int locktype){
979 winFile *pFile = (winFile*)id;
982 assert( locktype<=SHARED_LOCK );
983 OSTRACE5("UNLOCK %d to %d was %d(%d)\n", pFile->h, locktype,
984 pFile->locktype, pFile->sharedLockByte);
985 type = pFile->locktype;
986 if( type>=EXCLUSIVE_LOCK ){
987 UnlockFile(pFile->h, SHARED_FIRST, 0, SHARED_SIZE, 0);
988 if( locktype==SHARED_LOCK && !getReadLock(pFile) ){
989 /* This should never happen. We should always be able to
990 ** reacquire the read lock */
991 rc = SQLITE_IOERR_UNLOCK;
994 if( type>=RESERVED_LOCK ){
995 UnlockFile(pFile->h, RESERVED_BYTE, 0, 1, 0);
997 if( locktype==NO_LOCK && type>=SHARED_LOCK ){
998 unlockReadLock(pFile);
1000 if( type>=PENDING_LOCK ){
1001 UnlockFile(pFile->h, PENDING_BYTE, 0, 1, 0);
1003 pFile->locktype = locktype;
1008 ** Control and query of the open file handle.
1010 static int winFileControl(sqlite3_file *id, int op, void *pArg){
1012 case SQLITE_FCNTL_LOCKSTATE: {
1013 *(int*)pArg = ((winFile*)id)->locktype;
1017 return SQLITE_ERROR;
1021 ** Return the sector size in bytes of the underlying block device for
1022 ** the specified file. This is almost always 512 bytes, but may be
1023 ** larger for some devices.
1025 ** SQLite code assumes this function cannot fail. It also assumes that
1026 ** if two files are created in the same file-system directory (i.e.
1027 ** a database and its journal file) that the sector size will be the
1030 static int winSectorSize(sqlite3_file *id){
1031 return SQLITE_DEFAULT_SECTOR_SIZE;
1035 ** Return a vector of device characteristics.
1037 static int winDeviceCharacteristics(sqlite3_file *id){
1042 ** This vector defines all the methods that can operate on an
1043 ** sqlite3_file for win32.
1045 static const sqlite3_io_methods winIoMethod = {
1055 winCheckReservedLock,
1058 winDeviceCharacteristics
1061 /***************************************************************************
1062 ** Here ends the I/O methods that form the sqlite3_io_methods object.
1064 ** The next block of code implements the VFS methods.
1065 ****************************************************************************/
1068 ** Convert a UTF-8 filename into whatever form the underlying
1069 ** operating system wants filenames in. Space to hold the result
1070 ** is obtained from malloc and must be freed by the calling
1073 static void *convertUtf8Filename(const char *zFilename){
1074 void *zConverted = 0;
1076 zConverted = utf8ToUnicode(zFilename);
1078 zConverted = utf8ToMbcs(zFilename);
1080 /* caller will handle out of memory */
1085 ** Create a temporary file name in zBuf. zBuf must be big enough to
1086 ** hold at pVfs->mxPathname characters.
1088 static int getTempname(int nBuf, char *zBuf){
1089 static char zChars[] =
1090 "abcdefghijklmnopqrstuvwxyz"
1091 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1094 char zTempPath[MAX_PATH+1];
1095 if( sqlite3_temp_directory ){
1096 sqlite3_snprintf(MAX_PATH-30, zTempPath, "%s", sqlite3_temp_directory);
1099 WCHAR zWidePath[MAX_PATH];
1100 GetTempPathW(MAX_PATH-30, zWidePath);
1101 zMulti = unicodeToUtf8(zWidePath);
1103 sqlite3_snprintf(MAX_PATH-30, zTempPath, "%s", zMulti);
1106 return SQLITE_NOMEM;
1110 char zMbcsPath[MAX_PATH];
1111 GetTempPathA(MAX_PATH-30, zMbcsPath);
1112 zUtf8 = mbcsToUtf8(zMbcsPath);
1114 sqlite3_snprintf(MAX_PATH-30, zTempPath, "%s", zUtf8);
1117 return SQLITE_NOMEM;
1120 for(i=strlen(zTempPath); i>0 && zTempPath[i-1]=='\\'; i--){}
1122 sqlite3_snprintf(nBuf-30, zBuf,
1123 "%s\\"SQLITE_TEMP_FILE_PREFIX, zTempPath);
1125 sqlite3_randomness(20, &zBuf[j]);
1126 for(i=0; i<20; i++, j++){
1127 zBuf[j] = (char)zChars[ ((unsigned char)zBuf[j])%(sizeof(zChars)-1) ];
1130 OSTRACE2("TEMP FILENAME: %s\n", zBuf);
1135 ** The return value of getLastErrorMsg
1136 ** is zero if the error message fits in the buffer, or non-zero
1137 ** otherwise (if the message was truncated).
1139 static int getLastErrorMsg(int nBuf, char *zBuf){
1140 DWORD error = GetLastError();
1143 sqlite3_snprintf(nBuf, zBuf, "OsError 0x%x (%u)", error, error);
1145 /* FormatMessage returns 0 on failure. Otherwise it
1146 ** returns the number of TCHARs written to the output
1147 ** buffer, excluding the terminating null char.
1149 if (!FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM,
1157 sqlite3_snprintf(nBuf, zBuf, "OsError 0x%x (%u)", error, error);
1169 sqlite3_vfs *pVfs, /* Not used */
1170 const char *zName, /* Name of the file (UTF-8) */
1171 sqlite3_file *id, /* Write the SQLite file handle here */
1172 int flags, /* Open mode flags */
1173 int *pOutFlags /* Status return flags */
1176 DWORD dwDesiredAccess;
1178 DWORD dwCreationDisposition;
1179 DWORD dwFlagsAndAttributes = 0;
1183 winFile *pFile = (winFile*)id;
1184 void *zConverted; /* Filename in OS encoding */
1185 const char *zUtf8Name = zName; /* Filename in UTF-8 encoding */
1186 char zTmpname[MAX_PATH+1]; /* Buffer used to create temp filename */
1188 /* If the second argument to this function is NULL, generate a
1189 ** temporary file name to use
1192 int rc = getTempname(MAX_PATH+1, zTmpname);
1193 if( rc!=SQLITE_OK ){
1196 zUtf8Name = zTmpname;
1199 /* Convert the filename to the system encoding. */
1200 zConverted = convertUtf8Filename(zUtf8Name);
1201 if( zConverted==0 ){
1202 return SQLITE_NOMEM;
1205 if( flags & SQLITE_OPEN_READWRITE ){
1206 dwDesiredAccess = GENERIC_READ | GENERIC_WRITE;
1208 dwDesiredAccess = GENERIC_READ;
1210 if( flags & SQLITE_OPEN_CREATE ){
1211 dwCreationDisposition = OPEN_ALWAYS;
1213 dwCreationDisposition = OPEN_EXISTING;
1215 if( flags & SQLITE_OPEN_MAIN_DB ){
1216 dwShareMode = FILE_SHARE_READ | FILE_SHARE_WRITE;
1220 if( flags & SQLITE_OPEN_DELETEONCLOSE ){
1222 dwFlagsAndAttributes = FILE_ATTRIBUTE_HIDDEN;
1225 dwFlagsAndAttributes = FILE_ATTRIBUTE_TEMPORARY
1226 | FILE_ATTRIBUTE_HIDDEN
1227 | FILE_FLAG_DELETE_ON_CLOSE;
1230 dwFlagsAndAttributes = FILE_ATTRIBUTE_NORMAL;
1232 /* Reports from the internet are that performance is always
1233 ** better if FILE_FLAG_RANDOM_ACCESS is used. Ticket #2699. */
1235 dwFlagsAndAttributes |= FILE_FLAG_RANDOM_ACCESS;
1238 h = CreateFileW((WCHAR*)zConverted,
1242 dwCreationDisposition,
1243 dwFlagsAndAttributes,
1247 h = CreateFileA((char*)zConverted,
1251 dwCreationDisposition,
1252 dwFlagsAndAttributes,
1256 if( h==INVALID_HANDLE_VALUE ){
1258 if( flags & SQLITE_OPEN_READWRITE ){
1259 return winOpen(0, zName, id,
1260 ((flags|SQLITE_OPEN_READONLY)&~SQLITE_OPEN_READWRITE), pOutFlags);
1262 return SQLITE_CANTOPEN;
1266 if( flags & SQLITE_OPEN_READWRITE ){
1267 *pOutFlags = SQLITE_OPEN_READWRITE;
1269 *pOutFlags = SQLITE_OPEN_READONLY;
1272 memset(pFile, 0, sizeof(*pFile));
1273 pFile->pMethod = &winIoMethod;
1276 if( (flags & (SQLITE_OPEN_READWRITE|SQLITE_OPEN_MAIN_DB)) ==
1277 (SQLITE_OPEN_READWRITE|SQLITE_OPEN_MAIN_DB)
1278 && !winceCreateLock(zName, pFile)
1282 return SQLITE_CANTOPEN;
1285 pFile->zDeleteOnClose = zConverted;
1296 ** Delete the named file.
1298 ** Note that windows does not allow a file to be deleted if some other
1299 ** process has it open. Sometimes a virus scanner or indexing program
1300 ** will open a journal file shortly after it is created in order to do
1301 ** whatever it does. While this other process is holding the
1302 ** file open, we will be unable to delete it. To work around this
1303 ** problem, we delay 100 milliseconds and try to delete again. Up
1304 ** to MX_DELETION_ATTEMPTs deletion attempts are run before giving
1305 ** up and returning an error.
1307 #define MX_DELETION_ATTEMPTS 5
1308 static int winDelete(
1309 sqlite3_vfs *pVfs, /* Not used on win32 */
1310 const char *zFilename, /* Name of file to delete */
1311 int syncDir /* Not used on win32 */
1316 void *zConverted = convertUtf8Filename(zFilename);
1317 if( zConverted==0 ){
1318 return SQLITE_NOMEM;
1320 SimulateIOError(return SQLITE_IOERR_DELETE);
1323 DeleteFileW(zConverted);
1324 }while( ( ((rc = GetFileAttributesW(zConverted)) != INVALID_FILE_ATTRIBUTES)
1325 || ((error = GetLastError()) == ERROR_ACCESS_DENIED))
1326 && (++cnt < MX_DELETION_ATTEMPTS)
1327 && (Sleep(100), 1) );
1330 DeleteFileA(zConverted);
1331 }while( ( ((rc = GetFileAttributesA(zConverted)) != INVALID_FILE_ATTRIBUTES)
1332 || ((error = GetLastError()) == ERROR_ACCESS_DENIED))
1333 && (++cnt < MX_DELETION_ATTEMPTS)
1334 && (Sleep(100), 1) );
1337 OSTRACE2("DELETE \"%s\"\n", zFilename);
1338 return ( (rc == INVALID_FILE_ATTRIBUTES)
1339 && (error == ERROR_FILE_NOT_FOUND)) ? SQLITE_OK : SQLITE_IOERR_DELETE;
1343 ** Check the existance and status of a file.
1345 static int winAccess(
1346 sqlite3_vfs *pVfs, /* Not used on win32 */
1347 const char *zFilename, /* Name of file to check */
1348 int flags, /* Type of test to make on this file */
1349 int *pResOut /* OUT: Result */
1353 void *zConverted = convertUtf8Filename(zFilename);
1354 if( zConverted==0 ){
1355 return SQLITE_NOMEM;
1358 attr = GetFileAttributesW((WCHAR*)zConverted);
1360 attr = GetFileAttributesA((char*)zConverted);
1364 case SQLITE_ACCESS_READ:
1365 case SQLITE_ACCESS_EXISTS:
1366 rc = attr!=INVALID_FILE_ATTRIBUTES;
1368 case SQLITE_ACCESS_READWRITE:
1369 rc = (attr & FILE_ATTRIBUTE_READONLY)==0;
1372 assert(!"Invalid flags argument");
1380 ** Turn a relative pathname into a full pathname. Write the full
1381 ** pathname into zOut[]. zOut[] will be at least pVfs->mxPathname
1384 static int winFullPathname(
1385 sqlite3_vfs *pVfs, /* Pointer to vfs object */
1386 const char *zRelative, /* Possibly relative input path */
1387 int nFull, /* Size of output buffer in bytes */
1388 char *zFull /* Output buffer */
1391 #if defined(__CYGWIN__)
1392 cygwin_conv_to_full_win32_path(zRelative, zFull);
1397 /* WinCE has no concept of a relative pathname, or so I am told. */
1398 sqlite3_snprintf(pVfs->mxPathname, zFull, "%s", zRelative);
1402 #if !SQLITE_OS_WINCE && !defined(__CYGWIN__)
1406 zConverted = convertUtf8Filename(zRelative);
1409 nByte = GetFullPathNameW((WCHAR*)zConverted, 0, 0, 0) + 3;
1410 zTemp = malloc( nByte*sizeof(zTemp[0]) );
1413 return SQLITE_NOMEM;
1415 GetFullPathNameW((WCHAR*)zConverted, nByte, zTemp, 0);
1417 zOut = unicodeToUtf8(zTemp);
1421 nByte = GetFullPathNameA((char*)zConverted, 0, 0, 0) + 3;
1422 zTemp = malloc( nByte*sizeof(zTemp[0]) );
1425 return SQLITE_NOMEM;
1427 GetFullPathNameA((char*)zConverted, nByte, zTemp, 0);
1429 zOut = mbcsToUtf8(zTemp);
1433 sqlite3_snprintf(pVfs->mxPathname, zFull, "%s", zOut);
1437 return SQLITE_NOMEM;
1442 #ifndef SQLITE_OMIT_LOAD_EXTENSION
1444 ** Interfaces for opening a shared library, finding entry points
1445 ** within the shared library, and closing the shared library.
1448 ** Interfaces for opening a shared library, finding entry points
1449 ** within the shared library, and closing the shared library.
1451 static void *winDlOpen(sqlite3_vfs *pVfs, const char *zFilename){
1453 void *zConverted = convertUtf8Filename(zFilename);
1454 if( zConverted==0 ){
1458 h = LoadLibraryW((WCHAR*)zConverted);
1460 h = LoadLibraryA((char*)zConverted);
1465 static void winDlError(sqlite3_vfs *pVfs, int nBuf, char *zBufOut){
1466 getLastErrorMsg(nBuf, zBufOut);
1468 void *winDlSym(sqlite3_vfs *pVfs, void *pHandle, const char *zSymbol){
1470 /* The GetProcAddressA() routine is only available on wince. */
1471 return GetProcAddressA((HANDLE)pHandle, zSymbol);
1473 /* All other windows platforms expect GetProcAddress() to take
1474 ** an Ansi string regardless of the _UNICODE setting */
1475 return GetProcAddress((HANDLE)pHandle, zSymbol);
1478 void winDlClose(sqlite3_vfs *pVfs, void *pHandle){
1479 FreeLibrary((HANDLE)pHandle);
1481 #else /* if SQLITE_OMIT_LOAD_EXTENSION is defined: */
1483 #define winDlError 0
1485 #define winDlClose 0
1490 ** Write up to nBuf bytes of randomness into zBuf.
1492 static int winRandomness(sqlite3_vfs *pVfs, int nBuf, char *zBuf){
1494 if( sizeof(SYSTEMTIME)<=nBuf-n ){
1497 memcpy(&zBuf[n], &x, sizeof(x));
1500 if( sizeof(DWORD)<=nBuf-n ){
1501 DWORD pid = GetCurrentProcessId();
1502 memcpy(&zBuf[n], &pid, sizeof(pid));
1505 if( sizeof(DWORD)<=nBuf-n ){
1506 DWORD cnt = GetTickCount();
1507 memcpy(&zBuf[n], &cnt, sizeof(cnt));
1510 if( sizeof(LARGE_INTEGER)<=nBuf-n ){
1512 QueryPerformanceCounter(&i);
1513 memcpy(&zBuf[n], &i, sizeof(i));
1521 ** Sleep for a little while. Return the amount of time slept.
1523 static int winSleep(sqlite3_vfs *pVfs, int microsec){
1524 Sleep((microsec+999)/1000);
1525 return ((microsec+999)/1000)*1000;
1529 ** The following variable, if set to a non-zero value, becomes the result
1530 ** returned from sqlite3OsCurrentTime(). This is used for testing.
1533 int sqlite3_current_time = 0;
1537 ** Find the current time (in Universal Coordinated Time). Write the
1538 ** current time and date as a Julian Day number into *prNow and
1539 ** return 0. Return 1 if the time and date cannot be found.
1541 int winCurrentTime(sqlite3_vfs *pVfs, double *prNow){
1543 /* FILETIME structure is a 64-bit value representing the number of
1544 100-nanosecond intervals since January 1, 1601 (= JD 2305813.5).
1549 GetSystemTime(&time);
1550 /* if SystemTimeToFileTime() fails, it returns zero. */
1551 if (!SystemTimeToFileTime(&time,&ft)){
1555 GetSystemTimeAsFileTime( &ft );
1557 now = ((double)ft.dwHighDateTime) * 4294967296.0;
1558 *prNow = (now + ft.dwLowDateTime)/864000000000.0 + 2305813.5;
1560 if( sqlite3_current_time ){
1561 *prNow = sqlite3_current_time/86400.0 + 2440587.5;
1568 ** The idea is that this function works like a combination of
1569 ** GetLastError() and FormatMessage() on windows (or errno and
1570 ** strerror_r() on unix). After an error is returned by an OS
1571 ** function, SQLite calls this function with zBuf pointing to
1572 ** a buffer of nBuf bytes. The OS layer should populate the
1573 ** buffer with a nul-terminated UTF-8 encoded error message
1574 ** describing the last IO error to have occured within the calling
1577 ** If the error message is too large for the supplied buffer,
1578 ** it should be truncated. The return value of xGetLastError
1579 ** is zero if the error message fits in the buffer, or non-zero
1580 ** otherwise (if the message was truncated). If non-zero is returned,
1581 ** then it is not necessary to include the nul-terminator character
1582 ** in the output buffer.
1584 ** Not supplying an error message will have no adverse effect
1585 ** on SQLite. It is fine to have an implementation that never
1586 ** returns an error message:
1588 ** int xGetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf){
1589 ** assert(zBuf[0]=='\0');
1593 ** However if an error message is supplied, it will be incorporated
1594 ** by sqlite into the error message available to the user using
1595 ** sqlite3_errmsg(), possibly making IO errors easier to debug.
1597 static int winGetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf){
1598 return getLastErrorMsg(nBuf, zBuf);
1602 ** Initialize and deinitialize the operating system interface.
1604 int sqlite3_os_init(void){
1605 static sqlite3_vfs winVfs = {
1607 sizeof(winFile), /* szOsFile */
1608 MAX_PATH, /* mxPathname */
1610 "win32", /* zName */
1613 winOpen, /* xOpen */
1614 winDelete, /* xDelete */
1615 winAccess, /* xAccess */
1616 winFullPathname, /* xFullPathname */
1617 winDlOpen, /* xDlOpen */
1618 winDlError, /* xDlError */
1619 winDlSym, /* xDlSym */
1620 winDlClose, /* xDlClose */
1621 winRandomness, /* xRandomness */
1622 winSleep, /* xSleep */
1623 winCurrentTime, /* xCurrentTime */
1624 winGetLastError /* xGetLastError */
1626 sqlite3_vfs_register(&winVfs, 1);
1629 int sqlite3_os_end(void){
1633 #endif /* SQLITE_OS_WIN */