]> wimlib.net Git - wimlib/blob - src/util.c
unix_apply.c, unix_capture.c: Add, fix copyright notices
[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
27 #undef _GNU_SOURCE
28 /* Make sure the POSIX-compatible strerror_r() is declared, rather than the GNU
29  * version, which has a different return type. */
30 #include <string.h>
31
32 #define _GNU_SOURCE
33
34 #include "endianness.h"
35 #include "timestamp.h"
36 #include "wimlib_internal.h"
37
38 #include <ctype.h>
39 #include <errno.h>
40 #include <stdarg.h>
41 #include <stdlib.h>
42 #include <unistd.h>
43
44
45 #ifdef __WIN32__
46 #  include "win32.h"
47 #  define pread  win32_pread
48 #  define pwrite win32_pwrite
49 #  define writev win32_writev
50 #else
51 #  include <sys/uio.h> /* for writev() and `struct iovec' */
52 #endif
53
54 static size_t
55 utf16le_strlen(const utf16lechar *s)
56 {
57         const utf16lechar *p = s;
58         while (*p)
59                 p++;
60         return (p - s) * sizeof(utf16lechar);
61 }
62
63 #ifdef __WIN32__
64 #  define wimlib_vfprintf vfwprintf
65 #else
66 /* Handle %W for UTF16-LE printing.
67  *
68  * TODO: this is not yet done properly--- it's assumed that if the format string
69  * contains %W, then it contains no other format specifiers.
70  */
71 static int
72 wimlib_vfprintf(FILE *fp, const tchar *format, va_list va)
73 {
74         const tchar *p;
75         int n;
76
77         for (p = format; *p; p++)
78                 if (*p == T('%') && *(p + 1) == T('W'))
79                         goto special;
80         return tvfprintf(fp, format, va);
81 special:
82         n = 0;
83         for (p = format; *p; p++) {
84                 if (*p == T('%') && (*(p + 1) == T('W'))) {
85                         int ret;
86                         tchar *tstr;
87                         size_t tstr_nbytes;
88                         utf16lechar *ucs = va_arg(va, utf16lechar*);
89
90                         if (ucs) {
91                                 size_t ucs_nbytes = utf16le_strlen(ucs);
92
93                                 ret = utf16le_to_tstr(ucs, ucs_nbytes,
94                                                       &tstr, &tstr_nbytes);
95                                 if (ret) {
96                                         ret = tfprintf(fp, T("??????"));
97                                 } else {
98                                         ret = tfprintf(fp, T("%"TS), tstr);
99                                         FREE(tstr);
100                                 }
101                                 if (ret < 0)
102                                         return -1;
103                                 else
104                                         n += ret;
105                         } else {
106                                 n += tfprintf(fp, T("(null)"));
107                         }
108                         p++;
109                 } else {
110                         if (tputc(*p, fp) == EOF)
111                                 return -1;
112                         n++;
113                 }
114         }
115         return n;
116 }
117
118 int
119 wimlib_printf(const tchar *format, ...)
120 {
121         int ret;
122         va_list va;
123
124         va_start(va, format);
125         ret = wimlib_vfprintf(stdout, format, va);
126         va_end(va);
127         return ret;
128 }
129
130 int
131 wimlib_fprintf(FILE *fp, const tchar *format, ...)
132 {
133         int ret;
134         va_list va;
135
136         va_start(va, format);
137         ret = wimlib_vfprintf(fp, format, va);
138         va_end(va);
139         return ret;
140 }
141 #endif
142
143 #if defined(ENABLE_ERROR_MESSAGES) || defined(ENABLE_DEBUG)
144 static void
145 wimlib_vmsg(const tchar *tag, const tchar *format,
146             va_list va, bool perror)
147 {
148 #ifndef DEBUG
149         if (wimlib_print_errors) {
150 #endif
151                 int errno_save = errno;
152                 fflush(stdout);
153                 tfputs(tag, stderr);
154                 wimlib_vfprintf(stderr, format, va);
155                 if (perror && errno_save != 0) {
156                         tchar buf[50];
157                         int res;
158                         res = tstrerror_r(errno_save, buf, sizeof(buf));
159                         if (res) {
160                                 tsprintf(buf,
161                                          T("unknown error (errno=%d)"),
162                                          errno_save);
163                         }
164                         tfprintf(stderr, T(": %"TS), buf);
165                 }
166                 tputc(T('\n'), stderr);
167                 fflush(stderr);
168                 errno = errno_save;
169 #ifndef DEBUG
170         }
171 #endif
172 }
173 #endif
174
175 /* True if wimlib is to print an informational message when an error occurs.
176  * This can be turned off by calling wimlib_set_print_errors(false). */
177 #ifdef ENABLE_ERROR_MESSAGES
178 static bool wimlib_print_errors = false;
179
180
181 void
182 wimlib_error(const tchar *format, ...)
183 {
184         va_list va;
185
186         va_start(va, format);
187         wimlib_vmsg(T("\r[ERROR] "), format, va, false);
188         va_end(va);
189 }
190
191 void
192 wimlib_error_with_errno(const tchar *format, ...)
193 {
194         va_list va;
195
196         va_start(va, format);
197         wimlib_vmsg(T("\r[ERROR] "), format, va, true);
198         va_end(va);
199 }
200
201 void
202 wimlib_warning(const tchar *format, ...)
203 {
204         va_list va;
205
206         va_start(va, format);
207         wimlib_vmsg(T("\r[WARNING] "), format, va, false);
208         va_end(va);
209 }
210
211 void
212 wimlib_warning_with_errno(const tchar *format, ...)
213 {
214         va_list va;
215
216         va_start(va, format);
217         wimlib_vmsg(T("\r[WARNING] "), format, va, true);
218         va_end(va);
219 }
220
221 #endif
222
223 #if defined(ENABLE_DEBUG) || defined(ENABLE_MORE_DEBUG)
224 void wimlib_debug(const tchar *file, int line, const char *func,
225                   const tchar *format, ...)
226 {
227         va_list va;
228         tchar buf[tstrlen(file) + strlen(func) + 30];
229
230         tsprintf(buf, T("[%"TS" %d] %s(): "), file, line, func);
231
232         va_start(va, format);
233         wimlib_vmsg(buf, format, va, false);
234         va_end(va);
235 }
236 #endif
237
238 WIMLIBAPI int
239 wimlib_set_print_errors(bool show_error_messages)
240 {
241 #ifdef ENABLE_ERROR_MESSAGES
242         wimlib_print_errors = show_error_messages;
243         return 0;
244 #else
245         if (show_error_messages)
246                 return WIMLIB_ERR_UNSUPPORTED;
247         else
248                 return 0;
249 #endif
250 }
251
252 static const tchar *error_strings[] = {
253         [WIMLIB_ERR_SUCCESS]
254                 = T("Success"),
255         [WIMLIB_ERR_ALREADY_LOCKED]
256                 = T("The WIM is already locked for writing"),
257         [WIMLIB_ERR_COMPRESSED_LOOKUP_TABLE]
258                 = T("Lookup table is compressed"),
259         [WIMLIB_ERR_DECOMPRESSION]
260                 = T("Failed to decompress compressed data"),
261         [WIMLIB_ERR_DELETE_STAGING_DIR]
262                 = T("Failed to delete staging directory"),
263         [WIMLIB_ERR_FILESYSTEM_DAEMON_CRASHED]
264                 = T("The process servicing the mounted WIM has crashed"),
265         [WIMLIB_ERR_FORK]
266                 = T("Failed to fork another process"),
267         [WIMLIB_ERR_FUSE]
268                 = T("An error was returned by fuse_main()"),
269         [WIMLIB_ERR_FUSERMOUNT]
270                 = T("Could not execute the `fusermount' program, or it exited "
271                         "with a failure status"),
272         [WIMLIB_ERR_ICONV_NOT_AVAILABLE]
273                 = T("The iconv() function does not seem to work. "
274                   "Maybe check to make sure the directory /usr/lib/gconv exists"),
275         [WIMLIB_ERR_IMAGE_COUNT]
276                 = T("Inconsistent image count among the metadata "
277                         "resources, the WIM header, and/or the XML data"),
278         [WIMLIB_ERR_INSUFFICIENT_PRIVILEGES_TO_EXTRACT]
279                 = T("User does not have sufficient privileges to correctly extract the data"),
280         [WIMLIB_ERR_IMAGE_NAME_COLLISION]
281                 = T("Tried to add an image with a name that is already in use"),
282         [WIMLIB_ERR_INTEGRITY]
283                 = T("The WIM failed an integrity check"),
284         [WIMLIB_ERR_INVALID_CAPTURE_CONFIG]
285                 = T("The capture configuration string was invalid"),
286         [WIMLIB_ERR_INVALID_CHUNK_SIZE]
287                 = T("The WIM is compressed but does not have a chunk "
288                         "size of 32768"),
289         [WIMLIB_ERR_INVALID_COMPRESSION_TYPE]
290                 = T("The WIM is compressed, but is not marked as having LZX or "
291                         "XPRESS compression"),
292         [WIMLIB_ERR_INVALID_DENTRY]
293                 = T("A directory entry in the WIM was invalid"),
294         [WIMLIB_ERR_INVALID_HEADER_SIZE]
295                 = T("The WIM header was not 208 bytes"),
296         [WIMLIB_ERR_INVALID_IMAGE]
297                 = T("Tried to select an image that does not exist in the WIM"),
298         [WIMLIB_ERR_INVALID_INTEGRITY_TABLE]
299                 = T("The WIM's integrity table is invalid"),
300         [WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY]
301                 = T("An entry in the WIM's lookup table is invalid"),
302         [WIMLIB_ERR_INVALID_MULTIBYTE_STRING]
303                 = T("A string was not valid in the current locale's character encoding"),
304         [WIMLIB_ERR_INVALID_OVERLAY]
305                 = T("Conflicting files in overlay when creating a WIM image"),
306         [WIMLIB_ERR_INVALID_PARAM]
307                 = T("An invalid parameter was given"),
308         [WIMLIB_ERR_INVALID_PART_NUMBER]
309                 = T("The part number or total parts of the WIM is invalid"),
310         [WIMLIB_ERR_INVALID_REPARSE_DATA]
311                 = T("The reparse data of a reparse point was invalid"),
312         [WIMLIB_ERR_INVALID_RESOURCE_HASH]
313                 = T("The SHA1 message digest of a WIM resource did not match the expected value"),
314         [WIMLIB_ERR_INVALID_RESOURCE_SIZE]
315                 = T("A resource entry in the WIM has an invalid size"),
316         [WIMLIB_ERR_INVALID_SECURITY_DATA]
317                 = T("The table of security descriptors in the WIM is invalid"),
318         [WIMLIB_ERR_INVALID_UNMOUNT_MESSAGE]
319                 = T("The version of wimlib that has mounted a WIM image is incompatible with the "
320                   "version being used to unmount it"),
321         [WIMLIB_ERR_INVALID_UTF8_STRING]
322                 = T("A string provided as input by the user was not a valid UTF-8 string"),
323         [WIMLIB_ERR_INVALID_UTF16_STRING]
324                 = T("A string in a WIM dentry is not a valid UTF-16LE string"),
325         [WIMLIB_ERR_IS_DIRECTORY]
326                 = T("One of the specified paths to delete was a directory"),
327         [WIMLIB_ERR_LIBXML_UTF16_HANDLER_NOT_AVAILABLE]
328                 = T("libxml2 was unable to find a character encoding conversion handler "
329                   "for UTF-16LE"),
330         [WIMLIB_ERR_LINK]
331                 = T("Failed to create a hard or symbolic link when extracting "
332                         "a file from the WIM"),
333         [WIMLIB_ERR_MKDIR]
334                 = T("Failed to create a directory"),
335         [WIMLIB_ERR_MQUEUE]
336                 = T("Failed to create or use a POSIX message queue"),
337         [WIMLIB_ERR_NOMEM]
338                 = T("Ran out of memory"),
339         [WIMLIB_ERR_NOTDIR]
340                 = T("Expected a directory"),
341         [WIMLIB_ERR_NOTEMPTY]
342                 = T("Directory was not empty"),
343         [WIMLIB_ERR_NOT_A_WIM_FILE]
344                 = T("The file did not begin with the magic characters that "
345                         "identify a WIM file"),
346         [WIMLIB_ERR_NOT_A_REGULAR_FILE]
347                 = T("One of the specified paths to extract did not "
348                     "correspond to a regular file"),
349         [WIMLIB_ERR_NO_FILENAME]
350                 = T("The WIM is not identified with a filename"),
351         [WIMLIB_ERR_NTFS_3G]
352                 = T("NTFS-3g encountered an error (check errno)"),
353         [WIMLIB_ERR_OPEN]
354                 = T("Failed to open a file"),
355         [WIMLIB_ERR_OPENDIR]
356                 = T("Failed to open a directory"),
357         [WIMLIB_ERR_PATH_DOES_NOT_EXIST]
358                 = T("The path does not exist in the WIM image"),
359         [WIMLIB_ERR_READ]
360                 = T("Could not read data from a file"),
361         [WIMLIB_ERR_READLINK]
362                 = T("Could not read the target of a symbolic link"),
363         [WIMLIB_ERR_RENAME]
364                 = T("Could not rename a file"),
365         [WIMLIB_ERR_REPARSE_POINT_FIXUP_FAILED]
366                 = T("Unable to complete reparse point fixup"),
367         [WIMLIB_ERR_RESOURCE_ORDER]
368                 = T("The components of the WIM were arranged in an unexpected order"),
369         [WIMLIB_ERR_SPECIAL_FILE]
370                 = T("Encountered a special file that cannot be archived"),
371         [WIMLIB_ERR_SPLIT_INVALID]
372                 = T("The WIM is part of an invalid split WIM"),
373         [WIMLIB_ERR_SPLIT_UNSUPPORTED]
374                 = T("The WIM is part of a split WIM, which is not supported for this operation"),
375         [WIMLIB_ERR_STAT]
376                 = T("Could not read the metadata for a file or directory"),
377         [WIMLIB_ERR_TIMEOUT]
378                 = T("Timed out while waiting for a message to arrive from another process"),
379         [WIMLIB_ERR_UNICODE_STRING_NOT_REPRESENTABLE]
380                 = T("A Unicode string could not be represented in the current locale's encoding"),
381         [WIMLIB_ERR_UNKNOWN_VERSION]
382                 = T("The WIM file is marked with an unknown version number"),
383         [WIMLIB_ERR_UNSUPPORTED]
384                 = T("The requested operation is unsupported"),
385         [WIMLIB_ERR_VOLUME_LACKS_FEATURES]
386                 = T("The volume did not support a feature necessary to complete the operation"),
387         [WIMLIB_ERR_WRITE]
388                 = T("Failed to write data to a file"),
389         [WIMLIB_ERR_XML]
390                 = T("The XML data of the WIM is invalid"),
391 };
392
393 WIMLIBAPI const tchar *
394 wimlib_get_error_string(enum wimlib_error_code code)
395 {
396         if (code < 0 || code >= ARRAY_LEN(error_strings))
397                 return NULL;
398         else
399                 return error_strings[code];
400 }
401
402
403
404 #ifdef ENABLE_CUSTOM_MEMORY_ALLOCATOR
405 void *(*wimlib_malloc_func) (size_t)         = malloc;
406 void  (*wimlib_free_func)   (void *)         = free;
407 void *(*wimlib_realloc_func)(void *, size_t) = realloc;
408
409 void *
410 wimlib_calloc(size_t nmemb, size_t size)
411 {
412         size_t total_size = nmemb * size;
413         void *p = MALLOC(total_size);
414         if (p)
415                 memset(p, 0, total_size);
416         return p;
417 }
418
419 char *
420 wimlib_strdup(const char *str)
421 {
422         size_t size;
423         char *p;
424
425         size = strlen(str);
426         p = MALLOC(size + 1);
427         if (p)
428                 memcpy(p, str, size + 1);
429         return p;
430 }
431
432 #ifdef __WIN32__
433 wchar_t *
434 wimlib_wcsdup(const wchar_t *str)
435 {
436         size_t size;
437         wchar_t *p;
438
439         size = wcslen(str);
440         p = MALLOC((size + 1) * sizeof(wchar_t));
441         if (p)
442                 memcpy(p, str, (size + 1) * sizeof(wchar_t));
443         return p;
444 }
445 #endif
446
447 extern void
448 xml_set_memory_allocator(void *(*malloc_func)(size_t),
449                          void (*free_func)(void *),
450                          void *(*realloc_func)(void *, size_t));
451 #endif
452
453 WIMLIBAPI int
454 wimlib_set_memory_allocator(void *(*malloc_func)(size_t),
455                             void (*free_func)(void *),
456                             void *(*realloc_func)(void *, size_t))
457 {
458 #ifdef ENABLE_CUSTOM_MEMORY_ALLOCATOR
459         wimlib_malloc_func  = malloc_func  ? malloc_func  : malloc;
460         wimlib_free_func    = free_func    ? free_func    : free;
461         wimlib_realloc_func = realloc_func ? realloc_func : realloc;
462
463         xml_set_memory_allocator(wimlib_malloc_func, wimlib_free_func,
464                                  wimlib_realloc_func);
465         return 0;
466 #else
467         ERROR("Cannot set custom memory allocator functions:");
468         ERROR("wimlib was compiled with the --without-custom-memory-allocator "
469               "flag");
470         return WIMLIB_ERR_UNSUPPORTED;
471 #endif
472 }
473
474 static bool seeded = false;
475
476 static void
477 seed_random()
478 {
479         srand(time(NULL) * getpid());
480         seeded = true;
481 }
482
483 /* Fills @n characters pointed to by @p with random alphanumeric characters. */
484 void
485 randomize_char_array_with_alnum(tchar p[], size_t n)
486 {
487         if (!seeded)
488                 seed_random();
489         while (n--) {
490                 int r = rand() % 62;
491                 if (r < 26)
492                         *p++ = r + 'a';
493                 else if (r < 52)
494                         *p++ = r - 26 + 'A';
495                 else
496                         *p++ = r - 52 + '0';
497         }
498 }
499
500 /* Fills @n bytes pointer to by @p with random numbers. */
501 void
502 randomize_byte_array(u8 *p, size_t n)
503 {
504         if (!seeded)
505                 seed_random();
506         while (n--)
507                 *p++ = rand();
508 }
509
510 const tchar *
511 path_basename_with_len(const tchar *path, size_t len)
512 {
513         const tchar *p = &path[len] - 1;
514
515         /* Trailing slashes. */
516         while (1) {
517                 if (p == path - 1)
518                         return T("");
519                 if (*p != T('/'))
520                         break;
521                 p--;
522         }
523
524         while ((p != path - 1) && *p != T('/'))
525                 p--;
526
527         return p + 1;
528 }
529
530 /* Like the basename() function, but does not modify @path; it just returns a
531  * pointer to it. */
532 const tchar *
533 path_basename(const tchar *path)
534 {
535         return path_basename_with_len(path, tstrlen(path));
536 }
537
538 /*
539  * Returns a pointer to the part of @path following the first colon in the last
540  * path component, or NULL if the last path component does not contain a colon.
541  */
542 const tchar *
543 path_stream_name(const tchar *path)
544 {
545         const tchar *base = path_basename(path);
546         const tchar *stream_name = tstrchr(base, T(':'));
547         if (!stream_name)
548                 return NULL;
549         else
550                 return stream_name + 1;
551 }
552
553 u64
554 get_wim_timestamp()
555 {
556         struct timeval tv;
557         gettimeofday(&tv, NULL);
558         return timeval_to_wim_timestamp(tv);
559 }
560
561 void
562 wim_timestamp_to_str(u64 timestamp, tchar *buf, size_t len)
563 {
564         struct tm tm;
565         time_t t = wim_timestamp_to_unix(timestamp);
566         gmtime_r(&t, &tm);
567         tstrftime(buf, len, T("%a %b %d %H:%M:%S %Y UTC"), &tm);
568 }
569
570 void
571 zap_backslashes(tchar *s)
572 {
573         if (s) {
574                 while (*s != T('\0')) {
575                         if (*s == T('\\'))
576                                 *s = T('/');
577                         s++;
578                 }
579         }
580 }
581
582 tchar *
583 canonicalize_fs_path(const tchar *fs_path)
584 {
585         tchar *canonical_path;
586
587         if (!fs_path)
588                 fs_path = T("");
589         canonical_path = TSTRDUP(fs_path);
590         zap_backslashes(canonical_path);
591         return canonical_path;
592 }
593
594 /* Strip leading and trailing slashes from a string.  Also translates
595  * backslashes into forward slashes.  */
596 tchar *
597 canonicalize_wim_path(const tchar *wim_path)
598 {
599         tchar *p;
600         tchar *canonical_path;
601
602         if (wim_path == NULL) {
603                 wim_path = T("");
604         } else {
605                 while (*wim_path == T('/') || *wim_path == T('\\'))
606                         wim_path++;
607         }
608         canonical_path = TSTRDUP(wim_path);
609         if (canonical_path) {
610                 zap_backslashes(canonical_path);
611                 for (p = tstrchr(canonical_path, T('\0')) - 1;
612                      p >= canonical_path && *p == T('/');
613                      p--)
614                 {
615                         *p = T('\0');
616                 }
617         }
618         return canonical_path;
619 }
620
621 /* Like read(), but keep trying until everything has been written or we know for
622  * sure that there was an error (or end-of-file). */
623 size_t
624 full_read(int fd, void *buf, size_t count)
625 {
626         ssize_t bytes_read;
627         size_t bytes_remaining;
628
629         for (bytes_remaining = count;
630              bytes_remaining != 0;
631              bytes_remaining -= bytes_read, buf += bytes_read)
632         {
633                 bytes_read = read(fd, buf, bytes_remaining);
634                 if (bytes_read <= 0) {
635                         if (bytes_read == 0)
636                                 errno = EIO;
637                         else if (errno == EINTR)
638                                 continue;
639                         break;
640                 }
641         }
642         return count - bytes_remaining;
643 }
644
645 /* Like write(), but keep trying until everything has been written or we know
646  * for sure that there was an error. */
647 size_t
648 full_write(int fd, const void *buf, size_t count)
649 {
650         ssize_t bytes_written;
651         size_t bytes_remaining;
652
653         for (bytes_remaining = count;
654              bytes_remaining != 0;
655              bytes_remaining -= bytes_written, buf += bytes_written)
656         {
657                 bytes_written = write(fd, buf, bytes_remaining);
658                 if (bytes_written < 0) {
659                         if (errno == EINTR)
660                                 continue;
661                         break;
662                 }
663         }
664         return count - bytes_remaining;
665 }
666
667 /* Like pread(), but keep trying until everything has been read or we know for
668  * sure that there was an error (or end-of-file) */
669 size_t
670 full_pread(int fd, void *buf, size_t count, off_t offset)
671 {
672         ssize_t bytes_read;
673         size_t bytes_remaining;
674
675         for (bytes_remaining = count;
676              bytes_remaining != 0;
677              bytes_remaining -= bytes_read, buf += bytes_read,
678                 offset += bytes_read)
679         {
680                 bytes_read = pread(fd, buf, bytes_remaining, offset);
681                 if (bytes_read <= 0) {
682                         if (bytes_read == 0)
683                                 errno = EIO;
684                         else if (errno == EINTR)
685                                 continue;
686                         break;
687                 }
688         }
689         return count - bytes_remaining;
690 }
691
692 /* Like pwrite(), but keep trying until everything has been written or we know
693  * for sure that there was an error. */
694 size_t
695 full_pwrite(int fd, const void *buf, size_t count, off_t offset)
696 {
697         ssize_t bytes_written;
698         size_t bytes_remaining;
699
700         for (bytes_remaining = count;
701              bytes_remaining != 0;
702              bytes_remaining -= bytes_written, buf += bytes_written,
703                 offset += bytes_written)
704         {
705                 bytes_written = pwrite(fd, buf, bytes_remaining, offset);
706                 if (bytes_written < 0) {
707                         if (errno == EINTR)
708                                 continue;
709                         break;
710                 }
711         }
712         return count - bytes_remaining;
713 }
714
715 /* Like writev(), but keep trying until everything has been written or we know
716  * for sure that there was an error. */
717 size_t
718 full_writev(int fd, struct iovec *iov, int iovcnt)
719 {
720         size_t total_bytes_written = 0;
721         while (iovcnt > 0) {
722                 ssize_t bytes_written;
723
724                 bytes_written = writev(fd, iov, iovcnt);
725                 if (bytes_written < 0) {
726                         if (errno == EINTR)
727                                 continue;
728                         break;
729                 }
730                 total_bytes_written += bytes_written;
731                 while (bytes_written) {
732                         if (bytes_written >= iov[0].iov_len) {
733                                 bytes_written -= iov[0].iov_len;
734                                 iov++;
735                                 iovcnt--;
736                         } else {
737                                 iov[0].iov_base += bytes_written;
738                                 iov[0].iov_len -= bytes_written;
739                                 bytes_written = 0;
740                         }
741                 }
742         }
743         return total_bytes_written;
744 }
745
746 off_t
747 filedes_offset(int fd)
748 {
749         return lseek(fd, 0, SEEK_CUR);
750 }