2011-07-27 20:43:54 +05:30
|
|
|
/*-
|
2014-01-21 14:36:48 +05:30
|
|
|
* Copyright (c) 2009-2014 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 <unistd.h>
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
|
|
#include "xbps_api_impl.h"
|
|
|
|
|
2012-01-20 16:47:27 +05:30
|
|
|
/**
|
|
|
|
* @file lib/transaction_commit.c
|
|
|
|
* @brief Transaction handling routines
|
|
|
|
* @defgroup transaction Transaction handling functions
|
|
|
|
*
|
|
|
|
* The following image shows off the full transaction dictionary returned
|
|
|
|
* by xbps_transaction_prepare().
|
|
|
|
*
|
|
|
|
* @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.
|
|
|
|
*/
|
|
|
|
|
2011-07-27 20:43:54 +05:30
|
|
|
static int
|
2013-12-24 15:13:55 +05:30
|
|
|
check_binpkgs(struct xbps_handle *xhp, xbps_object_iterator_t iter)
|
2011-07-27 20:43:54 +05:30
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_t obj;
|
2013-12-24 15:13:55 +05:30
|
|
|
struct xbps_repo *repo;
|
|
|
|
const char *pkgver, *repoloc, *trans, *sha256;
|
|
|
|
char *binfile;
|
2011-07-27 20:43:54 +05:30
|
|
|
int rv = 0;
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
while ((obj = xbps_object_iterator_next(iter)) != NULL) {
|
|
|
|
xbps_dictionary_get_cstring_nocopy(obj, "transaction", &trans);
|
2011-07-27 20:43:54 +05:30
|
|
|
if ((strcmp(trans, "remove") == 0) ||
|
|
|
|
(strcmp(trans, "configure") == 0))
|
|
|
|
continue;
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_get_cstring_nocopy(obj, "repository", &repoloc);
|
|
|
|
xbps_dictionary_get_cstring_nocopy(obj, "pkgver", &pkgver);
|
2011-07-27 20:43:54 +05:30
|
|
|
|
2012-11-30 11:41:51 +05:30
|
|
|
binfile = xbps_repository_pkg_path(xhp, obj);
|
2011-07-27 20:43:54 +05:30
|
|
|
if (binfile == NULL) {
|
2013-12-24 15:13:55 +05:30
|
|
|
rv = ENOMEM;
|
2011-07-27 20:43:54 +05:30
|
|
|
break;
|
|
|
|
}
|
2013-12-24 15:13:55 +05:30
|
|
|
/*
|
|
|
|
* For pkgs in local repos check the sha256 hash.
|
|
|
|
* For pkgs in remote repos check the RSA signature.
|
|
|
|
*/
|
|
|
|
if ((repo = xbps_rpool_get_repo(repoloc)) == NULL) {
|
|
|
|
rv = errno;
|
|
|
|
xbps_dbg_printf(xhp, "%s: failed to get repository "
|
|
|
|
"%s: %s\n", pkgver, repoloc, strerror(errno));
|
2011-07-27 20:43:54 +05:30
|
|
|
break;
|
|
|
|
}
|
2013-12-24 15:13:55 +05:30
|
|
|
if (repo->is_remote) {
|
|
|
|
/* remote repo */
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_VERIFY, 0, pkgver,
|
|
|
|
"%s: verifying RSA signature...", pkgver);
|
|
|
|
|
|
|
|
if (!xbps_verify_file_signature(repo, binfile)) {
|
|
|
|
rv = EPERM;
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_VERIFY_FAIL, rv, pkgver,
|
|
|
|
"%s: the RSA signature is not valid!", pkgver);
|
|
|
|
free(binfile);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* local repo */
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_VERIFY, 0, pkgver,
|
|
|
|
"%s: verifying SHA256 hash...", pkgver);
|
|
|
|
xbps_dictionary_get_cstring_nocopy(obj, "filename-sha256", &sha256);
|
|
|
|
if ((rv = xbps_file_hash_check(binfile, sha256)) != 0) {
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_VERIFY_FAIL, rv, pkgver,
|
|
|
|
"%s: SHA256 hash is not valid!", pkgver, strerror(rv));
|
|
|
|
free(binfile);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2011-07-27 20:43:54 +05:30
|
|
|
free(binfile);
|
|
|
|
}
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_iterator_reset(iter);
|
2011-07-27 20:43:54 +05:30
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2013-06-20 13:56:12 +05:30
|
|
|
download_binpkgs(struct xbps_handle *xhp, xbps_object_iterator_t iter)
|
2011-07-27 20:43:54 +05:30
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_t obj;
|
2013-03-05 08:38:42 +05:30
|
|
|
const char *pkgver, *arch, *fetchstr, *repoloc, *trans;
|
2014-01-21 14:36:48 +05:30
|
|
|
char *file, *sigfile;
|
2011-07-27 20:43:54 +05:30
|
|
|
int rv = 0;
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
while ((obj = xbps_object_iterator_next(iter)) != NULL) {
|
|
|
|
xbps_dictionary_get_cstring_nocopy(obj, "transaction", &trans);
|
2011-07-27 20:43:54 +05:30
|
|
|
if ((strcmp(trans, "remove") == 0) ||
|
|
|
|
(strcmp(trans, "configure") == 0))
|
|
|
|
continue;
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_get_cstring_nocopy(obj, "repository", &repoloc);
|
2014-01-21 14:36:48 +05:30
|
|
|
if (!xbps_repository_is_remote(repoloc))
|
|
|
|
continue;
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_get_cstring_nocopy(obj, "pkgver", &pkgver);
|
2014-01-21 14:36:48 +05:30
|
|
|
xbps_dictionary_get_cstring_nocopy(obj, "architecture", &arch);
|
2011-07-27 20:43:54 +05:30
|
|
|
|
|
|
|
/*
|
2014-01-21 14:36:48 +05:30
|
|
|
* Download binary package.
|
2011-07-27 20:43:54 +05:30
|
|
|
*/
|
2014-01-21 14:36:48 +05:30
|
|
|
if ((file = xbps_repository_pkg_path(xhp, obj)) == NULL) {
|
|
|
|
rv = EINVAL;
|
2012-11-11 15:59:49 +05:30
|
|
|
break;
|
|
|
|
}
|
2014-01-21 14:36:48 +05:30
|
|
|
if (access(file, R_OK) == -1) {
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_DOWNLOAD, 0, pkgver,
|
|
|
|
"Downloading `%s' package (from `%s')...", pkgver, repoloc);
|
2014-02-23 12:45:32 +05:30
|
|
|
if ((rv = xbps_fetch_file(xhp, file, NULL)) == -1) {
|
2014-01-21 14:36:48 +05:30
|
|
|
fetchstr = xbps_fetch_error_string();
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_DOWNLOAD_FAIL,
|
|
|
|
fetchLastErrCode != 0 ? fetchLastErrCode : errno,
|
|
|
|
pkgver, "[trans] failed to download `%s' package from `%s': %s",
|
|
|
|
pkgver, repoloc, fetchstr ? fetchstr : strerror(errno));
|
|
|
|
free(file);
|
|
|
|
break;
|
|
|
|
}
|
2014-02-24 16:05:28 +05:30
|
|
|
rv = 0;
|
2014-01-21 14:36:48 +05:30
|
|
|
}
|
2013-12-24 15:13:55 +05:30
|
|
|
/*
|
2014-01-21 14:36:48 +05:30
|
|
|
* Download binary package signature.
|
2013-12-24 15:13:55 +05:30
|
|
|
*/
|
2014-01-21 14:36:48 +05:30
|
|
|
sigfile = xbps_xasprintf("%s.sig", file);
|
|
|
|
free(file);
|
2014-01-29 01:21:57 +05:30
|
|
|
file = NULL;
|
2014-01-21 14:36:48 +05:30
|
|
|
if (access(sigfile, R_OK) == -1) {
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_DOWNLOAD, 0, pkgver,
|
|
|
|
"Downloading `%s' signature (from `%s')...", pkgver, repoloc);
|
|
|
|
file = xbps_xasprintf("%s/%s.%s.xbps.sig", repoloc, pkgver, arch);
|
2014-02-23 12:45:32 +05:30
|
|
|
if ((rv = xbps_fetch_file(xhp, file, NULL)) == -1) {
|
2014-01-21 14:36:48 +05:30
|
|
|
fetchstr = xbps_fetch_error_string();
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_DOWNLOAD_FAIL,
|
|
|
|
fetchLastErrCode != 0 ? fetchLastErrCode : errno,
|
|
|
|
pkgver, "[trans] failed to download `%s' signature from `%s': %s",
|
|
|
|
pkgver, repoloc, fetchstr ? fetchstr : strerror(errno));
|
|
|
|
free(sigfile);
|
|
|
|
free(file);
|
|
|
|
break;
|
|
|
|
}
|
2014-02-24 16:05:28 +05:30
|
|
|
rv = 0;
|
2011-07-27 20:43:54 +05:30
|
|
|
}
|
2013-12-24 15:13:55 +05:30
|
|
|
free(sigfile);
|
2014-01-29 01:21:57 +05:30
|
|
|
if (file != NULL)
|
|
|
|
free(file);
|
2011-07-27 20:43:54 +05:30
|
|
|
}
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_iterator_reset(iter);
|
2011-07-27 20:43:54 +05:30
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_transaction_commit(struct xbps_handle *xhp)
|
2011-07-27 20:43:54 +05:30
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_t obj;
|
|
|
|
xbps_object_iterator_t iter;
|
2013-03-05 08:38:42 +05:30
|
|
|
const char *pkgver, *tract;
|
2011-07-27 20:43:54 +05:30
|
|
|
int rv = 0;
|
2013-12-24 15:13:55 +05:30
|
|
|
bool update;
|
2011-07-27 20:43:54 +05:30
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
assert(xbps_object_type(xhp->transd) == XBPS_TYPE_DICTIONARY);
|
2013-12-24 15:13:55 +05:30
|
|
|
/*
|
|
|
|
* Create cachedir if necessary.
|
|
|
|
*/
|
|
|
|
if (access(xhp->cachedir, R_OK|X_OK|W_OK) == -1) {
|
|
|
|
if (xbps_mkpath(xhp->cachedir, 0755) == -1) {
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_TRANS_FAIL,
|
|
|
|
errno, NULL,
|
|
|
|
"[trans] cannot create cachedir `%s': %s",
|
|
|
|
xhp->cachedir, strerror(errno));
|
|
|
|
return errno;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (chdir(xhp->cachedir) == -1) {
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_TRANS_FAIL,
|
|
|
|
errno, NULL,
|
|
|
|
"[trans] failed to change dir to cachedir `%s': %s",
|
|
|
|
xhp->cachedir, strerror(errno));
|
|
|
|
return errno;
|
|
|
|
}
|
2012-01-22 14:30:46 +05:30
|
|
|
iter = xbps_array_iter_from_dict(xhp->transd, "packages");
|
2011-07-27 20:43:54 +05:30
|
|
|
if (iter == NULL)
|
|
|
|
return EINVAL;
|
|
|
|
/*
|
|
|
|
* Download binary packages (if they come from a remote repository).
|
|
|
|
*/
|
2013-12-24 15:13:55 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_TRANS_DOWNLOAD, 0, NULL, NULL);
|
2014-03-14 01:19:54 +05:30
|
|
|
if ((rv = download_binpkgs(xhp, iter)) != 0) {
|
|
|
|
xbps_dbg_printf(xhp, "[trans] failed to download binpkgs: "
|
|
|
|
"%s\n", strerror(rv));
|
2011-07-27 20:43:54 +05:30
|
|
|
goto out;
|
2014-03-14 01:19:54 +05:30
|
|
|
}
|
2011-07-27 20:43:54 +05:30
|
|
|
/*
|
2013-12-24 15:13:55 +05:30
|
|
|
* Check binary package integrity.
|
2011-07-27 20:43:54 +05:30
|
|
|
*/
|
2013-03-05 08:38:42 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_TRANS_VERIFY, 0, NULL, NULL);
|
2014-03-14 01:19:54 +05:30
|
|
|
if ((rv = check_binpkgs(xhp, iter)) != 0) {
|
|
|
|
xbps_dbg_printf(xhp, "[trans] failed to check binpkgs: "
|
|
|
|
"%s\n", strerror(rv));
|
2011-07-27 20:43:54 +05:30
|
|
|
goto out;
|
2014-03-14 01:19:54 +05:30
|
|
|
}
|
2011-07-27 20:43:54 +05:30
|
|
|
/*
|
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
|
|
|
*/
|
2013-03-05 08:38:42 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_TRANS_RUN, 0, NULL, NULL);
|
2011-07-27 20:43:54 +05:30
|
|
|
|
2014-05-27 13:32:01 +05:30
|
|
|
/*
|
|
|
|
* Create rootdir if necessary.
|
|
|
|
*/
|
|
|
|
if (access(xhp->rootdir, R_OK) == -1) {
|
|
|
|
if (errno != ENOENT) {
|
|
|
|
rv = errno;
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_TRANS_FAIL, errno, xhp->rootdir,
|
|
|
|
"[trans] failed to access rootdir `%s': %s",
|
|
|
|
xhp->rootdir, strerror(rv));
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (xbps_mkpath(xhp->rootdir, 0750) == -1) {
|
|
|
|
rv = errno;
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_TRANS_FAIL, errno, xhp->rootdir,
|
|
|
|
"[trans] failed to create rootdir `%s': %s",
|
|
|
|
xhp->rootdir, strerror(rv));
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (chdir(xhp->rootdir) == -1) {
|
|
|
|
rv = errno;
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_UNPACK_FAIL, rv, xhp->rootdir,
|
|
|
|
"[trans] failed to chdir to rootdir `%s': %s",
|
|
|
|
xhp->rootdir, strerror(errno));
|
|
|
|
goto out;
|
|
|
|
}
|
2013-06-20 13:56:12 +05:30
|
|
|
while ((obj = xbps_object_iterator_next(iter)) != NULL) {
|
|
|
|
xbps_dictionary_get_cstring_nocopy(obj, "transaction", &tract);
|
|
|
|
xbps_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
|
|
|
* Remove package.
|
2011-10-19 19:55:49 +05:30
|
|
|
*/
|
2014-01-03 16:05:20 +05:30
|
|
|
update = false;
|
2013-12-24 15:13:55 +05:30
|
|
|
xbps_dictionary_get_bool(obj, "remove-and-update", &update);
|
2013-12-25 15:42:52 +05:30
|
|
|
rv = xbps_remove_pkg(xhp, pkgver, update);
|
2012-11-19 19:08:06 +05:30
|
|
|
if (rv != 0) {
|
|
|
|
xbps_dbg_printf(xhp, "[trans] failed to "
|
2014-03-14 01:05:26 +05:30
|
|
|
"remove %s: %s\n", pkgver, strerror(rv));
|
2011-07-27 20:43:54 +05:30
|
|
|
goto out;
|
2012-11-19 19:08:06 +05:30
|
|
|
}
|
2013-12-24 15:13:55 +05:30
|
|
|
continue;
|
|
|
|
|
2011-10-19 19:55:49 +05:30
|
|
|
} else if (strcmp(tract, "configure") == 0) {
|
|
|
|
/*
|
|
|
|
* Reconfigure pending package.
|
|
|
|
*/
|
2014-03-04 19:07:10 +05:30
|
|
|
rv = xbps_configure_pkg(xhp, pkgver, false, false);
|
2014-03-14 01:05:26 +05:30
|
|
|
if (rv != 0) {
|
|
|
|
xbps_dbg_printf(xhp, "[trans] failed to "
|
|
|
|
"configure %s: %s\n", pkgver, strerror(rv));
|
2011-07-27 20:43:54 +05:30
|
|
|
goto out;
|
2014-03-14 01:05:26 +05:30
|
|
|
}
|
2013-12-24 15:13:55 +05:30
|
|
|
continue;
|
|
|
|
|
|
|
|
} else if (strcmp(tract, "update") == 0) {
|
2011-10-19 19:55:49 +05:30
|
|
|
/*
|
2013-12-24 15:13:55 +05:30
|
|
|
* Update a package: execute pre-remove action of
|
|
|
|
* existing package before unpacking new version.
|
2011-10-19 19:55:49 +05:30
|
|
|
*/
|
2013-12-25 15:42:52 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_UPDATE, 0, pkgver, NULL);
|
|
|
|
rv = xbps_remove_pkg(xhp, pkgver, true);
|
|
|
|
if (rv != 0) {
|
|
|
|
xbps_set_cb_state(xhp,
|
|
|
|
XBPS_STATE_UPDATE_FAIL,
|
|
|
|
rv, pkgver,
|
|
|
|
"%s: [trans] failed to update "
|
|
|
|
"package `%s'", pkgver,
|
|
|
|
strerror(rv));
|
|
|
|
goto out;
|
2011-10-19 19:55:49 +05:30
|
|
|
}
|
2013-12-24 15:13:55 +05:30
|
|
|
} else {
|
|
|
|
/* Install a package */
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_INSTALL, 0,
|
|
|
|
pkgver, NULL);
|
2011-07-27 20:43:54 +05:30
|
|
|
}
|
2013-12-24 15:13:55 +05:30
|
|
|
/*
|
|
|
|
* Unpack binary package.
|
|
|
|
*/
|
2014-03-14 01:19:54 +05:30
|
|
|
if ((rv = xbps_unpack_binary_pkg(xhp, obj)) != 0) {
|
|
|
|
xbps_dbg_printf(xhp, "[trans] failed to unpack "
|
|
|
|
"%s: %s\n", pkgver, strerror(rv));
|
2013-12-24 15:13:55 +05:30
|
|
|
goto out;
|
2014-03-14 01:19:54 +05:30
|
|
|
}
|
2013-12-24 15:13:55 +05:30
|
|
|
/*
|
|
|
|
* Register package.
|
|
|
|
*/
|
2014-03-14 01:19:54 +05:30
|
|
|
if ((rv = xbps_register_pkg(xhp, obj)) != 0) {
|
|
|
|
xbps_dbg_printf(xhp, "[trans] failed to register "
|
|
|
|
"%s: %s\n", pkgver, strerror(rv));
|
2013-12-24 15:13:55 +05:30
|
|
|
goto out;
|
2014-03-14 01:19:54 +05:30
|
|
|
}
|
2011-07-27 20:43:54 +05:30
|
|
|
}
|
2011-11-25 15:50:03 +05:30
|
|
|
/* if there are no packages to install or update we are done */
|
2013-12-24 15:13:55 +05:30
|
|
|
if (!xbps_dictionary_get(xhp->transd, "total-update-pkgs") &&
|
|
|
|
!xbps_dictionary_get(xhp->transd, "total-install-pkgs"))
|
2011-11-25 15:50:03 +05:30
|
|
|
goto out;
|
2012-11-30 11:41:51 +05:30
|
|
|
|
2013-03-07 22:38:12 +05:30
|
|
|
/* if installing packages for target_arch, don't configure anything */
|
|
|
|
if (xhp->target_arch && strcmp(xhp->native_arch, xhp->target_arch))
|
|
|
|
goto out;
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_iterator_reset(iter);
|
2014-03-04 19:07:10 +05:30
|
|
|
/* Force a pkgdb write for all unpacked pkgs in transaction */
|
|
|
|
(void)xbps_pkgdb_update(xhp, true);
|
2013-03-07 22:38:12 +05:30
|
|
|
|
2011-07-27 20:43:54 +05:30
|
|
|
/*
|
|
|
|
* Configure all unpacked packages.
|
|
|
|
*/
|
2013-03-05 08:38:42 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_TRANS_CONFIGURE, 0, NULL, NULL);
|
2011-07-27 20:43:54 +05:30
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
while ((obj = xbps_object_iterator_next(iter)) != NULL) {
|
|
|
|
xbps_dictionary_get_cstring_nocopy(obj, "transaction", &tract);
|
2011-07-27 20:43:54 +05:30
|
|
|
if ((strcmp(tract, "remove") == 0) ||
|
|
|
|
(strcmp(tract, "configure") == 0))
|
|
|
|
continue;
|
2011-12-24 05:35:26 +05:30
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_get_cstring_nocopy(obj, "pkgver", &pkgver);
|
2011-07-27 20:43:54 +05:30
|
|
|
update = false;
|
|
|
|
if (strcmp(tract, "update") == 0)
|
|
|
|
update = true;
|
|
|
|
|
2014-03-04 19:07:10 +05:30
|
|
|
rv = xbps_configure_pkg(xhp, pkgver, false, update);
|
2012-11-30 11:41:51 +05:30
|
|
|
if (rv != 0) {
|
|
|
|
xbps_dbg_printf(xhp, "%s: configure failed for "
|
2013-08-29 19:19:23 +05:30
|
|
|
"%s: %s\n", __func__, pkgver, strerror(rv));
|
2011-07-27 20:43:54 +05:30
|
|
|
goto out;
|
2012-11-30 11:41:51 +05:30
|
|
|
}
|
2011-11-25 14:14:49 +05:30
|
|
|
/*
|
|
|
|
* Notify client callback when a package has been
|
|
|
|
* installed or updated.
|
|
|
|
*/
|
|
|
|
if (update) {
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_UPDATE_DONE, 0,
|
2013-03-05 08:38:42 +05:30
|
|
|
pkgver, NULL);
|
2011-11-25 14:14:49 +05:30
|
|
|
} else {
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_INSTALL_DONE, 0,
|
2013-03-05 08:38:42 +05:30
|
|
|
pkgver, NULL);
|
2011-11-25 14:14:49 +05:30
|
|
|
}
|
2011-07-27 20:43:54 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_iterator_release(iter);
|
2014-03-04 19:07:10 +05:30
|
|
|
/* Force a pkgdb write for all unpacked pkgs in transaction */
|
|
|
|
(void)xbps_pkgdb_update(xhp, true);
|
2011-07-27 20:43:54 +05:30
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|