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

📄 pgpdebug.h

📁 著名的加密软件的应用于电子邮件中
💻 H
字号:
/*
 * pgpDebug.h -- Assertion macro headers
 *
 * Copyright (C) 1996,1997 Pretty Good Privacy, Inc. All rights reserved.
 *
 * $Id: pgpDebug.h,v 1.13.2.2 1997/06/07 09:50:02 mhw Exp $
 */

#ifndef PGPDEBUG_H /* [ */
#define PGPDEBUG_H

#include <stdlib.h>
#include <stdarg.h>

#ifdef WIN32
#include <crtdbg.h>
#elif !MACINTOSH
#include <stdio.h>
#endif

#if PRAGMA_IMPORT_SUPPORTED
#pragma import on
#endif

#include "pgpTypes.h"


/*
 * pgpFixBeforeShip is a macro which forces a compile error unless
 * the UNFINISHED_CODE_ALLOWED macro is non-zero.
 * Example: pgpFixBeforeShip("Does this really work?")
 */
#if UNFINISHED_CODE_ALLOWED
#define pgpFixBeforeShip(msg)
#else
#define pgpFixBeforeShip(msg)  @@@@@@ #msg @@@@@@
#endif

/*
 * DEBUG_STRUCT_CONSTRUCTOR defines a null constructor for a struct
 * which initializes the structure which all 0xDDs if DEBUG is non-zero,
 * or does nothing otherwise. It requires C++. It shouldn't be used
 * for anything with virtual methods, because it will overwrite the
 * virtual dispatch table pointer.
 * Example: struct foo { int a; DEBUG_STRUCT_CONSTRUCTOR(foo) }
 */
#if defined(__cplusplus) && DEBUG
#define DEBUG_STRUCT_CONSTRUCTOR(type)                     \
    type(void)                                             \
    {                                                      \
        pgpDebugFillMemory(this, sizeof(*this));           \
    }
#else
#define DEBUG_STRUCT_CONSTRUCTOR(type)
#endif

