vscanf_s.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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: vscanf_s function
  12. * Create: 2014-02-25
  13. */
  14. #include "secinput.h"
  15. /*
  16. * <FUNCTION DESCRIPTION>
  17. * The vscanf_s function is equivalent to scanf_s, with the variable argument list replaced by argList,
  18. * The vscanf_s function reads data from the standard input stream stdin and
  19. * writes the data into the location that's given by argument. Each argument
  20. * must be a pointer to a variable of a type that corresponds to a type specifier
  21. * in format. If copying occurs between strings that overlap, the behavior is
  22. * undefined.
  23. *
  24. * <INPUT PARAMETERS>
  25. * format Format control string.
  26. * argList pointer to list of arguments
  27. *
  28. * <OUTPUT PARAMETERS>
  29. * argList the converted value stored in user assigned address
  30. *
  31. * <RETURN VALUE>
  32. * Returns the number of fields successfully converted and assigned;
  33. * the return value does not include fields that were read but not assigned.
  34. * A return value of 0 indicates that no fields were assigned.
  35. * return -1 if an error occurs.
  36. */
  37. int vscanf_s(const char *format, va_list argList)
  38. {
  39. int retVal; /* If initialization causes e838 */
  40. SecFileStream fStr;
  41. SECUREC_FILE_STREAM_FROM_STDIN(&fStr);
  42. /*
  43. * The "va_list" has different definition on different platform, so we can't use argList == NULL
  44. * To determine it's invalid. If you has fixed platform, you can check some fields to validate it,
  45. * such as "argList == NULL" or argList.xxx != NULL or *(size_t *)&argList != 0.
  46. */
  47. if (format == NULL || fStr.pf == NULL) {
  48. SECUREC_ERROR_INVALID_PARAMTER("vscanf_s");
  49. return SECUREC_SCANF_EINVAL;
  50. }
  51. SECUREC_LOCK_STDIN(0, fStr.pf);
  52. retVal = SecInputS(&fStr, format, argList);
  53. SECUREC_UNLOCK_STDIN(0, fStr.pf);
  54. if (retVal < 0) {
  55. SECUREC_ERROR_INVALID_PARAMTER("vscanf_s");
  56. return SECUREC_SCANF_EINVAL;
  57. }
  58. return retVal;
  59. }