os/ossrv/ssl/libcrypto/src/crypto/lpdir_unix.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_unix.c,v 1.11 2004/09/23 22:07:22 _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
 /*
sl@0
    28
 © Portions copyright (c) 2006 Nokia Corporation.  All rights reserved.
sl@0
    29
 */
sl@0
    30
sl@0
    31
sl@0
    32
#include <stddef.h>
sl@0
    33
#include <stdlib.h>
sl@0
    34
#include <limits.h>
sl@0
    35
#include <string.h>
sl@0
    36
#include <sys/types.h>
sl@0
    37
#include <dirent.h>
sl@0
    38
#include <errno.h>
sl@0
    39
sl@0
    40
#if !defined(SYMBIAN)
sl@0
    41
#ifndef LPDIR_H
sl@0
    42
#include "LPdir.h"
sl@0
    43
#endif
sl@0
    44
#endif
sl@0
    45
sl@0
    46
/* The POSIXly macro for the maximum number of characters in a file path
sl@0
    47
   is NAME_MAX.  However, some operating systems use PATH_MAX instead.
sl@0
    48
   Therefore, it seems natural to first check for PATH_MAX and use that,
sl@0
    49
   and if it doesn't exist, use NAME_MAX. */
sl@0
    50
#if defined(PATH_MAX)
sl@0
    51
# define LP_ENTRY_SIZE PATH_MAX
sl@0
    52
#elif defined(NAME_MAX)
sl@0
    53
# define LP_ENTRY_SIZE NAME_MAX
sl@0
    54
#endif
sl@0
    55
sl@0
    56
/* Of course, there's the possibility that neither PATH_MAX nor NAME_MAX
sl@0
    57
   exist.  It's also possible that NAME_MAX exists but is define to a
sl@0
    58
   very small value (HP-UX offers 14), so we need to check if we got a
sl@0
    59
   result, and if it meets a minimum standard, and create or change it
sl@0
    60
   if not. */
sl@0
    61
#if !defined(LP_ENTRY_SIZE) || LP_ENTRY_SIZE<255
sl@0
    62
# undef LP_ENTRY_SIZE
sl@0
    63
# define LP_ENTRY_SIZE 255
sl@0
    64
#endif
sl@0
    65
sl@0
    66
struct LP_dir_context_st
sl@0
    67
{
sl@0
    68
  DIR *dir;
sl@0
    69
  char entry_name[LP_ENTRY_SIZE+1];
sl@0
    70
};
sl@0
    71
sl@0
    72
EXPORT_C const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory)
sl@0
    73
{
sl@0
    74
  struct dirent *direntry = NULL;
sl@0
    75
sl@0
    76
  if (ctx == NULL || directory == NULL)
sl@0
    77
    {
sl@0
    78
      errno = EINVAL;
sl@0
    79
      return 0;
sl@0
    80
    }
sl@0
    81
sl@0
    82
  errno = 0;
sl@0
    83
  if (*ctx == NULL)
sl@0
    84
    {
sl@0
    85
      *ctx = (LP_DIR_CTX *)malloc(sizeof(LP_DIR_CTX));
sl@0
    86
      if (*ctx == NULL)
sl@0
    87
	{
sl@0
    88
	  errno = ENOMEM;
sl@0
    89
	  return 0;
sl@0
    90
	}
sl@0
    91
      memset(*ctx, '\0', sizeof(LP_DIR_CTX));
sl@0
    92
sl@0
    93
      (*ctx)->dir = opendir(directory);
sl@0
    94
      if ((*ctx)->dir == NULL)
sl@0
    95
	{
sl@0
    96
	  int save_errno = errno; /* Probably not needed, but I'm paranoid */
sl@0
    97
	  free(*ctx);
sl@0
    98
	  *ctx = NULL;
sl@0
    99
	  errno = save_errno;
sl@0
   100
	  return 0;
sl@0
   101
	}
sl@0
   102
    }
sl@0
   103
sl@0
   104
  direntry = readdir((*ctx)->dir);
sl@0
   105
  if (direntry == NULL)
sl@0
   106
    {
sl@0
   107
      return 0;
sl@0
   108
    }
sl@0
   109
sl@0
   110
  strncpy((*ctx)->entry_name, direntry->d_name, sizeof((*ctx)->entry_name) - 1);
sl@0
   111
  (*ctx)->entry_name[sizeof((*ctx)->entry_name) - 1] = '\0';
sl@0
   112
  return (*ctx)->entry_name;
sl@0
   113
}
sl@0
   114
sl@0
   115
EXPORT_C int LP_find_file_end(LP_DIR_CTX **ctx)
sl@0
   116
{
sl@0
   117
  if (ctx != NULL && *ctx != NULL)
sl@0
   118
    {
sl@0
   119
      int ret = closedir((*ctx)->dir);
sl@0
   120
sl@0
   121
      free(*ctx);
sl@0
   122
      switch (ret)
sl@0
   123
	{
sl@0
   124
	case 0:
sl@0
   125
	  return 1;
sl@0
   126
	case -1:
sl@0
   127
	  return 0;
sl@0
   128
	default:
sl@0
   129
	  break;
sl@0
   130
	}
sl@0
   131
    }
sl@0
   132
  errno = EINVAL;
sl@0
   133
  return 0;
sl@0
   134
}