archive_write_open_fd.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*-
  2. * Copyright (c) 2003-2007 Tim Kientzle
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. *
  14. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
  15. * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  16. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  17. * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
  18. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  19. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  20. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  21. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  22. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  23. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  24. */
  25. #include "archive_platform.h"
  26. __FBSDID("$FreeBSD: src/lib/libarchive/archive_write_open_fd.c,v 1.9 2007/01/09 08:05:56 kientzle Exp $");
  27. #ifdef HAVE_SYS_STAT_H
  28. #include <sys/stat.h>
  29. #endif
  30. #ifdef HAVE_ERRNO_H
  31. #include <errno.h>
  32. #endif
  33. #ifdef HAVE_FCNTL_H
  34. #include <fcntl.h>
  35. #endif
  36. #ifdef HAVE_IO_H
  37. #include <io.h>
  38. #endif
  39. #ifdef HAVE_STDLIB_H
  40. #include <stdlib.h>
  41. #endif
  42. #ifdef HAVE_STRING_H
  43. #include <string.h>
  44. #endif
  45. #ifdef HAVE_UNISTD_H
  46. #include <unistd.h>
  47. #endif
  48. #include "archive.h"
  49. struct write_fd_data {
  50. off_t offset;
  51. int fd;
  52. };
  53. static int file_close(struct archive *, void *);
  54. static int file_open(struct archive *, void *);
  55. static ssize_t file_write(struct archive *, void *, const void *buff, size_t);
  56. int
  57. archive_write_open_fd(struct archive *a, int fd)
  58. {
  59. struct write_fd_data *mine;
  60. mine = (struct write_fd_data *)malloc(sizeof(*mine));
  61. if (mine == NULL) {
  62. archive_set_error(a, ENOMEM, "No memory");
  63. return (ARCHIVE_FATAL);
  64. }
  65. mine->fd = fd;
  66. #if defined(__CYGWIN__) || defined(__BORLANDC__)
  67. setmode(mine->fd, O_BINARY);
  68. #elif defined(_WIN32)
  69. _setmode(mine->fd, _O_BINARY);
  70. #endif
  71. return (archive_write_open(a, mine,
  72. file_open, file_write, file_close));
  73. }
  74. static int
  75. file_open(struct archive *a, void *client_data)
  76. {
  77. struct write_fd_data *mine;
  78. struct stat st;
  79. mine = (struct write_fd_data *)client_data;
  80. if (fstat(mine->fd, &st) != 0) {
  81. archive_set_error(a, errno, "Couldn't stat fd %d", mine->fd);
  82. return (ARCHIVE_FATAL);
  83. }
  84. /*
  85. * If this is a regular file, don't add it to itself.
  86. */
  87. if (S_ISREG(st.st_mode))
  88. archive_write_set_skip_file(a, st.st_dev, st.st_ino);
  89. /*
  90. * If client hasn't explicitly set the last block handling,
  91. * then set it here.
  92. */
  93. if (archive_write_get_bytes_in_last_block(a) < 0) {
  94. /* If the output is a block or character device, fifo,
  95. * or stdout, pad the last block, otherwise leave it
  96. * unpadded. */
  97. if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode) ||
  98. S_ISFIFO(st.st_mode) || (mine->fd == 1))
  99. /* Last block will be fully padded. */
  100. archive_write_set_bytes_in_last_block(a, 0);
  101. else
  102. archive_write_set_bytes_in_last_block(a, 1);
  103. }
  104. return (ARCHIVE_OK);
  105. }
  106. static ssize_t
  107. file_write(struct archive *a, void *client_data, const void *buff, size_t length)
  108. {
  109. struct write_fd_data *mine;
  110. ssize_t bytesWritten;
  111. mine = (struct write_fd_data *)client_data;
  112. bytesWritten = write(mine->fd, buff, length);
  113. if (bytesWritten <= 0) {
  114. archive_set_error(a, errno, "Write error");
  115. return (-1);
  116. }
  117. return (bytesWritten);
  118. }
  119. static int
  120. file_close(struct archive *a, void *client_data)
  121. {
  122. struct write_fd_data *mine = (struct write_fd_data *)client_data;
  123. (void)a; /* UNUSED */
  124. free(mine);
  125. return (ARCHIVE_OK);
  126. }