📄 bnimem.c
字号:
/*
* bnimem.c - low-level bignum memory handling.
*
* Written by Colin Plumb
*
* $Id: bnimem.c,v 1.8 1997/12/19 19:09:20 lloyd Exp $
*
* Note that in all cases, the pointers passed around
* are pointers to the *least* significant end of the word.
* On big-endian machines, these are pointers to the *end*
* of the allocated range.
*
* BNSECURE is a simple level of security; for more security
* change these function to use locked unswappable memory.
*/
#include "pgpConfig.h"
#include "pgpMem.h"
/*
* Some compilers complain about #if FOO if FOO isn't defined,
* so do the ANSI-mandated thing explicitly...
*/
#ifndef NO_STDLIB_H
#define NO_STDLIB_H 0
#endif
#ifndef NO_STRING_H
#define NO_STRING_H 0
#endif
#ifndef HAVE_STRINGS_H
#define HAVE_STRINGS_H 0
#endif
#ifndef NEED_MEMORY_H
#define NEED_MEMORY_H 0
#endif
#if !NO_STDLIB_H
#include <stdlib.h> /* For malloc() & co. */
#else
void *malloc();
void *realloc();
void free();
#endif
#if !NO_STRING_H
#include <string.h> /* For memset */
#elif HAVE_STRINGS_H
#include <strings.h>
#endif
#if NEED_MEMORY_H
#include <memory.h>
#endif
#ifndef DBMALLOC
#define DBMALLOC 0
#endif
#if DBMALLOC
/* Development debugging */
#include "../dbmalloc/malloc.h"
#endif
#include "bni.h"
#include "bnimem.h"
#include "bnkludge.h"
#ifndef bniMemWipe
void
bniMemWipe(void *ptr, unsigned bytes)
{
pgpClearMemory(ptr, bytes);
}
#define bniMemWipe(ptr, bytes) pgpClearMemory(ptr, bytes)
#endif
#ifndef bniMemAlloc
void *
bniMemAlloc(
PGPMemoryMgrRef mgr,
PGPBoolean secure,
PGPUInt32 bytes)
{
if ( secure )
return( PGPNewSecureData( mgr, bytes, 0 ) );
return PGPNewData( mgr, bytes, 0);
}
#endif
#ifndef bniMemFree
void
bniMemFree(void *ptr, unsigned bytes)
{
bniMemWipe(ptr, bytes);
PGPFreeData( ptr );
}
#endif
#ifndef bniRealloc
#if defined(bniMemRealloc) || !BNSECURE
this version does not use PGPMemoryMgrRef
void *
bniRealloc(void *ptr, unsigned oldbytes, unsigned newbytes)
{
if (ptr) {
BIG(ptr = (char *)ptr - oldbytes;)
if (newbytes < oldbytes)
memmove(ptr, (char *)ptr + oldbytes-newbytes,
oldbytes);
}
#ifdef bniMemRealloc
ptr = bniMemRealloc(ptr, oldbytes, newbytes);
#else
ptr = realloc(ptr, newbytes);
#endif
if (ptr) {
if (newbytes > oldbytes)
memmove((char *)ptr + newbytes-oldbytes, ptr,
oldbytes);
BIG(ptr = (char *)ptr + newbytes;)
}
return ptr;
}
#else /* BNSECURE */
void *
bniRealloc(
PGPMemoryMgrRef mgr,
PGPBoolean secure,
void * oldptr,
unsigned oldbytes,
unsigned newbytes)
{
void *newptr = bniMemAlloc( mgr, secure, newbytes);
if ( IsNull( newptr ) )
return newptr;
if ( IsNull( oldptr ) )
return BIGLITTLE((char *)newptr+newbytes, newptr);
/*
* The following copies are a bit non-obvious in the big-endian case
* because one of the pointers points to the *end* of allocated memory.
*/
if (newbytes > oldbytes) { /* Copy all of old into part of new */
BIG(newptr = (char *)newptr + newbytes;)
BIG(oldptr = (char *)oldptr - oldbytes;)
memcpy(BIGLITTLE((char *)newptr-oldbytes, newptr), oldptr,
oldbytes);
} else { /* Copy part of old into all of new */
memcpy(newptr, BIGLITTLE((char *)oldptr-newbytes, oldptr),
newbytes);
BIG(newptr = (char *)newptr + newbytes;)
BIG(oldptr = (char *)oldptr - oldbytes;)
}
bniMemFree(oldptr, oldbytes);
return newptr;
}
#endif /* BNSECURE */
#endif /* !bniRealloc */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -