You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

107 rivejä
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. #if defined(OPENSSL_PNACL)
  34. /* pnacl doesn't include readdir_r! So we do the best we can. */
  35. int readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result) {
  36. errno = 0;
  37. *result = readdir(dirp);
  38. if (*result != NULL) {
  39. return 0;
  40. }
  41. if (errno) {
  42. return 1;
  43. }
  44. return 0;
  45. }
  46. #endif
  47. struct OPENSSL_dir_context_st {
  48. DIR *dir;
  49. struct dirent dirent;
  50. };
  51. const char *OPENSSL_DIR_read(OPENSSL_DIR_CTX **ctx, const char *directory) {
  52. struct dirent *dirent;
  53. if (ctx == NULL || directory == NULL) {
  54. errno = EINVAL;
  55. return NULL;
  56. }
  57. errno = 0;
  58. if (*ctx == NULL) {
  59. *ctx = malloc(sizeof(OPENSSL_DIR_CTX));
  60. if (*ctx == NULL) {
  61. errno = ENOMEM;
  62. return 0;
  63. }
  64. memset(*ctx, 0, sizeof(OPENSSL_DIR_CTX));
  65. (*ctx)->dir = opendir(directory);
  66. if ((*ctx)->dir == NULL) {
  67. int save_errno = errno; /* Probably not needed, but I'm paranoid */
  68. free(*ctx);
  69. *ctx = NULL;
  70. errno = save_errno;
  71. return 0;
  72. }
  73. }
  74. if (readdir_r((*ctx)->dir, &(*ctx)->dirent, &dirent) != 0 ||
  75. dirent == NULL) {
  76. return 0;
  77. }
  78. return (*ctx)->dirent.d_name;
  79. }
  80. int OPENSSL_DIR_end(OPENSSL_DIR_CTX **ctx) {
  81. if (ctx != NULL && *ctx != NULL) {
  82. int r = closedir((*ctx)->dir);
  83. free(*ctx);
  84. *ctx = NULL;
  85. return r == 0;
  86. }
  87. errno = EINVAL;
  88. return 0;
  89. }
  90. #endif /* !OPENSSL_WINDOWS */