]> wimlib.net Git - wimlib/blob - src/util.c
imagex capture and append consolidation
[wimlib] / src / util.c
1 /*
2  * util.c
3  */
4
5 /*
6  * Copyright (C) 2012 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 "wimlib_internal.h"
25 #include "endianness.h"
26 #include "sha1.h"
27 #include "timestamp.h"
28 #include <sys/time.h>
29
30
31 #include <iconv.h>
32 #include <string.h>
33 #include <ctype.h>
34 #include <stdlib.h>
35 #include <time.h>
36 #include <unistd.h>
37 #include <errno.h>
38
39 /* True if wimlib is to print an informational message when an error occurs.
40  * This can be turned off by calling wimlib_set_print_errors(false). */
41 #ifdef ENABLE_ERROR_MESSAGES
42 #include <stdarg.h>
43 bool __wimlib_print_errors = false;
44
45 void wimlib_error(const char *format, ...)
46 {
47         if (__wimlib_print_errors) {
48                 va_list va;
49                 int errno_save;
50
51                 va_start(va, format);
52                 errno_save = errno;
53                 fputs("[ERROR] ", stderr);
54                 vfprintf(stderr, format, va);
55                 putc('\n', stderr);
56                 errno = errno_save;
57                 va_end(va);
58         }
59 }
60
61 void wimlib_error_with_errno(const char *format, ...)
62 {
63         if (__wimlib_print_errors) {
64                 va_list va;
65                 int errno_save;
66
67                 va_start(va, format);
68                 errno_save = errno;
69                 fflush(stdout);
70                 fputs("[ERROR] ", stderr);
71                 vfprintf(stderr, format, va);
72                 fprintf(stderr, ": %s\n", strerror(errno_save));
73                 errno = errno_save;
74                 va_end(va);
75         }
76 }
77
78 void wimlib_warning(const char *format, ...)
79 {
80         if (__wimlib_print_errors) {
81                 va_list va;
82                 int errno_save;
83
84                 va_start(va, format);
85                 errno_save = errno;
86                 fflush(stdout);
87                 fputs("[WARNING] ", stderr);
88                 vfprintf(stderr, format, va);
89                 putc('\n', stderr);
90                 errno = errno_save;
91                 va_end(va);
92         }
93 }
94
95 #endif
96
97 WIMLIBAPI int wimlib_set_print_errors(bool show_error_messages)
98 {
99 #ifdef ENABLE_ERROR_MESSAGES
100         __wimlib_print_errors = show_error_messages;
101         return 0;
102 #else
103         if (show_error_messages)
104                 return WIMLIB_ERR_UNSUPPORTED;
105 #endif
106 }
107
108 static const char *error_strings[] = {
109         [WIMLIB_ERR_SUCCESS] 
110                 = "Success",
111         [WIMLIB_ERR_COMPRESSED_LOOKUP_TABLE] 
112                 = "Lookup table is compressed",
113         [WIMLIB_ERR_DECOMPRESSION] 
114                 = "Failed to decompress compressed data",
115         [WIMLIB_ERR_DELETE_STAGING_DIR] 
116                 = "Failed to delete staging directory",
117         [WIMLIB_ERR_FORK] 
118                 = "Failed to fork another process",
119         [WIMLIB_ERR_FUSE] 
120                 = "An error was returned by fuse_main()",
121         [WIMLIB_ERR_FUSERMOUNT] 
122                 = "Could not execute the `fusermount' program, or it exited "
123                         "with a failure status",
124         [WIMLIB_ERR_IMAGE_COUNT] 
125                 = "Inconsistent image count among the metadata "
126                         "resources, the WIM header, and/or the XML data",
127         [WIMLIB_ERR_IMAGE_NAME_COLLISION] 
128                 = "Tried to add an image with a name that is already in use",
129         [WIMLIB_ERR_INTEGRITY] 
130                 = "The WIM failed an integrity check",
131         [WIMLIB_ERR_INVALID_CAPTURE_CONFIG]
132                 = "The capture configuration string was invalid",
133         [WIMLIB_ERR_INVALID_CHUNK_SIZE] 
134                 = "The WIM is compressed but does not have a chunk "
135                         "size of 32768",
136         [WIMLIB_ERR_INVALID_COMPRESSION_TYPE] 
137                 = "The WIM is compressed, but is not marked as having LZX or "
138                         "XPRESS compression",
139         [WIMLIB_ERR_INVALID_DENTRY] 
140                 = "A directory entry in the WIM was invalid",
141         [WIMLIB_ERR_INVALID_HEADER_SIZE] 
142                 = "The WIM header was not 208 bytes",
143         [WIMLIB_ERR_INVALID_IMAGE] 
144                 = "Tried to select an image that does not exist in the WIM",
145         [WIMLIB_ERR_INVALID_INTEGRITY_TABLE] 
146                 = "The WIM's integrity table is invalid",
147         [WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY]
148                 = "An entry in the WIM's lookup table is invalid",
149         [WIMLIB_ERR_INVALID_PARAM] 
150                 = "An invalid parameter was given",
151         [WIMLIB_ERR_INVALID_RESOURCE_HASH]
152                 = "The SHA1 message digest of a WIM resource did not match the expected value",
153         [WIMLIB_ERR_INVALID_RESOURCE_SIZE] 
154                 = "A resource entry in the WIM is invalid",
155         [WIMLIB_ERR_LINK] 
156                 = "Failed to create a hard or symbolic link when extracting "
157                         "a file from the WIM",
158         [WIMLIB_ERR_MKDIR] 
159                 = "Failed to create a directory",
160         [WIMLIB_ERR_MQUEUE] 
161                 = "Failed to create or use a POSIX message queue",
162         [WIMLIB_ERR_NOMEM] 
163                 = "Ran out of memory",
164         [WIMLIB_ERR_NOTDIR] 
165                 = "Expected a directory",
166         [WIMLIB_ERR_NOT_A_WIM_FILE] 
167                 = "The file did not begin with the magic characters that "
168                         "identify a WIM file",
169         [WIMLIB_ERR_NO_FILENAME] 
170                 = "The WIM is not identified with a filename",
171         [WIMLIB_ERR_NTFS_3G]
172                 = "NTFS-3g encountered an error (check errno)",
173         [WIMLIB_ERR_OPEN] 
174                 = "Failed to open a file",
175         [WIMLIB_ERR_OPENDIR] 
176                 = "Failed to open a directory",
177         [WIMLIB_ERR_READ] 
178                 = "Could not read data from a file",
179         [WIMLIB_ERR_READLINK]
180                 = "Could not read the target of a symbolic link",
181         [WIMLIB_ERR_RENAME] 
182                 = "Could not rename a file",
183         [WIMLIB_ERR_SPECIAL_FILE]
184                 = "Encountered a special file that cannot be archived",
185         [WIMLIB_ERR_SPLIT_INVALID] 
186                 = "The WIM is part of an invalid split WIM",
187         [WIMLIB_ERR_SPLIT_UNSUPPORTED] 
188                 = "The WIM is part of a split WIM, which is not supported for this operation",
189         [WIMLIB_ERR_STAT] 
190                 = "Could not read the metadata for a file or directory",
191         [WIMLIB_ERR_TIMEOUT] 
192                 = "Timed out",
193         [WIMLIB_ERR_UNKNOWN_VERSION] 
194                 = "The WIM file is marked with an unknown version number",
195         [WIMLIB_ERR_UNSUPPORTED] 
196                 = "The requested operation is unsupported",
197         [WIMLIB_ERR_WRITE] 
198                 = "Failed to write data to a file",
199         [WIMLIB_ERR_XML] 
200                 = "The XML data of the WIM is invalid",
201 };
202
203 WIMLIBAPI const char *wimlib_get_error_string(enum wimlib_error_code code)
204 {
205         if (code < WIMLIB_ERR_SUCCESS || code > WIMLIB_ERR_XML)
206                 return NULL;
207         else
208                 return error_strings[code];
209 }
210
211
212
213 #ifdef ENABLE_CUSTOM_MEMORY_ALLOCATOR
214 void *(*wimlib_malloc_func) (size_t)         = malloc;
215 void  (*wimlib_free_func)   (void *)         = free;
216 void *(*wimlib_realloc_func)(void *, size_t) = realloc;
217
218 void *wimlib_calloc(size_t nmemb, size_t size)
219 {
220         size_t total_size = nmemb * size;
221         void *p = MALLOC(total_size);
222         if (p)
223                 memset(p, 0, total_size);
224         return p;
225 }
226
227 char *wimlib_strdup(const char *str)
228 {
229         size_t size;
230         char *p;
231         
232         size = strlen(str); 
233         p = MALLOC(size + 1);
234         if (p)
235                 memcpy(p, str, size + 1);
236         return p;
237 }
238
239 extern void xml_set_memory_allocator(void *(*malloc_func)(size_t),
240                                    void (*free_func)(void *),
241                                    void *(*realloc_func)(void *, size_t));
242 #endif
243
244 WIMLIBAPI int wimlib_set_memory_allocator(void *(*malloc_func)(size_t),
245                                            void (*free_func)(void *),
246                                            void *(*realloc_func)(void *, size_t))
247 {
248 #ifdef ENABLE_CUSTOM_MEMORY_ALLOCATOR
249         wimlib_malloc_func  = malloc_func  ? malloc_func  : malloc;
250         wimlib_free_func    = free_func    ? free_func    : free;
251         wimlib_realloc_func = realloc_func ? realloc_func : realloc;
252
253         xml_set_memory_allocator(wimlib_malloc_func, wimlib_free_func, 
254                                  wimlib_realloc_func);
255         return 0;
256 #else
257         ERROR("Cannot set custom memory allocator functions:");
258         ERROR("wimlib was compiled with the --without-custom-memory-allocator "
259               "flag");
260         return WIMLIB_ERR_UNSUPPORTED;
261 #endif
262 }
263
264
265
266 static iconv_t cd_utf16_to_utf8 = (iconv_t)(-1);
267
268 /* Converts a string in the UTF-16 encoding to a newly allocated string in the
269  * UTF-8 encoding.  */
270 char *utf16_to_utf8(const char *utf16_str, size_t utf16_len,
271                     size_t *utf8_len_ret)
272 {
273         if (cd_utf16_to_utf8 == (iconv_t)(-1)) {
274                 cd_utf16_to_utf8 = iconv_open("UTF-8", "UTF-16LE");
275                 if (cd_utf16_to_utf8 == (iconv_t)-1) {
276                         ERROR_WITH_ERRNO("Failed to get conversion descriptor "
277                                          "for converting UTF-16LE to UTF-8");
278                         return NULL;
279                 }
280         }
281         size_t utf16_bytes_left  = utf16_len;
282         size_t utf8_bytes_left   = utf16_len;
283
284         char *utf8_str = MALLOC(utf8_bytes_left);
285         if (!utf8_str)
286                 return NULL;
287
288         char *orig_utf8_str = utf8_str;
289
290         size_t num_chars_converted = iconv(cd_utf16_to_utf8, (char**)&utf16_str, 
291                         &utf16_bytes_left, &utf8_str, &utf8_bytes_left);
292
293         if (num_chars_converted == (size_t)(-1)) {
294                 ERROR_WITH_ERRNO("Failed to convert UTF-16LE string to UTF-8 "
295                                  "string");
296                 FREE(orig_utf8_str);
297                 return NULL;
298         }
299
300         size_t utf8_len = utf16_len - utf8_bytes_left;
301
302         *utf8_len_ret = utf8_len;
303         orig_utf8_str[utf8_len] = '\0';
304         return orig_utf8_str;
305 }
306
307 static iconv_t cd_utf8_to_utf16 = (iconv_t)(-1);
308
309 /* Converts a string in the UTF-8 encoding to a newly allocated string in the
310  * UTF-16 encoding.  */
311 char *utf8_to_utf16(const char *utf8_str, size_t utf8_len,
312                     size_t *utf16_len_ret)
313 {
314         if (cd_utf8_to_utf16 == (iconv_t)(-1)) {
315                 cd_utf8_to_utf16 = iconv_open("UTF-16LE", "UTF-8");
316                 if (cd_utf8_to_utf16 == (iconv_t)-1) {
317                         ERROR_WITH_ERRNO("Failed to get conversion descriptor "
318                                          "for converting UTF-8 to UTF-16LE");
319                         return NULL;
320                 }
321         }
322
323         size_t utf8_bytes_left   = utf8_len;
324         size_t utf16_capacity    = utf8_len * 4;
325         size_t utf16_bytes_left  = utf16_capacity;
326
327         char *utf16_str = MALLOC(utf16_capacity + 2);
328         if (!utf16_str)
329                 return NULL;
330
331         char *orig_utf16_str = utf16_str;
332
333         size_t num_chars_converted = iconv(cd_utf8_to_utf16, (char**)&utf8_str, 
334                         &utf8_bytes_left, &utf16_str, &utf16_bytes_left);
335
336         if (num_chars_converted == (size_t)(-1)) {
337                 ERROR_WITH_ERRNO("Failed to convert UTF-8 string to UTF-16LE "
338                                  "string");
339                 FREE(orig_utf16_str);
340                 return NULL;
341         }
342
343         size_t utf16_len = utf16_capacity - utf16_bytes_left;
344
345         *utf16_len_ret = utf16_len;
346         orig_utf16_str[utf16_len] = '\0';
347         orig_utf16_str[utf16_len + 1] = '\0';
348         return orig_utf16_str;
349 }
350
351 /* Write @n bytes from @buf to the file descriptor @fd, retrying on interupt and
352  * on short writes.
353  *
354  * Returns short count and set errno on failure. */
355 ssize_t full_write(int fd, const void *buf, size_t n)
356 {
357         const char *p = buf;
358         ssize_t ret;
359         ssize_t total = 0;
360
361         while (total != n) {
362                 ret = write(fd, p, n);
363                 if (ret < 0) {
364                         if (errno == EINTR)
365                                 continue;
366                         else
367                                 break;
368                 }
369                 total += ret;
370                 p += ret;
371         }
372         return total;
373 }
374
375
376 static bool seeded = false;
377
378 /* Fills @n bytes pointed to by @p with random alphanumeric characters. */
379 void randomize_char_array_with_alnum(char p[], size_t n)
380 {
381         int r;
382
383         if (!seeded) {
384                 srand(time(NULL));
385                 seeded = true;
386         }
387         while (n--) {
388                 r = rand() % 62;
389                 if (r < 26)
390                         *p++ = r + 'a';
391                 else if (r < 52)
392                         *p++ = r - 26 + 'A';
393                 else
394                         *p++ = r - 52 + '0';
395         }
396 }
397
398 /* Fills @n bytes pointer to by @p with random numbers. */
399 void randomize_byte_array(u8 *p, size_t n)
400 {
401         if (!seeded) {
402                 srand(time(NULL));
403                 seeded = true;
404         }
405         while (n--)
406                 *p++ = rand();
407 }
408
409 /* Takes in a path of length @len in @buf, and transforms it into a string for
410  * the path of its parent directory. */
411 void to_parent_name(char buf[], size_t len)
412 {
413         ssize_t i = (ssize_t)len - 1;
414         while (i >= 0 && buf[i] == '/')
415                 i--;
416         while (i >= 0 && buf[i] != '/')
417                 i--;
418         while (i >= 0 && buf[i] == '/')
419                 i--;
420         buf[i + 1] = '\0';
421 }
422
423 /* Like the basename() function, but does not modify @path; it just returns a
424  * pointer to it. */
425 const char *path_basename(const char *path)
426 {
427         const char *p = path;
428         while (*p)
429                 p++;
430         p--;
431
432         /* Trailing slashes. */
433         while (1) {
434                 if (p == path - 1)
435                         return "";
436                 if (*p != '/')
437                         break;
438                 p--;
439         }
440
441         while ((p != path - 1) && *p != '/')
442                 p--;
443
444         return p + 1;
445 }
446
447 /* 
448  * Returns a pointer to the part of @path following the first colon in the last
449  * path component, or NULL if the last path component does not contain a colon.
450  */
451 const char *path_stream_name(const char *path)
452 {
453         const char *base = path_basename(path);
454         const char *stream_name = strchr(base, ':');
455         if (!stream_name)
456                 return NULL;
457         else
458                 return stream_name + 1;
459 }
460
461 /* 
462  * Splits a file path into the part before the first '/', or the entire name if
463  * there is no '/', and the part after the first sequence of '/' characters.
464  *
465  * @path:               The file path to split.
466  * @first_part_len_ret: A pointer to a `size_t' into which the length of the
467  *                              first part of the path will be returned.
468  * @return:             A pointer to the next part of the path, after the first
469  *                              sequence of '/', or a pointer to the terminating 
470  *                              null byte in the case of a path without any '/'.
471  */
472 const char *path_next_part(const char *path, size_t *first_part_len_ret)
473 {
474         size_t i;
475         const char *next_part;
476
477         i = 0;
478         while (path[i] != '/' && path[i] != '\0')
479                 i++;
480         if (first_part_len_ret)
481                 *first_part_len_ret = i;
482         next_part = &path[i];
483         while (*next_part == '/')
484                 next_part++;
485         return next_part;
486 }
487
488 /* Returns the number of components of @path.  */
489 int get_num_path_components(const char *path)
490 {
491         int num_components = 0;
492         while (*path) {
493                 while (*path == '/')
494                         path++;
495                 if (*path)
496                         num_components++;
497                 while (*path && *path != '/')
498                         path++;
499         }
500         return num_components;
501 }
502
503
504 /* 
505  * Prints a string.  Printable characters are printed as-is, while unprintable
506  * characters are printed as their octal escape codes. 
507  */
508 void print_string(const void *string, size_t len)
509 {
510         const u8 *p = string;
511
512         while (len--) {
513                 if (isprint(*p))
514                         putchar(*p);
515                 else
516                         printf("\\%03hho", *p);
517                 p++;
518         }
519 }
520
521 u64 get_wim_timestamp()
522 {
523         struct timeval tv;
524         gettimeofday(&tv, NULL);
525         return timeval_to_wim_timestamp(&tv);
526 }
527
528