/*------------------------------------------------------------------ * memrchr_s.c * * September 2017, Reini Urban * * Copyright (c) 2017 by 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" #endif #ifdef HAVE_MEMRCHR #ifndef _ISOC11_SOURCE extern void *memrchr(const void *, int, size_t); #endif #endif /** * @def memrchr_s(dest,dmax,ch,result) * @brief * Finds the last occurrence of ch (after conversion to char as if by * (char)ch) in the null-terminated byte string pointed to by dest (each * character interpreted as unsigned char). The terminating null character * is considered to be a part of the string and can be found when searching * for '\0'. * * @remark IMPLEMENTED IN * * @param[in] dest pointer to string buffer to compare against * @param[in] dmax restricted maximum length of dest * @param[in] ch character to search for * @param[out] result pointer to char* in dest * * @pre Neither dest nor result 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 ch shall not be greater than 255 * * @retval EOK when the character was successfully found. * @retval ESNULLP when dest/result is a NULL pointer * @retval ESZEROL when dmax = 0 * @retval ESLEMAX when dmax > RSIZE_MAX_MEM or ch > 255 * @retval EOVERFLOW when dmax > size of dest (optionally, when the compiler * knows the object_size statically) * @retval ESLEWRNG when dmax != size of dest and --enable-error-dmax * @retval ESNOTFND when ch not found in dest * * @see * memrchr_s(), strchr_s(), memchr_s(), strspn_s(), strstr_s() * */ #ifdef FOR_DOXYGEN errno_t memrchr_s(const void *restrict dest, rsize_t dmax, const int ch, void **result) #else EXPORT errno_t _memrchr_s_chk(const void *restrict dest, rsize_t dmax, const int ch, void **result, const size_t destbos) #endif { if (unlikely(result == NULL)) { invoke_safe_str_constraint_handler("memrchr_s: result is null", NULL, ESNULLP); return (ESNULLP); } *result = NULL; CHK_DEST_MEM_NULL("memrchr_s") CHK_DMAX_MEM_ZERO("memrchr_s") if (destbos == BOS_UNKNOWN) { CHK_DMAX_MEM_MAX("memrchr_s", RSIZE_MAX_MEM) BND_CHK_PTR_BOUNDS(dest, dmax); } else { CHK_DEST_MEM_OVR("memrchr_s", destbos) } if (unlikely(ch > 255)) { invoke_safe_str_constraint_handler("memrchr_s: ch exceeds max", NULL, ESLEMAX); return (ESLEMAX); } #ifdef HAVE_MEMRCHR /* compares wordwise */ *result = (void *)memrchr((const void *)dest, ch, (size_t)dmax); if (!*result) return (ESNOTFND); return (EOK); #else { const uint8_t *s = (uint8_t *)dest; uint8_t u8 = (uint8_t)ch; while (dmax--) { if (s[dmax] == u8) { *result = (void *)&s[dmax]; return (EOK); } } } return (ESNOTFND); #endif }