2011-07-27 20:43:54 +05:30
|
|
|
/*-
|
2012-01-04 22:26:52 +05:30
|
|
|
* Copyright (c) 2009-2012 Juan Romero Pardines.
|
2011-07-27 20:43:54 +05:30
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
|
|
#include "xbps_api_impl.h"
|
|
|
|
|
|
|
|
static int
|
2011-11-24 15:53:08 +05:30
|
|
|
check_binpkgs_hash(prop_object_iterator_t iter)
|
2011-07-27 20:43:54 +05:30
|
|
|
{
|
|
|
|
prop_object_t obj;
|
2011-11-11 14:11:48 +05:30
|
|
|
const char *pkgver, *repoloc, *filen, *sha256, *trans;
|
2011-11-24 15:53:08 +05:30
|
|
|
const char *pkgname, *version;
|
2011-07-27 20:43:54 +05:30
|
|
|
char *binfile;
|
|
|
|
int rv = 0;
|
|
|
|
|
|
|
|
while ((obj = prop_object_iterator_next(iter)) != NULL) {
|
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "transaction", &trans);
|
|
|
|
if ((strcmp(trans, "remove") == 0) ||
|
|
|
|
(strcmp(trans, "configure") == 0))
|
|
|
|
continue;
|
|
|
|
|
2011-11-24 15:53:08 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "pkgname", &pkgname);
|
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "version", &version);
|
2011-07-27 20:43:54 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "repository", &repoloc);
|
|
|
|
assert(repoloc != NULL);
|
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "pkgver", &pkgver);
|
|
|
|
assert(pkgver != NULL);
|
2011-11-11 14:11:48 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "filename", &filen);
|
|
|
|
assert(filen != NULL);
|
2011-07-27 20:43:54 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj,
|
|
|
|
"filename-sha256", &sha256);
|
|
|
|
assert(sha256 != NULL);
|
|
|
|
|
|
|
|
binfile = xbps_path_from_repository_uri(obj, repoloc);
|
|
|
|
if (binfile == NULL) {
|
|
|
|
rv = EINVAL;
|
|
|
|
break;
|
|
|
|
}
|
2011-11-24 15:53:08 +05:30
|
|
|
xbps_set_cb_state(XBPS_STATE_VERIFY, 0, pkgname, version,
|
|
|
|
"Verifying `%s' package integrity...", filen, repoloc);
|
2011-07-27 20:43:54 +05:30
|
|
|
rv = xbps_file_hash_check(binfile, sha256);
|
|
|
|
if (rv != 0) {
|
|
|
|
free(binfile);
|
2011-11-24 15:53:08 +05:30
|
|
|
xbps_set_cb_state(XBPS_STATE_VERIFY_FAIL,
|
|
|
|
rv, pkgname, version,
|
|
|
|
"Failed to verify `%s' package integrity: %s",
|
|
|
|
filen, strerror(rv));
|
2011-07-27 20:43:54 +05:30
|
|
|
break;
|
|
|
|
}
|
|
|
|
free(binfile);
|
|
|
|
}
|
|
|
|
prop_object_iterator_reset(iter);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
download_binpkgs(struct xbps_handle *xhp, prop_object_iterator_t iter)
|
|
|
|
{
|
|
|
|
prop_object_t obj;
|
2011-11-11 14:11:48 +05:30
|
|
|
const char *pkgver, *repoloc, *filen, *trans;
|
2011-11-24 15:53:08 +05:30
|
|
|
const char *pkgname, *version;
|
2011-07-27 20:43:54 +05:30
|
|
|
char *binfile;
|
|
|
|
int rv = 0;
|
|
|
|
|
|
|
|
while ((obj = prop_object_iterator_next(iter)) != NULL) {
|
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "transaction", &trans);
|
|
|
|
if ((strcmp(trans, "remove") == 0) ||
|
|
|
|
(strcmp(trans, "configure") == 0))
|
|
|
|
continue;
|
|
|
|
|
2011-11-24 15:53:08 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "pkgname", &pkgname);
|
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "version", &version);
|
2011-07-27 20:43:54 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "repository", &repoloc);
|
|
|
|
assert(repoloc != NULL);
|
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "pkgver", &pkgver);
|
|
|
|
assert(pkgver != NULL);
|
2011-11-11 14:11:48 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "filename", &filen);
|
|
|
|
assert(filen != NULL);
|
2011-07-27 20:43:54 +05:30
|
|
|
|
|
|
|
binfile = xbps_path_from_repository_uri(obj, repoloc);
|
|
|
|
if (binfile == NULL) {
|
|
|
|
rv = EINVAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* If downloaded package is in cachedir continue.
|
|
|
|
*/
|
|
|
|
if (access(binfile, R_OK) == 0) {
|
|
|
|
free(binfile);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Create cachedir.
|
|
|
|
*/
|
2011-12-15 15:49:20 +05:30
|
|
|
if (xbps_mkpath(xhp->cachedir, 0755) == -1) {
|
2011-11-24 15:53:08 +05:30
|
|
|
xbps_set_cb_state(XBPS_STATE_DOWNLOAD_FAIL,
|
|
|
|
errno, pkgname, version,
|
|
|
|
"%s: [trans] cannot create cachedir `%s': %s",
|
2011-12-15 15:49:20 +05:30
|
|
|
pkgver, xhp->cachedir, strerror(errno));
|
2011-07-27 20:43:54 +05:30
|
|
|
free(binfile);
|
|
|
|
rv = errno;
|
|
|
|
break;
|
|
|
|
}
|
2011-11-24 15:53:08 +05:30
|
|
|
xbps_set_cb_state(XBPS_STATE_DOWNLOAD,
|
|
|
|
0, pkgname, version,
|
|
|
|
"Downloading binary package `%s' (from `%s')...",
|
|
|
|
filen, repoloc);
|
2011-07-27 20:43:54 +05:30
|
|
|
/*
|
|
|
|
* Fetch binary package.
|
|
|
|
*/
|
2011-12-15 15:49:20 +05:30
|
|
|
rv = xbps_fetch_file(binfile, xhp->cachedir, false, NULL);
|
2011-07-27 20:43:54 +05:30
|
|
|
if (rv == -1) {
|
2011-11-24 15:53:08 +05:30
|
|
|
xbps_set_cb_state(XBPS_STATE_DOWNLOAD_FAIL,
|
|
|
|
errno, pkgname, version,
|
|
|
|
"%s: [trans] failed to download binary package "
|
|
|
|
"`%s' from `%s': %s", pkgver, filen, repoloc,
|
|
|
|
strerror(errno));
|
2011-07-27 20:43:54 +05:30
|
|
|
free(binfile);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
rv = 0;
|
|
|
|
free(binfile);
|
|
|
|
}
|
|
|
|
prop_object_iterator_reset(iter);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
xbps_transaction_commit(prop_dictionary_t transd)
|
|
|
|
{
|
|
|
|
struct xbps_handle *xhp;
|
|
|
|
prop_object_t obj;
|
|
|
|
prop_object_iterator_t iter;
|
2011-12-24 05:35:26 +05:30
|
|
|
size_t i;
|
2011-11-25 14:14:49 +05:30
|
|
|
const char *pkgname, *version, *pkgver, *tract;
|
2011-07-27 20:43:54 +05:30
|
|
|
int rv = 0;
|
2011-12-24 05:35:26 +05:30
|
|
|
bool update, install;
|
2011-07-27 20:43:54 +05:30
|
|
|
|
2011-10-19 19:55:49 +05:30
|
|
|
assert(prop_object_type(transd) == PROP_TYPE_DICTIONARY);
|
2011-07-27 20:43:54 +05:30
|
|
|
|
2011-12-24 05:35:26 +05:30
|
|
|
update = install = false;
|
2011-07-27 20:43:54 +05:30
|
|
|
xhp = xbps_handle_get();
|
|
|
|
iter = xbps_array_iter_from_dict(transd, "packages");
|
|
|
|
if (iter == NULL)
|
|
|
|
return EINVAL;
|
|
|
|
/*
|
|
|
|
* Download binary packages (if they come from a remote repository).
|
|
|
|
*/
|
2011-11-25 14:14:49 +05:30
|
|
|
xbps_set_cb_state(XBPS_STATE_TRANS_DOWNLOAD, 0, NULL, NULL, NULL);
|
2011-07-27 20:43:54 +05:30
|
|
|
if ((rv = download_binpkgs(xhp, iter)) != 0)
|
|
|
|
goto out;
|
|
|
|
/*
|
|
|
|
* Check SHA256 hashes for binary packages in transaction.
|
|
|
|
*/
|
2011-11-25 14:14:49 +05:30
|
|
|
xbps_set_cb_state(XBPS_STATE_TRANS_VERIFY, 0, NULL, NULL, NULL);
|
2011-11-24 15:53:08 +05:30
|
|
|
if ((rv = check_binpkgs_hash(iter)) != 0)
|
2011-07-27 20:43:54 +05:30
|
|
|
goto out;
|
|
|
|
/*
|
2011-10-19 19:55:49 +05:30
|
|
|
* Install, update, configure or remove packages as specified
|
|
|
|
* in the transaction dictionary.
|
2011-07-27 20:43:54 +05:30
|
|
|
*/
|
2011-11-25 14:14:49 +05:30
|
|
|
xbps_set_cb_state(XBPS_STATE_TRANS_RUN, 0, NULL, NULL, NULL);
|
2011-07-27 20:43:54 +05:30
|
|
|
|
2011-12-24 05:35:26 +05:30
|
|
|
i = 0;
|
2011-10-19 19:55:49 +05:30
|
|
|
while ((obj = prop_object_iterator_next(iter)) != NULL) {
|
2011-12-24 05:35:26 +05:30
|
|
|
if ((xhp->transaction_frequency_flush > 0) &&
|
|
|
|
(++i >= xhp->transaction_frequency_flush)) {
|
2012-01-20 15:40:52 +05:30
|
|
|
rv = xbps_pkgdb_update(xhp, true);
|
2011-12-24 05:35:26 +05:30
|
|
|
if (rv != 0 && rv != ENOENT)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
}
|
2011-10-20 18:09:58 +05:30
|
|
|
update = false;
|
2011-10-19 19:55:49 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "transaction", &tract);
|
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "pkgname", &pkgname);
|
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "version", &version);
|
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "pkgver", &pkgver);
|
2011-07-27 20:43:54 +05:30
|
|
|
|
2011-10-19 19:55:49 +05:30
|
|
|
if (strcmp(tract, "remove") == 0) {
|
2011-12-24 05:35:26 +05:30
|
|
|
update = false;
|
2011-10-19 19:55:49 +05:30
|
|
|
/*
|
2011-12-24 05:35:26 +05:30
|
|
|
* Remove package.
|
2011-10-19 19:55:49 +05:30
|
|
|
*/
|
2011-07-27 20:43:54 +05:30
|
|
|
prop_dictionary_get_bool(obj, "remove-and-update",
|
|
|
|
&update);
|
|
|
|
rv = xbps_remove_pkg(pkgname, version, update);
|
2011-11-24 15:53:08 +05:30
|
|
|
if (rv != 0)
|
2011-07-27 20:43:54 +05:30
|
|
|
goto out;
|
2011-10-19 19:55:49 +05:30
|
|
|
} else if (strcmp(tract, "configure") == 0) {
|
|
|
|
/*
|
|
|
|
* Reconfigure pending package.
|
|
|
|
*/
|
2012-01-04 22:11:36 +05:30
|
|
|
rv = xbps_configure_pkg(pkgname, version,
|
|
|
|
false, false, false);
|
2011-11-24 15:53:08 +05:30
|
|
|
if (rv != 0)
|
2011-07-27 20:43:54 +05:30
|
|
|
goto out;
|
2011-10-19 19:55:49 +05:30
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Install or update a package.
|
|
|
|
*/
|
|
|
|
if (strcmp(tract, "update") == 0)
|
|
|
|
update = true;
|
2011-11-25 15:50:03 +05:30
|
|
|
else
|
|
|
|
install = true;
|
2011-10-19 19:55:49 +05:30
|
|
|
|
|
|
|
if (update) {
|
|
|
|
/*
|
|
|
|
* Update a package: execute pre-remove
|
|
|
|
* action if found before unpacking.
|
|
|
|
*/
|
2011-11-25 14:14:49 +05:30
|
|
|
xbps_set_cb_state(XBPS_STATE_UPDATE, 0,
|
|
|
|
pkgname, version, NULL);
|
2011-10-19 19:55:49 +05:30
|
|
|
rv = xbps_remove_pkg(pkgname, version, true);
|
|
|
|
if (rv != 0) {
|
2011-11-24 15:53:08 +05:30
|
|
|
xbps_set_cb_state(
|
|
|
|
XBPS_STATE_UPDATE_FAIL,
|
|
|
|
rv, pkgname, version,
|
|
|
|
"%s: [trans] failed to update "
|
|
|
|
"package to `%s': %s", pkgver,
|
|
|
|
version, strerror(rv));
|
2011-10-19 19:55:49 +05:30
|
|
|
goto out;
|
|
|
|
}
|
2011-11-24 15:53:08 +05:30
|
|
|
} else {
|
|
|
|
/* Install a package */
|
2011-11-25 14:14:49 +05:30
|
|
|
xbps_set_cb_state(XBPS_STATE_INSTALL, 0,
|
|
|
|
pkgname, version, NULL);
|
2011-10-19 19:55:49 +05:30
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Unpack binary package.
|
|
|
|
*/
|
2011-11-24 15:53:08 +05:30
|
|
|
if ((rv = xbps_unpack_binary_pkg(obj)) != 0)
|
2011-10-19 19:55:49 +05:30
|
|
|
goto out;
|
|
|
|
/*
|
|
|
|
* Register package.
|
|
|
|
*/
|
2011-12-28 10:27:04 +05:30
|
|
|
if ((rv = xbps_register_pkg(obj, false)) != 0)
|
2011-07-27 20:43:54 +05:30
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
prop_object_iterator_reset(iter);
|
2011-11-25 15:50:03 +05:30
|
|
|
|
2011-12-24 05:35:26 +05:30
|
|
|
/* force a flush now packages were removed/unpacked */
|
2012-01-20 15:40:52 +05:30
|
|
|
if ((rv = xbps_pkgdb_update(xhp, true)) != 0)
|
2011-12-24 05:35:26 +05:30
|
|
|
goto out;
|
|
|
|
|
2011-11-25 15:50:03 +05:30
|
|
|
/* if there are no packages to install or update we are done */
|
|
|
|
if (!update && !install)
|
|
|
|
goto out;
|
2011-07-27 20:43:54 +05:30
|
|
|
/*
|
|
|
|
* Configure all unpacked packages.
|
|
|
|
*/
|
2011-11-25 14:14:49 +05:30
|
|
|
xbps_set_cb_state(XBPS_STATE_TRANS_CONFIGURE, 0, NULL, NULL, NULL);
|
2011-07-27 20:43:54 +05:30
|
|
|
|
2011-12-24 05:35:26 +05:30
|
|
|
i = 0;
|
2011-07-27 20:43:54 +05:30
|
|
|
while ((obj = prop_object_iterator_next(iter)) != NULL) {
|
2011-12-24 05:35:26 +05:30
|
|
|
if (xhp->transaction_frequency_flush > 0 &&
|
|
|
|
++i >= xhp->transaction_frequency_flush) {
|
2012-01-20 15:40:52 +05:30
|
|
|
if ((rv = xbps_pkgdb_update(xhp, true)) != 0)
|
2011-12-24 05:35:26 +05:30
|
|
|
goto out;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
|
2011-07-27 20:43:54 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "transaction", &tract);
|
|
|
|
if ((strcmp(tract, "remove") == 0) ||
|
|
|
|
(strcmp(tract, "configure") == 0))
|
|
|
|
continue;
|
2011-12-24 05:35:26 +05:30
|
|
|
|
2011-07-27 20:43:54 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "pkgname", &pkgname);
|
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "version", &version);
|
|
|
|
update = false;
|
|
|
|
if (strcmp(tract, "update") == 0)
|
|
|
|
update = true;
|
|
|
|
|
2012-01-04 22:11:36 +05:30
|
|
|
rv = xbps_configure_pkg(pkgname, version, false, update, false);
|
2011-11-24 15:53:08 +05:30
|
|
|
if (rv != 0)
|
2011-07-27 20:43:54 +05:30
|
|
|
goto out;
|
2011-11-25 14:14:49 +05:30
|
|
|
/*
|
|
|
|
* Notify client callback when a package has been
|
|
|
|
* installed or updated.
|
|
|
|
*/
|
|
|
|
if (update) {
|
|
|
|
xbps_set_cb_state(XBPS_STATE_UPDATE_DONE, 0,
|
|
|
|
pkgname, version, NULL);
|
|
|
|
} else {
|
|
|
|
xbps_set_cb_state(XBPS_STATE_INSTALL_DONE, 0,
|
|
|
|
pkgname, version, NULL);
|
|
|
|
}
|
2011-07-27 20:43:54 +05:30
|
|
|
}
|
|
|
|
|
2011-12-24 05:35:26 +05:30
|
|
|
/* Force a flush now that packages are configured */
|
2012-01-20 15:40:52 +05:30
|
|
|
rv = xbps_pkgdb_update(xhp, true);
|
2011-07-27 20:43:54 +05:30
|
|
|
out:
|
|
|
|
prop_object_iterator_release(iter);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|