2002-12-10 05:47:22 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini rpm applet for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001,2002 by Laurence Anderson
|
|
|
|
*
|
2006-01-30 22:47:14 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2002-12-10 05:47:22 +05:30
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2002-12-10 07:39:12 +05:30
|
|
|
#include "unarchive.h"
|
|
|
|
|
2006-12-22 20:33:50 +05:30
|
|
|
#define RPM_HEADER_MAGIC "\216\255\350"
|
|
|
|
#define RPM_CHAR_TYPE 1
|
|
|
|
#define RPM_INT8_TYPE 2
|
|
|
|
#define RPM_INT16_TYPE 3
|
|
|
|
#define RPM_INT32_TYPE 4
|
|
|
|
/* #define RPM_INT64_TYPE 5 ---- These aren't supported (yet) */
|
|
|
|
#define RPM_STRING_TYPE 6
|
|
|
|
#define RPM_BIN_TYPE 7
|
|
|
|
#define RPM_STRING_ARRAY_TYPE 8
|
|
|
|
#define RPM_I18NSTRING_TYPE 9
|
2002-12-10 05:47:22 +05:30
|
|
|
|
2006-12-22 20:33:50 +05:30
|
|
|
#define TAG_NAME 1000
|
|
|
|
#define TAG_VERSION 1001
|
|
|
|
#define TAG_RELEASE 1002
|
|
|
|
#define TAG_SUMMARY 1004
|
|
|
|
#define TAG_DESCRIPTION 1005
|
|
|
|
#define TAG_BUILDTIME 1006
|
|
|
|
#define TAG_BUILDHOST 1007
|
|
|
|
#define TAG_SIZE 1009
|
|
|
|
#define TAG_VENDOR 1011
|
|
|
|
#define TAG_LICENSE 1014
|
|
|
|
#define TAG_PACKAGER 1015
|
|
|
|
#define TAG_GROUP 1016
|
|
|
|
#define TAG_URL 1020
|
|
|
|
#define TAG_PREIN 1023
|
|
|
|
#define TAG_POSTIN 1024
|
|
|
|
#define TAG_FILEFLAGS 1037
|
|
|
|
#define TAG_FILEUSERNAME 1039
|
|
|
|
#define TAG_FILEGROUPNAME 1040
|
|
|
|
#define TAG_SOURCERPM 1044
|
|
|
|
#define TAG_PREINPROG 1085
|
|
|
|
#define TAG_POSTINPROG 1086
|
|
|
|
#define TAG_PREFIXS 1098
|
|
|
|
#define TAG_DIRINDEXES 1116
|
|
|
|
#define TAG_BASENAMES 1117
|
|
|
|
#define TAG_DIRNAMES 1118
|
|
|
|
#define RPMFILE_CONFIG (1 << 0)
|
|
|
|
#define RPMFILE_DOC (1 << 1)
|
2002-12-10 05:47:22 +05:30
|
|
|
|
|
|
|
enum rpm_functions_e {
|
|
|
|
rpm_query = 1,
|
|
|
|
rpm_install = 2,
|
|
|
|
rpm_query_info = 4,
|
|
|
|
rpm_query_package = 8,
|
|
|
|
rpm_query_list = 16,
|
|
|
|
rpm_query_list_doc = 32,
|
|
|
|
rpm_query_list_config = 64
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct {
|
2004-01-31 04:24:20 +05:30
|
|
|
uint32_t tag; /* 4 byte tag */
|
|
|
|
uint32_t type; /* 4 byte type */
|
|
|
|
uint32_t offset; /* 4 byte offset */
|
|
|
|
uint32_t count; /* 4 byte count */
|
2002-12-10 05:47:22 +05:30
|
|
|
} rpm_index;
|
|
|
|
|
|
|
|
static void *map;
|
|
|
|
static rpm_index **mytags;
|
|
|
|
static int tagcount;
|
|
|
|
|
- merge -r15463:15564 from busybox_scratch branch through these changesets:
------------------------------------------------------------------------
r15465 | aldot | 2006-06-21 20:48:06 +0200 (Wed, 21 Jun 2006) | 3 lines
- use CONFIG_BUSYBOX_EXEC_PATH as before it one was broken by a recent revert.
- use xchdir() since all is invain if it fails there anyways, supposedly
------------------------------------------------------------------------
r15466 | aldot | 2006-06-21 20:55:16 +0200 (Wed, 21 Jun 2006) | 2 lines
- adjust docs to take CONFIG_BUSYBOX_EXEC_PATH into account.
------------------------------------------------------------------------
r15467 | aldot | 2006-06-21 21:31:24 +0200 (Wed, 21 Jun 2006) | 18 lines
- partial fallout of my TREE_USED touchup against gcc-4.2: rip unused vars, save
s 144 bytes
text data bss dec hex filename
862434 10156 645924 1518514 172bb2 busybox.old
862322 10156 645892 1518370 172b22 busybox
function old new delta
z_len 4 - -4
textend 4 - -4
part_nb 4 - -4
insize 4 - -4
ifile_size 4 - -4
do_link 4 - -4
new_text 70 60 -10
ipaddr_list_link 33 23 -10
gzip_main 898 822 -76
------------------------------------------------------------------------------
(add/remove: 0/6 grow/shrink: 0/3 up/down: 0/-120) Total: -120 bytes
------------------------------------------------------------------------
r15468 | aldot | 2006-06-21 21:43:05 +0200 (Wed, 21 Jun 2006) | 19 lines
- remove useless global exports
function old new delta
rpm_main 940 1601 +661
rpm_getstring 107 112 +5
rpm_getint 148 153 +5
loop_through_files 103 106 +3
fileaction_dobackup 115 113 -2
fileaction_list 5 - -5
rpm_getcount 42 - -42
extract_cpio_gz 161 - -161
rpm_gettags 504 - -504
------------------------------------------------------------------------------
(add/remove: 0/4 grow/shrink: 4/1 up/down: 674/-714) Total: -40 bytes
text data bss dec hex filename
862322 10156 645892 1518370 172b22 busybox.old
862290 10156 645892 1518338 172b02 busybox
------------------------------------------------------------------------
r15555 | aldot | 2006-06-30 14:10:11 +0200 (Fri, 30 Jun 2006) | 22 lines
- shrink syslog a little bit, move a big buffer (for 'line') off the bss, fold s
emaphore stuff into single caller manually.
stats:
function old new delta
logMessage 395 427 +32
message 1245 1257 +12
opts - 4 +4
small 1 - -1
local_logging 4 - -4
doRemoteLog 4 - -4
circular_logging 4 - -4
syslogd_main 1299 1285 -14
static.res 36 16 -20
.rodata 186650 186586 -64
static.line 1025 - -1025
------------------------------------------------------------------------------
(add/remove: 1/5 grow/shrink: 2/3 up/down: 48/-1136) Total: -1088 bytes
cow@s37:~/src/busybox_scratch$ size sysklogd/syslogd.o{.orig,}
text data bss dec hex filename
3723 348 5242 9313 2461 sysklogd/syslogd.o.orig
3697 348 4188 8233 2029 sysklogd/syslogd.o
==============================================================================
Overall bloatcheck for the changeset mentioned above:
function old new delta
rpm_main 953 1608 +655
logMessage 395 427 +32
message 1245 1257 +12
opts - 4 +4
rpm_getstring 107 110 +3
rpm_getint 148 151 +3
loop_through_files 103 104 +1
small 1 - -1
fileaction_dobackup 115 113 -2
z_len 4 - -4
textend 4 - -4
part_nb 4 - -4
local_logging 4 - -4
insize 4 - -4
ifile_size 4 - -4
do_link 4 - -4
doRemoteLog 4 - -4
circular_logging 4 - -4
fileaction_list 5 - -5
new_text 70 60 -10
ipaddr_list_link 33 23 -10
clear_bufs 31 21 -10
syslogd_main 1287 1273 -14
builtin_help 190 176 -14
static.res 36 16 -20
builtin_source 229 199 -30
rpm_getcount 42 - -42
gzip_main 842 786 -56
.rodata 227176 227112 -64
lash_main 609 527 -82
busy_loop 3883 3739 -144
extract_cpio_gz 155 - -155
rpm_gettags 501 - -501
static.line 1025 - -1025
------------------------------------------------------------------------------
(add/remove: 1/15 grow/shrink: 6/12 up/down: 710/-2221) Total: -1511 bytes
2006-08-20 23:05:13 +05:30
|
|
|
static void extract_cpio_gz(int fd);
|
|
|
|
static rpm_index **rpm_gettags(int fd, int *num_tags);
|
|
|
|
static int bsearch_rpmtag(const void *key, const void *item);
|
2006-12-22 20:33:50 +05:30
|
|
|
static char *rpm_getstr(int tag, int itemindex);
|
- merge -r15463:15564 from busybox_scratch branch through these changesets:
------------------------------------------------------------------------
r15465 | aldot | 2006-06-21 20:48:06 +0200 (Wed, 21 Jun 2006) | 3 lines
- use CONFIG_BUSYBOX_EXEC_PATH as before it one was broken by a recent revert.
- use xchdir() since all is invain if it fails there anyways, supposedly
------------------------------------------------------------------------
r15466 | aldot | 2006-06-21 20:55:16 +0200 (Wed, 21 Jun 2006) | 2 lines
- adjust docs to take CONFIG_BUSYBOX_EXEC_PATH into account.
------------------------------------------------------------------------
r15467 | aldot | 2006-06-21 21:31:24 +0200 (Wed, 21 Jun 2006) | 18 lines
- partial fallout of my TREE_USED touchup against gcc-4.2: rip unused vars, save
s 144 bytes
text data bss dec hex filename
862434 10156 645924 1518514 172bb2 busybox.old
862322 10156 645892 1518370 172b22 busybox
function old new delta
z_len 4 - -4
textend 4 - -4
part_nb 4 - -4
insize 4 - -4
ifile_size 4 - -4
do_link 4 - -4
new_text 70 60 -10
ipaddr_list_link 33 23 -10
gzip_main 898 822 -76
------------------------------------------------------------------------------
(add/remove: 0/6 grow/shrink: 0/3 up/down: 0/-120) Total: -120 bytes
------------------------------------------------------------------------
r15468 | aldot | 2006-06-21 21:43:05 +0200 (Wed, 21 Jun 2006) | 19 lines
- remove useless global exports
function old new delta
rpm_main 940 1601 +661
rpm_getstring 107 112 +5
rpm_getint 148 153 +5
loop_through_files 103 106 +3
fileaction_dobackup 115 113 -2
fileaction_list 5 - -5
rpm_getcount 42 - -42
extract_cpio_gz 161 - -161
rpm_gettags 504 - -504
------------------------------------------------------------------------------
(add/remove: 0/4 grow/shrink: 4/1 up/down: 674/-714) Total: -40 bytes
text data bss dec hex filename
862322 10156 645892 1518370 172b22 busybox.old
862290 10156 645892 1518338 172b02 busybox
------------------------------------------------------------------------
r15555 | aldot | 2006-06-30 14:10:11 +0200 (Fri, 30 Jun 2006) | 22 lines
- shrink syslog a little bit, move a big buffer (for 'line') off the bss, fold s
emaphore stuff into single caller manually.
stats:
function old new delta
logMessage 395 427 +32
message 1245 1257 +12
opts - 4 +4
small 1 - -1
local_logging 4 - -4
doRemoteLog 4 - -4
circular_logging 4 - -4
syslogd_main 1299 1285 -14
static.res 36 16 -20
.rodata 186650 186586 -64
static.line 1025 - -1025
------------------------------------------------------------------------------
(add/remove: 1/5 grow/shrink: 2/3 up/down: 48/-1136) Total: -1088 bytes
cow@s37:~/src/busybox_scratch$ size sysklogd/syslogd.o{.orig,}
text data bss dec hex filename
3723 348 5242 9313 2461 sysklogd/syslogd.o.orig
3697 348 4188 8233 2029 sysklogd/syslogd.o
==============================================================================
Overall bloatcheck for the changeset mentioned above:
function old new delta
rpm_main 953 1608 +655
logMessage 395 427 +32
message 1245 1257 +12
opts - 4 +4
rpm_getstring 107 110 +3
rpm_getint 148 151 +3
loop_through_files 103 104 +1
small 1 - -1
fileaction_dobackup 115 113 -2
z_len 4 - -4
textend 4 - -4
part_nb 4 - -4
local_logging 4 - -4
insize 4 - -4
ifile_size 4 - -4
do_link 4 - -4
doRemoteLog 4 - -4
circular_logging 4 - -4
fileaction_list 5 - -5
new_text 70 60 -10
ipaddr_list_link 33 23 -10
clear_bufs 31 21 -10
syslogd_main 1287 1273 -14
builtin_help 190 176 -14
static.res 36 16 -20
builtin_source 229 199 -30
rpm_getcount 42 - -42
gzip_main 842 786 -56
.rodata 227176 227112 -64
lash_main 609 527 -82
busy_loop 3883 3739 -144
extract_cpio_gz 155 - -155
rpm_gettags 501 - -501
static.line 1025 - -1025
------------------------------------------------------------------------------
(add/remove: 1/15 grow/shrink: 6/12 up/down: 710/-2221) Total: -1511 bytes
2006-08-20 23:05:13 +05:30
|
|
|
static int rpm_getint(int tag, int itemindex);
|
|
|
|
static int rpm_getcount(int tag);
|
|
|
|
static void fileaction_dobackup(char *filename, int fileref);
|
|
|
|
static void fileaction_setowngrp(char *filename, int fileref);
|
|
|
|
static void loop_through_files(int filetag, void (*fileaction)(char *filename, int fileref));
|
2002-12-10 05:47:22 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int rpm_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2002-12-10 05:47:22 +05:30
|
|
|
int rpm_main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int opt = 0, func = 0, rpm_fd, offset;
|
2006-12-22 20:33:50 +05:30
|
|
|
const int pagesize = getpagesize();
|
2002-12-10 05:47:22 +05:30
|
|
|
|
|
|
|
while ((opt = getopt(argc, argv, "iqpldc")) != -1) {
|
|
|
|
switch (opt) {
|
2006-12-22 20:33:50 +05:30
|
|
|
case 'i': /* First arg: Install mode, with q: Information */
|
|
|
|
if (!func) func = rpm_install;
|
2002-12-10 05:47:22 +05:30
|
|
|
else func |= rpm_query_info;
|
|
|
|
break;
|
2006-12-22 20:33:50 +05:30
|
|
|
case 'q': /* First arg: Query mode */
|
|
|
|
if (func) bb_show_usage();
|
|
|
|
func = rpm_query;
|
2002-12-10 05:47:22 +05:30
|
|
|
break;
|
2006-12-22 20:33:50 +05:30
|
|
|
case 'p': /* Query a package */
|
2002-12-10 05:47:22 +05:30
|
|
|
func |= rpm_query_package;
|
|
|
|
break;
|
2006-12-22 20:33:50 +05:30
|
|
|
case 'l': /* List files in a package */
|
2002-12-10 05:47:22 +05:30
|
|
|
func |= rpm_query_list;
|
|
|
|
break;
|
2006-12-22 20:33:50 +05:30
|
|
|
case 'd': /* List doc files in a package (implies list) */
|
2002-12-10 05:47:22 +05:30
|
|
|
func |= rpm_query_list;
|
|
|
|
func |= rpm_query_list_doc;
|
|
|
|
break;
|
2006-12-22 20:33:50 +05:30
|
|
|
case 'c': /* List config files in a package (implies list) */
|
2002-12-10 05:47:22 +05:30
|
|
|
func |= rpm_query_list;
|
|
|
|
func |= rpm_query_list_config;
|
|
|
|
break;
|
|
|
|
default:
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2002-12-10 05:47:22 +05:30
|
|
|
}
|
|
|
|
}
|
2006-12-22 20:33:50 +05:30
|
|
|
argv += optind;
|
|
|
|
argc -= optind;
|
|
|
|
if (!argc) bb_show_usage();
|
|
|
|
|
|
|
|
while (*argv) {
|
|
|
|
rpm_fd = xopen(*argv++, O_RDONLY);
|
|
|
|
mytags = rpm_gettags(rpm_fd, &tagcount);
|
|
|
|
if (!mytags)
|
|
|
|
bb_error_msg_and_die("error reading rpm header");
|
|
|
|
offset = xlseek(rpm_fd, 0, SEEK_CUR);
|
|
|
|
/* Mimimum is one page */
|
|
|
|
map = mmap(0, offset > pagesize ? (offset + offset % pagesize) : pagesize, PROT_READ, MAP_PRIVATE, rpm_fd, 0);
|
2002-12-10 05:47:22 +05:30
|
|
|
|
|
|
|
if (func & rpm_install) {
|
2006-12-22 20:33:50 +05:30
|
|
|
/* Backup any config files */
|
|
|
|
loop_through_files(TAG_BASENAMES, fileaction_dobackup);
|
|
|
|
/* Extact the archive */
|
|
|
|
extract_cpio_gz(rpm_fd);
|
|
|
|
/* Set the correct file uid/gid's */
|
|
|
|
loop_through_files(TAG_BASENAMES, fileaction_setowngrp);
|
|
|
|
}
|
|
|
|
else if ((func & (rpm_query|rpm_query_package)) == (rpm_query|rpm_query_package)) {
|
|
|
|
if (!(func & (rpm_query_info|rpm_query_list))) {
|
|
|
|
/* If just a straight query, just give package name */
|
|
|
|
printf("%s-%s-%s\n", rpm_getstr(TAG_NAME, 0), rpm_getstr(TAG_VERSION, 0), rpm_getstr(TAG_RELEASE, 0));
|
2002-12-10 05:47:22 +05:30
|
|
|
}
|
|
|
|
if (func & rpm_query_info) {
|
|
|
|
/* Do the nice printout */
|
|
|
|
time_t bdate_time;
|
|
|
|
struct tm *bdate;
|
|
|
|
char bdatestring[50];
|
2006-12-22 20:33:50 +05:30
|
|
|
printf("Name : %-29sRelocations: %s\n", rpm_getstr(TAG_NAME, 0), rpm_getstr(TAG_PREFIXS, 0) ? rpm_getstr(TAG_PREFIXS, 0) : "(not relocateable)");
|
|
|
|
printf("Version : %-34sVendor: %s\n", rpm_getstr(TAG_VERSION, 0), rpm_getstr(TAG_VENDOR, 0) ? rpm_getstr(TAG_VENDOR, 0) : "(none)");
|
|
|
|
bdate_time = rpm_getint(TAG_BUILDTIME, 0);
|
2002-12-10 05:47:22 +05:30
|
|
|
bdate = localtime((time_t *) &bdate_time);
|
|
|
|
strftime(bdatestring, 50, "%a %d %b %Y %T %Z", bdate);
|
2006-12-22 20:33:50 +05:30
|
|
|
printf("Release : %-30sBuild Date: %s\n", rpm_getstr(TAG_RELEASE, 0), bdatestring);
|
|
|
|
printf("Install date: %-30sBuild Host: %s\n", "(not installed)", rpm_getstr(TAG_BUILDHOST, 0));
|
|
|
|
printf("Group : %-30sSource RPM: %s\n", rpm_getstr(TAG_GROUP, 0), rpm_getstr(TAG_SOURCERPM, 0));
|
|
|
|
printf("Size : %-33dLicense: %s\n", rpm_getint(TAG_SIZE, 0), rpm_getstr(TAG_LICENSE, 0));
|
|
|
|
printf("URL : %s\n", rpm_getstr(TAG_URL, 0));
|
|
|
|
printf("Summary : %s\n", rpm_getstr(TAG_SUMMARY, 0));
|
|
|
|
printf("Description :\n%s\n", rpm_getstr(TAG_DESCRIPTION, 0));
|
2002-12-10 05:47:22 +05:30
|
|
|
}
|
|
|
|
if (func & rpm_query_list) {
|
|
|
|
int count, it, flags;
|
2006-12-22 20:33:50 +05:30
|
|
|
count = rpm_getcount(TAG_BASENAMES);
|
2002-12-10 05:47:22 +05:30
|
|
|
for (it = 0; it < count; it++) {
|
2006-12-22 20:33:50 +05:30
|
|
|
flags = rpm_getint(TAG_FILEFLAGS, it);
|
|
|
|
switch (func & (rpm_query_list_doc|rpm_query_list_config)) {
|
|
|
|
case rpm_query_list_doc:
|
|
|
|
if (!(flags & RPMFILE_DOC)) continue;
|
|
|
|
break;
|
|
|
|
case rpm_query_list_config:
|
|
|
|
if (!(flags & RPMFILE_CONFIG)) continue;
|
|
|
|
break;
|
|
|
|
case rpm_query_list_doc|rpm_query_list_config:
|
|
|
|
if (!(flags & (RPMFILE_CONFIG|RPMFILE_DOC))) continue;
|
|
|
|
break;
|
2002-12-10 05:47:22 +05:30
|
|
|
}
|
2006-12-22 20:33:50 +05:30
|
|
|
printf("%s%s\n",
|
|
|
|
rpm_getstr(TAG_DIRNAMES, rpm_getint(TAG_DIRINDEXES, it)),
|
|
|
|
rpm_getstr(TAG_BASENAMES, it));
|
2002-12-10 05:47:22 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-12-22 20:33:50 +05:30
|
|
|
free(mytags);
|
2002-12-10 05:47:22 +05:30
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-04-17 04:02:04 +05:30
|
|
|
static void extract_cpio_gz(int fd)
|
|
|
|
{
|
2002-12-10 05:47:22 +05:30
|
|
|
archive_handle_t *archive_handle;
|
|
|
|
unsigned char magic[2];
|
2007-09-05 17:18:32 +05:30
|
|
|
#if BB_MMU
|
2008-06-27 08:22:20 +05:30
|
|
|
USE_DESKTOP(long long) int FAST_FUNC (*xformer)(int src_fd, int dst_fd);
|
2007-09-05 17:18:32 +05:30
|
|
|
enum { xformer_prog = 0 };
|
|
|
|
#else
|
|
|
|
enum { xformer = 0 };
|
|
|
|
const char *xformer_prog;
|
|
|
|
#endif
|
2002-12-10 05:47:22 +05:30
|
|
|
|
2007-06-08 18:35:39 +05:30
|
|
|
/* Initialize */
|
2002-12-10 05:47:22 +05:30
|
|
|
archive_handle = init_handle();
|
2006-10-08 18:19:22 +05:30
|
|
|
archive_handle->seek = seek_by_read;
|
2002-12-10 05:47:22 +05:30
|
|
|
//archive_handle->action_header = header_list;
|
|
|
|
archive_handle->action_data = data_extract_all;
|
2008-10-16 18:59:13 +05:30
|
|
|
archive_handle->ah_flags = ARCHIVE_PRESERVE_DATE | ARCHIVE_CREATE_LEADING_DIRS
|
|
|
|
/* compat: overwrite existing files.
|
|
|
|
* try "rpm -i foo.src.rpm" few times in a row -
|
|
|
|
* standard rpm will not complain.
|
|
|
|
* (TODO? real rpm creates "file;1234" and then renames it) */
|
|
|
|
| ARCHIVE_EXTRACT_UNCONDITIONAL;
|
2002-12-10 05:47:22 +05:30
|
|
|
archive_handle->src_fd = fd;
|
2008-06-28 10:34:09 +05:30
|
|
|
/*archive_handle->offset = 0; - init_handle() did it */
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2008-08-05 18:40:34 +05:30
|
|
|
// TODO: open_zipped does the same
|
|
|
|
|
2006-07-16 13:44:35 +05:30
|
|
|
xread(archive_handle->src_fd, &magic, 2);
|
2007-09-05 17:18:32 +05:30
|
|
|
#if BB_MMU
|
2007-06-08 18:35:39 +05:30
|
|
|
xformer = unpack_gz_stream;
|
2007-09-05 17:18:32 +05:30
|
|
|
#else
|
|
|
|
xformer_prog = "gunzip";
|
|
|
|
#endif
|
2008-08-05 18:40:34 +05:30
|
|
|
if (magic[0] != 0x1f || magic[1] != 0x8b) {
|
|
|
|
if (!ENABLE_FEATURE_SEAMLESS_BZ2
|
|
|
|
|| magic[0] != 'B' || magic[1] != 'Z'
|
|
|
|
) {
|
|
|
|
bb_error_msg_and_die("no gzip"
|
|
|
|
USE_FEATURE_SEAMLESS_BZ2("/bzip2")
|
|
|
|
" magic");
|
|
|
|
}
|
2007-09-05 17:18:32 +05:30
|
|
|
#if BB_MMU
|
2008-08-05 18:40:34 +05:30
|
|
|
xformer = unpack_bz2_stream;
|
2007-09-05 17:18:32 +05:30
|
|
|
#else
|
2008-08-05 18:40:34 +05:30
|
|
|
xformer_prog = "bunzip2";
|
2007-09-05 17:18:32 +05:30
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
#if !BB_MMU
|
|
|
|
/* NOMMU version of open_transformer execs an external unzipper that should
|
|
|
|
* have the file position at the start of the file */
|
|
|
|
xlseek(archive_handle->src_fd, 0, SEEK_SET);
|
|
|
|
#endif
|
|
|
|
}
|
2002-12-10 05:47:22 +05:30
|
|
|
|
2007-06-08 18:35:39 +05:30
|
|
|
xchdir("/"); /* Install RPM's to root */
|
2008-07-10 23:13:01 +05:30
|
|
|
open_transformer(archive_handle->src_fd, xformer, xformer_prog);
|
2003-11-16 04:49:05 +05:30
|
|
|
archive_handle->offset = 0;
|
2006-12-22 20:33:50 +05:30
|
|
|
while (get_header_cpio(archive_handle) == EXIT_SUCCESS)
|
2007-06-08 18:35:39 +05:30
|
|
|
continue;
|
2002-12-10 05:47:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
- merge -r15463:15564 from busybox_scratch branch through these changesets:
------------------------------------------------------------------------
r15465 | aldot | 2006-06-21 20:48:06 +0200 (Wed, 21 Jun 2006) | 3 lines
- use CONFIG_BUSYBOX_EXEC_PATH as before it one was broken by a recent revert.
- use xchdir() since all is invain if it fails there anyways, supposedly
------------------------------------------------------------------------
r15466 | aldot | 2006-06-21 20:55:16 +0200 (Wed, 21 Jun 2006) | 2 lines
- adjust docs to take CONFIG_BUSYBOX_EXEC_PATH into account.
------------------------------------------------------------------------
r15467 | aldot | 2006-06-21 21:31:24 +0200 (Wed, 21 Jun 2006) | 18 lines
- partial fallout of my TREE_USED touchup against gcc-4.2: rip unused vars, save
s 144 bytes
text data bss dec hex filename
862434 10156 645924 1518514 172bb2 busybox.old
862322 10156 645892 1518370 172b22 busybox
function old new delta
z_len 4 - -4
textend 4 - -4
part_nb 4 - -4
insize 4 - -4
ifile_size 4 - -4
do_link 4 - -4
new_text 70 60 -10
ipaddr_list_link 33 23 -10
gzip_main 898 822 -76
------------------------------------------------------------------------------
(add/remove: 0/6 grow/shrink: 0/3 up/down: 0/-120) Total: -120 bytes
------------------------------------------------------------------------
r15468 | aldot | 2006-06-21 21:43:05 +0200 (Wed, 21 Jun 2006) | 19 lines
- remove useless global exports
function old new delta
rpm_main 940 1601 +661
rpm_getstring 107 112 +5
rpm_getint 148 153 +5
loop_through_files 103 106 +3
fileaction_dobackup 115 113 -2
fileaction_list 5 - -5
rpm_getcount 42 - -42
extract_cpio_gz 161 - -161
rpm_gettags 504 - -504
------------------------------------------------------------------------------
(add/remove: 0/4 grow/shrink: 4/1 up/down: 674/-714) Total: -40 bytes
text data bss dec hex filename
862322 10156 645892 1518370 172b22 busybox.old
862290 10156 645892 1518338 172b02 busybox
------------------------------------------------------------------------
r15555 | aldot | 2006-06-30 14:10:11 +0200 (Fri, 30 Jun 2006) | 22 lines
- shrink syslog a little bit, move a big buffer (for 'line') off the bss, fold s
emaphore stuff into single caller manually.
stats:
function old new delta
logMessage 395 427 +32
message 1245 1257 +12
opts - 4 +4
small 1 - -1
local_logging 4 - -4
doRemoteLog 4 - -4
circular_logging 4 - -4
syslogd_main 1299 1285 -14
static.res 36 16 -20
.rodata 186650 186586 -64
static.line 1025 - -1025
------------------------------------------------------------------------------
(add/remove: 1/5 grow/shrink: 2/3 up/down: 48/-1136) Total: -1088 bytes
cow@s37:~/src/busybox_scratch$ size sysklogd/syslogd.o{.orig,}
text data bss dec hex filename
3723 348 5242 9313 2461 sysklogd/syslogd.o.orig
3697 348 4188 8233 2029 sysklogd/syslogd.o
==============================================================================
Overall bloatcheck for the changeset mentioned above:
function old new delta
rpm_main 953 1608 +655
logMessage 395 427 +32
message 1245 1257 +12
opts - 4 +4
rpm_getstring 107 110 +3
rpm_getint 148 151 +3
loop_through_files 103 104 +1
small 1 - -1
fileaction_dobackup 115 113 -2
z_len 4 - -4
textend 4 - -4
part_nb 4 - -4
local_logging 4 - -4
insize 4 - -4
ifile_size 4 - -4
do_link 4 - -4
doRemoteLog 4 - -4
circular_logging 4 - -4
fileaction_list 5 - -5
new_text 70 60 -10
ipaddr_list_link 33 23 -10
clear_bufs 31 21 -10
syslogd_main 1287 1273 -14
builtin_help 190 176 -14
static.res 36 16 -20
builtin_source 229 199 -30
rpm_getcount 42 - -42
gzip_main 842 786 -56
.rodata 227176 227112 -64
lash_main 609 527 -82
busy_loop 3883 3739 -144
extract_cpio_gz 155 - -155
rpm_gettags 501 - -501
static.line 1025 - -1025
------------------------------------------------------------------------------
(add/remove: 1/15 grow/shrink: 6/12 up/down: 710/-2221) Total: -1511 bytes
2006-08-20 23:05:13 +05:30
|
|
|
static rpm_index **rpm_gettags(int fd, int *num_tags)
|
2002-12-10 05:47:22 +05:30
|
|
|
{
|
2006-12-22 20:33:50 +05:30
|
|
|
/* We should never need mode than 200, and realloc later */
|
|
|
|
rpm_index **tags = xzalloc(200 * sizeof(struct rpmtag *));
|
2002-12-10 05:47:22 +05:30
|
|
|
int pass, tagindex = 0;
|
|
|
|
|
2006-12-22 20:33:50 +05:30
|
|
|
xlseek(fd, 96, SEEK_CUR); /* Seek past the unused lead */
|
|
|
|
|
|
|
|
/* 1st pass is the signature headers, 2nd is the main stuff */
|
|
|
|
for (pass = 0; pass < 2; pass++) {
|
2002-12-10 05:47:22 +05:30
|
|
|
struct {
|
|
|
|
char magic[3]; /* 3 byte magic: 0x8e 0xad 0xe8 */
|
2004-01-31 04:24:20 +05:30
|
|
|
uint8_t version; /* 1 byte version number */
|
|
|
|
uint32_t reserved; /* 4 bytes reserved */
|
|
|
|
uint32_t entries; /* Number of entries in header (4 bytes) */
|
|
|
|
uint32_t size; /* Size of store (4 bytes) */
|
2002-12-10 05:47:22 +05:30
|
|
|
} header;
|
|
|
|
rpm_index *tmpindex;
|
|
|
|
int storepos;
|
|
|
|
|
2006-12-22 20:33:50 +05:30
|
|
|
xread(fd, &header, sizeof(header));
|
|
|
|
if (strncmp((char *) &header.magic, RPM_HEADER_MAGIC, 3) != 0)
|
|
|
|
return NULL; /* Invalid magic */
|
|
|
|
if (header.version != 1)
|
|
|
|
return NULL; /* This program only supports v1 headers */
|
2002-12-10 05:47:22 +05:30
|
|
|
header.size = ntohl(header.size);
|
|
|
|
header.entries = ntohl(header.entries);
|
2006-12-22 20:33:50 +05:30
|
|
|
storepos = xlseek(fd,0,SEEK_CUR) + header.entries * 16;
|
2002-12-10 05:47:22 +05:30
|
|
|
|
|
|
|
while (header.entries--) {
|
2005-08-16 11:02:42 +05:30
|
|
|
tmpindex = tags[tagindex++] = xmalloc(sizeof(rpm_index));
|
2006-12-22 20:33:50 +05:30
|
|
|
xread(fd, tmpindex, sizeof(rpm_index));
|
|
|
|
tmpindex->tag = ntohl(tmpindex->tag);
|
|
|
|
tmpindex->type = ntohl(tmpindex->type);
|
|
|
|
tmpindex->count = ntohl(tmpindex->count);
|
2002-12-10 05:47:22 +05:30
|
|
|
tmpindex->offset = storepos + ntohl(tmpindex->offset);
|
2008-07-08 10:44:36 +05:30
|
|
|
if (pass == 0)
|
2006-12-22 20:33:50 +05:30
|
|
|
tmpindex->tag -= 743;
|
2002-12-10 05:47:22 +05:30
|
|
|
}
|
2006-12-22 20:33:50 +05:30
|
|
|
xlseek(fd, header.size, SEEK_CUR); /* Seek past store */
|
|
|
|
/* Skip padding to 8 byte boundary after reading signature headers */
|
2008-07-08 10:44:36 +05:30
|
|
|
if (pass == 0)
|
2006-12-22 20:33:50 +05:30
|
|
|
xlseek(fd, (8 - (xlseek(fd,0,SEEK_CUR) % 8)) % 8, SEEK_CUR);
|
2002-12-10 05:47:22 +05:30
|
|
|
}
|
2006-12-22 20:33:50 +05:30
|
|
|
tags = xrealloc(tags, tagindex * sizeof(struct rpmtag *)); /* realloc tags to save space */
|
2002-12-10 05:47:22 +05:30
|
|
|
*num_tags = tagindex;
|
|
|
|
return tags; /* All done, leave the file at the start of the gzipped cpio archive */
|
|
|
|
}
|
|
|
|
|
- merge -r15463:15564 from busybox_scratch branch through these changesets:
------------------------------------------------------------------------
r15465 | aldot | 2006-06-21 20:48:06 +0200 (Wed, 21 Jun 2006) | 3 lines
- use CONFIG_BUSYBOX_EXEC_PATH as before it one was broken by a recent revert.
- use xchdir() since all is invain if it fails there anyways, supposedly
------------------------------------------------------------------------
r15466 | aldot | 2006-06-21 20:55:16 +0200 (Wed, 21 Jun 2006) | 2 lines
- adjust docs to take CONFIG_BUSYBOX_EXEC_PATH into account.
------------------------------------------------------------------------
r15467 | aldot | 2006-06-21 21:31:24 +0200 (Wed, 21 Jun 2006) | 18 lines
- partial fallout of my TREE_USED touchup against gcc-4.2: rip unused vars, save
s 144 bytes
text data bss dec hex filename
862434 10156 645924 1518514 172bb2 busybox.old
862322 10156 645892 1518370 172b22 busybox
function old new delta
z_len 4 - -4
textend 4 - -4
part_nb 4 - -4
insize 4 - -4
ifile_size 4 - -4
do_link 4 - -4
new_text 70 60 -10
ipaddr_list_link 33 23 -10
gzip_main 898 822 -76
------------------------------------------------------------------------------
(add/remove: 0/6 grow/shrink: 0/3 up/down: 0/-120) Total: -120 bytes
------------------------------------------------------------------------
r15468 | aldot | 2006-06-21 21:43:05 +0200 (Wed, 21 Jun 2006) | 19 lines
- remove useless global exports
function old new delta
rpm_main 940 1601 +661
rpm_getstring 107 112 +5
rpm_getint 148 153 +5
loop_through_files 103 106 +3
fileaction_dobackup 115 113 -2
fileaction_list 5 - -5
rpm_getcount 42 - -42
extract_cpio_gz 161 - -161
rpm_gettags 504 - -504
------------------------------------------------------------------------------
(add/remove: 0/4 grow/shrink: 4/1 up/down: 674/-714) Total: -40 bytes
text data bss dec hex filename
862322 10156 645892 1518370 172b22 busybox.old
862290 10156 645892 1518338 172b02 busybox
------------------------------------------------------------------------
r15555 | aldot | 2006-06-30 14:10:11 +0200 (Fri, 30 Jun 2006) | 22 lines
- shrink syslog a little bit, move a big buffer (for 'line') off the bss, fold s
emaphore stuff into single caller manually.
stats:
function old new delta
logMessage 395 427 +32
message 1245 1257 +12
opts - 4 +4
small 1 - -1
local_logging 4 - -4
doRemoteLog 4 - -4
circular_logging 4 - -4
syslogd_main 1299 1285 -14
static.res 36 16 -20
.rodata 186650 186586 -64
static.line 1025 - -1025
------------------------------------------------------------------------------
(add/remove: 1/5 grow/shrink: 2/3 up/down: 48/-1136) Total: -1088 bytes
cow@s37:~/src/busybox_scratch$ size sysklogd/syslogd.o{.orig,}
text data bss dec hex filename
3723 348 5242 9313 2461 sysklogd/syslogd.o.orig
3697 348 4188 8233 2029 sysklogd/syslogd.o
==============================================================================
Overall bloatcheck for the changeset mentioned above:
function old new delta
rpm_main 953 1608 +655
logMessage 395 427 +32
message 1245 1257 +12
opts - 4 +4
rpm_getstring 107 110 +3
rpm_getint 148 151 +3
loop_through_files 103 104 +1
small 1 - -1
fileaction_dobackup 115 113 -2
z_len 4 - -4
textend 4 - -4
part_nb 4 - -4
local_logging 4 - -4
insize 4 - -4
ifile_size 4 - -4
do_link 4 - -4
doRemoteLog 4 - -4
circular_logging 4 - -4
fileaction_list 5 - -5
new_text 70 60 -10
ipaddr_list_link 33 23 -10
clear_bufs 31 21 -10
syslogd_main 1287 1273 -14
builtin_help 190 176 -14
static.res 36 16 -20
builtin_source 229 199 -30
rpm_getcount 42 - -42
gzip_main 842 786 -56
.rodata 227176 227112 -64
lash_main 609 527 -82
busy_loop 3883 3739 -144
extract_cpio_gz 155 - -155
rpm_gettags 501 - -501
static.line 1025 - -1025
------------------------------------------------------------------------------
(add/remove: 1/15 grow/shrink: 6/12 up/down: 710/-2221) Total: -1511 bytes
2006-08-20 23:05:13 +05:30
|
|
|
static int bsearch_rpmtag(const void *key, const void *item)
|
2002-12-10 05:47:22 +05:30
|
|
|
{
|
2006-01-31 00:03:12 +05:30
|
|
|
int *tag = (int *)key;
|
2002-12-10 05:47:22 +05:30
|
|
|
rpm_index **tmp = (rpm_index **) item;
|
2006-01-31 00:03:12 +05:30
|
|
|
return (*tag - tmp[0]->tag);
|
2002-12-10 05:47:22 +05:30
|
|
|
}
|
|
|
|
|
- merge -r15463:15564 from busybox_scratch branch through these changesets:
------------------------------------------------------------------------
r15465 | aldot | 2006-06-21 20:48:06 +0200 (Wed, 21 Jun 2006) | 3 lines
- use CONFIG_BUSYBOX_EXEC_PATH as before it one was broken by a recent revert.
- use xchdir() since all is invain if it fails there anyways, supposedly
------------------------------------------------------------------------
r15466 | aldot | 2006-06-21 20:55:16 +0200 (Wed, 21 Jun 2006) | 2 lines
- adjust docs to take CONFIG_BUSYBOX_EXEC_PATH into account.
------------------------------------------------------------------------
r15467 | aldot | 2006-06-21 21:31:24 +0200 (Wed, 21 Jun 2006) | 18 lines
- partial fallout of my TREE_USED touchup against gcc-4.2: rip unused vars, save
s 144 bytes
text data bss dec hex filename
862434 10156 645924 1518514 172bb2 busybox.old
862322 10156 645892 1518370 172b22 busybox
function old new delta
z_len 4 - -4
textend 4 - -4
part_nb 4 - -4
insize 4 - -4
ifile_size 4 - -4
do_link 4 - -4
new_text 70 60 -10
ipaddr_list_link 33 23 -10
gzip_main 898 822 -76
------------------------------------------------------------------------------
(add/remove: 0/6 grow/shrink: 0/3 up/down: 0/-120) Total: -120 bytes
------------------------------------------------------------------------
r15468 | aldot | 2006-06-21 21:43:05 +0200 (Wed, 21 Jun 2006) | 19 lines
- remove useless global exports
function old new delta
rpm_main 940 1601 +661
rpm_getstring 107 112 +5
rpm_getint 148 153 +5
loop_through_files 103 106 +3
fileaction_dobackup 115 113 -2
fileaction_list 5 - -5
rpm_getcount 42 - -42
extract_cpio_gz 161 - -161
rpm_gettags 504 - -504
------------------------------------------------------------------------------
(add/remove: 0/4 grow/shrink: 4/1 up/down: 674/-714) Total: -40 bytes
text data bss dec hex filename
862322 10156 645892 1518370 172b22 busybox.old
862290 10156 645892 1518338 172b02 busybox
------------------------------------------------------------------------
r15555 | aldot | 2006-06-30 14:10:11 +0200 (Fri, 30 Jun 2006) | 22 lines
- shrink syslog a little bit, move a big buffer (for 'line') off the bss, fold s
emaphore stuff into single caller manually.
stats:
function old new delta
logMessage 395 427 +32
message 1245 1257 +12
opts - 4 +4
small 1 - -1
local_logging 4 - -4
doRemoteLog 4 - -4
circular_logging 4 - -4
syslogd_main 1299 1285 -14
static.res 36 16 -20
.rodata 186650 186586 -64
static.line 1025 - -1025
------------------------------------------------------------------------------
(add/remove: 1/5 grow/shrink: 2/3 up/down: 48/-1136) Total: -1088 bytes
cow@s37:~/src/busybox_scratch$ size sysklogd/syslogd.o{.orig,}
text data bss dec hex filename
3723 348 5242 9313 2461 sysklogd/syslogd.o.orig
3697 348 4188 8233 2029 sysklogd/syslogd.o
==============================================================================
Overall bloatcheck for the changeset mentioned above:
function old new delta
rpm_main 953 1608 +655
logMessage 395 427 +32
message 1245 1257 +12
opts - 4 +4
rpm_getstring 107 110 +3
rpm_getint 148 151 +3
loop_through_files 103 104 +1
small 1 - -1
fileaction_dobackup 115 113 -2
z_len 4 - -4
textend 4 - -4
part_nb 4 - -4
local_logging 4 - -4
insize 4 - -4
ifile_size 4 - -4
do_link 4 - -4
doRemoteLog 4 - -4
circular_logging 4 - -4
fileaction_list 5 - -5
new_text 70 60 -10
ipaddr_list_link 33 23 -10
clear_bufs 31 21 -10
syslogd_main 1287 1273 -14
builtin_help 190 176 -14
static.res 36 16 -20
builtin_source 229 199 -30
rpm_getcount 42 - -42
gzip_main 842 786 -56
.rodata 227176 227112 -64
lash_main 609 527 -82
busy_loop 3883 3739 -144
extract_cpio_gz 155 - -155
rpm_gettags 501 - -501
static.line 1025 - -1025
------------------------------------------------------------------------------
(add/remove: 1/15 grow/shrink: 6/12 up/down: 710/-2221) Total: -1511 bytes
2006-08-20 23:05:13 +05:30
|
|
|
static int rpm_getcount(int tag)
|
2002-12-10 05:47:22 +05:30
|
|
|
{
|
|
|
|
rpm_index **found;
|
2006-01-31 00:03:12 +05:30
|
|
|
found = bsearch(&tag, mytags, tagcount, sizeof(struct rpmtag *), bsearch_rpmtag);
|
2006-12-22 20:33:50 +05:30
|
|
|
if (!found)
|
|
|
|
return 0;
|
|
|
|
return found[0]->count;
|
2002-12-10 05:47:22 +05:30
|
|
|
}
|
|
|
|
|
2006-12-22 20:33:50 +05:30
|
|
|
static char *rpm_getstr(int tag, int itemindex)
|
2002-12-10 05:47:22 +05:30
|
|
|
{
|
|
|
|
rpm_index **found;
|
2006-01-31 00:03:12 +05:30
|
|
|
found = bsearch(&tag, mytags, tagcount, sizeof(struct rpmtag *), bsearch_rpmtag);
|
2006-12-22 20:33:50 +05:30
|
|
|
if (!found || itemindex >= found[0]->count)
|
|
|
|
return NULL;
|
2002-12-10 05:47:22 +05:30
|
|
|
if (found[0]->type == RPM_STRING_TYPE || found[0]->type == RPM_I18NSTRING_TYPE || found[0]->type == RPM_STRING_ARRAY_TYPE) {
|
|
|
|
int n;
|
|
|
|
char *tmpstr = (char *) (map + found[0]->offset);
|
2006-12-22 20:33:50 +05:30
|
|
|
for (n=0; n < itemindex; n++)
|
|
|
|
tmpstr = tmpstr + strlen(tmpstr) + 1;
|
2002-12-10 05:47:22 +05:30
|
|
|
return tmpstr;
|
2006-12-22 20:33:50 +05:30
|
|
|
}
|
|
|
|
return NULL;
|
2002-12-10 05:47:22 +05:30
|
|
|
}
|
|
|
|
|
- merge -r15463:15564 from busybox_scratch branch through these changesets:
------------------------------------------------------------------------
r15465 | aldot | 2006-06-21 20:48:06 +0200 (Wed, 21 Jun 2006) | 3 lines
- use CONFIG_BUSYBOX_EXEC_PATH as before it one was broken by a recent revert.
- use xchdir() since all is invain if it fails there anyways, supposedly
------------------------------------------------------------------------
r15466 | aldot | 2006-06-21 20:55:16 +0200 (Wed, 21 Jun 2006) | 2 lines
- adjust docs to take CONFIG_BUSYBOX_EXEC_PATH into account.
------------------------------------------------------------------------
r15467 | aldot | 2006-06-21 21:31:24 +0200 (Wed, 21 Jun 2006) | 18 lines
- partial fallout of my TREE_USED touchup against gcc-4.2: rip unused vars, save
s 144 bytes
text data bss dec hex filename
862434 10156 645924 1518514 172bb2 busybox.old
862322 10156 645892 1518370 172b22 busybox
function old new delta
z_len 4 - -4
textend 4 - -4
part_nb 4 - -4
insize 4 - -4
ifile_size 4 - -4
do_link 4 - -4
new_text 70 60 -10
ipaddr_list_link 33 23 -10
gzip_main 898 822 -76
------------------------------------------------------------------------------
(add/remove: 0/6 grow/shrink: 0/3 up/down: 0/-120) Total: -120 bytes
------------------------------------------------------------------------
r15468 | aldot | 2006-06-21 21:43:05 +0200 (Wed, 21 Jun 2006) | 19 lines
- remove useless global exports
function old new delta
rpm_main 940 1601 +661
rpm_getstring 107 112 +5
rpm_getint 148 153 +5
loop_through_files 103 106 +3
fileaction_dobackup 115 113 -2
fileaction_list 5 - -5
rpm_getcount 42 - -42
extract_cpio_gz 161 - -161
rpm_gettags 504 - -504
------------------------------------------------------------------------------
(add/remove: 0/4 grow/shrink: 4/1 up/down: 674/-714) Total: -40 bytes
text data bss dec hex filename
862322 10156 645892 1518370 172b22 busybox.old
862290 10156 645892 1518338 172b02 busybox
------------------------------------------------------------------------
r15555 | aldot | 2006-06-30 14:10:11 +0200 (Fri, 30 Jun 2006) | 22 lines
- shrink syslog a little bit, move a big buffer (for 'line') off the bss, fold s
emaphore stuff into single caller manually.
stats:
function old new delta
logMessage 395 427 +32
message 1245 1257 +12
opts - 4 +4
small 1 - -1
local_logging 4 - -4
doRemoteLog 4 - -4
circular_logging 4 - -4
syslogd_main 1299 1285 -14
static.res 36 16 -20
.rodata 186650 186586 -64
static.line 1025 - -1025
------------------------------------------------------------------------------
(add/remove: 1/5 grow/shrink: 2/3 up/down: 48/-1136) Total: -1088 bytes
cow@s37:~/src/busybox_scratch$ size sysklogd/syslogd.o{.orig,}
text data bss dec hex filename
3723 348 5242 9313 2461 sysklogd/syslogd.o.orig
3697 348 4188 8233 2029 sysklogd/syslogd.o
==============================================================================
Overall bloatcheck for the changeset mentioned above:
function old new delta
rpm_main 953 1608 +655
logMessage 395 427 +32
message 1245 1257 +12
opts - 4 +4
rpm_getstring 107 110 +3
rpm_getint 148 151 +3
loop_through_files 103 104 +1
small 1 - -1
fileaction_dobackup 115 113 -2
z_len 4 - -4
textend 4 - -4
part_nb 4 - -4
local_logging 4 - -4
insize 4 - -4
ifile_size 4 - -4
do_link 4 - -4
doRemoteLog 4 - -4
circular_logging 4 - -4
fileaction_list 5 - -5
new_text 70 60 -10
ipaddr_list_link 33 23 -10
clear_bufs 31 21 -10
syslogd_main 1287 1273 -14
builtin_help 190 176 -14
static.res 36 16 -20
builtin_source 229 199 -30
rpm_getcount 42 - -42
gzip_main 842 786 -56
.rodata 227176 227112 -64
lash_main 609 527 -82
busy_loop 3883 3739 -144
extract_cpio_gz 155 - -155
rpm_gettags 501 - -501
static.line 1025 - -1025
------------------------------------------------------------------------------
(add/remove: 1/15 grow/shrink: 6/12 up/down: 710/-2221) Total: -1511 bytes
2006-08-20 23:05:13 +05:30
|
|
|
static int rpm_getint(int tag, int itemindex)
|
2002-12-10 05:47:22 +05:30
|
|
|
{
|
|
|
|
rpm_index **found;
|
2006-12-22 20:33:50 +05:30
|
|
|
int *tmpint; /* NB: using int8_t* would be easier to code */
|
|
|
|
|
2005-04-23 07:13:07 +05:30
|
|
|
/* gcc throws warnings here when sizeof(void*)!=sizeof(int) ...
|
|
|
|
* it's ok to ignore it because tag won't be used as a pointer */
|
2006-01-31 00:03:12 +05:30
|
|
|
found = bsearch(&tag, mytags, tagcount, sizeof(struct rpmtag *), bsearch_rpmtag);
|
2006-12-22 20:33:50 +05:30
|
|
|
if (!found || itemindex >= found[0]->count)
|
|
|
|
return -1;
|
|
|
|
|
2002-12-10 05:47:22 +05:30
|
|
|
tmpint = (int *) (map + found[0]->offset);
|
2006-12-22 20:33:50 +05:30
|
|
|
|
2002-12-10 05:47:22 +05:30
|
|
|
if (found[0]->type == RPM_INT32_TYPE) {
|
2006-12-22 20:33:50 +05:30
|
|
|
tmpint = (int *) ((char *) tmpint + itemindex*4);
|
|
|
|
/*return ntohl(*tmpint);*/
|
|
|
|
/* int can be != int32_t */
|
|
|
|
return ntohl(*(int32_t*)tmpint);
|
|
|
|
}
|
|
|
|
if (found[0]->type == RPM_INT16_TYPE) {
|
|
|
|
tmpint = (int *) ((char *) tmpint + itemindex*2);
|
|
|
|
/* ??? read int, and THEN ntohs() it?? */
|
|
|
|
/*return ntohs(*tmpint);*/
|
|
|
|
return ntohs(*(int16_t*)tmpint);
|
|
|
|
}
|
|
|
|
if (found[0]->type == RPM_INT8_TYPE) {
|
|
|
|
tmpint = (int *) ((char *) tmpint + itemindex);
|
|
|
|
/* ??? why we don't read byte here??? */
|
|
|
|
/*return ntohs(*tmpint);*/
|
|
|
|
return *(int8_t*)tmpint;
|
|
|
|
}
|
|
|
|
return -1;
|
2002-12-10 05:47:22 +05:30
|
|
|
}
|
|
|
|
|
- merge -r15463:15564 from busybox_scratch branch through these changesets:
------------------------------------------------------------------------
r15465 | aldot | 2006-06-21 20:48:06 +0200 (Wed, 21 Jun 2006) | 3 lines
- use CONFIG_BUSYBOX_EXEC_PATH as before it one was broken by a recent revert.
- use xchdir() since all is invain if it fails there anyways, supposedly
------------------------------------------------------------------------
r15466 | aldot | 2006-06-21 20:55:16 +0200 (Wed, 21 Jun 2006) | 2 lines
- adjust docs to take CONFIG_BUSYBOX_EXEC_PATH into account.
------------------------------------------------------------------------
r15467 | aldot | 2006-06-21 21:31:24 +0200 (Wed, 21 Jun 2006) | 18 lines
- partial fallout of my TREE_USED touchup against gcc-4.2: rip unused vars, save
s 144 bytes
text data bss dec hex filename
862434 10156 645924 1518514 172bb2 busybox.old
862322 10156 645892 1518370 172b22 busybox
function old new delta
z_len 4 - -4
textend 4 - -4
part_nb 4 - -4
insize 4 - -4
ifile_size 4 - -4
do_link 4 - -4
new_text 70 60 -10
ipaddr_list_link 33 23 -10
gzip_main 898 822 -76
------------------------------------------------------------------------------
(add/remove: 0/6 grow/shrink: 0/3 up/down: 0/-120) Total: -120 bytes
------------------------------------------------------------------------
r15468 | aldot | 2006-06-21 21:43:05 +0200 (Wed, 21 Jun 2006) | 19 lines
- remove useless global exports
function old new delta
rpm_main 940 1601 +661
rpm_getstring 107 112 +5
rpm_getint 148 153 +5
loop_through_files 103 106 +3
fileaction_dobackup 115 113 -2
fileaction_list 5 - -5
rpm_getcount 42 - -42
extract_cpio_gz 161 - -161
rpm_gettags 504 - -504
------------------------------------------------------------------------------
(add/remove: 0/4 grow/shrink: 4/1 up/down: 674/-714) Total: -40 bytes
text data bss dec hex filename
862322 10156 645892 1518370 172b22 busybox.old
862290 10156 645892 1518338 172b02 busybox
------------------------------------------------------------------------
r15555 | aldot | 2006-06-30 14:10:11 +0200 (Fri, 30 Jun 2006) | 22 lines
- shrink syslog a little bit, move a big buffer (for 'line') off the bss, fold s
emaphore stuff into single caller manually.
stats:
function old new delta
logMessage 395 427 +32
message 1245 1257 +12
opts - 4 +4
small 1 - -1
local_logging 4 - -4
doRemoteLog 4 - -4
circular_logging 4 - -4
syslogd_main 1299 1285 -14
static.res 36 16 -20
.rodata 186650 186586 -64
static.line 1025 - -1025
------------------------------------------------------------------------------
(add/remove: 1/5 grow/shrink: 2/3 up/down: 48/-1136) Total: -1088 bytes
cow@s37:~/src/busybox_scratch$ size sysklogd/syslogd.o{.orig,}
text data bss dec hex filename
3723 348 5242 9313 2461 sysklogd/syslogd.o.orig
3697 348 4188 8233 2029 sysklogd/syslogd.o
==============================================================================
Overall bloatcheck for the changeset mentioned above:
function old new delta
rpm_main 953 1608 +655
logMessage 395 427 +32
message 1245 1257 +12
opts - 4 +4
rpm_getstring 107 110 +3
rpm_getint 148 151 +3
loop_through_files 103 104 +1
small 1 - -1
fileaction_dobackup 115 113 -2
z_len 4 - -4
textend 4 - -4
part_nb 4 - -4
local_logging 4 - -4
insize 4 - -4
ifile_size 4 - -4
do_link 4 - -4
doRemoteLog 4 - -4
circular_logging 4 - -4
fileaction_list 5 - -5
new_text 70 60 -10
ipaddr_list_link 33 23 -10
clear_bufs 31 21 -10
syslogd_main 1287 1273 -14
builtin_help 190 176 -14
static.res 36 16 -20
builtin_source 229 199 -30
rpm_getcount 42 - -42
gzip_main 842 786 -56
.rodata 227176 227112 -64
lash_main 609 527 -82
busy_loop 3883 3739 -144
extract_cpio_gz 155 - -155
rpm_gettags 501 - -501
static.line 1025 - -1025
------------------------------------------------------------------------------
(add/remove: 1/15 grow/shrink: 6/12 up/down: 710/-2221) Total: -1511 bytes
2006-08-20 23:05:13 +05:30
|
|
|
static void fileaction_dobackup(char *filename, int fileref)
|
2002-12-10 05:47:22 +05:30
|
|
|
{
|
|
|
|
struct stat oldfile;
|
|
|
|
int stat_res;
|
|
|
|
char *newname;
|
2006-12-22 20:33:50 +05:30
|
|
|
if (rpm_getint(TAG_FILEFLAGS, fileref) & RPMFILE_CONFIG) {
|
|
|
|
/* Only need to backup config files */
|
|
|
|
stat_res = lstat(filename, &oldfile);
|
|
|
|
if (stat_res == 0 && S_ISREG(oldfile.st_mode)) {
|
|
|
|
/* File already exists - really should check MD5's etc to see if different */
|
2006-09-09 17:54:19 +05:30
|
|
|
newname = xasprintf("%s.rpmorig", filename);
|
2002-12-10 05:47:22 +05:30
|
|
|
copy_file(filename, newname, FILEUTILS_RECUR | FILEUTILS_PRESERVE_STATUS);
|
|
|
|
remove_file(filename, FILEUTILS_RECUR | FILEUTILS_FORCE);
|
|
|
|
free(newname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
- merge -r15463:15564 from busybox_scratch branch through these changesets:
------------------------------------------------------------------------
r15465 | aldot | 2006-06-21 20:48:06 +0200 (Wed, 21 Jun 2006) | 3 lines
- use CONFIG_BUSYBOX_EXEC_PATH as before it one was broken by a recent revert.
- use xchdir() since all is invain if it fails there anyways, supposedly
------------------------------------------------------------------------
r15466 | aldot | 2006-06-21 20:55:16 +0200 (Wed, 21 Jun 2006) | 2 lines
- adjust docs to take CONFIG_BUSYBOX_EXEC_PATH into account.
------------------------------------------------------------------------
r15467 | aldot | 2006-06-21 21:31:24 +0200 (Wed, 21 Jun 2006) | 18 lines
- partial fallout of my TREE_USED touchup against gcc-4.2: rip unused vars, save
s 144 bytes
text data bss dec hex filename
862434 10156 645924 1518514 172bb2 busybox.old
862322 10156 645892 1518370 172b22 busybox
function old new delta
z_len 4 - -4
textend 4 - -4
part_nb 4 - -4
insize 4 - -4
ifile_size 4 - -4
do_link 4 - -4
new_text 70 60 -10
ipaddr_list_link 33 23 -10
gzip_main 898 822 -76
------------------------------------------------------------------------------
(add/remove: 0/6 grow/shrink: 0/3 up/down: 0/-120) Total: -120 bytes
------------------------------------------------------------------------
r15468 | aldot | 2006-06-21 21:43:05 +0200 (Wed, 21 Jun 2006) | 19 lines
- remove useless global exports
function old new delta
rpm_main 940 1601 +661
rpm_getstring 107 112 +5
rpm_getint 148 153 +5
loop_through_files 103 106 +3
fileaction_dobackup 115 113 -2
fileaction_list 5 - -5
rpm_getcount 42 - -42
extract_cpio_gz 161 - -161
rpm_gettags 504 - -504
------------------------------------------------------------------------------
(add/remove: 0/4 grow/shrink: 4/1 up/down: 674/-714) Total: -40 bytes
text data bss dec hex filename
862322 10156 645892 1518370 172b22 busybox.old
862290 10156 645892 1518338 172b02 busybox
------------------------------------------------------------------------
r15555 | aldot | 2006-06-30 14:10:11 +0200 (Fri, 30 Jun 2006) | 22 lines
- shrink syslog a little bit, move a big buffer (for 'line') off the bss, fold s
emaphore stuff into single caller manually.
stats:
function old new delta
logMessage 395 427 +32
message 1245 1257 +12
opts - 4 +4
small 1 - -1
local_logging 4 - -4
doRemoteLog 4 - -4
circular_logging 4 - -4
syslogd_main 1299 1285 -14
static.res 36 16 -20
.rodata 186650 186586 -64
static.line 1025 - -1025
------------------------------------------------------------------------------
(add/remove: 1/5 grow/shrink: 2/3 up/down: 48/-1136) Total: -1088 bytes
cow@s37:~/src/busybox_scratch$ size sysklogd/syslogd.o{.orig,}
text data bss dec hex filename
3723 348 5242 9313 2461 sysklogd/syslogd.o.orig
3697 348 4188 8233 2029 sysklogd/syslogd.o
==============================================================================
Overall bloatcheck for the changeset mentioned above:
function old new delta
rpm_main 953 1608 +655
logMessage 395 427 +32
message 1245 1257 +12
opts - 4 +4
rpm_getstring 107 110 +3
rpm_getint 148 151 +3
loop_through_files 103 104 +1
small 1 - -1
fileaction_dobackup 115 113 -2
z_len 4 - -4
textend 4 - -4
part_nb 4 - -4
local_logging 4 - -4
insize 4 - -4
ifile_size 4 - -4
do_link 4 - -4
doRemoteLog 4 - -4
circular_logging 4 - -4
fileaction_list 5 - -5
new_text 70 60 -10
ipaddr_list_link 33 23 -10
clear_bufs 31 21 -10
syslogd_main 1287 1273 -14
builtin_help 190 176 -14
static.res 36 16 -20
builtin_source 229 199 -30
rpm_getcount 42 - -42
gzip_main 842 786 -56
.rodata 227176 227112 -64
lash_main 609 527 -82
busy_loop 3883 3739 -144
extract_cpio_gz 155 - -155
rpm_gettags 501 - -501
static.line 1025 - -1025
------------------------------------------------------------------------------
(add/remove: 1/15 grow/shrink: 6/12 up/down: 710/-2221) Total: -1511 bytes
2006-08-20 23:05:13 +05:30
|
|
|
static void fileaction_setowngrp(char *filename, int fileref)
|
2002-12-10 05:47:22 +05:30
|
|
|
{
|
2008-10-16 18:59:13 +05:30
|
|
|
/* real rpm warns: "user foo does not exist - using <you>" */
|
|
|
|
struct passwd *pw = getpwnam(rpm_getstr(TAG_FILEUSERNAME, fileref));
|
|
|
|
int uid = pw ? pw->pw_uid : getuid(); /* or euid? */
|
|
|
|
struct group *gr = getgrnam(rpm_getstr(TAG_FILEGROUPNAME, fileref));
|
|
|
|
int gid = gr ? gr->gr_gid : getgid();
|
2006-10-04 00:32:20 +05:30
|
|
|
chown(filename, uid, gid);
|
2002-12-10 05:47:22 +05:30
|
|
|
}
|
|
|
|
|
- merge -r15463:15564 from busybox_scratch branch through these changesets:
------------------------------------------------------------------------
r15465 | aldot | 2006-06-21 20:48:06 +0200 (Wed, 21 Jun 2006) | 3 lines
- use CONFIG_BUSYBOX_EXEC_PATH as before it one was broken by a recent revert.
- use xchdir() since all is invain if it fails there anyways, supposedly
------------------------------------------------------------------------
r15466 | aldot | 2006-06-21 20:55:16 +0200 (Wed, 21 Jun 2006) | 2 lines
- adjust docs to take CONFIG_BUSYBOX_EXEC_PATH into account.
------------------------------------------------------------------------
r15467 | aldot | 2006-06-21 21:31:24 +0200 (Wed, 21 Jun 2006) | 18 lines
- partial fallout of my TREE_USED touchup against gcc-4.2: rip unused vars, save
s 144 bytes
text data bss dec hex filename
862434 10156 645924 1518514 172bb2 busybox.old
862322 10156 645892 1518370 172b22 busybox
function old new delta
z_len 4 - -4
textend 4 - -4
part_nb 4 - -4
insize 4 - -4
ifile_size 4 - -4
do_link 4 - -4
new_text 70 60 -10
ipaddr_list_link 33 23 -10
gzip_main 898 822 -76
------------------------------------------------------------------------------
(add/remove: 0/6 grow/shrink: 0/3 up/down: 0/-120) Total: -120 bytes
------------------------------------------------------------------------
r15468 | aldot | 2006-06-21 21:43:05 +0200 (Wed, 21 Jun 2006) | 19 lines
- remove useless global exports
function old new delta
rpm_main 940 1601 +661
rpm_getstring 107 112 +5
rpm_getint 148 153 +5
loop_through_files 103 106 +3
fileaction_dobackup 115 113 -2
fileaction_list 5 - -5
rpm_getcount 42 - -42
extract_cpio_gz 161 - -161
rpm_gettags 504 - -504
------------------------------------------------------------------------------
(add/remove: 0/4 grow/shrink: 4/1 up/down: 674/-714) Total: -40 bytes
text data bss dec hex filename
862322 10156 645892 1518370 172b22 busybox.old
862290 10156 645892 1518338 172b02 busybox
------------------------------------------------------------------------
r15555 | aldot | 2006-06-30 14:10:11 +0200 (Fri, 30 Jun 2006) | 22 lines
- shrink syslog a little bit, move a big buffer (for 'line') off the bss, fold s
emaphore stuff into single caller manually.
stats:
function old new delta
logMessage 395 427 +32
message 1245 1257 +12
opts - 4 +4
small 1 - -1
local_logging 4 - -4
doRemoteLog 4 - -4
circular_logging 4 - -4
syslogd_main 1299 1285 -14
static.res 36 16 -20
.rodata 186650 186586 -64
static.line 1025 - -1025
------------------------------------------------------------------------------
(add/remove: 1/5 grow/shrink: 2/3 up/down: 48/-1136) Total: -1088 bytes
cow@s37:~/src/busybox_scratch$ size sysklogd/syslogd.o{.orig,}
text data bss dec hex filename
3723 348 5242 9313 2461 sysklogd/syslogd.o.orig
3697 348 4188 8233 2029 sysklogd/syslogd.o
==============================================================================
Overall bloatcheck for the changeset mentioned above:
function old new delta
rpm_main 953 1608 +655
logMessage 395 427 +32
message 1245 1257 +12
opts - 4 +4
rpm_getstring 107 110 +3
rpm_getint 148 151 +3
loop_through_files 103 104 +1
small 1 - -1
fileaction_dobackup 115 113 -2
z_len 4 - -4
textend 4 - -4
part_nb 4 - -4
local_logging 4 - -4
insize 4 - -4
ifile_size 4 - -4
do_link 4 - -4
doRemoteLog 4 - -4
circular_logging 4 - -4
fileaction_list 5 - -5
new_text 70 60 -10
ipaddr_list_link 33 23 -10
clear_bufs 31 21 -10
syslogd_main 1287 1273 -14
builtin_help 190 176 -14
static.res 36 16 -20
builtin_source 229 199 -30
rpm_getcount 42 - -42
gzip_main 842 786 -56
.rodata 227176 227112 -64
lash_main 609 527 -82
busy_loop 3883 3739 -144
extract_cpio_gz 155 - -155
rpm_gettags 501 - -501
static.line 1025 - -1025
------------------------------------------------------------------------------
(add/remove: 1/15 grow/shrink: 6/12 up/down: 710/-2221) Total: -1511 bytes
2006-08-20 23:05:13 +05:30
|
|
|
static void loop_through_files(int filetag, void (*fileaction)(char *filename, int fileref))
|
2002-12-10 05:47:22 +05:30
|
|
|
{
|
|
|
|
int count = 0;
|
2006-12-22 20:33:50 +05:30
|
|
|
while (rpm_getstr(filetag, count)) {
|
|
|
|
char* filename = xasprintf("%s%s",
|
|
|
|
rpm_getstr(TAG_DIRNAMES, rpm_getint(TAG_DIRINDEXES, count)),
|
|
|
|
rpm_getstr(TAG_BASENAMES, count));
|
2002-12-10 05:47:22 +05:30
|
|
|
fileaction(filename, count++);
|
|
|
|
free(filename);
|
|
|
|
}
|
|
|
|
}
|