memset_s.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510
  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: memset_s function
  12. * Create: 2014-02-25
  13. */
  14. /*
  15. * [Standardize-exceptions] Use unsafe function: Portability
  16. * [reason] Use unsafe function to implement security function to maintain platform compatibility.
  17. * And sufficient input validation is performed before calling
  18. */
  19. #include "securecutil.h"
  20. #define SECUREC_MEMSET_PARAM_OK(dest, destMax, count) (SECUREC_LIKELY((destMax) <= SECUREC_MEM_MAX_LEN && \
  21. (dest) != NULL && (count) <= (destMax)))
  22. #if SECUREC_WITH_PERFORMANCE_ADDONS
  23. /* Use union to clear strict-aliasing warning */
  24. typedef union {
  25. SecStrBuf32 buf32;
  26. SecStrBuf31 buf31;
  27. SecStrBuf30 buf30;
  28. SecStrBuf29 buf29;
  29. SecStrBuf28 buf28;
  30. SecStrBuf27 buf27;
  31. SecStrBuf26 buf26;
  32. SecStrBuf25 buf25;
  33. SecStrBuf24 buf24;
  34. SecStrBuf23 buf23;
  35. SecStrBuf22 buf22;
  36. SecStrBuf21 buf21;
  37. SecStrBuf20 buf20;
  38. SecStrBuf19 buf19;
  39. SecStrBuf18 buf18;
  40. SecStrBuf17 buf17;
  41. SecStrBuf16 buf16;
  42. SecStrBuf15 buf15;
  43. SecStrBuf14 buf14;
  44. SecStrBuf13 buf13;
  45. SecStrBuf12 buf12;
  46. SecStrBuf11 buf11;
  47. SecStrBuf10 buf10;
  48. SecStrBuf9 buf9;
  49. SecStrBuf8 buf8;
  50. SecStrBuf7 buf7;
  51. SecStrBuf6 buf6;
  52. SecStrBuf5 buf5;
  53. SecStrBuf4 buf4;
  54. SecStrBuf3 buf3;
  55. SecStrBuf2 buf2;
  56. } SecStrBuf32Union;
  57. /* C standard initializes the first member of the consortium. */
  58. static const SecStrBuf32 g_allZero = {{
  59. 0U, 0U, 0U, 0U, 0U, 0U, 0U, 0U,
  60. 0U, 0U, 0U, 0U, 0U, 0U, 0U, 0U,
  61. 0U, 0U, 0U, 0U, 0U, 0U, 0U, 0U,
  62. 0U, 0U, 0U, 0U, 0U, 0U, 0U, 0U
  63. }};
  64. static const SecStrBuf32 g_allFF = {{
  65. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  66. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  67. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  68. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF
  69. }};
  70. /* Clear conversion warning strict aliasing" */
  71. SECUREC_INLINE const SecStrBuf32Union *SecStrictAliasingCast(const SecStrBuf32 *buf)
  72. {
  73. return (const SecStrBuf32Union *)buf;
  74. }
  75. #ifndef SECUREC_MEMSET_THRESHOLD_SIZE
  76. #define SECUREC_MEMSET_THRESHOLD_SIZE 32UL
  77. #endif
  78. #define SECUREC_UNALIGNED_SET(dest, c, count) do { \
  79. unsigned char *pDest_ = (unsigned char *)(dest); \
  80. switch (count) { \
  81. case 32: \
  82. *(pDest_++) = (unsigned char)(c); \
  83. /* fall-through */ /* FALLTHRU */ \
  84. case 31: \
  85. *(pDest_++) = (unsigned char)(c); \
  86. /* fall-through */ /* FALLTHRU */ \
  87. case 30: \
  88. *(pDest_++) = (unsigned char)(c); \
  89. /* fall-through */ /* FALLTHRU */ \
  90. case 29: \
  91. *(pDest_++) = (unsigned char)(c); \
  92. /* fall-through */ /* FALLTHRU */ \
  93. case 28: \
  94. *(pDest_++) = (unsigned char)(c); \
  95. /* fall-through */ /* FALLTHRU */ \
  96. case 27: \
  97. *(pDest_++) = (unsigned char)(c); \
  98. /* fall-through */ /* FALLTHRU */ \
  99. case 26: \
  100. *(pDest_++) = (unsigned char)(c); \
  101. /* fall-through */ /* FALLTHRU */ \
  102. case 25: \
  103. *(pDest_++) = (unsigned char)(c); \
  104. /* fall-through */ /* FALLTHRU */ \
  105. case 24: \
  106. *(pDest_++) = (unsigned char)(c); \
  107. /* fall-through */ /* FALLTHRU */ \
  108. case 23: \
  109. *(pDest_++) = (unsigned char)(c); \
  110. /* fall-through */ /* FALLTHRU */ \
  111. case 22: \
  112. *(pDest_++) = (unsigned char)(c); \
  113. /* fall-through */ /* FALLTHRU */ \
  114. case 21: \
  115. *(pDest_++) = (unsigned char)(c); \
  116. /* fall-through */ /* FALLTHRU */ \
  117. case 20: \
  118. *(pDest_++) = (unsigned char)(c); \
  119. /* fall-through */ /* FALLTHRU */ \
  120. case 19: \
  121. *(pDest_++) = (unsigned char)(c); \
  122. /* fall-through */ /* FALLTHRU */ \
  123. case 18: \
  124. *(pDest_++) = (unsigned char)(c); \
  125. /* fall-through */ /* FALLTHRU */ \
  126. case 17: \
  127. *(pDest_++) = (unsigned char)(c); \
  128. /* fall-through */ /* FALLTHRU */ \
  129. case 16: \
  130. *(pDest_++) = (unsigned char)(c); \
  131. /* fall-through */ /* FALLTHRU */ \
  132. case 15: \
  133. *(pDest_++) = (unsigned char)(c); \
  134. /* fall-through */ /* FALLTHRU */ \
  135. case 14: \
  136. *(pDest_++) = (unsigned char)(c); \
  137. /* fall-through */ /* FALLTHRU */ \
  138. case 13: \
  139. *(pDest_++) = (unsigned char)(c); \
  140. /* fall-through */ /* FALLTHRU */ \
  141. case 12: \
  142. *(pDest_++) = (unsigned char)(c); \
  143. /* fall-through */ /* FALLTHRU */ \
  144. case 11: \
  145. *(pDest_++) = (unsigned char)(c); \
  146. /* fall-through */ /* FALLTHRU */ \
  147. case 10: \
  148. *(pDest_++) = (unsigned char)(c); \
  149. /* fall-through */ /* FALLTHRU */ \
  150. case 9: \
  151. *(pDest_++) = (unsigned char)(c); \
  152. /* fall-through */ /* FALLTHRU */ \
  153. case 8: \
  154. *(pDest_++) = (unsigned char)(c); \
  155. /* fall-through */ /* FALLTHRU */ \
  156. case 7: \
  157. *(pDest_++) = (unsigned char)(c); \
  158. /* fall-through */ /* FALLTHRU */ \
  159. case 6: \
  160. *(pDest_++) = (unsigned char)(c); \
  161. /* fall-through */ /* FALLTHRU */ \
  162. case 5: \
  163. *(pDest_++) = (unsigned char)(c); \
  164. /* fall-through */ /* FALLTHRU */ \
  165. case 4: \
  166. *(pDest_++) = (unsigned char)(c); \
  167. /* fall-through */ /* FALLTHRU */ \
  168. case 3: \
  169. *(pDest_++) = (unsigned char)(c); \
  170. /* fall-through */ /* FALLTHRU */ \
  171. case 2: \
  172. *(pDest_++) = (unsigned char)(c); \
  173. /* fall-through */ /* FALLTHRU */ \
  174. case 1: \
  175. *(pDest_++) = (unsigned char)(c); \
  176. /* fall-through */ /* FALLTHRU */ \
  177. default: \
  178. /* Do nothing */ \
  179. break; \
  180. } \
  181. } SECUREC_WHILE_ZERO
  182. #define SECUREC_SET_VALUE_BY_STRUCT(dest, dataName, n) do { \
  183. *(SecStrBuf##n *)(dest) = *(const SecStrBuf##n *)(&((SecStrictAliasingCast(&(dataName)))->buf##n)); \
  184. } SECUREC_WHILE_ZERO
  185. #define SECUREC_ALIGNED_SET_OPT_ZERO_FF(dest, c, count) do { \
  186. switch (c) { \
  187. case 0: \
  188. switch (count) { \
  189. case 1: \
  190. *(unsigned char *)(dest) = (unsigned char)0; \
  191. break; \
  192. case 2: \
  193. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 2); \
  194. break; \
  195. case 3: \
  196. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 3); \
  197. break; \
  198. case 4: \
  199. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 4); \
  200. break; \
  201. case 5: \
  202. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 5); \
  203. break; \
  204. case 6: \
  205. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 6); \
  206. break; \
  207. case 7: \
  208. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 7); \
  209. break; \
  210. case 8: \
  211. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 8); \
  212. break; \
  213. case 9: \
  214. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 9); \
  215. break; \
  216. case 10: \
  217. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 10); \
  218. break; \
  219. case 11: \
  220. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 11); \
  221. break; \
  222. case 12: \
  223. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 12); \
  224. break; \
  225. case 13: \
  226. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 13); \
  227. break; \
  228. case 14: \
  229. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 14); \
  230. break; \
  231. case 15: \
  232. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 15); \
  233. break; \
  234. case 16: \
  235. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 16); \
  236. break; \
  237. case 17: \
  238. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 17); \
  239. break; \
  240. case 18: \
  241. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 18); \
  242. break; \
  243. case 19: \
  244. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 19); \
  245. break; \
  246. case 20: \
  247. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 20); \
  248. break; \
  249. case 21: \
  250. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 21); \
  251. break; \
  252. case 22: \
  253. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 22); \
  254. break; \
  255. case 23: \
  256. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 23); \
  257. break; \
  258. case 24: \
  259. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 24); \
  260. break; \
  261. case 25: \
  262. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 25); \
  263. break; \
  264. case 26: \
  265. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 26); \
  266. break; \
  267. case 27: \
  268. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 27); \
  269. break; \
  270. case 28: \
  271. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 28); \
  272. break; \
  273. case 29: \
  274. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 29); \
  275. break; \
  276. case 30: \
  277. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 30); \
  278. break; \
  279. case 31: \
  280. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 31); \
  281. break; \
  282. case 32: \
  283. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 32); \
  284. break; \
  285. default: \
  286. /* Do nothing */ \
  287. break; \
  288. } \
  289. break; \
  290. case 0xFF: \
  291. switch (count) { \
  292. case 1: \
  293. *(unsigned char *)(dest) = (unsigned char)0xffU; \
  294. break; \
  295. case 2: \
  296. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 2); \
  297. break; \
  298. case 3: \
  299. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 3); \
  300. break; \
  301. case 4: \
  302. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 4); \
  303. break; \
  304. case 5: \
  305. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 5); \
  306. break; \
  307. case 6: \
  308. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 6); \
  309. break; \
  310. case 7: \
  311. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 7); \
  312. break; \
  313. case 8: \
  314. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 8); \
  315. break; \
  316. case 9: \
  317. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 9); \
  318. break; \
  319. case 10: \
  320. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 10); \
  321. break; \
  322. case 11: \
  323. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 11); \
  324. break; \
  325. case 12: \
  326. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 12); \
  327. break; \
  328. case 13: \
  329. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 13); \
  330. break; \
  331. case 14: \
  332. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 14); \
  333. break; \
  334. case 15: \
  335. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 15); \
  336. break; \
  337. case 16: \
  338. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 16); \
  339. break; \
  340. case 17: \
  341. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 17); \
  342. break; \
  343. case 18: \
  344. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 18); \
  345. break; \
  346. case 19: \
  347. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 19); \
  348. break; \
  349. case 20: \
  350. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 20); \
  351. break; \
  352. case 21: \
  353. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 21); \
  354. break; \
  355. case 22: \
  356. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 22); \
  357. break; \
  358. case 23: \
  359. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 23); \
  360. break; \
  361. case 24: \
  362. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 24); \
  363. break; \
  364. case 25: \
  365. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 25); \
  366. break; \
  367. case 26: \
  368. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 26); \
  369. break; \
  370. case 27: \
  371. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 27); \
  372. break; \
  373. case 28: \
  374. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 28); \
  375. break; \
  376. case 29: \
  377. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 29); \
  378. break; \
  379. case 30: \
  380. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 30); \
  381. break; \
  382. case 31: \
  383. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 31); \
  384. break; \
  385. case 32: \
  386. SECUREC_SET_VALUE_BY_STRUCT((dest), g_allFF, 32); \
  387. break; \
  388. default: \
  389. /* Do nothing */ \
  390. break; \
  391. } \
  392. break; \
  393. default: \
  394. SECUREC_UNALIGNED_SET((dest), (c), (count)); \
  395. break; \
  396. } /* END switch */ \
  397. } SECUREC_WHILE_ZERO
  398. #define SECUREC_SMALL_MEM_SET(dest, c, count) do { \
  399. if (SECUREC_ADDR_ALIGNED_8((dest))) { \
  400. SECUREC_ALIGNED_SET_OPT_ZERO_FF((dest), (c), (count)); \
  401. } else { \
  402. SECUREC_UNALIGNED_SET((dest), (c), (count)); \
  403. } \
  404. } SECUREC_WHILE_ZERO
  405. /*
  406. * Performance optimization
  407. */
  408. #define SECUREC_MEMSET_OPT(dest, c, count) do { \
  409. if ((count) > SECUREC_MEMSET_THRESHOLD_SIZE) { \
  410. SECUREC_MEMSET_PREVENT_DSE((dest), (c), (count)); \
  411. } else { \
  412. SECUREC_SMALL_MEM_SET((dest), (c), (count)); \
  413. } \
  414. } SECUREC_WHILE_ZERO
  415. #endif
  416. /*
  417. * Handling errors
  418. */
  419. SECUREC_INLINE errno_t SecMemsetError(void *dest, size_t destMax, int c)
  420. {
  421. /* Check destMax is 0 compatible with _sp macro */
  422. if (destMax == 0 || destMax > SECUREC_MEM_MAX_LEN) {
  423. SECUREC_ERROR_INVALID_RANGE("memset_s");
  424. return ERANGE;
  425. }
  426. if (dest == NULL) {
  427. SECUREC_ERROR_INVALID_PARAMTER("memset_s");
  428. return EINVAL;
  429. }
  430. SECUREC_MEMSET_PREVENT_DSE(dest, c, destMax); /* Set entire buffer to value c */
  431. SECUREC_ERROR_INVALID_RANGE("memset_s");
  432. return ERANGE_AND_RESET;
  433. }
  434. /*
  435. * <FUNCTION DESCRIPTION>
  436. * The memset_s function copies the value of c (converted to an unsigned char)
  437. * into each of the first count characters of the object pointed to by dest.
  438. *
  439. * <INPUT PARAMETERS>
  440. * dest Pointer to destination.
  441. * destMax The size of the buffer.
  442. * c Character to set.
  443. * count Number of characters.
  444. *
  445. * <OUTPUT PARAMETERS>
  446. * dest buffer is updated.
  447. *
  448. * <RETURN VALUE>
  449. * EOK Success
  450. * EINVAL dest == NULL and destMax != 0 and destMax <= SECUREC_MEM_MAX_LEN
  451. * ERANGE destMax > SECUREC_MEM_MAX_LEN or (destMax is 0 and count > destMax)
  452. * ERANGE_AND_RESET count > destMax and destMax != 0 and destMax <= SECUREC_MEM_MAX_LEN and dest != NULL
  453. *
  454. * if return ERANGE_AND_RESET then fill dest to c ,fill length is destMax
  455. */
  456. errno_t memset_s(void *dest, size_t destMax, int c, size_t count)
  457. {
  458. if (SECUREC_MEMSET_PARAM_OK(dest, destMax, count)) {
  459. SECUREC_MEMSET_PREVENT_DSE(dest, c, count);
  460. return EOK;
  461. }
  462. /* Meet some runtime violation, return error code */
  463. return SecMemsetError(dest, destMax, c);
  464. }
  465. #if SECUREC_EXPORT_KERNEL_SYMBOL
  466. EXPORT_SYMBOL(memset_s);
  467. #endif
  468. #if SECUREC_WITH_PERFORMANCE_ADDONS
  469. /*
  470. * Performance optimization
  471. */
  472. errno_t memset_sOptAsm(void *dest, size_t destMax, int c, size_t count)
  473. {
  474. if (SECUREC_MEMSET_PARAM_OK(dest, destMax, count)) {
  475. SECUREC_MEMSET_OPT(dest, c, count);
  476. return EOK;
  477. }
  478. /* Meet some runtime violation, return error code */
  479. return SecMemsetError(dest, destMax, c);
  480. }
  481. /*
  482. * Performance optimization, trim judgement on "destMax <= SECUREC_MEM_MAX_LEN"
  483. */
  484. errno_t memset_sOptTc(void *dest, size_t destMax, int c, size_t count)
  485. {
  486. if (SECUREC_LIKELY(count <= destMax && dest != NULL)) {
  487. SECUREC_MEMSET_OPT(dest, c, count);
  488. return EOK;
  489. }
  490. /* Meet some runtime violation, return error code */
  491. return SecMemsetError(dest, destMax, c);
  492. }
  493. #endif