Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 1 | /* |
Michał Janiszewski | 2db8ea7 | 2017-12-18 09:54:54 +0100 | [diff] [blame] | 2 | zip_source_win32w.c -- create data source from Windows file (UTF-16) |
| 3 | Copyright (C) 1999-2017 Dieter Baron and Thomas Klausner |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 4 | |
Michał Janiszewski | 2db8ea7 | 2017-12-18 09:54:54 +0100 | [diff] [blame] | 5 | This file is part of libzip, a library to manipulate ZIP archives. |
| 6 | The authors can be contacted at <libzip@nih.at> |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 7 | |
Michał Janiszewski | 2db8ea7 | 2017-12-18 09:54:54 +0100 | [diff] [blame] | 8 | Redistribution and use in source and binary forms, with or without |
| 9 | modification, are permitted provided that the following conditions |
| 10 | are met: |
| 11 | 1. Redistributions of source code must retain the above copyright |
| 12 | notice, this list of conditions and the following disclaimer. |
| 13 | 2. Redistributions in binary form must reproduce the above copyright |
| 14 | notice, this list of conditions and the following disclaimer in |
| 15 | the documentation and/or other materials provided with the |
| 16 | distribution. |
| 17 | 3. The names of the authors may not be used to endorse or promote |
| 18 | products derived from this software without specific prior |
| 19 | written permission. |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 20 | |
Michał Janiszewski | 2db8ea7 | 2017-12-18 09:54:54 +0100 | [diff] [blame] | 21 | THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS |
| 22 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 23 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 24 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY |
| 25 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 26 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE |
| 27 | GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 28 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER |
| 29 | IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 30 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
| 31 | IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 32 | */ |
| 33 | |
| 34 | |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 35 | #include <stdio.h> |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 36 | |
| 37 | #include "zipint.h" |
Andrew Molyneux | c6a581a | 2015-02-07 14:00:05 +0000 | [diff] [blame] | 38 | #include "zipwin32.h" |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 39 | |
Andrew Molyneux | 8c444d6 | 2014-12-24 21:09:16 +0000 | [diff] [blame] | 40 | static void * _win32_strdup_w(const void *str); |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 41 | static HANDLE _win32_open_w(_zip_source_win32_read_file_t *ctx); |
Andrew Molyneux | bf871b5 | 2015-02-20 08:14:22 +0000 | [diff] [blame] | 42 | static HANDLE _win32_create_temp_w(_zip_source_win32_read_file_t *ctx, void **temp, zip_uint32_t value, PSECURITY_ATTRIBUTES sa); |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 43 | static int _win32_rename_temp_w(_zip_source_win32_read_file_t *ctx); |
Andrew Molyneux | cb815c4 | 2014-12-24 21:24:58 +0000 | [diff] [blame] | 44 | static int _win32_remove_w(const void *fname); |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 45 | |
| 46 | static _zip_source_win32_file_ops_t win32_ops_w = { |
Thomas Klausner | ba3d4ba | 2016-01-06 11:08:38 +0100 | [diff] [blame] | 47 | _win32_strdup_w, |
| 48 | _win32_open_w, |
| 49 | _win32_create_temp_w, |
| 50 | _win32_rename_temp_w, |
| 51 | _win32_remove_w |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 52 | }; |
| 53 | |
| 54 | ZIP_EXTERN zip_source_t * |
| 55 | zip_source_win32w(zip_t *za, const wchar_t *fname, zip_uint64_t start, zip_int64_t len) |
| 56 | { |
| 57 | if (za == NULL) |
| 58 | return NULL; |
| 59 | |
| 60 | return zip_source_win32w_create(fname, start, len, &za->error); |
| 61 | } |
| 62 | |
| 63 | |
| 64 | ZIP_EXTERN zip_source_t * |
| 65 | zip_source_win32w_create(const wchar_t *fname, zip_uint64_t start, zip_int64_t length, zip_error_t *error) |
| 66 | { |
| 67 | if (fname == NULL || length < -1) { |
| 68 | zip_error_set(error, ZIP_ER_INVAL, 0); |
| 69 | return NULL; |
| 70 | } |
| 71 | |
| 72 | return _zip_source_win32_handle_or_name(fname, INVALID_HANDLE_VALUE, start, length, 1, NULL, &win32_ops_w, error); |
| 73 | } |
| 74 | |
| 75 | |
Thomas Klausner | 892fb3b | 2015-01-27 15:00:57 +0100 | [diff] [blame] | 76 | static void * |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 77 | _win32_strdup_w(const void *str) |
| 78 | { |
| 79 | return _wcsdup((const wchar_t *)str); |
| 80 | } |
| 81 | |
| 82 | |
Thomas Klausner | 892fb3b | 2015-01-27 15:00:57 +0100 | [diff] [blame] | 83 | static HANDLE |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 84 | _win32_open_w(_zip_source_win32_read_file_t *ctx) |
| 85 | { |
Michał Janiszewski | 2db8ea7 | 2017-12-18 09:54:54 +0100 | [diff] [blame] | 86 | #ifdef MS_UWP |
| 87 | CREATEFILE2_EXTENDED_PARAMETERS extParams = { 0 }; |
| 88 | extParams.dwFileAttributes = FILE_ATTRIBUTE_NORMAL; |
| 89 | extParams.dwFileFlags = FILE_FLAG_RANDOM_ACCESS; |
| 90 | extParams.dwSecurityQosFlags = SECURITY_ANONYMOUS; |
| 91 | extParams.dwSize = sizeof(extParams); |
| 92 | extParams.hTemplateFile = NULL; |
| 93 | extParams.lpSecurityAttributes = NULL; |
| 94 | |
| 95 | return CreateFile2(ctx->fname, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE, OPEN_EXISTING, &extParams); |
| 96 | #else |
Andrew Molyneux | 99e167f | 2015-02-22 13:28:53 +0000 | [diff] [blame] | 97 | return CreateFileW(ctx->fname, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); |
Michał Janiszewski | 2db8ea7 | 2017-12-18 09:54:54 +0100 | [diff] [blame] | 98 | #endif |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | |
Thomas Klausner | 892fb3b | 2015-01-27 15:00:57 +0100 | [diff] [blame] | 102 | static HANDLE |
Andrew Molyneux | bf871b5 | 2015-02-20 08:14:22 +0000 | [diff] [blame] | 103 | _win32_create_temp_w(_zip_source_win32_read_file_t *ctx, void **temp, zip_uint32_t value, PSECURITY_ATTRIBUTES sa) |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 104 | { |
Thomas Klausner | 965be61 | 2017-06-21 00:11:45 +0200 | [diff] [blame] | 105 | size_t len; |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 106 | |
| 107 | len = wcslen((const wchar_t *)ctx->fname) + 10; |
| 108 | if (*temp == NULL) { |
Andrew Molyneux | f97c661 | 2014-12-24 22:02:36 +0000 | [diff] [blame] | 109 | if ((*temp = malloc(sizeof(wchar_t) * len)) == NULL) { |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 110 | zip_error_set(&ctx->error, ZIP_ER_MEMORY, 0); |
| 111 | return INVALID_HANDLE_VALUE; |
| 112 | } |
| 113 | } |
Thomas Klausner | 5730a37 | 2015-08-25 07:50:49 +0200 | [diff] [blame] | 114 | if (_snwprintf((wchar_t *)*temp, len, L"%s.%08x", (const wchar_t *)ctx->fname, value) != len - 1) { |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 115 | return INVALID_HANDLE_VALUE; |
| 116 | } |
| 117 | |
Michał Janiszewski | 2db8ea7 | 2017-12-18 09:54:54 +0100 | [diff] [blame] | 118 | #ifdef MS_UWP |
| 119 | CREATEFILE2_EXTENDED_PARAMETERS extParams = { 0 }; |
| 120 | extParams.dwFileAttributes = FILE_ATTRIBUTE_NORMAL | FILE_ATTRIBUTE_TEMPORARY; |
| 121 | extParams.dwFileFlags = FILE_FLAG_RANDOM_ACCESS; |
| 122 | extParams.dwSecurityQosFlags = SECURITY_ANONYMOUS; |
| 123 | extParams.dwSize = sizeof(extParams); |
| 124 | extParams.hTemplateFile = NULL; |
| 125 | extParams.lpSecurityAttributes = NULL; |
| 126 | |
| 127 | return CreateFile2((const wchar_t *)*temp, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ, CREATE_NEW, &extParams); |
| 128 | #else |
Andrew Molyneux | bf871b5 | 2015-02-20 08:14:22 +0000 | [diff] [blame] | 129 | return CreateFileW((const wchar_t *)*temp, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ, sa, CREATE_NEW, FILE_ATTRIBUTE_NORMAL | FILE_ATTRIBUTE_TEMPORARY, NULL); |
Michał Janiszewski | 2db8ea7 | 2017-12-18 09:54:54 +0100 | [diff] [blame] | 130 | #endif |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | |
Thomas Klausner | 892fb3b | 2015-01-27 15:00:57 +0100 | [diff] [blame] | 134 | static int |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 135 | _win32_rename_temp_w(_zip_source_win32_read_file_t *ctx) |
| 136 | { |
Andrew Molyneux | 73d4a30 | 2014-12-24 22:00:37 +0000 | [diff] [blame] | 137 | if (!MoveFileExW(ctx->tmpname, ctx->fname, MOVEFILE_REPLACE_EXISTING)) |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 138 | return -1; |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 139 | return 0; |
| 140 | } |
| 141 | |
| 142 | |
Thomas Klausner | 892fb3b | 2015-01-27 15:00:57 +0100 | [diff] [blame] | 143 | static int |
Andrew Molyneux | cb815c4 | 2014-12-24 21:24:58 +0000 | [diff] [blame] | 144 | _win32_remove_w(const void *fname) |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 145 | { |
Andrew Molyneux | cb815c4 | 2014-12-24 21:24:58 +0000 | [diff] [blame] | 146 | DeleteFileW((const wchar_t *)fname); |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 147 | return 0; |
| 148 | } |