diff options
author | Denis Vlasenko | 2008-10-16 13:29:13 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-10-16 13:29:13 +0000 |
commit | aa9eb1fc6718aec0a6a67b2dc748c3416056411e (patch) | |
tree | ec0b7ed85bac6805f10f7a9b2bcfcf7d479e786e | |
parent | 8ef801b40ce0be20ae55676d560d4040c5f1edf0 (diff) | |
download | busybox-aa9eb1fc6718aec0a6a67b2dc748c3416056411e.zip busybox-aa9eb1fc6718aec0a6a67b2dc748c3416056411e.tar.gz |
rpm: fix incompatibilities which prevented rpm -i foo.src.rpm
function old new delta
fileaction_setowngrp 57 89 +32
-rw-r--r-- | archival/rpm.c | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/archival/rpm.c b/archival/rpm.c index e1f3c89..7856868 100644 --- a/archival/rpm.c +++ b/archival/rpm.c @@ -202,7 +202,12 @@ static void extract_cpio_gz(int fd) archive_handle->seek = seek_by_read; //archive_handle->action_header = header_list; archive_handle->action_data = data_extract_all; - archive_handle->ah_flags = ARCHIVE_PRESERVE_DATE | ARCHIVE_CREATE_LEADING_DIRS; + 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; archive_handle->src_fd = fd; /*archive_handle->offset = 0; - init_handle() did it */ @@ -378,9 +383,11 @@ static void fileaction_dobackup(char *filename, int fileref) static void fileaction_setowngrp(char *filename, int fileref) { - int uid, gid; - uid = xuname2uid(rpm_getstr(TAG_FILEUSERNAME, fileref)); - gid = xgroup2gid(rpm_getstr(TAG_FILEGROUPNAME, fileref)); + /* 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(); chown(filename, uid, gid); } |