gets_s.c 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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: gets_s function
  12. * Create: 2014-02-25
  13. */
  14. #include "securecutil.h"
  15. /*
  16. * The parameter size is buffer size in byte
  17. */
  18. SECUREC_INLINE void SecTrimCRLF(char *buffer, size_t size)
  19. {
  20. size_t len = strlen(buffer);
  21. --len; /* Unsigned integer wrapping is accepted and is checked afterwards */
  22. while (len < size && (buffer[len] == '\r' || buffer[len] == '\n')) {
  23. buffer[len] = '\0';
  24. --len; /* Unsigned integer wrapping is accepted and is checked next loop */
  25. }
  26. }
  27. /*
  28. * <FUNCTION DESCRIPTION>
  29. * The gets_s function reads at most one less than the number of characters
  30. * specified by destMax from the std input stream, into the array pointed to by buffer
  31. * The line consists of all characters up to and including
  32. * the first newline character ('\n'). gets_s then replaces the newline
  33. * character with a null character ('\0') before returning the line.
  34. * If the first character read is the end-of-file character, a null character
  35. * is stored at the beginning of buffer and NULL is returned.
  36. *
  37. * <INPUT PARAMETERS>
  38. * buffer Storage location for input string.
  39. * destMax The size of the buffer.
  40. *
  41. * <OUTPUT PARAMETERS>
  42. * buffer is updated
  43. *
  44. * <RETURN VALUE>
  45. * buffer Successful operation
  46. * NULL Improper parameter or read fail
  47. */
  48. char *gets_s(char *buffer, size_t destMax)
  49. {
  50. #ifdef SECUREC_COMPATIBLE_WIN_FORMAT
  51. size_t bufferSize = ((destMax == (size_t)(-1)) ? SECUREC_STRING_MAX_LEN : destMax);
  52. #else
  53. size_t bufferSize = destMax;
  54. #endif
  55. if (buffer == NULL || bufferSize == 0 || bufferSize > SECUREC_STRING_MAX_LEN) {
  56. SECUREC_ERROR_INVALID_PARAMTER("gets_s");
  57. return NULL;
  58. }
  59. if (fgets(buffer, (int)bufferSize, SECUREC_STREAM_STDIN) != NULL) {
  60. SecTrimCRLF(buffer, bufferSize);
  61. return buffer;
  62. }
  63. return NULL;
  64. }