wcscat_s.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. * Copyright (c) Huawei Technologies Co., Ltd. 2014-2021. All rights reserved.
  3. * Licensed under Mulan PSL v2.
  4. * You can use this software according to the terms and conditions of the Mulan PSL v2.
  5. * You may obtain a copy of Mulan PSL v2 at:
  6. * http://license.coscl.org.cn/MulanPSL2
  7. * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
  8. * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
  9. * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
  10. * See the Mulan PSL v2 for more details.
  11. * Description: wcscat_s function
  12. * Create: 2014-02-25
  13. */
  14. #include "securecutil.h"
  15. /*
  16. * Befor this function, the basic parameter checking has been done
  17. */
  18. SECUREC_INLINE errno_t SecDoCatW(wchar_t *strDest, size_t destMax, const wchar_t *strSrc)
  19. {
  20. size_t destLen;
  21. size_t srcLen;
  22. size_t maxCount; /* Store the maximum available count */
  23. /* To calculate the length of a wide character, the parameter must be a wide character */
  24. SECUREC_CALC_WSTR_LEN(strDest, destMax, &destLen);
  25. maxCount = destMax - destLen;
  26. SECUREC_CALC_WSTR_LEN(strSrc, maxCount, &srcLen);
  27. if (SECUREC_CAT_STRING_IS_OVERLAP(strDest, destLen, strSrc, srcLen)) {
  28. strDest[0] = L'\0';
  29. if (strDest + destLen <= strSrc && destLen == destMax) {
  30. SECUREC_ERROR_INVALID_PARAMTER("wcscat_s");
  31. return EINVAL_AND_RESET;
  32. }
  33. SECUREC_ERROR_BUFFER_OVERLAP("wcscat_s");
  34. return EOVERLAP_AND_RESET;
  35. }
  36. if (srcLen + destLen >= destMax || strDest == strSrc) {
  37. strDest[0] = L'\0';
  38. if (destLen == destMax) {
  39. SECUREC_ERROR_INVALID_PARAMTER("wcscat_s");
  40. return EINVAL_AND_RESET;
  41. }
  42. SECUREC_ERROR_INVALID_RANGE("wcscat_s");
  43. return ERANGE_AND_RESET;
  44. }
  45. /* Copy single character length include \0 */
  46. SECUREC_MEMCPY_WARP_OPT(strDest + destLen, strSrc, (srcLen + 1) * sizeof(wchar_t));
  47. return EOK;
  48. }
  49. /*
  50. * <FUNCTION DESCRIPTION>
  51. * The wcscat_s function appends a copy of the wide string pointed to by strSrc
  52. * (including the terminating null wide character)
  53. * to the end of the wide string pointed to by strDest.
  54. * The arguments and return value of wcscat_s are wide-character strings.
  55. *
  56. * The wcscat_s function appends strSrc to strDest and terminates the resulting
  57. * string with a null character. The initial character of strSrc overwrites the
  58. * terminating null character of strDest. wcscat_s will return EOVERLAP_AND_RESET if the
  59. * source and destination strings overlap.
  60. *
  61. * Note that the second parameter is the total size of the buffer, not the
  62. * remaining size.
  63. *
  64. * <INPUT PARAMETERS>
  65. * strDest Null-terminated destination string buffer.
  66. * destMax Size of the destination string buffer.
  67. * strSrc Null-terminated source string buffer.
  68. *
  69. * <OUTPUT PARAMETERS>
  70. * strDest is updated
  71. *
  72. * <RETURN VALUE>
  73. * EOK Success
  74. * EINVAL strDest is NULL and destMax != 0 and destMax <= SECUREC_WCHAR_STRING_MAX_LEN
  75. * EINVAL_AND_RESET (strDest unterminated and all other parameters are valid) or
  76. * (strDest != NULL and strSrc is NULL and destMax != 0
  77. * and destMax <= SECUREC_WCHAR_STRING_MAX_LEN)
  78. * ERANGE destMax > SECUREC_WCHAR_STRING_MAX_LEN or destMax is 0
  79. * ERANGE_AND_RESET strDest have not enough space and all other parameters are valid and not overlap
  80. * EOVERLAP_AND_RESET dest buffer and source buffer are overlapped and all parameters are valid
  81. *
  82. * If there is a runtime-constraint violation, strDest[0] will be set to the '\0' when strDest and destMax valid
  83. */
  84. errno_t wcscat_s(wchar_t *strDest, size_t destMax, const wchar_t *strSrc)
  85. {
  86. if (destMax == 0 || destMax > SECUREC_WCHAR_STRING_MAX_LEN) {
  87. SECUREC_ERROR_INVALID_RANGE("wcscat_s");
  88. return ERANGE;
  89. }
  90. if (strDest == NULL || strSrc == NULL) {
  91. SECUREC_ERROR_INVALID_PARAMTER("wcscat_s");
  92. if (strDest != NULL) {
  93. strDest[0] = L'\0';
  94. return EINVAL_AND_RESET;
  95. }
  96. return EINVAL;
  97. }
  98. return SecDoCatW(strDest, destMax, strSrc);
  99. }