minizip-ng/mz_strm_win32.c

432 lines
12 KiB
C
Raw Normal View History

/* mzstrm_win32.c -- Stream for filesystem access for windows
part of the MiniZip project
2012-01-21 14:53:44 -07:00
2017-09-16 17:35:23 +08:00
Copyright (C) 2012-2017 Nathan Moinvaziri
https://github.com/nmoinvaz/minizip
Copyright (C) 2009-2010 Mathias Svensson
Modifications for Zip64 support
http://result42.com
Copyright (C) 1998-2010 Gilles Vollant
http://www.winimage.com/zLibDll/minizip.html
This program is distributed under the terms of the same license as zlib.
See the accompanying LICENSE file for the full text of the license.
2012-01-21 14:53:44 -07:00
*/
#include <stdlib.h>
#include <direct.h>
#include <windows.h>
#include <wincrypt.h>
2012-01-21 14:53:44 -07:00
2017-10-04 22:10:11 -07:00
#include "mz_strm.h"
#include "mz_strm_win32.h"
2012-01-21 14:53:44 -07:00
2017-10-03 21:56:07 -07:00
/***************************************************************************/
2012-01-21 14:53:44 -07:00
#ifndef INVALID_HANDLE_VALUE
2014-01-07 19:13:14 -07:00
# define INVALID_HANDLE_VALUE (0xFFFFFFFF)
2012-01-21 14:53:44 -07:00
#endif
#ifndef INVALID_SET_FILE_POINTER
2014-01-07 19:13:14 -07:00
# define INVALID_SET_FILE_POINTER ((DWORD)-1)
2012-01-21 14:53:44 -07:00
#endif
#if defined(WINAPI_FAMILY_PARTITION) && (!(defined(IOWIN32_USING_WINRT_API)))
# if !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
# define IOWIN32_USING_WINRT_API 1
# endif
#endif
2014-01-04 22:23:51 -07:00
2017-10-03 21:56:07 -07:00
/***************************************************************************/
2017-10-01 21:43:24 -07:00
typedef struct mz_stream_win32_s
2012-01-21 14:53:44 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream stream;
2017-09-29 21:02:09 -07:00
HANDLE handle;
int error;
char *path;
int path_size;
2017-10-01 21:43:24 -07:00
} mz_stream_win32;
2017-09-29 21:02:09 -07:00
2017-10-03 21:56:07 -07:00
/***************************************************************************/
int32_t mz_stream_win32_open(void *stream, const char *path, int mode)
2012-01-21 14:53:44 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
2017-09-29 21:02:09 -07:00
uint32_t desired_access = 0;
uint32_t creation_disposition = 0;
uint32_t share_mode = FILE_SHARE_READ;
2017-09-29 21:02:09 -07:00
uint32_t flags_attribs = FILE_ATTRIBUTE_NORMAL;
wchar_t *path_wide = NULL;
uint32_t path_wide_size = 0;
2017-09-29 21:02:09 -07:00
HANDLE handle = NULL;
if (path == NULL)
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2017-09-29 21:02:09 -07:00
if ((mode & MZ_STREAM_MODE_READWRITE) == MZ_STREAM_MODE_READ)
2012-01-21 14:53:44 -07:00
{
2017-09-29 21:02:09 -07:00
desired_access = GENERIC_READ;
creation_disposition = OPEN_EXISTING;
share_mode &= FILE_SHARE_WRITE;
2012-01-21 14:53:44 -07:00
}
else if (mode & MZ_STREAM_MODE_APPEND)
2012-01-21 14:53:44 -07:00
{
2017-09-29 21:02:09 -07:00
desired_access = GENERIC_WRITE | GENERIC_READ;
creation_disposition = OPEN_EXISTING;
2012-01-21 14:53:44 -07:00
}
2017-10-01 21:43:24 -07:00
else if (mode & MZ_STREAM_MODE_CREATE)
2012-01-21 14:53:44 -07:00
{
2017-09-29 21:02:09 -07:00
desired_access = GENERIC_WRITE | GENERIC_READ;
creation_disposition = CREATE_ALWAYS;
2012-01-21 14:53:44 -07:00
}
2017-09-29 21:02:09 -07:00
else
2012-01-21 14:53:44 -07:00
{
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2012-01-21 14:53:44 -07:00
}
path_wide_size = MultiByteToWideChar(CP_UTF8, 0, path, -1, NULL, 0);
path_wide = (wchar_t *)malloc((path_wide_size + 1) * sizeof(wchar_t));
memset(path_wide, 0, sizeof(wchar_t) * (path_wide_size + 1));
2012-01-21 14:53:44 -07:00
MultiByteToWideChar(CP_UTF8, 0, path, -1, path_wide, path_wide_size);
2015-11-25 01:35:03 -07:00
#ifdef IOWIN32_USING_WINRT_API
2017-10-03 21:56:07 -07:00
win32->handle = CreateFile2W(path_wide, desired_access, share_mode, creation_disposition, NULL);
2014-01-04 22:23:51 -07:00
#else
win32->handle = CreateFileW(path_wide, desired_access, share_mode, NULL, creation_disposition, flags_attribs, NULL);
2014-01-04 22:23:51 -07:00
#endif
2012-01-21 14:53:44 -07:00
free(path_wide);
2012-01-21 14:53:44 -07:00
2017-10-03 21:56:07 -07:00
if (mz_stream_win32_is_open(stream) != MZ_OK)
{
win32->error = GetLastError();
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
}
2012-01-21 14:53:44 -07:00
win32->path_size = strlen(path) + 1;
win32->path = (char *)malloc(win32->path_size);
2012-01-21 14:53:44 -07:00
strncpy(win32->path, path, win32->path_size);
2012-01-21 14:53:44 -07:00
2017-10-03 21:56:07 -07:00
return MZ_OK;
2012-01-21 14:53:44 -07:00
}
int32_t mz_stream_win32_is_open(void *stream)
2012-01-21 14:53:44 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
2017-09-29 21:02:09 -07:00
if (win32->handle == NULL || win32->handle == INVALID_HANDLE_VALUE)
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
return MZ_OK;
2012-01-21 14:53:44 -07:00
}
int32_t mz_stream_win32_read(void *stream, void* buf, uint32_t size)
2012-01-21 14:53:44 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
2017-09-29 21:02:09 -07:00
uint32_t read = 0;
HANDLE handle = NULL;
2012-01-21 14:53:44 -07:00
2017-10-03 21:56:07 -07:00
if (mz_stream_win32_is_open(stream) != MZ_OK)
return MZ_STREAM_ERROR;
2012-01-21 14:53:44 -07:00
2017-09-29 21:02:09 -07:00
if (!ReadFile(win32->handle, buf, size, &read, NULL))
2014-01-04 22:23:51 -07:00
{
2017-09-29 21:02:09 -07:00
win32->error = GetLastError();
if (win32->error == ERROR_HANDLE_EOF)
win32->error = 0;
2014-01-04 22:23:51 -07:00
}
2012-01-21 14:53:44 -07:00
2017-09-29 21:02:09 -07:00
return read;
2012-01-21 14:53:44 -07:00
}
int32_t mz_stream_win32_write(void *stream, const void *buf, uint32_t size)
2012-01-21 15:10:18 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
2017-09-29 21:02:09 -07:00
uint32_t written = 0;
uint32_t error = 0;
HANDLE handle = NULL;
2012-01-21 15:10:18 -07:00
2017-10-03 21:56:07 -07:00
if (mz_stream_win32_is_open(stream) != MZ_OK)
return MZ_STREAM_ERROR;
2012-01-21 15:10:18 -07:00
2017-09-29 21:02:09 -07:00
if (!WriteFile(win32->handle, buf, size, &written, NULL))
2012-01-21 15:10:18 -07:00
{
2017-09-29 21:02:09 -07:00
win32->error = GetLastError();
if (win32->error == ERROR_HANDLE_EOF)
win32->error = 0;
2012-01-21 15:10:18 -07:00
}
2017-09-29 21:02:09 -07:00
return written;
2012-01-21 15:10:18 -07:00
}
2017-10-01 21:43:24 -07:00
static int32_t mz_stream_win32_seekinternal(HANDLE handle, LARGE_INTEGER large_pos, LARGE_INTEGER *new_pos, uint32_t move_method)
2012-01-21 15:10:18 -07:00
{
2017-09-29 21:02:09 -07:00
#ifdef IOWIN32_USING_WINRT_API
return SetFilePointerEx(handle, pos, newPos, dwMoveMethod);
#else
LONG high_part = large_pos.HighPart;
uint32_t pos = SetFilePointer(handle, large_pos.LowPart, &high_part, move_method);
2012-01-21 14:53:44 -07:00
2017-09-29 21:02:09 -07:00
if ((pos == INVALID_SET_FILE_POINTER) && (GetLastError() != NO_ERROR))
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2012-01-21 14:53:44 -07:00
2017-09-29 21:02:09 -07:00
if (new_pos != NULL)
2012-01-21 14:53:44 -07:00
{
2017-09-29 21:02:09 -07:00
new_pos->LowPart = pos;
new_pos->HighPart = high_part;
2012-01-21 14:53:44 -07:00
}
2017-10-03 21:56:07 -07:00
return MZ_OK;
2017-09-29 21:02:09 -07:00
#endif
2012-01-21 14:53:44 -07:00
}
int64_t mz_stream_win32_tell(void *stream)
2012-01-21 14:53:44 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
2017-09-29 21:02:09 -07:00
uint32_t written = 0;
uint32_t error = 0;
HANDLE handle = NULL;
LARGE_INTEGER large_pos;
2012-01-21 14:53:44 -07:00
2017-10-03 21:56:07 -07:00
if (mz_stream_win32_is_open(stream) != MZ_OK)
return MZ_STREAM_ERROR;
2012-01-21 14:53:44 -07:00
2017-09-29 21:02:09 -07:00
large_pos.QuadPart = 0;
2012-01-21 14:53:44 -07:00
2017-10-03 21:56:07 -07:00
if (mz_stream_win32_seekinternal(win32->handle, large_pos, &large_pos, FILE_CURRENT) != MZ_OK)
2015-11-25 01:35:03 -07:00
{
2017-09-29 21:02:09 -07:00
error = GetLastError();
win32->error = error;
2015-11-25 01:35:03 -07:00
}
2014-01-04 22:23:51 -07:00
2017-09-29 21:02:09 -07:00
return large_pos.LowPart;
2012-01-21 14:53:44 -07:00
}
int32_t mz_stream_win32_seek(void *stream, uint64_t offset, int origin)
2012-01-21 14:53:44 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
2017-09-29 21:02:09 -07:00
uint32_t move_method = 0xFFFFFFFF;
uint32_t error = 0;
HANDLE handle = NULL;
int64_t position = -1;
LARGE_INTEGER large_pos;
2012-01-21 14:53:44 -07:00
2017-10-03 21:56:07 -07:00
if (mz_stream_win32_is_open(stream) == MZ_STREAM_ERROR)
return MZ_STREAM_ERROR;
2013-12-20 13:59:33 -07:00
2012-01-21 14:53:44 -07:00
switch (origin)
{
2017-10-01 21:43:24 -07:00
case MZ_STREAM_SEEK_CUR:
2017-09-29 21:02:09 -07:00
move_method = FILE_CURRENT;
2013-12-20 13:59:33 -07:00
break;
2017-10-01 21:43:24 -07:00
case MZ_STREAM_SEEK_END:
2017-09-29 21:02:09 -07:00
move_method = FILE_END;
2013-12-20 13:59:33 -07:00
break;
2017-10-01 21:43:24 -07:00
case MZ_STREAM_SEEK_SET:
2017-09-29 21:02:09 -07:00
move_method = FILE_BEGIN;
2013-12-20 13:59:33 -07:00
break;
default:
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2012-01-21 14:53:44 -07:00
}
2017-09-29 21:02:09 -07:00
large_pos.QuadPart = offset;
2012-01-21 14:53:44 -07:00
2017-10-03 21:56:07 -07:00
if (mz_stream_win32_seekinternal(win32->handle, large_pos, NULL, move_method) != MZ_OK)
2012-01-21 14:53:44 -07:00
{
2017-09-29 21:02:09 -07:00
error = GetLastError();
win32->error = error;
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2012-01-21 14:53:44 -07:00
}
2017-10-03 21:56:07 -07:00
return MZ_OK;
2012-01-21 14:53:44 -07:00
}
int mz_stream_win32_close(void *stream)
2012-01-21 14:53:44 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
2017-09-29 21:02:09 -07:00
if (win32->path != NULL)
free(win32->path);
2017-09-29 21:02:09 -07:00
if (win32->handle != NULL)
CloseHandle(win32->handle);
win32->handle = NULL;
2017-10-03 21:56:07 -07:00
return MZ_OK;
2012-01-21 14:53:44 -07:00
}
int mz_stream_win32_error(void *stream)
2012-01-21 14:53:44 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
2017-09-29 21:02:09 -07:00
return win32->error;
2012-01-21 14:53:44 -07:00
}
void *mz_stream_win32_create(void **stream)
2012-01-21 14:53:44 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = NULL;
2012-01-21 14:53:44 -07:00
2017-10-01 21:43:24 -07:00
win32 = (mz_stream_win32 *)malloc(sizeof(mz_stream_win32));
if (win32 != NULL)
{
memset(win32, 0, sizeof(mz_stream_win32));
win32->stream.open = mz_stream_win32_open;
win32->stream.is_open = mz_stream_win32_is_open;
win32->stream.read = mz_stream_win32_read;
win32->stream.write = mz_stream_win32_write;
win32->stream.tell = mz_stream_win32_tell;
win32->stream.seek = mz_stream_win32_seek;
win32->stream.close = mz_stream_win32_close;
win32->stream.error = mz_stream_win32_error;
win32->stream.create = mz_stream_win32_create;
win32->stream.delete = mz_stream_win32_delete;
}
if (stream != NULL)
*stream = win32;
2017-09-29 21:02:09 -07:00
return win32;
2012-01-21 14:53:44 -07:00
}
void mz_stream_win32_delete(void **stream)
2012-01-21 14:53:44 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_win32 *win32 = NULL;
if (stream == NULL)
return;
win32 = (mz_stream_win32 *)*stream;
2017-09-29 21:02:09 -07:00
if (win32 != NULL)
free(win32);
}
2017-10-01 21:43:24 -07:00
int32_t mz_win32_rand(uint8_t *buf, uint32_t size)
{
HCRYPTPROV provider;
unsigned __int64 pentium_tsc[1];
int32_t len = 0;
int32_t result = 0;
if (CryptAcquireContext(&provider, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT | CRYPT_SILENT))
{
result = CryptGenRandom(provider, size, buf);
CryptReleaseContext(provider, 0);
if (result)
return size;
}
for (len = 0; len < (int)size; len += 1)
{
if (len % 8 == 0)
QueryPerformanceCounter((LARGE_INTEGER *)pentium_tsc);
buf[len] = ((unsigned char*)pentium_tsc)[len % 8];
}
return len;
}
int16_t mz_win32_get_file_date(const char *path, uint32_t *dos_date)
{
FILETIME ftm_local;
HANDLE handle = NULL;
WIN32_FIND_DATAW ff32;
wchar_t *path_wide = NULL;
uint32_t path_wide_size = 0;
int16_t err = MZ_INTERNAL_ERROR;
path_wide_size = MultiByteToWideChar(CP_UTF8, 0, path, -1, NULL, 0);
path_wide = (wchar_t *)malloc((path_wide_size + 1) * sizeof(wchar_t));
memset(path_wide, 0, sizeof(wchar_t) * (path_wide_size + 1));
MultiByteToWideChar(CP_UTF8, 0, path, -1, path_wide, path_wide_size);
handle = FindFirstFileW(path_wide, &ff32);
free(path_wide);
if (handle != INVALID_HANDLE_VALUE)
{
FileTimeToLocalFileTime(&(ff32.ftLastWriteTime), &ftm_local);
FileTimeToDosDateTime(&ftm_local, ((LPWORD)dos_date) + 1, ((LPWORD)dos_date) + 0);
FindClose(handle);
err = MZ_OK;
}
return err;
}
int16_t mz_win32_set_file_date(const char *path, uint32_t dos_date)
{
HANDLE handle = NULL;
FILETIME ftm, ftm_local, ftm_create, ftm_access, ftm_modified;
wchar_t *path_wide = NULL;
uint32_t path_wide_size = 0;
int16_t err = MZ_OK;
path_wide_size = MultiByteToWideChar(CP_UTF8, 0, path, -1, NULL, 0);
path_wide = (wchar_t *)malloc((path_wide_size + 1) * sizeof(wchar_t));
memset(path_wide, 0, sizeof(wchar_t) * (path_wide_size + 1));
MultiByteToWideChar(CP_UTF8, 0, path, -1, path_wide, path_wide_size);
#ifdef IOWIN32_USING_WINRT_API
handle = CreateFile2W(path_wide, GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, NULL);
#else
handle = CreateFileW(path_wide, GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, NULL);
#endif
free(path_wide);
if (handle != INVALID_HANDLE_VALUE)
{
GetFileTime(handle, &ftm_create, &ftm_access, &ftm_modified);
DosDateTimeToFileTime((WORD)(dos_date >> 16), (WORD)dos_date, &ftm_local);
LocalFileTimeToFileTime(&ftm_local, &ftm);
if (SetFileTime(handle, &ftm, &ftm_access, &ftm) == 0)
err = MZ_INTERNAL_ERROR;
CloseHandle(handle);
}
return err;
}
int16_t mz_win32_change_dir(const char *path)
{
wchar_t *path_wide = NULL;
uint32_t path_wide_size = 0;
int16_t err = MZ_OK;
path_wide_size = MultiByteToWideChar(CP_UTF8, 0, path, -1, NULL, 0);
path_wide = (wchar_t *)malloc((path_wide_size + 1) * sizeof(wchar_t));
memset(path_wide, 0, sizeof(wchar_t) * (path_wide_size + 1));
MultiByteToWideChar(CP_UTF8, 0, path, -1, path_wide, path_wide_size);
if (_wchdir(path_wide) != 0)
err = MZ_INTERNAL_ERROR;
free(path_wide);
return err;
}
int16_t mz_win32_make_dir(const char *path)
{
wchar_t *path_wide = NULL;
uint32_t path_wide_size = 0;
int16_t err = MZ_OK;
path_wide_size = MultiByteToWideChar(CP_UTF8, 0, path, -1, NULL, 0);
path_wide = (wchar_t *)malloc((path_wide_size + 1) * sizeof(wchar_t));
memset(path_wide, 0, sizeof(wchar_t) * (path_wide_size + 1));
MultiByteToWideChar(CP_UTF8, 0, path, -1, path_wide, path_wide_size);
if (_wmkdir(path_wide) != 0)
err = MZ_INTERNAL_ERROR;
free(path_wide);
return err;
}