#ifdef __cplusplus
extern "C" {
#endif

/*
 * All the FmtMsg macros accept the following special sequences:
 *    %%  Replaced with a single '%'
 *    %c  Replaced with the char argument
 *    %s  Replaced with the C string argument
 *    %S  Replaced with the Pascal string argument
 *    %B  Replaced with the memory buffer as a string
 *        (two args: length (int), buffer)
 *    %lB Replaced with the memory buffer as a string
 *        (two args: length (long), buffer)
 *    %d  Replaced with the signed integer value (base 10)
 *    %ld Replaced with the signed long value (base 10)
 *    %u  Replaced with the unsigned integer value (base 10)
 *    %lu Replaced with the unsigned long value (base 10)
 *    %x  Replaced with the unsigned integer value (base 16)
 *    %lx Replaced with the unsigned long value (base 16)
 *    %o  Replaced with the unsigned integer value (base 8)
 *    %lo Replaced with the unsigned long value (base 8)
 *    %b  Replaced with the unsigned integer value (base 2)
 *    %lb Replaced with the unsigned long value (base 2)
 *    %p  Replaced with the pointer value, printed in hex
 */

#if DEBUG        /* [ */

#define PGP_DEBUG_BUF_SIZE    256

#if PGP_DEBUG_STACK_BUFFERS   /* [ */

#define PGP_DEBUG_ALLOC_BUF                                         \
        uchar  pgpaBuf[PGP_DEBUG_BUF_SIZE];                         \
        int   pgpaBufSize = sizeof(pgpaBuf);
#define PGP_DEBUG_DEALLOC_BUF

#else

#define PGP_DEBUG_NUM_BUFS    2

#define PGP_DEBUG_ALLOC_BUF                                         \
        int   pgpaBufSize = PGP_DEBUG_BUF_SIZE;                     \
        uchar  *pgpaBuf = (pgpaDebugBufStack -= PGP_DEBUG_BUF_SIZE);
#define PGP_DEBUG_DEALLOC_BUF                                       \
        pgpaDebugBufStack += PGP_DEBUG_BUF_SIZE;
extern PGPExport uchar  pgpaDebugBuf[PGP_DEBUG_BUF_SIZE * PGP_DEBUG_NUM_BUFS];
extern PGPExport uchar *  pgpaDebugBufStack;

#endif  /* ] PGP_DEBUG_STACK_BUFFERS */


#if MACINTOSH      /* [ */

#define pgpDebugPStr(pStr)    DebugStr(pStr)
#define pgpDebugHybridStr(hStr) pgpDebugPStr(hStr)
#define pgpDebugMsg(message)                                        \
        do                                                          \
        {                                                           \
            uchar  PGP__msg_buf[256];                               \
                                                                    \
            pgpFormatPStr(PGP__msg_buf, sizeof(PGP__msg_buf),       \
                            TRUE, "%s", (message));                 \
            pgpDebugPStr(PGP__msg_buf);                             \
        } while (0)

#elif defined(WIN32)  /* ] [ */

#define pgpDebugMsg(message)                                        \
        do                                                          \
        {                                                           \
            if (_CrtDbgReport(_CRT_ASSERT, NULL, 0, NULL, "\r\n%s", \
                                            (message))==1)          \
                _CrtDbgBreak();                                     \
        } while (0)


#define pgpDebugHybridStr(hStr) pgpDebugMsg((char *)(hStr) + 1)

#else  /* ] [ */

#define pgpDebugMsg(message)                                        \
        do                                                          \
        {                                                           \
            fprintf(stderr, "%s\n", (char *)(message));             \
            pgpDebugHook();                                         \
        } while (0)
#define pgpDebugHybridStr(hStr) pgpDebugMsg((char *)(hStr) + 1)

#endif  /* ] */

#define pgpDebugFmtMsg(params)                                      \
        do                                                          \
        {                                                           \
            uchar  pgpaBuf[256];                                    \
            int    pgpaBufSize = sizeof(pgpaBuf);                   \
                                                                    \
            pgpDebugHybridStr(pgpDebugFormatHStr params);           \
        } while (0)

#define pgpDebugMsgIf(condition, message)                           \
        do                                                          \
        {                                                           \
            if (condition)                                          \
            pgpDebugMsg(message);                                   \
        } while (0)

/*
 * The first couple parameters which must always be
 * passed as the beginning of a format list.
 */
#define pgpaFmtPrefix                                               \
        pgpaBuf, pgpaBufSize

/*
 * The general pgpa command to check a condition and
 * print out a formatted message if it's not true.
 */
#if !MACINTOSH  /* [ */

#define pgpaFailIf(condition, params)                               \
        ((void)(pgpaFailed || !(condition) ||                       \
        ((pgpaFailed = TRUE), (pgpDebugFormatHStr params))))

#else  /* ] !MACINTOSH [ */

/* XXX: This is a workaround for a CW11 68k codegen bug */
#define pgpaFailIf(condition, params)                               \
        ((void)(pgpaFailed || !((condition) ? 1 : 0) ||             \
        ((pgpaFailed = TRUE), (pgpDebugFormatHStr params))))

#endif  /* ] !MACINTOSH */

/*
 * A simple pgpa command to assert a given condition.
 */
#define pgpaAssert(condition)                                       \
        pgpaFailIf(!(condition),                                    \
        (pgpaFmtPrefix, "(%s) not true", #condition))

/*
 * Used to add more formatted information to an assertion failure
 */
#define pgpaFmtMsg(params)                                          \
        ((void)(pgpaFailed && (pgpDebugPrefixFormatHStr params)))
#define pgpaMsg(message)                                            \
        pgpaFmtMsg((pgpaFmtPrefix, "%s", message))

/*
 * The first couple parameters which must always be
 * passed as the beginning of a pgpaCall parameter list.
 */
#define pgpaCallPrefix                                              \
        pgpaBuf, pgpaBufSize, pgpaFailed
#define pgpaCallPrefixDef                                           \
    uchar *pgpaBuf, int pgpaBufSize, Boolean pgpaFailed

/*
 * The general pgpa command to call a pgpa-style function.
 */
#define pgpaCall(function, params)                                  \
        ((void)(pgpaFailed || ((pgpaFailed = (function params)) != FALSE)))

/*
 * The main pgpa macro from which all the pgpa
 * macros must be used as parameters.
 */
#define pgpa(assertions)                                            \
        do                                                          \
        {                                                           \
            Boolean   pgpaFailed = FALSE;                           \
            PGP_DEBUG_ALLOC_BUF                                     \
                                                                    \
            (assertions);                                           \
            pgpaFmtMsg((pgpaFmtPrefix,                              \
                    "ASSERTION FAILED at %s line %ld",              \
                    __FILE__, (long)__LINE__));                     \
            if (pgpaFailed)                                         \
                pgpDebugHybridStr(pgpaBuf);                         \
            PGP_DEBUG_DEALLOC_BUF                                   \
        } while (0)

#define pgpaAddrValid(addr, pointedAtType)                          \
        pgpaCall(pgpaInternalAddrValid,                             \
                (pgpaCallPrefix, addr, alignof(pointedAtType), #addr))

#define pgpaStrLenValid(str, minLen, maxLen)                        \
        pgpaCall(pgpaInternalStrLenValid,                           \
                (pgpaCallPrefix, str, minLen, maxLen, #str))
#define pgpaPStrLenValid(pstr, minLen, maxLen)                      \
        pgpaCall(pgpaInternalPStrLenValid,                          \
                (pgpaCallPrefix, pstr, minLen, maxLen, #pstr))

/* pgpaStrValid currently assumes an arbitrary reasonable length */
#define pgpaStrValid(str)                                           \
        pgpaStrLenValid(str, 0, 32767)
#define pgpaPStrValid(pstr)                                         \
        pgpaPStrLenValid(pstr, 0, 255)

#else /* ] DEBUG [ */

#define pgpa(assertions)
#define pgpDebugMsgIf(cond, msg)
#define pgpDebugPStr(pStr)
#define pgpDebugFmtMsg(params)
#define pgpDebugMsg(msg)

#endif /* ] DEBUG */

/*
 * Convenient short-hands follow
 */

#define pgpAssert(condition)                                        \
        pgpa(pgpaAssert(condition))
#define pgpAssertMsg(condition, message)                            \
        pgpa((                                                      \
            pgpaAssert(condition),                                  \
            pgpaMsg(message)))

#define pgpAssertAddrValid(ptr, type)                               \
        pgpa(pgpaAddrValid(ptr, type))
#define pgpAssertAddrValidMsg(ptr, type, message)                   \
        pgpa((                                                      \
            pgpaAddrValid(ptr, type),                               \
            pgpaMsg(message)))

#define pgpAssertStrLenValid(str, minLen, maxLen)                   \
        pgpa(pgpaStrLenValid(str, minLen, maxLen))
#define pgpAssertStrLenValidMsg(str, minLen, maxLen, message)       \
        pgpa((                                                      \
            pgpaStrLenValid(str, minLen, maxLen),                   \
            pgpaMsg(message)))

#define pgpAssertPStrLenValid(pstr, minLen, maxLen)                 \
        pgpa(pgpaPStrLenValid(pstr, minLen, maxLen))
#define pgpAssertPStrLenValidMsg(pstr, minLen, maxLen, message)     \
        pgpa((                                                      \
            pgpaPStrLenValid(pstr, minLen, maxLen),                 \
            pgpaMsg(message)))

#define pgpAssertStrValid(str)                                      \
        pgpa(pgpaStrValid(str))
#define pgpAssertStrValidMsg(str, msg)                              \
        pgpa((                                                      \
            pgpaStrValid(str, minLen, maxLen),                      \
            pgpaMsg(message)))

#define pgpAssertPStrValid(pstr)                                    \
        pgpa(pgpaPStrValid(pstr))
#define pgpAssertPStrValidMsg(pstr, message)                        \
        pgpa((                                                      \
            pgpaPStrValid(pstr, minLen, maxLen),                    \
            pgpaMsg(message)))

int         pgpFormatVAStr(uchar *buffer, int bufferSize,
                        Boolean putLengthPrefix, Boolean putNullTerminator,
                        Boolean canonicalizeNLs, char const *formatStr,
                        va_list args);
uchar *     pgpFormatHStr(uchar *buffer, int bufferSize,
                        Boolean canonicalizeNLs, char const *formatStr, ...);
uchar *     pgpFormatPStr(uchar *buffer, int bufferSize,
                        Boolean canonicalizeNLs, char const *formatStr, ...);
uchar *     pgpFormatPStr255(uchar *buffer, Boolean canonicalizeNLs,
                        char const *formatStr, ...);
char *      pgpFormatStr(char *buffer, int bufferSize, Boolean canonicalizeNLs,
                        char const *formatStr, ...);

#if DEBUG  /* [ */

uchar PGPExport *       pgpDebugFormatHStr(uchar *buffer, int bufferSize,
                        char const *formatStr, ...);
uchar PGPExport *       pgpDebugPrefixFormatHStr(uchar *buffer,
                        int bufferSize, char const *formatStr, ...);

/*
 * These are internal routines which should only be called by the above macros
 */
void PGPExport      pgpDebugFillMemory(void *buffer, size_t length);
Boolean PGPExport   pgpaInternalAddrValid(pgpaCallPrefixDef,
                                    void const *addr, int alignSize,
                                    char const *varName);
Boolean PGPExport   pgpaInternalStrLenValid(pgpaCallPrefixDef,
                                    char const *str, ulong minLen,
                                    ulong maxLen, char const *varName);
Boolean PGPExport   pgpaInternalPStrLenValid(pgpaCallPrefixDef,
                                    uchar const *str, int minLen,
                                    int maxLen, char const *varName);

/*
 * Except on the Mac, when debugger messages are printed or assertions
 * fail, this routine will always be called. Its only purpose is to be
 * used as a breakpoint location, to catch failed assertions from the
 * debugger.
 */
void        pgpDebugHook(void);

#endif /* ] DEBUG */

#ifdef __cplusplus
}
#endif

#if PRAGMA_IMPORT_SUPPORTED
#pragma import reset
#endif


#endif /* ] PGPDEBUG_H */

/*
 * Local Variables:
 * tab-width: 4
 * End:
 * vi: ts=4 sw=4
 * vim: si
 */

⌨️ 快捷键说明

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