2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* sync.c
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2011-01-05 23:45:15 -05:00
|
|
|
* Copyright (c) 2006-2011 Pacman Development Team <pacman-dev@archlinux.org>
|
2009-07-01 03:08:33 -04:00
|
|
|
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
|
2006-10-15 15:31:03 -04:00
|
|
|
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
|
|
|
|
* Copyright (c) 2005 by Christian Hamar <krics@linuxforum.hu>
|
|
|
|
* Copyright (c) 2005, 2006 by Miklos Vajna <vmiklos@frugalware.org>
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2005-03-14 20:51:43 -05:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-12-10 23:55:22 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-03-14 20:51:43 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2007-03-05 17:13:33 -05:00
|
|
|
|
2008-06-01 22:47:31 -04:00
|
|
|
#include <sys/types.h> /* off_t */
|
2005-03-14 20:51:43 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2009-02-19 13:12:34 -05:00
|
|
|
#include <stdint.h> /* intmax_t */
|
2007-04-29 12:47:02 -04:00
|
|
|
#include <unistd.h>
|
2010-12-17 13:48:09 -05:00
|
|
|
#include <limits.h>
|
2007-03-05 17:13:33 -05:00
|
|
|
|
|
|
|
/* libalpm */
|
|
|
|
#include "sync.h"
|
|
|
|
#include "alpm_list.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "log.h"
|
|
|
|
#include "package.h"
|
|
|
|
#include "db.h"
|
|
|
|
#include "deps.h"
|
2006-01-15 10:55:16 -05:00
|
|
|
#include "conflict.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "trans.h"
|
Use sync.c for upgrade transaction prepare and commit
This patch utilizes the power of sync.c to fix FS#3492 and FS#5798.
Now an upgrade transaction is just a sync transaction internally (in alpm),
so all sync features are available with -U as well:
* conflict resolving
* sync dependencies from sync repos
* remove unresolvable targets
See http://www.archlinux.org/pipermail/pacman-dev/2009-June/008725.html
for the concept.
We use "mixed" target list, where PKG_FROM_FILE origin indicates local
package file, PKG_FROM_CACHE indicates sync package. The front-end can add
only one type of packages (depending on transaction type) atm, but if alpm
resolves dependencies for -U, we may get a real mixed trans->packages list.
_alpm_pkg_free_trans() was modified so that it can handle both target types
_alpm_add_prepare() was removed, we use _alpm_sync_prepare() instead
_alpm_add_commit() was renamed to _alpm_upgrade_targets()
sync.c (and deps.c) was modified slightly to handle mixed target lists,
the modifications are straightforward. There is one notable change here: We
don't create new upgrade trans in sync.c, we replace the pkgcache entries
with the loaded package files in the target list (this is a bit hackish) and
call _alpm_upgrade_targets(). This implies a TODO (pkg->origin_data.db is
not accessible anymore), but it doesn't hurt anything with pacman front-end,
so it will be fixed later (otherwise this patch would be huge).
I updated the documentation of -U and I added a new pactest, upgrade090.py,
to test the syncdeps feature of -U.
Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu>
Signed-off-by: Dan McGee <dan@archlinux.org>
2009-06-09 11:23:46 -04:00
|
|
|
#include "add.h"
|
2006-10-15 15:31:03 -04:00
|
|
|
#include "util.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "handle.h"
|
2005-12-26 01:40:29 -05:00
|
|
|
#include "alpm.h"
|
2008-01-22 22:36:11 -05:00
|
|
|
#include "dload.h"
|
2007-10-19 13:17:53 -04:00
|
|
|
#include "delta.h"
|
2009-07-15 13:14:01 -04:00
|
|
|
#include "remove.h"
|
2010-11-16 00:57:39 -05:00
|
|
|
#include "diskspace.h"
|
2008-12-07 12:58:24 -05:00
|
|
|
#include "signing.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2008-01-27 19:44:23 -05:00
|
|
|
/** Check for new version of pkg in sync repos
|
|
|
|
* (only the first occurrence is considered in sync)
|
|
|
|
*/
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t SYMEXPORT *alpm_sync_newversion(alpm_pkg_t *pkg, alpm_list_t *dbs_sync)
|
2008-01-27 19:44:23 -05:00
|
|
|
{
|
|
|
|
alpm_list_t *i;
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *spkg = NULL;
|
2008-01-27 19:44:23 -05:00
|
|
|
|
2011-06-14 11:01:08 -04:00
|
|
|
ASSERT(pkg != NULL, return NULL);
|
|
|
|
pkg->handle->pm_errno = 0;
|
|
|
|
|
2008-01-27 19:44:23 -05:00
|
|
|
for(i = dbs_sync; !spkg && i; i = i->next) {
|
2011-08-18 00:25:19 -04:00
|
|
|
spkg = _alpm_db_get_pkgfromcache(i->data, pkg->name);
|
2008-01-27 19:44:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if(spkg == NULL) {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(pkg->handle, ALPM_LOG_DEBUG, "'%s' not found in sync db => no upgrade\n",
|
2011-08-18 00:25:19 -04:00
|
|
|
pkg->name);
|
2011-03-20 20:45:57 -04:00
|
|
|
return NULL;
|
2008-01-27 19:44:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* compare versions and see if spkg is an upgrade */
|
2009-04-13 09:08:38 -04:00
|
|
|
if(_alpm_pkg_compare_versions(spkg, pkg) > 0) {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(pkg->handle, ALPM_LOG_DEBUG, "new version of '%s' found (%s => %s)\n",
|
2011-08-18 00:25:19 -04:00
|
|
|
pkg->name, pkg->version, spkg->version);
|
2011-03-20 20:45:57 -04:00
|
|
|
return spkg;
|
2008-01-27 19:44:23 -05:00
|
|
|
}
|
2009-04-13 09:08:38 -04:00
|
|
|
/* spkg is not an upgrade */
|
2011-03-20 20:45:57 -04:00
|
|
|
return NULL;
|
2008-01-27 19:44:23 -05:00
|
|
|
}
|
|
|
|
|
2011-08-18 00:39:41 -04:00
|
|
|
static int check_literal(alpm_handle_t *handle, alpm_pkg_t *lpkg,
|
|
|
|
alpm_pkg_t *spkg, int enable_downgrade)
|
|
|
|
{
|
|
|
|
/* 1. literal was found in sdb */
|
|
|
|
int cmp = _alpm_pkg_compare_versions(spkg, lpkg);
|
|
|
|
if(cmp > 0) {
|
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "new version of '%s' found (%s => %s)\n",
|
|
|
|
lpkg->name, lpkg->version, spkg->version);
|
|
|
|
/* check IgnorePkg/IgnoreGroup */
|
|
|
|
if(_alpm_pkg_should_ignore(handle, spkg)
|
|
|
|
|| _alpm_pkg_should_ignore(handle, lpkg)) {
|
|
|
|
_alpm_log(handle, ALPM_LOG_WARNING, _("%s: ignoring package upgrade (%s => %s)\n"),
|
|
|
|
lpkg->name, lpkg->version, spkg->version);
|
|
|
|
} else {
|
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "adding package %s-%s to the transaction targets\n",
|
|
|
|
spkg->name, spkg->version);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else if(cmp < 0) {
|
|
|
|
if(enable_downgrade) {
|
|
|
|
/* check IgnorePkg/IgnoreGroup */
|
|
|
|
if(_alpm_pkg_should_ignore(handle, spkg)
|
|
|
|
|| _alpm_pkg_should_ignore(handle, lpkg)) {
|
|
|
|
_alpm_log(handle, ALPM_LOG_WARNING, _("%s: ignoring package downgrade (%s => %s)\n"),
|
|
|
|
lpkg->name, lpkg->version, spkg->version);
|
|
|
|
} else {
|
|
|
|
_alpm_log(handle, ALPM_LOG_WARNING, _("%s: downgrading from version %s to version %s\n"),
|
|
|
|
lpkg->name, lpkg->version, spkg->version);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
alpm_db_t *sdb = alpm_pkg_get_db(spkg);
|
|
|
|
_alpm_log(handle, ALPM_LOG_WARNING, _("%s: local (%s) is newer than %s (%s)\n"),
|
|
|
|
lpkg->name, lpkg->version, sdb->treename, spkg->version);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-18 00:52:28 -04:00
|
|
|
static alpm_list_t *check_replacers(alpm_handle_t *handle, alpm_pkg_t *lpkg,
|
|
|
|
alpm_db_t *sdb)
|
|
|
|
{
|
|
|
|
/* 2. search for replacers in sdb */
|
|
|
|
alpm_list_t *replacers = NULL;
|
|
|
|
alpm_list_t *k;
|
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG,
|
|
|
|
"searching for replacements for %s\n", lpkg->name);
|
|
|
|
for(k = _alpm_db_get_pkgcache(sdb); k; k = k->next) {
|
|
|
|
int found = 0;
|
|
|
|
alpm_pkg_t *spkg = k->data;
|
|
|
|
alpm_list_t *l;
|
|
|
|
for(l = alpm_pkg_get_replaces(spkg); l; l = l->next) {
|
|
|
|
alpm_depend_t *replace = l->data;
|
2011-08-18 01:23:06 -04:00
|
|
|
/* we only want to consider literal matches at this point. */
|
|
|
|
if(_alpm_depcmp_literal(lpkg, replace)) {
|
2011-08-18 00:52:28 -04:00
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(found) {
|
|
|
|
int doreplace = 0;
|
|
|
|
alpm_pkg_t *tpkg;
|
|
|
|
/* check IgnorePkg/IgnoreGroup */
|
|
|
|
if(_alpm_pkg_should_ignore(handle, spkg)
|
|
|
|
|| _alpm_pkg_should_ignore(handle, lpkg)) {
|
|
|
|
_alpm_log(handle, ALPM_LOG_WARNING,
|
|
|
|
_("ignoring package replacement (%s-%s => %s-%s)\n"),
|
|
|
|
lpkg->name, lpkg->version, spkg->name, spkg->version);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-09-01 18:35:50 -04:00
|
|
|
QUESTION(handle, ALPM_QUESTION_REPLACE_PKG, lpkg, spkg,
|
2011-08-18 00:52:28 -04:00
|
|
|
sdb->treename, &doreplace);
|
|
|
|
if(!doreplace) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If spkg is already in the target list, we append lpkg to spkg's
|
|
|
|
* removes list */
|
|
|
|
tpkg = _alpm_pkg_find(handle->trans->add, spkg->name);
|
|
|
|
if(tpkg) {
|
|
|
|
/* sanity check, multiple repos can contain spkg->name */
|
|
|
|
if(tpkg->origin_data.db != sdb) {
|
|
|
|
_alpm_log(handle, ALPM_LOG_WARNING, _("cannot replace %s by %s\n"),
|
|
|
|
lpkg->name, spkg->name);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "appending %s to the removes list of %s\n",
|
|
|
|
lpkg->name, tpkg->name);
|
|
|
|
tpkg->removes = alpm_list_add(tpkg->removes, lpkg);
|
|
|
|
/* check the to-be-replaced package's reason field */
|
|
|
|
if(alpm_pkg_get_reason(lpkg) == ALPM_PKG_REASON_EXPLICIT) {
|
|
|
|
tpkg->reason = ALPM_PKG_REASON_EXPLICIT;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* add spkg to the target list */
|
|
|
|
/* copy over reason */
|
|
|
|
spkg->reason = alpm_pkg_get_reason(lpkg);
|
|
|
|
spkg->removes = alpm_list_add(NULL, lpkg);
|
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG,
|
|
|
|
"adding package %s-%s to the transaction targets\n",
|
|
|
|
spkg->name, spkg->version);
|
|
|
|
replacers = alpm_list_add(replacers, spkg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return replacers;
|
|
|
|
}
|
|
|
|
|
2011-04-17 03:45:52 -04:00
|
|
|
/** Search for packages to upgrade and add them to the transaction. */
|
2011-06-28 00:04:00 -04:00
|
|
|
int SYMEXPORT alpm_sync_sysupgrade(alpm_handle_t *handle, int enable_downgrade)
|
2006-12-29 12:04:58 -05:00
|
|
|
{
|
2011-08-09 00:54:46 -04:00
|
|
|
alpm_list_t *i, *j;
|
2011-06-28 09:27:16 -04:00
|
|
|
alpm_trans_t *trans;
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2011-06-14 11:01:08 -04:00
|
|
|
CHECK_HANDLE(handle, return -1);
|
2009-07-16 08:55:45 -04:00
|
|
|
trans = handle->trans;
|
2011-07-01 12:01:39 -04:00
|
|
|
ASSERT(trans != NULL, RET_ERR(handle, ALPM_ERR_TRANS_NULL, -1));
|
|
|
|
ASSERT(trans->state == STATE_INITIALIZED, RET_ERR(handle, ALPM_ERR_TRANS_NOT_INITIALIZED, -1));
|
2009-07-16 08:55:45 -04:00
|
|
|
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "checking for package upgrades\n");
|
2011-08-09 00:54:46 -04:00
|
|
|
for(i = _alpm_db_get_pkgcache(handle->db_local); i; i = i->next) {
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *lpkg = i->data;
|
2007-08-24 18:10:40 -04:00
|
|
|
|
2009-07-15 13:14:01 -04:00
|
|
|
if(_alpm_pkg_find(trans->add, lpkg->name)) {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "%s is already in the target list -- skipping\n", lpkg->name);
|
2007-08-24 18:10:40 -04:00
|
|
|
continue;
|
|
|
|
}
|
2006-12-29 12:04:58 -05:00
|
|
|
|
2011-08-18 00:39:41 -04:00
|
|
|
/* Search for literal then replacers in each sync database. */
|
2011-08-09 00:54:46 -04:00
|
|
|
for(j = handle->dbs_sync; j; j = j->next) {
|
2011-06-28 00:11:43 -04:00
|
|
|
alpm_db_t *sdb = j->data;
|
2009-04-13 09:08:38 -04:00
|
|
|
/* Check sdb */
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *spkg = _alpm_db_get_pkgfromcache(sdb, lpkg->name);
|
2011-08-18 00:39:41 -04:00
|
|
|
int literal_upgrade = 0;
|
2011-04-20 20:00:59 -04:00
|
|
|
if(spkg) {
|
2011-08-18 00:39:41 -04:00
|
|
|
literal_upgrade = check_literal(handle, lpkg, spkg, enable_downgrade);
|
|
|
|
if(literal_upgrade) {
|
|
|
|
trans->add = alpm_list_add(trans->add, spkg);
|
2009-04-13 09:08:38 -04:00
|
|
|
}
|
2011-04-20 20:00:59 -04:00
|
|
|
/* jump to next local package */
|
|
|
|
break;
|
|
|
|
} else {
|
2011-08-18 00:52:28 -04:00
|
|
|
alpm_list_t *replacers;
|
|
|
|
replacers = check_replacers(handle, lpkg, sdb);
|
|
|
|
if(replacers) {
|
|
|
|
trans->add = alpm_list_join(trans->add, replacers);
|
2009-04-13 09:08:38 -04:00
|
|
|
}
|
2008-01-27 19:44:23 -05:00
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2006-12-29 12:04:58 -05:00
|
|
|
}
|
2007-08-24 18:10:40 -04:00
|
|
|
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2010-10-16 18:59:53 -04:00
|
|
|
/** Find group members across a list of databases.
|
|
|
|
* If a member exists in several databases, only the first database is used.
|
|
|
|
* IgnorePkg is also handled.
|
2011-06-28 00:11:43 -04:00
|
|
|
* @param dbs the list of alpm_db_t *
|
2011-09-22 17:29:03 -04:00
|
|
|
* @param name the name of the group
|
2011-06-28 09:26:39 -04:00
|
|
|
* @return the list of alpm_pkg_t * (caller is responsible for alpm_list_free)
|
2010-10-16 18:59:53 -04:00
|
|
|
*/
|
2011-06-29 01:46:49 -04:00
|
|
|
alpm_list_t SYMEXPORT *alpm_find_group_pkgs(alpm_list_t *dbs,
|
2010-10-16 18:59:53 -04:00
|
|
|
const char *name)
|
|
|
|
{
|
|
|
|
alpm_list_t *i, *j, *pkgs = NULL, *ignorelist = NULL;
|
|
|
|
|
|
|
|
for(i = dbs; i; i = i->next) {
|
2011-06-28 00:11:43 -04:00
|
|
|
alpm_db_t *db = i->data;
|
2011-06-29 01:46:49 -04:00
|
|
|
alpm_group_t *grp = alpm_db_readgroup(db, name);
|
2010-10-16 18:59:53 -04:00
|
|
|
|
|
|
|
if(!grp)
|
|
|
|
continue;
|
|
|
|
|
2011-06-16 12:55:26 -04:00
|
|
|
for(j = grp->packages; j; j = j->next) {
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *pkg = j->data;
|
2010-10-16 18:59:53 -04:00
|
|
|
|
2011-08-18 00:25:19 -04:00
|
|
|
if(_alpm_pkg_find(ignorelist, pkg->name)) {
|
2010-10-16 18:59:53 -04:00
|
|
|
continue;
|
|
|
|
}
|
2011-06-09 16:18:47 -04:00
|
|
|
if(_alpm_pkg_should_ignore(db->handle, pkg)) {
|
2010-10-16 18:59:53 -04:00
|
|
|
ignorelist = alpm_list_add(ignorelist, pkg);
|
|
|
|
int install = 0;
|
2011-09-01 18:35:50 -04:00
|
|
|
QUESTION(db->handle, ALPM_QUESTION_INSTALL_IGNOREPKG, pkg,
|
2010-10-16 18:59:53 -04:00
|
|
|
NULL, NULL, &install);
|
|
|
|
if(!install)
|
|
|
|
continue;
|
|
|
|
}
|
2011-08-18 00:25:19 -04:00
|
|
|
if(!_alpm_pkg_find(pkgs, pkg->name)) {
|
2010-10-16 18:59:53 -04:00
|
|
|
pkgs = alpm_list_add(pkgs, pkg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
alpm_list_free(ignorelist);
|
2011-03-20 20:45:57 -04:00
|
|
|
return pkgs;
|
2010-10-16 18:59:53 -04:00
|
|
|
}
|
|
|
|
|
2008-02-16 11:47:22 -05:00
|
|
|
/** Compute the size of the files that will be downloaded to install a
|
|
|
|
* package.
|
|
|
|
* @param newpkg the new package to upgrade to
|
|
|
|
*/
|
2011-06-28 09:26:39 -04:00
|
|
|
static int compute_download_size(alpm_pkg_t *newpkg)
|
2008-02-16 11:47:22 -05:00
|
|
|
{
|
2011-09-07 16:01:43 -04:00
|
|
|
const char *fname;
|
|
|
|
char *fpath, *fnamepart = NULL;
|
2008-06-01 22:47:31 -04:00
|
|
|
off_t size = 0;
|
2011-06-28 00:04:00 -04:00
|
|
|
alpm_handle_t *handle = newpkg->handle;
|
2008-02-16 11:47:22 -05:00
|
|
|
|
2010-10-27 02:25:45 -04:00
|
|
|
if(newpkg->origin != PKG_FROM_SYNCDB) {
|
2010-05-05 18:07:37 -04:00
|
|
|
newpkg->infolevel |= INFRQ_DSIZE;
|
Use sync.c for upgrade transaction prepare and commit
This patch utilizes the power of sync.c to fix FS#3492 and FS#5798.
Now an upgrade transaction is just a sync transaction internally (in alpm),
so all sync features are available with -U as well:
* conflict resolving
* sync dependencies from sync repos
* remove unresolvable targets
See http://www.archlinux.org/pipermail/pacman-dev/2009-June/008725.html
for the concept.
We use "mixed" target list, where PKG_FROM_FILE origin indicates local
package file, PKG_FROM_CACHE indicates sync package. The front-end can add
only one type of packages (depending on transaction type) atm, but if alpm
resolves dependencies for -U, we may get a real mixed trans->packages list.
_alpm_pkg_free_trans() was modified so that it can handle both target types
_alpm_add_prepare() was removed, we use _alpm_sync_prepare() instead
_alpm_add_commit() was renamed to _alpm_upgrade_targets()
sync.c (and deps.c) was modified slightly to handle mixed target lists,
the modifications are straightforward. There is one notable change here: We
don't create new upgrade trans in sync.c, we replace the pkgcache entries
with the loaded package files in the target list (this is a bit hackish) and
call _alpm_upgrade_targets(). This implies a TODO (pkg->origin_data.db is
not accessible anymore), but it doesn't hurt anything with pacman front-end,
so it will be fixed later (otherwise this patch would be huge).
I updated the documentation of -U and I added a new pactest, upgrade090.py,
to test the syncdeps feature of -U.
Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu>
Signed-off-by: Dan McGee <dan@archlinux.org>
2009-06-09 11:23:46 -04:00
|
|
|
newpkg->download_size = 0;
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
Use sync.c for upgrade transaction prepare and commit
This patch utilizes the power of sync.c to fix FS#3492 and FS#5798.
Now an upgrade transaction is just a sync transaction internally (in alpm),
so all sync features are available with -U as well:
* conflict resolving
* sync dependencies from sync repos
* remove unresolvable targets
See http://www.archlinux.org/pipermail/pacman-dev/2009-June/008725.html
for the concept.
We use "mixed" target list, where PKG_FROM_FILE origin indicates local
package file, PKG_FROM_CACHE indicates sync package. The front-end can add
only one type of packages (depending on transaction type) atm, but if alpm
resolves dependencies for -U, we may get a real mixed trans->packages list.
_alpm_pkg_free_trans() was modified so that it can handle both target types
_alpm_add_prepare() was removed, we use _alpm_sync_prepare() instead
_alpm_add_commit() was renamed to _alpm_upgrade_targets()
sync.c (and deps.c) was modified slightly to handle mixed target lists,
the modifications are straightforward. There is one notable change here: We
don't create new upgrade trans in sync.c, we replace the pkgcache entries
with the loaded package files in the target list (this is a bit hackish) and
call _alpm_upgrade_targets(). This implies a TODO (pkg->origin_data.db is
not accessible anymore), but it doesn't hurt anything with pacman front-end,
so it will be fixed later (otherwise this patch would be huge).
I updated the documentation of -U and I added a new pactest, upgrade090.py,
to test the syncdeps feature of -U.
Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu>
Signed-off-by: Dan McGee <dan@archlinux.org>
2009-06-09 11:23:46 -04:00
|
|
|
}
|
|
|
|
|
2011-09-02 23:07:06 -04:00
|
|
|
ASSERT(newpkg->filename != NULL, RET_ERR(handle, ALPM_ERR_PKG_INVALID_NAME, -1));
|
2011-09-07 16:01:43 -04:00
|
|
|
fname = newpkg->filename;
|
|
|
|
fpath = _alpm_filecache_find(handle, fname);
|
2008-04-26 14:03:53 -04:00
|
|
|
|
2011-09-07 16:01:43 -04:00
|
|
|
/* downloaded file exists, so there's nothing to grab */
|
2008-02-16 11:47:22 -05:00
|
|
|
if(fpath) {
|
|
|
|
size = 0;
|
2011-09-07 16:01:43 -04:00
|
|
|
goto finish;
|
|
|
|
}
|
|
|
|
|
|
|
|
CALLOC(fnamepart, strlen(fname) + 6, sizeof(char), return -1);
|
|
|
|
sprintf(fnamepart, "%s.part", fname);
|
|
|
|
fpath = _alpm_filecache_find(handle, fnamepart);
|
|
|
|
if(fpath) {
|
|
|
|
struct stat st;
|
|
|
|
if(stat(fpath, &st) == 0) {
|
|
|
|
/* subtract the size of the .part file */
|
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "using (package - .part) size\n");
|
|
|
|
size = newpkg->size - st.st_size;
|
|
|
|
size = size < 0 ? 0 : size;
|
|
|
|
}
|
2011-06-07 17:13:58 -04:00
|
|
|
} else if(handle->usedelta) {
|
2008-06-01 22:47:31 -04:00
|
|
|
off_t dltsize;
|
2008-02-16 11:47:22 -05:00
|
|
|
|
2011-09-02 23:07:06 -04:00
|
|
|
dltsize = _alpm_shortest_delta_path(handle, newpkg->deltas,
|
|
|
|
newpkg->filename, &newpkg->delta_path);
|
2008-02-16 11:47:22 -05:00
|
|
|
|
2011-09-02 20:26:07 -04:00
|
|
|
if(newpkg->delta_path && (dltsize < newpkg->size * MAX_DELTA_RATIO)) {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "using delta size\n");
|
2008-02-16 11:47:22 -05:00
|
|
|
size = dltsize;
|
|
|
|
} else {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "using package size\n");
|
2011-09-02 20:26:07 -04:00
|
|
|
size = newpkg->size;
|
2008-02-16 11:47:22 -05:00
|
|
|
alpm_list_free(newpkg->delta_path);
|
|
|
|
newpkg->delta_path = NULL;
|
|
|
|
}
|
|
|
|
} else {
|
2011-09-02 20:26:07 -04:00
|
|
|
size = newpkg->size;
|
2008-02-16 11:47:22 -05:00
|
|
|
}
|
|
|
|
|
2011-09-07 16:01:43 -04:00
|
|
|
finish:
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "setting download size %jd for pkg %s\n",
|
2011-08-18 00:25:19 -04:00
|
|
|
(intmax_t)size, newpkg->name);
|
2008-02-16 11:47:22 -05:00
|
|
|
|
2010-05-05 18:07:37 -04:00
|
|
|
newpkg->infolevel |= INFRQ_DSIZE;
|
2008-02-16 11:47:22 -05:00
|
|
|
newpkg->download_size = size;
|
2011-09-07 16:01:43 -04:00
|
|
|
|
|
|
|
FREE(fpath);
|
|
|
|
FREE(fnamepart);
|
|
|
|
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
2008-02-16 11:47:22 -05:00
|
|
|
}
|
|
|
|
|
2011-06-28 00:04:00 -04:00
|
|
|
int _alpm_sync_prepare(alpm_handle_t *handle, alpm_list_t **data)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2011-06-07 17:06:16 -04:00
|
|
|
alpm_list_t *i, *j;
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *deps = NULL;
|
2009-01-26 07:48:39 -05:00
|
|
|
alpm_list_t *unresolvable = NULL;
|
2009-07-15 13:14:01 -04:00
|
|
|
alpm_list_t *remove = NULL;
|
2006-03-04 05:16:36 -05:00
|
|
|
int ret = 0;
|
2011-06-28 09:27:16 -04:00
|
|
|
alpm_trans_t *trans = handle->trans;
|
2005-04-08 15:37:23 -04:00
|
|
|
|
2006-01-07 13:25:28 -05:00
|
|
|
if(data) {
|
|
|
|
*data = NULL;
|
|
|
|
}
|
2005-04-06 17:01:40 -04:00
|
|
|
|
2011-06-08 00:08:06 -04:00
|
|
|
/* ensure all sync database are valid since we will be using them */
|
|
|
|
for(i = handle->dbs_sync; i; i = i->next) {
|
|
|
|
const alpm_db_t *db = i->data;
|
2011-08-17 22:06:04 -04:00
|
|
|
if(db->status & DB_STATUS_INVALID) {
|
2011-06-08 00:08:06 -04:00
|
|
|
RET_ERR(handle, ALPM_ERR_DB_INVALID, -1);
|
|
|
|
}
|
2011-08-17 22:06:04 -04:00
|
|
|
if(db->status & DB_STATUS_MISSING) {
|
|
|
|
RET_ERR(handle, ALPM_ERR_DB_NOT_FOUND, -1);
|
|
|
|
}
|
2011-06-08 00:08:06 -04:00
|
|
|
}
|
|
|
|
|
2011-07-01 12:01:39 -04:00
|
|
|
if(!(trans->flags & ALPM_TRANS_FLAG_NODEPS)) {
|
2009-03-07 13:44:34 -05:00
|
|
|
alpm_list_t *resolved = NULL; /* target list after resolvedeps */
|
|
|
|
|
2009-01-26 07:48:39 -05:00
|
|
|
/* Build up list by repeatedly resolving each transaction package */
|
2005-04-13 15:59:04 -04:00
|
|
|
/* Resolve targets dependencies */
|
2011-09-01 18:35:50 -04:00
|
|
|
EVENT(handle, ALPM_EVENT_RESOLVEDEPS_START, NULL, NULL);
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "resolving target's dependencies\n");
|
2007-08-12 16:26:54 -04:00
|
|
|
|
2009-09-12 14:50:03 -04:00
|
|
|
/* build remove list for resolvedeps */
|
2009-07-15 13:14:01 -04:00
|
|
|
for(i = trans->add; i; i = i->next) {
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *spkg = i->data;
|
2009-03-07 13:44:34 -05:00
|
|
|
for(j = spkg->removes; j; j = j->next) {
|
2008-01-27 06:24:50 -05:00
|
|
|
remove = alpm_list_add(remove, j->data);
|
2007-08-12 16:26:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-21 10:02:03 -04:00
|
|
|
/* Compute the fake local database for resolvedeps (partial fix for the
|
|
|
|
* phonon/qt issue) */
|
2011-06-07 17:06:16 -04:00
|
|
|
alpm_list_t *localpkgs = alpm_list_diff(_alpm_db_get_pkgcache(handle->db_local),
|
2011-03-21 10:02:03 -04:00
|
|
|
trans->add, _alpm_pkg_cmp);
|
2010-05-16 20:33:28 -04:00
|
|
|
|
2011-02-25 08:51:58 -05:00
|
|
|
/* Resolve packages in the transaction one at a time, in addition
|
2009-01-26 07:48:39 -05:00
|
|
|
building up a list of packages which could not be resolved. */
|
2009-07-15 13:14:01 -04:00
|
|
|
for(i = trans->add; i; i = i->next) {
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *pkg = i->data;
|
2011-06-07 15:05:42 -04:00
|
|
|
if(_alpm_resolvedeps(handle, localpkgs, pkg, trans->add,
|
2009-03-08 16:56:13 -04:00
|
|
|
&resolved, remove, data) == -1) {
|
2009-01-26 07:48:39 -05:00
|
|
|
unresolvable = alpm_list_add(unresolvable, pkg);
|
|
|
|
}
|
2009-03-07 13:44:34 -05:00
|
|
|
/* Else, [resolved] now additionally contains [pkg] and all of its
|
2009-01-26 07:48:39 -05:00
|
|
|
dependencies not already on the list */
|
|
|
|
}
|
2010-05-16 20:33:28 -04:00
|
|
|
alpm_list_free(localpkgs);
|
2009-01-26 07:48:39 -05:00
|
|
|
|
2009-02-22 05:25:31 -05:00
|
|
|
/* If there were unresolvable top-level packages, prompt the user to
|
|
|
|
see if they'd like to ignore them rather than failing the sync */
|
2009-01-26 07:48:39 -05:00
|
|
|
if(unresolvable != NULL) {
|
2009-02-22 05:25:31 -05:00
|
|
|
int remove_unresolvable = 0;
|
2011-09-01 18:35:50 -04:00
|
|
|
QUESTION(handle, ALPM_QUESTION_REMOVE_PKGS, unresolvable,
|
2009-02-22 05:25:31 -05:00
|
|
|
NULL, NULL, &remove_unresolvable);
|
2011-04-20 20:45:16 -04:00
|
|
|
if(remove_unresolvable) {
|
2009-02-22 05:25:31 -05:00
|
|
|
/* User wants to remove the unresolvable packages from the
|
2009-03-07 10:25:29 -05:00
|
|
|
transaction. The packages will be removed from the actual
|
|
|
|
transaction when the transaction packages are replaced with a
|
2009-02-22 05:25:31 -05:00
|
|
|
dependency-reordered list below */
|
2011-06-07 17:06:16 -04:00
|
|
|
handle->pm_errno = 0; /* pm_errno was set by resolvedeps */
|
2009-03-07 10:25:29 -05:00
|
|
|
if(data) {
|
|
|
|
alpm_list_free_inner(*data, (alpm_list_fn_free)_alpm_depmiss_free);
|
|
|
|
alpm_list_free(*data);
|
|
|
|
*data = NULL;
|
|
|
|
}
|
|
|
|
} else {
|
2009-02-22 05:25:31 -05:00
|
|
|
/* pm_errno is set by resolvedeps */
|
2009-03-07 13:44:34 -05:00
|
|
|
alpm_list_free(resolved);
|
2009-02-22 05:25:31 -05:00
|
|
|
ret = -1;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2005-04-02 18:21:10 -05:00
|
|
|
}
|
2006-10-15 15:31:03 -04:00
|
|
|
|
2009-03-07 13:44:34 -05:00
|
|
|
/* Set DEPEND reason for pulled packages */
|
|
|
|
for(i = resolved; i; i = i->next) {
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *pkg = i->data;
|
2009-07-15 13:14:01 -04:00
|
|
|
if(!_alpm_pkg_find(trans->add, pkg->name)) {
|
2011-07-01 12:01:38 -04:00
|
|
|
pkg->reason = ALPM_PKG_REASON_DEPEND;
|
2005-04-08 15:37:23 -04:00
|
|
|
}
|
|
|
|
}
|
2006-10-15 15:31:03 -04:00
|
|
|
|
Use sync.c for upgrade transaction prepare and commit
This patch utilizes the power of sync.c to fix FS#3492 and FS#5798.
Now an upgrade transaction is just a sync transaction internally (in alpm),
so all sync features are available with -U as well:
* conflict resolving
* sync dependencies from sync repos
* remove unresolvable targets
See http://www.archlinux.org/pipermail/pacman-dev/2009-June/008725.html
for the concept.
We use "mixed" target list, where PKG_FROM_FILE origin indicates local
package file, PKG_FROM_CACHE indicates sync package. The front-end can add
only one type of packages (depending on transaction type) atm, but if alpm
resolves dependencies for -U, we may get a real mixed trans->packages list.
_alpm_pkg_free_trans() was modified so that it can handle both target types
_alpm_add_prepare() was removed, we use _alpm_sync_prepare() instead
_alpm_add_commit() was renamed to _alpm_upgrade_targets()
sync.c (and deps.c) was modified slightly to handle mixed target lists,
the modifications are straightforward. There is one notable change here: We
don't create new upgrade trans in sync.c, we replace the pkgcache entries
with the loaded package files in the target list (this is a bit hackish) and
call _alpm_upgrade_targets(). This implies a TODO (pkg->origin_data.db is
not accessible anymore), but it doesn't hurt anything with pacman front-end,
so it will be fixed later (otherwise this patch would be huge).
I updated the documentation of -U and I added a new pactest, upgrade090.py,
to test the syncdeps feature of -U.
Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu>
Signed-off-by: Dan McGee <dan@archlinux.org>
2009-06-09 11:23:46 -04:00
|
|
|
/* Unresolvable packages will be removed from the target list, so
|
|
|
|
we free the transaction specific fields */
|
|
|
|
alpm_list_free_inner(unresolvable, (alpm_list_fn_free)_alpm_pkg_free_trans);
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
/* re-order w.r.t. dependencies */
|
2009-07-15 13:14:01 -04:00
|
|
|
alpm_list_free(trans->add);
|
2011-06-07 17:13:58 -04:00
|
|
|
trans->add = _alpm_sortbydeps(handle, resolved, 0);
|
2009-03-07 13:44:34 -05:00
|
|
|
alpm_list_free(resolved);
|
2006-10-15 15:31:03 -04:00
|
|
|
|
2011-09-01 18:35:50 -04:00
|
|
|
EVENT(handle, ALPM_EVENT_RESOLVEDEPS_DONE, NULL, NULL);
|
2006-03-04 05:16:36 -05:00
|
|
|
}
|
|
|
|
|
2011-07-01 12:01:39 -04:00
|
|
|
if(!(trans->flags & ALPM_TRANS_FLAG_NOCONFLICTS)) {
|
2006-03-04 05:16:36 -05:00
|
|
|
/* check for inter-conflicts and whatnot */
|
2011-09-01 18:35:50 -04:00
|
|
|
EVENT(handle, ALPM_EVENT_INTERCONFLICTS_START, NULL, NULL);
|
2006-03-04 05:16:36 -05:00
|
|
|
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "looking for conflicts\n");
|
2005-04-17 16:09:06 -04:00
|
|
|
|
2007-08-12 18:17:32 -04:00
|
|
|
/* 1. check for conflicts in the target list */
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "check targets vs targets\n");
|
2011-06-07 14:53:53 -04:00
|
|
|
deps = _alpm_innerconflicts(handle, trans->add);
|
2007-08-12 18:17:32 -04:00
|
|
|
|
|
|
|
for(i = deps; i; i = i->next) {
|
2011-06-28 00:33:55 -04:00
|
|
|
alpm_conflict_t *conflict = i->data;
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *rsync, *sync, *sync1, *sync2;
|
2007-08-12 18:17:32 -04:00
|
|
|
|
|
|
|
/* have we already removed one of the conflicting targets? */
|
2009-07-15 13:14:01 -04:00
|
|
|
sync1 = _alpm_pkg_find(trans->add, conflict->package1);
|
|
|
|
sync2 = _alpm_pkg_find(trans->add, conflict->package2);
|
2007-08-12 18:17:32 -04:00
|
|
|
if(!sync1 || !sync2) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "conflicting packages in the sync list: '%s' <-> '%s'\n",
|
2007-08-12 18:17:32 -04:00
|
|
|
conflict->package1, conflict->package2);
|
|
|
|
|
|
|
|
/* if sync1 provides sync2, we remove sync2 from the targets, and vice versa */
|
2011-06-28 00:29:55 -04:00
|
|
|
alpm_depend_t *dep1 = _alpm_splitdep(conflict->package1);
|
|
|
|
alpm_depend_t *dep2 = _alpm_splitdep(conflict->package2);
|
2010-10-12 15:47:40 -04:00
|
|
|
if(_alpm_depcmp(sync1, dep2)) {
|
2007-08-12 18:17:32 -04:00
|
|
|
rsync = sync2;
|
|
|
|
sync = sync1;
|
2010-10-12 15:47:40 -04:00
|
|
|
} else if(_alpm_depcmp(sync2, dep1)) {
|
2007-08-12 18:17:32 -04:00
|
|
|
rsync = sync1;
|
|
|
|
sync = sync2;
|
|
|
|
} else {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_ERROR, _("unresolvable package conflicts detected\n"));
|
2011-07-01 12:01:39 -04:00
|
|
|
handle->pm_errno = ALPM_ERR_CONFLICTING_DEPS;
|
2007-08-12 18:17:32 -04:00
|
|
|
ret = -1;
|
2008-01-25 15:52:35 -05:00
|
|
|
if(data) {
|
2011-06-28 00:33:55 -04:00
|
|
|
alpm_conflict_t *newconflict = _alpm_conflict_dup(conflict);
|
2008-01-25 15:52:35 -05:00
|
|
|
if(newconflict) {
|
|
|
|
*data = alpm_list_add(*data, newconflict);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
alpm_list_free_inner(deps, (alpm_list_fn_free)_alpm_conflict_free);
|
|
|
|
alpm_list_free(deps);
|
Cleanup usages of alpm_list_find and alpm_list_remove.
* remove obsolete and unused *_cmp helper functions like deppkg_cmp and
_alpm_grp_cmp
* new alpm_list_remove_str function, used 6 times in handle.c
* remove _alpm_prov_cmp / _alpm_db_whatprovides and replace them by
a more general alpm_find_pkg_satisfiers with a cleaner implementation.
before: alpm_db_whatprovides(db, targ)
after: alpm_find_pkg_satisfiers(alpm_db_getpkgcache(db), targ)
* remove satisfycmp and replace alpm_list_find + satisfycmp usage by
_alpm_find_dep_satisfiers.
before : alpm_list_find(_alpm_db_get_pkgcache(db), dep, satisfycmp)
after : _alpm_find_dep_satisfiers(_alpm_db_get_pkgcache(db), dep)
* remove _alpm_pkgname_pkg_cmp, which was used with alpm_list_remove, and
use _alpm_pkg_find + alpm_list_remove with _alpm_pkg_cmp instead.
This commit actually get rids of all complicated and asymmetric _cmp
functions. I first thought these functions were worth it, be caused it
allowed us to reuse list_find and list_remove. But this was at the detriment
of the clarity and also the ease of use of these functions, dangerous
because of their asymmetricity.
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
2008-05-10 12:47:42 -04:00
|
|
|
_alpm_dep_free(dep1);
|
|
|
|
_alpm_dep_free(dep2);
|
2007-08-12 18:17:32 -04:00
|
|
|
goto cleanup;
|
|
|
|
}
|
Cleanup usages of alpm_list_find and alpm_list_remove.
* remove obsolete and unused *_cmp helper functions like deppkg_cmp and
_alpm_grp_cmp
* new alpm_list_remove_str function, used 6 times in handle.c
* remove _alpm_prov_cmp / _alpm_db_whatprovides and replace them by
a more general alpm_find_pkg_satisfiers with a cleaner implementation.
before: alpm_db_whatprovides(db, targ)
after: alpm_find_pkg_satisfiers(alpm_db_getpkgcache(db), targ)
* remove satisfycmp and replace alpm_list_find + satisfycmp usage by
_alpm_find_dep_satisfiers.
before : alpm_list_find(_alpm_db_get_pkgcache(db), dep, satisfycmp)
after : _alpm_find_dep_satisfiers(_alpm_db_get_pkgcache(db), dep)
* remove _alpm_pkgname_pkg_cmp, which was used with alpm_list_remove, and
use _alpm_pkg_find + alpm_list_remove with _alpm_pkg_cmp instead.
This commit actually get rids of all complicated and asymmetric _cmp
functions. I first thought these functions were worth it, be caused it
allowed us to reuse list_find and list_remove. But this was at the detriment
of the clarity and also the ease of use of these functions, dangerous
because of their asymmetricity.
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
2008-05-10 12:47:42 -04:00
|
|
|
_alpm_dep_free(dep1);
|
|
|
|
_alpm_dep_free(dep2);
|
2007-08-12 18:17:32 -04:00
|
|
|
|
2008-03-10 10:38:08 -04:00
|
|
|
/* Prints warning */
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_WARNING,
|
2008-03-10 10:38:08 -04:00
|
|
|
_("removing '%s' from target list because it conflicts with '%s'\n"),
|
2009-03-07 13:44:34 -05:00
|
|
|
rsync->name, sync->name);
|
2009-07-15 13:14:01 -04:00
|
|
|
trans->add = alpm_list_remove(trans->add, rsync, _alpm_pkg_cmp, NULL);
|
Use sync.c for upgrade transaction prepare and commit
This patch utilizes the power of sync.c to fix FS#3492 and FS#5798.
Now an upgrade transaction is just a sync transaction internally (in alpm),
so all sync features are available with -U as well:
* conflict resolving
* sync dependencies from sync repos
* remove unresolvable targets
See http://www.archlinux.org/pipermail/pacman-dev/2009-June/008725.html
for the concept.
We use "mixed" target list, where PKG_FROM_FILE origin indicates local
package file, PKG_FROM_CACHE indicates sync package. The front-end can add
only one type of packages (depending on transaction type) atm, but if alpm
resolves dependencies for -U, we may get a real mixed trans->packages list.
_alpm_pkg_free_trans() was modified so that it can handle both target types
_alpm_add_prepare() was removed, we use _alpm_sync_prepare() instead
_alpm_add_commit() was renamed to _alpm_upgrade_targets()
sync.c (and deps.c) was modified slightly to handle mixed target lists,
the modifications are straightforward. There is one notable change here: We
don't create new upgrade trans in sync.c, we replace the pkgcache entries
with the loaded package files in the target list (this is a bit hackish) and
call _alpm_upgrade_targets(). This implies a TODO (pkg->origin_data.db is
not accessible anymore), but it doesn't hurt anything with pacman front-end,
so it will be fixed later (otherwise this patch would be huge).
I updated the documentation of -U and I added a new pactest, upgrade090.py,
to test the syncdeps feature of -U.
Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu>
Signed-off-by: Dan McGee <dan@archlinux.org>
2009-06-09 11:23:46 -04:00
|
|
|
_alpm_pkg_free_trans(rsync); /* rsync is not transaction target anymore */
|
2007-08-12 18:17:32 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
alpm_list_free_inner(deps, (alpm_list_fn_free)_alpm_conflict_free);
|
|
|
|
alpm_list_free(deps);
|
|
|
|
deps = NULL;
|
|
|
|
|
|
|
|
/* 2. we check for target vs db conflicts (and resolve)*/
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "check targets vs db and db vs targets\n");
|
2011-06-07 17:06:16 -04:00
|
|
|
deps = _alpm_outerconflicts(handle->db_local, trans->add);
|
2007-08-12 18:17:32 -04:00
|
|
|
|
|
|
|
for(i = deps; i; i = i->next) {
|
2011-06-28 00:33:55 -04:00
|
|
|
alpm_conflict_t *conflict = i->data;
|
2007-08-12 18:17:32 -04:00
|
|
|
|
|
|
|
/* if conflict->package2 (the local package) is not elected for removal,
|
|
|
|
we ask the user */
|
|
|
|
int found = 0;
|
2009-07-15 13:14:01 -04:00
|
|
|
for(j = trans->add; j && !found; j = j->next) {
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *spkg = j->data;
|
2009-03-07 13:44:34 -05:00
|
|
|
if(_alpm_pkg_find(spkg->removes, conflict->package2)) {
|
2008-01-27 06:24:50 -05:00
|
|
|
found = 1;
|
2006-01-17 16:18:33 -05:00
|
|
|
}
|
2007-08-12 18:17:32 -04:00
|
|
|
}
|
|
|
|
if(found) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "package '%s' conflicts with '%s'\n",
|
2007-08-12 18:17:32 -04:00
|
|
|
conflict->package1, conflict->package2);
|
|
|
|
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *sync = _alpm_pkg_find(trans->add, conflict->package1);
|
|
|
|
alpm_pkg_t *local = _alpm_db_get_pkgfromcache(handle->db_local, conflict->package2);
|
2007-08-12 18:17:32 -04:00
|
|
|
int doremove = 0;
|
2011-09-01 18:35:50 -04:00
|
|
|
QUESTION(handle, ALPM_QUESTION_CONFLICT_PKG, conflict->package1,
|
2011-08-19 02:17:04 -04:00
|
|
|
conflict->package2, conflict->reason->name, &doremove);
|
2007-08-12 18:17:32 -04:00
|
|
|
if(doremove) {
|
2008-01-27 06:24:50 -05:00
|
|
|
/* append to the removes list */
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "electing '%s' for removal\n", conflict->package2);
|
2008-01-27 06:24:50 -05:00
|
|
|
sync->removes = alpm_list_add(sync->removes, local);
|
2007-08-12 18:17:32 -04:00
|
|
|
} else { /* abort */
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_ERROR, _("unresolvable package conflicts detected\n"));
|
2011-07-01 12:01:39 -04:00
|
|
|
handle->pm_errno = ALPM_ERR_CONFLICTING_DEPS;
|
2008-01-25 15:52:35 -05:00
|
|
|
ret = -1;
|
Fix several memleaks, mostly related to errors handling.
* The frontend calls alpm_trans_prepare(&data), and in case of errors,
receive the missing dependencies / conflicts / etc in the data pointer.
It apparently needs to free this structure totally with :
alpm_list_free_inner(data, free)
alpm_list_free(data)
So I added alpm_list_free_inner(data, free) in
pacman/{sync.c,remove.c,add,c}
* in _alpm_sync_prepare, the deps and asked lists were not freed in case
of errors (unresolvable conflicts).
Besides the code for handling this case was duplicated.
* in _alpm_remove_commit, free was used instead of alpm_list_free for
newfiles.
* newline fix in pacman/sync.c
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
2007-11-21 13:51:46 -05:00
|
|
|
if(data) {
|
2011-06-28 00:33:55 -04:00
|
|
|
alpm_conflict_t *newconflict = _alpm_conflict_dup(conflict);
|
2008-01-25 15:52:35 -05:00
|
|
|
if(newconflict) {
|
|
|
|
*data = alpm_list_add(*data, newconflict);
|
Fix several memleaks, mostly related to errors handling.
* The frontend calls alpm_trans_prepare(&data), and in case of errors,
receive the missing dependencies / conflicts / etc in the data pointer.
It apparently needs to free this structure totally with :
alpm_list_free_inner(data, free)
alpm_list_free(data)
So I added alpm_list_free_inner(data, free) in
pacman/{sync.c,remove.c,add,c}
* in _alpm_sync_prepare, the deps and asked lists were not freed in case
of errors (unresolvable conflicts).
Besides the code for handling this case was duplicated.
* in _alpm_remove_commit, free was used instead of alpm_list_free for
newfiles.
* newline fix in pacman/sync.c
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
2007-11-21 13:51:46 -05:00
|
|
|
}
|
|
|
|
}
|
2008-01-11 01:01:58 -05:00
|
|
|
alpm_list_free_inner(deps, (alpm_list_fn_free)_alpm_conflict_free);
|
|
|
|
alpm_list_free(deps);
|
2006-03-04 05:16:36 -05:00
|
|
|
goto cleanup;
|
2005-04-17 16:09:06 -04:00
|
|
|
}
|
2005-04-06 17:01:40 -04:00
|
|
|
}
|
2011-09-01 18:35:50 -04:00
|
|
|
EVENT(handle, ALPM_EVENT_INTERCONFLICTS_DONE, NULL, NULL);
|
2007-08-12 18:17:32 -04:00
|
|
|
alpm_list_free_inner(deps, (alpm_list_fn_free)_alpm_conflict_free);
|
|
|
|
alpm_list_free(deps);
|
2006-03-04 05:16:36 -05:00
|
|
|
}
|
2005-04-13 15:59:04 -04:00
|
|
|
|
2009-09-12 14:50:03 -04:00
|
|
|
/* Build trans->remove list */
|
|
|
|
for(i = trans->add; i; i = i->next) {
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *spkg = i->data;
|
2009-09-12 14:50:03 -04:00
|
|
|
for(j = spkg->removes; j; j = j->next) {
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *rpkg = j->data;
|
2011-03-21 09:59:59 -04:00
|
|
|
if(!_alpm_pkg_find(trans->remove, rpkg->name)) {
|
2011-08-19 12:06:55 -04:00
|
|
|
alpm_pkg_t *copy;
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "adding '%s' to remove list\n", rpkg->name);
|
2011-08-19 12:06:55 -04:00
|
|
|
if(_alpm_pkg_dup(rpkg, ©) == -1) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
trans->remove = alpm_list_add(trans->remove, copy);
|
2011-03-21 09:59:59 -04:00
|
|
|
}
|
2006-01-05 15:53:41 -05:00
|
|
|
}
|
2009-09-12 14:50:03 -04:00
|
|
|
}
|
2007-08-12 16:26:54 -04:00
|
|
|
|
2011-07-01 12:01:39 -04:00
|
|
|
if(!(trans->flags & ALPM_TRANS_FLAG_NODEPS)) {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "checking dependencies\n");
|
2011-06-07 15:05:42 -04:00
|
|
|
deps = alpm_checkdeps(handle, _alpm_db_get_pkgcache(handle->db_local),
|
|
|
|
trans->remove, trans->add, 1);
|
2007-08-12 16:26:54 -04:00
|
|
|
if(deps) {
|
2011-07-01 12:01:39 -04:00
|
|
|
handle->pm_errno = ALPM_ERR_UNSATISFIED_DEPS;
|
2007-08-12 16:26:54 -04:00
|
|
|
ret = -1;
|
2007-12-22 10:57:43 -05:00
|
|
|
if(data) {
|
|
|
|
*data = deps;
|
|
|
|
} else {
|
2007-08-12 18:17:32 -04:00
|
|
|
alpm_list_free_inner(deps, (alpm_list_fn_free)_alpm_depmiss_free);
|
|
|
|
alpm_list_free(deps);
|
2007-12-22 10:57:43 -05:00
|
|
|
}
|
2007-08-12 16:26:54 -04:00
|
|
|
goto cleanup;
|
2006-01-05 15:53:41 -05:00
|
|
|
}
|
|
|
|
}
|
2009-07-15 13:14:01 -04:00
|
|
|
for(i = trans->add; i; i = i->next) {
|
2008-02-16 11:47:22 -05:00
|
|
|
/* update download size field */
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *spkg = i->data;
|
2008-04-26 14:03:53 -04:00
|
|
|
if(compute_download_size(spkg) != 0) {
|
|
|
|
ret = -1;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2008-02-16 11:47:22 -05:00
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-03-04 05:16:36 -05:00
|
|
|
cleanup:
|
2009-01-26 07:48:39 -05:00
|
|
|
alpm_list_free(unresolvable);
|
2009-09-12 14:50:03 -04:00
|
|
|
alpm_list_free(remove);
|
2006-03-04 05:16:36 -05:00
|
|
|
|
2011-03-20 20:45:57 -04:00
|
|
|
return ret;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2007-10-19 13:17:54 -04:00
|
|
|
/** Returns the size of the files that will be downloaded to install a
|
|
|
|
* package.
|
|
|
|
* @param newpkg the new package to upgrade to
|
|
|
|
* @return the size of the download
|
|
|
|
*/
|
2011-06-28 09:26:39 -04:00
|
|
|
off_t SYMEXPORT alpm_pkg_download_size(alpm_pkg_t *newpkg)
|
2007-10-19 13:17:54 -04:00
|
|
|
{
|
2010-05-05 18:07:37 -04:00
|
|
|
if(!(newpkg->infolevel & INFRQ_DSIZE)) {
|
|
|
|
compute_download_size(newpkg);
|
|
|
|
}
|
2011-03-20 20:45:57 -04:00
|
|
|
return newpkg->download_size;
|
2007-10-19 13:17:54 -04:00
|
|
|
}
|
|
|
|
|
2009-04-11 15:13:03 -04:00
|
|
|
static int endswith(const char *filename, const char *extension)
|
2009-02-19 13:12:34 -05:00
|
|
|
{
|
2009-04-11 15:13:03 -04:00
|
|
|
const char *s = filename + strlen(filename) - strlen(extension);
|
2011-03-20 20:45:57 -04:00
|
|
|
return strcmp(s, extension) == 0;
|
2009-02-19 13:12:34 -05:00
|
|
|
}
|
|
|
|
|
2007-10-19 13:17:53 -04:00
|
|
|
/** Applies delta files to create an upgraded package file.
|
|
|
|
*
|
|
|
|
* All intermediate files are deleted, leaving only the starting and
|
|
|
|
* ending package files.
|
|
|
|
*
|
2011-06-07 14:15:43 -04:00
|
|
|
* @param handle the context handle
|
2007-10-19 13:17:53 -04:00
|
|
|
*
|
|
|
|
* @return 0 if all delta files were able to be applied, 1 otherwise.
|
|
|
|
*/
|
2011-06-28 00:04:00 -04:00
|
|
|
static int apply_deltas(alpm_handle_t *handle)
|
2007-10-19 13:17:53 -04:00
|
|
|
{
|
2008-02-27 10:09:49 -05:00
|
|
|
alpm_list_t *i;
|
2011-09-01 17:00:48 -04:00
|
|
|
int deltas_found = 0, ret = 0;
|
2011-06-07 14:15:43 -04:00
|
|
|
const char *cachedir = _alpm_filecache_setup(handle);
|
2011-06-28 09:27:16 -04:00
|
|
|
alpm_trans_t *trans = handle->trans;
|
2007-10-19 13:17:53 -04:00
|
|
|
|
2009-07-15 13:14:01 -04:00
|
|
|
for(i = trans->add; i; i = i->next) {
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *spkg = i->data;
|
2008-02-27 10:09:49 -05:00
|
|
|
alpm_list_t *delta_path = spkg->delta_path;
|
|
|
|
alpm_list_t *dlts = NULL;
|
2007-10-19 13:17:53 -04:00
|
|
|
|
2008-02-27 10:09:49 -05:00
|
|
|
if(!delta_path) {
|
|
|
|
continue;
|
|
|
|
}
|
2007-10-19 13:17:53 -04:00
|
|
|
|
2011-09-01 17:00:48 -04:00
|
|
|
if(!deltas_found) {
|
|
|
|
/* only show this if we actually have deltas to apply, and it is before
|
|
|
|
* the very first one */
|
2011-09-01 18:35:50 -04:00
|
|
|
EVENT(handle, ALPM_EVENT_DELTA_PATCHES_START, NULL, NULL);
|
2011-09-01 17:00:48 -04:00
|
|
|
deltas_found = 1;
|
|
|
|
}
|
|
|
|
|
2008-02-27 10:09:49 -05:00
|
|
|
for(dlts = delta_path; dlts; dlts = dlts->next) {
|
2011-06-28 00:38:38 -04:00
|
|
|
alpm_delta_t *d = dlts->data;
|
2008-02-27 10:09:49 -05:00
|
|
|
char *delta, *from, *to;
|
|
|
|
char command[PATH_MAX];
|
2009-10-11 15:02:20 -04:00
|
|
|
size_t len = 0;
|
2007-10-19 13:17:53 -04:00
|
|
|
|
2011-06-07 14:15:43 -04:00
|
|
|
delta = _alpm_filecache_find(handle, d->delta);
|
2008-02-27 10:09:49 -05:00
|
|
|
/* the initial package might be in a different cachedir */
|
|
|
|
if(dlts == delta_path) {
|
2011-06-07 14:15:43 -04:00
|
|
|
from = _alpm_filecache_find(handle, d->from);
|
2007-10-19 13:17:53 -04:00
|
|
|
} else {
|
2008-02-27 10:09:49 -05:00
|
|
|
/* len = cachedir len + from len + '/' + null */
|
|
|
|
len = strlen(cachedir) + strlen(d->from) + 2;
|
2011-07-01 12:01:39 -04:00
|
|
|
CALLOC(from, len, sizeof(char), RET_ERR(handle, ALPM_ERR_MEMORY, 1));
|
2008-02-27 10:09:49 -05:00
|
|
|
snprintf(from, len, "%s/%s", cachedir, d->from);
|
2007-10-19 13:17:53 -04:00
|
|
|
}
|
2008-02-27 10:09:49 -05:00
|
|
|
len = strlen(cachedir) + strlen(d->to) + 2;
|
2011-07-01 12:01:39 -04:00
|
|
|
CALLOC(to, len, sizeof(char), RET_ERR(handle, ALPM_ERR_MEMORY, 1));
|
2008-02-27 10:09:49 -05:00
|
|
|
snprintf(to, len, "%s/%s", cachedir, d->to);
|
2007-10-19 13:17:53 -04:00
|
|
|
|
2008-02-27 10:09:49 -05:00
|
|
|
/* build the patch command */
|
2009-02-19 13:12:34 -05:00
|
|
|
if(endswith(to, ".gz")) {
|
2009-05-21 18:24:26 -04:00
|
|
|
/* special handling for gzip : we disable timestamp with -n option */
|
|
|
|
snprintf(command, PATH_MAX, "xdelta3 -d -q -R -c -s %s %s | gzip -n > %s", from, delta, to);
|
|
|
|
} else {
|
|
|
|
snprintf(command, PATH_MAX, "xdelta3 -d -q -s %s %s %s", from, delta, to);
|
2009-02-19 13:12:34 -05:00
|
|
|
}
|
2008-02-27 10:09:49 -05:00
|
|
|
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "command: %s\n", command);
|
2008-02-27 10:09:49 -05:00
|
|
|
|
2011-09-01 18:35:50 -04:00
|
|
|
EVENT(handle, ALPM_EVENT_DELTA_PATCH_START, d->to, d->delta);
|
2008-02-27 10:09:49 -05:00
|
|
|
|
|
|
|
int retval = system(command);
|
|
|
|
if(retval == 0) {
|
2011-09-01 18:35:50 -04:00
|
|
|
EVENT(handle, ALPM_EVENT_DELTA_PATCH_DONE, NULL, NULL);
|
2008-02-27 10:09:49 -05:00
|
|
|
|
|
|
|
/* delete the delta file */
|
|
|
|
unlink(delta);
|
|
|
|
|
|
|
|
/* Delete the 'from' package but only if it is an intermediate
|
|
|
|
* package. The starting 'from' package should be kept, just
|
|
|
|
* as if deltas were not used. */
|
|
|
|
if(dlts != delta_path) {
|
|
|
|
unlink(from);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
FREE(from);
|
|
|
|
FREE(to);
|
|
|
|
FREE(delta);
|
|
|
|
|
|
|
|
if(retval != 0) {
|
|
|
|
/* one delta failed for this package, cancel the remaining ones */
|
2011-09-01 18:35:50 -04:00
|
|
|
EVENT(handle, ALPM_EVENT_DELTA_PATCH_FAILED, NULL, NULL);
|
2011-07-01 12:01:39 -04:00
|
|
|
handle->pm_errno = ALPM_ERR_DLT_PATCHFAILED;
|
2008-02-27 10:09:49 -05:00
|
|
|
ret = 1;
|
|
|
|
break;
|
2007-10-19 13:17:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-09-01 17:00:48 -04:00
|
|
|
if(deltas_found) {
|
2011-09-01 18:35:50 -04:00
|
|
|
EVENT(handle, ALPM_EVENT_DELTA_PATCHES_DONE, NULL, NULL);
|
2011-09-01 17:00:48 -04:00
|
|
|
}
|
2007-10-19 13:17:53 -04:00
|
|
|
|
2011-03-20 20:45:57 -04:00
|
|
|
return ret;
|
2007-10-19 13:17:53 -04:00
|
|
|
}
|
|
|
|
|
2011-09-01 18:16:56 -04:00
|
|
|
/**
|
|
|
|
* Prompts to delete the file now that we know it is invalid.
|
|
|
|
* @param handle the context handle
|
2008-12-07 12:58:24 -05:00
|
|
|
* @param filename the absolute path of the file to test
|
2011-08-08 20:55:44 -04:00
|
|
|
* @param reason an error code indicating the reason for package invalidity
|
2007-10-19 13:17:52 -04:00
|
|
|
*
|
2011-08-08 20:42:52 -04:00
|
|
|
* @return 1 if file was removed, 0 otherwise
|
2007-10-19 13:17:52 -04:00
|
|
|
*/
|
2011-09-01 18:16:56 -04:00
|
|
|
static int prompt_to_delete(alpm_handle_t *handle, const char *filepath,
|
2011-08-08 20:55:44 -04:00
|
|
|
enum _alpm_errno_t reason)
|
2007-10-19 13:17:52 -04:00
|
|
|
{
|
2011-08-08 20:42:52 -04:00
|
|
|
int doremove = 0;
|
2011-09-01 18:35:50 -04:00
|
|
|
QUESTION(handle, ALPM_QUESTION_CORRUPTED_PKG, (char *)filepath,
|
2011-08-08 20:55:44 -04:00
|
|
|
&reason, NULL, &doremove);
|
2011-08-08 20:42:52 -04:00
|
|
|
if(doremove) {
|
|
|
|
unlink(filepath);
|
2007-10-19 13:17:52 -04:00
|
|
|
}
|
2011-08-08 20:42:52 -04:00
|
|
|
return doremove;
|
2007-10-19 13:17:52 -04:00
|
|
|
}
|
|
|
|
|
2011-09-20 16:23:21 -04:00
|
|
|
static int validate_deltas(alpm_handle_t *handle, alpm_list_t *deltas)
|
2011-04-21 22:57:08 -04:00
|
|
|
{
|
2011-09-20 16:23:21 -04:00
|
|
|
alpm_list_t *i, *errors = NULL;
|
2011-04-21 22:57:08 -04:00
|
|
|
|
|
|
|
if(!deltas) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check integrity of deltas */
|
2011-09-01 18:35:50 -04:00
|
|
|
EVENT(handle, ALPM_EVENT_DELTA_INTEGRITY_START, NULL, NULL);
|
2011-04-21 22:57:08 -04:00
|
|
|
for(i = deltas; i; i = i->next) {
|
2011-09-19 15:32:53 -04:00
|
|
|
alpm_delta_t *d = i->data;
|
2011-06-16 12:49:34 -04:00
|
|
|
char *filepath = _alpm_filecache_find(handle, d->delta);
|
2011-04-21 22:57:08 -04:00
|
|
|
|
2011-09-01 17:00:48 -04:00
|
|
|
if(_alpm_test_checksum(filepath, d->delta_md5, ALPM_CSUM_MD5)) {
|
2011-09-20 16:23:21 -04:00
|
|
|
errors = alpm_list_add(errors, filepath);
|
|
|
|
} else {
|
|
|
|
FREE(filepath);
|
2011-04-21 22:57:08 -04:00
|
|
|
}
|
|
|
|
}
|
2011-09-20 16:23:21 -04:00
|
|
|
EVENT(handle, ALPM_EVENT_DELTA_INTEGRITY_DONE, NULL, NULL);
|
|
|
|
|
2011-04-21 22:57:08 -04:00
|
|
|
if(errors) {
|
2011-09-20 16:23:21 -04:00
|
|
|
for(i = errors; i; i = i->next) {
|
|
|
|
char *filepath = i->data;
|
|
|
|
prompt_to_delete(handle, filepath, ALPM_ERR_DLT_INVALID);
|
|
|
|
FREE(filepath);
|
|
|
|
}
|
|
|
|
alpm_list_free(errors);
|
2011-07-01 12:01:39 -04:00
|
|
|
handle->pm_errno = ALPM_ERR_DLT_INVALID;
|
2011-04-21 22:57:08 -04:00
|
|
|
return -1;
|
|
|
|
}
|
2011-09-01 17:00:48 -04:00
|
|
|
return 0;
|
2011-04-21 22:57:08 -04:00
|
|
|
}
|
|
|
|
|
2011-06-28 00:04:00 -04:00
|
|
|
static int download_files(alpm_handle_t *handle, alpm_list_t **deltas)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2011-04-21 22:40:00 -04:00
|
|
|
const char *cachedir;
|
|
|
|
alpm_list_t *i, *j;
|
|
|
|
alpm_list_t *files = NULL;
|
2011-08-16 20:10:22 -04:00
|
|
|
int errors = 0;
|
2005-04-14 17:07:38 -04:00
|
|
|
|
2011-06-07 14:15:43 -04:00
|
|
|
cachedir = _alpm_filecache_setup(handle);
|
2011-06-03 14:18:36 -04:00
|
|
|
handle->trans->state = STATE_DOWNLOADING;
|
2007-11-09 19:54:19 -05:00
|
|
|
|
2008-06-02 00:10:30 -04:00
|
|
|
/* Total progress - figure out the total download size if required to
|
|
|
|
* pass to the callback. This function is called once, and it is up to the
|
|
|
|
* frontend to compute incremental progress. */
|
|
|
|
if(handle->totaldlcb) {
|
|
|
|
off_t total_size = (off_t)0;
|
|
|
|
/* sum up the download size for each package and store total */
|
2011-06-03 14:18:36 -04:00
|
|
|
for(i = handle->trans->add; i; i = i->next) {
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *spkg = i->data;
|
2008-06-02 00:10:30 -04:00
|
|
|
total_size += spkg->download_size;
|
|
|
|
}
|
|
|
|
handle->totaldlcb(total_size);
|
|
|
|
}
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
/* group sync records by repository and download */
|
|
|
|
for(i = handle->dbs_sync; i; i = i->next) {
|
2011-06-28 00:11:43 -04:00
|
|
|
alpm_db_t *current = i->data;
|
2006-10-15 15:31:03 -04:00
|
|
|
|
2011-06-03 14:18:36 -04:00
|
|
|
for(j = handle->trans->add; j; j = j->next) {
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *spkg = j->data;
|
2006-10-15 15:31:03 -04:00
|
|
|
|
2008-05-11 13:00:18 -04:00
|
|
|
if(spkg->origin != PKG_FROM_FILE && current == spkg->origin_data.db) {
|
2009-02-19 13:12:34 -05:00
|
|
|
alpm_list_t *delta_path = spkg->delta_path;
|
|
|
|
if(delta_path) {
|
|
|
|
/* using deltas */
|
2011-04-21 22:40:00 -04:00
|
|
|
alpm_list_t *dlts;
|
2009-02-19 13:12:34 -05:00
|
|
|
for(dlts = delta_path; dlts; dlts = dlts->next) {
|
2011-06-28 00:38:38 -04:00
|
|
|
alpm_delta_t *delta = dlts->data;
|
2011-04-21 22:40:00 -04:00
|
|
|
if(delta->download_size != 0) {
|
2011-06-24 00:18:01 -04:00
|
|
|
struct dload_payload *dpayload;
|
|
|
|
|
|
|
|
CALLOC(dpayload, 1, sizeof(*dpayload), RET_ERR(handle, ALPM_ERR_MEMORY, -1));
|
2011-08-19 11:43:27 -04:00
|
|
|
STRDUP(dpayload->remote_name, delta->delta, RET_ERR(handle, ALPM_ERR_MEMORY, -1));
|
2011-06-24 00:18:01 -04:00
|
|
|
dpayload->max_size = delta->download_size;
|
|
|
|
|
|
|
|
files = alpm_list_add(files, dpayload);
|
2007-10-19 13:17:53 -04:00
|
|
|
}
|
2009-02-19 13:12:34 -05:00
|
|
|
/* keep a list of all the delta files for md5sums */
|
2011-04-21 22:40:00 -04:00
|
|
|
*deltas = alpm_list_add(*deltas, delta);
|
2009-02-19 13:12:34 -05:00
|
|
|
}
|
|
|
|
|
2011-04-21 22:40:00 -04:00
|
|
|
} else if(spkg->download_size != 0) {
|
2011-06-24 00:18:01 -04:00
|
|
|
struct dload_payload *payload;
|
|
|
|
|
|
|
|
ASSERT(spkg->filename != NULL, RET_ERR(handle, ALPM_ERR_PKG_INVALID_NAME, -1));
|
|
|
|
CALLOC(payload, 1, sizeof(*payload), RET_ERR(handle, ALPM_ERR_MEMORY, -1));
|
2011-08-19 11:43:27 -04:00
|
|
|
STRDUP(payload->remote_name, spkg->filename, RET_ERR(handle, ALPM_ERR_MEMORY, -1));
|
2011-09-02 20:26:07 -04:00
|
|
|
payload->max_size = spkg->size;
|
2011-06-24 00:18:01 -04:00
|
|
|
|
|
|
|
files = alpm_list_add(files, payload);
|
2006-10-15 15:31:03 -04:00
|
|
|
}
|
2009-02-19 13:12:34 -05:00
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(files) {
|
2011-09-27 08:53:38 -04:00
|
|
|
if(!current->servers) {
|
|
|
|
handle->pm_errno = ALPM_ERR_SERVER_NONE;
|
|
|
|
_alpm_log(handle, ALPM_LOG_ERROR, "%s: %s\n",
|
|
|
|
alpm_strerror(handle->pm_errno), current->treename);
|
|
|
|
errors++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-09-01 18:35:50 -04:00
|
|
|
EVENT(handle, ALPM_EVENT_RETRIEVE_START, current->treename, NULL);
|
2011-04-21 19:31:19 -04:00
|
|
|
for(j = files; j; j = j->next) {
|
2011-06-24 00:18:01 -04:00
|
|
|
struct dload_payload *payload = j->data;
|
2011-04-21 22:40:00 -04:00
|
|
|
alpm_list_t *server;
|
2011-05-05 10:58:00 -04:00
|
|
|
int ret = -1;
|
2011-04-21 22:40:00 -04:00
|
|
|
for(server = current->servers; server; server = server->next) {
|
|
|
|
const char *server_url = server->data;
|
2011-04-21 19:31:19 -04:00
|
|
|
size_t len;
|
|
|
|
|
|
|
|
/* print server + filename into a buffer */
|
2011-08-19 11:43:27 -04:00
|
|
|
len = strlen(server_url) + strlen(payload->remote_name) + 2;
|
2011-06-24 00:18:01 -04:00
|
|
|
CALLOC(payload->fileurl, len, sizeof(char), RET_ERR(handle, ALPM_ERR_MEMORY, -1));
|
2011-08-19 11:43:27 -04:00
|
|
|
snprintf(payload->fileurl, len, "%s/%s", server_url, payload->remote_name);
|
2011-06-30 21:19:25 -04:00
|
|
|
payload->handle = handle;
|
|
|
|
payload->allow_resume = 1;
|
2011-04-21 19:31:19 -04:00
|
|
|
|
2011-06-30 21:19:25 -04:00
|
|
|
ret = _alpm_download(payload, cachedir, NULL);
|
2011-04-21 19:31:19 -04:00
|
|
|
if(ret != -1) {
|
|
|
|
break;
|
|
|
|
}
|
2011-05-05 10:58:00 -04:00
|
|
|
}
|
|
|
|
if(ret == -1) {
|
2011-08-16 20:10:22 -04:00
|
|
|
errors++;
|
2011-08-15 13:43:34 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_WARNING, _("failed to retrieve some files from %s\n"),
|
|
|
|
current->treename);
|
2011-04-21 19:31:19 -04:00
|
|
|
}
|
|
|
|
}
|
2010-05-05 18:07:37 -04:00
|
|
|
|
2011-06-24 00:18:01 -04:00
|
|
|
alpm_list_free_inner(files, (alpm_list_fn_free)_alpm_dload_payload_free);
|
|
|
|
alpm_list_free(files);
|
|
|
|
files = NULL;
|
2006-10-15 15:31:03 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-03 14:18:36 -04:00
|
|
|
for(j = handle->trans->add; j; j = j->next) {
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *pkg = j->data;
|
2010-05-14 15:58:31 -04:00
|
|
|
pkg->infolevel &= ~INFRQ_DSIZE;
|
|
|
|
pkg->download_size = 0;
|
|
|
|
}
|
|
|
|
|
2008-06-02 00:10:30 -04:00
|
|
|
/* clear out value to let callback know we are done */
|
|
|
|
if(handle->totaldlcb) {
|
|
|
|
handle->totaldlcb(0);
|
|
|
|
}
|
2011-08-15 13:43:34 -04:00
|
|
|
|
2011-08-16 20:10:22 -04:00
|
|
|
return errors;
|
2011-04-21 22:40:00 -04:00
|
|
|
}
|
|
|
|
|
2011-09-20 17:52:18 -04:00
|
|
|
static int check_validity(alpm_handle_t *handle,
|
2011-09-20 00:47:06 -04:00
|
|
|
size_t total, size_t total_bytes)
|
2011-04-21 22:40:00 -04:00
|
|
|
{
|
2011-09-20 17:52:18 -04:00
|
|
|
struct validity {
|
|
|
|
alpm_pkg_t *pkg;
|
|
|
|
char *path;
|
|
|
|
alpm_siglist_t *siglist;
|
|
|
|
alpm_siglevel_t level;
|
|
|
|
enum _alpm_errno_t error;
|
|
|
|
};
|
2011-09-20 00:47:06 -04:00
|
|
|
size_t current = 0, current_bytes = 0;
|
2011-09-20 17:52:18 -04:00
|
|
|
alpm_list_t *i, *errors = NULL;
|
2011-08-29 17:27:00 -04:00
|
|
|
|
2007-10-19 13:17:53 -04:00
|
|
|
/* Check integrity of packages */
|
2011-09-01 18:35:50 -04:00
|
|
|
EVENT(handle, ALPM_EVENT_INTEGRITY_START, NULL, NULL);
|
2006-10-15 15:31:03 -04:00
|
|
|
|
2011-09-20 00:47:06 -04:00
|
|
|
for(i = handle->trans->add; i; i = i->next, current++) {
|
2011-09-20 17:52:18 -04:00
|
|
|
struct validity v = { i->data, NULL, NULL, 0, 0 };
|
2011-08-29 17:27:00 -04:00
|
|
|
int percent = (int)(((double)current_bytes / total_bytes) * 100);
|
2011-04-22 00:39:01 -04:00
|
|
|
|
2011-09-01 18:35:50 -04:00
|
|
|
PROGRESS(handle, ALPM_PROGRESS_INTEGRITY_START, "", percent,
|
2011-09-20 00:47:06 -04:00
|
|
|
total, current);
|
2011-09-20 17:52:18 -04:00
|
|
|
if(v.pkg->origin == PKG_FROM_FILE) {
|
Use sync.c for upgrade transaction prepare and commit
This patch utilizes the power of sync.c to fix FS#3492 and FS#5798.
Now an upgrade transaction is just a sync transaction internally (in alpm),
so all sync features are available with -U as well:
* conflict resolving
* sync dependencies from sync repos
* remove unresolvable targets
See http://www.archlinux.org/pipermail/pacman-dev/2009-June/008725.html
for the concept.
We use "mixed" target list, where PKG_FROM_FILE origin indicates local
package file, PKG_FROM_CACHE indicates sync package. The front-end can add
only one type of packages (depending on transaction type) atm, but if alpm
resolves dependencies for -U, we may get a real mixed trans->packages list.
_alpm_pkg_free_trans() was modified so that it can handle both target types
_alpm_add_prepare() was removed, we use _alpm_sync_prepare() instead
_alpm_add_commit() was renamed to _alpm_upgrade_targets()
sync.c (and deps.c) was modified slightly to handle mixed target lists,
the modifications are straightforward. There is one notable change here: We
don't create new upgrade trans in sync.c, we replace the pkgcache entries
with the loaded package files in the target list (this is a bit hackish) and
call _alpm_upgrade_targets(). This implies a TODO (pkg->origin_data.db is
not accessible anymore), but it doesn't hurt anything with pacman front-end,
so it will be fixed later (otherwise this patch would be huge).
I updated the documentation of -U and I added a new pactest, upgrade090.py,
to test the syncdeps feature of -U.
Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu>
Signed-off-by: Dan McGee <dan@archlinux.org>
2009-06-09 11:23:46 -04:00
|
|
|
continue; /* pkg_load() has been already called, this package is valid */
|
|
|
|
}
|
|
|
|
|
2011-09-20 17:52:18 -04:00
|
|
|
current_bytes += v.pkg->size;
|
|
|
|
v.path = _alpm_filecache_find(handle, v.pkg->filename);
|
|
|
|
v.level = alpm_db_get_siglevel(alpm_pkg_get_db(v.pkg));
|
2011-03-25 21:40:16 -04:00
|
|
|
|
2011-09-20 17:52:18 -04:00
|
|
|
if(_alpm_pkg_validate_internal(handle, v.path, v.pkg,
|
|
|
|
v.level, &v.siglist) == -1) {
|
|
|
|
v.error = handle->pm_errno;
|
|
|
|
struct validity *invalid = malloc(sizeof(struct validity));
|
|
|
|
memcpy(invalid, &v, sizeof(struct validity));
|
|
|
|
errors = alpm_list_add(errors, invalid);
|
|
|
|
} else {
|
|
|
|
alpm_siglist_cleanup(v.siglist);
|
|
|
|
free(v.siglist);
|
|
|
|
free(v.path);
|
2006-10-15 15:31:03 -04:00
|
|
|
}
|
2011-09-19 22:01:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
PROGRESS(handle, ALPM_PROGRESS_INTEGRITY_START, "", 100,
|
2011-09-20 00:47:06 -04:00
|
|
|
total, current);
|
2011-09-19 22:01:26 -04:00
|
|
|
EVENT(handle, ALPM_EVENT_INTEGRITY_DONE, NULL, NULL);
|
|
|
|
|
|
|
|
if(errors) {
|
2011-09-20 17:52:18 -04:00
|
|
|
int tryagain = 0;
|
|
|
|
for(i = errors; i; i = i->next) {
|
|
|
|
struct validity *v = i->data;
|
|
|
|
if(v->error == ALPM_ERR_PKG_INVALID_SIG) {
|
|
|
|
int retry = _alpm_process_siglist(handle, v->pkg->name, v->siglist,
|
|
|
|
v->level & ALPM_SIG_PACKAGE_OPTIONAL,
|
|
|
|
v->level & ALPM_SIG_PACKAGE_MARGINAL_OK,
|
|
|
|
v->level & ALPM_SIG_PACKAGE_UNKNOWN_OK);
|
|
|
|
tryagain += retry;
|
|
|
|
} else if(v->error == ALPM_ERR_PKG_INVALID_CHECKSUM) {
|
|
|
|
prompt_to_delete(handle, v->path, v->error);
|
|
|
|
}
|
|
|
|
alpm_siglist_cleanup(v->siglist);
|
|
|
|
free(v->siglist);
|
|
|
|
free(v->path);
|
|
|
|
free(v);
|
2011-09-19 22:01:26 -04:00
|
|
|
}
|
2011-09-20 17:52:18 -04:00
|
|
|
alpm_list_free(errors);
|
|
|
|
|
|
|
|
if(tryagain == 0) {
|
|
|
|
if(!handle->pm_errno) {
|
|
|
|
RET_ERR(handle, ALPM_ERR_PKG_INVALID, -1);
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
/* we were told at least once we can try again */
|
|
|
|
return 1;
|
2011-09-19 22:01:26 -04:00
|
|
|
}
|
|
|
|
|
2011-09-20 00:47:06 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int load_packages(alpm_handle_t *handle, alpm_list_t **data,
|
|
|
|
size_t total, size_t total_bytes)
|
|
|
|
{
|
|
|
|
size_t current = 0, current_bytes = 0;
|
|
|
|
int errors = 0;
|
|
|
|
alpm_list_t *i;
|
2011-09-19 22:01:26 -04:00
|
|
|
|
|
|
|
/* load packages from disk now that they are known-valid */
|
|
|
|
EVENT(handle, ALPM_EVENT_LOAD_START, NULL, NULL);
|
|
|
|
|
2011-09-20 00:47:06 -04:00
|
|
|
for(i = handle->trans->add; i; i = i->next, current++) {
|
2011-09-19 22:01:26 -04:00
|
|
|
alpm_pkg_t *spkg = i->data;
|
|
|
|
char *filepath;
|
|
|
|
int percent = (int)(((double)current_bytes / total_bytes) * 100);
|
|
|
|
|
|
|
|
PROGRESS(handle, ALPM_PROGRESS_LOAD_START, "", percent,
|
2011-09-20 00:47:06 -04:00
|
|
|
total, current);
|
2011-09-19 22:01:26 -04:00
|
|
|
if(spkg->origin == PKG_FROM_FILE) {
|
|
|
|
continue; /* pkg_load() has been already called, this package is valid */
|
|
|
|
}
|
|
|
|
|
|
|
|
current_bytes += spkg->size;
|
|
|
|
filepath = _alpm_filecache_find(handle, spkg->filename);
|
|
|
|
|
|
|
|
/* load the package file and replace pkgcache entry with it in the target list */
|
|
|
|
/* TODO: alpm_pkg_get_db() will not work on this target anymore */
|
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG,
|
|
|
|
"replacing pkgcache entry with package file for target %s\n",
|
|
|
|
spkg->name);
|
2011-09-19 21:40:32 -04:00
|
|
|
alpm_pkg_t *pkgfile =_alpm_pkg_load_internal(handle, filepath, 1);
|
|
|
|
if(!pkgfile) {
|
|
|
|
errors++;
|
|
|
|
*data = alpm_list_add(*data, strdup(spkg->filename));
|
2011-09-20 00:28:05 -04:00
|
|
|
free(filepath);
|
2011-09-19 21:40:32 -04:00
|
|
|
continue;
|
|
|
|
}
|
2011-09-20 00:28:05 -04:00
|
|
|
free(filepath);
|
Use sync.c for upgrade transaction prepare and commit
This patch utilizes the power of sync.c to fix FS#3492 and FS#5798.
Now an upgrade transaction is just a sync transaction internally (in alpm),
so all sync features are available with -U as well:
* conflict resolving
* sync dependencies from sync repos
* remove unresolvable targets
See http://www.archlinux.org/pipermail/pacman-dev/2009-June/008725.html
for the concept.
We use "mixed" target list, where PKG_FROM_FILE origin indicates local
package file, PKG_FROM_CACHE indicates sync package. The front-end can add
only one type of packages (depending on transaction type) atm, but if alpm
resolves dependencies for -U, we may get a real mixed trans->packages list.
_alpm_pkg_free_trans() was modified so that it can handle both target types
_alpm_add_prepare() was removed, we use _alpm_sync_prepare() instead
_alpm_add_commit() was renamed to _alpm_upgrade_targets()
sync.c (and deps.c) was modified slightly to handle mixed target lists,
the modifications are straightforward. There is one notable change here: We
don't create new upgrade trans in sync.c, we replace the pkgcache entries
with the loaded package files in the target list (this is a bit hackish) and
call _alpm_upgrade_targets(). This implies a TODO (pkg->origin_data.db is
not accessible anymore), but it doesn't hurt anything with pacman front-end,
so it will be fixed later (otherwise this patch would be huge).
I updated the documentation of -U and I added a new pactest, upgrade090.py,
to test the syncdeps feature of -U.
Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu>
Signed-off-by: Dan McGee <dan@archlinux.org>
2009-06-09 11:23:46 -04:00
|
|
|
pkgfile->reason = spkg->reason; /* copy over install reason */
|
|
|
|
i->data = pkgfile;
|
|
|
|
_alpm_pkg_free_trans(spkg); /* spkg has been removed from the target list */
|
2006-10-15 15:31:03 -04:00
|
|
|
}
|
2008-12-17 05:55:07 -05:00
|
|
|
|
2011-09-19 22:01:26 -04:00
|
|
|
PROGRESS(handle, ALPM_PROGRESS_LOAD_START, "", 100,
|
2011-09-20 00:47:06 -04:00
|
|
|
total, current);
|
2011-09-19 22:01:26 -04:00
|
|
|
EVENT(handle, ALPM_EVENT_LOAD_DONE, NULL, NULL);
|
2008-12-17 05:55:07 -05:00
|
|
|
|
2008-02-26 18:50:17 -05:00
|
|
|
if(errors) {
|
2011-08-08 20:42:52 -04:00
|
|
|
if(!handle->pm_errno) {
|
|
|
|
RET_ERR(handle, ALPM_ERR_PKG_INVALID, -1);
|
|
|
|
}
|
|
|
|
return -1;
|
2006-10-15 15:31:03 -04:00
|
|
|
}
|
2011-01-11 22:12:08 -05:00
|
|
|
|
2011-09-20 00:47:06 -04:00
|
|
|
return 0;
|
|
|
|
}
|
2009-01-02 11:43:05 -05:00
|
|
|
|
2011-09-20 00:47:06 -04:00
|
|
|
int _alpm_sync_commit(alpm_handle_t *handle, alpm_list_t **data)
|
|
|
|
{
|
|
|
|
alpm_list_t *i, *deltas = NULL;
|
|
|
|
size_t total = 0, total_bytes = 0;
|
|
|
|
alpm_trans_t *trans = handle->trans;
|
|
|
|
|
|
|
|
if(download_files(handle, &deltas)) {
|
|
|
|
alpm_list_free(deltas);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-09-20 16:23:21 -04:00
|
|
|
if(validate_deltas(handle, deltas)) {
|
2011-09-20 00:47:06 -04:00
|
|
|
alpm_list_free(deltas);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
alpm_list_free(deltas);
|
|
|
|
|
|
|
|
/* Use the deltas to generate the packages */
|
|
|
|
if(apply_deltas(handle)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get the total size of all packages so we can adjust the progress bar more
|
|
|
|
* realistically if there are small and huge packages involved */
|
|
|
|
for(i = trans->add; i; i = i->next) {
|
|
|
|
alpm_pkg_t *spkg = i->data;
|
|
|
|
if(spkg->origin != PKG_FROM_FILE) {
|
|
|
|
total_bytes += spkg->size;
|
|
|
|
}
|
|
|
|
total++;
|
|
|
|
}
|
|
|
|
/* this can only happen maliciously */
|
|
|
|
total_bytes = total_bytes ? total_bytes : 1;
|
|
|
|
|
2011-09-20 17:52:18 -04:00
|
|
|
/* this one is special: -1 is failure, 1 is retry, 0 is success */
|
|
|
|
while(1) {
|
|
|
|
int ret = check_validity(handle, total, total_bytes);
|
|
|
|
if(ret == 0) {
|
|
|
|
break;
|
|
|
|
} else if(ret < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
2011-09-20 00:47:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if(trans->flags & ALPM_TRANS_FLAG_DOWNLOADONLY) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(load_packages(handle, data, total, total_bytes)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
trans->state = STATE_COMMITING;
|
2009-01-02 11:43:05 -05:00
|
|
|
|
|
|
|
/* fileconflict check */
|
2011-07-01 12:01:39 -04:00
|
|
|
if(!(trans->flags & ALPM_TRANS_FLAG_FORCE)) {
|
2011-09-01 18:35:50 -04:00
|
|
|
EVENT(handle, ALPM_EVENT_FILECONFLICTS_START, NULL, NULL);
|
2009-01-02 11:43:05 -05:00
|
|
|
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "looking for file conflicts\n");
|
2011-06-03 14:18:36 -04:00
|
|
|
alpm_list_t *conflict = _alpm_db_find_fileconflicts(handle,
|
|
|
|
trans->add, trans->remove);
|
2009-01-02 11:43:05 -05:00
|
|
|
if(conflict) {
|
|
|
|
if(data) {
|
|
|
|
*data = conflict;
|
|
|
|
} else {
|
|
|
|
alpm_list_free_inner(conflict, (alpm_list_fn_free)_alpm_fileconflict_free);
|
|
|
|
alpm_list_free(conflict);
|
|
|
|
}
|
2011-07-01 12:01:39 -04:00
|
|
|
RET_ERR(handle, ALPM_ERR_FILE_CONFLICTS, -1);
|
2009-01-02 11:43:05 -05:00
|
|
|
}
|
|
|
|
|
2011-09-01 18:35:50 -04:00
|
|
|
EVENT(handle, ALPM_EVENT_FILECONFLICTS_DONE, NULL, NULL);
|
2005-04-13 17:01:28 -04:00
|
|
|
}
|
2009-01-02 11:43:05 -05:00
|
|
|
|
2010-11-16 00:57:39 -05:00
|
|
|
/* check available disk space */
|
2010-11-16 01:54:30 -05:00
|
|
|
if(handle->checkspace) {
|
2011-09-01 18:35:50 -04:00
|
|
|
EVENT(handle, ALPM_EVENT_DISKSPACE_START, NULL, NULL);
|
2010-11-16 02:07:43 -05:00
|
|
|
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "checking available disk space\n");
|
2011-06-03 13:36:13 -04:00
|
|
|
if(_alpm_check_diskspace(handle) == -1) {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_ERROR, "%s\n", _("not enough free disk space"));
|
2011-04-21 22:57:08 -04:00
|
|
|
return -1;
|
2010-11-16 01:54:30 -05:00
|
|
|
}
|
2010-11-16 02:07:43 -05:00
|
|
|
|
2011-09-01 18:35:50 -04:00
|
|
|
EVENT(handle, ALPM_EVENT_DISKSPACE_DONE, NULL, NULL);
|
2010-11-16 00:57:39 -05:00
|
|
|
}
|
|
|
|
|
2009-01-02 11:43:05 -05:00
|
|
|
/* remove conflicting and to-be-replaced packages */
|
2011-09-20 00:47:06 -04:00
|
|
|
if(trans->remove) {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "removing conflicting and to-be-replaced packages\n");
|
2009-01-02 11:43:05 -05:00
|
|
|
/* we want the frontend to be aware of commit details */
|
2011-09-19 14:18:42 -04:00
|
|
|
if(_alpm_remove_packages(handle, 0) == -1) {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_ERROR, _("could not commit removal transaction\n"));
|
2011-04-21 22:57:08 -04:00
|
|
|
return -1;
|
2009-01-02 11:43:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* install targets */
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "installing packages\n");
|
2011-06-03 14:18:36 -04:00
|
|
|
if(_alpm_upgrade_packages(handle) == -1) {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_ERROR, _("could not commit transaction\n"));
|
2011-04-21 22:57:08 -04:00
|
|
|
return -1;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2005-04-13 17:01:28 -04:00
|
|
|
|
2011-04-21 22:57:08 -04:00
|
|
|
return 0;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|