2 * Copyright 2004-2016 The OpenSSL Project Authors. All Rights Reserved.
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
11 * Copyright (c) 2004, Richard Levitte <richard@levitte.org>
12 * All rights reserved.
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in the
21 * documentation and/or other materials provided with the distribution.
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 #include <sys/types.h>
48 * The POSIXly macro for the maximum number of characters in a file path is
49 * NAME_MAX. However, some operating systems use PATH_MAX instead.
50 * Therefore, it seems natural to first check for PATH_MAX and use that, and
51 * if it doesn't exist, use NAME_MAX.
54 # define LP_ENTRY_SIZE PATH_MAX
55 #elif defined(NAME_MAX)
56 # define LP_ENTRY_SIZE NAME_MAX
60 * Of course, there's the possibility that neither PATH_MAX nor NAME_MAX
61 * exist. It's also possible that NAME_MAX exists but is define to a very
62 * small value (HP-UX offers 14), so we need to check if we got a result, and
63 * if it meets a minimum standard, and create or change it if not.
65 #if !defined(LP_ENTRY_SIZE) || LP_ENTRY_SIZE<255
67 # define LP_ENTRY_SIZE 255
70 struct LP_dir_context_st {
72 char entry_name[LP_ENTRY_SIZE + 1];
75 const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory)
77 struct dirent *direntry = NULL;
79 if (ctx == NULL || directory == NULL) {
86 *ctx = malloc(sizeof(**ctx));
91 memset(*ctx, 0, sizeof(**ctx));
93 (*ctx)->dir = opendir(directory);
94 if ((*ctx)->dir == NULL) {
95 int save_errno = errno; /* Probably not needed, but I'm paranoid */
103 direntry = readdir((*ctx)->dir);
104 if (direntry == NULL) {
108 strncpy((*ctx)->entry_name, direntry->d_name,
109 sizeof((*ctx)->entry_name) - 1);
110 (*ctx)->entry_name[sizeof((*ctx)->entry_name) - 1] = '\0';
111 return (*ctx)->entry_name;
114 int LP_find_file_end(LP_DIR_CTX **ctx)
116 if (ctx != NULL && *ctx != NULL) {
117 int ret = closedir((*ctx)->dir);