securec.h 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629
  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: The user of this secure c library should include this header file in you source code.
  12. * This header file declare all supported API prototype of the library,
  13. * such as memcpy_s, strcpy_s, wcscpy_s,strcat_s, strncat_s, sprintf_s, scanf_s, and so on.
  14. * Create: 2014-02-25
  15. * Notes: Do not modify this file by yourself.
  16. */
  17. #ifndef SECUREC_H_5D13A042_DC3F_4ED9_A8D1_882811274C27
  18. #define SECUREC_H_5D13A042_DC3F_4ED9_A8D1_882811274C27
  19. #include "securectype.h"
  20. #ifndef SECUREC_HAVE_STDARG_H
  21. #define SECUREC_HAVE_STDARG_H 1
  22. #endif
  23. #if SECUREC_HAVE_STDARG_H
  24. #include <stdarg.h>
  25. #endif
  26. #ifndef SECUREC_HAVE_ERRNO_H
  27. #define SECUREC_HAVE_ERRNO_H 1
  28. #endif
  29. /* EINVAL ERANGE may defined in errno.h */
  30. #if SECUREC_HAVE_ERRNO_H
  31. #if SECUREC_IN_KERNEL
  32. #include <linux/errno.h>
  33. #else
  34. #include <errno.h>
  35. #endif
  36. #endif
  37. /* Define error code */
  38. #if defined(SECUREC_NEED_ERRNO_TYPE) || !defined(__STDC_WANT_LIB_EXT1__) || \
  39. (defined(__STDC_WANT_LIB_EXT1__) && (!__STDC_WANT_LIB_EXT1__))
  40. #ifndef SECUREC_DEFINED_ERRNO_TYPE
  41. #define SECUREC_DEFINED_ERRNO_TYPE
  42. /* Just check whether macrodefinition exists. */
  43. #ifndef errno_t
  44. typedef int errno_t;
  45. #endif
  46. #endif
  47. #endif
  48. /* Success */
  49. #ifndef EOK
  50. #define EOK 0
  51. #endif
  52. #ifndef EINVAL
  53. /* The src buffer is not correct and destination buffer can not be reset */
  54. #define EINVAL 22
  55. #endif
  56. #ifndef EINVAL_AND_RESET
  57. /* Once the error is detected, the dest buffer must be reset! Value is 22 or 128 */
  58. #define EINVAL_AND_RESET 150
  59. #endif
  60. #ifndef ERANGE
  61. /* The destination buffer is not long enough and destination buffer can not be reset */
  62. #define ERANGE 34
  63. #endif
  64. #ifndef ERANGE_AND_RESET
  65. /* Once the error is detected, the dest buffer must be reset! Value is 34 or 128 */
  66. #define ERANGE_AND_RESET 162
  67. #endif
  68. #ifndef EOVERLAP_AND_RESET
  69. /* Once the buffer overlap is detected, the dest buffer must be reset! Value is 54 or 128 */
  70. #define EOVERLAP_AND_RESET 182
  71. #endif
  72. /* If you need export the function of this library in Win32 dll, use __declspec(dllexport) */
  73. #ifndef SECUREC_API
  74. #if defined(SECUREC_DLL_EXPORT)
  75. #define SECUREC_API __declspec(dllexport)
  76. #elif defined(SECUREC_DLL_IMPORT)
  77. #define SECUREC_API __declspec(dllimport)
  78. #else
  79. /*
  80. * Standardized function declaration. If a security function is declared in the your code,
  81. * it may cause a compilation alarm,Please delete the security function you declared.
  82. * Adding extern under windows will cause the system to have inline functions to expand,
  83. * so do not add the extern in default
  84. */
  85. #if defined(_MSC_VER)
  86. #define SECUREC_API
  87. #else
  88. #define SECUREC_API extern
  89. #endif
  90. #endif
  91. #endif
  92. #ifdef __cplusplus
  93. extern "C" {
  94. #endif
  95. /*
  96. * Description: The GetHwSecureCVersion function get SecureC Version string and version number.
  97. * Parameter: verNumber - to store version number (for example value is 0x500 | 0xa)
  98. * Return: version string
  99. */
  100. SECUREC_API const char *GetHwSecureCVersion(unsigned short *verNumber);
  101. #if SECUREC_ENABLE_MEMSET
  102. /*
  103. * Description: The memset_s function copies the value of c (converted to an unsigned char) into each of
  104. * the first count characters of the object pointed to by dest.
  105. * Parameter: dest - destination address
  106. * Parameter: destMax - The maximum length of destination buffer
  107. * Parameter: c - the value to be copied
  108. * Parameter: count - copies count bytes of value to dest
  109. * Return: EOK if there was no runtime-constraint violation
  110. */
  111. SECUREC_API errno_t memset_s(void *dest, size_t destMax, int c, size_t count);
  112. #endif
  113. #ifndef SECUREC_ONLY_DECLARE_MEMSET
  114. #define SECUREC_ONLY_DECLARE_MEMSET 0
  115. #endif
  116. #if !SECUREC_ONLY_DECLARE_MEMSET
  117. #if SECUREC_ENABLE_MEMMOVE
  118. /*
  119. * Description: The memmove_s function copies n characters from the object pointed to by src
  120. * into the object pointed to by dest.
  121. * Parameter: dest - destination address
  122. * Parameter: destMax - The maximum length of destination buffer
  123. * Parameter: src - source address
  124. * Parameter: count - copies count bytes from the src
  125. * Return: EOK if there was no runtime-constraint violation
  126. */
  127. SECUREC_API errno_t memmove_s(void *dest, size_t destMax, const void *src, size_t count);
  128. #endif
  129. #if SECUREC_ENABLE_MEMCPY
  130. /*
  131. * Description: The memcpy_s function copies n characters from the object pointed to
  132. * by src into the object pointed to by dest.
  133. * Parameter: dest - destination address
  134. * Parameter: destMax - The maximum length of destination buffer
  135. * Parameter: src - source address
  136. * Parameter: count - copies count bytes from the src
  137. * Return: EOK if there was no runtime-constraint violation
  138. */
  139. SECUREC_API errno_t memcpy_s(void *dest, size_t destMax, const void *src, size_t count);
  140. #endif
  141. #if SECUREC_ENABLE_STRCPY
  142. /*
  143. * Description: The strcpy_s function copies the string pointed to by strSrc (including
  144. * the terminating null character) into the array pointed to by strDest
  145. * Parameter: strDest - destination address
  146. * Parameter: destMax - The maximum length of destination buffer(including the terminating null character)
  147. * Parameter: strSrc - source address
  148. * Return: EOK if there was no runtime-constraint violation
  149. */
  150. SECUREC_API errno_t strcpy_s(char *strDest, size_t destMax, const char *strSrc);
  151. #endif
  152. #if SECUREC_ENABLE_STRNCPY
  153. /*
  154. * Description: The strncpy_s function copies not more than n successive characters (not including
  155. * the terminating null character) from the array pointed to by strSrc to the array pointed to by strDest.
  156. * Parameter: strDest - destination address
  157. * Parameter: destMax - The maximum length of destination buffer(including the terminating null character)
  158. * Parameter: strSrc - source address
  159. * Parameter: count - copies count characters from the src
  160. * Return: EOK if there was no runtime-constraint violation
  161. */
  162. SECUREC_API errno_t strncpy_s(char *strDest, size_t destMax, const char *strSrc, size_t count);
  163. #endif
  164. #if SECUREC_ENABLE_STRCAT
  165. /*
  166. * Description: The strcat_s function appends a copy of the string pointed to by strSrc (including
  167. * the terminating null character) to the end of the string pointed to by strDest.
  168. * Parameter: strDest - destination address
  169. * Parameter: destMax - The maximum length of destination buffer(including the terminating null wide character)
  170. * Parameter: strSrc - source address
  171. * Return: EOK if there was no runtime-constraint violation
  172. */
  173. SECUREC_API errno_t strcat_s(char *strDest, size_t destMax, const char *strSrc);
  174. #endif
  175. #if SECUREC_ENABLE_STRNCAT
  176. /*
  177. * Description: The strncat_s function appends not more than n successive characters (not including
  178. * the terminating null character)
  179. * from the array pointed to by strSrc to the end of the string pointed to by strDest.
  180. * Parameter: strDest - destination address
  181. * Parameter: destMax - The maximum length of destination buffer(including the terminating null character)
  182. * Parameter: strSrc - source address
  183. * Parameter: count - copies count characters from the src
  184. * Return: EOK if there was no runtime-constraint violation
  185. */
  186. SECUREC_API errno_t strncat_s(char *strDest, size_t destMax, const char *strSrc, size_t count);
  187. #endif
  188. #if SECUREC_ENABLE_VSPRINTF
  189. /*
  190. * Description: The vsprintf_s function is equivalent to the vsprintf function except for the parameter destMax
  191. * and the explicit runtime-constraints violation
  192. * Parameter: strDest - produce output according to a format,write to the character string strDest.
  193. * Parameter: destMax - The maximum length of destination buffer(including the terminating null wide character)
  194. * Parameter: format - format string
  195. * Parameter: argList - instead of a variable number of arguments
  196. * Return: the number of characters printed(not including the terminating null byte '\0'),
  197. * If an error occurred Return: -1.
  198. */
  199. SECUREC_API int vsprintf_s(char *strDest, size_t destMax, const char *format,
  200. va_list argList) SECUREC_ATTRIBUTE(3, 0);
  201. #endif
  202. #if SECUREC_ENABLE_SPRINTF
  203. /*
  204. * Description: The sprintf_s function is equivalent to the sprintf function except for the parameter destMax
  205. * and the explicit runtime-constraints violation
  206. * Parameter: strDest - produce output according to a format ,write to the character string strDest.
  207. * Parameter: destMax - The maximum length of destination buffer(including the terminating null byte '\0')
  208. * Parameter: format - format string
  209. * Return: the number of characters printed(not including the terminating null byte '\0'),
  210. * If an error occurred Return: -1.
  211. */
  212. SECUREC_API int sprintf_s(char *strDest, size_t destMax, const char *format, ...) SECUREC_ATTRIBUTE(3, 4);
  213. #endif
  214. #if SECUREC_ENABLE_VSNPRINTF
  215. /*
  216. * Description: The vsnprintf_s function is equivalent to the vsnprintf function except for
  217. * the parameter destMax/count and the explicit runtime-constraints violation
  218. * Parameter: strDest - produce output according to a format ,write to the character string strDest.
  219. * Parameter: destMax - The maximum length of destination buffer(including the terminating null byte '\0')
  220. * Parameter: count - do not write more than count bytes to strDest(not including the terminating null byte '\0')
  221. * Parameter: format - format string
  222. * Parameter: argList - instead of a variable number of arguments
  223. * Return: the number of characters printed(not including the terminating null byte '\0'),
  224. * If an error occurred Return: -1.Pay special attention to returning -1 when truncation occurs.
  225. */
  226. SECUREC_API int vsnprintf_s(char *strDest, size_t destMax, size_t count, const char *format,
  227. va_list argList) SECUREC_ATTRIBUTE(4, 0);
  228. #endif
  229. #if SECUREC_ENABLE_SNPRINTF
  230. /*
  231. * Description: The snprintf_s function is equivalent to the snprintf function except for
  232. * the parameter destMax/count and the explicit runtime-constraints violation
  233. * Parameter: strDest - produce output according to a format ,write to the character string strDest.
  234. * Parameter: destMax - The maximum length of destination buffer(including the terminating null byte '\0')
  235. * Parameter: count - do not write more than count bytes to strDest(not including the terminating null byte '\0')
  236. * Parameter: format - format string
  237. * Return: the number of characters printed(not including the terminating null byte '\0'),
  238. * If an error occurred Return: -1.Pay special attention to returning -1 when truncation occurs.
  239. */
  240. SECUREC_API int snprintf_s(char *strDest, size_t destMax, size_t count, const char *format,
  241. ...) SECUREC_ATTRIBUTE(4, 5);
  242. #endif
  243. #if SECUREC_SNPRINTF_TRUNCATED
  244. /*
  245. * Description: The vsnprintf_truncated_s function is equivalent to the vsnprintf_s function except
  246. * no count parameter and return value
  247. * Parameter: strDest - produce output according to a format ,write to the character string strDest
  248. * Parameter: destMax - The maximum length of destination buffer(including the terminating null byte '\0')
  249. * Parameter: format - format string
  250. * Parameter: argList - instead of a variable number of arguments
  251. * Return: the number of characters printed(not including the terminating null byte '\0'),
  252. * If an error occurred Return: -1.Pay special attention to returning destMax - 1 when truncation occurs
  253. */
  254. SECUREC_API int vsnprintf_truncated_s(char *strDest, size_t destMax, const char *format,
  255. va_list argList) SECUREC_ATTRIBUTE(3, 0);
  256. /*
  257. * Description: The snprintf_truncated_s function is equivalent to the snprintf_s function except
  258. * no count parameter and return value
  259. * Parameter: strDest - produce output according to a format,write to the character string strDest.
  260. * Parameter: destMax - The maximum length of destination buffer(including the terminating null byte '\0')
  261. * Parameter: format - format string
  262. * Return: the number of characters printed(not including the terminating null byte '\0'),
  263. * If an error occurred Return: -1.Pay special attention to returning destMax - 1 when truncation occurs.
  264. */
  265. SECUREC_API int snprintf_truncated_s(char *strDest, size_t destMax,
  266. const char *format, ...) SECUREC_ATTRIBUTE(3, 4);
  267. #endif
  268. #if SECUREC_ENABLE_SCANF
  269. /*
  270. * Description: The scanf_s function is equivalent to fscanf_s with the argument stdin
  271. * interposed before the arguments to scanf_s
  272. * Parameter: format - format string
  273. * Return: the number of input items assigned, If an error occurred Return: -1.
  274. */
  275. SECUREC_API int scanf_s(const char *format, ...);
  276. #endif
  277. #if SECUREC_ENABLE_VSCANF
  278. /*
  279. * Description: The vscanf_s function is equivalent to scanf_s, with the variable argument list replaced by argList
  280. * Parameter: format - format string
  281. * Parameter: argList - instead of a variable number of arguments
  282. * Return: the number of input items assigned, If an error occurred Return: -1.
  283. */
  284. SECUREC_API int vscanf_s(const char *format, va_list argList);
  285. #endif
  286. #if SECUREC_ENABLE_SSCANF
  287. /*
  288. * Description: The sscanf_s function is equivalent to fscanf_s, except that input is obtained from a
  289. * string (specified by the argument buffer) rather than from a stream
  290. * Parameter: buffer - read character from buffer
  291. * Parameter: format - format string
  292. * Return: the number of input items assigned, If an error occurred Return: -1.
  293. */
  294. SECUREC_API int sscanf_s(const char *buffer, const char *format, ...);
  295. #endif
  296. #if SECUREC_ENABLE_VSSCANF
  297. /*
  298. * Description: The vsscanf_s function is equivalent to sscanf_s, with the variable argument list
  299. * replaced by argList
  300. * Parameter: buffer - read character from buffer
  301. * Parameter: format - format string
  302. * Parameter: argList - instead of a variable number of arguments
  303. * Return: the number of input items assigned, If an error occurred Return: -1.
  304. */
  305. SECUREC_API int vsscanf_s(const char *buffer, const char *format, va_list argList);
  306. #endif
  307. #if SECUREC_ENABLE_FSCANF
  308. /*
  309. * Description: The fscanf_s function is equivalent to fscanf except that the c, s, and [ conversion specifiers
  310. * apply to a pair of arguments (unless assignment suppression is indicated by a *)
  311. * Parameter: stream - stdio file stream
  312. * Parameter: format - format string
  313. * Return: the number of input items assigned, If an error occurred Return: -1.
  314. */
  315. SECUREC_API int fscanf_s(FILE *stream, const char *format, ...);
  316. #endif
  317. #if SECUREC_ENABLE_VFSCANF
  318. /*
  319. * Description: The vfscanf_s function is equivalent to fscanf_s, with the variable argument list
  320. * replaced by argList
  321. * Parameter: stream - stdio file stream
  322. * Parameter: format - format string
  323. * Parameter: argList - instead of a variable number of arguments
  324. * Return: the number of input items assigned, If an error occurred Return: -1.
  325. */
  326. SECUREC_API int vfscanf_s(FILE *stream, const char *format, va_list argList);
  327. #endif
  328. #if SECUREC_ENABLE_STRTOK
  329. /*
  330. * Description: The strtok_s function parses a string into a sequence of strToken,
  331. * replace all characters in strToken string that match to strDelimit set with 0.
  332. * On the first call to strtok_s the string to be parsed should be specified in strToken.
  333. * In each subsequent call that should parse the same string, strToken should be NULL
  334. * Parameter: strToken - the string to be delimited
  335. * Parameter: strDelimit - specifies a set of characters that delimit the tokens in the parsed string
  336. * Parameter: context - is a pointer to a char * variable that is used internally by strtok_s function
  337. * Return: On the first call returns the address of the first non \0 character, otherwise NULL is returned.
  338. * In subsequent calls, the strtoken is set to NULL, and the context set is the same as the previous call,
  339. * return NULL if the *context string length is equal 0, otherwise return *context.
  340. */
  341. SECUREC_API char *strtok_s(char *strToken, const char *strDelimit, char **context);
  342. #endif
  343. #if SECUREC_ENABLE_GETS && !SECUREC_IN_KERNEL
  344. /*
  345. * Description: The gets_s function reads at most one less than the number of characters specified
  346. * by destMax from the stream pointed to by stdin, into the array pointed to by buffer
  347. * Parameter: buffer - destination address
  348. * Parameter: destMax - The maximum length of destination buffer(including the terminating null character)
  349. * Return: buffer if there was no runtime-constraint violation,If an error occurred Return: NULL.
  350. */
  351. SECUREC_API char *gets_s(char *buffer, size_t destMax);
  352. #endif
  353. #if SECUREC_ENABLE_WCHAR_FUNC
  354. #if SECUREC_ENABLE_MEMCPY
  355. /*
  356. * Description: The wmemcpy_s function copies n successive wide characters from the object pointed to
  357. * by src into the object pointed to by dest.
  358. * Parameter: dest - destination address
  359. * Parameter: destMax - The maximum length of destination buffer
  360. * Parameter: src - source address
  361. * Parameter: count - copies count wide characters from the src
  362. * Return: EOK if there was no runtime-constraint violation
  363. */
  364. SECUREC_API errno_t wmemcpy_s(wchar_t *dest, size_t destMax, const wchar_t *src, size_t count);
  365. #endif
  366. #if SECUREC_ENABLE_MEMMOVE
  367. /*
  368. * Description: The wmemmove_s function copies n successive wide characters from the object
  369. * pointed to by src into the object pointed to by dest.
  370. * Parameter: dest - destination address
  371. * Parameter: destMax - The maximum length of destination buffer
  372. * Parameter: src - source address
  373. * Parameter: count - copies count wide characters from the src
  374. * Return: EOK if there was no runtime-constraint violation
  375. */
  376. SECUREC_API errno_t wmemmove_s(wchar_t *dest, size_t destMax, const wchar_t *src, size_t count);
  377. #endif
  378. #if SECUREC_ENABLE_STRCPY
  379. /*
  380. * Description: The wcscpy_s function copies the wide string pointed to by strSrc(including the terminating
  381. * null wide character) into the array pointed to by strDest
  382. * Parameter: strDest - destination address
  383. * Parameter: destMax - The maximum length of destination buffer
  384. * Parameter: strSrc - source address
  385. * Return: EOK if there was no runtime-constraint violation
  386. */
  387. SECUREC_API errno_t wcscpy_s(wchar_t *strDest, size_t destMax, const wchar_t *strSrc);
  388. #endif
  389. #if SECUREC_ENABLE_STRNCPY
  390. /*
  391. * Description: The wcsncpy_s function copies not more than n successive wide characters (not including the
  392. * terminating null wide character) from the array pointed to by strSrc to the array pointed to by strDest
  393. * Parameter: strDest - destination address
  394. * Parameter: destMax - The maximum length of destination buffer(including the terminating wide character)
  395. * Parameter: strSrc - source address
  396. * Parameter: count - copies count wide characters from the src
  397. * Return: EOK if there was no runtime-constraint violation
  398. */
  399. SECUREC_API errno_t wcsncpy_s(wchar_t *strDest, size_t destMax, const wchar_t *strSrc, size_t count);
  400. #endif
  401. #if SECUREC_ENABLE_STRCAT
  402. /*
  403. * Description: The wcscat_s function appends a copy of the wide string pointed to by strSrc (including the
  404. * terminating null wide character) to the end of the wide string pointed to by strDest
  405. * Parameter: strDest - destination address
  406. * Parameter: destMax - The maximum length of destination buffer(including the terminating wide character)
  407. * Parameter: strSrc - source address
  408. * Return: EOK if there was no runtime-constraint violation
  409. */
  410. SECUREC_API errno_t wcscat_s(wchar_t *strDest, size_t destMax, const wchar_t *strSrc);
  411. #endif
  412. #if SECUREC_ENABLE_STRNCAT
  413. /*
  414. * Description: The wcsncat_s function appends not more than n successive wide characters (not including the
  415. * terminating null wide character) from the array pointed to by strSrc to the end of the wide string pointed to
  416. * by strDest.
  417. * Parameter: strDest - destination address
  418. * Parameter: destMax - The maximum length of destination buffer(including the terminating wide character)
  419. * Parameter: strSrc - source address
  420. * Parameter: count - copies count wide characters from the src
  421. * Return: EOK if there was no runtime-constraint violation
  422. */
  423. SECUREC_API errno_t wcsncat_s(wchar_t *strDest, size_t destMax, const wchar_t *strSrc, size_t count);
  424. #endif
  425. #if SECUREC_ENABLE_STRTOK
  426. /*
  427. * Description: The wcstok_s function is the wide-character equivalent of the strtok_s function
  428. * Parameter: strToken - the string to be delimited
  429. * Parameter: strDelimit - specifies a set of characters that delimit the tokens in the parsed string
  430. * Parameter: context - is a pointer to a char * variable that is used internally by strtok_s function
  431. * Return: a pointer to the first character of a token, or a null pointer if there is no token
  432. * or there is a runtime-constraint violation.
  433. */
  434. SECUREC_API wchar_t *wcstok_s(wchar_t *strToken, const wchar_t *strDelimit, wchar_t **context);
  435. #endif
  436. #if SECUREC_ENABLE_VSPRINTF
  437. /*
  438. * Description: The vswprintf_s function is the wide-character equivalent of the vsprintf_s function
  439. * Parameter: strDest - produce output according to a format,write to the character string strDest
  440. * Parameter: destMax - The maximum length of destination buffer(including the terminating null)
  441. * Parameter: format - format string
  442. * Parameter: argList - instead of a variable number of arguments
  443. * Return: the number of characters printed(not including the terminating null wide character),
  444. * If an error occurred Return: -1.
  445. */
  446. SECUREC_API int vswprintf_s(wchar_t *strDest, size_t destMax, const wchar_t *format, va_list argList);
  447. #endif
  448. #if SECUREC_ENABLE_SPRINTF
  449. /*
  450. * Description: The swprintf_s function is the wide-character equivalent of the sprintf_s function
  451. * Parameter: strDest - produce output according to a format,write to the character string strDest
  452. * Parameter: destMax - The maximum length of destination buffer(including the terminating null)
  453. * Parameter: format - format string
  454. * Return: the number of characters printed(not including the terminating null wide character),
  455. * If an error occurred Return: -1.
  456. */
  457. SECUREC_API int swprintf_s(wchar_t *strDest, size_t destMax, const wchar_t *format, ...);
  458. #endif
  459. #if SECUREC_ENABLE_FSCANF
  460. /*
  461. * Description: The fwscanf_s function is the wide-character equivalent of the fscanf_s function
  462. * Parameter: stream - stdio file stream
  463. * Parameter: format - format string
  464. * Return: the number of input items assigned, If an error occurred Return: -1.
  465. */
  466. SECUREC_API int fwscanf_s(FILE *stream, const wchar_t *format, ...);
  467. #endif
  468. #if SECUREC_ENABLE_VFSCANF
  469. /*
  470. * Description: The vfwscanf_s function is the wide-character equivalent of the vfscanf_s function
  471. * Parameter: stream - stdio file stream
  472. * Parameter: format - format string
  473. * Parameter: argList - instead of a variable number of arguments
  474. * Return: the number of input items assigned, If an error occurred Return: -1.
  475. */
  476. SECUREC_API int vfwscanf_s(FILE *stream, const wchar_t *format, va_list argList);
  477. #endif
  478. #if SECUREC_ENABLE_SCANF
  479. /*
  480. * Description: The wscanf_s function is the wide-character equivalent of the scanf_s function
  481. * Parameter: format - format string
  482. * Return: the number of input items assigned, If an error occurred Return: -1.
  483. */
  484. SECUREC_API int wscanf_s(const wchar_t *format, ...);
  485. #endif
  486. #if SECUREC_ENABLE_VSCANF
  487. /*
  488. * Description: The vwscanf_s function is the wide-character equivalent of the vscanf_s function
  489. * Parameter: format - format string
  490. * Parameter: argList - instead of a variable number of arguments
  491. * Return: the number of input items assigned, If an error occurred Return: -1.
  492. */
  493. SECUREC_API int vwscanf_s(const wchar_t *format, va_list argList);
  494. #endif
  495. #if SECUREC_ENABLE_SSCANF
  496. /*
  497. * Description: The swscanf_s function is the wide-character equivalent of the sscanf_s function
  498. * Parameter: buffer - read character from buffer
  499. * Parameter: format - format string
  500. * Return: the number of input items assigned, If an error occurred Return: -1.
  501. */
  502. SECUREC_API int swscanf_s(const wchar_t *buffer, const wchar_t *format, ...);
  503. #endif
  504. #if SECUREC_ENABLE_VSSCANF
  505. /*
  506. * Description: The vswscanf_s function is the wide-character equivalent of the vsscanf_s function
  507. * Parameter: buffer - read character from buffer
  508. * Parameter: format - format string
  509. * Parameter: argList - instead of a variable number of arguments
  510. * Return: the number of input items assigned, If an error occurred Return: -1.
  511. */
  512. SECUREC_API int vswscanf_s(const wchar_t *buffer, const wchar_t *format, va_list argList);
  513. #endif
  514. #endif /* SECUREC_ENABLE_WCHAR_FUNC */
  515. #endif
  516. /* Those functions are used by macro,must declare hare, also for without function declaration warning */
  517. extern errno_t strncpy_error(char *strDest, size_t destMax, const char *strSrc, size_t count);
  518. extern errno_t strcpy_error(char *strDest, size_t destMax, const char *strSrc);
  519. #if SECUREC_WITH_PERFORMANCE_ADDONS
  520. /* Those functions are used by macro */
  521. extern errno_t memset_sOptAsm(void *dest, size_t destMax, int c, size_t count);
  522. extern errno_t memset_sOptTc(void *dest, size_t destMax, int c, size_t count);
  523. extern errno_t memcpy_sOptAsm(void *dest, size_t destMax, const void *src, size_t count);
  524. extern errno_t memcpy_sOptTc(void *dest, size_t destMax, const void *src, size_t count);
  525. /* The strcpy_sp is a macro, not a function in performance optimization mode. */
  526. #define strcpy_sp(dest, destMax, src) ((__builtin_constant_p((destMax)) && \
  527. __builtin_constant_p((src))) ? \
  528. SECUREC_STRCPY_SM((dest), (destMax), (src)) : \
  529. strcpy_s((dest), (destMax), (src)))
  530. /* The strncpy_sp is a macro, not a function in performance optimization mode. */
  531. #define strncpy_sp(dest, destMax, src, count) ((__builtin_constant_p((count)) && \
  532. __builtin_constant_p((destMax)) && \
  533. __builtin_constant_p((src))) ? \
  534. SECUREC_STRNCPY_SM((dest), (destMax), (src), (count)) : \
  535. strncpy_s((dest), (destMax), (src), (count)))
  536. /* The strcat_sp is a macro, not a function in performance optimization mode. */
  537. #define strcat_sp(dest, destMax, src) ((__builtin_constant_p((destMax)) && \
  538. __builtin_constant_p((src))) ? \
  539. SECUREC_STRCAT_SM((dest), (destMax), (src)) : \
  540. strcat_s((dest), (destMax), (src)))
  541. /* The strncat_sp is a macro, not a function in performance optimization mode. */
  542. #define strncat_sp(dest, destMax, src, count) ((__builtin_constant_p((count)) && \
  543. __builtin_constant_p((destMax)) && \
  544. __builtin_constant_p((src))) ? \
  545. SECUREC_STRNCAT_SM((dest), (destMax), (src), (count)) : \
  546. strncat_s((dest), (destMax), (src), (count)))
  547. /* The memcpy_sp is a macro, not a function in performance optimization mode. */
  548. #define memcpy_sp(dest, destMax, src, count) (__builtin_constant_p((count)) ? \
  549. (SECUREC_MEMCPY_SM((dest), (destMax), (src), (count))) : \
  550. (__builtin_constant_p((destMax)) ? \
  551. (((size_t)(destMax) > 0 && \
  552. (((unsigned long long)(destMax) & (unsigned long long)(-2)) < SECUREC_MEM_MAX_LEN)) ? \
  553. memcpy_sOptTc((dest), (destMax), (src), (count)) : ERANGE) : \
  554. memcpy_sOptAsm((dest), (destMax), (src), (count))))
  555. /* The memset_sp is a macro, not a function in performance optimization mode. */
  556. #define memset_sp(dest, destMax, c, count) (__builtin_constant_p((count)) ? \
  557. (SECUREC_MEMSET_SM((dest), (destMax), (c), (count))) : \
  558. (__builtin_constant_p((destMax)) ? \
  559. (((((unsigned long long)(destMax) & (unsigned long long)(-2)) < SECUREC_MEM_MAX_LEN)) ? \
  560. memset_sOptTc((dest), (destMax), (c), (count)) : ERANGE) : \
  561. memset_sOptAsm((dest), (destMax), (c), (count))))
  562. #endif
  563. #ifdef __cplusplus
  564. }
  565. #endif
  566. #endif