]> wimlib.net Git - wimlib/blob - src/win32_replacements.c
read_wim_lookup_table(): Allow multiple "subpacks" per packed run
[wimlib] / src / win32_replacements.c
1 /*
2  * win32_replacements.c - Replacements for various functions not available on
3  * Windows, such as fsync().
4  */
5
6 /*
7  * Copyright (C) 2013 Eric Biggers
8  *
9  * This file is part of wimlib, a library for working with WIM files.
10  *
11  * wimlib is free software; you can redistribute it and/or modify it under the
12  * terms of the GNU General Public License as published by the Free
13  * Software Foundation; either version 3 of the License, or (at your option)
14  * any later version.
15  *
16  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
17  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18  * A PARTICULAR PURPOSE. See the GNU General Public License for more
19  * details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with wimlib; if not, see http://www.gnu.org/licenses/.
23  */
24
25 #ifdef __WIN32__
26
27 #ifdef HAVE_CONFIG_H
28 #  include "config.h"
29 #endif
30
31 #include <errno.h>
32 #include <pthread.h>
33 #include <shlwapi.h> /* for PathMatchSpecW() */
34 #include "wimlib/win32_common.h"
35
36 #include "wimlib/assert.h"
37 #include "wimlib/file_io.h"
38 #include "wimlib/glob.h"
39 #include "wimlib/error.h"
40 #include "wimlib/wildcard.h"
41 #include "wimlib/util.h"
42
43 /* Replacement for POSIX fsync() */
44 int
45 fsync(int fd)
46 {
47         HANDLE h;
48
49         h = (HANDLE)_get_osfhandle(fd);
50         if (h == INVALID_HANDLE_VALUE)
51                 goto err;
52         if (!FlushFileBuffers(h))
53                 goto err_set_errno;
54         return 0;
55 err_set_errno:
56         set_errno_from_GetLastError();
57 err:
58         return -1;
59 }
60
61 /* Use the Win32 API to get the number of processors.  */
62 unsigned
63 win32_get_number_of_processors(void)
64 {
65         SYSTEM_INFO sysinfo;
66         GetSystemInfo(&sysinfo);
67         return sysinfo.dwNumberOfProcessors;
68 }
69
70 /* Use the Win32 API to get the amount of available memory.  */
71 u64
72 win32_get_avail_memory(void)
73 {
74         MEMORYSTATUSEX status = {
75                 .dwLength = sizeof(status),
76         };
77         GlobalMemoryStatusEx(&status);
78         return status.ullTotalPhys;
79 }
80
81 /* Replacement for POSIX-2008 realpath().  Warning: partial functionality only
82  * (resolved_path must be NULL).   Also I highly doubt that GetFullPathName
83  * really does the right thing under all circumstances. */
84 wchar_t *
85 realpath(const wchar_t *path, wchar_t *resolved_path)
86 {
87         DWORD ret;
88         DWORD err;
89         wimlib_assert(resolved_path == NULL);
90
91         ret = GetFullPathNameW(path, 0, NULL, NULL);
92         if (!ret) {
93                 err = GetLastError();
94                 goto fail_win32;
95         }
96
97         resolved_path = MALLOC(ret * sizeof(wchar_t));
98         if (!resolved_path)
99                 goto out;
100         ret = GetFullPathNameW(path, ret, resolved_path, NULL);
101         if (!ret) {
102                 err = GetLastError();
103                 FREE(resolved_path);
104                 resolved_path = NULL;
105                 goto fail_win32;
106         }
107         goto out;
108 fail_win32:
109         set_errno_from_win32_error(err);
110 out:
111         return resolved_path;
112 }
113
114 /* A quick hack to get reasonable rename() semantics on Windows, in particular
115  * deleting the destination file instead of failing with ERROR_FILE_EXISTS and
116  * working around any processes that may have the destination file open.
117  *
118  * Note: This is intended to be called when overwriting a regular file with an
119  * updated copy and is *not* a fully POSIX compliant rename().  For that you may
120  * wish to take a look at Cygwin's implementation, but be prepared...
121  *
122  * Return 0 on success, -1 on regular error, or 1 if the destination file was
123  * deleted but the source could not be renamed and therefore should not be
124  * deleted.
125  */
126 int
127 win32_rename_replacement(const wchar_t *srcpath, const wchar_t *dstpath)
128 {
129         wchar_t *tmpname;
130
131         /* Normally, MoveFileExW() with the MOVEFILE_REPLACE_EXISTING flag does
132          * what we want.  */
133
134         if (MoveFileExW(srcpath, dstpath, MOVEFILE_REPLACE_EXISTING))
135                 return 0;
136
137         /* MoveFileExW() failed.  One way this can happen is if any process has
138          * the destination file open, in which case ERROR_ACCESS_DENIED is
139          * produced.  This can commonly happen if there is a backup or antivirus
140          * program monitoring or scanning the files.  This behavior is very
141          * different from the behavior of POSIX rename(), which simply unlinks
142          * the destination file and allows other processes to keep it open!  */
143
144         if (GetLastError() != ERROR_ACCESS_DENIED)
145                 goto err_set_errno;
146
147         /* We can work around the above-mentioned problem by renaming the
148          * destination file to yet another temporary file, then "deleting" it,
149          * which on Windows will in fact not actually delete it immediately but
150          * rather mark it for deletion when the last handle to it is closed.  */
151         {
152                 static const wchar_t orig_suffix[5] = L".orig";
153                 const size_t num_rand_chars = 9;
154                 wchar_t *p;
155
156                 size_t dstlen = wcslen(dstpath);
157
158                 tmpname = alloca(sizeof(wchar_t) *
159                                  (dstlen + ARRAY_LEN(orig_suffix) + num_rand_chars + 1));
160                 p = tmpname;
161                 p = wmempcpy(p, dstpath, dstlen);
162                 p = wmempcpy(p, orig_suffix, ARRAY_LEN(orig_suffix));
163                 randomize_char_array_with_alnum(p, num_rand_chars);
164                 p += num_rand_chars;
165                 *p = L'\0';
166         }
167
168         if (!MoveFile(dstpath, tmpname))
169                 goto err_set_errno;
170
171         if (!DeleteFile(tmpname)) {
172                 set_errno_from_GetLastError();
173                 WARNING_WITH_ERRNO("Failed to delete original file "
174                                    "(moved to \"%ls\")", tmpname);
175         }
176
177         if (!MoveFile(srcpath, dstpath)) {
178                 set_errno_from_GetLastError();
179                 WARNING_WITH_ERRNO("Atomic semantics not respected in "
180                                    "failed rename() (new file is at \"%ls\")",
181                                    srcpath);
182                 return 1;
183         }
184
185         return 0;
186
187 err_set_errno:
188         set_errno_from_GetLastError();
189         return -1;
190 }
191
192 /* truncate() replacement */
193 int
194 win32_truncate_replacement(const wchar_t *path, off_t size)
195 {
196         DWORD err = NO_ERROR;
197         LARGE_INTEGER liOffset;
198
199         HANDLE h = win32_open_existing_file(path, GENERIC_WRITE);
200         if (h == INVALID_HANDLE_VALUE)
201                 goto fail;
202
203         liOffset.QuadPart = size;
204         if (!SetFilePointerEx(h, liOffset, NULL, FILE_BEGIN))
205                 goto fail_close_handle;
206
207         if (!SetEndOfFile(h))
208                 goto fail_close_handle;
209         CloseHandle(h);
210         return 0;
211
212 fail_close_handle:
213         err = GetLastError();
214         CloseHandle(h);
215 fail:
216         if (err == NO_ERROR)
217                 err = GetLastError();
218         set_errno_from_win32_error(err);
219         return -1;
220 }
221
222
223 /* This really could be replaced with _wcserror_s, but this doesn't seem to
224  * actually be available in MSVCRT.DLL on Windows XP (perhaps it's statically
225  * linked in by Visual Studio...?). */
226 extern int
227 win32_strerror_r_replacement(int errnum, wchar_t *buf, size_t buflen)
228 {
229         static pthread_mutex_t strerror_lock = PTHREAD_MUTEX_INITIALIZER;
230
231         pthread_mutex_lock(&strerror_lock);
232         mbstowcs(buf, strerror(errnum), buflen);
233         buf[buflen - 1] = '\0';
234         pthread_mutex_unlock(&strerror_lock);
235         return 0;
236 }
237
238 static int
239 do_pread_or_pwrite(int fd, void *buf, size_t count, off_t offset,
240                    bool is_pwrite)
241 {
242         HANDLE h;
243         LARGE_INTEGER orig_offset;
244         DWORD bytes_read_or_written;
245         LARGE_INTEGER relative_offset;
246         OVERLAPPED overlapped;
247         BOOL bret;
248
249         h = (HANDLE)_get_osfhandle(fd);
250         if (h == INVALID_HANDLE_VALUE)
251                 goto err;
252
253         if (GetFileType(h) == FILE_TYPE_PIPE) {
254                 errno = ESPIPE;
255                 goto err;
256         }
257
258         /* Get original position */
259         relative_offset.QuadPart = 0;
260         if (!SetFilePointerEx(h, relative_offset, &orig_offset, FILE_CURRENT))
261                 goto err_set_errno;
262
263         memset(&overlapped, 0, sizeof(overlapped));
264         overlapped.Offset = offset;
265         overlapped.OffsetHigh = offset >> 32;
266
267         /* Do the read or write at the specified offset */
268         if (is_pwrite)
269                 bret = WriteFile(h, buf, count, &bytes_read_or_written, &overlapped);
270         else
271                 bret = ReadFile(h, buf, count, &bytes_read_or_written, &overlapped);
272         if (!bret)
273                 goto err_set_errno;
274
275         /* Restore the original position */
276         if (!SetFilePointerEx(h, orig_offset, NULL, FILE_BEGIN))
277                 goto err_set_errno;
278
279         return bytes_read_or_written;
280 err_set_errno:
281         set_errno_from_GetLastError();
282 err:
283         return -1;
284 }
285
286 /* Dumb Windows implementation of pread().  It temporarily changes the file
287  * offset, so it is not safe to use with readers/writers on the same file
288  * descriptor.  */
289 ssize_t
290 pread(int fd, void *buf, size_t count, off_t offset)
291 {
292         return do_pread_or_pwrite(fd, buf, count, offset, false);
293 }
294
295 /* Dumb Windows implementation of pwrite().  It temporarily changes the file
296  * offset, so it is not safe to use with readers/writers on the same file
297  * descriptor. */
298 ssize_t
299 pwrite(int fd, const void *buf, size_t count, off_t offset)
300 {
301         return do_pread_or_pwrite(fd, (void*)buf, count, offset, true);
302 }
303
304 int
305 win32_get_file_and_vol_ids(const wchar_t *path, u64 *ino_ret, u64 *dev_ret)
306 {
307         HANDLE h;
308         BY_HANDLE_FILE_INFORMATION file_info;
309         int ret;
310         DWORD err;
311
312         h = win32_open_existing_file(path, FILE_READ_ATTRIBUTES);
313         if (h == INVALID_HANDLE_VALUE) {
314                 ret = WIMLIB_ERR_OPEN;
315                 goto out;
316         }
317
318         if (!GetFileInformationByHandle(h, &file_info)) {
319                 ret = WIMLIB_ERR_STAT;
320         } else {
321                 *ino_ret = ((u64)file_info.nFileIndexHigh << 32) |
322                             (u64)file_info.nFileIndexLow;
323                 *dev_ret = file_info.dwVolumeSerialNumber;
324                 ret = 0;
325         }
326         err = GetLastError();
327         CloseHandle(h);
328         SetLastError(err);
329 out:
330         set_errno_from_GetLastError();
331         return ret;
332 }
333
334 /* Replacement for glob() in Windows native builds that operates on wide
335  * characters.  */
336 int
337 win32_wglob(const wchar_t *pattern, int flags,
338             int (*errfunc)(const wchar_t *epath, int eerrno),
339             glob_t *pglob)
340 {
341         WIN32_FIND_DATAW dat;
342         DWORD err;
343         HANDLE hFind;
344         int ret;
345         size_t nspaces;
346         int errno_save;
347
348         const wchar_t *backslash, *end_slash;
349         size_t prefix_len;
350
351         backslash = wcsrchr(pattern, L'\\');
352         end_slash = wcsrchr(pattern, L'/');
353
354         if (backslash > end_slash)
355                 end_slash = backslash;
356
357         if (end_slash)
358                 prefix_len = end_slash - pattern + 1;
359         else
360                 prefix_len = 0;
361
362         /* This function does not support all functionality of the POSIX glob(),
363          * so make sure the parameters are consistent with supported
364          * functionality. */
365         wimlib_assert(errfunc == NULL);
366         wimlib_assert((flags & GLOB_ERR) == GLOB_ERR);
367         wimlib_assert((flags & ~(GLOB_NOSORT | GLOB_ERR)) == 0);
368
369         hFind = FindFirstFileW(pattern, &dat);
370         if (hFind == INVALID_HANDLE_VALUE) {
371                 err = GetLastError();
372                 if (err == ERROR_FILE_NOT_FOUND) {
373                         errno = 0;
374                         return GLOB_NOMATCH;
375                 } else {
376                         set_errno_from_win32_error(err);
377                         return GLOB_ABORTED;
378                 }
379         }
380         pglob->gl_pathc = 0;
381         pglob->gl_pathv = NULL;
382         nspaces = 0;
383         do {
384                 wchar_t *path;
385                 if (pglob->gl_pathc == nspaces) {
386                         size_t new_nspaces;
387                         wchar_t **pathv;
388
389                         new_nspaces = nspaces * 2 + 1;
390                         pathv = REALLOC(pglob->gl_pathv,
391                                         new_nspaces * sizeof(pglob->gl_pathv[0]));
392                         if (!pathv)
393                                 goto oom;
394                         pglob->gl_pathv = pathv;
395                         nspaces = new_nspaces;
396                 }
397                 size_t filename_len = wcslen(dat.cFileName);
398                 size_t len_needed = prefix_len + filename_len;
399
400                 path = MALLOC((len_needed + 1) * sizeof(wchar_t));
401                 if (!path)
402                         goto oom;
403
404                 wmemcpy(path, pattern, prefix_len);
405                 wmemcpy(path + prefix_len, dat.cFileName, filename_len + 1);
406                 pglob->gl_pathv[pglob->gl_pathc++] = path;
407         } while (FindNextFileW(hFind, &dat));
408         err = GetLastError();
409         CloseHandle(hFind);
410         if (err != ERROR_NO_MORE_FILES) {
411                 set_errno_from_win32_error(err);
412                 ret = GLOB_ABORTED;
413                 goto fail_globfree;
414         }
415         return 0;
416
417 oom:
418         CloseHandle(hFind);
419         errno = ENOMEM;
420         ret = GLOB_NOSPACE;
421 fail_globfree:
422         errno_save = errno;
423         globfree(pglob);
424         errno = errno_save;
425         return ret;
426 }
427
428 void
429 globfree(glob_t *pglob)
430 {
431         size_t i;
432         for (i = 0; i < pglob->gl_pathc; i++)
433                 FREE(pglob->gl_pathv[i]);
434         FREE(pglob->gl_pathv);
435 }
436
437 #endif /* __WIN32__ */