ar.c 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Mini ar implementation for busybox
  4. *
  5. * Copyright (C) 2000 by Glenn McGrath
  6. *
  7. * Based in part on BusyBox tar, Debian dpkg-deb and GNU ar.
  8. *
  9. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  10. *
  11. * Archive creation support:
  12. * Copyright (C) 2010 Nokia Corporation. All rights reserved.
  13. * Written by Alexander Shishkin.
  14. *
  15. * There is no single standard to adhere to so ar may not portable
  16. * between different systems
  17. * http://www.unix-systems.org/single_unix_specification_v2/xcu/ar.html
  18. */
  19. //config:config AR
  20. //config: bool "ar"
  21. //config: default n # needs to be improved to be able to replace binutils ar
  22. //config: help
  23. //config: ar is an archival utility program used to create, modify, and
  24. //config: extract contents from archives. An archive is a single file holding
  25. //config: a collection of other files in a structure that makes it possible to
  26. //config: retrieve the original individual files (called archive members).
  27. //config: The original files' contents, mode (permissions), timestamp, owner,
  28. //config: and group are preserved in the archive, and can be restored on
  29. //config: extraction.
  30. //config:
  31. //config: The stored filename is limited to 15 characters. (for more information
  32. //config: see long filename support).
  33. //config: ar has 60 bytes of overheads for every stored file.
  34. //config:
  35. //config: This implementation of ar can extract archives, it cannot create or
  36. //config: modify them.
  37. //config: On an x86 system, the ar applet adds about 1K.
  38. //config:
  39. //config: Unless you have a specific application which requires ar, you should
  40. //config: probably say N here.
  41. //config:
  42. //config:config FEATURE_AR_LONG_FILENAMES
  43. //config: bool "Support for long filenames (not needed for debs)"
  44. //config: default y
  45. //config: depends on AR
  46. //config: help
  47. //config: By default the ar format can only store the first 15 characters
  48. //config: of the filename, this option removes that limitation.
  49. //config: It supports the GNU ar long filename method which moves multiple long
  50. //config: filenames into a the data section of a new ar entry.
  51. //config:
  52. //config:config FEATURE_AR_CREATE
  53. //config: bool "Support archive creation"
  54. //config: default y
  55. //config: depends on AR
  56. //config: help
  57. //config: This enables archive creation (-c and -r) with busybox ar.
  58. //applet:IF_AR(APPLET(ar, BB_DIR_USR_BIN, BB_SUID_DROP))
  59. //kbuild:lib-$(CONFIG_AR) += ar.o
  60. //usage:#define ar_trivial_usage
  61. //usage: "[-o] [-v] [-p] [-t] [-x] ARCHIVE FILES"
  62. //usage:#define ar_full_usage "\n\n"
  63. //usage: "Extract or list FILES from an ar archive\n"
  64. //usage: "\n -o Preserve original dates"
  65. //usage: "\n -p Extract to stdout"
  66. //usage: "\n -t List"
  67. //usage: "\n -x Extract"
  68. //usage: "\n -v Verbose"
  69. #include "libbb.h"
  70. #include "bb_archive.h"
  71. #include "ar.h"
  72. #if ENABLE_FEATURE_AR_CREATE
  73. /* filter out entries with same names as specified on the command line */
  74. static char FAST_FUNC filter_replaceable(archive_handle_t *handle)
  75. {
  76. if (find_list_entry(handle->accept, handle->file_header->name))
  77. return EXIT_FAILURE;
  78. return EXIT_SUCCESS;
  79. }
  80. static void output_ar_header(archive_handle_t *handle)
  81. {
  82. /* GNU ar 2.19.51.0.14 creates malformed archives
  83. * if input files are >10G. It also truncates files >4GB
  84. * (uses "size mod 4G"). We abort in this case:
  85. * We could add support for up to 10G files, but this is unlikely to be useful.
  86. * Note that unpacking side limits all fields to "unsigned int" data type,
  87. * and treats "all ones" as an error indicator. Thus max we allow here is UINT_MAX-1.
  88. */
  89. enum {
  90. /* for 2nd field: mtime */
  91. MAX11CHARS = UINT_MAX > 0xffffffff ? (unsigned)99999999999 : UINT_MAX-1,
  92. /* for last field: filesize */
  93. MAX10CHARS = UINT_MAX > 0xffffffff ? (unsigned)9999999999 : UINT_MAX-1,
  94. };
  95. struct file_header_t *fh = handle->file_header;
  96. if (handle->offset & 1) {
  97. xwrite(handle->src_fd, "\n", 1);
  98. handle->offset++;
  99. }
  100. /* Careful! The widths should be exact. Fields must be separated */
  101. if (sizeof(off_t) > 4 && fh->size > (off_t)MAX10CHARS) {
  102. bb_error_msg_and_die("'%s' is bigger than ar can handle", fh->name);
  103. }
  104. fdprintf(handle->src_fd, "%-16.16s%-12lu%-6u%-6u%-8o%-10"OFF_FMT"u`\n",
  105. fh->name,
  106. (sizeof(time_t) > 4 && fh->mtime > MAX11CHARS) ? (long)0 : (long)fh->mtime,
  107. fh->uid > 99999 ? 0 : (int)fh->uid,
  108. fh->gid > 99999 ? 0 : (int)fh->gid,
  109. (int)fh->mode & 07777777,
  110. fh->size
  111. );
  112. handle->offset += AR_HEADER_LEN;
  113. }
  114. /*
  115. * when replacing files in an existing archive, copy from the
  116. * original archive those files that are to be left intact
  117. */
  118. static void FAST_FUNC copy_data(archive_handle_t *handle)
  119. {
  120. archive_handle_t *out_handle = handle->ar__out;
  121. struct file_header_t *fh = handle->file_header;
  122. out_handle->file_header = fh;
  123. output_ar_header(out_handle);
  124. bb_copyfd_exact_size(handle->src_fd, out_handle->src_fd, fh->size);
  125. out_handle->offset += fh->size;
  126. }
  127. static int write_ar_header(archive_handle_t *handle)
  128. {
  129. char *fn;
  130. char fn_h[17]; /* 15 + "/" + NUL */
  131. struct stat st;
  132. int fd;
  133. fn = llist_pop(&handle->accept);
  134. if (!fn)
  135. return -1;
  136. xstat(fn, &st);
  137. handle->file_header->mtime = st.st_mtime;
  138. handle->file_header->uid = st.st_uid;
  139. handle->file_header->gid = st.st_gid;
  140. handle->file_header->mode = st.st_mode;
  141. handle->file_header->size = st.st_size;
  142. handle->file_header->name = fn_h;
  143. //TODO: if ENABLE_FEATURE_AR_LONG_FILENAMES...
  144. sprintf(fn_h, "%.15s/", bb_basename(fn));
  145. output_ar_header(handle);
  146. fd = xopen(fn, O_RDONLY);
  147. bb_copyfd_exact_size(fd, handle->src_fd, st.st_size);
  148. close(fd);
  149. handle->offset += st.st_size;
  150. return 0;
  151. }
  152. static int write_ar_archive(archive_handle_t *handle)
  153. {
  154. struct stat st;
  155. archive_handle_t *out_handle;
  156. xfstat(handle->src_fd, &st, handle->ar__name);
  157. /* if archive exists, create a new handle for output.
  158. * we create it in place of the old one.
  159. */
  160. if (st.st_size != 0) {
  161. out_handle = init_handle();
  162. xunlink(handle->ar__name);
  163. out_handle->src_fd = xopen(handle->ar__name, O_WRONLY | O_CREAT | O_TRUNC);
  164. out_handle->accept = handle->accept;
  165. } else {
  166. out_handle = handle;
  167. }
  168. handle->ar__out = out_handle;
  169. xwrite(out_handle->src_fd, AR_MAGIC "\n", AR_MAGIC_LEN + 1);
  170. out_handle->offset += AR_MAGIC_LEN + 1;
  171. /* skip to the end of the archive if we have to append stuff */
  172. if (st.st_size != 0) {
  173. handle->filter = filter_replaceable;
  174. handle->action_data = copy_data;
  175. unpack_ar_archive(handle);
  176. }
  177. while (write_ar_header(out_handle) == 0)
  178. continue;
  179. /* optional, since we exit right after we return */
  180. if (ENABLE_FEATURE_CLEAN_UP) {
  181. close(handle->src_fd);
  182. if (out_handle->src_fd != handle->src_fd)
  183. close(out_handle->src_fd);
  184. }
  185. return EXIT_SUCCESS;
  186. }
  187. #endif /* FEATURE_AR_CREATE */
  188. static void FAST_FUNC header_verbose_list_ar(const file_header_t *file_header)
  189. {
  190. const char *mode = bb_mode_string(file_header->mode);
  191. char *mtime;
  192. mtime = ctime(&file_header->mtime);
  193. mtime[16] = ' ';
  194. memmove(&mtime[17], &mtime[20], 4);
  195. mtime[21] = '\0';
  196. printf("%s %u/%u%7"OFF_FMT"u %s %s\n", &mode[1],
  197. (int)file_header->uid, (int)file_header->gid,
  198. file_header->size,
  199. &mtime[4], file_header->name
  200. );
  201. }
  202. #define AR_OPT_VERBOSE (1 << 0)
  203. #define AR_OPT_PRESERVE_DATE (1 << 1)
  204. /* "ar r" implies create, but warns about it. c suppresses warning.
  205. * bbox accepts but ignores it: */
  206. #define AR_OPT_CREATE (1 << 2)
  207. #define AR_CMD_PRINT (1 << 3)
  208. #define FIRST_CMD AR_CMD_PRINT
  209. #define AR_CMD_LIST (1 << 4)
  210. #define AR_CMD_EXTRACT (1 << 5)
  211. #define AR_CMD_INSERT (1 << 6)
  212. int ar_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  213. int ar_main(int argc UNUSED_PARAM, char **argv)
  214. {
  215. archive_handle_t *archive_handle;
  216. unsigned opt, t;
  217. archive_handle = init_handle();
  218. /* --: prepend '-' to the first argument if required */
  219. /* -1: at least one param is reqd */
  220. /* one of p,t,x[,r] is required */
  221. opt_complementary = "--:-1:p:t:x"IF_FEATURE_AR_CREATE(":r");
  222. opt = getopt32(argv, "voc""ptx"IF_FEATURE_AR_CREATE("r"));
  223. argv += optind;
  224. t = opt / FIRST_CMD;
  225. if (t & (t-1)) /* more than one of p,t,x[,r] are specified */
  226. bb_show_usage();
  227. if (opt & AR_CMD_PRINT) {
  228. archive_handle->action_data = data_extract_to_stdout;
  229. }
  230. if (opt & AR_CMD_LIST) {
  231. archive_handle->action_header = header_list;
  232. }
  233. if (opt & AR_CMD_EXTRACT) {
  234. archive_handle->action_data = data_extract_all;
  235. }
  236. if (opt & AR_OPT_PRESERVE_DATE) {
  237. archive_handle->ah_flags |= ARCHIVE_RESTORE_DATE;
  238. }
  239. if (opt & AR_OPT_VERBOSE) {
  240. archive_handle->action_header = header_verbose_list_ar;
  241. }
  242. #if ENABLE_FEATURE_AR_CREATE
  243. archive_handle->ar__name = *argv;
  244. #endif
  245. archive_handle->src_fd = xopen(*argv++,
  246. (opt & AR_CMD_INSERT)
  247. ? O_RDWR | O_CREAT
  248. : O_RDONLY
  249. );
  250. if (*argv)
  251. archive_handle->filter = filter_accept_list;
  252. while (*argv) {
  253. llist_add_to_end(&archive_handle->accept, *argv++);
  254. }
  255. #if ENABLE_FEATURE_AR_CREATE
  256. if (opt & AR_CMD_INSERT)
  257. return write_ar_archive(archive_handle);
  258. #endif
  259. unpack_ar_archive(archive_handle);
  260. return EXIT_SUCCESS;
  261. }