⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 isbad.c

📁 winNT技术操作系统,国外开放的原代码和LIUX一样
💻 C
字号:
/*
 * PROJECT:         ReactOS Win32 Base API
 * LICENSE:         GPL - See COPYING in the top level directory
 * FILE:            dll/win32/kernel32/mem/isbad.c
 * PURPOSE:         Handles probing of memory addresses
 * PROGRAMMERS:     Alex Ionescu (alex.ionescu@reactos.org)
 *                  Thomas Weidenmueller (w3seek@reactos.org)
 */

/* INCLUDES ******************************************************************/

#include <k32.h>

#define NDEBUG
#include "debug.h"

extern SYSTEM_BASIC_INFORMATION BaseCachedSysInfo;

/* FUNCTIONS *****************************************************************/

/*
 * @implemented
 */
BOOL
STDCALL
IsBadReadPtr(IN LPCVOID lp,
             IN UINT_PTR ucb)
{
    ULONG PageSize;
    BOOLEAN Result = FALSE;
    volatile CHAR *Current;
    PCHAR Last;

    /* Quick cases */
    if (!ucb) return FALSE;
    if (!lp) return TRUE;

    /* Get the page size */
    PageSize = BaseCachedSysInfo.PageSize;

    /* Calculate the last page */
    Last = (PCHAR)((ULONG_PTR)lp + ucb - 1);

    /* Another quick failure case */
    if ((ULONG_PTR)Last < (ULONG_PTR)lp) return TRUE;

    /* Enter SEH */
    _SEH_TRY
    {
        /* Probe the entire range */
        Current = (volatile CHAR*)lp;
        Last = (PCHAR)(PAGE_ROUND_DOWN(Last));
        do
        {
            *Current;
            Current = (volatile CHAR*)(PAGE_ROUND_DOWN(Current) + PAGE_SIZE);
        } while (Current <= Last);
    }
    _SEH_HANDLE
    {
        /* We hit an exception, so return true */
        Result = TRUE;
    }
    _SEH_END

    /* Return exception status */
    return Result;
}

/*
 * @implemented
 */
BOOL
NTAPI
IsBadHugeReadPtr(LPCVOID lp,
                 UINT_PTR ucb)
{
    /* Implementation is the same on 32-bit */
    return IsBadReadPtr(lp, ucb);
}

/*
 * @implemented
 */
BOOL
NTAPI
IsBadCodePtr(FARPROC lpfn)
{
    /* Executing has the same privileges as reading */
    return IsBadReadPtr((LPVOID)lpfn, 1);
}

/*
 * @implemented
 */
BOOL
NTAPI
IsBadWritePtr(LPVOID lp,
              UINT_PTR ucb)
{
    ULONG PageSize;
    BOOLEAN Result = FALSE;
    volatile CHAR *Current;
    PCHAR Last;

    /* Quick cases */
    if (!ucb) return FALSE;
    if (!lp) return TRUE;

    /* Get the page size */
    PageSize = BaseCachedSysInfo.PageSize;

    /* Calculate the last page */
    Last = (PCHAR)((ULONG_PTR)lp + ucb - 1);

    /* Another quick failure case */
    if ((ULONG_PTR)Last < (ULONG_PTR)lp) return TRUE;

    /* Enter SEH */
    _SEH_TRY
    {
        /* Probe the entire range */
        Current = (volatile CHAR*)lp;
        Last = (PCHAR)(PAGE_ROUND_DOWN(Last));
        do
        {
            *Current = *Current;
            Current = (volatile CHAR*)(PAGE_ROUND_DOWN(Current) + PAGE_SIZE);
        } while (Current <= Last);
    }
    _SEH_HANDLE
    {
        /* We hit an exception, so return true */
        Result = TRUE;
    }
    _SEH_END

    /* Return exception status */
    return Result;
}

/*
 * @implemented
 */
BOOL
NTAPI
IsBadHugeWritePtr(LPVOID lp,
                  UINT_PTR ucb)
{
    /* Implementation is the same on 32-bit */
    return IsBadWritePtr(lp, ucb);
}

/*
 * @implemented
 */
BOOL
NTAPI
IsBadStringPtrW(IN LPCWSTR lpsz,
                UINT_PTR ucchMax)
{
    BOOLEAN Result = FALSE;
    volatile WCHAR *Current;
    PWCHAR Last;
    WCHAR Char;

    /* Quick cases */
    if (!ucchMax) return FALSE;
    if (!lpsz) return TRUE;

    /* Calculate the last page */
    Last = (PWCHAR)((ULONG_PTR)lpsz + (ucchMax * 2) - 2);

    /* Another quick failure case */
    if ((ULONG_PTR)Last < (ULONG_PTR)lpsz) return TRUE;

    /* Enter SEH */
    _SEH_TRY
    {
        /* Probe the entire range */
        Current = (volatile WCHAR*)lpsz;
        Last = (PWCHAR)(PAGE_ROUND_DOWN(Last));
        do
        {
            Char = *Current;
            Current++;
        } while (Char && (Current <= Last));
    }
    _SEH_HANDLE
    {
        /* We hit an exception, so return true */
        Result = TRUE;
    }
    _SEH_END

    /* Return exception status */
    return Result;
}

/*
 * @implemented
 */
BOOL
NTAPI
IsBadStringPtrA(IN LPCSTR lpsz,
                UINT_PTR ucchMax)
{
    BOOLEAN Result = FALSE;
    volatile CHAR *Current;
    PCHAR Last;
    CHAR Char;

    /* Quick cases */
    if (!ucchMax) return FALSE;
    if (!lpsz) return TRUE;

    /* Calculate the last page */
    Last = (PCHAR)((ULONG_PTR)lpsz + ucchMax - 1);

    /* Another quick failure case */
    if ((ULONG_PTR)Last < (ULONG_PTR)lpsz) return TRUE;

    /* Enter SEH */
    _SEH_TRY
    {
        /* Probe the entire range */
        Current = (volatile CHAR*)lpsz;
        Last = (PCHAR)(PAGE_ROUND_DOWN(Last));
        do
        {
            Char = *Current;
            Current++;
        } while (Char && (Current <= Last));
    }
    _SEH_HANDLE
    {
        /* We hit an exception, so return true */
        Result = TRUE;
    }
    _SEH_END

    /* Return exception status */
    return Result;
}

/* EOF */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -