2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* add.c
|
|
|
|
*
|
2007-07-15 21:36:46 -04:00
|
|
|
* Copyright (c) 2002-2007 by Judd Vinet <jvinet@zeroflux.org>
|
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
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
|
|
* USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2007-03-05 17:13:33 -05:00
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <string.h>
|
2006-03-02 14:06:52 -05:00
|
|
|
#include <limits.h>
|
2007-07-15 21:36:46 -04:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
2007-03-05 17:13:33 -05:00
|
|
|
|
2007-04-29 12:47:02 -04:00
|
|
|
/* libarchive */
|
|
|
|
#include <archive.h>
|
|
|
|
#include <archive_entry.h>
|
|
|
|
|
2007-03-05 17:13:33 -05:00
|
|
|
/* libalpm */
|
|
|
|
#include "add.h"
|
2007-01-19 04:28:44 -05:00
|
|
|
#include "alpm_list.h"
|
2006-10-15 15:31:03 -04:00
|
|
|
#include "trans.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "util.h"
|
|
|
|
#include "error.h"
|
|
|
|
#include "cache.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "backup.h"
|
|
|
|
#include "package.h"
|
|
|
|
#include "db.h"
|
|
|
|
#include "provide.h"
|
2005-03-23 15:06:58 -05:00
|
|
|
#include "conflict.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "deps.h"
|
|
|
|
#include "remove.h"
|
|
|
|
#include "handle.h"
|
|
|
|
|
2007-03-11 17:10:02 -04:00
|
|
|
int _alpm_add_loadtarget(pmtrans_t *trans, pmdb_t *db, char *name)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-06-17 23:25:07 -04:00
|
|
|
pmpkg_t *pkg = NULL;
|
|
|
|
const char *pkgname, *pkgver;
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *i;
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-16 17:10:05 -05:00
|
|
|
ASSERT(trans != NULL, RET_ERR(PM_ERR_TRANS_NULL, -1));
|
2005-05-01 16:46:15 -04:00
|
|
|
ASSERT(db != NULL, RET_ERR(PM_ERR_DB_NULL, -1));
|
2005-04-17 06:02:47 -04:00
|
|
|
ASSERT(name != NULL && strlen(name) != 0, RET_ERR(PM_ERR_WRONG_ARGS, -1));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "loading target '%s'\n", name);
|
2006-01-16 17:27:09 -05:00
|
|
|
|
2007-09-28 00:39:37 -04:00
|
|
|
if(alpm_pkg_load(name, 1, &pkg) != 0) {
|
2005-03-16 14:15:03 -05:00
|
|
|
goto error;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2007-06-17 23:25:07 -04:00
|
|
|
pkgname = alpm_pkg_get_name(pkg);
|
|
|
|
pkgver = alpm_pkg_get_version(pkg);
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
if(trans->type != PM_TRANS_TYPE_UPGRADE) {
|
2005-04-17 06:02:47 -04:00
|
|
|
/* only install this package if it is not already installed */
|
2006-02-17 17:35:26 -05:00
|
|
|
if(_alpm_db_get_pkgfromcache(db, pkgname)) {
|
2005-03-16 14:15:03 -05:00
|
|
|
pm_errno = PM_ERR_PKG_INSTALLED;
|
|
|
|
goto error;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2005-04-17 06:02:47 -04:00
|
|
|
} else {
|
|
|
|
if(trans->flags & PM_TRANS_FLAG_FRESHEN) {
|
|
|
|
/* only upgrade/install this package if it is already installed and at a lesser version */
|
2007-06-17 23:25:07 -04:00
|
|
|
pmpkg_t *dummy = _alpm_db_get_pkgfromcache(db, pkgname);
|
2007-02-09 16:08:10 -05:00
|
|
|
if(dummy == NULL || _alpm_versioncmp(dummy->version, pkgver) >= 0) {
|
2005-04-17 06:02:47 -04:00
|
|
|
pm_errno = PM_ERR_PKG_CANT_FRESH;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* check if an older version of said package is already in transaction packages.
|
|
|
|
* if so, replace it in the list */
|
2005-05-01 16:46:15 -04:00
|
|
|
for(i = trans->packages; i; i = i->next) {
|
|
|
|
pmpkg_t *pkg = i->data;
|
2005-04-17 06:02:47 -04:00
|
|
|
if(strcmp(pkg->name, pkgname) == 0) {
|
2007-02-09 16:08:10 -05:00
|
|
|
if(_alpm_versioncmp(pkg->version, pkgver) < 0) {
|
2006-01-02 08:26:30 -05:00
|
|
|
pmpkg_t *newpkg;
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_WARNING, _("replacing older version %s-%s by %s in target list\n"),
|
2006-02-12 04:43:10 -05:00
|
|
|
pkg->name, pkg->version, pkgver);
|
2007-09-28 00:39:37 -04:00
|
|
|
if((newpkg = _alpm_pkg_load(name, 1)) == NULL) {
|
2005-04-17 06:02:47 -04:00
|
|
|
/* pm_errno is already set by pkg_load() */
|
|
|
|
goto error;
|
|
|
|
}
|
2007-04-26 21:08:34 -04:00
|
|
|
_alpm_pkg_free(i->data);
|
2006-01-02 08:26:30 -05:00
|
|
|
i->data = newpkg;
|
2006-02-12 04:43:10 -05:00
|
|
|
} else {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_WARNING, _("newer version %s-%s is in the target list -- skipping\n"),
|
2007-03-22 14:33:27 -04:00
|
|
|
pkg->name, pkg->version);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2005-03-30 17:32:43 -05:00
|
|
|
return(0);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-10 13:19:06 -05:00
|
|
|
if(trans->flags & PM_TRANS_FLAG_ALLDEPS) {
|
2007-06-17 23:25:07 -04:00
|
|
|
pkg->reason = PM_PKG_REASON_DEPEND;
|
2006-01-10 13:19:06 -05:00
|
|
|
}
|
2005-04-24 16:11:10 -04:00
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* add the package to the transaction */
|
2007-06-17 23:25:07 -04:00
|
|
|
trans->packages = alpm_list_add(trans->packages, pkg);
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
return(0);
|
2005-03-16 14:15:03 -05:00
|
|
|
|
|
|
|
error:
|
2007-06-17 23:25:07 -04:00
|
|
|
_alpm_pkg_free(pkg);
|
2005-03-16 14:15:03 -05:00
|
|
|
return(-1);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2006-12-01 04:32:29 -05:00
|
|
|
|
2007-01-30 00:41:13 -05:00
|
|
|
/* This is still messy. We have a lot of compare functions, and we should
|
|
|
|
* try to consolidate them as much as we can (between add and sync) */
|
2007-02-21 23:42:59 -05:00
|
|
|
/*static int deppkg_cmp(const void *p1, const void *p2)
|
2006-12-01 04:32:29 -05:00
|
|
|
{
|
2007-01-30 00:41:13 -05:00
|
|
|
return(strcmp(((pmdepmissing_t *)p1)->target,
|
|
|
|
((pmdepmissing_t *)p2)->target));
|
2007-02-21 23:42:59 -05:00
|
|
|
}*/
|
2006-12-01 04:32:29 -05:00
|
|
|
|
2007-01-19 04:28:44 -05:00
|
|
|
int _alpm_add_prepare(pmtrans_t *trans, pmdb_t *db, alpm_list_t **data)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *lp = NULL, *i = NULL;
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-16 17:10:05 -05:00
|
|
|
ASSERT(trans != NULL, RET_ERR(PM_ERR_TRANS_NULL, -1));
|
2005-05-01 16:46:15 -04:00
|
|
|
ASSERT(db != NULL, RET_ERR(PM_ERR_DB_NULL, -1));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
/* Check dependencies
|
|
|
|
*/
|
|
|
|
if(!(trans->flags & PM_TRANS_FLAG_NODEPS)) {
|
2005-05-04 15:55:23 -04:00
|
|
|
EVENT(trans, PM_TRANS_EVT_CHECKDEPS_START, NULL, NULL);
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-01-15 10:55:16 -05:00
|
|
|
/* look for unsatisfied dependencies */
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "looking for unsatisfied dependencies\n");
|
2007-06-18 10:40:23 -04:00
|
|
|
lp = _alpm_checkdeps(db, trans->type, trans->packages);
|
2005-03-14 20:51:43 -05:00
|
|
|
if(lp != NULL) {
|
2006-01-15 10:55:16 -05:00
|
|
|
if(data) {
|
|
|
|
*data = lp;
|
|
|
|
} else {
|
2005-03-14 20:51:43 -05:00
|
|
|
FREELIST(lp);
|
|
|
|
}
|
2006-01-15 10:55:16 -05:00
|
|
|
RET_ERR(PM_ERR_UNSATISFIED_DEPS, -1);
|
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-01-15 10:55:16 -05:00
|
|
|
/* no unsatisfied deps, so look for conflicts */
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "looking for conflicts\n");
|
2006-02-17 17:35:26 -05:00
|
|
|
lp = _alpm_checkconflicts(db, trans->packages);
|
2006-12-01 04:32:29 -05:00
|
|
|
for(i = lp; i; i = i->next) {
|
|
|
|
pmdepmissing_t *miss = i->data;
|
|
|
|
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("replacing packages with -A and -U is not supported yet\n"));
|
|
|
|
_alpm_log(PM_LOG_ERROR, _("please remove '%s' first, using -Rd\n"), miss->depend.name);
|
2007-02-21 23:42:59 -05:00
|
|
|
RET_ERR(PM_ERR_CONFLICTING_DEPS, -1);
|
|
|
|
|
2006-12-01 04:32:29 -05:00
|
|
|
/* Attempt to resolve conflicts */
|
2007-02-21 23:42:59 -05:00
|
|
|
/*
|
|
|
|
int skip_this = 0;
|
2006-12-01 04:32:29 -05:00
|
|
|
QUESTION(trans, PM_TRANS_CONV_CONFLICT_PKG, miss->target, miss->depend.name, NULL, &skip_this);
|
|
|
|
if(skip_this) {
|
2007-01-30 00:41:13 -05:00
|
|
|
pmdepmissing_t *pkg = NULL;
|
2007-02-21 23:42:59 -05:00
|
|
|
lp = alpm_list_remove(lp, (void *)miss, deppkg_cmp, (void*)&pkg);
|
|
|
|
*/
|
2007-01-30 00:41:13 -05:00
|
|
|
/* TODO: We remove the conflict from the list but never actually remove
|
|
|
|
* the package. Need to do this to fix FS #3492. The sync code should
|
|
|
|
* provide an example of how to do this, as it handles replaces and
|
|
|
|
* removes. We run into problems because we do a file conflict check
|
|
|
|
* below and it fails there. A force flag will skip that part, but
|
|
|
|
* still not remove the original package designated here for removal.
|
|
|
|
* Better yet, dump all this shitty duplicate code and somehow combine
|
|
|
|
* it with the sync code. */
|
2007-02-21 23:42:59 -05:00
|
|
|
/*
|
2007-01-30 00:41:13 -05:00
|
|
|
FREE(pkg);
|
|
|
|
if(lp == NULL) {
|
|
|
|
break;
|
|
|
|
}
|
2007-01-30 21:58:12 -05:00
|
|
|
}
|
2007-02-21 23:42:59 -05:00
|
|
|
*/
|
2007-01-30 21:58:12 -05:00
|
|
|
}
|
2007-01-30 00:41:13 -05:00
|
|
|
/* Removal code should go here, as described above. Instead of simply
|
|
|
|
* removing items, perhaps throw them in another list to be removed, then
|
|
|
|
* proceed as sync.c would? I'm not sure because I'm not familiar enough
|
|
|
|
* with the codebase. */
|
2006-01-15 10:55:16 -05:00
|
|
|
if(lp != NULL) {
|
|
|
|
if(data) {
|
|
|
|
*data = lp;
|
|
|
|
} else {
|
|
|
|
FREELIST(lp);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2006-01-15 10:55:16 -05:00
|
|
|
RET_ERR(PM_ERR_CONFLICTING_DEPS, -1);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* re-order w.r.t. dependencies */
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "sorting by dependencies\n");
|
2006-02-17 17:35:26 -05:00
|
|
|
lp = _alpm_sortbydeps(trans->packages, PM_TRANS_TYPE_ADD);
|
2005-03-14 20:51:43 -05:00
|
|
|
/* free the old alltargs */
|
2007-04-28 03:54:25 -04:00
|
|
|
alpm_list_free(trans->packages);
|
2005-04-06 17:00:57 -04:00
|
|
|
trans->packages = lp;
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2005-05-04 15:55:23 -04:00
|
|
|
EVENT(trans, PM_TRANS_EVT_CHECKDEPS_DONE, NULL, NULL);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2007-04-28 19:56:29 -04:00
|
|
|
/* Check for file conflicts */
|
2005-03-14 20:51:43 -05:00
|
|
|
if(!(trans->flags & PM_TRANS_FLAG_FORCE)) {
|
2005-05-04 15:55:23 -04:00
|
|
|
EVENT(trans, PM_TRANS_EVT_FILECONFLICTS_START, NULL, NULL);
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "looking for file conflicts\n");
|
2007-02-19 21:14:27 -05:00
|
|
|
lp = _alpm_db_find_conflicts(db, trans, handle->root);
|
2005-03-14 20:51:43 -05:00
|
|
|
if(lp != NULL) {
|
2006-01-07 13:25:28 -05:00
|
|
|
if(data) {
|
|
|
|
*data = lp;
|
2006-01-15 10:55:16 -05:00
|
|
|
} else {
|
|
|
|
FREELIST(lp);
|
2006-01-07 13:25:28 -05:00
|
|
|
}
|
2005-03-16 17:10:05 -05:00
|
|
|
RET_ERR(PM_ERR_FILE_CONFLICTS, -1);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2005-05-04 15:55:23 -04:00
|
|
|
EVENT(trans, PM_TRANS_EVT_FILECONFLICTS_DONE, NULL, NULL);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
static int upgrade_remove(pmpkg_t *oldpkg, pmpkg_t *newpkg, pmtrans_t *trans, pmdb_t *db) {
|
|
|
|
/* this is kinda odd. If the old package exists, at this point we make a
|
|
|
|
* NEW transaction, unrelated to handle->trans, and instantiate a "remove"
|
|
|
|
* with the type PM_TRANS_TYPE_REMOVEUPGRADE. TODO: kill this weird
|
|
|
|
* behavior. */
|
|
|
|
pmtrans_t *tr = _alpm_trans_new();
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "removing old package first (%s-%s)\n",
|
2007-07-15 21:36:46 -04:00
|
|
|
oldpkg->name, oldpkg->version);
|
|
|
|
|
|
|
|
if(!tr) {
|
|
|
|
RET_ERR(PM_ERR_TRANS_ABORT, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(_alpm_trans_init(tr, PM_TRANS_TYPE_REMOVEUPGRADE, trans->flags,
|
|
|
|
NULL, NULL, NULL) == -1) {
|
|
|
|
_alpm_trans_free(tr);
|
|
|
|
tr = NULL;
|
|
|
|
RET_ERR(PM_ERR_TRANS_ABORT, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(_alpm_remove_loadtarget(tr, db, newpkg->name) == -1) {
|
|
|
|
_alpm_trans_free(tr);
|
|
|
|
tr = NULL;
|
|
|
|
RET_ERR(PM_ERR_TRANS_ABORT, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* copy the remove skiplist over */
|
|
|
|
tr->skip_remove = alpm_list_strdup(trans->skip_remove);
|
|
|
|
const alpm_list_t *b;
|
|
|
|
|
2007-09-23 15:43:03 -04:00
|
|
|
/* Add files in the OLD and NEW backup array to the NoUpgrade array
|
2007-07-15 21:36:46 -04:00
|
|
|
* so this removal operation doesn't kill them */
|
|
|
|
alpm_list_t *old_noupgrade = alpm_list_strdup(handle->noupgrade);
|
2007-09-23 15:43:03 -04:00
|
|
|
/* old package backup list */
|
|
|
|
for(b = alpm_pkg_get_backup(oldpkg); b; b = b->next) {
|
2007-07-15 21:36:46 -04:00
|
|
|
const char *backup = b->data;
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "adding %s to the NoUpgrade array temporarily\n",
|
2007-07-15 21:36:46 -04:00
|
|
|
backup);
|
|
|
|
handle->noupgrade = alpm_list_add(handle->noupgrade, strdup(backup));
|
|
|
|
}
|
2007-09-23 15:43:03 -04:00
|
|
|
/* new package backup list */
|
|
|
|
for(b = alpm_pkg_get_backup(newpkg); b; b = b->next) {
|
|
|
|
const char *backup = b->data;
|
|
|
|
/* make sure we don't add duplicate entries */
|
|
|
|
if(!alpm_list_find(handle->noupgrade, backup)) {
|
|
|
|
_alpm_log(PM_LOG_DEBUG, "adding %s to the NoUpgrade array temporarily\n",
|
|
|
|
backup);
|
|
|
|
handle->noupgrade = alpm_list_add(handle->noupgrade, strdup(backup));
|
|
|
|
}
|
|
|
|
}
|
2007-07-15 21:36:46 -04:00
|
|
|
|
|
|
|
int ret = _alpm_remove_commit(tr, db);
|
|
|
|
|
|
|
|
_alpm_trans_free(tr);
|
|
|
|
tr = NULL;
|
|
|
|
|
|
|
|
/* restore our "NoUpgrade" list to previous state */
|
|
|
|
alpm_list_free_inner(handle->noupgrade, free);
|
|
|
|
alpm_list_free(handle->noupgrade);
|
|
|
|
handle->noupgrade = old_noupgrade;
|
|
|
|
|
|
|
|
if(ret == -1) {
|
|
|
|
RET_ERR(PM_ERR_TRANS_ABORT, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int extract_single_file(struct archive *archive,
|
|
|
|
struct archive_entry *entry, pmpkg_t *newpkg, pmpkg_t *oldpkg,
|
|
|
|
pmtrans_t *trans, pmdb_t *db)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-07-15 21:36:46 -04:00
|
|
|
const char *entryname; /* the name of the file in the archive */
|
|
|
|
mode_t entrymode;
|
|
|
|
char filename[PATH_MAX]; /* the actual file we're extracting */
|
|
|
|
int needbackup = 0, notouch = 0;
|
|
|
|
char *hash_orig = NULL;
|
2007-04-29 12:47:02 -04:00
|
|
|
const int archive_flags = ARCHIVE_EXTRACT_OWNER |
|
|
|
|
ARCHIVE_EXTRACT_PERM |
|
|
|
|
ARCHIVE_EXTRACT_TIME;
|
2007-07-15 21:36:46 -04:00
|
|
|
int errors = 0;
|
|
|
|
|
|
|
|
entryname = archive_entry_pathname(entry);
|
|
|
|
entrymode = archive_entry_mode(entry);
|
|
|
|
|
|
|
|
memset(filename, 0, PATH_MAX); /* just to be sure */
|
|
|
|
|
|
|
|
if(strcmp(entryname, ".INSTALL") == 0) {
|
|
|
|
/* the install script goes inside the db */
|
|
|
|
snprintf(filename, PATH_MAX, "%s/%s-%s/install", db->path,
|
|
|
|
newpkg->name, newpkg->version);
|
|
|
|
} else if(strcmp(entryname, ".CHANGELOG") == 0) {
|
|
|
|
/* the changelog goes inside the db */
|
|
|
|
snprintf(filename, PATH_MAX, "%s/%s-%s/changelog", db->path,
|
|
|
|
newpkg->name, newpkg->version);
|
|
|
|
} else if(*entryname == '.') {
|
|
|
|
/* for now, ignore all files starting with '.' that haven't
|
|
|
|
* already been handled (for future possibilities) */
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "skipping extraction of '%s'\n", entryname);
|
2007-07-15 21:36:46 -04:00
|
|
|
archive_read_data_skip(archive);
|
|
|
|
return(0);
|
|
|
|
} else {
|
|
|
|
/* build the new entryname relative to handle->root */
|
|
|
|
snprintf(filename, PATH_MAX, "%s%s", handle->root, entryname);
|
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
/* if a file is in NoExtract then we never extract it */
|
|
|
|
if(alpm_list_find_str(handle->noextract, entryname)) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "%s is in NoExtract, skipping extraction\n",
|
2007-07-15 21:36:46 -04:00
|
|
|
entryname);
|
|
|
|
alpm_logaction("note: %s is in NoExtract, skipping extraction",
|
|
|
|
entryname);
|
|
|
|
archive_read_data_skip(archive);
|
|
|
|
return(0);
|
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
/* if a file is in the add skiplist we never extract it */
|
|
|
|
if(alpm_list_find_str(trans->skip_add, filename)) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "%s is in trans->skip_add, skipping extraction\n", entryname);
|
2007-07-15 21:36:46 -04:00
|
|
|
archive_read_data_skip(archive);
|
2005-03-14 20:51:43 -05:00
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
/* Check for file existence. This is one of the more crucial parts
|
|
|
|
* to get 'right'. Here are the possibilities, with the filesystem
|
|
|
|
* on the left and the package on the top:
|
|
|
|
* (F=file, N=node, S=symlink, D=dir)
|
|
|
|
* | F/N | S | D
|
|
|
|
* non-existent | 1 | 2 | 3
|
|
|
|
* F/N | 4 | 5 | 6
|
|
|
|
* S | 7 | 8 | 9
|
|
|
|
* D | 10 | 11 | 12
|
|
|
|
*
|
|
|
|
* 1,2,3- just extract, no magic necessary. lstat will fail here.
|
|
|
|
* 4,5,6,7,8- conflict checks should have caught this. either overwrite
|
|
|
|
* or backup the file.
|
|
|
|
* 9- follow the symlink, hopefully it is a directory, check it.
|
|
|
|
* 10- file replacing directory- don't allow it.
|
|
|
|
* 11- don't extract symlink- a dir exists here. we don't want links to
|
|
|
|
* links, etc.
|
|
|
|
* 12- skip extraction, dir already exists.
|
|
|
|
*/
|
|
|
|
struct stat lsbuf;
|
|
|
|
if(lstat(filename, &lsbuf) != 0) {
|
|
|
|
/* cases 1,2,3: couldn't stat an existing file, skip all backup checks */
|
|
|
|
} else {
|
|
|
|
/* do a stat as well, so we can see what symlinks point to */
|
|
|
|
struct stat sbuf;
|
|
|
|
stat(filename, &sbuf);
|
|
|
|
|
|
|
|
if(S_ISDIR(lsbuf.st_mode) && S_ISDIR(entrymode)) {
|
|
|
|
/* case 12: existing dir, ignore it */
|
|
|
|
if(lsbuf.st_mode != entrymode) {
|
|
|
|
/* if filesystem perms are different than pkg perms, warn user */
|
|
|
|
int mask = 07777;
|
|
|
|
_alpm_log(PM_LOG_WARNING, _("directory permissions differ on %s\n"
|
2007-09-13 10:29:05 -04:00
|
|
|
"filesystem: %o package: %o\n"), entryname, lsbuf.st_mode & mask,
|
2007-07-15 21:36:46 -04:00
|
|
|
entrymode & mask);
|
|
|
|
alpm_logaction("warning: directory permissions differ on %s\n"
|
2007-09-18 14:46:41 -04:00
|
|
|
"filesystem: %o package: %o", entryname, lsbuf.st_mode & mask,
|
2007-07-15 21:36:46 -04:00
|
|
|
entrymode & mask);
|
|
|
|
}
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "extract: skipping dir extraction of %s\n",
|
2007-07-15 21:36:46 -04:00
|
|
|
entryname);
|
|
|
|
archive_read_data_skip(archive);
|
|
|
|
return(0);
|
|
|
|
} else if(S_ISDIR(lsbuf.st_mode) && S_ISLNK(entrymode)) {
|
|
|
|
/* case 11: existing dir, symlink in package, ignore it */
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "extract: skipping symlink extraction of %s\n",
|
2007-07-15 21:36:46 -04:00
|
|
|
entryname);
|
|
|
|
archive_read_data_skip(archive);
|
|
|
|
return(0);
|
|
|
|
} else if(S_ISLNK(lsbuf.st_mode) && S_ISDIR(entrymode)) {
|
|
|
|
/* case 9: existing symlink, dir in package */
|
|
|
|
if(S_ISDIR(sbuf.st_mode)) {
|
|
|
|
/* the symlink on FS is to a directory, so we'll use it */
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "extract: skipping symlink overwrite of %s\n",
|
2007-07-15 21:36:46 -04:00
|
|
|
entryname);
|
|
|
|
archive_read_data_skip(archive);
|
|
|
|
return(0);
|
|
|
|
} else {
|
|
|
|
/* this is BAD. symlink was not to a directory */
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("extract: symlink %s does not point to dir\n"),
|
2007-07-15 21:36:46 -04:00
|
|
|
entryname);
|
|
|
|
archive_read_data_skip(archive);
|
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
} else if(S_ISDIR(lsbuf.st_mode) && S_ISREG(entrymode)) {
|
|
|
|
/* case 10: trying to overwrite dir tree with file, don't allow it */
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("extract: not overwriting dir with file %s\n"),
|
2007-07-15 21:36:46 -04:00
|
|
|
entryname);
|
|
|
|
archive_read_data_skip(archive);
|
|
|
|
return(1);
|
|
|
|
} else if(S_ISREG(lsbuf.st_mode) && S_ISDIR(entrymode)) {
|
|
|
|
/* case 6: trying to overwrite file with dir */
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "extract: overwriting file with dir %s\n",
|
2007-07-15 21:36:46 -04:00
|
|
|
entryname);
|
|
|
|
} else if(S_ISREG(entrymode)) {
|
|
|
|
/* case 4,7: */
|
|
|
|
/* if file is in NoUpgrade, don't touch it */
|
|
|
|
if(alpm_list_find_str(handle->noupgrade, entryname)) {
|
|
|
|
notouch = 1;
|
|
|
|
} else {
|
|
|
|
/* go to the backup array and see if our conflict is there */
|
|
|
|
/* check newpkg first, so that adding backup files is retroactive */
|
|
|
|
needbackup = alpm_list_find_str(alpm_pkg_get_backup(newpkg), entryname);
|
|
|
|
|
|
|
|
/* check oldpkg for a backup entry, store the hash if available */
|
|
|
|
if(oldpkg) {
|
|
|
|
hash_orig = _alpm_needbackup(entryname, alpm_pkg_get_backup(oldpkg));
|
|
|
|
if(hash_orig) {
|
|
|
|
needbackup = 1;
|
|
|
|
}
|
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
/* if we force hash_orig to be non-NULL retroactive backup works */
|
|
|
|
if(needbackup && !hash_orig) {
|
|
|
|
hash_orig = strdup("");
|
|
|
|
}
|
|
|
|
}
|
2006-07-14 19:15:07 -04:00
|
|
|
}
|
2007-07-15 21:36:46 -04:00
|
|
|
/* else if(S_ISLNK(entrymode)) { */
|
|
|
|
/* case 5,8: don't need to do anything special */
|
|
|
|
}
|
2006-07-14 19:15:07 -04:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
if(needbackup) {
|
|
|
|
char *tempfile = NULL;
|
|
|
|
char *hash_local = NULL, *hash_pkg = NULL;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
/* extract the package's version to a temporary file and checksum it */
|
|
|
|
tempfile = strdup("/tmp/alpm_XXXXXX");
|
|
|
|
fd = mkstemp(tempfile);
|
|
|
|
|
|
|
|
archive_entry_set_pathname(entry, tempfile);
|
|
|
|
|
|
|
|
int ret = archive_read_extract(archive, entry, archive_flags);
|
|
|
|
if(ret == ARCHIVE_WARN) {
|
|
|
|
/* operation succeeded but a non-critical error was encountered */
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "warning extracting %s (%s)\n",
|
2007-07-15 21:36:46 -04:00
|
|
|
entryname, archive_error_string(archive));
|
|
|
|
} else if(ret != ARCHIVE_OK) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not extract %s (%s)\n"),
|
2007-07-15 21:36:46 -04:00
|
|
|
entryname, archive_error_string(archive));
|
|
|
|
alpm_logaction("error: could not extract %s (%s)",
|
|
|
|
entryname, archive_error_string(archive));
|
|
|
|
unlink(tempfile);
|
|
|
|
FREE(hash_orig);
|
|
|
|
close(fd);
|
|
|
|
return(1);
|
2007-02-17 03:55:05 -05:00
|
|
|
}
|
2005-03-26 15:24:57 -05:00
|
|
|
|
2007-07-25 17:49:32 -04:00
|
|
|
hash_local = alpm_get_md5sum(filename);
|
|
|
|
hash_pkg = alpm_get_md5sum(tempfile);
|
2007-07-15 21:36:46 -04:00
|
|
|
|
2007-07-25 17:35:29 -04:00
|
|
|
/* append the new md5 hash to it's respective entry
|
2007-07-15 21:36:46 -04:00
|
|
|
* in newpkg's backup (it will be the new orginal) */
|
|
|
|
alpm_list_t *backups;
|
|
|
|
for(backups = alpm_pkg_get_backup(newpkg); backups;
|
|
|
|
backups = alpm_list_next(backups)) {
|
|
|
|
char *oldbackup = alpm_list_getdata(backups);
|
|
|
|
if(!oldbackup || strcmp(oldbackup, entryname) != 0) {
|
2007-08-25 10:26:41 -04:00
|
|
|
continue;
|
2007-02-17 03:55:05 -05:00
|
|
|
}
|
2007-07-15 21:36:46 -04:00
|
|
|
char *backup = NULL;
|
2007-07-25 17:49:32 -04:00
|
|
|
/* length is tab char, null byte and MD5 (32 char) */
|
|
|
|
int backup_len = strlen(oldbackup) + 34;
|
2007-07-15 21:36:46 -04:00
|
|
|
backup = malloc(backup_len);
|
|
|
|
if(!backup) {
|
|
|
|
RET_ERR(PM_ERR_MEMORY, -1);
|
2007-02-17 03:55:05 -05:00
|
|
|
}
|
2005-03-26 03:50:27 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
sprintf(backup, "%s\t%s", oldbackup, hash_pkg);
|
|
|
|
backup[backup_len-1] = '\0';
|
|
|
|
FREE(oldbackup);
|
|
|
|
backups->data = backup;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "checking hashes for %s\n", entryname);
|
|
|
|
_alpm_log(PM_LOG_DEBUG, "current: %s\n", hash_local);
|
|
|
|
_alpm_log(PM_LOG_DEBUG, "new: %s\n", hash_pkg);
|
|
|
|
_alpm_log(PM_LOG_DEBUG, "original: %s\n", hash_orig);
|
2005-03-26 03:50:27 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
if(!oldpkg) {
|
|
|
|
/* looks like we have a local file that has a different hash as the
|
|
|
|
* file in the package, move it to a .pacorig */
|
|
|
|
if(strcmp(hash_local, hash_pkg) != 0) {
|
|
|
|
char newpath[PATH_MAX];
|
|
|
|
snprintf(newpath, PATH_MAX, "%s.pacorig", filename);
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
/* move the existing file to the "pacorig" */
|
|
|
|
if(rename(filename, newpath)) {
|
|
|
|
archive_entry_set_pathname(entry, filename);
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not rename %s (%s)\n"), filename, strerror(errno));
|
2007-07-15 21:36:46 -04:00
|
|
|
alpm_logaction("error: could not rename %s (%s)", filename, strerror(errno));
|
|
|
|
errors++;
|
|
|
|
} else {
|
|
|
|
/* copy the tempfile we extracted to the real path */
|
|
|
|
if(_alpm_copyfile(tempfile, filename)) {
|
|
|
|
archive_entry_set_pathname(entry, filename);
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not copy tempfile to %s (%s)\n"), filename, strerror(errno));
|
2007-07-15 21:36:46 -04:00
|
|
|
alpm_logaction("error: could not copy tempfile to %s (%s)", filename, strerror(errno));
|
|
|
|
errors++;
|
|
|
|
} else {
|
|
|
|
archive_entry_set_pathname(entry, filename);
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_WARNING, _("%s saved as %s\n"), filename, newpath);
|
2007-07-15 21:36:46 -04:00
|
|
|
alpm_logaction("warning: %s saved as %s", filename, newpath);
|
|
|
|
}
|
|
|
|
}
|
2007-02-17 03:55:05 -05:00
|
|
|
}
|
2007-07-15 21:36:46 -04:00
|
|
|
} else if(hash_orig) {
|
|
|
|
/* the fun part */
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
if(strcmp(hash_orig, hash_local) == 0) {
|
|
|
|
/* installed file has NOT been changed by user */
|
|
|
|
if(strcmp(hash_orig, hash_pkg) != 0) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "action: installing new file: %s\n",
|
2007-07-15 21:36:46 -04:00
|
|
|
entryname);
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
if(_alpm_copyfile(tempfile, filename)) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not copy tempfile to %s (%s)\n"), filename, strerror(errno));
|
2007-07-15 21:36:46 -04:00
|
|
|
errors++;
|
|
|
|
}
|
|
|
|
archive_entry_set_pathname(entry, filename);
|
|
|
|
} else {
|
|
|
|
/* there's no sense in installing the same file twice, install
|
|
|
|
* ONLY is the original and package hashes differ */
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "action: leaving existing file in place\n");
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
|
|
|
} else if(strcmp(hash_orig, hash_pkg) == 0) {
|
|
|
|
/* originally installed file and new file are the same - this
|
|
|
|
* implies the case above failed - i.e. the file was changed by a
|
|
|
|
* user */
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "action: leaving existing file in place\n");
|
2007-07-15 21:36:46 -04:00
|
|
|
} else if(strcmp(hash_local, hash_pkg) == 0) {
|
|
|
|
/* this would be magical. The above two cases failed, but the
|
|
|
|
* user changes just so happened to make the new file exactly the
|
|
|
|
* same as the one in the package... skip it */
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "action: leaving existing file in place\n");
|
2007-07-15 21:36:46 -04:00
|
|
|
} else {
|
|
|
|
char newpath[PATH_MAX];
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "action: keeping current file and installing new one with .pacnew ending\n");
|
2007-07-15 21:36:46 -04:00
|
|
|
snprintf(newpath, PATH_MAX, "%s.pacnew", filename);
|
|
|
|
if(_alpm_copyfile(tempfile, newpath)) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not install %s as %s: %s\n"), filename, newpath, strerror(errno));
|
2007-07-15 21:36:46 -04:00
|
|
|
alpm_logaction("error: could not install %s as %s: %s", filename, newpath, strerror(errno));
|
|
|
|
} else {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_WARNING, _("%s installed as %s\n"), filename, newpath);
|
2007-07-15 21:36:46 -04:00
|
|
|
alpm_logaction("warning: %s installed as %s", filename, newpath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
FREE(hash_local);
|
|
|
|
FREE(hash_pkg);
|
|
|
|
FREE(hash_orig);
|
|
|
|
unlink(tempfile);
|
|
|
|
FREE(tempfile);
|
|
|
|
close(fd);
|
|
|
|
} else {
|
|
|
|
/* we didn't need a backup */
|
|
|
|
if(notouch) {
|
|
|
|
/* change the path to a .pacnew extension */
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "%s is in NoUpgrade -- skipping\n", filename);
|
|
|
|
_alpm_log(PM_LOG_WARNING, _("extracting %s as %s.pacnew\n"), filename, filename);
|
2007-07-15 21:36:46 -04:00
|
|
|
alpm_logaction("warning: extracting %s as %s.pacnew", filename, filename);
|
|
|
|
strncat(filename, ".pacnew", PATH_MAX - strlen(filename));
|
|
|
|
} else {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "extracting %s\n", filename);
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
2007-04-26 19:57:09 -04:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
if(trans->flags & PM_TRANS_FLAG_FORCE) {
|
|
|
|
/* if FORCE was used, unlink() each file (whether it's there
|
|
|
|
* or not) before extracting. This prevents the old "Text file busy"
|
|
|
|
* error that crops up if forcing a glibc or pacman upgrade. */
|
|
|
|
unlink(filename);
|
|
|
|
}
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
archive_entry_set_pathname(entry, filename);
|
|
|
|
|
|
|
|
int ret = archive_read_extract(archive, entry, archive_flags);
|
|
|
|
if(ret == ARCHIVE_WARN) {
|
|
|
|
/* operation succeeded but a non-critical error was encountered */
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "warning extracting %s (%s)\n",
|
2007-07-15 21:36:46 -04:00
|
|
|
entryname, archive_error_string(archive));
|
|
|
|
} else if(ret != ARCHIVE_OK) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not extract %s (%s)\n"),
|
2007-07-15 21:36:46 -04:00
|
|
|
entryname, archive_error_string(archive));
|
|
|
|
alpm_logaction("error: could not extract %s (%s)",
|
|
|
|
entryname, archive_error_string(archive));
|
|
|
|
return(1);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
/* calculate an hash if this is in newpkg's backup */
|
|
|
|
alpm_list_t *b;
|
|
|
|
for(b = alpm_pkg_get_backup(newpkg); b; b = b->next) {
|
|
|
|
char *backup = NULL, *hash = NULL;
|
|
|
|
char *oldbackup = alpm_list_getdata(b);
|
2007-07-25 17:49:32 -04:00
|
|
|
/* length is tab char, null byte and MD5 (32 char) */
|
|
|
|
int backup_len = strlen(oldbackup) + 34;
|
2005-05-04 17:06:03 -04:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
if(!oldbackup || strcmp(oldbackup, entryname) != 0) {
|
2007-09-18 14:46:41 -04:00
|
|
|
continue;
|
2007-02-10 18:44:39 -05:00
|
|
|
}
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "appending backup entry for %s\n", filename);
|
2006-09-28 16:51:33 -04:00
|
|
|
|
2007-07-25 17:49:32 -04:00
|
|
|
hash = alpm_get_md5sum(filename);
|
2007-07-15 21:36:46 -04:00
|
|
|
backup = malloc(backup_len);
|
|
|
|
if(!backup) {
|
|
|
|
RET_ERR(PM_ERR_MEMORY, -1);
|
2006-10-15 15:31:03 -04:00
|
|
|
}
|
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
sprintf(backup, "%s\t%s", oldbackup, hash);
|
|
|
|
backup[backup_len-1] = '\0';
|
|
|
|
FREE(hash);
|
|
|
|
FREE(oldbackup);
|
|
|
|
b->data = backup;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(errors);
|
|
|
|
}
|
2005-05-04 17:06:03 -04:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
static int commit_single_pkg(pmpkg_t *newpkg, int pkg_current, int pkg_count,
|
|
|
|
pmtrans_t *trans, pmdb_t *db)
|
|
|
|
{
|
|
|
|
int i, ret = 0, errors = 0;
|
|
|
|
struct archive *archive;
|
|
|
|
struct archive_entry *entry;
|
|
|
|
char cwd[PATH_MAX] = "";
|
|
|
|
char scriptlet[PATH_MAX+1];
|
|
|
|
int is_upgrade = 0;
|
|
|
|
double percent = 0.0;
|
|
|
|
pmpkg_t *oldpkg = NULL;
|
|
|
|
|
|
|
|
snprintf(scriptlet, PATH_MAX, "%s%s-%s/install", db->path,
|
|
|
|
alpm_pkg_get_name(newpkg), alpm_pkg_get_version(newpkg));
|
|
|
|
|
|
|
|
/* see if this is an upgrade. if so, remove the old package first */
|
|
|
|
pmpkg_t *local = _alpm_db_get_pkgfromcache(db, newpkg->name);
|
|
|
|
if(local) {
|
|
|
|
is_upgrade = 1;
|
|
|
|
|
|
|
|
EVENT(trans, PM_TRANS_EVT_UPGRADE_START, newpkg, NULL);
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "upgrading package %s-%s\n",
|
2007-07-15 21:36:46 -04:00
|
|
|
newpkg->name, newpkg->version);
|
|
|
|
|
|
|
|
/* we'll need to save some record for backup checks later */
|
|
|
|
oldpkg = _alpm_pkg_dup(local);
|
|
|
|
/* copy over the install reason (unless alldeps is set) */
|
|
|
|
if(trans->flags & PM_TRANS_FLAG_ALLDEPS) {
|
|
|
|
newpkg->reason = PM_PKG_REASON_DEPEND;
|
|
|
|
} else {
|
|
|
|
newpkg->reason = alpm_pkg_get_reason(local);
|
|
|
|
}
|
2005-10-07 19:29:49 -04:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
/* pre_upgrade scriptlet */
|
|
|
|
if(alpm_pkg_has_scriptlet(newpkg) && !(trans->flags & PM_TRANS_FLAG_NOSCRIPTLET)) {
|
2007-08-14 10:14:35 -04:00
|
|
|
_alpm_runscriptlet(handle->root, newpkg->origin_data.file,
|
2007-08-16 16:19:06 -04:00
|
|
|
"pre_upgrade", newpkg->version, oldpkg->version);
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
is_upgrade = 0;
|
2007-02-19 21:14:27 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
EVENT(trans, PM_TRANS_EVT_ADD_START, newpkg, NULL);
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "adding package %s-%s\n",
|
2007-07-15 21:36:46 -04:00
|
|
|
newpkg->name, newpkg->version);
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
/* pre_install scriptlet */
|
|
|
|
if(alpm_pkg_has_scriptlet(newpkg) && !(trans->flags & PM_TRANS_FLAG_NOSCRIPTLET)) {
|
2007-08-14 10:14:35 -04:00
|
|
|
_alpm_runscriptlet(handle->root, newpkg->origin_data.file,
|
2007-08-16 16:19:06 -04:00
|
|
|
"pre_install", newpkg->version, NULL);
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
|
|
|
}
|
2005-05-04 17:06:03 -04:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
if(oldpkg) {
|
|
|
|
/* set up fake remove transaction */
|
|
|
|
int ret = upgrade_remove(oldpkg, newpkg, trans, db);
|
|
|
|
if(ret != 0) {
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
}
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
if(!(trans->flags & PM_TRANS_FLAG_DBONLY)) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "extracting files\n");
|
2005-05-04 17:06:03 -04:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
if ((archive = archive_read_new()) == NULL) {
|
|
|
|
RET_ERR(PM_ERR_LIBARCHIVE_ERROR, -1);
|
|
|
|
}
|
2005-05-04 17:06:03 -04:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
archive_read_support_compression_all(archive);
|
|
|
|
archive_read_support_format_all(archive);
|
2005-05-04 17:06:03 -04:00
|
|
|
|
2007-08-14 10:14:35 -04:00
|
|
|
if(archive_read_open_filename(archive, newpkg->origin_data.file,
|
|
|
|
ARCHIVE_DEFAULT_BYTES_PER_BLOCK) != ARCHIVE_OK) {
|
2007-07-15 21:36:46 -04:00
|
|
|
RET_ERR(PM_ERR_PKG_OPEN, -1);
|
|
|
|
}
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
/* save the cwd so we can restore it later */
|
|
|
|
if(getcwd(cwd, PATH_MAX) == NULL) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not get current working directory\n"));
|
2007-07-15 21:36:46 -04:00
|
|
|
cwd[0] = 0;
|
|
|
|
}
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
/* libarchive requires this for extracting hard links */
|
|
|
|
chdir(handle->root);
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
/* call PROGRESS once with 0 percent, as we sort-of skip that here */
|
|
|
|
if(is_upgrade) {
|
|
|
|
PROGRESS(trans, PM_TRANS_PROGRESS_UPGRADE_START,
|
|
|
|
alpm_pkg_get_name(newpkg), 0, pkg_count, pkg_current);
|
|
|
|
} else {
|
|
|
|
PROGRESS(trans, PM_TRANS_PROGRESS_ADD_START,
|
|
|
|
alpm_pkg_get_name(newpkg), 0, pkg_count, pkg_current);
|
|
|
|
}
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
for(i = 0; archive_read_next_header(archive, &entry) == ARCHIVE_OK; i++) {
|
|
|
|
if(newpkg->size != 0) {
|
|
|
|
/* Using compressed size for calculations here, as newpkg->isize is not
|
|
|
|
* exact when it comes to comparing to the ACTUAL uncompressed size
|
|
|
|
* (missing metadata sizes) */
|
|
|
|
unsigned long pos = archive_position_compressed(archive);
|
|
|
|
percent = (double)pos / (double)newpkg->size;
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "decompression progress: %f%% (%ld / %ld)\n",
|
2007-07-15 21:36:46 -04:00
|
|
|
percent*100.0, pos, newpkg->size);
|
|
|
|
if(percent >= 1.0) {
|
|
|
|
percent = 1.0;
|
2005-05-04 17:06:03 -04:00
|
|
|
}
|
|
|
|
}
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
if(is_upgrade) {
|
|
|
|
PROGRESS(trans, PM_TRANS_PROGRESS_UPGRADE_START,
|
|
|
|
alpm_pkg_get_name(newpkg), (int)(percent * 100), pkg_count,
|
|
|
|
pkg_current);
|
|
|
|
} else {
|
|
|
|
PROGRESS(trans, PM_TRANS_PROGRESS_ADD_START,
|
|
|
|
alpm_pkg_get_name(newpkg), (int)(percent * 100), pkg_count,
|
|
|
|
pkg_current);
|
2006-10-15 15:31:03 -04:00
|
|
|
}
|
2005-05-04 17:06:03 -04:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
/* extract the next file from the archive */
|
|
|
|
errors += extract_single_file(archive, entry, newpkg, oldpkg,
|
|
|
|
trans, db);
|
2005-05-04 17:06:03 -04:00
|
|
|
}
|
2007-07-15 21:36:46 -04:00
|
|
|
archive_read_finish(archive);
|
2005-05-04 17:06:03 -04:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
/* restore the old cwd is we have it */
|
|
|
|
if(strlen(cwd)) {
|
|
|
|
chdir(cwd);
|
2007-03-01 02:03:05 -05:00
|
|
|
}
|
2007-07-15 21:36:46 -04:00
|
|
|
|
|
|
|
if(errors) {
|
|
|
|
ret = 1;
|
|
|
|
if(is_upgrade) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("problem occurred while upgrading %s\n"),
|
2007-07-15 21:36:46 -04:00
|
|
|
newpkg->name);
|
|
|
|
alpm_logaction("error: problem occurred while upgrading %s",
|
|
|
|
newpkg->name);
|
|
|
|
} else {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("problem occurred while installing %s\n"),
|
2007-07-15 21:36:46 -04:00
|
|
|
newpkg->name);
|
|
|
|
alpm_logaction("error: problem occurred while installing %s",
|
|
|
|
newpkg->name);
|
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Update the requiredby field by scanning the whole database
|
|
|
|
* looking for packages depending on the package to add */
|
|
|
|
_alpm_pkg_update_requiredby(newpkg);
|
|
|
|
|
|
|
|
/* make an install date (in UTC) */
|
2007-09-19 01:21:56 -04:00
|
|
|
newpkg->installdate = time(NULL);
|
2007-07-15 21:36:46 -04:00
|
|
|
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "updating database\n");
|
|
|
|
_alpm_log(PM_LOG_DEBUG, "adding database entry '%s'\n", newpkg->name);
|
2007-07-15 21:36:46 -04:00
|
|
|
|
|
|
|
if(_alpm_db_write(db, newpkg, INFRQ_ALL)) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not update database entry %s-%s\n"),
|
2007-07-15 21:36:46 -04:00
|
|
|
alpm_pkg_get_name(newpkg), alpm_pkg_get_version(newpkg));
|
|
|
|
alpm_logaction("error: could not update database entry %s-%s",
|
|
|
|
alpm_pkg_get_name(newpkg), alpm_pkg_get_version(newpkg));
|
|
|
|
RET_ERR(PM_ERR_DB_WRITE, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(_alpm_db_add_pkgincache(db, newpkg) == -1) {
|
2007-08-23 22:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not add entry '%s' in cache\n"),
|
2007-07-15 21:36:46 -04:00
|
|
|
alpm_pkg_get_name(newpkg));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* update dependency packages' REQUIREDBY fields */
|
|
|
|
_alpm_trans_update_depends(trans, newpkg);
|
2005-03-26 03:50:27 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
if(is_upgrade) {
|
|
|
|
PROGRESS(trans, PM_TRANS_PROGRESS_UPGRADE_START,
|
|
|
|
alpm_pkg_get_name(newpkg), 100, pkg_count, pkg_current);
|
|
|
|
} else {
|
|
|
|
PROGRESS(trans, PM_TRANS_PROGRESS_ADD_START,
|
|
|
|
alpm_pkg_get_name(newpkg), 100, pkg_count, pkg_current);
|
|
|
|
}
|
|
|
|
EVENT(trans, PM_TRANS_EVT_EXTRACT_DONE, NULL, NULL);
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
/* run the post-install script if it exists */
|
|
|
|
if(alpm_pkg_has_scriptlet(newpkg)
|
|
|
|
&& !(trans->flags & PM_TRANS_FLAG_NOSCRIPTLET)) {
|
2007-07-14 09:34:39 -04:00
|
|
|
if(is_upgrade) {
|
2007-07-15 21:36:46 -04:00
|
|
|
_alpm_runscriptlet(handle->root, scriptlet, "post_upgrade",
|
|
|
|
alpm_pkg_get_version(newpkg),
|
2007-08-16 16:19:06 -04:00
|
|
|
oldpkg ? alpm_pkg_get_version(oldpkg) : NULL);
|
2007-07-14 09:34:39 -04:00
|
|
|
} else {
|
2007-07-15 21:36:46 -04:00
|
|
|
_alpm_runscriptlet(handle->root, scriptlet, "post_install",
|
2007-08-16 16:19:06 -04:00
|
|
|
alpm_pkg_get_version(newpkg), NULL);
|
2007-07-14 09:34:39 -04:00
|
|
|
}
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
2006-10-15 15:31:03 -04:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
if(is_upgrade) {
|
|
|
|
EVENT(trans, PM_TRANS_EVT_UPGRADE_DONE, newpkg, oldpkg);
|
|
|
|
} else {
|
|
|
|
EVENT(trans, PM_TRANS_EVT_ADD_DONE, newpkg, oldpkg);
|
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
_alpm_pkg_free(oldpkg);
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int _alpm_add_commit(pmtrans_t *trans, pmdb_t *db)
|
|
|
|
{
|
|
|
|
int pkg_count, pkg_current;
|
|
|
|
alpm_list_t *targ;
|
|
|
|
|
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
|
|
|
ASSERT(trans != NULL, RET_ERR(PM_ERR_TRANS_NULL, -1));
|
|
|
|
ASSERT(db != NULL, RET_ERR(PM_ERR_DB_NULL, -1));
|
|
|
|
|
|
|
|
if(trans->packages == NULL) {
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_count = alpm_list_count(trans->targets);
|
|
|
|
pkg_current = 1;
|
|
|
|
|
|
|
|
/* loop through our package list adding/upgrading one at a time */
|
|
|
|
for(targ = trans->packages; targ; targ = targ->next) {
|
|
|
|
if(handle->trans->state == STATE_INTERRUPTED) {
|
2007-09-07 18:36:38 -04:00
|
|
|
return(0);
|
2007-07-14 09:34:39 -04:00
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
pmpkg_t *newpkg = (pmpkg_t *)targ->data;
|
|
|
|
commit_single_pkg(newpkg, pkg_current, pkg_count, trans, db);
|
|
|
|
pkg_current++;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* run ldconfig if it exists */
|
2007-09-07 18:36:38 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, "running \"ldconfig -r %s\"\n", handle->root);
|
|
|
|
_alpm_ldconfig(handle->root);
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|