RT3334: Fix crypto/LPdir_win.c
[openssl.git] / crypto / LPdir_win.c
1 /*
2  * Copyright (c) 2004, Richard Levitte <richard@levitte.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 
14  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
15  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
16  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
17  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
18  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
19  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
20  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26 #include <windows.h>
27 #include <tchar.h>
28 #ifndef LPDIR_H
29 #include "LPdir.h"
30 #endif
31
32 /* We're most likely overcautious here, but let's reserve for
33     broken WinCE headers and explicitly opt for UNICODE call.
34     Keep in mind that our WinCE builds are compiled with -DUNICODE
35     [as well as -D_UNICODE]. */
36 #if defined(LP_SYS_WINCE) && !defined(FindFirstFile)
37 # define FindFirstFile FindFirstFileW
38 #endif
39 #if defined(LP_SYS_WINCE) && !defined(FindFirstFile)
40 # define FindNextFile FindNextFileW
41 #endif
42
43 #ifndef NAME_MAX
44 #define NAME_MAX 255
45 #endif
46
47 struct LP_dir_context_st
48 {
49   WIN32_FIND_DATA ctx;
50   HANDLE handle;
51   char entry_name[NAME_MAX+1];
52 };
53
54 const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory)
55 {
56   if (ctx == NULL || directory == NULL)
57     {
58       errno = EINVAL;
59       return 0;
60     }
61
62   errno = 0;
63   if (*ctx == NULL)
64     {
65       const char *extdir = directory;
66       char *extdirbuf = NULL;
67       size_t dirlen = strlen (directory);
68
69       *ctx = (LP_DIR_CTX *)malloc(sizeof(LP_DIR_CTX));
70       if (*ctx == NULL)
71         {
72           errno = ENOMEM;
73           return 0;
74         }
75       memset(*ctx, '\0', sizeof(LP_DIR_CTX));
76
77       if (directory[dirlen-1] != '*')
78         {
79           extdirbuf = (char *)malloc(dirlen + 3);
80           if (extdirbuf == NULL)
81             {
82               free(*ctx);
83               *ctx = NULL;
84               errno = ENOMEM;
85               return 0;
86             }
87           if (directory[dirlen-1] != '/' && directory[dirlen-1] != '\\')
88             extdir = strcat(strcpy (extdirbuf,directory),"/*");
89           else
90             extdir = strcat(strcpy (extdirbuf,directory),"*");
91         }
92
93       if (sizeof(TCHAR) != sizeof(char))
94         {
95           TCHAR *wdir = NULL;
96           /* len_0 denotes string length *with* trailing 0 */ 
97           size_t index = 0,len_0 = strlen(extdir) + 1;
98
99           wdir = (TCHAR *)calloc(len_0, sizeof(TCHAR));
100           if (wdir == NULL)
101             {
102               if (extdirbuf != NULL)
103                 {
104                   free (extdirbuf);
105                 }
106               free(*ctx);
107               *ctx = NULL;
108               errno = ENOMEM;
109               return 0;
110             }
111
112 #ifdef LP_MULTIBYTE_AVAILABLE
113           if (!MultiByteToWideChar(CP_ACP, 0, extdir, len_0, (WCHAR *)wdir, len_0))
114 #endif
115             for (index = 0; index < len_0; index++)
116               wdir[index] = (TCHAR)extdir[index];
117
118           (*ctx)->handle = FindFirstFile(wdir, &(*ctx)->ctx);
119
120           free(wdir);
121         }
122       else
123         {
124           (*ctx)->handle = FindFirstFile((TCHAR *)extdir, &(*ctx)->ctx);
125         }
126       if (extdirbuf != NULL)
127         {
128           free (extdirbuf);
129         }
130
131       if ((*ctx)->handle == INVALID_HANDLE_VALUE)
132         {
133           free(*ctx);
134           *ctx = NULL;
135           errno = EINVAL;
136           return 0;
137         }
138     }
139   else
140     {
141       if (FindNextFile((*ctx)->handle, &(*ctx)->ctx) == FALSE)
142         {
143           return 0;
144         }
145     }
146   if (sizeof(TCHAR) != sizeof(char))
147     {
148       TCHAR *wdir = (*ctx)->ctx.cFileName;
149       size_t index, len_0 = 0;
150
151       while (wdir[len_0] && len_0 < (sizeof((*ctx)->entry_name) - 1)) len_0++;
152       len_0++;
153
154 #ifdef LP_MULTIBYTE_AVAILABLE
155       if (!WideCharToMultiByte(CP_ACP, 0, (WCHAR *)wdir, len_0, (*ctx)->entry_name,
156                                sizeof((*ctx)->entry_name), NULL, 0))
157 #endif
158         for (index = 0; index < len_0; index++)
159           (*ctx)->entry_name[index] = (char)wdir[index];
160     }
161   else
162     strncpy((*ctx)->entry_name, (const char *)(*ctx)->ctx.cFileName,
163             sizeof((*ctx)->entry_name)-1);
164
165   (*ctx)->entry_name[sizeof((*ctx)->entry_name)-1] = '\0';
166
167   return (*ctx)->entry_name;
168 }
169
170 int LP_find_file_end(LP_DIR_CTX **ctx)
171 {
172   if (ctx != NULL && *ctx != NULL)
173     {
174       FindClose((*ctx)->handle);
175       free(*ctx);
176       *ctx = NULL;
177       return 1;
178     }
179   errno = EINVAL;
180   return 0;
181 }