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