/*------------------------------------------------------------------ * memmove_s.c * * October 2008, Bo Berry * October 2017, Reini Urban * * Copyright (c) 2008-2011 Cisco Systems * Copyright (c) 2017 Reini Urban * All rights reserved. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limitation the rights to use, * copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following * conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. *------------------------------------------------------------------ */ #ifdef FOR_DOXYGEN #include "safe_mem_lib.h" #else #include "safeclib_private.h" #include "mem/mem_primitives_lib.h" #endif #if defined(TEST_MSVCRT) && defined(HAVE_MEMMOVE_S) #else /** * @def memmove_s(dest,dmax,src,slen) * @brief * The \b memmove_s function copies \c slen bytes from the region pointed to * by \c src into the region pointed to by \c dest. If slen is zero, the * function does nothing. * @details * This copying takes place as if the slen bytes from the region pointed * to by src are first copied into a temporary array of slen bytes that does * not overlap the region pointed to by dest or src, and then the slen * bytes from the temporary array are copied into the object region to by * dest. * * @remark SPECIFIED IN * * C11 standard (ISO/IEC 9899:2011): * K.3.7.1.2 The memmove_s function (p: 615) * http://en.cppreference.com/w/c/string/byte/memmove * * ISO/IEC TR 24731, Programming languages, environments * and system software interfaces, Extensions to the C Library, * Part I: Bounds-checking interfaces * * @param[out] dest pointer to the memory that will be replaced by src. * @param[in] dmax maximum length of the resulting dest, in bytes * @param[in] src pointer to the memory that will be copied to dest * @param[in] slen maximum number bytes of src that can be copied * * @pre Neither dest nor src shall be a null pointer. * @pre dmax shall not be 0. * @pre dmax shall not be greater than RSIZE_MAX_MEM and size of dest. * @pre slen shall not be greater than RSIZE_MAX_MEM and size of src. * @pre slen shall not be greater than dmax. * * @note C11 uses RSIZE_MAX, not RSIZE_MAX_MEM. * * @return If there is a runtime-constraint violation, the memmove_s function * stores zeros in the first dmax characters of the region pointed to * by dest if dest is not a null pointer and dmax is valid. * @retval EOK when operation is successful or slen = 0 * @retval ESNULLP when dest/src is NULL POINTER * @retval ESZEROL when dmax = 0 * @retval ESLEMAX when dmax/slen > RSIZE_MAX_MEM * @retval EOVERFLOW when dmax/slen > size of dest/src (optionally, when the * compiler knows the object_size statically) * @retval ESLEWRNG when dmax != size of dest and --enable-error-dmax * @retval ESNOSPC when dmax < slen * * @see * memmove16_s(), memmove32_s(), memcpy_s(), memcpy16_s() memcpy32_s() * */ #ifdef FOR_DOXYGEN errno_t memmove_s(void *dest, rsize_t dmax, const void *src, rsize_t slen) #else EXPORT errno_t _memmove_s_chk(void *dest, rsize_t dmax, const void *src, rsize_t slen, const size_t destbos, const size_t srcbos) #endif { uint8_t *dp; const uint8_t *sp; dp = (uint8_t *)dest; sp = (uint8_t *)src; /* Note that MSVC checks this at very first. We do also now */ if (unlikely(slen == 0)) { /* Since C11 n=0 is allowed */ return EOK; } CHK_DEST_MEM_NULL("memmove_s") CHK_DMAX_MEM_ZERO("memmove_s") if (destbos == BOS_UNKNOWN) { CHK_DMAX_MEM_MAX("memmove_s", RSIZE_MAX_MEM) BND_CHK_PTR_BOUNDS(dest, dmax); BND_CHK_PTR_BOUNDS(dest, slen); } else { CHK_DEST_MEM_OVR("memmove_s", destbos) /* Note: unlike to memset_s, we don't set dmax to destbos */ } CHK_SRC_MEM_NULL_CLEAR("memmove_s", src) CHK_SLEN_MEM_MAX_NOSPC_CLEAR("memmove_s", slen, RSIZE_MAX_MEM) /* if (unlikely(slen > dmax)) { errno_t rc = slen > RSIZE_MAX_MEM ? ESLEMAX : ESNOSPC; mem_prim_set(dp, dmax, 0); MEMORY_BARRIER; invoke_safe_mem_constraint_handler("memmove_s: slen exceeds max", dest, rc); return (RCNEGATE(rc)); } */ if (srcbos == BOS_UNKNOWN) { BND_CHK_PTR_BOUNDS(src, slen); } else if (unlikely(slen > srcbos)) { invoke_safe_mem_constraint_handler("memmove_s: slen exceeds src", (void *)src, EOVERFLOW); return (RCNEGATE(EOVERFLOW)); } /* now perform the copy, with overlap allowed */ mem_prim_move(dp, sp, slen); return (RCNEGATE(EOK)); } #ifdef __KERNEL__ EXPORT_SYMBOL(_memmove_s_chk); #endif #endif