]> wimlib.net Git - wimlib/blob - src/util.c
Various minor changes and fixes.
[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_OPEN] 
163                 = "Failed to open a file",
164         [WIMLIB_ERR_OPENDIR] 
165                 = "Failed to open a directory",
166         [WIMLIB_ERR_READ] 
167                 = "Could not read data from a file",
168         [WIMLIB_ERR_RENAME] 
169                 = "Could not rename a file",
170         [WIMLIB_ERR_SPLIT_INVALID] 
171                 = "The WIM is part of an invalid split WIM",
172         [WIMLIB_ERR_SPLIT_UNSUPPORTED] 
173                 = "The WIM is part of a split WIM, which is not supported for this operation",
174         [WIMLIB_ERR_STAT] 
175                 = "Could not read the metadata for a file or directory",
176         [WIMLIB_ERR_TIMEOUT] 
177                 = "Timed out",
178         [WIMLIB_ERR_UNKNOWN_VERSION] 
179                 = "The WIM file is marked with an unknown version number",
180         [WIMLIB_ERR_UNSUPPORTED] 
181                 = "The requested operation is unsupported",
182         [WIMLIB_ERR_WRITE] 
183                 = "Failed to write data to a file",
184         [WIMLIB_ERR_XML] 
185                 = "The XML data of the WIM is invalid",
186 };
187
188 WIMLIBAPI const char *wimlib_get_error_string(enum wimlib_error_code code)
189 {
190         if (code < WIMLIB_ERR_SUCCESS || code > WIMLIB_ERR_XML)
191                 return NULL;
192         else
193                 return error_strings[code];
194 }
195
196
197
198 #ifdef ENABLE_CUSTOM_MEMORY_ALLOCATOR
199 void *(*wimlib_malloc_func) (size_t)         = malloc;
200 void  (*wimlib_free_func)   (void *)         = free;
201 void *(*wimlib_realloc_func)(void *, size_t) = realloc;
202
203 void *wimlib_calloc(size_t nmemb, size_t size)
204 {
205         size_t total_size = nmemb * size;
206         void *p = MALLOC(total_size);
207         if (p)
208                 memset(p, 0, total_size);
209         return p;
210 }
211
212 char *wimlib_strdup(const char *str)
213 {
214         size_t size;
215         char *p;
216         
217         size = strlen(str); 
218         p = MALLOC(size + 1);
219         if (p)
220                 memcpy(p, str, size + 1);
221         return p;
222 }
223
224 extern void xml_set_memory_allocator(void *(*malloc_func)(size_t),
225                                    void (*free_func)(void *),
226                                    void *(*realloc_func)(void *, size_t));
227 #endif
228
229 WIMLIBAPI int wimlib_set_memory_allocator(void *(*malloc_func)(size_t),
230                                            void (*free_func)(void *),
231                                            void *(*realloc_func)(void *, size_t))
232 {
233 #ifdef ENABLE_CUSTOM_MEMORY_ALLOCATOR
234         wimlib_malloc_func  = malloc_func  ? malloc_func  : malloc;
235         wimlib_free_func    = free_func    ? free_func    : free;
236         wimlib_realloc_func = realloc_func ? realloc_func : realloc;
237
238         xml_set_memory_allocator(wimlib_malloc_func, wimlib_free_func, 
239                                  wimlib_realloc_func);
240         return 0;
241 #else
242         ERROR("Cannot set custom memory allocator functions:");
243         ERROR("wimlib was compiled with the --without-custom-memory-allocator "
244               "flag");
245         return WIMLIB_ERR_UNSUPPORTED;
246 #endif
247 }
248
249
250
251 static iconv_t cd_utf16_to_utf8 = (iconv_t)(-1);
252
253 /* Converts a string in the UTF-16 encoding to a newly allocated string in the
254  * UTF-8 encoding.  */
255 char *utf16_to_utf8(const char *utf16_str, size_t utf16_len,
256                                 size_t *utf8_len_ret)
257 {
258         if (cd_utf16_to_utf8 == (iconv_t)(-1)) {
259                 cd_utf16_to_utf8 = iconv_open("UTF-8", "UTF-16LE");
260                 if (cd_utf16_to_utf8 == (iconv_t)-1) {
261                         ERROR_WITH_ERRNO("Failed to get conversion descriptor "
262                                          "for converting UTF-16LE to UTF-8");
263                         return NULL;
264                 }
265         }
266         size_t utf16_bytes_left  = utf16_len;
267         size_t utf8_bytes_left   = utf16_len;
268
269         char *utf8_str = MALLOC(utf8_bytes_left);
270         if (!utf8_str)
271                 return NULL;
272
273         char *orig_utf8_str = utf8_str;
274
275         size_t num_chars_converted = iconv(cd_utf16_to_utf8, (char**)&utf16_str, 
276                         &utf16_bytes_left, &utf8_str, &utf8_bytes_left);
277
278         if (num_chars_converted == (size_t)(-1)) {
279                 ERROR_WITH_ERRNO("Failed to convert UTF-16LE string to UTF-8 "
280                                  "string");
281                 FREE(orig_utf8_str);
282                 return NULL;
283         }
284
285         size_t utf8_len = utf16_len - utf8_bytes_left;
286
287         *utf8_len_ret = utf8_len;
288         orig_utf8_str[utf8_len] = '\0';
289         return orig_utf8_str;
290 }
291
292 static iconv_t cd_utf8_to_utf16 = (iconv_t)(-1);
293
294 /* Converts a string in the UTF-8 encoding to a newly allocated string in the
295  * UTF-16 encoding.  */
296 char *utf8_to_utf16(const char *utf8_str, size_t utf8_len, 
297                                                 size_t *utf16_len_ret)
298 {
299         if (cd_utf8_to_utf16 == (iconv_t)(-1)) {
300                 cd_utf8_to_utf16 = iconv_open("UTF-16LE", "UTF-8");
301                 if (cd_utf8_to_utf16 == (iconv_t)-1) {
302                         ERROR_WITH_ERRNO("Failed to get conversion descriptor "
303                                          "for converting UTF-8 to UTF-16LE");
304                         return NULL;
305                 }
306         }
307
308         size_t utf8_bytes_left   = utf8_len;
309         size_t utf16_capacity    = utf8_len * 4;
310         size_t utf16_bytes_left  = utf16_capacity;
311
312         char *utf16_str = MALLOC(utf16_capacity + 2);
313         if (!utf16_str)
314                 return NULL;
315
316         char *orig_utf16_str = utf16_str;
317
318         size_t num_chars_converted = iconv(cd_utf8_to_utf16, (char**)&utf8_str, 
319                         &utf8_bytes_left, &utf16_str, &utf16_bytes_left);
320
321         if (num_chars_converted == (size_t)(-1)) {
322                 ERROR_WITH_ERRNO("Failed to convert UTF-8 string to UTF-16LE "
323                                  "string");
324                 FREE(orig_utf16_str);
325                 return NULL;
326         }
327
328         size_t utf16_len = utf16_capacity - utf16_bytes_left;
329
330         *utf16_len_ret = utf16_len;
331         orig_utf16_str[utf16_len] = '\0';
332         orig_utf16_str[utf16_len + 1] = '\0';
333         return orig_utf16_str;
334 }
335
336 /* Write @n bytes from @buf to the file descriptor @fd, retrying on interupt and
337  * on short writes.
338  *
339  * Returns short count and set errno on failure. */
340 ssize_t full_write(int fd, const void *buf, size_t n)
341 {
342         const char *p = buf;
343         ssize_t ret;
344         ssize_t total = 0;
345
346         while (total != n) {
347                 ret = write(fd, p, n);
348                 if (ret < 0) {
349                         if (errno == EINTR)
350                                 continue;
351                         else
352                                 break;
353                 }
354                 total += ret;
355                 p += ret;
356         }
357         return total;
358 }
359
360
361 static bool seeded = false;
362
363 /* Fills @n bytes pointed to by @p with random alphanumeric characters. */
364 void randomize_char_array_with_alnum(char p[], size_t n)
365 {
366         int r;
367
368         if (!seeded) {
369                 srand(time(NULL));
370                 seeded = true;
371         }
372         while (n--) {
373                 r = rand() % 62;
374                 if (r < 26)
375                         *p++ = r + 'a';
376                 else if (r < 52)
377                         *p++ = r - 26 + 'A';
378                 else
379                         *p++ = r - 52 + '0';
380         }
381 }
382
383 /* Fills @n bytes pointer to by @p with random numbers. */
384 void randomize_byte_array(void *__p, size_t n)
385 {
386         u8 *p = __p;
387
388         if (!seeded) {
389                 srand(time(NULL));
390                 seeded = true;
391         }
392         while (n--)
393                 *p++ = rand();
394 }
395
396 /* Takes in a path of length @len in @buf, and transforms it into a string for
397  * the path of its parent directory. */
398 void to_parent_name(char buf[], size_t len)
399 {
400         ssize_t i = (ssize_t)len - 1;
401         while (i >= 0 && buf[i] == '/')
402                 i--;
403         while (i >= 0 && buf[i] != '/')
404                 i--;
405         while (i >= 0 && buf[i] == '/')
406                 i--;
407         buf[i + 1] = '\0';
408 }
409
410 /* Like the basename() function, but does not modify @path; it just returns a
411  * pointer to it. */
412 const char *path_basename(const char *path)
413 {
414         const char *p = path;
415         while (*p)
416                 p++;
417         p--;
418
419         /* Trailing slashes. */
420         while ((p != path - 1) && *p == '/')
421                 p--;
422
423         while ((p != path - 1) && *p != '/')
424                 p--;
425
426         return p + 1;
427 }
428
429 /* 
430  * Splits a file path into the part before the first '/', or the entire name if
431  * there is no '/', and the part after the first sequence of '/' characters.
432  *
433  * @path:               The file path to split.
434  * @first_part_len_ret: A pointer to a `size_t' into which the length of the
435  *                              first part of the path will be returned.
436  * @return:             A pointer to the next part of the path, after the first
437  *                              sequence of '/', or a pointer to the terminating 
438  *                              null byte in the case of a path without any '/'.
439  */
440 const char *path_next_part(const char *path, size_t *first_part_len_ret)
441 {
442         size_t i;
443         const char *next_part;
444
445         i = 0;
446         while (path[i] != '/' && path[i] != '\0')
447                 i++;
448         if (first_part_len_ret)
449                 *first_part_len_ret = i;
450         next_part = &path[i];
451         while (*next_part == '/')
452                 next_part++;
453         return next_part;
454 }
455
456 /* Returns the number of components of @path.  */
457 int get_num_path_components(const char *path)
458 {
459         int num_components = 0;
460         while (*path) {
461                 while (*path == '/')
462                         path++;
463                 if (*path)
464                         num_components++;
465                 while (*path && *path != '/')
466                         path++;
467         }
468         return num_components;
469 }
470
471
472 /* 
473  * Prints a string.  Printable characters are printed as-is, while unprintable
474  * characters are printed as their octal escape codes. 
475  */
476 void print_string(const void *string, size_t len)
477 {
478         const u8 *p = string;
479
480         while (len--) {
481                 if (isprint(*p))
482                         putchar(*p);
483                 else
484                         printf("\\%03hho", *p);
485                 p++;
486         }
487 }