ENH: missed two files

This commit is contained in:
Amul Shah 2012-07-02 09:47:25 -04:00
parent 0246551a56
commit ab79a1f44b
2 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,35 @@
/****************************************************************
* *
* Copyright 2012 Fidelity Information Services, Inc *
* *
* This source code contains the intellectual property *
* of its copyright holder(s), and is made available *
* under a license. If you do not know the terms of *
* the license, please stop and do not read further. *
* *
****************************************************************/
#include "mdef.h"
#define BYPASS_MEMCPY_OVERRIDE /* Want to run original system memcpy() here */
#include "gtm_string.h"
#include "gtm_memcpy_validate_and_execute.h"
#ifdef DEBUG /* Is only a debugging routine - nothing to see here for a production build - move along */
/* Identify memcpy() invocations that should be memmove() instead. If this routine assert fails, the arguments
* overlap so should be converted to memmove(). One exception to that rule which is currently bypassed is when
* source and target are equal. There are no known implementation of memcpy() that would break in such a
* condition so since at least two of these currently exist in GT.M (one in gtmcrypt.h on UNIX and one in
* mu_cre_file on VMS), this routine does not cause an assert fail in that case.
*/
void *gtm_memcpy_validate_and_execute(void *target, const void *src, size_t len)
{
if (target == src) /* Allow special case to go through but avoid actual memcpy() call */
return target;
assert(((char *)(target) > (char *)(src))
? ((char *)(target) >= ((char *)(src) + (len)))
: ((char *)(src) >= ((char *)(target) + (len))));
return memcpy(target, src, len);
}
#endif

View File

@ -0,0 +1,17 @@
/****************************************************************
* *
* Copyright 2012 Fidelity Information Services, Inc *
* *
* This source code contains the intellectual property *
* of its copyright holder(s), and is made available *
* under a license. If you do not know the terms of *
* the license, please stop and do not read further. *
* *
****************************************************************/
#ifndef GTM_MVAE_INCLUDED
#define GTM_MVAE_INCLUDED
void *gtm_memcpy_validate_and_execute(void *target, const void *src, size_t len);
#endif