filelock-os2.cpp revision 1d7987915cc0b7628d6711d280f7d48d7192124d
/* $Id$ */
/** @file
* innotek Portable Runtime - File Locking, OS/2.
*/
/*
* Copyright (C) 2008 innotek GmbH
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#define LOG_GROUP RTLOGGROUP_FILE
#include <errno.h>
#include <fcntl.h>
#include <unistd.h>
{
/* Check arguments. */
if (fLock & ~RTFILE_LOCK_MASK)
{
return VERR_INVALID_PARAMETER;
}
/*
* Validate offset.
*/
&& ( (offLock >> 32) != 0
|| (cbLock >> 32) != 0
{
return VERR_NOT_SUPPORTED;
}
/* Prepare flock structure. */
return VINF_SUCCESS;
return VERR_FILE_LOCK_VIOLATION;
return RTErrConvertFromErrno(iErr);
}
{
/** @todo copied from ../win/fileio-win.cpp for now but a proper solution
* would probably be to modify kLIBC so that __fcntl_locking() first
* assmues a change lock request is made (e.g. the same region was
* previously F_RDLCK'ed and now needs to be F_WRLCK'ed or vice versa) and
* tries to use atomic locking, and only if it fails, it does the regular
* lock procedure. The alternative is to use DosSetFileLocks directly here
* which basically means copy-pasting the __fcntl_locking() source
* code :) Note that the first attempt to call RTFileLock() below assumes
* that kLIBC is patched as described above one day and gives it a chance;
* on failure, we fall back to the Win-like unlock-then-lock approach. */
return rc;
/* Check arguments. */
if (fLock & ~RTFILE_LOCK_MASK)
{
return VERR_INVALID_PARAMETER;
}
/* Remove old lock. */
if (RT_FAILURE(rc))
return rc;
/* Set new lock. */
if (RT_SUCCESS(rc))
return rc;
/* Try to restore old lock. */
unsigned fLockOld = (fLock & RTFILE_LOCK_WRITE) ? fLock & ~RTFILE_LOCK_WRITE : fLock | RTFILE_LOCK_WRITE;
if (RT_SUCCESS(rc))
return VERR_FILE_LOCK_VIOLATION;
else
return VERR_FILE_LOCK_LOST;
}
{
/*
* Validate offset.
*/
&& ( (offLock >> 32) != 0
|| (cbLock >> 32) != 0
{
return VERR_NOT_SUPPORTED;
}
/* Prepare flock structure. */
return VINF_SUCCESS;
/** @todo check error codes for non existing lock. */
return VERR_FILE_LOCK_VIOLATION;
return RTErrConvertFromErrno(iErr);
}