2001-05-23 15:26:42 +02:00
|
|
|
/*
|
|
|
|
* PROGRAM: JRD Access Method
|
2003-10-29 11:53:47 +01:00
|
|
|
* MODULE: winnt.cpp
|
2001-05-23 15:26:42 +02:00
|
|
|
* DESCRIPTION: Windows NT specific physical IO
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Interbase Public
|
|
|
|
* License Version 1.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy
|
|
|
|
* of the License at http://www.Inprise.com/IPL.html
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an
|
|
|
|
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
|
|
|
|
* or implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
|
|
|
*
|
|
|
|
* The Original Code was created by Inprise Corporation
|
|
|
|
* and its predecessors. Portions created by Inprise Corporation are
|
|
|
|
* Copyright (C) Inprise Corporation.
|
|
|
|
*
|
|
|
|
* All Rights Reserved.
|
|
|
|
* Contributor(s): ______________________________________.
|
2001-07-10 19:35:13 +02:00
|
|
|
* 2001.07.06 Sean Leyne - Code Cleanup, removed "#ifdef READONLY_DATABASE"
|
|
|
|
* conditionals, as the engine now fully supports
|
|
|
|
* readonly databases.
|
2001-12-24 03:51:06 +01:00
|
|
|
*
|
2002-07-01 17:07:18 +02:00
|
|
|
*
|
|
|
|
* 17-Oct-2001 Mike Nordell: Non-shared file access
|
|
|
|
*
|
2001-12-24 03:51:06 +01:00
|
|
|
* 02-Nov-2001 Mike Nordell: Synch with FB1 changes.
|
|
|
|
*
|
|
|
|
* 20-Nov-2001 Ann Harrison: Make page count work on db with forced write
|
2008-12-05 02:20:14 +01:00
|
|
|
*
|
|
|
|
* 21-Nov-2001 Ann Harrison: Allow read sharing so gstat works
|
2001-05-23 15:26:42 +02:00
|
|
|
*/
|
|
|
|
|
2001-07-29 19:42:23 +02:00
|
|
|
#include "firebird.h"
|
2001-05-23 15:26:42 +02:00
|
|
|
#include <string.h>
|
2004-03-22 12:38:23 +01:00
|
|
|
#include "../jrd/common.h"
|
2001-05-23 15:26:42 +02:00
|
|
|
#include "../jrd/jrd.h"
|
2003-07-14 12:35:49 +02:00
|
|
|
#include "../jrd/os/pio.h"
|
2001-05-23 15:26:42 +02:00
|
|
|
#include "../jrd/ods.h"
|
|
|
|
#include "../jrd/lck.h"
|
|
|
|
#include "../jrd/cch.h"
|
2003-11-11 13:19:20 +01:00
|
|
|
#include "gen/iberror.h"
|
2001-05-23 15:26:42 +02:00
|
|
|
#include "../jrd/cch_proto.h"
|
|
|
|
#include "../jrd/err_proto.h"
|
|
|
|
#include "../jrd/isc_proto.h"
|
|
|
|
#include "../jrd/isc_f_proto.h"
|
|
|
|
|
|
|
|
#include "../jrd/lck_proto.h"
|
|
|
|
#include "../jrd/mov_proto.h"
|
2003-07-14 12:35:49 +02:00
|
|
|
#include "../jrd/os/pio_proto.h"
|
2007-09-25 22:15:53 +02:00
|
|
|
#include "../common/classes/init.h"
|
2001-05-23 15:26:42 +02:00
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
2007-09-18 16:50:51 +02:00
|
|
|
namespace Jrd {
|
|
|
|
|
|
|
|
class FileExtendLockGuard
|
|
|
|
{
|
|
|
|
public:
|
2007-09-25 22:15:53 +02:00
|
|
|
FileExtendLockGuard(Firebird::RWLock* lock, bool exclusive) :
|
2008-12-05 02:20:14 +01:00
|
|
|
m_lock(lock), m_exclusive(exclusive)
|
2007-09-18 16:50:51 +02:00
|
|
|
{
|
2007-09-25 22:15:53 +02:00
|
|
|
if (m_exclusive) {
|
2007-09-18 16:50:51 +02:00
|
|
|
fb_assert(m_lock);
|
|
|
|
}
|
|
|
|
if (m_lock) {
|
2007-09-25 22:15:53 +02:00
|
|
|
if (m_exclusive)
|
|
|
|
m_lock->beginWrite();
|
|
|
|
else
|
|
|
|
m_lock->beginRead();
|
2007-09-18 16:50:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
~FileExtendLockGuard()
|
|
|
|
{
|
|
|
|
if (m_lock) {
|
2007-09-25 22:15:53 +02:00
|
|
|
if (m_exclusive)
|
|
|
|
m_lock->endWrite();
|
|
|
|
else
|
|
|
|
m_lock->endRead();
|
2007-09-18 16:50:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2008-02-27 06:56:47 +01:00
|
|
|
// copying is prohibited
|
|
|
|
FileExtendLockGuard(const FileExtendLockGuard&);
|
|
|
|
FileExtendLockGuard& operator=(const FileExtendLockGuard&);
|
|
|
|
|
|
|
|
Firebird::RWLock* m_lock;
|
2008-02-28 10:29:50 +01:00
|
|
|
const bool m_exclusive;
|
2007-09-18 16:50:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace Jrd
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2004-03-20 15:57:40 +01:00
|
|
|
using namespace Jrd;
|
2008-08-27 14:20:47 +02:00
|
|
|
using namespace Firebird;
|
2004-03-20 15:57:40 +01:00
|
|
|
|
2001-05-23 15:26:42 +02:00
|
|
|
#ifdef TEXT
|
|
|
|
#undef TEXT
|
|
|
|
#endif
|
|
|
|
#define TEXT SCHAR
|
|
|
|
|
|
|
|
#ifdef SUPERSERVER_V2
|
2004-02-20 07:43:27 +01:00
|
|
|
static void release_io_event(jrd_file*, OVERLAPPED*);
|
2001-05-23 15:26:42 +02:00
|
|
|
#endif
|
2007-07-25 20:44:54 +02:00
|
|
|
static bool maybe_close_file(HANDLE&);
|
2004-03-18 06:56:06 +01:00
|
|
|
static jrd_file* seek_file(jrd_file*, BufferDesc*, ISC_STATUS*, OVERLAPPED*, OVERLAPPED**);
|
2008-07-09 10:40:31 +02:00
|
|
|
static jrd_file* setup_file(Database*, const Firebird::PathName&, HANDLE, bool);
|
2004-02-20 07:43:27 +01:00
|
|
|
static bool nt_error(TEXT*, const jrd_file*, ISC_STATUS, ISC_STATUS*);
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2001-11-02 21:59:38 +01:00
|
|
|
#ifdef SUPERSERVER_V2
|
2001-12-24 03:51:06 +01:00
|
|
|
static const DWORD g_dwShareFlags = FILE_SHARE_READ; // no write sharing
|
2001-11-02 21:59:38 +01:00
|
|
|
static const DWORD g_dwExtraFlags = FILE_FLAG_OVERLAPPED |
|
|
|
|
FILE_FLAG_NO_BUFFERING |
|
|
|
|
FILE_FLAG_RANDOM_ACCESS;
|
2002-04-03 10:41:23 +02:00
|
|
|
#else
|
|
|
|
#ifdef SUPERSERVER
|
2001-12-24 03:51:06 +01:00
|
|
|
static const DWORD g_dwShareFlags = FILE_SHARE_READ; // no write sharing
|
2001-11-02 21:59:38 +01:00
|
|
|
static const DWORD g_dwExtraFlags = FILE_FLAG_RANDOM_ACCESS;
|
|
|
|
#else
|
|
|
|
static const DWORD g_dwShareFlags = FILE_SHARE_READ | FILE_SHARE_WRITE;
|
|
|
|
static const DWORD g_dwExtraFlags = FILE_FLAG_RANDOM_ACCESS;
|
|
|
|
#endif
|
2002-04-03 10:41:23 +02:00
|
|
|
#endif
|
2001-11-02 21:59:38 +01:00
|
|
|
|
2006-05-22 00:07:35 +02:00
|
|
|
static const DWORD g_dwShareTempFlags = FILE_SHARE_READ;
|
|
|
|
static const DWORD g_dwExtraTempFlags = FILE_ATTRIBUTE_TEMPORARY |
|
|
|
|
FILE_FLAG_DELETE_ON_CLOSE;
|
2001-11-02 21:59:38 +01:00
|
|
|
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2005-09-08 18:41:56 +02:00
|
|
|
int PIO_add_file(Database* dbb, jrd_file* main_file, const Firebird::PathName& file_name, SLONG start)
|
2002-11-10 16:38:38 +01:00
|
|
|
{
|
2001-05-23 15:26:42 +02:00
|
|
|
/**************************************
|
|
|
|
*
|
2002-11-10 16:38:38 +01:00
|
|
|
* P I O _ a d d _ f i l e
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
2001-05-23 15:26:42 +02:00
|
|
|
* Add a file to an existing database. Return the sequence
|
|
|
|
* number of the new file. If anything goes wrong, return a
|
|
|
|
* sequence of 0.
|
|
|
|
*
|
|
|
|
**************************************/
|
2007-03-09 08:59:05 +01:00
|
|
|
jrd_file* new_file = PIO_create(dbb, file_name, false, false, false);
|
2001-05-23 15:26:42 +02:00
|
|
|
if (!new_file) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
new_file->fil_min_page = start;
|
2003-10-29 11:53:47 +01:00
|
|
|
USHORT sequence = 1;
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2004-02-20 07:43:27 +01:00
|
|
|
jrd_file* file;
|
2001-05-23 15:26:42 +02:00
|
|
|
for (file = main_file; file->fil_next; file = file->fil_next) {
|
|
|
|
++sequence;
|
|
|
|
}
|
|
|
|
|
|
|
|
file->fil_max_page = start - 1;
|
|
|
|
file->fil_next = new_file;
|
|
|
|
|
|
|
|
return sequence;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-05-21 09:42:53 +02:00
|
|
|
void PIO_close(jrd_file* main_file)
|
2001-05-23 15:26:42 +02:00
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* P I O _ c l o s e
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
|
|
|
*
|
|
|
|
**************************************/
|
2007-05-21 09:42:53 +02:00
|
|
|
for (jrd_file* file = main_file; file; file = file->fil_next)
|
2001-05-23 15:26:42 +02:00
|
|
|
{
|
2007-07-25 20:44:54 +02:00
|
|
|
if (maybe_close_file(file->fil_desc))
|
2001-05-23 15:26:42 +02:00
|
|
|
{
|
|
|
|
#ifdef SUPERSERVER_V2
|
2002-04-29 17:05:11 +02:00
|
|
|
for (int i = 0; i < MAX_FILE_IO; i++)
|
2001-05-23 15:26:42 +02:00
|
|
|
{
|
|
|
|
if (file->fil_io_events[i])
|
|
|
|
{
|
|
|
|
CloseHandle((HANDLE) file->fil_io_events[i]);
|
2001-11-02 21:59:38 +01:00
|
|
|
file->fil_io_events[i] = 0;
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-09 08:59:05 +01:00
|
|
|
jrd_file* PIO_create(Database* dbb, const Firebird::PathName& string,
|
2008-02-28 10:29:50 +01:00
|
|
|
const bool overwrite, const bool temporary, const bool share_delete)
|
2002-11-10 16:38:38 +01:00
|
|
|
{
|
2001-05-23 15:26:42 +02:00
|
|
|
/**************************************
|
|
|
|
*
|
2002-11-10 16:38:38 +01:00
|
|
|
* P I O _ c r e a t e
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
2001-05-23 15:26:42 +02:00
|
|
|
* Create a new database file.
|
|
|
|
*
|
|
|
|
**************************************/
|
2005-09-08 18:41:56 +02:00
|
|
|
const TEXT* file_name = string.c_str();
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2007-03-09 08:59:05 +01:00
|
|
|
DWORD dwShareMode = (temporary ? g_dwShareTempFlags : g_dwShareFlags);
|
|
|
|
if (share_delete)
|
|
|
|
dwShareMode |= FILE_SHARE_DELETE;
|
|
|
|
|
|
|
|
DWORD dwFlagsAndAttributes = FILE_ATTRIBUTE_NORMAL | g_dwExtraFlags;
|
|
|
|
if (temporary)
|
|
|
|
dwFlagsAndAttributes |= g_dwExtraTempFlags;
|
|
|
|
|
2003-12-31 06:36:12 +01:00
|
|
|
const HANDLE desc = CreateFile(file_name,
|
2001-05-23 15:26:42 +02:00
|
|
|
GENERIC_READ | GENERIC_WRITE,
|
2007-03-09 08:59:05 +01:00
|
|
|
dwShareMode,
|
2001-05-23 15:26:42 +02:00
|
|
|
NULL,
|
|
|
|
(overwrite ? CREATE_ALWAYS : CREATE_NEW),
|
2007-03-09 08:59:05 +01:00
|
|
|
dwFlagsAndAttributes,
|
2001-11-02 21:59:38 +01:00
|
|
|
0);
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2001-11-02 21:59:38 +01:00
|
|
|
if (desc == INVALID_HANDLE_VALUE)
|
|
|
|
{
|
2008-12-05 02:20:14 +01:00
|
|
|
ERR_post(Arg::Gds(isc_io_error) << Arg::Str("CreateFile (create)") <<
|
2008-08-27 14:20:47 +02:00
|
|
|
Arg::Str(string) <<
|
|
|
|
Arg::Gds(isc_io_create_err) << Arg::Windows(GetLastError()));
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* File open succeeded. Now expand the file name. */
|
2006-05-30 15:34:23 +02:00
|
|
|
/* workspace is the expanded name here */
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2005-09-08 18:41:56 +02:00
|
|
|
Firebird::PathName workspace(string);
|
|
|
|
ISC_expand_filename(workspace, false);
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2008-07-09 10:40:31 +02:00
|
|
|
return setup_file(dbb, workspace, desc, false);
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-29 15:16:29 +01:00
|
|
|
bool PIO_expand(const TEXT* file_name, USHORT file_length, TEXT* expanded_name,
|
2004-11-08 07:16:19 +01:00
|
|
|
size_t len_expanded)
|
2001-05-23 15:26:42 +02:00
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* P I O _ e x p a n d
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
|
|
|
* Fully expand a file name. If the file doesn't exist, do something
|
|
|
|
* intelligent.
|
|
|
|
*
|
|
|
|
**************************************/
|
|
|
|
|
2008-12-05 02:20:14 +01:00
|
|
|
return ISC_expand_filename(file_name, file_length,
|
2004-11-07 15:43:29 +01:00
|
|
|
expanded_name, len_expanded, false);
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-26 13:52:51 +01:00
|
|
|
void PIO_extend(Database* dbb, jrd_file* main_file, const ULONG extPages, const USHORT pageSize)
|
2007-04-25 23:08:57 +02:00
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* P I O _ e x t e n d
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
2008-12-05 02:20:14 +01:00
|
|
|
* Extend file by extPages pages of pageSize size.
|
2007-04-25 23:08:57 +02:00
|
|
|
*
|
|
|
|
**************************************/
|
2008-12-05 02:20:14 +01:00
|
|
|
|
2007-09-25 22:15:53 +02:00
|
|
|
// hvlad: prevent other reading\writing threads from changing file pointer.
|
|
|
|
// As we open file without FILE_FLAG_OVERLAPPED, ReadFile\WriteFile calls
|
|
|
|
// will change file pointer we set here and file truncation instead of file
|
|
|
|
// extension will occurs.
|
2008-12-05 02:20:14 +01:00
|
|
|
// It solved issue CORE-1468 (database file corruption when file extension
|
2007-09-18 16:50:51 +02:00
|
|
|
// and read\write activity performed simultaneously)
|
2007-09-25 22:15:53 +02:00
|
|
|
|
|
|
|
// if file have no extend lock it is better to not extend file than corrupt it
|
2007-09-18 16:50:51 +02:00
|
|
|
if (!main_file->fil_ext_lock)
|
|
|
|
return;
|
|
|
|
|
2008-06-04 15:38:40 +02:00
|
|
|
Database::Checkout dcoHolder(dbb);
|
2007-09-25 22:15:53 +02:00
|
|
|
FileExtendLockGuard extLock(main_file->fil_ext_lock, true);
|
2007-09-18 16:50:51 +02:00
|
|
|
|
2007-04-25 23:08:57 +02:00
|
|
|
ULONG leftPages = extPages;
|
|
|
|
for (jrd_file* file = main_file; file && leftPages; file = file->fil_next)
|
|
|
|
{
|
2007-09-18 16:50:51 +02:00
|
|
|
const ULONG filePages = PIO_get_number_of_pages(file, pageSize);
|
2008-12-05 02:20:14 +01:00
|
|
|
const ULONG fileMaxPages = (file->fil_max_page == MAX_ULONG) ? MAX_ULONG :
|
2007-04-25 23:08:57 +02:00
|
|
|
file->fil_max_page - file->fil_min_page + 1;
|
|
|
|
if (filePages < fileMaxPages)
|
|
|
|
{
|
|
|
|
const ULONG extendBy = MIN(fileMaxPages - filePages + file->fil_fudge, leftPages);
|
|
|
|
|
2007-07-25 20:44:54 +02:00
|
|
|
HANDLE hFile = file->fil_desc;
|
2007-04-25 23:08:57 +02:00
|
|
|
|
2008-12-05 02:20:14 +01:00
|
|
|
LARGE_INTEGER newSize;
|
2007-04-25 23:08:57 +02:00
|
|
|
newSize.QuadPart = (ULONGLONG) (filePages + extendBy) * pageSize;
|
|
|
|
|
|
|
|
const DWORD ret = SetFilePointer(hFile, newSize.LowPart, &newSize.HighPart, FILE_BEGIN);
|
|
|
|
if (ret == INVALID_SET_FILE_POINTER && GetLastError() != NO_ERROR) {
|
|
|
|
nt_error("SetFilePointer", file, isc_io_write_err, 0);
|
|
|
|
}
|
|
|
|
if (!SetEndOfFile(hFile)) {
|
|
|
|
nt_error("SetEndOfFile", file, isc_io_write_err, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
leftPages -= extendBy;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-19 11:59:50 +01:00
|
|
|
void PIO_flush(Database* dbb, jrd_file* main_file)
|
2001-05-23 15:26:42 +02:00
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* P I O _ f l u s h
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
|
|
|
* Flush the operating system cache back to good, solid oxide.
|
|
|
|
*
|
|
|
|
**************************************/
|
2008-06-04 15:38:40 +02:00
|
|
|
Database::Checkout dcoHolder(dbb);
|
2004-02-20 07:43:27 +01:00
|
|
|
for (jrd_file* file = main_file; file; file = file->fil_next)
|
2001-11-02 21:59:38 +01:00
|
|
|
{
|
2007-07-25 20:44:54 +02:00
|
|
|
FlushFileBuffers(file->fil_desc);
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-28 10:29:50 +01:00
|
|
|
void PIO_force_write(jrd_file* file, const bool forceWrite, const bool notUseFSCache)
|
2001-05-23 15:26:42 +02:00
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* P I O _ f o r c e _ w r i t e
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
|
|
|
* Set (or clear) force write, if possible, for the database.
|
|
|
|
*
|
|
|
|
**************************************/
|
|
|
|
|
2007-07-26 03:23:18 +02:00
|
|
|
const bool oldForce = (file->fil_flags & FIL_force_write) != 0;
|
|
|
|
const bool oldNotUseCache = (file->fil_flags & FIL_no_fs_cache) != 0;
|
2001-12-28 06:16:58 +01:00
|
|
|
|
2007-07-26 03:23:18 +02:00
|
|
|
if (forceWrite != oldForce || notUseFSCache != oldNotUseCache)
|
2007-07-25 20:44:54 +02:00
|
|
|
{
|
2007-07-26 03:23:18 +02:00
|
|
|
const int force = forceWrite ? FILE_FLAG_WRITE_THROUGH : 0;
|
|
|
|
const int fsCache = notUseFSCache ? FILE_FLAG_NO_BUFFERING : 0;
|
2007-07-25 20:44:54 +02:00
|
|
|
const int writeMode = (file->fil_flags & FIL_readonly) ? 0 : GENERIC_WRITE;
|
|
|
|
|
2007-07-26 03:23:18 +02:00
|
|
|
HANDLE& hFile = file->fil_desc;
|
2007-07-25 20:44:54 +02:00
|
|
|
maybe_close_file(hFile);
|
|
|
|
hFile = CreateFile(file->fil_string,
|
|
|
|
GENERIC_READ | writeMode,
|
2001-12-28 06:16:58 +01:00
|
|
|
g_dwShareFlags,
|
|
|
|
NULL,
|
|
|
|
OPEN_EXISTING,
|
2007-07-25 20:44:54 +02:00
|
|
|
FILE_ATTRIBUTE_NORMAL | force | fsCache | g_dwExtraFlags,
|
2001-12-28 06:16:58 +01:00
|
|
|
0);
|
|
|
|
|
2007-07-25 20:44:54 +02:00
|
|
|
if (hFile == INVALID_HANDLE_VALUE)
|
2001-11-02 21:59:38 +01:00
|
|
|
{
|
2008-12-05 02:20:14 +01:00
|
|
|
ERR_post(Arg::Gds(isc_io_error) << Arg::Str("CreateFile (force write)") <<
|
2008-08-27 14:20:47 +02:00
|
|
|
Arg::Str(file->fil_string) <<
|
|
|
|
Arg::Gds(isc_io_access_err) << Arg::Windows(GetLastError()));
|
2001-12-28 06:16:58 +01:00
|
|
|
}
|
2008-12-05 02:20:14 +01:00
|
|
|
|
2007-07-26 03:23:18 +02:00
|
|
|
if (forceWrite) {
|
2007-07-25 20:44:54 +02:00
|
|
|
file->fil_flags |= FIL_force_write;
|
2004-01-28 08:50:41 +01:00
|
|
|
}
|
|
|
|
else {
|
2003-02-05 21:43:01 +01:00
|
|
|
file->fil_flags &= ~FIL_force_write;
|
|
|
|
}
|
2007-07-26 03:23:18 +02:00
|
|
|
if (notUseFSCache) {
|
2007-07-25 20:44:54 +02:00
|
|
|
file->fil_flags |= FIL_no_fs_cache;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
file->fil_flags &= ~FIL_no_fs_cache;
|
|
|
|
}
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-03-07 08:58:55 +01:00
|
|
|
void PIO_header(Database* dbb, SCHAR * address, int length)
|
2001-05-23 15:26:42 +02:00
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* P I O _ h e a d e r
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
|
|
|
* Read the page header. This assumes that the file has not been
|
|
|
|
* repositioned since the file was originally mapped.
|
2008-12-05 02:20:14 +01:00
|
|
|
* The detail of Win32 implementation is that it doesn't assume
|
2004-02-25 07:33:26 +01:00
|
|
|
* this fact as seeks to first byte of file initially, but external
|
|
|
|
* callers should not rely on this behavior
|
2001-05-23 15:26:42 +02:00
|
|
|
*
|
|
|
|
**************************************/
|
2006-05-22 00:07:35 +02:00
|
|
|
PageSpace* pageSpace = dbb->dbb_page_manager.findPageSpace(DB_PAGE_SPACE);
|
|
|
|
jrd_file* file = pageSpace->file;
|
2007-07-25 20:44:54 +02:00
|
|
|
HANDLE desc = file->fil_desc;
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2007-07-26 03:23:18 +02:00
|
|
|
OVERLAPPED overlapped;
|
|
|
|
OVERLAPPED* overlapped_ptr;
|
|
|
|
|
2008-02-26 12:03:09 +01:00
|
|
|
memset(&overlapped, 0, sizeof(OVERLAPPED));
|
|
|
|
overlapped_ptr = &overlapped;
|
2001-05-23 15:26:42 +02:00
|
|
|
#ifdef SUPERSERVER_V2
|
2008-02-26 12:03:09 +01:00
|
|
|
if (!(overlapped.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL)))
|
|
|
|
nt_error("Overlapped event", file, isc_io_read_err, 0);
|
|
|
|
ResetEvent(overlapped.hEvent);
|
2001-05-23 15:26:42 +02:00
|
|
|
#endif
|
|
|
|
|
2003-10-29 11:53:47 +01:00
|
|
|
DWORD actual_length;
|
2004-05-27 18:26:52 +02:00
|
|
|
if (dbb->dbb_encrypt_key.hasData())
|
2001-11-02 21:59:38 +01:00
|
|
|
{
|
2001-05-23 15:26:42 +02:00
|
|
|
SLONG spare_buffer[MAX_PAGE_SIZE / sizeof(SLONG)];
|
|
|
|
|
2003-02-09 10:52:32 +01:00
|
|
|
if (!ReadFile(desc, spare_buffer, length, &actual_length, overlapped_ptr)
|
2001-11-02 21:59:38 +01:00
|
|
|
|| actual_length != (DWORD)length)
|
|
|
|
{
|
2001-05-23 15:26:42 +02:00
|
|
|
nt_error("ReadFile", file, isc_io_read_err, 0);
|
|
|
|
}
|
|
|
|
|
2004-03-14 14:40:14 +01:00
|
|
|
(*dbb->dbb_decrypt) (dbb->dbb_encrypt_key.c_str(),
|
2001-05-23 15:26:42 +02:00
|
|
|
spare_buffer, length, address);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-02-09 10:52:32 +01:00
|
|
|
if (!ReadFile(desc, address, length, &actual_length, overlapped_ptr)
|
2001-11-02 21:59:38 +01:00
|
|
|
|| actual_length != (DWORD)length)
|
|
|
|
{
|
2001-05-23 15:26:42 +02:00
|
|
|
#ifdef SUPERSERVER_V2
|
2003-02-09 10:52:32 +01:00
|
|
|
if (!GetOverlappedResult(desc, overlapped_ptr, &actual_length, TRUE)
|
2001-11-02 21:59:38 +01:00
|
|
|
|| actual_length != length)
|
|
|
|
{
|
|
|
|
CloseHandle(overlapped.hEvent);
|
|
|
|
nt_error("GetOverlappedResult", file, isc_io_read_err, 0);
|
|
|
|
}
|
2001-05-23 15:26:42 +02:00
|
|
|
#else
|
|
|
|
nt_error("ReadFile", file, isc_io_read_err, 0);
|
|
|
|
#endif
|
2001-11-02 21:59:38 +01:00
|
|
|
}
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef SUPERSERVER_V2
|
|
|
|
CloseHandle(overlapped.hEvent);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-02-28 10:48:11 +01:00
|
|
|
// we need a class here only to return memory on shutdown and avoid
|
|
|
|
// false memory leak reports
|
|
|
|
static Firebird::InitInstance<HugeStaticBuffer> zeros;
|
2007-09-25 22:15:53 +02:00
|
|
|
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2008-12-05 02:20:14 +01:00
|
|
|
USHORT PIO_init_data(Database* dbb, jrd_file* main_file, ISC_STATUS* status_vector,
|
2007-09-18 17:26:19 +02:00
|
|
|
ULONG startPage, USHORT initPages)
|
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* P I O _ i n i t _ d a t a
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
|
|
|
* Initialize tail of file with zeros
|
|
|
|
*
|
|
|
|
**************************************/
|
2008-02-27 06:56:47 +01:00
|
|
|
const char* const zero_buff = zeros().get();
|
2007-09-18 17:26:19 +02:00
|
|
|
|
2008-06-04 15:38:40 +02:00
|
|
|
Database::Checkout dcoHolder(dbb);
|
2007-09-25 22:15:53 +02:00
|
|
|
FileExtendLockGuard extLock(main_file->fil_ext_lock, false);
|
2007-09-18 17:26:19 +02:00
|
|
|
|
|
|
|
// Fake buffer, used in seek_file. Page space ID have no matter there
|
|
|
|
// as we already know file to work with
|
|
|
|
BufferDesc bdb;
|
|
|
|
bdb.bdb_dbb = dbb;
|
|
|
|
bdb.bdb_page = PageNumber(0, startPage);
|
|
|
|
|
2007-09-19 03:46:45 +02:00
|
|
|
OVERLAPPED overlapped;
|
|
|
|
OVERLAPPED* overlapped_ptr;
|
2008-12-05 02:20:14 +01:00
|
|
|
jrd_file* file =
|
2007-09-18 17:26:19 +02:00
|
|
|
seek_file(main_file, &bdb, status_vector, &overlapped, &overlapped_ptr);
|
|
|
|
|
|
|
|
if (!file)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (file->fil_min_page + 8 > startPage)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
USHORT leftPages = initPages;
|
|
|
|
const ULONG initBy = MIN(file->fil_max_page - startPage, leftPages);
|
|
|
|
for (ULONG i = startPage; i < startPage + initBy; )
|
|
|
|
{
|
|
|
|
bdb.bdb_page = PageNumber(0, i);
|
2007-09-25 22:15:53 +02:00
|
|
|
USHORT write_pages = ZERO_BUF_SIZE / dbb->dbb_page_size;
|
2007-09-18 17:26:19 +02:00
|
|
|
if (write_pages > leftPages)
|
|
|
|
write_pages = leftPages;
|
|
|
|
|
|
|
|
seek_file(main_file, &bdb, status_vector, &overlapped, &overlapped_ptr);
|
|
|
|
|
2007-09-19 03:46:45 +02:00
|
|
|
DWORD to_write = (DWORD) write_pages * dbb->dbb_page_size;
|
|
|
|
DWORD written;
|
2007-09-18 17:26:19 +02:00
|
|
|
|
|
|
|
if (!WriteFile(file->fil_desc, zero_buff, to_write, &written, overlapped_ptr) ||
|
|
|
|
to_write != written)
|
|
|
|
{
|
|
|
|
nt_error("WriteFile", file, isc_io_write_err, status_vector);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
leftPages -= write_pages;
|
|
|
|
i += write_pages;
|
|
|
|
}
|
2007-09-19 03:46:45 +02:00
|
|
|
|
2007-09-18 17:26:19 +02:00
|
|
|
return (initPages - leftPages);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-03-07 08:58:55 +01:00
|
|
|
jrd_file* PIO_open(Database* dbb,
|
2007-03-09 08:59:05 +01:00
|
|
|
const Firebird::PathName& string,
|
|
|
|
const Firebird::PathName& file_name,
|
2008-02-28 10:29:50 +01:00
|
|
|
const bool share_delete)
|
2001-05-23 15:26:42 +02:00
|
|
|
{
|
2002-11-10 16:38:38 +01:00
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* P I O _ o p e n
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
2006-05-31 10:53:00 +02:00
|
|
|
* Open a database file.
|
2002-11-10 16:38:38 +01:00
|
|
|
*
|
|
|
|
**************************************/
|
2008-02-27 06:56:47 +01:00
|
|
|
const TEXT* const ptr = (string.hasData() ? string : file_name).c_str();
|
2007-07-26 03:23:18 +02:00
|
|
|
bool readOnly = false;
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2003-10-29 11:53:47 +01:00
|
|
|
HANDLE desc = CreateFile(ptr,
|
2001-05-23 15:26:42 +02:00
|
|
|
GENERIC_READ | GENERIC_WRITE,
|
2007-03-09 08:59:05 +01:00
|
|
|
g_dwShareFlags | (share_delete ? FILE_SHARE_DELETE : 0),
|
2001-05-23 15:26:42 +02:00
|
|
|
NULL,
|
|
|
|
OPEN_EXISTING,
|
|
|
|
FILE_ATTRIBUTE_NORMAL |
|
2001-11-02 21:59:38 +01:00
|
|
|
g_dwExtraFlags,
|
|
|
|
0);
|
2001-05-23 15:26:42 +02:00
|
|
|
|
|
|
|
if (desc == INVALID_HANDLE_VALUE) {
|
|
|
|
/* Try opening the database file in ReadOnly mode.
|
|
|
|
* The database file could be on a RO medium (CD-ROM etc.).
|
|
|
|
* If this fileopen fails, return error.
|
|
|
|
*/
|
|
|
|
desc = CreateFile(ptr,
|
|
|
|
GENERIC_READ,
|
|
|
|
FILE_SHARE_READ,
|
|
|
|
NULL,
|
|
|
|
OPEN_EXISTING,
|
|
|
|
FILE_ATTRIBUTE_NORMAL |
|
2001-11-02 21:59:38 +01:00
|
|
|
g_dwExtraFlags, 0);
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2008-08-29 04:18:50 +02:00
|
|
|
if (desc == INVALID_HANDLE_VALUE)
|
|
|
|
{
|
2008-12-05 02:20:14 +01:00
|
|
|
ERR_post(Arg::Gds(isc_io_error) << Arg::Str("CreateFile (open)") <<
|
2008-08-27 14:20:47 +02:00
|
|
|
Arg::Str(file_name) <<
|
|
|
|
Arg::Gds(isc_io_open_err) << Arg::Windows(GetLastError()));
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
2008-08-29 04:18:50 +02:00
|
|
|
else
|
|
|
|
{
|
2004-03-07 08:58:55 +01:00
|
|
|
/* If this is the primary file, set Database flag to indicate that it is
|
2001-05-23 15:26:42 +02:00
|
|
|
* being opened ReadOnly. This flag will be used later to compare with
|
|
|
|
* the Header Page flag setting to make sure that the database is set
|
|
|
|
* ReadOnly.
|
|
|
|
*/
|
2007-07-26 03:23:18 +02:00
|
|
|
readOnly = true;
|
2006-05-22 00:07:35 +02:00
|
|
|
PageSpace* pageSpace = dbb->dbb_page_manager.findPageSpace(DB_PAGE_SPACE);
|
|
|
|
if (!pageSpace->file)
|
2001-05-23 15:26:42 +02:00
|
|
|
dbb->dbb_flags |= DBB_being_opened_read_only;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-09 10:40:31 +02:00
|
|
|
return setup_file(dbb, string, desc, readOnly);
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-03-20 15:57:40 +01:00
|
|
|
bool PIO_read(jrd_file* file, BufferDesc* bdb, Ods::pag* page, ISC_STATUS* status_vector)
|
2001-05-23 15:26:42 +02:00
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* P I O _ r e a d
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
|
|
|
* Read a data page.
|
|
|
|
*
|
|
|
|
**************************************/
|
2004-03-07 08:58:55 +01:00
|
|
|
Database* dbb = bdb->bdb_dbb;
|
2003-10-29 11:53:47 +01:00
|
|
|
const DWORD size = dbb->dbb_page_size;
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2008-06-04 15:38:40 +02:00
|
|
|
Database::Checkout dcoHolder(dbb);
|
2007-09-25 22:15:53 +02:00
|
|
|
FileExtendLockGuard extLock(file->fil_ext_lock, false);
|
2007-09-18 16:50:51 +02:00
|
|
|
|
2004-02-20 07:43:27 +01:00
|
|
|
OVERLAPPED overlapped, *overlapped_ptr;
|
2002-04-29 17:05:11 +02:00
|
|
|
if (!(file = seek_file(file, bdb, status_vector, &overlapped, &overlapped_ptr)))
|
2004-02-20 07:43:27 +01:00
|
|
|
return false;
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2007-07-25 20:44:54 +02:00
|
|
|
HANDLE desc = file->fil_desc;
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2004-05-27 18:26:52 +02:00
|
|
|
if (dbb->dbb_encrypt_key.hasData())
|
2001-12-24 03:51:06 +01:00
|
|
|
{
|
2001-05-23 15:26:42 +02:00
|
|
|
SLONG spare_buffer[MAX_PAGE_SIZE / sizeof(SLONG)];
|
2004-02-20 07:43:27 +01:00
|
|
|
DWORD actual_length;
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2003-02-09 10:52:32 +01:00
|
|
|
if (!ReadFile(desc, spare_buffer, size, &actual_length, overlapped_ptr)
|
2001-12-24 03:51:06 +01:00
|
|
|
|| actual_length != size)
|
|
|
|
{
|
2001-05-23 15:26:42 +02:00
|
|
|
return nt_error("ReadFile", file, isc_io_read_err, status_vector);
|
|
|
|
}
|
|
|
|
|
2004-03-14 14:40:14 +01:00
|
|
|
(*dbb->dbb_decrypt) (dbb->dbb_encrypt_key.c_str(),
|
2001-05-23 15:26:42 +02:00
|
|
|
spare_buffer, size, page);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-02-20 07:43:27 +01:00
|
|
|
DWORD actual_length;
|
2001-05-23 15:26:42 +02:00
|
|
|
if (!ReadFile(desc, page, size, &actual_length, overlapped_ptr) ||
|
2001-11-02 21:59:38 +01:00
|
|
|
actual_length != size)
|
|
|
|
{
|
2001-05-23 15:26:42 +02:00
|
|
|
#ifdef SUPERSERVER_V2
|
2003-02-09 10:52:32 +01:00
|
|
|
if (!GetOverlappedResult(desc, overlapped_ptr, &actual_length, TRUE)
|
2001-11-02 21:59:38 +01:00
|
|
|
|| actual_length != size)
|
|
|
|
{
|
2001-05-23 15:26:42 +02:00
|
|
|
release_io_event(file, overlapped_ptr);
|
|
|
|
return nt_error("GetOverlappedResult", file, isc_io_read_err,
|
|
|
|
status_vector);
|
|
|
|
}
|
|
|
|
#else
|
2003-02-09 10:52:32 +01:00
|
|
|
return nt_error("ReadFile", file, isc_io_read_err, status_vector);
|
2001-05-23 15:26:42 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef SUPERSERVER_V2
|
|
|
|
release_io_event(file, overlapped_ptr);
|
|
|
|
#endif
|
|
|
|
|
2004-02-20 07:43:27 +01:00
|
|
|
return true;
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef SUPERSERVER_V2
|
2004-03-07 08:58:55 +01:00
|
|
|
bool PIO_read_ahead(Database* dbb,
|
2001-12-24 03:51:06 +01:00
|
|
|
SLONG start_page,
|
|
|
|
SCHAR* buffer,
|
|
|
|
SLONG pages,
|
2004-02-20 07:43:27 +01:00
|
|
|
phys_io_blk* piob,
|
2003-04-10 08:49:16 +02:00
|
|
|
ISC_STATUS* status_vector)
|
2001-05-23 15:26:42 +02:00
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* P I O _ r e a d _ a h e a d
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
|
|
|
* Read a contiguous set of pages. The only
|
|
|
|
* tricky part is to segment the I/O when crossing
|
|
|
|
* file boundaries.
|
|
|
|
*
|
|
|
|
**************************************/
|
|
|
|
OVERLAPPED overlapped, *overlapped_ptr;
|
|
|
|
|
2008-06-04 15:38:40 +02:00
|
|
|
Database::Checkout dcoHolder(dbb);
|
2007-09-25 13:47:39 +02:00
|
|
|
|
2001-05-23 15:26:42 +02:00
|
|
|
/* If an I/O status block was passed the caller wants to
|
|
|
|
queue an asynchronous I/O. */
|
|
|
|
|
|
|
|
if (!piob) {
|
|
|
|
overlapped_ptr = &overlapped;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
overlapped_ptr = (OVERLAPPED *) & piob->piob_io_event;
|
|
|
|
piob->piob_flags = 0;
|
|
|
|
}
|
|
|
|
|
2004-03-18 06:56:06 +01:00
|
|
|
BufferDesc bdb;
|
2001-05-23 15:26:42 +02:00
|
|
|
while (pages) {
|
|
|
|
/* Setup up a dummy buffer descriptor block for seeking file. */
|
|
|
|
|
|
|
|
bdb.bdb_dbb = dbb;
|
|
|
|
bdb.bdb_page = start_page;
|
|
|
|
|
2004-02-20 07:43:27 +01:00
|
|
|
jrd_file* file = seek_file(dbb->dbb_file,
|
2001-12-24 03:51:06 +01:00
|
|
|
&bdb, status_vector,
|
|
|
|
overlapped_ptr,
|
|
|
|
&overlapped_ptr);
|
2001-05-23 15:26:42 +02:00
|
|
|
if (!file) {
|
2004-02-20 07:43:27 +01:00
|
|
|
return false;
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check that every page within the set resides in the same database
|
|
|
|
file. If not read what you can and loop back for the rest. */
|
|
|
|
|
2004-02-20 07:43:27 +01:00
|
|
|
DWORD segmented_length = 0;
|
2001-05-23 15:26:42 +02:00
|
|
|
while (pages && start_page >= file->fil_min_page
|
2004-02-20 07:43:27 +01:00
|
|
|
&& start_page <= file->fil_max_page)
|
|
|
|
{
|
2001-05-23 15:26:42 +02:00
|
|
|
segmented_length += dbb->dbb_page_size;
|
|
|
|
++start_page;
|
|
|
|
--pages;
|
|
|
|
}
|
|
|
|
|
2007-07-25 20:44:54 +02:00
|
|
|
HANDLE desc = file->fil_desc;
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2004-03-18 06:56:06 +01:00
|
|
|
DWORD actual_length;
|
2001-12-24 03:51:06 +01:00
|
|
|
if (ReadFile( desc,
|
|
|
|
buffer,
|
|
|
|
segmented_length,
|
|
|
|
&actual_length,
|
|
|
|
overlapped_ptr) &&
|
|
|
|
actual_length == segmented_length)
|
|
|
|
{
|
|
|
|
if (piob && !pages) {
|
2001-05-23 15:26:42 +02:00
|
|
|
piob->piob_flags = PIOB_success;
|
2001-12-24 03:51:06 +01:00
|
|
|
}
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
else if (piob && !pages) {
|
|
|
|
piob->piob_flags = PIOB_pending;
|
2004-02-20 07:43:27 +01:00
|
|
|
piob->piob_desc = reinterpret_cast<SLONG>(desc);
|
2001-05-23 15:26:42 +02:00
|
|
|
piob->piob_file = file;
|
|
|
|
piob->piob_io_length = segmented_length;
|
|
|
|
}
|
2001-12-24 03:51:06 +01:00
|
|
|
else if (!GetOverlappedResult( desc,
|
|
|
|
overlapped_ptr,
|
|
|
|
&actual_length,
|
|
|
|
TRUE) ||
|
|
|
|
actual_length != segmented_length)
|
|
|
|
{
|
|
|
|
if (piob) {
|
|
|
|
piob->piob_flags = PIOB_error;
|
|
|
|
}
|
2001-05-23 15:26:42 +02:00
|
|
|
release_io_event(file, overlapped_ptr);
|
|
|
|
return nt_error("GetOverlappedResult", file, isc_io_read_err,
|
|
|
|
status_vector);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!piob || (piob->piob_flags & (PIOB_success | PIOB_error)))
|
|
|
|
release_io_event(file, overlapped_ptr);
|
|
|
|
|
|
|
|
buffer += segmented_length;
|
|
|
|
}
|
|
|
|
|
2004-02-20 07:43:27 +01:00
|
|
|
return true;
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef SUPERSERVER_V2
|
2008-01-26 13:52:51 +01:00
|
|
|
bool PIO_status(Database* dbb, phys_io_blk* piob, ISC_STATUS* status_vector)
|
2001-05-23 15:26:42 +02:00
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* P I O _ s t a t u s
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
|
|
|
* Check the status of an asynchronous I/O.
|
|
|
|
*
|
|
|
|
**************************************/
|
2008-06-04 15:38:40 +02:00
|
|
|
Database::Checkout dcoHolder(dbb);
|
2007-09-25 13:47:39 +02:00
|
|
|
|
2001-05-23 15:26:42 +02:00
|
|
|
if (!(piob->piob_flags & PIOB_success)) {
|
|
|
|
if (piob->piob_flags & PIOB_error) {
|
2004-02-20 07:43:27 +01:00
|
|
|
return false;
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
2004-03-18 06:56:06 +01:00
|
|
|
DWORD actual_length;
|
2001-05-23 15:26:42 +02:00
|
|
|
if (!GetOverlappedResult((HANDLE) piob->piob_desc,
|
|
|
|
(OVERLAPPED *) & piob->piob_io_event,
|
|
|
|
&actual_length,
|
|
|
|
piob->piob_wait) ||
|
2004-02-20 07:43:27 +01:00
|
|
|
actual_length != piob->piob_io_length)
|
|
|
|
{
|
2001-05-23 15:26:42 +02:00
|
|
|
release_io_event(piob->piob_file,
|
|
|
|
(OVERLAPPED *) & piob->piob_io_event);
|
|
|
|
return nt_error("GetOverlappedResult", piob->piob_file,
|
2008-03-20 13:14:30 +01:00
|
|
|
isc_io_error, status_vector); // io_error is wrong here as primary & secondary error.
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
release_io_event(piob->piob_file, (OVERLAPPED *) & piob->piob_io_event);
|
2004-02-20 07:43:27 +01:00
|
|
|
return true;
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-03-20 15:57:40 +01:00
|
|
|
bool PIO_write(jrd_file* file, BufferDesc* bdb, Ods::pag* page, ISC_STATUS* status_vector)
|
2001-05-23 15:26:42 +02:00
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* P I O _ w r i t e
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
|
|
|
* Write a data page.
|
|
|
|
*
|
|
|
|
**************************************/
|
|
|
|
OVERLAPPED overlapped, *overlapped_ptr;
|
|
|
|
|
2008-01-26 13:52:51 +01:00
|
|
|
Database* dbb = bdb->bdb_dbb;
|
2004-03-18 06:56:06 +01:00
|
|
|
const DWORD size = dbb->dbb_page_size;
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2008-06-04 15:38:40 +02:00
|
|
|
Database::Checkout dcoHolder(dbb);
|
2007-09-25 22:15:53 +02:00
|
|
|
FileExtendLockGuard extLock(file->fil_ext_lock, false);
|
2007-09-18 16:50:51 +02:00
|
|
|
|
2001-12-24 03:51:06 +01:00
|
|
|
file = seek_file(file, bdb, status_vector, &overlapped,
|
|
|
|
&overlapped_ptr);
|
|
|
|
if (!file) {
|
2004-02-20 07:43:27 +01:00
|
|
|
return false;
|
2001-12-24 03:51:06 +01:00
|
|
|
}
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2007-07-25 20:44:54 +02:00
|
|
|
HANDLE desc = file->fil_desc;
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2004-05-27 18:26:52 +02:00
|
|
|
if (dbb->dbb_encrypt_key.hasData()) {
|
2001-05-23 15:26:42 +02:00
|
|
|
SLONG spare_buffer[MAX_PAGE_SIZE / sizeof(SLONG)];
|
|
|
|
|
2004-03-14 14:40:14 +01:00
|
|
|
(*dbb->dbb_encrypt) (dbb->dbb_encrypt_key.c_str(),
|
2001-05-23 15:26:42 +02:00
|
|
|
page, size, spare_buffer);
|
|
|
|
|
2004-03-18 06:56:06 +01:00
|
|
|
DWORD actual_length;
|
2001-12-24 03:51:06 +01:00
|
|
|
if (!WriteFile(desc, spare_buffer, size, &actual_length, overlapped_ptr)
|
|
|
|
|| actual_length != size)
|
|
|
|
{
|
2003-02-09 10:52:32 +01:00
|
|
|
return nt_error("WriteFile", file, isc_io_write_err, status_vector);
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-03-18 06:56:06 +01:00
|
|
|
DWORD actual_length;
|
2008-12-05 02:20:14 +01:00
|
|
|
if (!WriteFile(desc, page, size, &actual_length, overlapped_ptr)
|
2005-02-17 08:28:03 +01:00
|
|
|
|| actual_length != size )
|
2002-04-29 17:05:11 +02:00
|
|
|
{
|
2001-05-23 15:26:42 +02:00
|
|
|
#ifdef SUPERSERVER_V2
|
2003-02-09 10:52:32 +01:00
|
|
|
if (!GetOverlappedResult(desc, overlapped_ptr, &actual_length, TRUE)
|
2001-11-02 21:59:38 +01:00
|
|
|
|| actual_length != size)
|
2002-04-29 17:05:11 +02:00
|
|
|
{
|
|
|
|
release_io_event(file, overlapped_ptr);
|
|
|
|
return nt_error("GetOverlappedResult", file, isc_io_write_err,
|
|
|
|
status_vector);
|
|
|
|
}
|
2001-05-23 15:26:42 +02:00
|
|
|
#else
|
2003-02-09 10:52:32 +01:00
|
|
|
return nt_error("WriteFile", file, isc_io_write_err, status_vector);
|
2001-05-23 15:26:42 +02:00
|
|
|
#endif
|
2002-04-29 17:05:11 +02:00
|
|
|
}
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef SUPERSERVER_V2
|
|
|
|
release_io_event(file, overlapped_ptr);
|
|
|
|
#endif
|
|
|
|
|
2004-02-20 07:43:27 +01:00
|
|
|
return true;
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-25 23:08:57 +02:00
|
|
|
ULONG PIO_get_number_of_pages(const jrd_file* file, const USHORT pagesize)
|
2002-11-10 16:38:38 +01:00
|
|
|
{
|
2001-12-24 03:51:06 +01:00
|
|
|
/**************************************
|
|
|
|
*
|
2007-04-25 23:08:57 +02:00
|
|
|
* P I O _ g e t _ n u m b e r _ o f _ p a g e s
|
2002-11-10 16:38:38 +01:00
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
2001-12-24 03:51:06 +01:00
|
|
|
* Compute number of pages in file, based only on file size.
|
|
|
|
*
|
|
|
|
**************************************/
|
2007-07-25 20:44:54 +02:00
|
|
|
HANDLE hFile = file->fil_desc;
|
2001-12-24 03:51:06 +01:00
|
|
|
|
2003-10-29 11:53:47 +01:00
|
|
|
DWORD dwFileSizeHigh;
|
|
|
|
const DWORD dwFileSizeLow = GetFileSize(hFile, &dwFileSizeHigh);
|
2001-12-24 03:51:06 +01:00
|
|
|
|
2003-08-09 21:01:02 +02:00
|
|
|
if (dwFileSizeLow == (DWORD) -1) {
|
2001-12-24 03:51:06 +01:00
|
|
|
nt_error("GetFileSize", file, isc_io_access_err, 0);
|
|
|
|
}
|
|
|
|
|
2003-10-29 11:53:47 +01:00
|
|
|
const ULONGLONG ullFileSize = (((ULONGLONG) dwFileSizeHigh) << 32)
|
|
|
|
+ dwFileSizeLow;
|
2001-12-24 03:51:06 +01:00
|
|
|
return (ULONG) ((ullFileSize + pagesize - 1) / pagesize);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-09 10:40:31 +02:00
|
|
|
void PIO_get_unique_file_id(const Jrd::jrd_file* file, Firebird::UCharBuffer& id)
|
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* P I O _ g e t _ u n i q u e _ f i l e _ i d
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
|
|
|
* Return a binary string that uniquely identifies the file.
|
|
|
|
*
|
|
|
|
**************************************/
|
|
|
|
BY_HANDLE_FILE_INFORMATION file_info;
|
|
|
|
GetFileInformationByHandle(file->fil_desc, &file_info);
|
|
|
|
|
|
|
|
// The identifier is [nFileIndexHigh, nFileIndexLow]
|
|
|
|
// MSDN says: After a process opens a file, the identifier is constant until
|
|
|
|
// the file is closed. An application can use this identifier and the
|
|
|
|
// volume serial number to determine whether two handles refer to the same file.
|
|
|
|
const size_t len1 = sizeof(file_info.dwVolumeSerialNumber);
|
|
|
|
const size_t len2 = sizeof(file_info.nFileIndexHigh);
|
|
|
|
const size_t len3 = sizeof(file_info.nFileIndexLow);
|
|
|
|
|
|
|
|
UCHAR* p = id.getBuffer(len1 + len2 + len3);
|
|
|
|
|
|
|
|
memcpy(p, &file_info.dwVolumeSerialNumber, len1);
|
|
|
|
p += len1;
|
|
|
|
memcpy(p, &file_info.nFileIndexHigh, len2);
|
|
|
|
p += len2;
|
|
|
|
memcpy(p, &file_info.nFileIndexLow, len3);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-05-23 15:26:42 +02:00
|
|
|
#ifdef SUPERSERVER_V2
|
2004-02-20 07:43:27 +01:00
|
|
|
static void release_io_event(jrd_file* file, OVERLAPPED* overlapped)
|
2001-05-23 15:26:42 +02:00
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* r e l e a s e _ i o _ e v e n t
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
|
|
|
* Release an overlapped I/O event
|
|
|
|
* back to the file block.
|
|
|
|
*
|
|
|
|
**************************************/
|
|
|
|
if (!overlapped || !overlapped->hEvent)
|
|
|
|
return;
|
|
|
|
|
2008-02-26 12:03:09 +01:00
|
|
|
Firebird::MutexLockGuard guard(file->fil_mutex);
|
|
|
|
|
2003-10-29 11:53:47 +01:00
|
|
|
for (int i = 0; i < MAX_FILE_IO; i++)
|
2008-02-28 03:43:23 +01:00
|
|
|
{
|
2001-05-23 15:26:42 +02:00
|
|
|
if (!file->fil_io_events[i]) {
|
|
|
|
file->fil_io_events[i] = overlapped->hEvent;
|
|
|
|
overlapped->hEvent = NULL;
|
|
|
|
break;
|
|
|
|
}
|
2008-02-28 03:43:23 +01:00
|
|
|
}
|
2001-05-23 15:26:42 +02:00
|
|
|
|
|
|
|
if (overlapped->hEvent)
|
|
|
|
CloseHandle(overlapped->hEvent);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-02-20 07:43:27 +01:00
|
|
|
static jrd_file* seek_file(jrd_file* file,
|
2004-03-18 06:56:06 +01:00
|
|
|
BufferDesc* bdb,
|
2003-04-10 08:49:16 +02:00
|
|
|
ISC_STATUS* status_vector,
|
2001-05-23 15:26:42 +02:00
|
|
|
OVERLAPPED* overlapped,
|
|
|
|
OVERLAPPED** overlapped_ptr)
|
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* s e e k _ f i l e
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
|
|
|
* Given a buffer descriptor block, find the appropropriate
|
|
|
|
* file block and seek to the proper page in that file.
|
|
|
|
*
|
|
|
|
**************************************/
|
2004-03-07 08:58:55 +01:00
|
|
|
Database* dbb = bdb->bdb_dbb;
|
2006-05-22 00:07:35 +02:00
|
|
|
ULONG page = bdb->bdb_page.getPageNum();
|
2001-05-23 15:26:42 +02:00
|
|
|
|
|
|
|
for (;; file = file->fil_next) {
|
|
|
|
if (!file) {
|
2003-09-26 13:46:03 +02:00
|
|
|
CORRUPT(158); /* msg 158 database file not available */
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
else if (page >= file->fil_min_page && page <= file->fil_max_page) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
page -= file->fil_min_page - file->fil_fudge;
|
|
|
|
|
2003-10-29 11:53:47 +01:00
|
|
|
LARGE_INTEGER liOffset;
|
2001-05-23 15:26:42 +02:00
|
|
|
liOffset.QuadPart =
|
|
|
|
UInt32x32To64((DWORD) page, (DWORD) dbb->dbb_page_size);
|
|
|
|
|
2008-02-26 12:03:09 +01:00
|
|
|
overlapped->Offset = liOffset.LowPart;
|
|
|
|
overlapped->OffsetHigh = liOffset.HighPart;
|
|
|
|
overlapped->Internal = 0;
|
|
|
|
overlapped->InternalHigh = 0;
|
|
|
|
overlapped->hEvent = (HANDLE) 0;
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2008-02-26 12:03:09 +01:00
|
|
|
*overlapped_ptr = overlapped;
|
|
|
|
|
|
|
|
#ifdef SUPERSERVER_V2
|
|
|
|
Firebird::MutexLockGuard guard(file->fil_mutex);
|
|
|
|
|
|
|
|
for (USHORT i = 0; i < MAX_FILE_IO; i++) {
|
|
|
|
if (overlapped->hEvent = (HANDLE) file->fil_io_events[i]) {
|
|
|
|
file->fil_io_events[i] = 0;
|
|
|
|
break;
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-26 12:03:09 +01:00
|
|
|
if (!overlapped->hEvent &&
|
|
|
|
!(overlapped->hEvent = CreateEvent(NULL, TRUE, FALSE, NULL)))
|
|
|
|
{
|
|
|
|
nt_error("CreateEvent", file, isc_io_access_err, status_vector);
|
|
|
|
return 0;
|
|
|
|
}
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2008-02-26 12:03:09 +01:00
|
|
|
ResetEvent(overlapped->hEvent);
|
2001-05-23 15:26:42 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-09 10:40:31 +02:00
|
|
|
static jrd_file* setup_file(Database* dbb,
|
|
|
|
const Firebird::PathName& file_name,
|
|
|
|
HANDLE desc,
|
|
|
|
bool read_only)
|
2001-05-23 15:26:42 +02:00
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* s e t u p _ f i l e
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
|
|
|
* Set up file and lock blocks for a file.
|
|
|
|
*
|
|
|
|
**************************************/
|
2008-07-09 10:40:31 +02:00
|
|
|
jrd_file* file = NULL;
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2008-07-09 10:40:31 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
file = FB_NEW_RPT(*dbb->dbb_permanent, file_name.length() + 1) jrd_file();
|
|
|
|
file->fil_desc = desc;
|
|
|
|
file->fil_max_page = MAX_ULONG;
|
|
|
|
strcpy(file->fil_string, file_name.c_str());
|
2002-04-29 17:05:11 +02:00
|
|
|
#ifdef SUPERSERVER_V2
|
2008-07-09 10:40:31 +02:00
|
|
|
memset(file->fil_io_events, 0, MAX_FILE_IO * sizeof(void*));
|
2002-04-29 17:05:11 +02:00
|
|
|
#endif
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2008-07-09 10:40:31 +02:00
|
|
|
if (read_only)
|
|
|
|
file->fil_flags |= FIL_readonly;
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2008-07-09 10:40:31 +02:00
|
|
|
// If this isn't the primary file, we're done
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2008-07-09 10:40:31 +02:00
|
|
|
const PageSpace* const pageSpace = dbb->dbb_page_manager.findPageSpace(DB_PAGE_SPACE);
|
|
|
|
if (pageSpace && pageSpace->file)
|
|
|
|
return file;
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2008-07-09 10:40:31 +02:00
|
|
|
file->fil_ext_lock = FB_NEW(*dbb->dbb_permanent) Firebird::RWLock();
|
|
|
|
}
|
|
|
|
catch (const Firebird::Exception&)
|
|
|
|
{
|
|
|
|
CloseHandle(desc);
|
|
|
|
delete file;
|
|
|
|
throw;
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
|
2008-07-09 10:40:31 +02:00
|
|
|
fb_assert(file);
|
2001-05-23 15:26:42 +02:00
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
2007-07-25 20:44:54 +02:00
|
|
|
static bool maybe_close_file(HANDLE& hFile)
|
2001-12-24 03:51:06 +01:00
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* M a y b e C l o s e F i l e
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
|
|
|
* If the file is open, close it.
|
|
|
|
*
|
|
|
|
**************************************/
|
|
|
|
|
2007-07-25 20:44:54 +02:00
|
|
|
if (hFile != INVALID_HANDLE_VALUE)
|
2001-12-24 03:51:06 +01:00
|
|
|
{
|
2007-07-25 20:44:54 +02:00
|
|
|
CloseHandle(hFile);
|
|
|
|
hFile = INVALID_HANDLE_VALUE;
|
2001-12-24 03:51:06 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2004-02-20 07:43:27 +01:00
|
|
|
static bool nt_error(TEXT* string,
|
|
|
|
const jrd_file* file,
|
2003-04-10 08:49:16 +02:00
|
|
|
ISC_STATUS operation,
|
|
|
|
ISC_STATUS* status_vector)
|
2001-05-23 15:26:42 +02:00
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* n t _ e r r o r
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
|
|
|
* Somebody has noticed a file system error and expects error
|
|
|
|
* to do something about it. Harumph!
|
|
|
|
*
|
|
|
|
**************************************/
|
|
|
|
|
2008-08-29 04:18:50 +02:00
|
|
|
if (status_vector)
|
|
|
|
{
|
2008-12-05 02:20:14 +01:00
|
|
|
ERR_build_status(status_vector, Arg::Gds(isc_io_error) << Arg::Str(string) <<
|
2008-08-27 14:20:47 +02:00
|
|
|
Arg::Str(file->fil_string) <<
|
|
|
|
Arg::Gds(operation) << Arg::Windows(GetLastError()));
|
2004-02-20 07:43:27 +01:00
|
|
|
return false;
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|
|
|
|
|
2008-12-05 02:20:14 +01:00
|
|
|
ERR_post(Arg::Gds(isc_io_error) << Arg::Str(string) <<
|
2008-08-27 14:20:47 +02:00
|
|
|
Arg::Str(file->fil_string) <<
|
|
|
|
Arg::Gds(operation) << Arg::Windows(GetLastError()));
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2004-02-20 07:43:27 +01:00
|
|
|
return true;
|
2001-05-23 15:26:42 +02:00
|
|
|
}
|