]> wimlib.net Git - wimlib/blob - src/util.c
f778fbae3435baa0cb806066608ca1fafc99a141
[wimlib] / src / util.c
1 /*
2  * util.c
3  */
4
5 /*
6  * Copyright (C) 2012, 2013 Eric Biggers
7  *
8  * This file is part of wimlib, a library for working with WIM files.
9  *
10  * wimlib is free software; you can redistribute it and/or modify it under the
11  * terms of the GNU General Public License as published by the Free
12  * Software Foundation; either version 3 of the License, or (at your option)
13  * any later version.
14  *
15  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
16  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17  * A PARTICULAR PURPOSE. See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with wimlib; if not, see http://www.gnu.org/licenses/.
22  */
23
24 #include "config.h"
25
26 #undef _GNU_SOURCE
27 /* Make sure the POSIX-compatible strerror_r() is declared, rather than the GNU
28  * version, which has a different return type. */
29 #define _POSIX_C_SOURCE 200112
30 #include <string.h>
31 #define _GNU_SOURCE
32
33 #include "wimlib_internal.h"
34 #include "endianness.h"
35 #include "timestamp.h"
36
37 #include <ctype.h>
38 #include <errno.h>
39 #include <stdlib.h>
40 #include <stdarg.h>
41
42 #include <unistd.h> /* for getpid() */
43
44 #ifdef __WIN32__
45 #include "win32.h"
46 #endif
47
48 static size_t
49 utf16le_strlen(const utf16lechar *s)
50 {
51         const utf16lechar *p = s;
52         while (*p)
53                 p++;
54         return (p - s) * sizeof(utf16lechar);
55 }
56
57 #ifdef __WIN32__
58 #  define wimlib_vfprintf vfwprintf
59 #else
60 /* Handle %W for UTF16-LE printing.
61  *
62  * TODO: this is not yet done properly--- it's assumed that if the format string
63  * contains %W, then it contains no other format specifiers.
64  */
65 static int
66 wimlib_vfprintf(FILE *fp, const tchar *format, va_list va)
67 {
68         const tchar *p;
69         int n;
70
71         for (p = format; *p; p++)
72                 if (*p == T('%') && *(p + 1) == T('W'))
73                         goto special;
74         return tvfprintf(fp, format, va);
75 special:
76         n = 0;
77         for (p = format; *p; p++) {
78                 if (*p == T('%') && (*(p + 1) == T('W'))) {
79                         int ret;
80                         tchar *tstr;
81                         size_t tstr_nbytes;
82                         utf16lechar *ucs = va_arg(va, utf16lechar*);
83
84                         if (ucs) {
85                                 size_t ucs_nbytes = utf16le_strlen(ucs);
86
87                                 ret = utf16le_to_tstr(ucs, ucs_nbytes,
88                                                       &tstr, &tstr_nbytes);
89                                 if (ret) {
90                                         ret = tfprintf(fp, T("??????"));
91                                 } else {
92                                         ret = tfprintf(fp, T("%"TS), tstr);
93                                         FREE(tstr);
94                                 }
95                                 if (ret < 0)
96                                         return -1;
97                                 else
98                                         n += ret;
99                         } else {
100                                 n += tfprintf(fp, T("(null)"));
101                         }
102                         p++;
103                 } else {
104                         if (tputc(*p, fp) == EOF)
105                                 return -1;
106                         n++;
107                 }
108         }
109         return n;
110 }
111
112 int
113 wimlib_printf(const tchar *format, ...)
114 {
115         int ret;
116         va_list va;
117
118         va_start(va, format);
119         ret = wimlib_vfprintf(stdout, format, va);
120         va_end(va);
121         return ret;
122 }
123
124 int
125 wimlib_fprintf(FILE *fp, const tchar *format, ...)
126 {
127         int ret;
128         va_list va;
129
130         va_start(va, format);
131         ret = wimlib_vfprintf(fp, format, va);
132         va_end(va);
133         return ret;
134 }
135 #endif
136
137 #if defined(ENABLE_ERROR_MESSAGES) || defined(ENABLE_DEBUG)
138 static void
139 wimlib_vmsg(const tchar *tag, const tchar *format,
140             va_list va, bool perror)
141 {
142 #ifndef DEBUG
143         if (wimlib_print_errors) {
144 #endif
145                 int errno_save = errno;
146                 fflush(stdout);
147                 tfputs(tag, stderr);
148                 wimlib_vfprintf(stderr, format, va);
149                 if (perror && errno_save != 0) {
150                         tchar buf[50];
151                         int res;
152                         res = tstrerror_r(errno_save, buf, sizeof(buf));
153                         if (res) {
154                                 tsprintf(buf,
155                                          T("unknown error (errno=%d)"),
156                                          errno_save);
157                         }
158                         tfprintf(stderr, T(": %"TS), buf);
159                 }
160                 tputc(T('\n'), stderr);
161                 fflush(stderr);
162                 errno = errno_save;
163 #ifndef DEBUG
164         }
165 #endif
166 }
167 #endif
168
169 /* True if wimlib is to print an informational message when an error occurs.
170  * This can be turned off by calling wimlib_set_print_errors(false). */
171 #ifdef ENABLE_ERROR_MESSAGES
172 static bool wimlib_print_errors = false;
173
174
175 void
176 wimlib_error(const tchar *format, ...)
177 {
178         va_list va;
179
180         va_start(va, format);
181         wimlib_vmsg(T("\r[ERROR] "), format, va, false);
182         va_end(va);
183 }
184
185 void
186 wimlib_error_with_errno(const tchar *format, ...)
187 {
188         va_list va;
189
190         va_start(va, format);
191         wimlib_vmsg(T("\r[ERROR] "), format, va, true);
192         va_end(va);
193 }
194
195 void
196 wimlib_warning(const tchar *format, ...)
197 {
198         va_list va;
199
200         va_start(va, format);
201         wimlib_vmsg(T("\r[WARNING] "), format, va, false);
202         va_end(va);
203 }
204
205 void
206 wimlib_warning_with_errno(const tchar *format, ...)
207 {
208         va_list va;
209
210         va_start(va, format);
211         wimlib_vmsg(T("\r[WARNING] "), format, va, true);
212         va_end(va);
213 }
214
215 #endif
216
217 #if defined(ENABLE_DEBUG) || defined(ENABLE_MORE_DEBUG)
218 void wimlib_debug(const tchar *file, int line, const char *func,
219                   const tchar *format, ...)
220 {
221         va_list va;
222         tchar buf[tstrlen(file) + strlen(func) + 30];
223
224         tsprintf(buf, T("[%"TS" %d] %s(): "), file, line, func);
225
226         va_start(va, format);
227         wimlib_vmsg(buf, format, va, false);
228         va_end(va);
229 }
230 #endif
231
232 WIMLIBAPI int
233 wimlib_set_print_errors(bool show_error_messages)
234 {
235 #ifdef ENABLE_ERROR_MESSAGES
236         wimlib_print_errors = show_error_messages;
237         return 0;
238 #else
239         if (show_error_messages)
240                 return WIMLIB_ERR_UNSUPPORTED;
241         else
242                 return 0;
243 #endif
244 }
245
246 static const tchar *error_strings[] = {
247         [WIMLIB_ERR_SUCCESS]
248                 = T("Success"),
249         [WIMLIB_ERR_ALREADY_LOCKED]
250                 = T("The WIM is already locked for writing"),
251         [WIMLIB_ERR_COMPRESSED_LOOKUP_TABLE]
252                 = T("Lookup table is compressed"),
253         [WIMLIB_ERR_DECOMPRESSION]
254                 = T("Failed to decompress compressed data"),
255         [WIMLIB_ERR_DELETE_STAGING_DIR]
256                 = T("Failed to delete staging directory"),
257         [WIMLIB_ERR_FILESYSTEM_DAEMON_CRASHED]
258                 = T("The process servicing the mounted WIM has crashed"),
259         [WIMLIB_ERR_FORK]
260                 = T("Failed to fork another process"),
261         [WIMLIB_ERR_FUSE]
262                 = T("An error was returned by fuse_main()"),
263         [WIMLIB_ERR_FUSERMOUNT]
264                 = T("Could not execute the `fusermount' program, or it exited "
265                         "with a failure status"),
266         [WIMLIB_ERR_ICONV_NOT_AVAILABLE]
267                 = T("The iconv() function does not seem to work. "
268                   "Maybe check to make sure the directory /usr/lib/gconv exists"),
269         [WIMLIB_ERR_IMAGE_COUNT]
270                 = T("Inconsistent image count among the metadata "
271                         "resources, the WIM header, and/or the XML data"),
272         [WIMLIB_ERR_INSUFFICIENT_PRIVILEGES_TO_EXTRACT]
273                 = T("User does not have sufficient privileges to correctly extract the data"),
274         [WIMLIB_ERR_IMAGE_NAME_COLLISION]
275                 = T("Tried to add an image with a name that is already in use"),
276         [WIMLIB_ERR_INTEGRITY]
277                 = T("The WIM failed an integrity check"),
278         [WIMLIB_ERR_INVALID_CAPTURE_CONFIG]
279                 = T("The capture configuration string was invalid"),
280         [WIMLIB_ERR_INVALID_CHUNK_SIZE]
281                 = T("The WIM is compressed but does not have a chunk "
282                         "size of 32768"),
283         [WIMLIB_ERR_INVALID_COMPRESSION_TYPE]
284                 = T("The WIM is compressed, but is not marked as having LZX or "
285                         "XPRESS compression"),
286         [WIMLIB_ERR_INVALID_DENTRY]
287                 = T("A directory entry in the WIM was invalid"),
288         [WIMLIB_ERR_INVALID_HEADER_SIZE]
289                 = T("The WIM header was not 208 bytes"),
290         [WIMLIB_ERR_INVALID_IMAGE]
291                 = T("Tried to select an image that does not exist in the WIM"),
292         [WIMLIB_ERR_INVALID_INTEGRITY_TABLE]
293                 = T("The WIM's integrity table is invalid"),
294         [WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY]
295                 = T("An entry in the WIM's lookup table is invalid"),
296         [WIMLIB_ERR_INVALID_MULTIBYTE_STRING]
297                 = T("A string was not valid in the current locale's character encoding"),
298         [WIMLIB_ERR_INVALID_OVERLAY]
299                 = T("Conflicting files in overlay when creating a WIM image"),
300         [WIMLIB_ERR_INVALID_PARAM]
301                 = T("An invalid parameter was given"),
302         [WIMLIB_ERR_INVALID_PART_NUMBER]
303                 = T("The part number or total parts of the WIM is invalid"),
304         [WIMLIB_ERR_INVALID_REPARSE_DATA]
305                 = T("The reparse data of a reparse point was invalid"),
306         [WIMLIB_ERR_INVALID_RESOURCE_HASH]
307                 = T("The SHA1 message digest of a WIM resource did not match the expected value"),
308         [WIMLIB_ERR_INVALID_RESOURCE_SIZE]
309                 = T("A resource entry in the WIM has an invalid size"),
310         [WIMLIB_ERR_INVALID_SECURITY_DATA]
311                 = T("The table of security descriptors in the WIM is invalid"),
312         [WIMLIB_ERR_INVALID_UNMOUNT_MESSAGE]
313                 = T("The version of wimlib that has mounted a WIM image is incompatible with the "
314                   "version being used to unmount it"),
315         [WIMLIB_ERR_INVALID_UTF8_STRING]
316                 = T("A string provided as input by the user was not a valid UTF-8 string"),
317         [WIMLIB_ERR_INVALID_UTF16_STRING]
318                 = T("A string in a WIM dentry is not a valid UTF-16LE string"),
319         [WIMLIB_ERR_LIBXML_UTF16_HANDLER_NOT_AVAILABLE]
320                 = T("libxml2 was unable to find a character encoding conversion handler "
321                   "for UTF-16LE"),
322         [WIMLIB_ERR_LINK]
323                 = T("Failed to create a hard or symbolic link when extracting "
324                         "a file from the WIM"),
325         [WIMLIB_ERR_MKDIR]
326                 = T("Failed to create a directory"),
327         [WIMLIB_ERR_MQUEUE]
328                 = T("Failed to create or use a POSIX message queue"),
329         [WIMLIB_ERR_NOMEM]
330                 = T("Ran out of memory"),
331         [WIMLIB_ERR_NOTDIR]
332                 = T("Expected a directory"),
333         [WIMLIB_ERR_NOT_A_WIM_FILE]
334                 = T("The file did not begin with the magic characters that "
335                         "identify a WIM file"),
336         [WIMLIB_ERR_NO_FILENAME]
337                 = T("The WIM is not identified with a filename"),
338         [WIMLIB_ERR_NTFS_3G]
339                 = T("NTFS-3g encountered an error (check errno)"),
340         [WIMLIB_ERR_OPEN]
341                 = T("Failed to open a file"),
342         [WIMLIB_ERR_OPENDIR]
343                 = T("Failed to open a directory"),
344         [WIMLIB_ERR_READ]
345                 = T("Could not read data from a file"),
346         [WIMLIB_ERR_READLINK]
347                 = T("Could not read the target of a symbolic link"),
348         [WIMLIB_ERR_RENAME]
349                 = T("Could not rename a file"),
350         [WIMLIB_ERR_REOPEN]
351                 = T("Could not re-open the WIM after overwriting it"),
352         [WIMLIB_ERR_REPARSE_POINT_FIXUP_FAILED]
353                 = T("Unable to complete reparse point fixup"),
354         [WIMLIB_ERR_RESOURCE_ORDER]
355                 = T("The components of the WIM were arranged in an unexpected order"),
356         [WIMLIB_ERR_SPECIAL_FILE]
357                 = T("Encountered a special file that cannot be archived"),
358         [WIMLIB_ERR_SPLIT_INVALID]
359                 = T("The WIM is part of an invalid split WIM"),
360         [WIMLIB_ERR_SPLIT_UNSUPPORTED]
361                 = T("The WIM is part of a split WIM, which is not supported for this operation"),
362         [WIMLIB_ERR_STAT]
363                 = T("Could not read the metadata for a file or directory"),
364         [WIMLIB_ERR_TIMEOUT]
365                 = T("Timed out while waiting for a message to arrive from another process"),
366         [WIMLIB_ERR_UNICODE_STRING_NOT_REPRESENTABLE]
367                 = T("A Unicode string could not be represented in the current locale's encoding"),
368         [WIMLIB_ERR_UNKNOWN_VERSION]
369                 = T("The WIM file is marked with an unknown version number"),
370         [WIMLIB_ERR_UNSUPPORTED]
371                 = T("The requested operation is unsupported"),
372         [WIMLIB_ERR_VOLUME_LACKS_FEATURES]
373                 = T("The volume did not support a feature necessary to complete the operation"),
374         [WIMLIB_ERR_WRITE]
375                 = T("Failed to write data to a file"),
376         [WIMLIB_ERR_XML]
377                 = T("The XML data of the WIM is invalid"),
378 };
379
380 WIMLIBAPI const tchar *
381 wimlib_get_error_string(enum wimlib_error_code code)
382 {
383         if (code < 0 || code >= ARRAY_LEN(error_strings))
384                 return NULL;
385         else
386                 return error_strings[code];
387 }
388
389
390
391 #ifdef ENABLE_CUSTOM_MEMORY_ALLOCATOR
392 void *(*wimlib_malloc_func) (size_t)         = malloc;
393 void  (*wimlib_free_func)   (void *)         = free;
394 void *(*wimlib_realloc_func)(void *, size_t) = realloc;
395
396 void *
397 wimlib_calloc(size_t nmemb, size_t size)
398 {
399         size_t total_size = nmemb * size;
400         void *p = MALLOC(total_size);
401         if (p)
402                 memset(p, 0, total_size);
403         return p;
404 }
405
406 char *
407 wimlib_strdup(const char *str)
408 {
409         size_t size;
410         char *p;
411
412         size = strlen(str);
413         p = MALLOC(size + 1);
414         if (p)
415                 memcpy(p, str, size + 1);
416         return p;
417 }
418
419 #ifdef __WIN32__
420 wchar_t *
421 wimlib_wcsdup(const wchar_t *str)
422 {
423         size_t size;
424         wchar_t *p;
425
426         size = wcslen(str);
427         p = MALLOC((size + 1) * sizeof(wchar_t));
428         if (p)
429                 memcpy(p, str, (size + 1) * sizeof(wchar_t));
430         return p;
431 }
432 #endif
433
434 extern void
435 xml_set_memory_allocator(void *(*malloc_func)(size_t),
436                          void (*free_func)(void *),
437                          void *(*realloc_func)(void *, size_t));
438 #endif
439
440 WIMLIBAPI int
441 wimlib_set_memory_allocator(void *(*malloc_func)(size_t),
442                             void (*free_func)(void *),
443                             void *(*realloc_func)(void *, size_t))
444 {
445 #ifdef ENABLE_CUSTOM_MEMORY_ALLOCATOR
446         wimlib_malloc_func  = malloc_func  ? malloc_func  : malloc;
447         wimlib_free_func    = free_func    ? free_func    : free;
448         wimlib_realloc_func = realloc_func ? realloc_func : realloc;
449
450         xml_set_memory_allocator(wimlib_malloc_func, wimlib_free_func,
451                                  wimlib_realloc_func);
452         return 0;
453 #else
454         ERROR("Cannot set custom memory allocator functions:");
455         ERROR("wimlib was compiled with the --without-custom-memory-allocator "
456               "flag");
457         return WIMLIB_ERR_UNSUPPORTED;
458 #endif
459 }
460
461 static bool seeded = false;
462
463 static void
464 seed_random()
465 {
466         srand(time(NULL) * getpid());
467         seeded = true;
468 }
469
470 /* Fills @n characters pointed to by @p with random alphanumeric characters. */
471 void
472 randomize_char_array_with_alnum(tchar p[], size_t n)
473 {
474         if (!seeded)
475                 seed_random();
476         while (n--) {
477                 int r = rand() % 62;
478                 if (r < 26)
479                         *p++ = r + 'a';
480                 else if (r < 52)
481                         *p++ = r - 26 + 'A';
482                 else
483                         *p++ = r - 52 + '0';
484         }
485 }
486
487 /* Fills @n bytes pointer to by @p with random numbers. */
488 void
489 randomize_byte_array(u8 *p, size_t n)
490 {
491         if (!seeded)
492                 seed_random();
493         while (n--)
494                 *p++ = rand();
495 }
496
497 const tchar *
498 path_basename_with_len(const tchar *path, size_t len)
499 {
500         const tchar *p = &path[len] - 1;
501
502         /* Trailing slashes. */
503         while (1) {
504                 if (p == path - 1)
505                         return T("");
506                 if (*p != T('/'))
507                         break;
508                 p--;
509         }
510
511         while ((p != path - 1) && *p != T('/'))
512                 p--;
513
514         return p + 1;
515 }
516
517 /* Like the basename() function, but does not modify @path; it just returns a
518  * pointer to it. */
519 const tchar *
520 path_basename(const tchar *path)
521 {
522         return path_basename_with_len(path, tstrlen(path));
523 }
524
525 /*
526  * Returns a pointer to the part of @path following the first colon in the last
527  * path component, or NULL if the last path component does not contain a colon.
528  */
529 const tchar *
530 path_stream_name(const tchar *path)
531 {
532         const tchar *base = path_basename(path);
533         const tchar *stream_name = tstrchr(base, T(':'));
534         if (!stream_name)
535                 return NULL;
536         else
537                 return stream_name + 1;
538 }
539
540 u64
541 get_wim_timestamp()
542 {
543         struct timeval tv;
544         gettimeofday(&tv, NULL);
545         return timeval_to_wim_timestamp(tv);
546 }
547
548 void
549 wim_timestamp_to_str(u64 timestamp, tchar *buf, size_t len)
550 {
551         struct tm tm;
552         time_t t = wim_timestamp_to_unix(timestamp);
553         gmtime_r(&t, &tm);
554         tstrftime(buf, len, T("%a %b %d %H:%M:%S %Y UTC"), &tm);
555 }
556
557 void
558 zap_backslashes(tchar *s)
559 {
560         if (s) {
561                 while (*s != T('\0')) {
562                         if (*s == T('\\'))
563                                 *s = T('/');
564                         s++;
565                 }
566         }
567 }