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.132 2008/07/31 01:34:34 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 ** Determine if we are dealing with WindowsCE - which has a much
69 #if defined(SQLITE_OS_WINCE)
70 # define AreFileApisANSI() 1
74 ** WinCE lacks native support for file locking so we have to fake it
75 ** with some code of our own.
78 typedef struct winceLock {
79 int nReaders; /* Number of reader locks obtained */
80 BOOL bPending; /* Indicates a pending lock has been obtained */
81 BOOL bReserved; /* Indicates a reserved lock has been obtained */
82 BOOL bExclusive; /* Indicates an exclusive lock has been obtained */
87 ** The winFile structure is a subclass of sqlite3_file* specific to the win32
90 typedef struct winFile winFile;
92 const sqlite3_io_methods *pMethod;/* Must be first */
93 HANDLE h; /* Handle for accessing the file */
94 unsigned char locktype; /* Type of lock currently held on this file */
95 short sharedLockByte; /* Randomly chosen byte used as a shared lock */
97 WCHAR *zDeleteOnClose; /* Name of file to delete when closing */
98 HANDLE hMutex; /* Mutex used to control access to shared lock */
99 HANDLE hShared; /* Shared memory segment used for locking */
100 winceLock local; /* Locks obtained by this instance of winFile */
101 winceLock *shared; /* Global shared lock memory for the file */
107 ** The following variable is (normally) set once and never changes
108 ** thereafter. It records whether the operating system is Win95
111 ** 0: Operating system unknown.
112 ** 1: Operating system is Win95.
113 ** 2: Operating system is WinNT.
115 ** In order to facilitate testing on a WinNT system, the test fixture
116 ** can manually set this value to 1 to emulate Win98 behavior.
119 int sqlite3_os_type = 0;
121 static int sqlite3_os_type = 0;
125 ** Return true (non-zero) if we are running under WinNT, Win2K, WinXP,
126 ** or WinCE. Return false (zero) for Win95, Win98, or WinME.
128 ** Here is an interesting observation: Win95, Win98, and WinME lack
129 ** the LockFileEx() API. But we can still statically link against that
130 ** API as long as we don't call it win running Win95/98/ME. A call to
131 ** this routine is used to determine if the host is Win95/98/ME or
132 ** WinNT/2K/XP so that we will know whether or not we can safely call
133 ** the LockFileEx() API.
138 static int isNT(void){
139 if( sqlite3_os_type==0 ){
141 sInfo.dwOSVersionInfoSize = sizeof(sInfo);
142 GetVersionEx(&sInfo);
143 sqlite3_os_type = sInfo.dwPlatformId==VER_PLATFORM_WIN32_NT ? 2 : 1;
145 return sqlite3_os_type==2;
147 #endif /* SQLITE_OS_WINCE */
150 ** Convert a UTF-8 string to microsoft unicode (UTF-16?).
152 ** Space to hold the returned string is obtained from malloc.
154 static WCHAR *utf8ToUnicode(const char *zFilename){
156 WCHAR *zWideFilename;
158 nChar = MultiByteToWideChar(CP_UTF8, 0, zFilename, -1, NULL, 0);
159 zWideFilename = malloc( nChar*sizeof(zWideFilename[0]) );
160 if( zWideFilename==0 ){
163 nChar = MultiByteToWideChar(CP_UTF8, 0, zFilename, -1, zWideFilename, nChar);
168 return zWideFilename;
172 ** Convert microsoft unicode to UTF-8. Space to hold the returned string is
173 ** obtained from malloc().
175 static char *unicodeToUtf8(const WCHAR *zWideFilename){
179 nByte = WideCharToMultiByte(CP_UTF8, 0, zWideFilename, -1, 0, 0, 0, 0);
180 zFilename = malloc( nByte );
184 nByte = WideCharToMultiByte(CP_UTF8, 0, zWideFilename, -1, zFilename, nByte,
194 ** Convert an ansi string to microsoft unicode, based on the
195 ** current codepage settings for file apis.
197 ** Space to hold the returned string is obtained
200 static WCHAR *mbcsToUnicode(const char *zFilename){
202 WCHAR *zMbcsFilename;
203 int codepage = AreFileApisANSI() ? CP_ACP : CP_OEMCP;
205 nByte = MultiByteToWideChar(codepage, 0, zFilename, -1, NULL,0)*sizeof(WCHAR);
206 zMbcsFilename = malloc( nByte*sizeof(zMbcsFilename[0]) );
207 if( zMbcsFilename==0 ){
210 nByte = MultiByteToWideChar(codepage, 0, zFilename, -1, zMbcsFilename, nByte);
215 return zMbcsFilename;
219 ** Convert microsoft unicode to multibyte character string, based on the
220 ** user's Ansi codepage.
222 ** Space to hold the returned string is obtained from
225 static char *unicodeToMbcs(const WCHAR *zWideFilename){
228 int codepage = AreFileApisANSI() ? CP_ACP : CP_OEMCP;
230 nByte = WideCharToMultiByte(codepage, 0, zWideFilename, -1, 0, 0, 0, 0);
231 zFilename = malloc( nByte );
235 nByte = WideCharToMultiByte(codepage, 0, zWideFilename, -1, zFilename, nByte,
245 ** Convert multibyte character string to UTF-8. Space to hold the
246 ** returned string is obtained from malloc().
248 static char *mbcsToUtf8(const char *zFilename){
252 zTmpWide = mbcsToUnicode(zFilename);
256 zFilenameUtf8 = unicodeToUtf8(zTmpWide);
258 return zFilenameUtf8;
262 ** Convert UTF-8 to multibyte character string. Space to hold the
263 ** returned string is obtained from malloc().
265 static char *utf8ToMbcs(const char *zFilename){
269 zTmpWide = utf8ToUnicode(zFilename);
273 zFilenameMbcs = unicodeToMbcs(zTmpWide);
275 return zFilenameMbcs;
279 /*************************************************************************
280 ** This section contains code for WinCE only.
283 ** WindowsCE does not have a localtime() function. So create a
287 struct tm *__cdecl localtime(const time_t *t)
294 t64 = (t64 + 11644473600)*10000000;
295 uTm.dwLowDateTime = t64 & 0xFFFFFFFF;
296 uTm.dwHighDateTime= t64 >> 32;
297 FileTimeToLocalFileTime(&uTm,&lTm);
298 FileTimeToSystemTime(&lTm,&pTm);
299 y.tm_year = pTm.wYear - 1900;
300 y.tm_mon = pTm.wMonth - 1;
301 y.tm_wday = pTm.wDayOfWeek;
302 y.tm_mday = pTm.wDay;
303 y.tm_hour = pTm.wHour;
304 y.tm_min = pTm.wMinute;
305 y.tm_sec = pTm.wSecond;
309 /* This will never be called, but defined to make the code compile */
310 #define GetTempPathA(a,b)
312 #define LockFile(a,b,c,d,e) winceLockFile(&a, b, c, d, e)
313 #define UnlockFile(a,b,c,d,e) winceUnlockFile(&a, b, c, d, e)
314 #define LockFileEx(a,b,c,d,e,f) winceLockFileEx(&a, b, c, d, e, f)
316 #define HANDLE_TO_WINFILE(a) (winFile*)&((char*)a)[-offsetof(winFile,h)]
319 ** Acquire a lock on the handle h
321 static void winceMutexAcquire(HANDLE h){
324 dwErr = WaitForSingleObject(h, INFINITE);
325 } while (dwErr != WAIT_OBJECT_0 && dwErr != WAIT_ABANDONED);
328 ** Release a lock acquired by winceMutexAcquire()
330 #define winceMutexRelease(h) ReleaseMutex(h)
333 ** Create the mutex and shared memory used for locking in the file
336 static BOOL winceCreateLock(const char *zFilename, winFile *pFile){
338 WCHAR *zName = utf8ToUnicode(zFilename);
341 /* Initialize the local lockdata */
342 ZeroMemory(&pFile->local, sizeof(pFile->local));
344 /* Replace the backslashes from the filename and lowercase it
345 ** to derive a mutex name. */
346 zTok = CharLowerW(zName);
348 if (*zTok == '\\') *zTok = '_';
351 /* Create/open the named mutex */
352 pFile->hMutex = CreateMutexW(NULL, FALSE, zName);
358 /* Acquire the mutex before continuing */
359 winceMutexAcquire(pFile->hMutex);
361 /* Since the names of named mutexes, semaphores, file mappings etc are
362 ** case-sensitive, take advantage of that by uppercasing the mutex name
363 ** and using that as the shared filemapping name.
366 pFile->hShared = CreateFileMappingW(INVALID_HANDLE_VALUE, NULL,
367 PAGE_READWRITE, 0, sizeof(winceLock),
370 /* Set a flag that indicates we're the first to create the memory so it
371 ** must be zero-initialized */
372 if (GetLastError() == ERROR_ALREADY_EXISTS){
378 /* If we succeeded in making the shared memory handle, map it. */
380 pFile->shared = (winceLock*)MapViewOfFile(pFile->hShared,
381 FILE_MAP_READ|FILE_MAP_WRITE, 0, 0, sizeof(winceLock));
382 /* If mapping failed, close the shared memory handle and erase it */
384 CloseHandle(pFile->hShared);
385 pFile->hShared = NULL;
389 /* If shared memory could not be created, then close the mutex and fail */
390 if (pFile->hShared == NULL){
391 winceMutexRelease(pFile->hMutex);
392 CloseHandle(pFile->hMutex);
393 pFile->hMutex = NULL;
397 /* Initialize the shared memory if we're supposed to */
399 ZeroMemory(pFile->shared, sizeof(winceLock));
402 winceMutexRelease(pFile->hMutex);
407 ** Destroy the part of winFile that deals with wince locks
409 static void winceDestroyLock(winFile *pFile){
411 /* Acquire the mutex */
412 winceMutexAcquire(pFile->hMutex);
414 /* The following blocks should probably assert in debug mode, but they
415 are to cleanup in case any locks remained open */
416 if (pFile->local.nReaders){
417 pFile->shared->nReaders --;
419 if (pFile->local.bReserved){
420 pFile->shared->bReserved = FALSE;
422 if (pFile->local.bPending){
423 pFile->shared->bPending = FALSE;
425 if (pFile->local.bExclusive){
426 pFile->shared->bExclusive = FALSE;
429 /* De-reference and close our copy of the shared memory handle */
430 UnmapViewOfFile(pFile->shared);
431 CloseHandle(pFile->hShared);
433 /* Done with the mutex */
434 winceMutexRelease(pFile->hMutex);
435 CloseHandle(pFile->hMutex);
436 pFile->hMutex = NULL;
441 ** An implementation of the LockFile() API of windows for wince
443 static BOOL winceLockFile(
445 DWORD dwFileOffsetLow,
446 DWORD dwFileOffsetHigh,
447 DWORD nNumberOfBytesToLockLow,
448 DWORD nNumberOfBytesToLockHigh
450 winFile *pFile = HANDLE_TO_WINFILE(phFile);
451 BOOL bReturn = FALSE;
453 if (!pFile->hMutex) return TRUE;
454 winceMutexAcquire(pFile->hMutex);
456 /* Wanting an exclusive lock? */
457 if (dwFileOffsetLow == SHARED_FIRST
458 && nNumberOfBytesToLockLow == SHARED_SIZE){
459 if (pFile->shared->nReaders == 0 && pFile->shared->bExclusive == 0){
460 pFile->shared->bExclusive = TRUE;
461 pFile->local.bExclusive = TRUE;
466 /* Want a read-only lock? */
467 else if ((dwFileOffsetLow >= SHARED_FIRST &&
468 dwFileOffsetLow < SHARED_FIRST + SHARED_SIZE) &&
469 nNumberOfBytesToLockLow == 1){
470 if (pFile->shared->bExclusive == 0){
471 pFile->local.nReaders ++;
472 if (pFile->local.nReaders == 1){
473 pFile->shared->nReaders ++;
479 /* Want a pending lock? */
480 else if (dwFileOffsetLow == PENDING_BYTE && nNumberOfBytesToLockLow == 1){
481 /* If no pending lock has been acquired, then acquire it */
482 if (pFile->shared->bPending == 0) {
483 pFile->shared->bPending = TRUE;
484 pFile->local.bPending = TRUE;
488 /* Want a reserved lock? */
489 else if (dwFileOffsetLow == RESERVED_BYTE && nNumberOfBytesToLockLow == 1){
490 if (pFile->shared->bReserved == 0) {
491 pFile->shared->bReserved = TRUE;
492 pFile->local.bReserved = TRUE;
497 winceMutexRelease(pFile->hMutex);
502 ** An implementation of the UnlockFile API of windows for wince
504 static BOOL winceUnlockFile(
506 DWORD dwFileOffsetLow,
507 DWORD dwFileOffsetHigh,
508 DWORD nNumberOfBytesToUnlockLow,
509 DWORD nNumberOfBytesToUnlockHigh
511 winFile *pFile = HANDLE_TO_WINFILE(phFile);
512 BOOL bReturn = FALSE;
514 if (!pFile->hMutex) return TRUE;
515 winceMutexAcquire(pFile->hMutex);
517 /* Releasing a reader lock or an exclusive lock */
518 if (dwFileOffsetLow >= SHARED_FIRST &&
519 dwFileOffsetLow < SHARED_FIRST + SHARED_SIZE){
520 /* Did we have an exclusive lock? */
521 if (pFile->local.bExclusive){
522 pFile->local.bExclusive = FALSE;
523 pFile->shared->bExclusive = FALSE;
527 /* Did we just have a reader lock? */
528 else if (pFile->local.nReaders){
529 pFile->local.nReaders --;
530 if (pFile->local.nReaders == 0)
532 pFile->shared->nReaders --;
538 /* Releasing a pending lock */
539 else if (dwFileOffsetLow == PENDING_BYTE && nNumberOfBytesToUnlockLow == 1){
540 if (pFile->local.bPending){
541 pFile->local.bPending = FALSE;
542 pFile->shared->bPending = FALSE;
546 /* Releasing a reserved lock */
547 else if (dwFileOffsetLow == RESERVED_BYTE && nNumberOfBytesToUnlockLow == 1){
548 if (pFile->local.bReserved) {
549 pFile->local.bReserved = FALSE;
550 pFile->shared->bReserved = FALSE;
555 winceMutexRelease(pFile->hMutex);
560 ** An implementation of the LockFileEx() API of windows for wince
562 static BOOL winceLockFileEx(
566 DWORD nNumberOfBytesToLockLow,
567 DWORD nNumberOfBytesToLockHigh,
568 LPOVERLAPPED lpOverlapped
570 /* If the caller wants a shared read lock, forward this call
571 ** to winceLockFile */
572 if (lpOverlapped->Offset == SHARED_FIRST &&
574 nNumberOfBytesToLockLow == SHARED_SIZE){
575 return winceLockFile(phFile, SHARED_FIRST, 0, 1, 0);
580 ** End of the special code for wince
581 *****************************************************************************/
582 #endif /* SQLITE_OS_WINCE */
584 /*****************************************************************************
585 ** The next group of routines implement the I/O methods specified
586 ** by the sqlite3_io_methods object.
587 ******************************************************************************/
592 ** It is reported that an attempt to close a handle might sometimes
593 ** fail. This is a very unreasonable result, but windows is notorious
594 ** for being unreasonable so I do not doubt that it might happen. If
595 ** the close fails, we pause for 100 milliseconds and try again. As
596 ** many as MX_CLOSE_ATTEMPT attempts to close the handle are made before
597 ** giving up and returning an error.
599 #define MX_CLOSE_ATTEMPT 3
600 static int winClose(sqlite3_file *id){
602 winFile *pFile = (winFile*)id;
603 OSTRACE2("CLOSE %d\n", pFile->h);
605 rc = CloseHandle(pFile->h);
606 }while( rc==0 && cnt++ < MX_CLOSE_ATTEMPT && (Sleep(100), 1) );
608 #define WINCE_DELETION_ATTEMPTS 3
609 winceDestroyLock(pFile);
610 if( pFile->zDeleteOnClose ){
613 DeleteFileW(pFile->zDeleteOnClose)==0
614 && GetFileAttributesW(pFile->zDeleteOnClose)!=0xffffffff
615 && cnt++ < WINCE_DELETION_ATTEMPTS
617 Sleep(100); /* Wait a little before trying again */
619 free(pFile->zDeleteOnClose);
623 return rc ? SQLITE_OK : SQLITE_IOERR;
627 ** Some microsoft compilers lack this definition.
629 #ifndef INVALID_SET_FILE_POINTER
630 # define INVALID_SET_FILE_POINTER ((DWORD)-1)
634 ** Read data from a file into a buffer. Return SQLITE_OK if all
635 ** bytes were read successfully and SQLITE_IOERR if anything goes
639 sqlite3_file *id, /* File to read from */
640 void *pBuf, /* Write content into this buffer */
641 int amt, /* Number of bytes to read */
642 sqlite3_int64 offset /* Begin reading at this offset */
644 LONG upperBits = (offset>>32) & 0x7fffffff;
645 LONG lowerBits = offset & 0xffffffff;
648 winFile *pFile = (winFile*)id;
650 SimulateIOError(return SQLITE_IOERR_READ);
651 OSTRACE3("READ %d lock=%d\n", pFile->h, pFile->locktype);
652 rc = SetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN);
653 if( rc==INVALID_SET_FILE_POINTER && GetLastError()!=NO_ERROR ){
656 if( !ReadFile(pFile->h, pBuf, amt, &got, 0) ){
657 return SQLITE_IOERR_READ;
659 if( got==(DWORD)amt ){
662 memset(&((char*)pBuf)[got], 0, amt-got);
663 return SQLITE_IOERR_SHORT_READ;
668 ** Write data from a buffer into a file. Return SQLITE_OK on success
669 ** or some other error code on failure.
672 sqlite3_file *id, /* File to write into */
673 const void *pBuf, /* The bytes to be written */
674 int amt, /* Number of bytes to write */
675 sqlite3_int64 offset /* Offset into the file to begin writing at */
677 LONG upperBits = (offset>>32) & 0x7fffffff;
678 LONG lowerBits = offset & 0xffffffff;
681 winFile *pFile = (winFile*)id;
683 SimulateIOError(return SQLITE_IOERR_WRITE);
684 SimulateDiskfullError(return SQLITE_FULL);
685 OSTRACE3("WRITE %d lock=%d\n", pFile->h, pFile->locktype);
686 rc = SetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN);
687 if( rc==INVALID_SET_FILE_POINTER && GetLastError()!=NO_ERROR ){
693 && (rc = WriteFile(pFile->h, pBuf, amt, &wrote, 0))!=0
697 pBuf = &((char*)pBuf)[wrote];
699 if( !rc || amt>(int)wrote ){
706 ** Truncate an open file to a specified size
708 static int winTruncate(sqlite3_file *id, sqlite3_int64 nByte){
709 LONG upperBits = (nByte>>32) & 0x7fffffff;
710 LONG lowerBits = nByte & 0xffffffff;
711 winFile *pFile = (winFile*)id;
712 OSTRACE3("TRUNCATE %d %lld\n", pFile->h, nByte);
713 SimulateIOError(return SQLITE_IOERR_TRUNCATE);
714 SetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN);
715 SetEndOfFile(pFile->h);
721 ** Count the number of fullsyncs and normal syncs. This is used to test
722 ** that syncs and fullsyncs are occuring at the right times.
724 int sqlite3_sync_count = 0;
725 int sqlite3_fullsync_count = 0;
729 ** Make sure all writes to a particular file are committed to disk.
731 static int winSync(sqlite3_file *id, int flags){
732 winFile *pFile = (winFile*)id;
733 OSTRACE3("SYNC %d lock=%d\n", pFile->h, pFile->locktype);
735 if( flags & SQLITE_SYNC_FULL ){
736 sqlite3_fullsync_count++;
738 sqlite3_sync_count++;
740 if( FlushFileBuffers(pFile->h) ){
748 ** Determine the current size of a file in bytes
750 static int winFileSize(sqlite3_file *id, sqlite3_int64 *pSize){
751 winFile *pFile = (winFile*)id;
752 DWORD upperBits, lowerBits;
753 SimulateIOError(return SQLITE_IOERR_FSTAT);
754 lowerBits = GetFileSize(pFile->h, &upperBits);
755 *pSize = (((sqlite3_int64)upperBits)<<32) + lowerBits;
760 ** LOCKFILE_FAIL_IMMEDIATELY is undefined on some Windows systems.
762 #ifndef LOCKFILE_FAIL_IMMEDIATELY
763 # define LOCKFILE_FAIL_IMMEDIATELY 1
767 ** Acquire a reader lock.
768 ** Different API routines are called depending on whether or not this
769 ** is Win95 or WinNT.
771 static int getReadLock(winFile *pFile){
775 ovlp.Offset = SHARED_FIRST;
778 res = LockFileEx(pFile->h, LOCKFILE_FAIL_IMMEDIATELY,
779 0, SHARED_SIZE, 0, &ovlp);
782 sqlite3_randomness(sizeof(lk), &lk);
783 pFile->sharedLockByte = (lk & 0x7fffffff)%(SHARED_SIZE - 1);
784 res = LockFile(pFile->h, SHARED_FIRST+pFile->sharedLockByte, 0, 1, 0);
792 static int unlockReadLock(winFile *pFile){
795 res = UnlockFile(pFile->h, SHARED_FIRST, 0, SHARED_SIZE, 0);
797 res = UnlockFile(pFile->h, SHARED_FIRST + pFile->sharedLockByte, 0, 1, 0);
803 ** Lock the file with the lock specified by parameter locktype - one
809 ** (4) EXCLUSIVE_LOCK
811 ** Sometimes when requesting one lock state, additional lock states
812 ** are inserted in between. The locking might fail on one of the later
813 ** transitions leaving the lock state different from what it started but
814 ** still short of its goal. The following chart shows the allowed
815 ** transitions and the inserted intermediate states:
817 ** UNLOCKED -> SHARED
818 ** SHARED -> RESERVED
819 ** SHARED -> (PENDING) -> EXCLUSIVE
820 ** RESERVED -> (PENDING) -> EXCLUSIVE
821 ** PENDING -> EXCLUSIVE
823 ** This routine will only increase a lock. The winUnlock() routine
824 ** erases all locks at once and returns us immediately to locking level 0.
825 ** It is not possible to lower the locking level one step at a time. You
826 ** must go straight to locking level 0.
828 static int winLock(sqlite3_file *id, int locktype){
829 int rc = SQLITE_OK; /* Return code from subroutines */
830 int res = 1; /* Result of a windows lock call */
831 int newLocktype; /* Set pFile->locktype to this value before exiting */
832 int gotPendingLock = 0;/* True if we acquired a PENDING lock this time */
833 winFile *pFile = (winFile*)id;
836 OSTRACE5("LOCK %d %d was %d(%d)\n",
837 pFile->h, locktype, pFile->locktype, pFile->sharedLockByte);
839 /* If there is already a lock of this type or more restrictive on the
840 ** OsFile, do nothing. Don't use the end_lock: exit path, as
841 ** sqlite3OsEnterMutex() hasn't been called yet.
843 if( pFile->locktype>=locktype ){
847 /* Make sure the locking sequence is correct
849 assert( pFile->locktype!=NO_LOCK || locktype==SHARED_LOCK );
850 assert( locktype!=PENDING_LOCK );
851 assert( locktype!=RESERVED_LOCK || pFile->locktype==SHARED_LOCK );
853 /* Lock the PENDING_LOCK byte if we need to acquire a PENDING lock or
854 ** a SHARED lock. If we are acquiring a SHARED lock, the acquisition of
855 ** the PENDING_LOCK byte is temporary.
857 newLocktype = pFile->locktype;
858 if( pFile->locktype==NO_LOCK
859 || (locktype==EXCLUSIVE_LOCK && pFile->locktype==RESERVED_LOCK)
862 while( cnt-->0 && (res = LockFile(pFile->h, PENDING_BYTE, 0, 1, 0))==0 ){
863 /* Try 3 times to get the pending lock. The pending lock might be
864 ** held by another reader process who will release it momentarily.
866 OSTRACE2("could not get a PENDING lock. cnt=%d\n", cnt);
869 gotPendingLock = res;
872 /* Acquire a shared lock
874 if( locktype==SHARED_LOCK && res ){
875 assert( pFile->locktype==NO_LOCK );
876 res = getReadLock(pFile);
878 newLocktype = SHARED_LOCK;
882 /* Acquire a RESERVED lock
884 if( locktype==RESERVED_LOCK && res ){
885 assert( pFile->locktype==SHARED_LOCK );
886 res = LockFile(pFile->h, RESERVED_BYTE, 0, 1, 0);
888 newLocktype = RESERVED_LOCK;
892 /* Acquire a PENDING lock
894 if( locktype==EXCLUSIVE_LOCK && res ){
895 newLocktype = PENDING_LOCK;
899 /* Acquire an EXCLUSIVE lock
901 if( locktype==EXCLUSIVE_LOCK && res ){
902 assert( pFile->locktype>=SHARED_LOCK );
903 res = unlockReadLock(pFile);
904 OSTRACE2("unreadlock = %d\n", res);
905 res = LockFile(pFile->h, SHARED_FIRST, 0, SHARED_SIZE, 0);
907 newLocktype = EXCLUSIVE_LOCK;
909 OSTRACE2("error-code = %d\n", GetLastError());
914 /* If we are holding a PENDING lock that ought to be released, then
917 if( gotPendingLock && locktype==SHARED_LOCK ){
918 UnlockFile(pFile->h, PENDING_BYTE, 0, 1, 0);
921 /* Update the state of the lock has held in the file descriptor then
922 ** return the appropriate result code.
927 OSTRACE4("LOCK FAILED %d trying for %d but got %d\n", pFile->h,
928 locktype, newLocktype);
931 pFile->locktype = newLocktype;
936 ** This routine checks if there is a RESERVED lock held on the specified
937 ** file by this or any other process. If such a lock is held, return
938 ** non-zero, otherwise zero.
940 static int winCheckReservedLock(sqlite3_file *id, int *pResOut){
942 winFile *pFile = (winFile*)id;
944 if( pFile->locktype>=RESERVED_LOCK ){
946 OSTRACE3("TEST WR-LOCK %d %d (local)\n", pFile->h, rc);
948 rc = LockFile(pFile->h, RESERVED_BYTE, 0, 1, 0);
950 UnlockFile(pFile->h, RESERVED_BYTE, 0, 1, 0);
953 OSTRACE3("TEST WR-LOCK %d %d (remote)\n", pFile->h, rc);
960 ** Lower the locking level on file descriptor id to locktype. locktype
961 ** must be either NO_LOCK or SHARED_LOCK.
963 ** If the locking level of the file descriptor is already at or below
964 ** the requested locking level, this routine is a no-op.
966 ** It is not possible for this routine to fail if the second argument
967 ** is NO_LOCK. If the second argument is SHARED_LOCK then this routine
968 ** might return SQLITE_IOERR;
970 static int winUnlock(sqlite3_file *id, int locktype){
972 winFile *pFile = (winFile*)id;
975 assert( locktype<=SHARED_LOCK );
976 OSTRACE5("UNLOCK %d to %d was %d(%d)\n", pFile->h, locktype,
977 pFile->locktype, pFile->sharedLockByte);
978 type = pFile->locktype;
979 if( type>=EXCLUSIVE_LOCK ){
980 UnlockFile(pFile->h, SHARED_FIRST, 0, SHARED_SIZE, 0);
981 if( locktype==SHARED_LOCK && !getReadLock(pFile) ){
982 /* This should never happen. We should always be able to
983 ** reacquire the read lock */
984 rc = SQLITE_IOERR_UNLOCK;
987 if( type>=RESERVED_LOCK ){
988 UnlockFile(pFile->h, RESERVED_BYTE, 0, 1, 0);
990 if( locktype==NO_LOCK && type>=SHARED_LOCK ){
991 unlockReadLock(pFile);
993 if( type>=PENDING_LOCK ){
994 UnlockFile(pFile->h, PENDING_BYTE, 0, 1, 0);
996 pFile->locktype = locktype;
1001 ** Control and query of the open file handle.
1003 static int winFileControl(sqlite3_file *id, int op, void *pArg){
1005 case SQLITE_FCNTL_LOCKSTATE: {
1006 *(int*)pArg = ((winFile*)id)->locktype;
1010 return SQLITE_ERROR;
1014 ** Return the sector size in bytes of the underlying block device for
1015 ** the specified file. This is almost always 512 bytes, but may be
1016 ** larger for some devices.
1018 ** SQLite code assumes this function cannot fail. It also assumes that
1019 ** if two files are created in the same file-system directory (i.e.
1020 ** a database and its journal file) that the sector size will be the
1023 static int winSectorSize(sqlite3_file *id){
1024 return SQLITE_DEFAULT_SECTOR_SIZE;
1028 ** Return a vector of device characteristics.
1030 static int winDeviceCharacteristics(sqlite3_file *id){
1035 ** This vector defines all the methods that can operate on an
1036 ** sqlite3_file for win32.
1038 static const sqlite3_io_methods winIoMethod = {
1048 winCheckReservedLock,
1051 winDeviceCharacteristics
1054 /***************************************************************************
1055 ** Here ends the I/O methods that form the sqlite3_io_methods object.
1057 ** The next block of code implements the VFS methods.
1058 ****************************************************************************/
1061 ** Convert a UTF-8 filename into whatever form the underlying
1062 ** operating system wants filenames in. Space to hold the result
1063 ** is obtained from malloc and must be freed by the calling
1066 static void *convertUtf8Filename(const char *zFilename){
1067 void *zConverted = 0;
1069 zConverted = utf8ToUnicode(zFilename);
1071 zConverted = utf8ToMbcs(zFilename);
1073 /* caller will handle out of memory */
1078 ** Create a temporary file name in zBuf. zBuf must be big enough to
1079 ** hold at pVfs->mxPathname characters.
1081 static int getTempname(int nBuf, char *zBuf){
1082 static char zChars[] =
1083 "abcdefghijklmnopqrstuvwxyz"
1084 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1087 char zTempPath[MAX_PATH+1];
1088 if( sqlite3_temp_directory ){
1089 sqlite3_snprintf(MAX_PATH-30, zTempPath, "%s", sqlite3_temp_directory);
1092 WCHAR zWidePath[MAX_PATH];
1093 GetTempPathW(MAX_PATH-30, zWidePath);
1094 zMulti = unicodeToUtf8(zWidePath);
1096 sqlite3_snprintf(MAX_PATH-30, zTempPath, "%s", zMulti);
1099 return SQLITE_NOMEM;
1103 char zMbcsPath[MAX_PATH];
1104 GetTempPathA(MAX_PATH-30, zMbcsPath);
1105 zUtf8 = mbcsToUtf8(zMbcsPath);
1107 sqlite3_snprintf(MAX_PATH-30, zTempPath, "%s", zUtf8);
1110 return SQLITE_NOMEM;
1113 for(i=strlen(zTempPath); i>0 && zTempPath[i-1]=='\\'; i--){}
1115 sqlite3_snprintf(nBuf-30, zBuf,
1116 "%s\\"SQLITE_TEMP_FILE_PREFIX, zTempPath);
1118 sqlite3_randomness(20, &zBuf[j]);
1119 for(i=0; i<20; i++, j++){
1120 zBuf[j] = (char)zChars[ ((unsigned char)zBuf[j])%(sizeof(zChars)-1) ];
1123 OSTRACE2("TEMP FILENAME: %s\n", zBuf);
1128 ** The return value of getLastErrorMsg
1129 ** is zero if the error message fits in the buffer, or non-zero
1130 ** otherwise (if the message was truncated).
1132 static int getLastErrorMsg(int nBuf, char *zBuf){
1133 DWORD error = GetLastError();
1136 sqlite3_snprintf(nBuf, zBuf, "OsError 0x%x (%u)", error, error);
1138 /* FormatMessage returns 0 on failure. Otherwise it
1139 ** returns the number of TCHARs written to the output
1140 ** buffer, excluding the terminating null char.
1142 if (!FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM,
1150 sqlite3_snprintf(nBuf, zBuf, "OsError 0x%x (%u)", error, error);
1162 sqlite3_vfs *pVfs, /* Not used */
1163 const char *zName, /* Name of the file (UTF-8) */
1164 sqlite3_file *id, /* Write the SQLite file handle here */
1165 int flags, /* Open mode flags */
1166 int *pOutFlags /* Status return flags */
1169 DWORD dwDesiredAccess;
1171 DWORD dwCreationDisposition;
1172 DWORD dwFlagsAndAttributes = 0;
1174 winFile *pFile = (winFile*)id;
1175 void *zConverted; /* Filename in OS encoding */
1176 const char *zUtf8Name = zName; /* Filename in UTF-8 encoding */
1177 char zTmpname[MAX_PATH+1]; /* Buffer used to create temp filename */
1179 /* If the second argument to this function is NULL, generate a
1180 ** temporary file name to use
1183 int rc = getTempname(MAX_PATH+1, zTmpname);
1184 if( rc!=SQLITE_OK ){
1187 zUtf8Name = zTmpname;
1190 /* Convert the filename to the system encoding. */
1191 zConverted = convertUtf8Filename(zUtf8Name);
1192 if( zConverted==0 ){
1193 return SQLITE_NOMEM;
1196 if( flags & SQLITE_OPEN_READWRITE ){
1197 dwDesiredAccess = GENERIC_READ | GENERIC_WRITE;
1199 dwDesiredAccess = GENERIC_READ;
1201 if( flags & SQLITE_OPEN_CREATE ){
1202 dwCreationDisposition = OPEN_ALWAYS;
1204 dwCreationDisposition = OPEN_EXISTING;
1206 if( flags & SQLITE_OPEN_MAIN_DB ){
1207 dwShareMode = FILE_SHARE_READ | FILE_SHARE_WRITE;
1211 if( flags & SQLITE_OPEN_DELETEONCLOSE ){
1213 dwFlagsAndAttributes = FILE_ATTRIBUTE_HIDDEN;
1215 dwFlagsAndAttributes = FILE_ATTRIBUTE_TEMPORARY
1216 | FILE_ATTRIBUTE_HIDDEN
1217 | FILE_FLAG_DELETE_ON_CLOSE;
1221 dwFlagsAndAttributes = FILE_ATTRIBUTE_NORMAL;
1224 /* Reports from the internet are that performance is always
1225 ** better if FILE_FLAG_RANDOM_ACCESS is used. Ticket #2699. */
1226 dwFlagsAndAttributes |= FILE_FLAG_RANDOM_ACCESS;
1228 h = CreateFileW((WCHAR*)zConverted,
1232 dwCreationDisposition,
1233 dwFlagsAndAttributes,
1237 h = CreateFileA((char*)zConverted,
1241 dwCreationDisposition,
1242 dwFlagsAndAttributes,
1246 if( h==INVALID_HANDLE_VALUE ){
1248 if( flags & SQLITE_OPEN_READWRITE ){
1249 return winOpen(0, zName, id,
1250 ((flags|SQLITE_OPEN_READONLY)&~SQLITE_OPEN_READWRITE), pOutFlags);
1252 return SQLITE_CANTOPEN;
1256 if( flags & SQLITE_OPEN_READWRITE ){
1257 *pOutFlags = SQLITE_OPEN_READWRITE;
1259 *pOutFlags = SQLITE_OPEN_READONLY;
1262 memset(pFile, 0, sizeof(*pFile));
1263 pFile->pMethod = &winIoMethod;
1266 if( (flags & (SQLITE_OPEN_READWRITE|SQLITE_OPEN_MAIN_DB)) ==
1267 (SQLITE_OPEN_READWRITE|SQLITE_OPEN_MAIN_DB)
1268 && !winceCreateLock(zName, pFile)
1272 return SQLITE_CANTOPEN;
1275 pFile->zDeleteOnClose = zConverted;
1286 ** Delete the named file.
1288 ** Note that windows does not allow a file to be deleted if some other
1289 ** process has it open. Sometimes a virus scanner or indexing program
1290 ** will open a journal file shortly after it is created in order to do
1291 ** whatever it does. While this other process is holding the
1292 ** file open, we will be unable to delete it. To work around this
1293 ** problem, we delay 100 milliseconds and try to delete again. Up
1294 ** to MX_DELETION_ATTEMPTs deletion attempts are run before giving
1295 ** up and returning an error.
1297 #define MX_DELETION_ATTEMPTS 5
1298 static int winDelete(
1299 sqlite3_vfs *pVfs, /* Not used on win32 */
1300 const char *zFilename, /* Name of file to delete */
1301 int syncDir /* Not used on win32 */
1306 void *zConverted = convertUtf8Filename(zFilename);
1307 if( zConverted==0 ){
1308 return SQLITE_NOMEM;
1310 SimulateIOError(return SQLITE_IOERR_DELETE);
1313 DeleteFileW(zConverted);
1314 }while( ( ((rc = GetFileAttributesW(zConverted)) != INVALID_FILE_ATTRIBUTES)
1315 || ((error = GetLastError()) == ERROR_ACCESS_DENIED))
1316 && (cnt++ < MX_DELETION_ATTEMPTS)
1317 && (Sleep(100), 1) );
1320 DeleteFileA(zConverted);
1321 }while( ( ((rc = GetFileAttributesA(zConverted)) != INVALID_FILE_ATTRIBUTES)
1322 || ((error = GetLastError()) == ERROR_ACCESS_DENIED))
1323 && (cnt++ < MX_DELETION_ATTEMPTS)
1324 && (Sleep(100), 1) );
1327 OSTRACE2("DELETE \"%s\"\n", zFilename);
1328 return ( (rc==INVALID_FILE_ATTRIBUTES)
1329 && (error == ERROR_FILE_NOT_FOUND)) ? SQLITE_OK : SQLITE_IOERR_DELETE;
1333 ** Check the existance and status of a file.
1335 static int winAccess(
1336 sqlite3_vfs *pVfs, /* Not used on win32 */
1337 const char *zFilename, /* Name of file to check */
1338 int flags, /* Type of test to make on this file */
1339 int *pResOut /* OUT: Result */
1343 void *zConverted = convertUtf8Filename(zFilename);
1344 if( zConverted==0 ){
1345 return SQLITE_NOMEM;
1348 attr = GetFileAttributesW((WCHAR*)zConverted);
1350 attr = GetFileAttributesA((char*)zConverted);
1354 case SQLITE_ACCESS_READ:
1355 case SQLITE_ACCESS_EXISTS:
1356 rc = attr!=INVALID_FILE_ATTRIBUTES;
1358 case SQLITE_ACCESS_READWRITE:
1359 rc = (attr & FILE_ATTRIBUTE_READONLY)==0;
1362 assert(!"Invalid flags argument");
1370 ** Turn a relative pathname into a full pathname. Write the full
1371 ** pathname into zOut[]. zOut[] will be at least pVfs->mxPathname
1374 static int winFullPathname(
1375 sqlite3_vfs *pVfs, /* Pointer to vfs object */
1376 const char *zRelative, /* Possibly relative input path */
1377 int nFull, /* Size of output buffer in bytes */
1378 char *zFull /* Output buffer */
1381 #if defined(__CYGWIN__)
1382 cygwin_conv_to_full_win32_path(zRelative, zFull);
1387 /* WinCE has no concept of a relative pathname, or so I am told. */
1388 sqlite3_snprintf(pVfs->mxPathname, zFull, "%s", zRelative);
1392 #if !SQLITE_OS_WINCE && !defined(__CYGWIN__)
1396 zConverted = convertUtf8Filename(zRelative);
1399 nByte = GetFullPathNameW((WCHAR*)zConverted, 0, 0, 0) + 3;
1400 zTemp = malloc( nByte*sizeof(zTemp[0]) );
1403 return SQLITE_NOMEM;
1405 GetFullPathNameW((WCHAR*)zConverted, nByte, zTemp, 0);
1407 zOut = unicodeToUtf8(zTemp);
1411 nByte = GetFullPathNameA((char*)zConverted, 0, 0, 0) + 3;
1412 zTemp = malloc( nByte*sizeof(zTemp[0]) );
1415 return SQLITE_NOMEM;
1417 GetFullPathNameA((char*)zConverted, nByte, zTemp, 0);
1419 zOut = mbcsToUtf8(zTemp);
1423 sqlite3_snprintf(pVfs->mxPathname, zFull, "%s", zOut);
1427 return SQLITE_NOMEM;
1432 #ifndef SQLITE_OMIT_LOAD_EXTENSION
1434 ** Interfaces for opening a shared library, finding entry points
1435 ** within the shared library, and closing the shared library.
1438 ** Interfaces for opening a shared library, finding entry points
1439 ** within the shared library, and closing the shared library.
1441 static void *winDlOpen(sqlite3_vfs *pVfs, const char *zFilename){
1443 void *zConverted = convertUtf8Filename(zFilename);
1444 if( zConverted==0 ){
1448 h = LoadLibraryW((WCHAR*)zConverted);
1450 h = LoadLibraryA((char*)zConverted);
1455 static void winDlError(sqlite3_vfs *pVfs, int nBuf, char *zBufOut){
1456 getLastErrorMsg(nBuf, zBufOut);
1458 void *winDlSym(sqlite3_vfs *pVfs, void *pHandle, const char *zSymbol){
1460 /* The GetProcAddressA() routine is only available on wince. */
1461 return GetProcAddressA((HANDLE)pHandle, zSymbol);
1463 /* All other windows platforms expect GetProcAddress() to take
1464 ** an Ansi string regardless of the _UNICODE setting */
1465 return GetProcAddress((HANDLE)pHandle, zSymbol);
1468 void winDlClose(sqlite3_vfs *pVfs, void *pHandle){
1469 FreeLibrary((HANDLE)pHandle);
1471 #else /* if SQLITE_OMIT_LOAD_EXTENSION is defined: */
1473 #define winDlError 0
1475 #define winDlClose 0
1480 ** Write up to nBuf bytes of randomness into zBuf.
1482 static int winRandomness(sqlite3_vfs *pVfs, int nBuf, char *zBuf){
1484 if( sizeof(SYSTEMTIME)<=nBuf-n ){
1487 memcpy(&zBuf[n], &x, sizeof(x));
1490 if( sizeof(DWORD)<=nBuf-n ){
1491 DWORD pid = GetCurrentProcessId();
1492 memcpy(&zBuf[n], &pid, sizeof(pid));
1495 if( sizeof(DWORD)<=nBuf-n ){
1496 DWORD cnt = GetTickCount();
1497 memcpy(&zBuf[n], &cnt, sizeof(cnt));
1500 if( sizeof(LARGE_INTEGER)<=nBuf-n ){
1502 QueryPerformanceCounter(&i);
1503 memcpy(&zBuf[n], &i, sizeof(i));
1511 ** Sleep for a little while. Return the amount of time slept.
1513 static int winSleep(sqlite3_vfs *pVfs, int microsec){
1514 Sleep((microsec+999)/1000);
1515 return ((microsec+999)/1000)*1000;
1519 ** The following variable, if set to a non-zero value, becomes the result
1520 ** returned from sqlite3OsCurrentTime(). This is used for testing.
1523 int sqlite3_current_time = 0;
1527 ** Find the current time (in Universal Coordinated Time). Write the
1528 ** current time and date as a Julian Day number into *prNow and
1529 ** return 0. Return 1 if the time and date cannot be found.
1531 int winCurrentTime(sqlite3_vfs *pVfs, double *prNow){
1533 /* FILETIME structure is a 64-bit value representing the number of
1534 100-nanosecond intervals since January 1, 1601 (= JD 2305813.5).
1539 GetSystemTime(&time);
1540 /* if SystemTimeToFileTime() fails, it returns zero. */
1541 if (!SystemTimeToFileTime(&time,&ft)){
1545 GetSystemTimeAsFileTime( &ft );
1547 now = ((double)ft.dwHighDateTime) * 4294967296.0;
1548 *prNow = (now + ft.dwLowDateTime)/864000000000.0 + 2305813.5;
1550 if( sqlite3_current_time ){
1551 *prNow = sqlite3_current_time/86400.0 + 2440587.5;
1558 ** The idea is that this function works like a combination of
1559 ** GetLastError() and FormatMessage() on windows (or errno and
1560 ** strerror_r() on unix). After an error is returned by an OS
1561 ** function, SQLite calls this function with zBuf pointing to
1562 ** a buffer of nBuf bytes. The OS layer should populate the
1563 ** buffer with a nul-terminated UTF-8 encoded error message
1564 ** describing the last IO error to have occured within the calling
1567 ** If the error message is too large for the supplied buffer,
1568 ** it should be truncated. The return value of xGetLastError
1569 ** is zero if the error message fits in the buffer, or non-zero
1570 ** otherwise (if the message was truncated). If non-zero is returned,
1571 ** then it is not necessary to include the nul-terminator character
1572 ** in the output buffer.
1574 ** Not supplying an error message will have no adverse effect
1575 ** on SQLite. It is fine to have an implementation that never
1576 ** returns an error message:
1578 ** int xGetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf){
1579 ** assert(zBuf[0]=='\0');
1583 ** However if an error message is supplied, it will be incorporated
1584 ** by sqlite into the error message available to the user using
1585 ** sqlite3_errmsg(), possibly making IO errors easier to debug.
1587 static int winGetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf){
1588 return getLastErrorMsg(nBuf, zBuf);
1592 ** Initialize and deinitialize the operating system interface.
1594 int sqlite3_os_init(void){
1595 static sqlite3_vfs winVfs = {
1597 sizeof(winFile), /* szOsFile */
1598 MAX_PATH, /* mxPathname */
1600 "win32", /* zName */
1603 winOpen, /* xOpen */
1604 winDelete, /* xDelete */
1605 winAccess, /* xAccess */
1606 winFullPathname, /* xFullPathname */
1607 winDlOpen, /* xDlOpen */
1608 winDlError, /* xDlError */
1609 winDlSym, /* xDlSym */
1610 winDlClose, /* xDlClose */
1611 winRandomness, /* xRandomness */
1612 winSleep, /* xSleep */
1613 winCurrentTime, /* xCurrentTime */
1614 winGetLastError /* xGetLastError */
1616 sqlite3_vfs_register(&winVfs, 1);
1619 int sqlite3_os_end(void){
1623 #endif /* SQLITE_OS_WIN */