2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* sync.c
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2007-12-10 23:55:22 -05:00
|
|
|
* Copyright (c) 2002-2007 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>
|
2005-04-02 18:21:10 -05:00
|
|
|
#include <fcntl.h>
|
2005-03-14 20:51:43 -05:00
|
|
|
#include <string.h>
|
2007-04-29 12:47:02 -04:00
|
|
|
#include <unistd.h>
|
2006-10-15 15:31:03 -04:00
|
|
|
#include <time.h>
|
2006-03-02 14:04:40 -05:00
|
|
|
#include <dirent.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 "cache.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"
|
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"
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2008-01-27 06:24:50 -05:00
|
|
|
pmsyncpkg_t *_alpm_sync_new(pmpkgreason_t newreason, pmpkg_t *spkg, alpm_list_t *removes)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2005-04-06 17:01:40 -04:00
|
|
|
pmsyncpkg_t *sync;
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2007-10-29 02:00:52 -04:00
|
|
|
CALLOC(sync, 1, sizeof(pmsyncpkg_t), RET_ERR(PM_ERR_MEMORY, NULL));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2008-01-27 06:24:50 -05:00
|
|
|
sync->newreason = newreason;
|
2005-04-16 18:15:50 -04:00
|
|
|
sync->pkg = spkg;
|
2008-01-27 06:24:50 -05:00
|
|
|
sync->removes = removes;
|
2007-11-16 21:18:45 -05:00
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
return(sync);
|
|
|
|
}
|
|
|
|
|
2007-04-26 20:11:30 -04:00
|
|
|
void _alpm_sync_free(pmsyncpkg_t *sync)
|
2005-04-06 17:01:40 -04:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-04-24 17:36:30 -04:00
|
|
|
if(sync == NULL) {
|
|
|
|
return;
|
2005-04-06 17:01:40 -04:00
|
|
|
}
|
2005-04-24 17:36:30 -04:00
|
|
|
|
2008-01-27 06:24:50 -05:00
|
|
|
alpm_list_free(sync->removes);
|
|
|
|
sync->removes = NULL;
|
2006-10-31 01:39:59 -05:00
|
|
|
FREE(sync);
|
2005-04-06 17:01:40 -04:00
|
|
|
}
|
|
|
|
|
2006-12-29 12:04:58 -05:00
|
|
|
/* Find recommended replacements for packages during a sync.
|
|
|
|
*/
|
2008-10-23 20:05:12 -04:00
|
|
|
static int find_replacements(pmtrans_t *trans, pmdb_t *db_local, alpm_list_t *dbs_sync)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-03-03 03:13:59 -05:00
|
|
|
alpm_list_t *i, *j, *k; /* wow */
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* check for "recommended" package replacements */
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "checking for package replacements\n");
|
2005-04-16 18:15:50 -04:00
|
|
|
for(i = dbs_sync; i; i = i->next) {
|
2007-02-23 02:53:25 -05:00
|
|
|
pmdb_t *db = i->data;
|
|
|
|
|
|
|
|
/* for each db, check each package's REPLACES list */
|
2007-03-03 03:13:59 -05:00
|
|
|
for(j = _alpm_db_get_pkgcache(db); j; j = j->next) {
|
2005-03-14 20:51:43 -05:00
|
|
|
pmpkg_t *spkg = j->data;
|
2007-02-23 02:53:25 -05:00
|
|
|
|
|
|
|
for(k = alpm_pkg_get_replaces(spkg); k; k = k->next) {
|
|
|
|
const char *replacement = k->data;
|
2007-11-16 21:18:45 -05:00
|
|
|
|
2007-03-03 03:13:59 -05:00
|
|
|
pmpkg_t *lpkg = _alpm_db_get_pkgfromcache(db_local, replacement);
|
|
|
|
if(!lpkg) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "checking replacement '%s' for package '%s'\n",
|
2007-07-10 14:24:58 -04:00
|
|
|
replacement, spkg->name);
|
2007-05-10 00:11:39 -04:00
|
|
|
/* ignore if EITHER the local or replacement package are to be ignored */
|
2007-11-09 20:13:29 -05:00
|
|
|
if(_alpm_pkg_should_ignore(spkg) || _alpm_pkg_should_ignore(lpkg)) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_WARNING, _("%s-%s: ignoring package upgrade (to be replaced by %s-%s)\n"),
|
2007-03-03 03:13:59 -05:00
|
|
|
alpm_pkg_get_name(lpkg), alpm_pkg_get_version(lpkg),
|
|
|
|
alpm_pkg_get_name(spkg), alpm_pkg_get_version(spkg));
|
|
|
|
} else {
|
2008-10-23 20:05:12 -04:00
|
|
|
int doreplace = 0;
|
|
|
|
QUESTION(trans, PM_TRANS_CONV_REPLACE_PKG, lpkg, spkg, db->treename, &doreplace);
|
|
|
|
if(!doreplace) {
|
|
|
|
continue;
|
2007-08-24 18:10:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* if confirmed, add this to the 'final' list, designating 'lpkg' as
|
|
|
|
* the package to replace.
|
|
|
|
*/
|
|
|
|
pmsyncpkg_t *sync;
|
2008-01-12 15:27:13 -05:00
|
|
|
|
2007-08-24 18:10:40 -04:00
|
|
|
/* check if spkg->name is already in the packages list. */
|
2008-03-11 11:40:27 -04:00
|
|
|
/* TODO: same package name doesn't mean same package */
|
2008-10-23 20:05:12 -04:00
|
|
|
sync = _alpm_sync_find(trans->packages, alpm_pkg_get_name(spkg));
|
2007-08-24 18:10:40 -04:00
|
|
|
if(sync) {
|
2008-01-27 06:24:50 -05:00
|
|
|
/* found it -- just append to the removes list */
|
|
|
|
sync->removes = alpm_list_add(sync->removes, lpkg);
|
|
|
|
/* check the to-be-replaced package's reason field */
|
|
|
|
if(lpkg->reason == PM_PKG_REASON_EXPLICIT) {
|
|
|
|
sync->newreason = PM_PKG_REASON_EXPLICIT;
|
|
|
|
}
|
2007-08-24 18:10:40 -04:00
|
|
|
} else {
|
|
|
|
/* none found -- enter pkg into the final sync list */
|
2008-01-27 06:24:50 -05:00
|
|
|
/* copy over reason */
|
|
|
|
sync = _alpm_sync_new(alpm_pkg_get_reason(lpkg), spkg, NULL);
|
2007-08-24 18:10:40 -04:00
|
|
|
if(sync == NULL) {
|
|
|
|
pm_errno = PM_ERR_MEMORY;
|
|
|
|
return(-1);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2008-01-27 06:24:50 -05:00
|
|
|
sync->removes = alpm_list_add(NULL, lpkg);
|
2008-07-19 10:34:02 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "adding package %s-%s to the transaction targets\n",
|
|
|
|
alpm_pkg_get_name(spkg), alpm_pkg_get_version(spkg));
|
2008-10-23 20:05:12 -04:00
|
|
|
trans->packages = alpm_list_add(trans->packages, sync);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2008-02-24 18:30:21 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "%s-%s elected for removal (to be replaced by %s-%s)\n",
|
2007-08-24 18:10:40 -04:00
|
|
|
alpm_pkg_get_name(lpkg), alpm_pkg_get_version(lpkg),
|
|
|
|
alpm_pkg_get_name(spkg), alpm_pkg_get_version(spkg));
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-12-29 12:04:58 -05:00
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
*/
|
|
|
|
pmpkg_t SYMEXPORT *alpm_sync_newversion(pmpkg_t *pkg, alpm_list_t *dbs_sync)
|
|
|
|
{
|
|
|
|
alpm_list_t *i;
|
|
|
|
pmpkg_t *spkg = NULL;
|
2008-05-31 09:06:30 -04:00
|
|
|
int cmp;
|
2008-01-27 19:44:23 -05:00
|
|
|
|
|
|
|
for(i = dbs_sync; !spkg && i; i = i->next) {
|
|
|
|
spkg = _alpm_db_get_pkgfromcache(i->data, alpm_pkg_get_name(pkg));
|
|
|
|
}
|
|
|
|
|
|
|
|
if(spkg == NULL) {
|
|
|
|
_alpm_log(PM_LOG_DEBUG, "'%s' not found in sync db => no upgrade\n",
|
|
|
|
alpm_pkg_get_name(pkg));
|
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* compare versions and see if spkg is an upgrade */
|
2008-05-31 09:06:30 -04:00
|
|
|
cmp = _alpm_pkg_compare_versions(spkg, pkg);
|
|
|
|
if(cmp > 0) {
|
2008-01-27 19:44:23 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "new version of '%s' found (%s => %s)\n",
|
|
|
|
alpm_pkg_get_name(pkg), alpm_pkg_get_version(pkg),
|
|
|
|
alpm_pkg_get_version(spkg));
|
|
|
|
return(spkg);
|
|
|
|
}
|
2008-05-31 09:06:30 -04:00
|
|
|
if (cmp < 0) {
|
|
|
|
pmdb_t *db = spkg->origin_data.db;
|
|
|
|
_alpm_log(PM_LOG_WARNING, _("%s: local (%s) is newer than %s (%s)\n"),
|
|
|
|
alpm_pkg_get_name(pkg), alpm_pkg_get_version(pkg),
|
|
|
|
alpm_db_get_name(db), alpm_pkg_get_version(spkg));
|
|
|
|
}
|
|
|
|
return(NULL);
|
2008-01-27 19:44:23 -05:00
|
|
|
}
|
|
|
|
|
2008-10-23 20:05:12 -04:00
|
|
|
int _alpm_sync_sysupgrade(pmtrans_t *trans, pmdb_t *db_local, alpm_list_t *dbs_sync)
|
2006-12-29 12:04:58 -05:00
|
|
|
{
|
2008-01-27 19:44:23 -05:00
|
|
|
alpm_list_t *i, *j, *replaced = NULL;
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2006-12-29 12:04:58 -05:00
|
|
|
/* check for "recommended" package replacements */
|
2008-10-23 20:05:12 -04:00
|
|
|
if(find_replacements(trans, db_local, dbs_sync)) {
|
2007-08-24 18:10:40 -04:00
|
|
|
return(-1);
|
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2008-01-27 19:44:23 -05:00
|
|
|
/* compute the to-be-replaced packages for efficiency */
|
2008-10-23 20:05:12 -04:00
|
|
|
for(i = trans->packages; i; i = i->next) {
|
2008-01-27 19:44:23 -05:00
|
|
|
pmsyncpkg_t *sync = i->data;
|
|
|
|
for(j = sync->removes; j; j = j->next) {
|
|
|
|
replaced = alpm_list_add(replaced, j->data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* for all not-replaced local package we check for upgrade */
|
2007-08-24 18:10:40 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "checking for package upgrades\n");
|
|
|
|
for(i = _alpm_db_get_pkgcache(db_local); i; i = i->next) {
|
|
|
|
pmpkg_t *local = i->data;
|
|
|
|
|
2008-05-01 17:58:33 -04:00
|
|
|
if(_alpm_pkg_find(replaced, alpm_pkg_get_name(local))) {
|
2007-08-24 18:10:40 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "'%s' is already elected for removal -- skipping\n",
|
|
|
|
alpm_pkg_get_name(local));
|
|
|
|
continue;
|
|
|
|
}
|
2006-12-29 12:04:58 -05:00
|
|
|
|
2008-01-27 19:44:23 -05:00
|
|
|
pmpkg_t *spkg = alpm_sync_newversion(local, dbs_sync);
|
|
|
|
if(spkg) {
|
|
|
|
/* we found a new version */
|
|
|
|
/* skip packages in IgnorePkg or in IgnoreGroup */
|
|
|
|
if(_alpm_pkg_should_ignore(spkg)) {
|
|
|
|
_alpm_log(PM_LOG_WARNING, _("%s: ignoring package upgrade (%s => %s)\n"),
|
|
|
|
alpm_pkg_get_name(local), alpm_pkg_get_version(local),
|
|
|
|
alpm_pkg_get_version(spkg));
|
|
|
|
continue;
|
|
|
|
}
|
2007-08-24 18:10:40 -04:00
|
|
|
|
2008-01-27 19:44:23 -05:00
|
|
|
/* add the upgrade package to our pmsyncpkg_t list */
|
2008-10-23 20:05:12 -04:00
|
|
|
if(_alpm_sync_find(trans->packages, alpm_pkg_get_name(spkg))) {
|
2008-03-11 11:40:27 -04:00
|
|
|
/* avoid duplicated targets */
|
2008-01-27 19:44:23 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* we can set any reason here, it will be overridden by add_commit */
|
|
|
|
pmsyncpkg_t *sync = _alpm_sync_new(PM_PKG_REASON_EXPLICIT, spkg, NULL);
|
|
|
|
if(sync == NULL) {
|
|
|
|
alpm_list_free(replaced);
|
|
|
|
return(-1);
|
2006-02-05 04:15:20 -05:00
|
|
|
}
|
2008-07-19 10:34:02 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "adding package %s-%s to the transaction targets\n",
|
|
|
|
alpm_pkg_get_name(spkg), alpm_pkg_get_version(spkg));
|
2008-10-23 20:05:12 -04:00
|
|
|
trans->packages = alpm_list_add(trans->packages, sync);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2006-12-29 12:04:58 -05:00
|
|
|
}
|
2007-08-24 18:10:40 -04:00
|
|
|
|
2008-01-27 19:44:23 -05:00
|
|
|
alpm_list_free(replaced);
|
2007-08-24 18:10:40 -04:00
|
|
|
return(0);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2007-01-19 04:28:44 -05:00
|
|
|
int _alpm_sync_addtarget(pmtrans_t *trans, pmdb_t *db_local, alpm_list_t *dbs_sync, char *name)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2008-01-11 01:01:58 -05:00
|
|
|
char *targline;
|
2005-04-06 17:01:40 -04:00
|
|
|
char *targ;
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *j;
|
2008-07-08 04:07:05 -04:00
|
|
|
pmpkg_t *local, *spkg;
|
|
|
|
pmdepend_t *dep; /* provisions and dependencies are also allowed */
|
2005-03-30 17:32:43 -05:00
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-04-16 18:15:50 -04:00
|
|
|
ASSERT(db_local != NULL, RET_ERR(PM_ERR_DB_NULL, -1));
|
2005-03-30 17:32:43 -05:00
|
|
|
ASSERT(trans != NULL, RET_ERR(PM_ERR_TRANS_NULL, -1));
|
|
|
|
ASSERT(name != NULL, RET_ERR(PM_ERR_WRONG_ARGS, -1));
|
|
|
|
|
2008-07-08 04:07:05 -04:00
|
|
|
STRDUP(targline, name, RET_ERR(PM_ERR_MEMORY, -1));
|
2005-03-30 17:32:43 -05:00
|
|
|
targ = strchr(targline, '/');
|
|
|
|
if(targ) {
|
2007-10-29 01:01:17 -04:00
|
|
|
/* we are looking for a package in a specific database */
|
2008-07-08 04:07:05 -04:00
|
|
|
alpm_list_t *dbs = NULL;
|
2005-03-30 17:32:43 -05:00
|
|
|
*targ = '\0';
|
|
|
|
targ++;
|
2008-07-08 04:07:05 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "searching for target '%s' in repo '%s'\n", targ, targline);
|
|
|
|
for(j = dbs_sync; j; j = j->next) {
|
2007-03-03 03:13:59 -05:00
|
|
|
pmdb_t *db = j->data;
|
|
|
|
if(strcmp(db->treename, targline) == 0) {
|
2008-07-08 04:07:05 -04:00
|
|
|
dbs = alpm_list_add(NULL, db);
|
|
|
|
break;
|
2005-03-30 17:32:43 -05:00
|
|
|
}
|
|
|
|
}
|
2008-07-08 04:07:05 -04:00
|
|
|
if(dbs == NULL) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("repository '%s' not found\n"), targline);
|
2008-07-08 04:07:05 -04:00
|
|
|
FREE(targline);
|
|
|
|
RET_ERR(PM_ERR_PKG_REPO_NOT_FOUND, -1);
|
2006-10-31 01:39:59 -05:00
|
|
|
}
|
2008-07-08 04:07:05 -04:00
|
|
|
dep = _alpm_splitdep(targ);
|
|
|
|
spkg = _alpm_resolvedep(dep, dbs, NULL, NULL);
|
|
|
|
_alpm_dep_free(dep);
|
|
|
|
alpm_list_free(dbs);
|
2005-03-30 17:32:43 -05:00
|
|
|
} else {
|
2008-07-08 04:07:05 -04:00
|
|
|
dep = _alpm_splitdep(targline);
|
|
|
|
spkg = _alpm_resolvedep(dep, dbs_sync, NULL, NULL);
|
|
|
|
_alpm_dep_free(dep);
|
2005-03-30 17:32:43 -05:00
|
|
|
}
|
2008-07-08 04:07:05 -04:00
|
|
|
FREE(targline);
|
2007-03-03 03:13:59 -05:00
|
|
|
|
2008-07-08 04:07:05 -04:00
|
|
|
if(spkg == NULL) {
|
|
|
|
RET_ERR(PM_ERR_PKG_NOT_FOUND, -1);
|
2008-03-11 11:40:27 -04:00
|
|
|
}
|
|
|
|
|
2008-07-08 04:07:05 -04:00
|
|
|
if(_alpm_sync_find(trans->packages, alpm_pkg_get_name(spkg))) {
|
|
|
|
RET_ERR(PM_ERR_TRANS_DUP_TARGET, -1);
|
2007-12-15 11:01:52 -05:00
|
|
|
}
|
|
|
|
|
2007-03-03 03:13:59 -05:00
|
|
|
local = _alpm_db_get_pkgfromcache(db_local, alpm_pkg_get_name(spkg));
|
2005-04-06 17:01:40 -04:00
|
|
|
if(local) {
|
2008-05-31 09:06:30 -04:00
|
|
|
int cmp = _alpm_pkg_compare_versions(spkg, local);
|
|
|
|
if(cmp == 0) {
|
2007-11-22 15:01:45 -05:00
|
|
|
if(trans->flags & PM_TRANS_FLAG_NEEDED) {
|
2008-05-31 09:06:30 -04:00
|
|
|
/* with the NEEDED flag, packages up to date are not reinstalled */
|
2007-11-22 15:01:45 -05:00
|
|
|
_alpm_log(PM_LOG_WARNING, _("%s-%s is up to date -- skipping\n"),
|
|
|
|
alpm_pkg_get_name(local), alpm_pkg_get_version(local));
|
|
|
|
return(0);
|
|
|
|
} else {
|
2008-05-31 09:06:30 -04:00
|
|
|
_alpm_log(PM_LOG_WARNING, _("%s-%s is up to date -- reinstalling\n"),
|
|
|
|
alpm_pkg_get_name(local), alpm_pkg_get_version(local));
|
|
|
|
|
2005-10-09 02:09:57 -04:00
|
|
|
}
|
2008-05-31 09:06:30 -04:00
|
|
|
} else if(cmp < 0) {
|
|
|
|
/* local version is newer */
|
|
|
|
_alpm_log(PM_LOG_WARNING, _("downgrading package %s (%s => %s)\n"),
|
|
|
|
alpm_pkg_get_name(local), alpm_pkg_get_version(local),
|
|
|
|
alpm_pkg_get_version(spkg));
|
2005-03-30 17:32:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* add the package to the transaction */
|
2008-07-08 04:07:05 -04:00
|
|
|
pmsyncpkg_t *sync = _alpm_sync_new(PM_PKG_REASON_EXPLICIT, spkg, NULL);
|
2008-03-11 11:40:27 -04:00
|
|
|
if(sync == NULL) {
|
2008-07-08 04:07:05 -04:00
|
|
|
return(-1);
|
2005-04-06 17:01:40 -04:00
|
|
|
}
|
2008-07-19 10:34:02 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "adding package %s-%s to the transaction targets\n",
|
|
|
|
alpm_pkg_get_name(spkg), alpm_pkg_get_version(spkg));
|
2008-03-11 11:40:27 -04:00
|
|
|
trans->packages = alpm_list_add(trans->packages, sync);
|
2005-03-30 17:32:43 -05:00
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2007-01-19 04:28:44 -05:00
|
|
|
/* Helper functions for alpm_list_remove
|
2007-08-12 18:17:32 -04:00
|
|
|
*/
|
2007-02-21 01:44:14 -05:00
|
|
|
static int syncpkg_cmp(const void *s1, const void *s2)
|
2005-12-26 01:40:29 -05:00
|
|
|
{
|
2007-06-05 17:34:33 -04:00
|
|
|
const pmsyncpkg_t *sp1 = s1;
|
|
|
|
const pmsyncpkg_t *sp2 = s2;
|
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
|
|
|
pmpkg_t *p1 = alpm_sync_get_pkg(sp1);
|
|
|
|
pmpkg_t *p2 = alpm_sync_get_pkg(sp2);
|
2007-03-03 03:13:59 -05:00
|
|
|
return(strcmp(alpm_pkg_get_name(p1), alpm_pkg_get_name(p2)));
|
2006-10-15 15:31:03 -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
|
|
|
|
*/
|
2008-04-26 14:03:53 -04:00
|
|
|
static int compute_download_size(pmpkg_t *newpkg)
|
2008-02-16 11:47:22 -05:00
|
|
|
{
|
2008-04-26 14:03:53 -04:00
|
|
|
const char *fname;
|
|
|
|
char *fpath;
|
2008-06-01 22:47:31 -04:00
|
|
|
off_t size = 0;
|
2008-02-16 11:47:22 -05:00
|
|
|
|
2008-04-26 14:03:53 -04:00
|
|
|
fname = alpm_pkg_get_filename(newpkg);
|
|
|
|
ASSERT(fname != NULL, RET_ERR(PM_ERR_PKG_INVALID_NAME, -1));
|
|
|
|
fpath = _alpm_filecache_find(fname);
|
|
|
|
|
2008-02-16 11:47:22 -05:00
|
|
|
if(fpath) {
|
|
|
|
FREE(fpath);
|
|
|
|
size = 0;
|
|
|
|
} else if(handle->usedelta) {
|
2008-06-01 22:47:31 -04:00
|
|
|
off_t dltsize;
|
|
|
|
off_t pkgsize = alpm_pkg_get_size(newpkg);
|
2008-02-16 11:47:22 -05:00
|
|
|
|
|
|
|
dltsize = _alpm_shortest_delta_path(
|
|
|
|
alpm_pkg_get_deltas(newpkg),
|
|
|
|
alpm_pkg_get_filename(newpkg),
|
|
|
|
alpm_pkg_get_md5sum(newpkg),
|
|
|
|
&newpkg->delta_path);
|
|
|
|
|
|
|
|
if(newpkg->delta_path && (dltsize < pkgsize * MAX_DELTA_RATIO)) {
|
|
|
|
_alpm_log(PM_LOG_DEBUG, "using delta size\n");
|
|
|
|
size = dltsize;
|
|
|
|
} else {
|
|
|
|
_alpm_log(PM_LOG_DEBUG, "using package size\n");
|
|
|
|
size = alpm_pkg_get_size(newpkg);
|
|
|
|
alpm_list_free(newpkg->delta_path);
|
|
|
|
newpkg->delta_path = NULL;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
size = alpm_pkg_get_size(newpkg);
|
|
|
|
}
|
|
|
|
|
2008-06-01 22:47:31 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "setting download size %lld for pkg %s\n",
|
|
|
|
(long long)size, alpm_pkg_get_name(newpkg));
|
2008-02-16 11:47:22 -05:00
|
|
|
|
|
|
|
newpkg->download_size = size;
|
2008-04-26 14:03:53 -04:00
|
|
|
return(0);
|
2008-02-16 11:47:22 -05:00
|
|
|
}
|
|
|
|
|
2007-01-19 04:28:44 -05:00
|
|
|
int _alpm_sync_prepare(pmtrans_t *trans, pmdb_t *db_local, alpm_list_t *dbs_sync, alpm_list_t **data)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *deps = NULL;
|
2007-08-12 16:26:54 -04:00
|
|
|
alpm_list_t *list = NULL, *remove = NULL; /* allow checkdeps usage with trans->packages */
|
2009-01-26 07:48:39 -05:00
|
|
|
alpm_list_t *unresolvable = NULL;
|
2007-06-10 23:16:09 -04:00
|
|
|
alpm_list_t *i, *j;
|
2006-03-04 05:16:36 -05:00
|
|
|
int ret = 0;
|
2005-04-02 18:21:10 -05:00
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-04-16 18:15:50 -04:00
|
|
|
ASSERT(db_local != NULL, RET_ERR(PM_ERR_DB_NULL, -1));
|
2005-04-06 17:01:40 -04:00
|
|
|
ASSERT(trans != NULL, RET_ERR(PM_ERR_TRANS_NULL, -1));
|
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
|
|
|
|
2009-01-26 07:48:39 -05:00
|
|
|
if(trans->flags & PM_TRANS_FLAG_NODEPS) {
|
|
|
|
for(i = trans->packages; i; i = i->next) {
|
|
|
|
pmsyncpkg_t *sync = i->data;
|
|
|
|
list = alpm_list_add(list, sync->pkg);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Build up list by repeatedly resolving each transaction package */
|
2005-04-13 15:59:04 -04:00
|
|
|
/* Resolve targets dependencies */
|
2005-05-04 15:55:23 -04:00
|
|
|
EVENT(trans, PM_TRANS_EVT_RESOLVEDEPS_START, NULL, NULL);
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "resolving target's dependencies\n");
|
2007-08-12 16:26:54 -04:00
|
|
|
|
|
|
|
/* build remove list for resolvedeps */
|
|
|
|
for(i = trans->packages; i; i = i->next) {
|
|
|
|
pmsyncpkg_t *sync = i->data;
|
2008-01-27 06:24:50 -05:00
|
|
|
for(j = sync->removes; j; j = j->next) {
|
|
|
|
remove = alpm_list_add(remove, j->data);
|
2007-08-12 16:26:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-26 07:48:39 -05:00
|
|
|
/* Resolve packages in the transaction one at a time, in addtion
|
|
|
|
building up a list of packages which could not be resolved. */
|
|
|
|
for(i = trans->packages; i; i = i->next) {
|
|
|
|
pmpkg_t *pkg = ((pmsyncpkg_t *) i->data)->pkg;
|
|
|
|
if(_alpm_resolvedeps(db_local, dbs_sync, pkg, &list, remove, data) == -1) {
|
|
|
|
unresolvable = alpm_list_add(unresolvable, pkg);
|
|
|
|
}
|
|
|
|
/* Else, [list] now additionally contains [pkg] and all of its
|
|
|
|
dependencies not already on the list */
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
QUESTION(handle->trans, PM_TRANS_CONV_REMOVE_PKGS, unresolvable,
|
|
|
|
NULL, NULL, &remove_unresolvable);
|
|
|
|
if (remove_unresolvable) {
|
|
|
|
/* User wants to remove the unresolvable packages from the
|
|
|
|
transaction, so simply drop the unresolvable list. The
|
|
|
|
packages will be removed from the actual transaction when
|
|
|
|
the transaction packages are replaced with a
|
|
|
|
dependency-reordered list below */
|
|
|
|
alpm_list_free(unresolvable);
|
|
|
|
unresolvable = NULL;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* pm_errno is set by resolvedeps */
|
|
|
|
ret = -1;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2005-04-02 18:21:10 -05:00
|
|
|
}
|
2006-10-15 15:31:03 -04:00
|
|
|
|
2009-01-26 07:48:39 -05:00
|
|
|
/* Add all packages which were "pulled" (i.e. weren't already in the
|
|
|
|
transaction) to the transaction in pmsyncpkg_t structures */
|
|
|
|
for(i = list; i; i = i->next) {
|
2005-04-08 15:37:23 -04:00
|
|
|
pmpkg_t *spkg = i->data;
|
2009-01-26 07:48:39 -05:00
|
|
|
for(j = trans->packages; j; j = j->next) {
|
|
|
|
if(_alpm_pkg_cmp(spkg, ((pmsyncpkg_t *) j->data)->pkg) == 0) {
|
|
|
|
spkg = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (spkg == NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2008-03-11 11:40:27 -04:00
|
|
|
pmsyncpkg_t *sync = _alpm_sync_new(PM_PKG_REASON_DEPEND, spkg, NULL);
|
|
|
|
if(sync == NULL) {
|
|
|
|
ret = -1;
|
|
|
|
goto cleanup;
|
2005-04-08 15:37:23 -04:00
|
|
|
}
|
2008-03-11 11:40:27 -04:00
|
|
|
trans->packages = alpm_list_add(trans->packages, sync);
|
|
|
|
_alpm_log(PM_LOG_DEBUG, "adding package %s-%s to the transaction targets\n",
|
|
|
|
alpm_pkg_get_name(spkg), alpm_pkg_get_version(spkg));
|
2005-04-08 15:37:23 -04:00
|
|
|
}
|
2006-10-15 15:31:03 -04:00
|
|
|
|
|
|
|
/* re-order w.r.t. dependencies */
|
2008-03-16 17:36:31 -04:00
|
|
|
alpm_list_t *sortlist = _alpm_sortbydeps(list, 0);
|
2007-06-10 23:16:09 -04:00
|
|
|
alpm_list_t *newpkgs = NULL;
|
|
|
|
for(i = sortlist; i; i = i->next) {
|
|
|
|
for(j = trans->packages; j; j = j->next) {
|
|
|
|
pmsyncpkg_t *s = j->data;
|
|
|
|
if(s->pkg == i->data) {
|
|
|
|
newpkgs = alpm_list_add(newpkgs, s);
|
2008-03-11 11:40:27 -04:00
|
|
|
break;
|
2006-10-15 15:31:03 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-06-10 23:16:09 -04:00
|
|
|
alpm_list_free(sortlist);
|
2007-04-28 03:54:25 -04:00
|
|
|
alpm_list_free(trans->packages);
|
2007-06-10 23:16:09 -04:00
|
|
|
trans->packages = newpkgs;
|
2006-10-15 15:31:03 -04:00
|
|
|
|
2005-05-04 15:55:23 -04:00
|
|
|
EVENT(trans, PM_TRANS_EVT_RESOLVEDEPS_DONE, NULL, NULL);
|
2006-03-04 05:16:36 -05:00
|
|
|
}
|
|
|
|
|
2008-08-17 13:23:12 -04:00
|
|
|
if(!(trans->flags & PM_TRANS_FLAG_NOCONFLICTS)) {
|
2006-03-04 05:16:36 -05:00
|
|
|
/* check for inter-conflicts and whatnot */
|
|
|
|
EVENT(trans, PM_TRANS_EVT_INTERCONFLICTS_START, NULL, NULL);
|
|
|
|
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_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 */
|
|
|
|
_alpm_log(PM_LOG_DEBUG, "check targets vs targets\n");
|
|
|
|
deps = _alpm_innerconflicts(list);
|
|
|
|
|
|
|
|
for(i = deps; i; i = i->next) {
|
|
|
|
pmconflict_t *conflict = i->data;
|
|
|
|
pmsyncpkg_t *rsync, *sync, *sync1, *sync2;
|
|
|
|
|
|
|
|
/* have we already removed one of the conflicting targets? */
|
|
|
|
sync1 = _alpm_sync_find(trans->packages, conflict->package1);
|
|
|
|
sync2 = _alpm_sync_find(trans->packages, conflict->package2);
|
|
|
|
if(!sync1 || !sync2) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
_alpm_log(PM_LOG_DEBUG, "conflicting packages in the sync list: '%s' <-> '%s'\n",
|
|
|
|
conflict->package1, conflict->package2);
|
|
|
|
|
|
|
|
/* if sync1 provides sync2, we remove sync2 from the targets, and vice versa */
|
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
|
|
|
pmdepend_t *dep1 = _alpm_splitdep(conflict->package1);
|
|
|
|
pmdepend_t *dep2 = _alpm_splitdep(conflict->package2);
|
|
|
|
if(alpm_depcmp(sync1->pkg, dep2)) {
|
2007-08-12 18:17:32 -04:00
|
|
|
rsync = sync2;
|
|
|
|
sync = sync1;
|
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
|
|
|
} else if(alpm_depcmp(sync2->pkg, dep1)) {
|
2007-08-12 18:17:32 -04:00
|
|
|
rsync = sync1;
|
|
|
|
sync = sync2;
|
|
|
|
} else {
|
2008-01-25 15:52:35 -05:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("unresolvable package conflicts detected\n"));
|
2007-08-12 18:17:32 -04:00
|
|
|
pm_errno = PM_ERR_CONFLICTING_DEPS;
|
|
|
|
ret = -1;
|
2008-01-25 15:52:35 -05:00
|
|
|
if(data) {
|
|
|
|
pmconflict_t *newconflict = _alpm_conflict_dup(conflict);
|
|
|
|
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 */
|
|
|
|
_alpm_log(PM_LOG_WARNING,
|
|
|
|
_("removing '%s' from target list because it conflicts with '%s'\n"),
|
|
|
|
rsync->pkg->name, sync->pkg->name);
|
2007-08-12 18:17:32 -04:00
|
|
|
void *vpkg;
|
|
|
|
trans->packages = alpm_list_remove(trans->packages, rsync,
|
|
|
|
syncpkg_cmp, &vpkg);
|
|
|
|
pmsyncpkg_t *syncpkg = vpkg;
|
|
|
|
list = alpm_list_remove(list, syncpkg->pkg, _alpm_pkg_cmp, NULL);
|
|
|
|
_alpm_sync_free(syncpkg);
|
|
|
|
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)*/
|
|
|
|
_alpm_log(PM_LOG_DEBUG, "check targets vs db and db vs targets\n");
|
|
|
|
deps = _alpm_outerconflicts(db_local, list);
|
|
|
|
|
|
|
|
for(i = deps; i; i = i->next) {
|
|
|
|
pmconflict_t *conflict = i->data;
|
|
|
|
|
|
|
|
/* if conflict->package2 (the local package) is not elected for removal,
|
|
|
|
we ask the user */
|
|
|
|
int found = 0;
|
|
|
|
for(j = trans->packages; j && !found; j = j->next) {
|
|
|
|
pmsyncpkg_t *sync = j->data;
|
2008-05-01 17:58:33 -04:00
|
|
|
if(_alpm_pkg_find(sync->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;
|
|
|
|
}
|
|
|
|
|
|
|
|
_alpm_log(PM_LOG_DEBUG, "package '%s' conflicts with '%s'\n",
|
|
|
|
conflict->package1, conflict->package2);
|
|
|
|
|
|
|
|
pmsyncpkg_t *sync = _alpm_sync_find(trans->packages, conflict->package1);
|
|
|
|
pmpkg_t *local = _alpm_db_get_pkgfromcache(db_local, conflict->package2);
|
|
|
|
int doremove = 0;
|
|
|
|
QUESTION(trans, PM_TRANS_CONV_CONFLICT_PKG, conflict->package1,
|
2007-11-18 08:25:43 -05:00
|
|
|
conflict->package2, NULL, &doremove);
|
2007-08-12 18:17:32 -04:00
|
|
|
if(doremove) {
|
2008-01-27 06:24:50 -05:00
|
|
|
/* append to the removes list */
|
2007-08-12 18:17:32 -04:00
|
|
|
_alpm_log(PM_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 */
|
|
|
|
_alpm_log(PM_LOG_ERROR, _("unresolvable package conflicts detected\n"));
|
2008-01-25 15:52:35 -05:00
|
|
|
pm_errno = PM_ERR_CONFLICTING_DEPS;
|
|
|
|
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) {
|
2008-01-25 15:52:35 -05:00
|
|
|
pmconflict_t *newconflict = _alpm_conflict_dup(conflict);
|
|
|
|
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
|
|
|
}
|
2005-05-04 15:55:23 -04:00
|
|
|
EVENT(trans, PM_TRANS_EVT_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
|
|
|
|
2006-03-04 05:16:36 -05:00
|
|
|
if(!(trans->flags & PM_TRANS_FLAG_NODEPS)) {
|
2007-08-12 18:17:32 -04:00
|
|
|
/* rebuild remove list */
|
2007-08-12 16:26:54 -04:00
|
|
|
alpm_list_free(remove);
|
|
|
|
remove = NULL;
|
2006-01-05 15:53:41 -05:00
|
|
|
for(i = trans->packages; i; i = i->next) {
|
|
|
|
pmsyncpkg_t *sync = i->data;
|
2008-01-27 06:24:50 -05:00
|
|
|
for(j = sync->removes; j; j = j->next) {
|
|
|
|
remove = alpm_list_add(remove, j->data);
|
2006-01-05 15:53:41 -05:00
|
|
|
}
|
|
|
|
}
|
2007-08-12 16:26:54 -04:00
|
|
|
|
|
|
|
_alpm_log(PM_LOG_DEBUG, "checking dependencies\n");
|
2008-08-17 13:30:36 -04:00
|
|
|
deps = alpm_checkdeps(_alpm_db_get_pkgcache(db_local), 1, remove, list);
|
2007-08-12 16:26:54 -04:00
|
|
|
if(deps) {
|
|
|
|
pm_errno = PM_ERR_UNSATISFIED_DEPS;
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2008-02-16 11:47:22 -05:00
|
|
|
for(i = list; i; i = i->next) {
|
|
|
|
/* update download size field */
|
|
|
|
pmpkg_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:
|
2007-04-28 03:54:25 -04:00
|
|
|
alpm_list_free(list);
|
2007-08-12 16:26:54 -04:00
|
|
|
alpm_list_free(remove);
|
2009-01-26 07:48:39 -05:00
|
|
|
alpm_list_free(unresolvable);
|
2006-03-04 05:16:36 -05: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
|
|
|
|
*/
|
2008-06-01 22:47:31 -04:00
|
|
|
off_t SYMEXPORT alpm_pkg_download_size(pmpkg_t *newpkg)
|
2007-10-19 13:17:54 -04:00
|
|
|
{
|
2008-02-16 11:47:22 -05:00
|
|
|
return(newpkg->download_size);
|
2007-10-19 13:17:54 -04: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.
|
|
|
|
*
|
|
|
|
* @param trans the transaction
|
|
|
|
*
|
|
|
|
* @return 0 if all delta files were able to be applied, 1 otherwise.
|
|
|
|
*/
|
2008-02-27 10:09:49 -05:00
|
|
|
static int apply_deltas(pmtrans_t *trans)
|
2007-10-19 13:17:53 -04:00
|
|
|
{
|
2008-02-27 10:09:49 -05:00
|
|
|
alpm_list_t *i;
|
2007-10-19 13:17:53 -04:00
|
|
|
int ret = 0;
|
|
|
|
const char *cachedir = _alpm_filecache_setup();
|
|
|
|
|
2008-02-27 10:09:49 -05:00
|
|
|
for(i = trans->packages; i; i = i->next) {
|
|
|
|
pmsyncpkg_t *sync = i->data;
|
|
|
|
pmpkg_t *spkg = sync->pkg;
|
|
|
|
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
|
|
|
|
2008-02-27 10:09:49 -05:00
|
|
|
for(dlts = delta_path; dlts; dlts = dlts->next) {
|
|
|
|
pmdelta_t *d = dlts->data;
|
|
|
|
char *delta, *from, *to;
|
|
|
|
char command[PATH_MAX];
|
|
|
|
int len = 0;
|
2007-10-19 13:17:53 -04:00
|
|
|
|
2008-02-27 10:09:49 -05:00
|
|
|
delta = _alpm_filecache_find(d->delta);
|
|
|
|
/* the initial package might be in a different cachedir */
|
|
|
|
if(dlts == delta_path) {
|
|
|
|
from = _alpm_filecache_find(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;
|
|
|
|
CALLOC(from, len, sizeof(char), RET_ERR(PM_ERR_MEMORY, 1));
|
|
|
|
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;
|
|
|
|
CALLOC(to, len, sizeof(char), RET_ERR(PM_ERR_MEMORY, 1));
|
|
|
|
snprintf(to, len, "%s/%s", cachedir, d->to);
|
2007-10-19 13:17:53 -04:00
|
|
|
|
2008-02-27 10:09:49 -05:00
|
|
|
/* an example of the patch command: (using /cache for cachedir)
|
|
|
|
* xdelta patch /path/to/pacman_3.0.0-1_to_3.0.1-1-i686.delta \
|
|
|
|
* /path/to/pacman-3.0.0-1-i686.pkg.tar.gz \
|
|
|
|
* /cache/pacman-3.0.1-1-i686.pkg.tar.gz
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* build the patch command */
|
|
|
|
snprintf(command, PATH_MAX, "xdelta patch %s %s %s", delta, from, to);
|
|
|
|
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("command: %s\n"), command);
|
|
|
|
|
|
|
|
EVENT(trans, PM_TRANS_EVT_DELTA_PATCH_START, d->to, d->delta);
|
|
|
|
|
|
|
|
int retval = system(command);
|
|
|
|
if(retval == 0) {
|
|
|
|
EVENT(trans, PM_TRANS_EVT_DELTA_PATCH_DONE, NULL, NULL);
|
|
|
|
|
|
|
|
/* 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 */
|
|
|
|
EVENT(trans, PM_TRANS_EVT_DELTA_PATCH_FAILED, NULL, NULL);
|
|
|
|
ret = 1;
|
|
|
|
break;
|
2007-10-19 13:17:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
|
2007-10-19 13:17:52 -04:00
|
|
|
/** Compares the md5sum of a file to the expected value.
|
|
|
|
*
|
|
|
|
* If the md5sum does not match, the user is asked whether the file
|
|
|
|
* should be deleted.
|
|
|
|
*
|
|
|
|
* @param trans the transaction
|
|
|
|
* @param filename the filename of the file to test
|
|
|
|
* @param md5sum the expected md5sum of the file
|
|
|
|
*
|
2008-02-26 18:50:17 -05:00
|
|
|
* @return 0 if the md5sum matched, 1 if not, -1 in case of errors
|
2007-10-19 13:17:52 -04:00
|
|
|
*/
|
|
|
|
static int test_md5sum(pmtrans_t *trans, const char *filename,
|
2008-02-26 18:50:17 -05:00
|
|
|
const char *md5sum)
|
2007-10-19 13:17:52 -04:00
|
|
|
{
|
|
|
|
char *filepath;
|
2008-02-26 18:50:17 -05:00
|
|
|
int ret;
|
2007-10-19 13:17:52 -04:00
|
|
|
|
|
|
|
filepath = _alpm_filecache_find(filename);
|
|
|
|
|
2008-02-26 18:50:17 -05:00
|
|
|
ret = _alpm_test_md5sum(filepath, md5sum);
|
|
|
|
|
|
|
|
if(ret == 1) {
|
2007-10-19 13:17:52 -04:00
|
|
|
int doremove = 0;
|
|
|
|
QUESTION(trans, PM_TRANS_CONV_CORRUPTED_PKG, (char *)filename,
|
|
|
|
NULL, NULL, &doremove);
|
|
|
|
if(doremove) {
|
|
|
|
unlink(filepath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FREE(filepath);
|
|
|
|
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
|
2007-01-19 04:28:44 -05:00
|
|
|
int _alpm_sync_commit(pmtrans_t *trans, pmdb_t *db_local, alpm_list_t **data)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *i, *j, *files = NULL;
|
2008-02-27 10:09:49 -05:00
|
|
|
alpm_list_t *deltas = NULL;
|
2005-04-24 16:11:10 -04:00
|
|
|
pmtrans_t *tr = NULL;
|
2008-02-26 18:50:17 -05:00
|
|
|
int replaces = 0;
|
|
|
|
int errors = 0;
|
2007-08-20 13:28:51 -04:00
|
|
|
const char *cachedir = NULL;
|
2008-02-27 11:45:01 -05:00
|
|
|
int ret = -1;
|
2005-04-14 17:07:38 -04:00
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-04-14 17:07:38 -04:00
|
|
|
ASSERT(trans != NULL, RET_ERR(PM_ERR_TRANS_NULL, -1));
|
|
|
|
|
2007-08-20 13:28:51 -04:00
|
|
|
cachedir = _alpm_filecache_setup();
|
2006-10-15 15:31:03 -04:00
|
|
|
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 */
|
|
|
|
for(i = trans->packages; i; i = i->next) {
|
|
|
|
pmsyncpkg_t *sync = i->data;
|
|
|
|
pmpkg_t *spkg = sync->pkg;
|
|
|
|
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) {
|
|
|
|
pmdb_t *current = i->data;
|
|
|
|
|
|
|
|
for(j = trans->packages; j; j = j->next) {
|
|
|
|
pmsyncpkg_t *sync = j->data;
|
|
|
|
pmpkg_t *spkg = sync->pkg;
|
2007-08-14 10:14:35 -04:00
|
|
|
pmdb_t *dbs = spkg->origin_data.db;
|
2006-10-15 15:31:03 -04:00
|
|
|
|
|
|
|
if(current == dbs) {
|
2006-11-22 04:03:41 -05:00
|
|
|
const char *fname = NULL;
|
2006-10-15 15:31:03 -04:00
|
|
|
|
2006-11-22 04:03:41 -05:00
|
|
|
fname = alpm_pkg_get_filename(spkg);
|
2008-02-13 14:42:43 -05:00
|
|
|
ASSERT(fname != NULL, RET_ERR(PM_ERR_PKG_INVALID_NAME, -1));
|
2008-08-17 13:23:12 -04:00
|
|
|
if(spkg->download_size != 0) {
|
|
|
|
alpm_list_t *delta_path = spkg->delta_path;
|
|
|
|
if(delta_path) {
|
|
|
|
alpm_list_t *dlts = NULL;
|
|
|
|
|
|
|
|
for(dlts = delta_path; dlts; dlts = dlts->next) {
|
|
|
|
pmdelta_t *d = dlts->data;
|
|
|
|
|
|
|
|
if(d->download_size != 0) {
|
|
|
|
/* add the delta filename to the download list if
|
|
|
|
* it's not in the cache */
|
|
|
|
files = alpm_list_add(files, strdup(d->delta));
|
2007-10-19 13:17:53 -04:00
|
|
|
}
|
2008-02-16 11:47:22 -05:00
|
|
|
|
2008-08-17 13:23:12 -04:00
|
|
|
/* keep a list of the delta files for md5sums */
|
|
|
|
deltas = alpm_list_add(deltas, d);
|
2007-10-19 13:17:53 -04:00
|
|
|
}
|
2008-08-17 13:23:12 -04:00
|
|
|
|
|
|
|
} else {
|
|
|
|
/* not using deltas, so add the file to the download list */
|
|
|
|
files = alpm_list_add(files, strdup(fname));
|
2006-10-15 15:31:03 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(files) {
|
|
|
|
EVENT(trans, PM_TRANS_EVT_RETRIEVE_START, current->treename, NULL);
|
2008-01-22 23:00:12 -05:00
|
|
|
if(_alpm_download_files(files, current->servers, cachedir)) {
|
2007-08-20 13:28:51 -04:00
|
|
|
_alpm_log(PM_LOG_WARNING, _("failed to retrieve some files from %s\n"),
|
|
|
|
current->treename);
|
2008-02-27 11:45:01 -05:00
|
|
|
pm_errno = PM_ERR_RETRIEVE;
|
|
|
|
goto error;
|
2006-10-15 15:31:03 -04:00
|
|
|
}
|
2008-04-26 14:03:53 -04:00
|
|
|
FREELIST(files);
|
2006-10-15 15:31:03 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-02 00:10:30 -04:00
|
|
|
/* clear out value to let callback know we are done */
|
|
|
|
if(handle->totaldlcb) {
|
|
|
|
handle->totaldlcb(0);
|
|
|
|
}
|
|
|
|
|
2007-10-19 13:17:53 -04:00
|
|
|
if(handle->usedelta) {
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
/* only output if there are deltas to work with */
|
|
|
|
if(deltas) {
|
2008-02-26 18:50:17 -05:00
|
|
|
errors = 0;
|
2007-10-19 13:17:53 -04:00
|
|
|
/* Check integrity of deltas */
|
|
|
|
EVENT(trans, PM_TRANS_EVT_DELTA_INTEGRITY_START, NULL, NULL);
|
|
|
|
|
|
|
|
for(i = deltas; i; i = i->next) {
|
|
|
|
pmdelta_t *d = alpm_list_getdata(i);
|
2008-02-26 18:50:17 -05:00
|
|
|
const char *filename = alpm_delta_get_filename(d);
|
|
|
|
const char *md5sum = alpm_delta_get_md5sum(d);
|
2007-10-19 13:17:53 -04:00
|
|
|
|
2008-02-26 18:50:17 -05:00
|
|
|
if(test_md5sum(trans, filename, md5sum) != 0) {
|
|
|
|
errors++;
|
|
|
|
*data = alpm_list_add(*data, strdup(filename));
|
2007-10-19 13:17:53 -04:00
|
|
|
}
|
|
|
|
}
|
2008-02-26 18:50:17 -05:00
|
|
|
if(errors) {
|
|
|
|
pm_errno = PM_ERR_DLT_INVALID;
|
2007-10-19 13:17:53 -04:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
EVENT(trans, PM_TRANS_EVT_DELTA_INTEGRITY_DONE, NULL, NULL);
|
|
|
|
|
|
|
|
/* Use the deltas to generate the packages */
|
|
|
|
EVENT(trans, PM_TRANS_EVT_DELTA_PATCHES_START, NULL, NULL);
|
2008-02-27 10:09:49 -05:00
|
|
|
ret = apply_deltas(trans);
|
2007-10-19 13:17:53 -04:00
|
|
|
EVENT(trans, PM_TRANS_EVT_DELTA_PATCHES_DONE, NULL, NULL);
|
|
|
|
|
|
|
|
}
|
|
|
|
if(ret) {
|
|
|
|
pm_errno = PM_ERR_DLT_PATCHFAILED;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check integrity of packages */
|
2006-10-15 15:31:03 -04:00
|
|
|
EVENT(trans, PM_TRANS_EVT_INTEGRITY_START, NULL, NULL);
|
|
|
|
|
2008-02-26 18:50:17 -05:00
|
|
|
errors = 0;
|
2006-10-15 15:31:03 -04:00
|
|
|
for(i = trans->packages; i; i = i->next) {
|
|
|
|
pmsyncpkg_t *sync = i->data;
|
|
|
|
pmpkg_t *spkg = sync->pkg;
|
2008-02-26 18:50:17 -05:00
|
|
|
const char *filename = alpm_pkg_get_filename(spkg);
|
|
|
|
const char *md5sum = alpm_pkg_get_md5sum(spkg);
|
2007-06-04 14:50:16 -04:00
|
|
|
|
2008-02-26 18:50:17 -05:00
|
|
|
if(test_md5sum(trans, filename, md5sum) != 0) {
|
|
|
|
errors++;
|
|
|
|
*data = alpm_list_add(*data, strdup(filename));
|
2006-10-15 15:31:03 -04:00
|
|
|
}
|
|
|
|
}
|
2008-02-26 18:50:17 -05:00
|
|
|
if(errors) {
|
|
|
|
pm_errno = PM_ERR_PKG_INVALID;
|
2006-10-15 15:31:03 -04:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
EVENT(trans, PM_TRANS_EVT_INTEGRITY_DONE, NULL, NULL);
|
|
|
|
if(trans->flags & PM_TRANS_FLAG_DOWNLOADONLY) {
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2006-01-02 15:28:46 -05:00
|
|
|
/* remove conflicting and to-be-replaced packages */
|
2006-10-15 15:31:03 -04:00
|
|
|
trans->state = STATE_COMMITING;
|
2006-02-17 17:35:26 -05:00
|
|
|
tr = _alpm_trans_new();
|
2005-04-14 17:07:38 -04:00
|
|
|
if(tr == NULL) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not create removal transaction\n"));
|
2005-04-14 17:07:38 -04:00
|
|
|
goto error;
|
|
|
|
}
|
2005-11-07 08:00:22 -05:00
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
if(_alpm_trans_init(tr, PM_TRANS_TYPE_REMOVE, PM_TRANS_FLAG_NODEPS, NULL, NULL, NULL) == -1) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not initialize the removal transaction\n"));
|
2006-01-05 15:53:41 -05:00
|
|
|
goto error;
|
|
|
|
}
|
2005-11-07 08:00:22 -05:00
|
|
|
|
2005-04-20 16:50:49 -04:00
|
|
|
for(i = trans->packages; i; i = i->next) {
|
2005-04-06 17:01:40 -04:00
|
|
|
pmsyncpkg_t *sync = i->data;
|
2008-01-27 06:24:50 -05:00
|
|
|
alpm_list_t *j;
|
|
|
|
for(j = sync->removes; j; j = j->next) {
|
|
|
|
pmpkg_t *pkg = j->data;
|
2008-05-01 17:58:33 -04:00
|
|
|
if(!_alpm_pkg_find(tr->packages, pkg->name)) {
|
2008-01-27 06:24:50 -05:00
|
|
|
if(_alpm_trans_addtarget(tr, pkg->name) == -1) {
|
|
|
|
goto error;
|
2006-01-02 15:28:46 -05:00
|
|
|
}
|
2008-01-27 06:24:50 -05:00
|
|
|
replaces++;
|
2006-01-02 15:28:46 -05:00
|
|
|
}
|
2005-04-06 17:01:40 -04:00
|
|
|
}
|
|
|
|
}
|
2006-01-07 15:05:10 -05:00
|
|
|
if(replaces) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "removing conflicting and to-be-replaced packages\n");
|
2006-02-17 17:35:26 -05:00
|
|
|
if(_alpm_trans_prepare(tr, data) == -1) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not prepare removal transaction\n"));
|
2005-04-20 16:50:49 -04:00
|
|
|
goto error;
|
|
|
|
}
|
2005-04-24 07:14:15 -04:00
|
|
|
/* we want the frontend to be aware of commit details */
|
2005-05-04 15:55:23 -04:00
|
|
|
tr->cb_event = trans->cb_event;
|
2006-02-17 17:35:26 -05:00
|
|
|
if(_alpm_trans_commit(tr, NULL) == -1) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not commit removal transaction\n"));
|
2005-04-20 16:50:49 -04:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
}
|
2007-04-26 19:57:09 -04:00
|
|
|
_alpm_trans_free(tr);
|
|
|
|
tr = NULL;
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
/* install targets */
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "installing packages\n");
|
2006-02-17 17:35:26 -05:00
|
|
|
tr = _alpm_trans_new();
|
2005-04-14 17:07:38 -04:00
|
|
|
if(tr == NULL) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not create transaction\n"));
|
2005-04-17 16:09:06 -04:00
|
|
|
goto error;
|
|
|
|
}
|
2006-10-15 15:31:03 -04:00
|
|
|
if(_alpm_trans_init(tr, PM_TRANS_TYPE_UPGRADE, trans->flags | PM_TRANS_FLAG_NODEPS, trans->cb_event, trans->cb_conv, trans->cb_progress) == -1) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not initialize transaction\n"));
|
2005-04-14 17:07:38 -04:00
|
|
|
goto error;
|
|
|
|
}
|
2005-04-13 17:01:28 -04:00
|
|
|
for(i = trans->packages; i; i = i->next) {
|
2005-04-14 17:07:38 -04:00
|
|
|
pmsyncpkg_t *sync = i->data;
|
2005-04-24 16:11:10 -04:00
|
|
|
pmpkg_t *spkg = sync->pkg;
|
2007-08-20 13:28:51 -04:00
|
|
|
const char *fname;
|
|
|
|
char *fpath;
|
2006-11-15 02:50:37 -05:00
|
|
|
|
2006-11-22 04:03:41 -05:00
|
|
|
fname = alpm_pkg_get_filename(spkg);
|
2008-02-13 14:42:43 -05:00
|
|
|
if(fname == NULL) {
|
|
|
|
goto error;
|
|
|
|
}
|
2007-06-04 14:50:16 -04:00
|
|
|
/* Loop through the cache dirs until we find a matching file */
|
2007-08-20 13:28:51 -04:00
|
|
|
fpath = _alpm_filecache_find(fname);
|
|
|
|
|
|
|
|
if(_alpm_trans_addtarget(tr, fpath) == -1) {
|
2007-08-21 21:28:05 -04:00
|
|
|
FREE(fpath);
|
2005-04-24 16:11:10 -04:00
|
|
|
goto error;
|
|
|
|
}
|
2007-08-21 21:28:05 -04:00
|
|
|
FREE(fpath);
|
2007-08-20 13:28:51 -04:00
|
|
|
|
2007-01-19 04:28:44 -05:00
|
|
|
/* using alpm_list_last() is ok because addtarget() adds the new target at the
|
2005-04-24 16:11:10 -04:00
|
|
|
* end of the tr->packages list */
|
2007-01-19 04:28:44 -05:00
|
|
|
spkg = alpm_list_last(tr->packages)->data;
|
2008-01-27 06:24:50 -05:00
|
|
|
spkg->reason = sync->newreason;
|
2005-04-13 17:01:28 -04:00
|
|
|
}
|
2006-02-17 17:35:26 -05:00
|
|
|
if(_alpm_trans_prepare(tr, data) == -1) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not prepare transaction\n"));
|
2006-10-15 15:31:03 -04:00
|
|
|
/* pm_errno is set by trans_prepare */
|
2005-04-13 17:01:28 -04:00
|
|
|
goto error;
|
|
|
|
}
|
2006-02-17 17:35:26 -05:00
|
|
|
if(_alpm_trans_commit(tr, NULL) == -1) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not commit transaction\n"));
|
2005-04-13 17:01:28 -04:00
|
|
|
goto error;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2008-02-27 11:45:01 -05:00
|
|
|
ret = 0;
|
2005-04-13 17:01:28 -04:00
|
|
|
|
|
|
|
error:
|
2008-02-27 11:45:01 -05:00
|
|
|
FREELIST(files);
|
|
|
|
alpm_list_free(deltas);
|
|
|
|
deltas = NULL;
|
2007-04-26 19:57:09 -04:00
|
|
|
_alpm_trans_free(tr);
|
|
|
|
tr = NULL;
|
2008-02-27 11:45:01 -05:00
|
|
|
return(ret);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2007-03-03 03:13:59 -05:00
|
|
|
pmsyncpkg_t *_alpm_sync_find(alpm_list_t *syncpkgs, const char* pkgname)
|
|
|
|
{
|
|
|
|
alpm_list_t *i;
|
|
|
|
for(i = syncpkgs; i; i = i->next) {
|
|
|
|
pmsyncpkg_t *syncpkg = i->data;
|
|
|
|
if(!syncpkg) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
pmpkg_t *pkg = alpm_sync_get_pkg(syncpkg);
|
|
|
|
if(strcmp(alpm_pkg_get_name(pkg), pkgname) == 0) {
|
|
|
|
return(syncpkg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(NULL); /* not found */
|
|
|
|
}
|
|
|
|
|
2007-06-05 17:34:33 -04:00
|
|
|
pmpkg_t SYMEXPORT *alpm_sync_get_pkg(const pmsyncpkg_t *sync)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
|
|
|
/* Sanity checks */
|
|
|
|
ASSERT(sync != NULL, return(NULL));
|
|
|
|
|
|
|
|
return sync->pkg;
|
|
|
|
}
|
|
|
|
|
2008-01-27 06:24:50 -05:00
|
|
|
alpm_list_t SYMEXPORT *alpm_sync_get_removes(const pmsyncpkg_t *sync)
|
2006-11-20 04:10:23 -05:00
|
|
|
{
|
|
|
|
/* Sanity checks */
|
|
|
|
ASSERT(sync != NULL, return(NULL));
|
|
|
|
|
2008-01-27 06:24:50 -05:00
|
|
|
return sync->removes;
|
2006-11-20 04:10:23 -05:00
|
|
|
}
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* vim: set ts=2 sw=2 noet: */
|