RTErrConvertFromNtStatus.cpp revision 5bf0ee311caa414469f26237ff607cb1b3591508
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync/* $Id$ */
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync/** @file
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync * IPRT - Convert NT status codes to iprt status codes.
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync */
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync/*
c58f1213e628a545081c70e26c6b67a841cff880vboxsync * Copyright (C) 2006-2013 Oracle Corporation
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync *
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * available from http://www.virtualbox.org. This file is free software;
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * you can redistribute it and/or modify it under the terms of the GNU
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * General Public License (GPL) as published by the Free Software
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync *
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * The contents of this file may alternatively be used under the terms
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * of the Common Development and Distribution License Version 1.0
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * VirtualBox OSE distribution, in which case the provisions of the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * CDDL are applicable instead of those of the GPL.
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync *
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * You may elect to license modified versions of this file under the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * terms and conditions of either the GPL or the CDDL or both.
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync */
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync/*******************************************************************************
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync* Header Files *
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync*******************************************************************************/
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync#include <ntstatus.h>
7db630a55be9d955c8ac125da609b304cbcc6010vboxsynctypedef long NTSTATUS; /** @todo figure out which headers to include to get this one typedef... */
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync#include <iprt/err.h>
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync#include <iprt/assert.h>
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync
bd53394d08b77c8294f14b32dd26aa4670f888eevboxsync
bd53394d08b77c8294f14b32dd26aa4670f888eevboxsync
bd53394d08b77c8294f14b32dd26aa4670f888eevboxsyncRTDECL(int) RTErrConvertFromNtStatus(long lNativeCode)
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync{
bd53394d08b77c8294f14b32dd26aa4670f888eevboxsync switch (lNativeCode)
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync {
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync case STATUS_SUCCESS: return VINF_SUCCESS;
bd53394d08b77c8294f14b32dd26aa4670f888eevboxsync
bd53394d08b77c8294f14b32dd26aa4670f888eevboxsync case STATUS_ALERTED: return VERR_INTERRUPTED;
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync case STATUS_USER_APC: return VERR_INTERRUPTED;
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync
bd53394d08b77c8294f14b32dd26aa4670f888eevboxsync case STATUS_INVALID_HANDLE: return VERR_INVALID_HANDLE;
bd53394d08b77c8294f14b32dd26aa4670f888eevboxsync case STATUS_INVALID_PARAMETER: return VERR_INVALID_PARAMETER;
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync case STATUS_INVALID_DEVICE_REQUEST: return VERR_IO_BAD_COMMAND;
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync case STATUS_ACCESS_DENIED: return VERR_ACCESS_DENIED;
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync case STATUS_OBJECT_NAME_INVALID: return VERR_INVALID_NAME;
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync case STATUS_OBJECT_NAME_NOT_FOUND: return VERR_FILE_NOT_FOUND;
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync case STATUS_OBJECT_PATH_INVALID: return VERR_INVALID_NAME;
bd53394d08b77c8294f14b32dd26aa4670f888eevboxsync case STATUS_OBJECT_PATH_NOT_FOUND: return VERR_PATH_NOT_FOUND;
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync }
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync /* unknown error. */
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync AssertMsgFailed(("Unhandled error %#lx (%lu)\n", lNativeCode, lNativeCode));
7db630a55be9d955c8ac125da609b304cbcc6010vboxsync return VERR_UNRESOLVED_ERROR;
}