2006-10-02 13:54:35 +02:00
|
|
|
/* mischelp.c - Miscellaneous helper functions
|
2007-08-24 11:34:39 +02:00
|
|
|
* Copyright (C) 1998, 2000, 2001, 2006, 2007 Free Software Foundation, Inc.
|
2006-10-02 13:54:35 +02:00
|
|
|
*
|
2011-09-30 12:52:11 +02:00
|
|
|
* This file is part of JNLIB, which is a subsystem of GnuPG.
|
2006-10-02 13:54:35 +02:00
|
|
|
*
|
|
|
|
* JNLIB is free software; you can redistribute it and/or modify it
|
2011-09-30 12:52:11 +02:00
|
|
|
* under the terms of either
|
|
|
|
*
|
|
|
|
* - the GNU Lesser General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* or
|
|
|
|
*
|
|
|
|
* - the GNU General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 2 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* or both in parallel, as here.
|
2006-10-02 13:54:35 +02:00
|
|
|
*
|
|
|
|
* JNLIB is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2011-09-30 12:52:11 +02:00
|
|
|
* General Public License for more details.
|
2006-10-02 13:54:35 +02:00
|
|
|
*
|
2011-09-30 12:52:11 +02:00
|
|
|
* You should have received a copies of the GNU General Public License
|
|
|
|
* and the GNU Lesser General Public License along with this program;
|
|
|
|
* if not, see <http://www.gnu.org/licenses/>.
|
2006-10-02 13:54:35 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
2007-08-24 11:34:39 +02:00
|
|
|
#ifdef HAVE_W32_SYSTEM
|
|
|
|
# define WIN32_LEAN_AND_MEAN
|
|
|
|
# include <windows.h>
|
|
|
|
#else /*!HAVE_W32_SYSTEM*/
|
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/stat.h>
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif /*!HAVE_W32_SYSTEM*/
|
2010-02-26 19:44:36 +01:00
|
|
|
#include <errno.h>
|
2006-10-02 13:54:35 +02:00
|
|
|
|
|
|
|
#include "libjnlib-config.h"
|
2007-08-24 11:34:39 +02:00
|
|
|
#include "stringhelp.h"
|
2010-02-26 19:44:36 +01:00
|
|
|
#include "utf8conv.h"
|
2006-10-02 13:54:35 +02:00
|
|
|
#include "mischelp.h"
|
|
|
|
|
2007-08-24 11:34:39 +02:00
|
|
|
|
2010-02-26 19:44:36 +01:00
|
|
|
/* Because we can't use our jnlib_free macro in inline functions we
|
|
|
|
provide this wrapper. */
|
|
|
|
void
|
|
|
|
_jnlib_free (void *p)
|
|
|
|
{
|
|
|
|
if (p)
|
|
|
|
jnlib_free (p);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-24 11:34:39 +02:00
|
|
|
/* Check whether the files NAME1 and NAME2 are identical. This is for
|
|
|
|
example achieved by comparing the inode numbers of the files. */
|
|
|
|
int
|
|
|
|
same_file_p (const char *name1, const char *name2)
|
2006-10-02 13:54:35 +02:00
|
|
|
{
|
2007-08-24 11:34:39 +02:00
|
|
|
int yes;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
2007-08-24 11:34:39 +02:00
|
|
|
/* First try a shortcut. */
|
|
|
|
if (!compare_filenames (name1, name2))
|
|
|
|
yes = 1;
|
|
|
|
else
|
|
|
|
{
|
2011-02-04 12:57:53 +01:00
|
|
|
#ifdef HAVE_W32_SYSTEM
|
2007-08-24 11:34:39 +02:00
|
|
|
HANDLE file1, file2;
|
|
|
|
BY_HANDLE_FILE_INFORMATION info1, info2;
|
2010-02-26 19:44:36 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_W32CE_SYSTEM
|
|
|
|
{
|
|
|
|
wchar_t *wname = utf8_to_wchar (name1);
|
|
|
|
if (wname)
|
|
|
|
file1 = CreateFile (wname, 0, 0, NULL, OPEN_EXISTING, 0, NULL);
|
|
|
|
else
|
|
|
|
file1 = INVALID_HANDLE_VALUE;
|
|
|
|
jnlib_free (wname);
|
|
|
|
}
|
2011-02-04 12:57:53 +01:00
|
|
|
#else
|
2007-08-24 11:34:39 +02:00
|
|
|
file1 = CreateFile (name1, 0, 0, NULL, OPEN_EXISTING, 0, NULL);
|
2010-02-26 19:44:36 +01:00
|
|
|
#endif
|
2007-08-24 11:34:39 +02:00
|
|
|
if (file1 == INVALID_HANDLE_VALUE)
|
|
|
|
yes = 0; /* If we can't open the file, it is not the same. */
|
|
|
|
else
|
|
|
|
{
|
2010-02-26 19:44:36 +01:00
|
|
|
#ifdef HAVE_W32CE_SYSTEM
|
|
|
|
{
|
|
|
|
wchar_t *wname = utf8_to_wchar (name2);
|
|
|
|
if (wname)
|
|
|
|
file2 = CreateFile (wname, 0, 0, NULL, OPEN_EXISTING, 0, NULL);
|
|
|
|
else
|
|
|
|
file2 = INVALID_HANDLE_VALUE;
|
|
|
|
jnlib_free (wname);
|
|
|
|
}
|
|
|
|
#else
|
2007-08-24 11:34:39 +02:00
|
|
|
file2 = CreateFile (name2, 0, 0, NULL, OPEN_EXISTING, 0, NULL);
|
2010-02-26 19:44:36 +01:00
|
|
|
#endif
|
|
|
|
if (file2 == INVALID_HANDLE_VALUE)
|
2007-08-24 11:34:39 +02:00
|
|
|
yes = 0; /* If we can't open the file, it is not the same. */
|
|
|
|
else
|
|
|
|
{
|
|
|
|
yes = (GetFileInformationByHandle (file1, &info1)
|
|
|
|
&& GetFileInformationByHandle (file2, &info2)
|
|
|
|
&& info1.dwVolumeSerialNumber==info2.dwVolumeSerialNumber
|
|
|
|
&& info1.nFileIndexHigh == info2.nFileIndexHigh
|
|
|
|
&& info1.nFileIndexLow == info2.nFileIndexLow);
|
|
|
|
CloseHandle (file2);
|
|
|
|
}
|
|
|
|
CloseHandle (file1);
|
|
|
|
}
|
|
|
|
#else /*!HAVE_W32_SYSTEM*/
|
|
|
|
struct stat info1, info2;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
2007-08-24 11:34:39 +02:00
|
|
|
yes = (!stat (name1, &info1) && !stat (name2, &info2)
|
|
|
|
&& info1.st_dev == info2.st_dev && info1.st_ino == info2.st_ino);
|
|
|
|
#endif /*!HAVE_W32_SYSTEM*/
|
|
|
|
}
|
|
|
|
return yes;
|
2006-10-02 13:54:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
timegm() is a GNU function that might not be available everywhere.
|
|
|
|
It's basically the inverse of gmtime() - you give it a struct tm,
|
|
|
|
and get back a time_t. It differs from mktime() in that it handles
|
|
|
|
the case where the struct tm is UTC and the local environment isn't.
|
|
|
|
|
2010-02-26 19:44:36 +01:00
|
|
|
Note, that this replacement implementation might not be thread-safe!
|
2006-10-02 13:54:35 +02:00
|
|
|
|
|
|
|
Some BSDs don't handle the putenv("foo") case properly, so we use
|
|
|
|
unsetenv if the platform has it to remove environment variables.
|
|
|
|
*/
|
|
|
|
#ifndef HAVE_TIMEGM
|
|
|
|
time_t
|
|
|
|
timegm (struct tm *tm)
|
|
|
|
{
|
2010-02-26 19:44:36 +01:00
|
|
|
#ifdef HAVE_W32_SYSTEM
|
|
|
|
/* This one is thread safe. */
|
|
|
|
SYSTEMTIME st;
|
|
|
|
FILETIME ft;
|
|
|
|
unsigned long long cnsecs;
|
|
|
|
|
|
|
|
st.wYear = tm->tm_year + 1900;
|
|
|
|
st.wMonth = tm->tm_mon + 1;
|
|
|
|
st.wDay = tm->tm_mday;
|
|
|
|
st.wHour = tm->tm_hour;
|
|
|
|
st.wMinute = tm->tm_min;
|
|
|
|
st.wSecond = tm->tm_sec;
|
|
|
|
st.wMilliseconds = 0; /* Not available. */
|
|
|
|
st.wDayOfWeek = 0; /* Ignored. */
|
|
|
|
|
|
|
|
/* System time is UTC thus the conversion is pretty easy. */
|
|
|
|
if (!SystemTimeToFileTime (&st, &ft))
|
|
|
|
{
|
|
|
|
jnlib_set_errno (EINVAL);
|
|
|
|
return (time_t)(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
cnsecs = (((unsigned long long)ft.dwHighDateTime << 32)
|
|
|
|
| ft.dwLowDateTime);
|
|
|
|
cnsecs -= 116444736000000000ULL; /* The filetime epoch is 1601-01-01. */
|
|
|
|
return (time_t)(cnsecs / 10000000ULL);
|
|
|
|
|
|
|
|
#else /* (Non thread safe implementation!) */
|
|
|
|
|
2006-10-02 13:54:35 +02:00
|
|
|
time_t answer;
|
|
|
|
char *zone;
|
|
|
|
|
|
|
|
zone=getenv("TZ");
|
|
|
|
putenv("TZ=UTC");
|
|
|
|
tzset();
|
|
|
|
answer=mktime(tm);
|
|
|
|
if(zone)
|
|
|
|
{
|
|
|
|
static char *old_zone;
|
|
|
|
|
|
|
|
if (!old_zone)
|
|
|
|
{
|
|
|
|
old_zone = malloc(3+strlen(zone)+1);
|
|
|
|
if (old_zone)
|
|
|
|
{
|
|
|
|
strcpy(old_zone,"TZ=");
|
|
|
|
strcat(old_zone,zone);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (old_zone)
|
2011-02-04 12:57:53 +01:00
|
|
|
putenv (old_zone);
|
2006-10-02 13:54:35 +02:00
|
|
|
}
|
|
|
|
else
|
2010-04-14 13:24:02 +02:00
|
|
|
gnupg_unsetenv("TZ");
|
2006-10-02 13:54:35 +02:00
|
|
|
|
|
|
|
tzset();
|
|
|
|
return answer;
|
2010-02-26 19:44:36 +01:00
|
|
|
#endif
|
2006-10-02 13:54:35 +02:00
|
|
|
}
|
|
|
|
#endif /*!HAVE_TIMEGM*/
|