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