/*
- * Copyright (c) 2007 Apple Inc. All rights reserved.
+ * Copyright (c) 2007-2013 Apple Inc. All rights reserved.
*
* @APPLE_LICENSE_HEADER_START@
*
#include <stdlib.h>
#include <string.h>
-
-extern void __chk_fail (void) __attribute__((__noreturn__));
+#include "secure.h"
void *
__memcpy_chk (void *dest, const void *src, size_t len, size_t dstlen)
{
if (__builtin_expect (dstlen < len, 0))
- __chk_fail ();
+ __chk_fail_overflow ();
+
+ /* On OS X, memcpy has supported overlapping buffers for many years.
+ * While technically, this will catch buggy code, we should not abort.
+ * if (__chk_assert_no_overlap)
+ * __chk_overlap(dest, len, src, len);
+ */
return memcpy (dest, src, len);
}