blob: da94b394f5707b4428264dbc073cbe06afd4d48e [file] [log] [blame]
Glenn L McGrath58a40852001-01-02 23:49:26 +00001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU Library General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Glenn L McGrath1f28b902004-01-07 09:24:06 +000015 *
Glenn L McGrath58a40852001-01-02 23:49:26 +000016 */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000017#include <fcntl.h>
Glenn L McGrath58a40852001-01-02 23:49:26 +000018#include <stdlib.h>
Glenn L McGrath33431eb2001-04-16 04:52:19 +000019#include <string.h>
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000020#include <unistd.h>
Glenn L McGrathd22e5602001-04-11 02:12:08 +000021#include <getopt.h>
Glenn L McGrath1f28b902004-01-07 09:24:06 +000022
Glenn L McGrathef0eab52001-10-25 14:49:48 +000023#include "unarchive.h"
Glenn L McGrath58a40852001-01-02 23:49:26 +000024#include "busybox.h"
25
Glenn L McGrath1f28b902004-01-07 09:24:06 +000026#define DPKG_DEB_OPT_CONTENTS 1
27#define DPKG_DEB_OPT_CONTROL 2
28#define DPKG_DEB_OPT_FIELD 4
29#define DPKG_DEB_OPT_EXTRACT 8
30#define DPKG_DEB_OPT_EXTRACT_VERBOSE 16
31
Glenn L McGrathbc9afad2001-02-11 03:32:41 +000032extern int dpkg_deb_main(int argc, char **argv)
33{
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000034 archive_handle_t *ar_archive;
Glenn L McGrath18bbca12002-11-05 01:52:23 +000035 archive_handle_t *tar_archive;
Glenn L McGrath66125c82002-12-08 00:54:33 +000036 llist_t *control_tar_llist = NULL;
Glenn L McGrath1f28b902004-01-07 09:24:06 +000037 unsigned long opt;
38 char *extract_dir = NULL;
39 short argcount = 1;
40
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000041 /* Setup the tar archive handle */
Glenn L McGrath18bbca12002-11-05 01:52:23 +000042 tar_archive = init_handle();
Glenn L McGrath9aff9032001-06-13 07:26:39 +000043
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000044 /* Setup an ar archive handle that refers to the gzip sub archive */
45 ar_archive = init_handle();
Glenn L McGrath18bbca12002-11-05 01:52:23 +000046 ar_archive->sub_archive = tar_archive;
47 ar_archive->filter = filter_accept_list_reassign;
48
49#ifdef CONFIG_FEATURE_DEB_TAR_GZ
Glenn L McGrath66125c82002-12-08 00:54:33 +000050 ar_archive->accept = llist_add_to(NULL, "data.tar.gz");
Glenn L McGrath66125c82002-12-08 00:54:33 +000051 control_tar_llist = llist_add_to(NULL, "control.tar.gz");
Glenn L McGrath18bbca12002-11-05 01:52:23 +000052#endif
53
54#ifdef CONFIG_FEATURE_DEB_TAR_BZ2
Glenn L McGrath66125c82002-12-08 00:54:33 +000055 ar_archive->accept = llist_add_to(ar_archive->accept, "data.tar.bz2");
Glenn L McGrath66125c82002-12-08 00:54:33 +000056 control_tar_llist = llist_add_to(control_tar_llist, "control.tar.bz2");
Glenn L McGrath18bbca12002-11-05 01:52:23 +000057#endif
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000058
Glenn L McGrath1f28b902004-01-07 09:24:06 +000059 bb_opt_complementaly = "c~efXx:e~cfXx:f~ceXx:X~cefx:x~cefX";
60 opt = bb_getopt_ulflags(argc, argv, "cefXx");
61
62 if (opt & DPKG_DEB_OPT_CONTENTS) {
63 tar_archive->action_header = header_verbose_list;
64 }
65 if (opt & DPKG_DEB_OPT_CONTROL) {
66 ar_archive->accept = control_tar_llist;
67 tar_archive->action_data = data_extract_all;
68 if (optind + 1 == argc) {
69 extract_dir = "./DEBIAN";
70 } else {
71 argcount++;
Glenn L McGrath58a40852001-01-02 23:49:26 +000072 }
73 }
Glenn L McGrath1f28b902004-01-07 09:24:06 +000074 if (opt & DPKG_DEB_OPT_FIELD) {
75 /* Print the entire control file
76 * it should accept a second argument which specifies a
77 * specific field to print */
78 ar_archive->accept = control_tar_llist;
79 tar_archive->accept = llist_add_to(NULL, "./control");;
80 tar_archive->filter = filter_accept_list;
81 tar_archive->action_data = data_extract_to_stdout;
82 }
83 if (opt & DPKG_DEB_OPT_EXTRACT) {
84 tar_archive->action_header = header_list;
85 }
86 if (opt & (DPKG_DEB_OPT_EXTRACT_VERBOSE | DPKG_DEB_OPT_EXTRACT)) {
87 tar_archive->action_data = data_extract_all;
88 argcount = 2;
89 }
Glenn L McGrath58a40852001-01-02 23:49:26 +000090
Glenn L McGrath1f28b902004-01-07 09:24:06 +000091 if ((optind + argcount != argc) || (opt & 0x80000000UL)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000092 bb_show_usage();
Glenn L McGrath58a40852001-01-02 23:49:26 +000093 }
Glenn L McGrath6785b512001-04-12 11:48:02 +000094
Manuel Novoa III cad53642003-03-19 09:13:01 +000095 tar_archive->src_fd = ar_archive->src_fd = bb_xopen(argv[optind++], O_RDONLY);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000096
Glenn L McGrath9aff9032001-06-13 07:26:39 +000097 /* Workout where to extract the files */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000098 /* 2nd argument is a dir name */
Glenn L McGrath1f28b902004-01-07 09:24:06 +000099 if (argv[optind]) {
100 extract_dir = argv[optind];
101 }
102 if (extract_dir) {
103 mkdir(extract_dir, 0777);
104 chdir(extract_dir);
105 }
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000106 unpack_ar_archive(ar_archive);
Glenn L McGrath9aff9032001-06-13 07:26:39 +0000107
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000108 /* Cleanup */
109 close (ar_archive->src_fd);
Glenn L McGrath445fb952001-04-13 04:02:57 +0000110
Glenn L McGrath58a40852001-01-02 23:49:26 +0000111 return(EXIT_SUCCESS);
112}