xbps_unpack_binary_pkg: multiple fixes and improvements.
- Don't write any archive entry to disk unless the package metadata plist files are found. - Always check for the package metadata plist files in the first 4 entries, if they aren't found stop the unpacking... invalid archive. - Don't check for removing INSTALL/REMOVE scripts on each iteration when extracting, just check it once before the loop. - Add doxygen comments and related stuff. --HG-- extra : convert_revision : xtraeme%40gmail.com-20100122225639-wameh8ls94bkm68h
This commit is contained in:
parent
65f241a081
commit
4b0c08ebcf
140
lib/unpack.c
140
lib/unpack.c
@ -36,6 +36,21 @@
|
|||||||
* @file lib/unpack.c
|
* @file lib/unpack.c
|
||||||
* @brief Binary package file unpacking routines
|
* @brief Binary package file unpacking routines
|
||||||
* @defgroup unpack Binary package file unpacking functions
|
* @defgroup unpack Binary package file unpacking functions
|
||||||
|
*
|
||||||
|
* The following image shows a proplib dictionary returned in a transaction,
|
||||||
|
* by xbps_repository_get_transaction_dict():
|
||||||
|
*
|
||||||
|
* @image html images/xbps_transaction_dictionary.png
|
||||||
|
*
|
||||||
|
* Legend:
|
||||||
|
* - <b>Salmon bg box</b>: The transaction dictionary.
|
||||||
|
* - <b>White bg box</b>: mandatory objects.
|
||||||
|
* - <b>Grey bg box</b>: optional objects.
|
||||||
|
* - <b>Green bg box</b>: possible value set in the object, only one of them
|
||||||
|
* will be set.
|
||||||
|
*
|
||||||
|
* Text inside of white boxes are the key associated with the object, its
|
||||||
|
* data type is specified on its edge, i.e string, array, integer, dictionary.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@ -58,8 +73,8 @@ unpack_archive_fini(struct archive *ar, prop_dictionary_t pkg)
|
|||||||
prop_dictionary_t filesd = NULL, old_filesd = NULL;
|
prop_dictionary_t filesd = NULL, old_filesd = NULL;
|
||||||
struct archive_entry *entry;
|
struct archive_entry *entry;
|
||||||
size_t entry_idx = 0;
|
size_t entry_idx = 0;
|
||||||
const char *pkgname, *version, *rootdir, *entry_str;
|
const char *pkgname, *version, *rootdir, *entry_str, *transact;
|
||||||
char *buf, *buf2;
|
char *buf;
|
||||||
int rv = 0, flags, lflags;
|
int rv = 0, flags, lflags;
|
||||||
bool essential, preserve, actgt, skip_entry, update;
|
bool essential, preserve, actgt, skip_entry, update;
|
||||||
bool props_plist_found, files_plist_found;
|
bool props_plist_found, files_plist_found;
|
||||||
@ -88,26 +103,12 @@ unpack_archive_fini(struct archive *ar, prop_dictionary_t pkg)
|
|||||||
prop_dictionary_get_bool(pkg, "essential", &essential);
|
prop_dictionary_get_bool(pkg, "essential", &essential);
|
||||||
prop_dictionary_get_bool(pkg, "preserve", &preserve);
|
prop_dictionary_get_bool(pkg, "preserve", &preserve);
|
||||||
|
|
||||||
if (xbps_check_is_installed_pkgname(pkgname))
|
if (!prop_dictionary_get_cstring_nocopy(pkg, "trans-action",
|
||||||
|
&transact))
|
||||||
|
return errno;
|
||||||
|
if (strcmp(transact, "update") == 0)
|
||||||
update = true;
|
update = true;
|
||||||
|
|
||||||
/*
|
|
||||||
* Process the archive files.
|
|
||||||
*/
|
|
||||||
while (archive_read_next_header(ar, &entry) == ARCHIVE_OK) {
|
|
||||||
if (entry_idx >= 5) {
|
|
||||||
/*
|
|
||||||
* If we have processed 6 entries and the two
|
|
||||||
* required metadata files weren't found, bail out.
|
|
||||||
* This is not an XBPS binary package.
|
|
||||||
*/
|
|
||||||
if (!props_plist_found && !files_plist_found)
|
|
||||||
return ENOPKG;
|
|
||||||
}
|
|
||||||
|
|
||||||
entry_str = archive_entry_pathname(entry);
|
|
||||||
set_extract_flags(&lflags);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* While updating, always remove current INSTALL/REMOVE
|
* While updating, always remove current INSTALL/REMOVE
|
||||||
* scripts, because a package upgrade might not have those
|
* scripts, because a package upgrade might not have those
|
||||||
@ -125,7 +126,6 @@ unpack_archive_fini(struct archive *ar, prop_dictionary_t pkg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
free(buf);
|
free(buf);
|
||||||
buf = NULL;
|
|
||||||
buf = xbps_xasprintf(".%s/metadata/%s/REMOVE",
|
buf = xbps_xasprintf(".%s/metadata/%s/REMOVE",
|
||||||
XBPS_META_PATH, pkgname);
|
XBPS_META_PATH, pkgname);
|
||||||
if (buf == NULL)
|
if (buf == NULL)
|
||||||
@ -137,19 +137,22 @@ unpack_archive_fini(struct archive *ar, prop_dictionary_t pkg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
free(buf);
|
free(buf);
|
||||||
buf = NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Process the archive files.
|
||||||
|
*/
|
||||||
|
while (archive_read_next_header(ar, &entry) == ARCHIVE_OK) {
|
||||||
|
entry_str = archive_entry_pathname(entry);
|
||||||
|
set_extract_flags(&lflags);
|
||||||
/*
|
/*
|
||||||
* Now check what currenty entry in the archive contains.
|
* Now check what currenty entry in the archive contains.
|
||||||
*/
|
*/
|
||||||
if (((strcmp("./INSTALL", entry_str)) == 0) ||
|
if (((strcmp("./files.plist", entry_str)) == 0) ||
|
||||||
((strcmp("./REMOVE", entry_str)) == 0) ||
|
|
||||||
((strcmp("./files.plist", entry_str)) == 0) ||
|
|
||||||
((strcmp("./props.plist", entry_str)) == 0) || essential) {
|
((strcmp("./props.plist", entry_str)) == 0) || essential) {
|
||||||
/*
|
/*
|
||||||
* Always overwrite files in essential packages,
|
* Always overwrite files in essential packages,
|
||||||
* and metadata files.
|
* and plist metadata files.
|
||||||
*/
|
*/
|
||||||
lflags &= ~ARCHIVE_EXTRACT_NO_OVERWRITE;
|
lflags &= ~ARCHIVE_EXTRACT_NO_OVERWRITE;
|
||||||
lflags &= ~ARCHIVE_EXTRACT_NO_OVERWRITE_NEWER;
|
lflags &= ~ARCHIVE_EXTRACT_NO_OVERWRITE_NEWER;
|
||||||
@ -184,7 +187,7 @@ unpack_archive_fini(struct archive *ar, prop_dictionary_t pkg)
|
|||||||
pkgname, strerror(errno));
|
pkgname, strerror(errno));
|
||||||
return rv;
|
return rv;
|
||||||
}
|
}
|
||||||
/* pass to the next entry if successful */
|
/* Pass to the next entry if successful */
|
||||||
free(buf);
|
free(buf);
|
||||||
entry_idx++;
|
entry_idx++;
|
||||||
continue;
|
continue;
|
||||||
@ -193,15 +196,20 @@ unpack_archive_fini(struct archive *ar, prop_dictionary_t pkg)
|
|||||||
* Unpack metadata files in final directory.
|
* Unpack metadata files in final directory.
|
||||||
*/
|
*/
|
||||||
} else if (strcmp("./REMOVE", entry_str) == 0) {
|
} else if (strcmp("./REMOVE", entry_str) == 0) {
|
||||||
buf2 = xbps_xasprintf(".%s/metadata/%s/REMOVE",
|
buf = xbps_xasprintf(".%s/metadata/%s/REMOVE",
|
||||||
XBPS_META_PATH, pkgname);
|
XBPS_META_PATH, pkgname);
|
||||||
if (buf2 == NULL)
|
if (buf == NULL)
|
||||||
return errno;
|
return errno;
|
||||||
archive_entry_set_pathname(entry, buf2);
|
archive_entry_set_pathname(entry, buf);
|
||||||
|
free(buf);
|
||||||
archive_entry_set_mode(entry, 0750);
|
archive_entry_set_mode(entry, 0750);
|
||||||
|
if (archive_read_extract(ar, entry, lflags) != 0)
|
||||||
|
return archive_errno(ar);
|
||||||
|
|
||||||
|
/* Pass to next entry if successful */
|
||||||
|
entry_idx++;
|
||||||
|
continue;
|
||||||
|
|
||||||
free(buf2);
|
|
||||||
buf2 = NULL;
|
|
||||||
} else if (strcmp("./files.plist", entry_str) == 0) {
|
} else if (strcmp("./files.plist", entry_str) == 0) {
|
||||||
/*
|
/*
|
||||||
* Now we have a dictionary from the entry
|
* Now we have a dictionary from the entry
|
||||||
@ -218,13 +226,21 @@ unpack_archive_fini(struct archive *ar, prop_dictionary_t pkg)
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
} else if (strcmp("./props.plist", entry_str) == 0) {
|
} else if (strcmp("./props.plist", entry_str) == 0) {
|
||||||
buf2 = xbps_xasprintf(".%s/metadata/%s/props.plist",
|
buf = xbps_xasprintf(".%s/metadata/%s/props.plist",
|
||||||
XBPS_META_PATH, pkgname);
|
XBPS_META_PATH, pkgname);
|
||||||
if (buf2 == NULL)
|
if (buf == NULL)
|
||||||
return errno;
|
return errno;
|
||||||
archive_entry_set_pathname(entry, buf2);
|
archive_entry_set_pathname(entry, buf);
|
||||||
free(buf2);
|
free(buf);
|
||||||
|
|
||||||
|
if (archive_read_extract(ar, entry, lflags) != 0)
|
||||||
|
return archive_errno(ar);
|
||||||
|
|
||||||
|
/* Pass to next entry if successful */
|
||||||
props_plist_found = true;
|
props_plist_found = true;
|
||||||
|
entry_idx++;
|
||||||
|
continue;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
/*
|
/*
|
||||||
* Handle configuration files.
|
* Handle configuration files.
|
||||||
@ -242,6 +258,24 @@ unpack_archive_fini(struct archive *ar, prop_dictionary_t pkg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* If XBPS_PKGFILES or XBPS_PKGPROPS weren't found
|
||||||
|
* in the archive at this phase, skip all data.
|
||||||
|
*/
|
||||||
|
if (!files_plist_found || !props_plist_found) {
|
||||||
|
archive_read_data_skip(ar);
|
||||||
|
/*
|
||||||
|
* If we have processed 4 entries and the two
|
||||||
|
* required metadata files weren't found, bail out.
|
||||||
|
* This is not an XBPS binary package.
|
||||||
|
*/
|
||||||
|
if (entry_idx >= 3)
|
||||||
|
return ENOPKG;
|
||||||
|
|
||||||
|
entry_idx++;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Extract entry from archive.
|
* Extract entry from archive.
|
||||||
*/
|
*/
|
||||||
@ -259,19 +293,17 @@ unpack_archive_fini(struct archive *ar, prop_dictionary_t pkg)
|
|||||||
archive_entry_pathname(entry));
|
archive_entry_pathname(entry));
|
||||||
}
|
}
|
||||||
rv = 0;
|
rv = 0;
|
||||||
entry_idx++;
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
entry_idx++;
|
|
||||||
if (flags & XBPS_FLAG_VERBOSE)
|
if (flags & XBPS_FLAG_VERBOSE)
|
||||||
printf(" %s\n", archive_entry_pathname(entry));
|
printf(" %s\n", archive_entry_pathname(entry));
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((rv = archive_errno(ar)) == 0) {
|
if ((rv = archive_errno(ar)) == 0) {
|
||||||
buf2 = xbps_xasprintf(".%s/metadata/%s/files.plist",
|
buf = xbps_xasprintf(".%s/metadata/%s/files.plist",
|
||||||
XBPS_META_PATH, pkgname);
|
XBPS_META_PATH, pkgname);
|
||||||
if (buf2 == NULL) {
|
if (buf == NULL) {
|
||||||
prop_object_release(filesd);
|
prop_object_release(filesd);
|
||||||
return errno;
|
return errno;
|
||||||
}
|
}
|
||||||
@ -280,19 +312,19 @@ unpack_archive_fini(struct archive *ar, prop_dictionary_t pkg)
|
|||||||
* essential and NOT preserve, in that case we need to check
|
* essential and NOT preserve, in that case we need to check
|
||||||
* for obsolete files and remove them if necessary.
|
* for obsolete files and remove them if necessary.
|
||||||
*/
|
*/
|
||||||
if (!preserve && essential && (access(buf2, R_OK) == 0)) {
|
if (!preserve && essential && (access(buf, R_OK) == 0)) {
|
||||||
old_filesd =
|
old_filesd =
|
||||||
prop_dictionary_internalize_from_file(buf2);
|
prop_dictionary_internalize_from_file(buf);
|
||||||
if (old_filesd == NULL) {
|
if (old_filesd == NULL) {
|
||||||
prop_object_release(filesd);
|
prop_object_release(filesd);
|
||||||
free(buf2);
|
free(buf);
|
||||||
return errno;
|
return errno;
|
||||||
}
|
}
|
||||||
rv = xbps_remove_obsoletes(old_filesd, filesd);
|
rv = xbps_remove_obsoletes(old_filesd, filesd);
|
||||||
if (rv != 0) {
|
if (rv != 0) {
|
||||||
prop_object_release(old_filesd);
|
prop_object_release(old_filesd);
|
||||||
prop_object_release(filesd);
|
prop_object_release(filesd);
|
||||||
free(buf2);
|
free(buf);
|
||||||
return rv;
|
return rv;
|
||||||
}
|
}
|
||||||
prop_object_release(old_filesd);
|
prop_object_release(old_filesd);
|
||||||
@ -302,12 +334,12 @@ unpack_archive_fini(struct archive *ar, prop_dictionary_t pkg)
|
|||||||
* can safely externalize files.plist because the path
|
* can safely externalize files.plist because the path
|
||||||
* is reachable.
|
* is reachable.
|
||||||
*/
|
*/
|
||||||
if (!prop_dictionary_externalize_to_file(filesd, buf2)) {
|
if (!prop_dictionary_externalize_to_file(filesd, buf)) {
|
||||||
prop_object_release(filesd);
|
prop_object_release(filesd);
|
||||||
free(buf2);
|
free(buf);
|
||||||
return errno;
|
return errno;
|
||||||
}
|
}
|
||||||
free(buf2);
|
free(buf);
|
||||||
}
|
}
|
||||||
if (filesd)
|
if (filesd)
|
||||||
prop_object_release(filesd);
|
prop_object_release(filesd);
|
||||||
@ -354,21 +386,13 @@ xbps_unpack_binary_pkg(prop_dictionary_t pkg)
|
|||||||
ARCHIVE_READ_BLOCKSIZE)) != 0)
|
ARCHIVE_READ_BLOCKSIZE)) != 0)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
if ((rv = unpack_archive_fini(ar, pkg)) == 0) {
|
if ((rv = unpack_archive_fini(ar, pkg)) != 0)
|
||||||
/*
|
|
||||||
* If installation of package was successful, make sure
|
|
||||||
* its files are written in storage (if possible).
|
|
||||||
*/
|
|
||||||
if (fsync(pkg_fd) == -1) {
|
|
||||||
rv = errno;
|
|
||||||
goto out;
|
goto out;
|
||||||
}
|
|
||||||
/*
|
/*
|
||||||
* Set package state to unpacked.
|
* Set package state to unpacked.
|
||||||
*/
|
*/
|
||||||
rv = xbps_set_pkg_state_installed(pkgname,
|
rv = xbps_set_pkg_state_installed(pkgname, XBPS_PKG_STATE_UNPACKED);
|
||||||
XBPS_PKG_STATE_UNPACKED);
|
|
||||||
}
|
|
||||||
|
|
||||||
out:
|
out:
|
||||||
if (ar)
|
if (ar)
|
||||||
|
Loading…
Reference in New Issue
Block a user