Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 1 | /* |
| 2 | zip_source_win32a.c -- create data source from Windows file (ANSI) |
| 3 | Copyright (C) 1999-2014 Dieter Baron and Thomas Klausner |
| 4 | |
| 5 | This file is part of libzip, a library to manipulate ZIP archives. |
| 6 | The authors can be contacted at <libzip@nih.at> |
| 7 | |
| 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. |
| 20 | |
| 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. |
| 32 | */ |
| 33 | |
| 34 | |
| 35 | #include <errno.h> |
| 36 | #include <stdio.h> |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 37 | |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 38 | #include "zipint.h" |
Andrew Molyneux | c6a581a | 2015-02-07 14:00:05 +0000 | [diff] [blame] | 39 | #include "zipwin32.h" |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 40 | |
| 41 | static void * _win32_strdup_a(const void *str); |
| 42 | static HANDLE _win32_open_a(_zip_source_win32_read_file_t *ctx); |
Andrew Molyneux | bf871b5 | 2015-02-20 08:14:22 +0000 | [diff] [blame] | 43 | static HANDLE _win32_create_temp_a(_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] | 44 | static int _win32_rename_temp_a(_zip_source_win32_read_file_t *ctx); |
Andrew Molyneux | cb815c4 | 2014-12-24 21:24:58 +0000 | [diff] [blame] | 45 | static int _win32_remove_a(const void *fname); |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 46 | |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 47 | static _zip_source_win32_file_ops_t win32_ops_a = { |
| 48 | .op_strdup = _win32_strdup_a, |
| 49 | .op_open = _win32_open_a, |
| 50 | .op_create_temp = _win32_create_temp_a, |
| 51 | .op_rename_temp = _win32_rename_temp_a, |
Andrew Molyneux | cb815c4 | 2014-12-24 21:24:58 +0000 | [diff] [blame] | 52 | .op_remove = _win32_remove_a |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 53 | }; |
| 54 | |
| 55 | ZIP_EXTERN zip_source_t * |
| 56 | zip_source_win32a(zip_t *za, const char *fname, zip_uint64_t start, zip_int64_t len) |
| 57 | { |
| 58 | if (za == NULL) |
| 59 | return NULL; |
| 60 | |
| 61 | return zip_source_win32a_create(fname, start, len, &za->error); |
| 62 | } |
| 63 | |
| 64 | |
| 65 | ZIP_EXTERN zip_source_t * |
| 66 | zip_source_win32a_create(const char *fname, zip_uint64_t start, zip_int64_t length, zip_error_t *error) |
| 67 | { |
| 68 | if (fname == NULL || length < -1) { |
| 69 | zip_error_set(error, ZIP_ER_INVAL, 0); |
| 70 | return NULL; |
| 71 | } |
| 72 | |
| 73 | return _zip_source_win32_handle_or_name(fname, INVALID_HANDLE_VALUE, start, length, 1, NULL, &win32_ops_a, error); |
| 74 | } |
| 75 | |
| 76 | |
Thomas Klausner | 892fb3b | 2015-01-27 15:00:57 +0100 | [diff] [blame] | 77 | static void * |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 78 | _win32_strdup_a(const void *str) |
| 79 | { |
| 80 | return strdup((const char *)str); |
| 81 | } |
| 82 | |
| 83 | |
Thomas Klausner | 892fb3b | 2015-01-27 15:00:57 +0100 | [diff] [blame] | 84 | static HANDLE |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 85 | _win32_open_a(_zip_source_win32_read_file_t *ctx) |
| 86 | { |
Andrew Molyneux | 99e167f | 2015-02-22 13:28:53 +0000 | [diff] [blame] | 87 | return CreateFileA(ctx->fname, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | |
Thomas Klausner | 892fb3b | 2015-01-27 15:00:57 +0100 | [diff] [blame] | 91 | static HANDLE |
Andrew Molyneux | bf871b5 | 2015-02-20 08:14:22 +0000 | [diff] [blame] | 92 | _win32_create_temp_a(_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] | 93 | { |
| 94 | int len; |
| 95 | |
| 96 | len = strlen((const char *)ctx->fname) + 10; |
| 97 | if (*temp == NULL) { |
Andrew Molyneux | f97c661 | 2014-12-24 22:02:36 +0000 | [diff] [blame] | 98 | if ((*temp = malloc(sizeof(char) * len)) == NULL) { |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 99 | zip_error_set(&ctx->error, ZIP_ER_MEMORY, 0); |
| 100 | return INVALID_HANDLE_VALUE; |
| 101 | } |
| 102 | } |
| 103 | if (sprintf((char *)*temp, "%s.%08x", (const char *)ctx->fname, value) != len - 1) { |
| 104 | return INVALID_HANDLE_VALUE; |
| 105 | } |
| 106 | |
Andrew Molyneux | bf871b5 | 2015-02-20 08:14:22 +0000 | [diff] [blame] | 107 | return CreateFileA((const char *)*temp, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ, sa, CREATE_NEW, FILE_ATTRIBUTE_NORMAL | FILE_ATTRIBUTE_TEMPORARY, NULL); |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | |
Thomas Klausner | 892fb3b | 2015-01-27 15:00:57 +0100 | [diff] [blame] | 111 | static int |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 112 | _win32_rename_temp_a(_zip_source_win32_read_file_t *ctx) |
| 113 | { |
Andrew Molyneux | 73d4a30 | 2014-12-24 22:00:37 +0000 | [diff] [blame] | 114 | if (!MoveFileExA(ctx->tmpname, ctx->fname, MOVEFILE_REPLACE_EXISTING)) |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 115 | return -1; |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 116 | return 0; |
| 117 | } |
| 118 | |
| 119 | |
Thomas Klausner | 892fb3b | 2015-01-27 15:00:57 +0100 | [diff] [blame] | 120 | static int |
Andrew Molyneux | cb815c4 | 2014-12-24 21:24:58 +0000 | [diff] [blame] | 121 | _win32_remove_a(const void *fname) |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 122 | { |
Andrew Molyneux | cb815c4 | 2014-12-24 21:24:58 +0000 | [diff] [blame] | 123 | DeleteFileA((const char *)fname); |
Andrew Molyneux | 516cab0 | 2014-12-24 20:07:05 +0000 | [diff] [blame] | 124 | return 0; |
| 125 | } |