/*------------------------------------------------------------------ * strrchr_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_str_lib.h" #else #include "safeclib_private.h" #endif /** * @def strrchr_s(dest,dmax,ch,resultp) * @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'. * Unlike strrchr() it honors dmax as maximal string length. * * @remark IMPLEMENTED IN * * @param[in] dest pointer to string to compare against * @param[in] dmax restricted maximum length of dest * @param[in] ch character to search for * @param[out] resultp pointer to char* in dest * * @pre Neither dest nor resultp shall be a null pointer. * @pre dmax shall not be 0. * @pre dmax shall not be greater than RSIZE_MAX_STR and size of dest. * @pre ch shall not be greater than 255. * * @retval EOK when successfully character found. * @retval ESNULLP when dest/resultp is a NULL pointer * @retval ESZEROL when dmax = 0 or strnlen_s = 0 * @retval ESLEMAX when dmax > RSIZE_MAX_STR 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 strrchr_s(const char *restrict dest, rsize_t dmax, const int ch, char **resultp) #else EXPORT errno_t _strrchr_s_chk(const char *restrict dest, rsize_t dmax, const int ch, char **resultp, const size_t destbos) #endif { rsize_t len; CHK_SRC_NULL("strrchr_s", resultp) *resultp = NULL; CHK_DEST_NULL("strrchr_s") CHK_DMAX_ZERO("strrchr_s") if (destbos == BOS_UNKNOWN) { CHK_DMAX_MAX("strrchr_s", RSIZE_MAX_STR) BND_CHK_PTR_BOUNDS(dest, dmax); } else if (unlikely(dmax > destbos)) { CHK_DEST_OVR("strrchr_s", destbos) } if (unlikely(ch > 255)) { invoke_safe_str_constraint_handler("strrchr_s: ch exceeds max", (void *)dest, ESLEMAX); return (ESLEMAX); } len = strnlen_s(dest, dmax); if (len) return memrchr_s(dest, dmax == len ? dmax : len + 1, ch, (void **)resultp); else return (ESZEROL); }