Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
 

108 рядки
3.0 KiB

  1. /* $LP: LPlib/source/LPdir_unix.c,v 1.11 2004/09/23 22:07:22 _cvs_levitte Exp $ */
  2. /*
  3. * Copyright (c) 2004, Richard Levitte <richard@levitte.org>
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  16. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  17. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  18. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  19. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  20. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  21. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  22. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  23. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  25. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
  26. #if !defined(_POSIX_C_SOURCE)
  27. #define _POSIX_C_SOURCE 201409 /* for readdir_r */
  28. #endif
  29. #include "directory.h"
  30. #if !defined(OPENSSL_WINDOWS)
  31. #include <dirent.h>
  32. #include <errno.h>
  33. #include <string.h>
  34. #if defined(OPENSSL_PNACL)
  35. /* pnacl doesn't include readdir_r! So we do the best we can. */
  36. int readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result) {
  37. errno = 0;
  38. *result = readdir(dirp);
  39. if (*result != NULL) {
  40. return 0;
  41. }
  42. if (errno) {
  43. return 1;
  44. }
  45. return 0;
  46. }
  47. #endif
  48. struct OPENSSL_dir_context_st {
  49. DIR *dir;
  50. struct dirent dirent;
  51. };
  52. const char *OPENSSL_DIR_read(OPENSSL_DIR_CTX **ctx, const char *directory) {
  53. struct dirent *dirent;
  54. if (ctx == NULL || directory == NULL) {
  55. errno = EINVAL;
  56. return NULL;
  57. }
  58. errno = 0;
  59. if (*ctx == NULL) {
  60. *ctx = malloc(sizeof(OPENSSL_DIR_CTX));
  61. if (*ctx == NULL) {
  62. errno = ENOMEM;
  63. return 0;
  64. }
  65. memset(*ctx, 0, sizeof(OPENSSL_DIR_CTX));
  66. (*ctx)->dir = opendir(directory);
  67. if ((*ctx)->dir == NULL) {
  68. int save_errno = errno; /* Probably not needed, but I'm paranoid */
  69. free(*ctx);
  70. *ctx = NULL;
  71. errno = save_errno;
  72. return 0;
  73. }
  74. }
  75. if (readdir_r((*ctx)->dir, &(*ctx)->dirent, &dirent) != 0 ||
  76. dirent == NULL) {
  77. return 0;
  78. }
  79. return (*ctx)->dirent.d_name;
  80. }
  81. int OPENSSL_DIR_end(OPENSSL_DIR_CTX **ctx) {
  82. if (ctx != NULL && *ctx != NULL) {
  83. int r = closedir((*ctx)->dir);
  84. free(*ctx);
  85. *ctx = NULL;
  86. return r == 0;
  87. }
  88. errno = EINVAL;
  89. return 0;
  90. }
  91. #endif /* !OPENSSL_WINDOWS */