2011-01-24 21:25:58 +05:30
|
|
|
/*-
|
2014-07-13 13:26:06 +05:30
|
|
|
* Copyright (c) 2009-2014 Juan Romero Pardines.
|
2011-01-24 21:25:58 +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>
|
2014-07-13 15:15:04 +05:30
|
|
|
#include <sys/statvfs.h>
|
2011-01-24 21:25:58 +05:30
|
|
|
|
|
|
|
#include "xbps_api_impl.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file lib/transaction_dictionary.c
|
|
|
|
* @brief Transaction handling routines
|
2012-01-20 16:47:27 +05:30
|
|
|
* @defgroup transaction Transaction handling functions
|
2011-01-24 21:25:58 +05:30
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int
|
2012-06-14 11:52:11 +05:30
|
|
|
compute_transaction_stats(struct xbps_handle *xhp)
|
2011-01-24 21:25:58 +05:30
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t pkg_metad;
|
|
|
|
xbps_object_iterator_t iter;
|
|
|
|
xbps_object_t obj;
|
2014-07-13 15:15:04 +05:30
|
|
|
struct statvfs svfs;
|
2014-07-18 16:14:32 +05:30
|
|
|
uint64_t rootdir_free_size, tsize, dlsize, instsize, rmsize;
|
2014-07-14 13:00:28 +05:30
|
|
|
uint32_t inst_pkgcnt, up_pkgcnt, cf_pkgcnt, rm_pkgcnt, dl_pkgcnt;
|
2013-03-05 08:38:42 +05:30
|
|
|
const char *tract, *pkgver, *repo;
|
2011-01-24 21:25:58 +05:30
|
|
|
|
2014-07-14 13:00:28 +05:30
|
|
|
inst_pkgcnt = up_pkgcnt = cf_pkgcnt = rm_pkgcnt = dl_pkgcnt = 0;
|
2014-07-18 16:14:32 +05:30
|
|
|
rootdir_free_size = tsize = dlsize = instsize = rmsize = 0;
|
2011-07-24 21:13:17 +05:30
|
|
|
|
2012-06-14 11:52:11 +05:30
|
|
|
iter = xbps_array_iter_from_dict(xhp->transd, "packages");
|
2011-01-24 21:25:58 +05:30
|
|
|
if (iter == NULL)
|
|
|
|
return EINVAL;
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
while ((obj = xbps_object_iterator_next(iter)) != NULL) {
|
2014-07-13 13:26:06 +05:30
|
|
|
bool preserve = false;
|
2011-07-24 21:13:17 +05:30
|
|
|
/*
|
|
|
|
* Count number of pkgs to be removed, configured,
|
|
|
|
* installed and updated.
|
|
|
|
*/
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_get_cstring_nocopy(obj, "pkgver", &pkgver);
|
|
|
|
xbps_dictionary_get_cstring_nocopy(obj, "transaction", &tract);
|
|
|
|
xbps_dictionary_get_cstring_nocopy(obj, "repository", &repo);
|
2014-07-13 13:26:06 +05:30
|
|
|
xbps_dictionary_get_bool(obj, "preserve", &preserve);
|
2012-01-25 09:26:54 +05:30
|
|
|
|
2012-06-05 02:52:33 +05:30
|
|
|
if (strcmp(tract, "configure") == 0) {
|
|
|
|
cf_pkgcnt++;
|
|
|
|
continue;
|
|
|
|
} else if (strcmp(tract, "install") == 0) {
|
2011-07-24 21:13:17 +05:30
|
|
|
inst_pkgcnt++;
|
2012-06-05 02:52:33 +05:30
|
|
|
} else if (strcmp(tract, "update") == 0) {
|
2011-07-24 21:13:17 +05:30
|
|
|
up_pkgcnt++;
|
2012-06-05 02:52:33 +05:30
|
|
|
} else if (strcmp(tract, "remove") == 0) {
|
2011-07-24 21:13:17 +05:30
|
|
|
rm_pkgcnt++;
|
2012-06-05 02:52:33 +05:30
|
|
|
}
|
2011-01-24 21:25:58 +05:30
|
|
|
|
|
|
|
tsize = 0;
|
2013-12-16 11:54:17 +05:30
|
|
|
if ((strcmp(tract, "install") == 0) ||
|
|
|
|
(strcmp(tract, "update") == 0)) {
|
|
|
|
xbps_dictionary_get_uint64(obj,
|
|
|
|
"installed_size", &tsize);
|
|
|
|
instsize += tsize;
|
2014-07-13 13:26:06 +05:30
|
|
|
if (xbps_repository_is_remote(repo) &&
|
|
|
|
!xbps_binpkg_exists(xhp, obj)) {
|
2013-12-16 11:54:17 +05:30
|
|
|
xbps_dictionary_get_uint64(obj,
|
|
|
|
"filename-size", &tsize);
|
2014-07-13 15:15:04 +05:30
|
|
|
/* signature file: 512 bytes */
|
|
|
|
tsize += 512;
|
2013-12-16 11:54:17 +05:30
|
|
|
dlsize += tsize;
|
|
|
|
instsize += tsize;
|
2014-07-14 13:00:28 +05:30
|
|
|
dl_pkgcnt++;
|
|
|
|
xbps_dictionary_set_bool(obj, "download", true);
|
2013-12-16 11:54:17 +05:30
|
|
|
}
|
|
|
|
}
|
2011-11-27 13:35:18 +05:30
|
|
|
/*
|
2012-01-25 09:40:24 +05:30
|
|
|
* If removing or updating a package, get installed_size
|
|
|
|
* from pkg's metadata dictionary.
|
2011-11-27 13:35:18 +05:30
|
|
|
*/
|
2012-01-25 09:40:24 +05:30
|
|
|
if ((strcmp(tract, "remove") == 0) ||
|
2014-07-13 13:26:06 +05:30
|
|
|
((strcmp(tract, "update") == 0) && !preserve)) {
|
2013-04-04 14:10:32 +05:30
|
|
|
char *pkgname;
|
|
|
|
|
|
|
|
pkgname = xbps_pkg_name(pkgver);
|
|
|
|
assert(pkgname);
|
|
|
|
pkg_metad = xbps_pkgdb_get_pkg_metadata(xhp, pkgname);
|
|
|
|
free(pkgname);
|
2011-12-24 05:35:26 +05:30
|
|
|
if (pkg_metad == NULL)
|
|
|
|
continue;
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_get_uint64(pkg_metad,
|
2011-11-27 13:35:18 +05:30
|
|
|
"installed_size", &tsize);
|
|
|
|
rmsize += tsize;
|
2012-01-25 09:40:24 +05:30
|
|
|
}
|
2011-01-24 21:25:58 +05:30
|
|
|
}
|
2013-12-14 09:24:52 +05:30
|
|
|
xbps_object_iterator_release(iter);
|
2012-01-25 09:26:54 +05:30
|
|
|
|
2013-12-16 11:54:17 +05:30
|
|
|
if (instsize > rmsize) {
|
|
|
|
instsize -= rmsize;
|
|
|
|
rmsize = 0;
|
|
|
|
} else if (rmsize > instsize) {
|
|
|
|
rmsize -= instsize;
|
|
|
|
instsize = 0;
|
|
|
|
} else {
|
|
|
|
instsize = rmsize = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!xbps_dictionary_set_uint32(xhp->transd,
|
2013-12-14 09:24:52 +05:30
|
|
|
"total-install-pkgs", inst_pkgcnt))
|
|
|
|
return EINVAL;
|
2013-12-16 11:54:17 +05:30
|
|
|
if (!xbps_dictionary_set_uint32(xhp->transd,
|
2013-12-14 09:24:52 +05:30
|
|
|
"total-update-pkgs", up_pkgcnt))
|
|
|
|
return EINVAL;
|
2013-12-16 11:54:17 +05:30
|
|
|
if (!xbps_dictionary_set_uint32(xhp->transd,
|
2013-12-14 09:24:52 +05:30
|
|
|
"total-configure-pkgs", cf_pkgcnt))
|
|
|
|
return EINVAL;
|
2013-12-16 11:54:17 +05:30
|
|
|
if (!xbps_dictionary_set_uint32(xhp->transd,
|
2013-12-14 09:24:52 +05:30
|
|
|
"total-remove-pkgs", rm_pkgcnt))
|
|
|
|
return EINVAL;
|
2014-07-14 13:00:28 +05:30
|
|
|
if (!xbps_dictionary_set_uint32(xhp->transd,
|
|
|
|
"total-download-pkgs", dl_pkgcnt))
|
|
|
|
return EINVAL;
|
2013-06-20 13:56:12 +05:30
|
|
|
if (!xbps_dictionary_set_uint64(xhp->transd,
|
2013-12-14 09:24:52 +05:30
|
|
|
"total-installed-size", instsize))
|
|
|
|
return EINVAL;
|
2013-06-20 13:56:12 +05:30
|
|
|
if (!xbps_dictionary_set_uint64(xhp->transd,
|
2013-12-14 09:24:52 +05:30
|
|
|
"total-download-size", dlsize))
|
|
|
|
return EINVAL;
|
2013-06-20 13:56:12 +05:30
|
|
|
if (!xbps_dictionary_set_uint64(xhp->transd,
|
2013-12-14 09:24:52 +05:30
|
|
|
"total-removed-size", rmsize))
|
|
|
|
return EINVAL;
|
2011-01-24 21:25:58 +05:30
|
|
|
|
2014-07-13 15:15:04 +05:30
|
|
|
/* Get free space from target rootdir: return ENOSPC if there's not enough space */
|
|
|
|
if (statvfs(xhp->rootdir, &svfs) == -1) {
|
|
|
|
xbps_dbg_printf(xhp, "%s: statvfs failed: %s\n", __func__, strerror(errno));
|
2014-07-14 13:39:34 +05:30
|
|
|
return 0;
|
2014-07-13 15:15:04 +05:30
|
|
|
}
|
|
|
|
/* compute free space on disk */
|
2014-07-14 13:39:34 +05:30
|
|
|
rootdir_free_size = svfs.f_bavail * svfs.f_bsize - instsize;
|
2014-07-13 15:15:04 +05:30
|
|
|
|
|
|
|
if (!xbps_dictionary_set_uint64(xhp->transd,
|
|
|
|
"disk-free-size", rootdir_free_size))
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
if (instsize > rootdir_free_size)
|
|
|
|
return ENOSPC;
|
|
|
|
|
2013-12-14 09:24:52 +05:30
|
|
|
return 0;
|
2011-01-24 21:25:58 +05:30
|
|
|
}
|
|
|
|
|
2012-01-22 14:30:46 +05:30
|
|
|
int HIDDEN
|
|
|
|
xbps_transaction_init(struct xbps_handle *xhp)
|
2011-01-24 21:25:58 +05:30
|
|
|
{
|
2014-07-13 13:26:06 +05:30
|
|
|
xbps_array_t array;
|
2011-01-24 21:25:58 +05:30
|
|
|
|
2012-01-22 14:30:46 +05:30
|
|
|
if (xhp->transd != NULL)
|
|
|
|
return 0;
|
2011-01-24 21:25:58 +05:30
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
if ((xhp->transd = xbps_dictionary_create()) == NULL)
|
2012-01-22 14:30:46 +05:30
|
|
|
return ENOMEM;
|
2011-01-24 21:25:58 +05:30
|
|
|
|
2014-07-13 13:26:06 +05:30
|
|
|
if ((array = xbps_array_create()) == NULL) {
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_release(xhp->transd);
|
2012-01-22 14:30:46 +05:30
|
|
|
xhp->transd = NULL;
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
2014-07-13 13:26:06 +05:30
|
|
|
if (!xbps_dictionary_set(xhp->transd, "unsorted_deps", array)) {
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_release(xhp->transd);
|
2012-01-22 14:30:46 +05:30
|
|
|
xhp->transd = NULL;
|
|
|
|
return EINVAL;
|
|
|
|
}
|
2014-07-13 13:26:06 +05:30
|
|
|
xbps_object_release(array);
|
2014-05-22 14:11:07 +05:30
|
|
|
|
2014-07-13 13:26:06 +05:30
|
|
|
if ((array = xbps_array_create()) == NULL) {
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_release(xhp->transd);
|
2012-01-22 14:30:46 +05:30
|
|
|
xhp->transd = NULL;
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
2014-07-13 13:26:06 +05:30
|
|
|
if (!xbps_dictionary_set(xhp->transd, "missing_deps", array)) {
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_release(xhp->transd);
|
2012-01-22 14:30:46 +05:30
|
|
|
xhp->transd = NULL;
|
|
|
|
return EINVAL;
|
|
|
|
}
|
2014-07-13 13:26:06 +05:30
|
|
|
xbps_object_release(array);
|
2014-05-22 14:11:07 +05:30
|
|
|
|
2014-07-13 13:26:06 +05:30
|
|
|
if ((array = xbps_array_create()) == NULL) {
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_release(xhp->transd);
|
2012-06-11 19:44:03 +05:30
|
|
|
xhp->transd = NULL;
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
2014-07-13 13:26:06 +05:30
|
|
|
if (!xbps_dictionary_set(xhp->transd, "conflicts", array)) {
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_release(xhp->transd);
|
2012-06-11 19:44:03 +05:30
|
|
|
xhp->transd = NULL;
|
|
|
|
return EINVAL;
|
|
|
|
}
|
2014-07-13 13:26:06 +05:30
|
|
|
xbps_object_release(array);
|
2012-01-22 14:30:46 +05:30
|
|
|
|
|
|
|
return 0;
|
2011-01-24 21:25:58 +05:30
|
|
|
}
|
|
|
|
|
2012-01-22 14:30:46 +05:30
|
|
|
int
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_transaction_prepare(struct xbps_handle *xhp)
|
2011-01-24 21:25:58 +05:30
|
|
|
{
|
2014-07-13 13:26:06 +05:30
|
|
|
xbps_array_t array;
|
2014-09-04 13:43:02 +05:30
|
|
|
unsigned int i;
|
2011-01-24 21:25:58 +05:30
|
|
|
int rv = 0;
|
|
|
|
|
2012-01-22 14:30:46 +05:30
|
|
|
if (xhp->transd == NULL)
|
|
|
|
return ENXIO;
|
|
|
|
|
2014-09-04 13:43:02 +05:30
|
|
|
/*
|
|
|
|
* Collect dependencies for pkgs in transaction.
|
|
|
|
*/
|
|
|
|
array = xbps_dictionary_get(xhp->transd, "unsorted_deps");
|
|
|
|
for (i = 0; i < xbps_array_count(array); i++) {
|
|
|
|
if ((rv = xbps_repository_find_deps(xhp, array, xbps_array_get(array, i))) != 0)
|
|
|
|
return rv;
|
|
|
|
}
|
2011-01-24 21:25:58 +05:30
|
|
|
/*
|
2013-06-27 20:22:31 +05:30
|
|
|
* If there are missing deps or revdeps bail out.
|
2011-01-24 21:25:58 +05:30
|
|
|
*/
|
2013-06-27 20:22:31 +05:30
|
|
|
xbps_transaction_revdeps(xhp);
|
2014-07-13 13:26:06 +05:30
|
|
|
array = xbps_dictionary_get(xhp->transd, "missing_deps");
|
|
|
|
if (xbps_array_count(array))
|
2012-01-22 14:30:46 +05:30
|
|
|
return ENODEV;
|
|
|
|
|
2014-07-13 13:26:06 +05:30
|
|
|
array = xbps_dictionary_get(xhp->transd, "unsorted_deps");
|
2014-09-04 13:43:02 +05:30
|
|
|
for (i = 0; i < xbps_array_count(array); i++)
|
2014-07-13 13:26:06 +05:30
|
|
|
xbps_pkg_find_conflicts(xhp, array, xbps_array_get(array, i));
|
2012-06-11 19:44:03 +05:30
|
|
|
/*
|
|
|
|
* If there are package conflicts bail out.
|
|
|
|
*/
|
2014-07-13 13:26:06 +05:30
|
|
|
array = xbps_dictionary_get(xhp->transd, "conflicts");
|
|
|
|
if (xbps_array_count(array))
|
2012-06-11 19:44:03 +05:30
|
|
|
return EAGAIN;
|
|
|
|
|
2011-10-20 18:09:58 +05:30
|
|
|
/*
|
|
|
|
* Check for packages to be replaced.
|
|
|
|
*/
|
2012-06-14 11:52:11 +05:30
|
|
|
if ((rv = xbps_transaction_package_replace(xhp)) != 0) {
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_release(xhp->transd);
|
2012-01-22 14:30:46 +05:30
|
|
|
xhp->transd = NULL;
|
|
|
|
return rv;
|
2011-10-20 18:09:58 +05:30
|
|
|
}
|
2014-09-09 14:38:54 +05:30
|
|
|
if (xbps_transaction_shlibs(xhp))
|
|
|
|
return ENODEV;
|
|
|
|
|
2011-01-24 21:25:58 +05:30
|
|
|
/*
|
|
|
|
* Sort package dependencies if necessary.
|
|
|
|
*/
|
2012-11-30 11:41:51 +05:30
|
|
|
if ((rv = xbps_transaction_sort(xhp)) != 0) {
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_release(xhp->transd);
|
2012-01-22 14:30:46 +05:30
|
|
|
xhp->transd = NULL;
|
|
|
|
return rv;
|
2011-01-24 21:25:58 +05:30
|
|
|
}
|
|
|
|
/*
|
2011-07-24 21:13:17 +05:30
|
|
|
* Add transaction stats for total download/installed size,
|
|
|
|
* number of packages to be installed, updated, configured
|
|
|
|
* and removed to the transaction dictionary.
|
2011-01-24 21:25:58 +05:30
|
|
|
*/
|
2012-06-14 11:52:11 +05:30
|
|
|
if ((rv = compute_transaction_stats(xhp)) != 0) {
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_release(xhp->transd);
|
2012-01-22 14:30:46 +05:30
|
|
|
xhp->transd = NULL;
|
|
|
|
return rv;
|
2011-01-24 21:25:58 +05:30
|
|
|
}
|
|
|
|
/*
|
2012-06-11 19:44:03 +05:30
|
|
|
* The missing deps and conflicts arrays are not necessary anymore.
|
2011-01-24 21:25:58 +05:30
|
|
|
*/
|
2014-05-22 14:11:07 +05:30
|
|
|
xbps_dictionary_remove(xhp->transd, "unsorted");
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_remove(xhp->transd, "missing_deps");
|
|
|
|
xbps_dictionary_remove(xhp->transd, "conflicts");
|
|
|
|
xbps_dictionary_make_immutable(xhp->transd);
|
2011-01-24 21:25:58 +05:30
|
|
|
|
2012-01-22 14:30:46 +05:30
|
|
|
return 0;
|
2011-01-24 21:25:58 +05:30
|
|
|
}
|