2006-04-13 00:09:58 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2001-01-03 05:19:26 +05:30
|
|
|
/*
|
2006-04-13 00:09:58 +05:30
|
|
|
* dpkg-deb packs, unpacks and provides information about Debian archives.
|
2004-01-07 14:54:06 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2001-01-03 05:19:26 +05:30
|
|
|
*/
|
2011-03-28 02:10:30 +05:30
|
|
|
|
2013-11-14 16:09:00 +05:30
|
|
|
//config:config DPKG_DEB
|
|
|
|
//config: bool "dpkg_deb"
|
|
|
|
//config: default n
|
|
|
|
//config: select FEATURE_SEAMLESS_GZ
|
|
|
|
//config: help
|
|
|
|
//config: dpkg-deb unpacks and provides information about Debian archives.
|
|
|
|
//config:
|
|
|
|
//config: This implementation of dpkg-deb cannot pack archives.
|
|
|
|
//config:
|
|
|
|
//config: Unless you have a specific application which requires dpkg-deb,
|
|
|
|
//config: say N here.
|
|
|
|
//config:
|
|
|
|
//config:config FEATURE_DPKG_DEB_EXTRACT_ONLY
|
|
|
|
//config: bool "Extract only (-x)"
|
|
|
|
//config: default n
|
|
|
|
//config: depends on DPKG_DEB
|
|
|
|
//config: help
|
|
|
|
//config: This reduces dpkg-deb to the equivalent of
|
|
|
|
//config: "ar -p <deb> data.tar.gz | tar -zx". However it saves space as none
|
|
|
|
//config: of the extra dpkg-deb, ar or tar options are needed, they are linked
|
|
|
|
//config: to internally.
|
|
|
|
|
2013-11-14 14:24:24 +05:30
|
|
|
//applet:IF_DPKG_DEB(APPLET_ODDNAME(dpkg-deb, dpkg_deb, BB_DIR_USR_BIN, BB_SUID_DROP, dpkg_deb))
|
2013-11-14 14:23:52 +05:30
|
|
|
//kbuild:lib-$(CONFIG_DPKG_DEB) += dpkg_deb.o
|
|
|
|
|
2011-03-28 02:10:30 +05:30
|
|
|
//usage:#define dpkg_deb_trivial_usage
|
|
|
|
//usage: "[-cefxX] FILE [argument"
|
|
|
|
//usage:#define dpkg_deb_full_usage "\n\n"
|
|
|
|
//usage: "Perform actions on Debian packages (.debs)\n"
|
|
|
|
//usage: "\n -c List contents of filesystem tree"
|
|
|
|
//usage: "\n -e Extract control files to [argument] directory"
|
|
|
|
//usage: "\n -f Display control field name starting with [argument]"
|
|
|
|
//usage: "\n -x Extract packages filesystem tree to directory"
|
|
|
|
//usage: "\n -X Verbose extract"
|
|
|
|
//usage:
|
|
|
|
//usage:#define dpkg_deb_example_usage
|
|
|
|
//usage: "$ dpkg-deb -X ./busybox_0.48-1_i386.deb /tmp\n"
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2011-09-22 16:15:14 +05:30
|
|
|
#include "bb_archive.h"
|
2001-01-03 05:19:26 +05:30
|
|
|
|
2010-10-29 15:16:52 +05:30
|
|
|
#define DPKG_DEB_OPT_CONTENTS 1
|
|
|
|
#define DPKG_DEB_OPT_CONTROL 2
|
|
|
|
#define DPKG_DEB_OPT_FIELD 4
|
|
|
|
#define DPKG_DEB_OPT_EXTRACT 8
|
|
|
|
#define DPKG_DEB_OPT_EXTRACT_VERBOSE 16
|
2004-01-07 14:54:06 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int dpkg_deb_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-03-07 02:17:33 +05:30
|
|
|
int dpkg_deb_main(int argc, char **argv)
|
2001-02-11 09:02:41 +05:30
|
|
|
{
|
2002-09-25 08:17:48 +05:30
|
|
|
archive_handle_t *ar_archive;
|
2002-11-05 07:22:23 +05:30
|
|
|
archive_handle_t *tar_archive;
|
2002-12-08 06:24:33 +05:30
|
|
|
llist_t *control_tar_llist = NULL;
|
2006-10-04 02:30:06 +05:30
|
|
|
unsigned opt;
|
2008-07-11 04:36:00 +05:30
|
|
|
const char *extract_dir;
|
|
|
|
int need_args;
|
2004-01-07 14:54:06 +05:30
|
|
|
|
2002-09-25 08:17:48 +05:30
|
|
|
/* Setup the tar archive handle */
|
2002-11-05 07:22:23 +05:30
|
|
|
tar_archive = init_handle();
|
2001-06-13 12:56:39 +05:30
|
|
|
|
2004-03-15 13:59:22 +05:30
|
|
|
/* Setup an ar archive handle that refers to the gzip sub archive */
|
2002-09-25 08:17:48 +05:30
|
|
|
ar_archive = init_handle();
|
2010-01-06 15:23:17 +05:30
|
|
|
ar_archive->dpkg__sub_archive = tar_archive;
|
2002-11-05 07:22:23 +05:30
|
|
|
ar_archive->filter = filter_accept_list_reassign;
|
|
|
|
|
2008-08-05 18:40:34 +05:30
|
|
|
#if ENABLE_FEATURE_SEAMLESS_GZ
|
2010-06-07 04:50:41 +05:30
|
|
|
llist_add_to(&ar_archive->accept, (char*)"data.tar.gz");
|
2007-01-30 04:21:25 +05:30
|
|
|
llist_add_to(&control_tar_llist, (char*)"control.tar.gz");
|
2002-11-05 07:22:23 +05:30
|
|
|
#endif
|
2008-08-05 18:40:34 +05:30
|
|
|
#if ENABLE_FEATURE_SEAMLESS_BZ2
|
2010-06-07 04:50:41 +05:30
|
|
|
llist_add_to(&ar_archive->accept, (char*)"data.tar.bz2");
|
2007-01-30 04:21:25 +05:30
|
|
|
llist_add_to(&control_tar_llist, (char*)"control.tar.bz2");
|
2002-11-05 07:22:23 +05:30
|
|
|
#endif
|
2010-06-07 04:50:41 +05:30
|
|
|
#if ENABLE_FEATURE_SEAMLESS_LZMA
|
|
|
|
llist_add_to(&ar_archive->accept, (char*)"data.tar.lzma");
|
|
|
|
llist_add_to(&control_tar_llist, (char*)"control.tar.lzma");
|
|
|
|
#endif
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2007-11-10 07:02:18 +05:30
|
|
|
opt_complementary = "c--efXx:e--cfXx:f--ceXx:X--cefx:x--cefX";
|
2007-08-18 21:02:12 +05:30
|
|
|
opt = getopt32(argv, "cefXx");
|
2008-07-11 04:36:00 +05:30
|
|
|
argv += optind;
|
|
|
|
argc -= optind;
|
2004-01-07 14:54:06 +05:30
|
|
|
|
|
|
|
if (opt & DPKG_DEB_OPT_CONTENTS) {
|
|
|
|
tar_archive->action_header = header_verbose_list;
|
|
|
|
}
|
2008-07-11 04:36:00 +05:30
|
|
|
extract_dir = NULL;
|
|
|
|
need_args = 1;
|
2004-01-07 14:54:06 +05:30
|
|
|
if (opt & DPKG_DEB_OPT_CONTROL) {
|
|
|
|
ar_archive->accept = control_tar_llist;
|
|
|
|
tar_archive->action_data = data_extract_all;
|
2008-07-11 04:36:00 +05:30
|
|
|
if (1 == argc) {
|
2004-01-07 14:54:06 +05:30
|
|
|
extract_dir = "./DEBIAN";
|
|
|
|
} else {
|
2008-07-11 04:36:00 +05:30
|
|
|
need_args++;
|
2001-01-03 05:19:26 +05:30
|
|
|
}
|
|
|
|
}
|
2004-01-07 14:54:06 +05:30
|
|
|
if (opt & DPKG_DEB_OPT_FIELD) {
|
|
|
|
/* Print the entire control file
|
2004-03-15 13:59:22 +05:30
|
|
|
* it should accept a second argument which specifies a
|
2004-01-07 14:54:06 +05:30
|
|
|
* specific field to print */
|
|
|
|
ar_archive->accept = control_tar_llist;
|
2007-01-30 04:21:25 +05:30
|
|
|
llist_add_to(&(tar_archive->accept), (char*)"./control");
|
2004-01-07 14:54:06 +05:30
|
|
|
tar_archive->filter = filter_accept_list;
|
|
|
|
tar_archive->action_data = data_extract_to_stdout;
|
|
|
|
}
|
|
|
|
if (opt & DPKG_DEB_OPT_EXTRACT) {
|
|
|
|
tar_archive->action_header = header_list;
|
|
|
|
}
|
|
|
|
if (opt & (DPKG_DEB_OPT_EXTRACT_VERBOSE | DPKG_DEB_OPT_EXTRACT)) {
|
|
|
|
tar_archive->action_data = data_extract_all;
|
2008-07-11 04:36:00 +05:30
|
|
|
need_args = 2;
|
2004-01-07 14:54:06 +05:30
|
|
|
}
|
2001-01-03 05:19:26 +05:30
|
|
|
|
2008-07-11 04:36:00 +05:30
|
|
|
if (need_args != argc) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2001-01-03 05:19:26 +05:30
|
|
|
}
|
2001-04-12 17:18:02 +05:30
|
|
|
|
2008-07-11 04:36:00 +05:30
|
|
|
tar_archive->src_fd = ar_archive->src_fd = xopen(argv[0], O_RDONLY);
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2008-07-11 04:36:00 +05:30
|
|
|
/* Work out where to extract the files */
|
2002-09-25 08:17:48 +05:30
|
|
|
/* 2nd argument is a dir name */
|
2008-07-11 04:36:00 +05:30
|
|
|
if (argv[1]) {
|
|
|
|
extract_dir = argv[1];
|
2004-01-07 14:54:06 +05:30
|
|
|
}
|
|
|
|
if (extract_dir) {
|
2006-06-10 16:59:44 +05:30
|
|
|
mkdir(extract_dir, 0777); /* bb_make_directory(extract_dir, 0777, 0) */
|
2006-08-03 21:11:12 +05:30
|
|
|
xchdir(extract_dir);
|
2004-01-07 14:54:06 +05:30
|
|
|
}
|
2008-07-11 04:36:00 +05:30
|
|
|
|
|
|
|
/* Do it */
|
2002-09-25 08:17:48 +05:30
|
|
|
unpack_ar_archive(ar_archive);
|
2001-06-13 12:56:39 +05:30
|
|
|
|
2002-09-25 08:17:48 +05:30
|
|
|
/* Cleanup */
|
2008-07-11 04:36:00 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
close(ar_archive->src_fd);
|
2001-04-13 09:32:57 +05:30
|
|
|
|
2006-11-27 22:19:31 +05:30
|
|
|
return EXIT_SUCCESS;
|
2001-01-03 05:19:26 +05:30
|
|
|
}
|