2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* add.c
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2014-01-01 05:24:48 -05:00
|
|
|
* Copyright (c) 2006-2014 Pacman Development Team <pacman-dev@archlinux.org>
|
2009-07-01 03:08:33 -04:00
|
|
|
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
|
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 <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
2006-03-02 14:06:52 -05:00
|
|
|
#include <limits.h>
|
2011-09-19 15:08:14 -04:00
|
|
|
#include <fcntl.h>
|
2007-07-15 21:36:46 -04:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
2012-01-06 17:09:19 -05:00
|
|
|
#include <stdint.h> /* int64_t */
|
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"
|
2011-06-07 17:06:16 -04:00
|
|
|
#include "alpm.h"
|
2007-01-19 04:28:44 -05:00
|
|
|
#include "alpm_list.h"
|
2011-06-07 17:06:16 -04:00
|
|
|
#include "handle.h"
|
2013-01-28 20:23:25 -05:00
|
|
|
#include "libarchive-compat.h"
|
2006-10-15 15:31:03 -04:00
|
|
|
#include "trans.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "util.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "backup.h"
|
|
|
|
#include "package.h"
|
|
|
|
#include "db.h"
|
|
|
|
#include "remove.h"
|
|
|
|
#include "handle.h"
|
|
|
|
|
2011-04-17 03:45:52 -04:00
|
|
|
/** Add a package to the transaction. */
|
2011-06-28 09:26:39 -04:00
|
|
|
int SYMEXPORT alpm_add_pkg(alpm_handle_t *handle, alpm_pkg_t *pkg)
|
2010-10-16 18:57:37 -04:00
|
|
|
{
|
|
|
|
const char *pkgname, *pkgver;
|
2011-06-28 09:27:16 -04:00
|
|
|
alpm_trans_t *trans;
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *local;
|
2010-10-16 18:57:37 -04:00
|
|
|
|
|
|
|
/* Sanity checks */
|
2011-06-14 11:01:08 -04:00
|
|
|
CHECK_HANDLE(handle, return -1);
|
2011-07-01 12:01:39 -04:00
|
|
|
ASSERT(pkg != NULL, RET_ERR(handle, ALPM_ERR_WRONG_ARGS, -1));
|
2014-02-07 13:04:58 -05:00
|
|
|
ASSERT(pkg->origin != ALPM_PKG_FROM_LOCALDB,
|
|
|
|
RET_ERR(handle, ALPM_ERR_WRONG_ARGS, -1));
|
2011-07-01 12:01:39 -04:00
|
|
|
ASSERT(handle == pkg->handle, RET_ERR(handle, ALPM_ERR_WRONG_ARGS, -1));
|
2011-06-09 17:00:55 -04:00
|
|
|
trans = handle->trans;
|
2011-07-01 12:01:39 -04:00
|
|
|
ASSERT(trans != NULL, RET_ERR(handle, ALPM_ERR_TRANS_NULL, -1));
|
2011-06-09 17:00:55 -04:00
|
|
|
ASSERT(trans->state == STATE_INITIALIZED,
|
2011-07-01 12:01:39 -04:00
|
|
|
RET_ERR(handle, ALPM_ERR_TRANS_NOT_INITIALIZED, -1));
|
2010-10-16 18:57:37 -04:00
|
|
|
|
2011-04-21 23:09:57 -04:00
|
|
|
pkgname = pkg->name;
|
|
|
|
pkgver = pkg->version;
|
2010-10-16 18:57:37 -04:00
|
|
|
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "adding package '%s'\n", pkgname);
|
2010-10-16 18:57:37 -04:00
|
|
|
|
2012-08-12 06:48:53 -04:00
|
|
|
if(alpm_pkg_find(trans->add, pkgname)) {
|
2011-07-01 12:01:39 -04:00
|
|
|
RET_ERR(handle, ALPM_ERR_TRANS_DUP_TARGET, -1);
|
2010-10-16 18:57:37 -04:00
|
|
|
}
|
|
|
|
|
2011-06-09 17:00:55 -04:00
|
|
|
local = _alpm_db_get_pkgfromcache(handle->db_local, pkgname);
|
2010-10-16 18:57:37 -04:00
|
|
|
if(local) {
|
2011-08-18 00:25:19 -04:00
|
|
|
const char *localpkgname = local->name;
|
|
|
|
const char *localpkgver = local->version;
|
2010-10-16 18:57:37 -04:00
|
|
|
int cmp = _alpm_pkg_compare_versions(pkg, local);
|
|
|
|
|
|
|
|
if(cmp == 0) {
|
2011-07-01 12:01:39 -04:00
|
|
|
if(trans->flags & ALPM_TRANS_FLAG_NEEDED) {
|
2010-10-16 18:57:37 -04:00
|
|
|
/* with the NEEDED flag, packages up to date are not reinstalled */
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_WARNING, _("%s-%s is up to date -- skipping\n"),
|
2010-10-16 18:57:37 -04:00
|
|
|
localpkgname, localpkgver);
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
2011-07-01 12:01:39 -04:00
|
|
|
} else if(!(trans->flags & ALPM_TRANS_FLAG_DOWNLOADONLY)) {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_WARNING, _("%s-%s is up to date -- reinstalling\n"),
|
2010-10-16 18:57:37 -04:00
|
|
|
localpkgname, localpkgver);
|
|
|
|
}
|
|
|
|
} else if(cmp < 0) {
|
|
|
|
/* local version is newer */
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_WARNING, _("downgrading package %s (%s => %s)\n"),
|
2010-10-16 18:57:37 -04:00
|
|
|
localpkgname, localpkgver, pkgver);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* add the package to the transaction */
|
2011-07-01 12:01:38 -04:00
|
|
|
pkg->reason = ALPM_PKG_REASON_EXPLICIT;
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "adding package %s-%s to the transaction add list\n",
|
2010-10-16 18:57:37 -04:00
|
|
|
pkgname, pkgver);
|
|
|
|
trans->add = alpm_list_add(trans->add, pkg);
|
|
|
|
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
2010-10-16 18:57:37 -04:00
|
|
|
}
|
|
|
|
|
2011-06-28 00:04:00 -04:00
|
|
|
static int perform_extraction(alpm_handle_t *handle, struct archive *archive,
|
2008-10-31 23:43:55 -04:00
|
|
|
struct archive_entry *entry, const char *filename, const char *origname)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
const int archive_flags = ARCHIVE_EXTRACT_OWNER |
|
|
|
|
ARCHIVE_EXTRACT_PERM |
|
|
|
|
ARCHIVE_EXTRACT_TIME;
|
|
|
|
|
|
|
|
archive_entry_set_pathname(entry, filename);
|
|
|
|
|
|
|
|
ret = archive_read_extract(archive, entry, archive_flags);
|
|
|
|
if(ret == ARCHIVE_WARN && archive_errno(archive) != ENOSPC) {
|
|
|
|
/* operation succeeded but a "non-critical" error was encountered */
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_WARNING, _("warning given when extracting %s (%s)\n"),
|
2008-10-31 23:43:55 -04:00
|
|
|
origname, archive_error_string(archive));
|
|
|
|
} else if(ret != ARCHIVE_OK) {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_ERROR, _("could not extract %s (%s)\n"),
|
2008-10-31 23:43:55 -04:00
|
|
|
origname, archive_error_string(archive));
|
2013-01-18 20:42:21 -05:00
|
|
|
alpm_logaction(handle, ALPM_CALLER_PREFIX,
|
|
|
|
"error: could not extract %s (%s)\n",
|
2008-10-31 23:43:55 -04:00
|
|
|
origname, archive_error_string(archive));
|
2011-03-20 20:45:57 -04:00
|
|
|
return 1;
|
2008-10-31 23:43:55 -04:00
|
|
|
}
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
2008-10-31 23:43:55 -04:00
|
|
|
}
|
|
|
|
|
2011-09-30 12:38:36 -04:00
|
|
|
static int try_rename(alpm_handle_t *handle, const char *src, const char *dest)
|
|
|
|
{
|
|
|
|
if(rename(src, dest)) {
|
|
|
|
_alpm_log(handle, ALPM_LOG_ERROR, _("could not rename %s to %s (%s)\n"),
|
|
|
|
src, dest, strerror(errno));
|
2013-01-18 20:42:21 -05:00
|
|
|
alpm_logaction(handle, ALPM_CALLER_PREFIX,
|
|
|
|
"error: could not rename %s to %s (%s)\n", src, dest, strerror(errno));
|
2011-09-30 12:38:36 -04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-06-28 00:04:00 -04:00
|
|
|
static int extract_single_file(alpm_handle_t *handle, struct archive *archive,
|
2011-06-28 09:26:39 -04:00
|
|
|
struct archive_entry *entry, alpm_pkg_t *newpkg, alpm_pkg_t *oldpkg)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2008-05-04 21:51:04 -04:00
|
|
|
const char *entryname;
|
2007-07-15 21:36:46 -04:00
|
|
|
mode_t entrymode;
|
|
|
|
char filename[PATH_MAX]; /* the actual file we're extracting */
|
|
|
|
int needbackup = 0, notouch = 0;
|
2011-06-16 14:15:11 -04:00
|
|
|
const char *hash_orig = NULL;
|
2008-05-04 21:51:04 -04:00
|
|
|
char *entryname_orig = NULL;
|
2007-07-15 21:36:46 -04:00
|
|
|
int errors = 0;
|
|
|
|
|
2008-05-04 21:51:04 -04:00
|
|
|
entryname = archive_entry_pathname(entry);
|
2007-07-15 21:36:46 -04:00
|
|
|
entrymode = archive_entry_mode(entry);
|
|
|
|
|
|
|
|
if(strcmp(entryname, ".INSTALL") == 0) {
|
|
|
|
/* the install script goes inside the db */
|
2009-09-14 23:44:51 -04:00
|
|
|
snprintf(filename, PATH_MAX, "%s%s-%s/install",
|
2011-06-03 14:18:36 -04:00
|
|
|
_alpm_db_path(handle->db_local), newpkg->name, newpkg->version);
|
Use archive_entry_set_perm instead of archive_entry_set_mode
This patch fixes FS#12148 ('unstable' regular file).
I also changed the other archive_entry_set_mode usage in add.c to
archive_entry_set_perm.
Since I cannot find any relevant info in libarchive manual, I quote
Tim Kientzle (the author of libarchive) here, and I say thank you for
his help.
*** Tim Kientzle wrote *************************************
This is the problem in libalpm/util.c:
323 if(S_ISREG(st->st_mode)) {
324 archive_entry_set_mode(entry, 0644);
325 } else if(S_ISDIR(st->st_mode)) {
326 archive_entry_set_mode(entry, 0755);
327 }
Your example unstable.db.tar.gz is not empty. It has
one entry in it, called "./". That entry is marked
as a directory. But, when you call archive_entry_set_mode(),
you are changing the file type! archive_read_extract()
then creates the file /var/unstable as you requested.
(archive_read_extract() will replace an empty directory
with a file.)
You should either set the mode value correctly:
323 if(S_ISREG(st->st_mode)) {
324 archive_entry_set_mode(entry, IFREG | 0644);
325 } else if(S_ISDIR(st->st_mode)) {
326 archive_entry_set_mode(entry, IFDIR | 0755);
327 }
Or use archive_entry_set_perm(), which does not change
the file type:
323 if(S_ISREG(st->st_mode)) {
324 archive_entry_set_perm(entry, 0644);
325 } else if(S_ISDIR(st->st_mode)) {
326 archive_entry_set_perm(entry, 0755);
327 }
************************************************************
Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu>
Signed-off-by: Dan McGee <dan@archlinux.org>
2009-01-18 14:03:56 -05:00
|
|
|
archive_entry_set_perm(entry, 0644);
|
2007-07-15 21:36:46 -04:00
|
|
|
} else if(strcmp(entryname, ".CHANGELOG") == 0) {
|
|
|
|
/* the changelog goes inside the db */
|
2009-09-14 23:44:51 -04:00
|
|
|
snprintf(filename, PATH_MAX, "%s%s-%s/changelog",
|
2011-06-03 14:18:36 -04:00
|
|
|
_alpm_db_path(handle->db_local), newpkg->name, newpkg->version);
|
Use archive_entry_set_perm instead of archive_entry_set_mode
This patch fixes FS#12148 ('unstable' regular file).
I also changed the other archive_entry_set_mode usage in add.c to
archive_entry_set_perm.
Since I cannot find any relevant info in libarchive manual, I quote
Tim Kientzle (the author of libarchive) here, and I say thank you for
his help.
*** Tim Kientzle wrote *************************************
This is the problem in libalpm/util.c:
323 if(S_ISREG(st->st_mode)) {
324 archive_entry_set_mode(entry, 0644);
325 } else if(S_ISDIR(st->st_mode)) {
326 archive_entry_set_mode(entry, 0755);
327 }
Your example unstable.db.tar.gz is not empty. It has
one entry in it, called "./". That entry is marked
as a directory. But, when you call archive_entry_set_mode(),
you are changing the file type! archive_read_extract()
then creates the file /var/unstable as you requested.
(archive_read_extract() will replace an empty directory
with a file.)
You should either set the mode value correctly:
323 if(S_ISREG(st->st_mode)) {
324 archive_entry_set_mode(entry, IFREG | 0644);
325 } else if(S_ISDIR(st->st_mode)) {
326 archive_entry_set_mode(entry, IFDIR | 0755);
327 }
Or use archive_entry_set_perm(), which does not change
the file type:
323 if(S_ISREG(st->st_mode)) {
324 archive_entry_set_perm(entry, 0644);
325 } else if(S_ISDIR(st->st_mode)) {
326 archive_entry_set_perm(entry, 0755);
327 }
************************************************************
Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu>
Signed-off-by: Dan McGee <dan@archlinux.org>
2009-01-18 14:03:56 -05:00
|
|
|
archive_entry_set_perm(entry, 0644);
|
2012-04-30 02:26:54 -04:00
|
|
|
} else if(strcmp(entryname, ".MTREE") == 0) {
|
|
|
|
/* the mtree file goes inside the db */
|
|
|
|
snprintf(filename, PATH_MAX, "%s%s-%s/mtree",
|
|
|
|
_alpm_db_path(handle->db_local), newpkg->name, newpkg->version);
|
|
|
|
archive_entry_set_perm(entry, 0644);
|
2007-07-15 21:36:46 -04:00
|
|
|
} else if(*entryname == '.') {
|
|
|
|
/* for now, ignore all files starting with '.' that haven't
|
|
|
|
* already been handled (for future possibilities) */
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "skipping extraction of '%s'\n", entryname);
|
2007-07-15 21:36:46 -04:00
|
|
|
archive_read_data_skip(archive);
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
2007-07-15 21:36:46 -04:00
|
|
|
} else {
|
2014-01-27 17:37:49 -05:00
|
|
|
if (!alpm_filelist_contains(&newpkg->files, entryname)) {
|
|
|
|
_alpm_log(handle, ALPM_LOG_WARNING, _("file not found in file list for package %s. skipping extraction of %s\n"),
|
|
|
|
newpkg->name, entryname);
|
|
|
|
return 0;
|
|
|
|
}
|
2007-07-15 21:36:46 -04:00
|
|
|
/* 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 */
|
2013-06-18 11:44:15 -04:00
|
|
|
if(_alpm_fnmatch_patterns(handle->noextract, entryname) == 0) {
|
2013-02-15 22:59:57 -05:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "%s is in NoExtract,"
|
|
|
|
" skipping extraction of %s\n",
|
|
|
|
entryname, filename);
|
2013-01-18 20:42:21 -05:00
|
|
|
alpm_logaction(handle, ALPM_CALLER_PREFIX,
|
|
|
|
"note: %s is in NoExtract, skipping extraction\n", entryname);
|
2007-07-15 21:36:46 -04:00
|
|
|
archive_read_data_skip(archive);
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
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)
|
2013-03-10 15:34:52 -04:00
|
|
|
* | F/N | D
|
|
|
|
* non-existent | 1 | 2
|
|
|
|
* F/N | 3 | 4
|
|
|
|
* D | 5 | 6
|
2007-07-15 21:36:46 -04:00
|
|
|
*
|
2014-06-26 11:50:34 -04:00
|
|
|
* 1,2- extract, no magic necessary. lstat (llstat) will fail here.
|
2013-03-10 15:34:52 -04:00
|
|
|
* 3,4- conflict checks should have caught this. either overwrite
|
2007-07-15 21:36:46 -04:00
|
|
|
* or backup the file.
|
2013-03-10 15:34:52 -04:00
|
|
|
* 5- file replacing directory- don't allow it.
|
|
|
|
* 6- skip extraction, dir already exists.
|
2007-07-15 21:36:46 -04:00
|
|
|
*/
|
2008-02-07 08:58:23 -05:00
|
|
|
|
2013-03-10 15:34:52 -04:00
|
|
|
struct stat lsbuf;
|
2014-06-26 11:50:34 -04:00
|
|
|
if(llstat(filename, &lsbuf) != 0) {
|
2013-03-10 15:34:52 -04:00
|
|
|
/* cases 1,2: file doesn't exist, skip all backup checks */
|
2007-07-15 21:36:46 -04:00
|
|
|
} else {
|
2009-07-17 09:48:57 -04:00
|
|
|
if(S_ISDIR(lsbuf.st_mode)) {
|
|
|
|
if(S_ISDIR(entrymode)) {
|
2013-07-21 02:10:25 -04:00
|
|
|
uid_t entryuid = archive_entry_uid(entry);
|
|
|
|
gid_t entrygid = archive_entry_gid(entry);
|
|
|
|
|
2013-03-10 15:34:52 -04:00
|
|
|
/* case 6: existing dir, ignore it */
|
2009-07-17 09:48:57 -04:00
|
|
|
if(lsbuf.st_mode != entrymode) {
|
|
|
|
/* if filesystem perms are different than pkg perms, warn user */
|
2009-10-11 15:02:20 -04:00
|
|
|
mode_t mask = 07777;
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_WARNING, _("directory permissions differ on %s\n"
|
2013-07-21 02:10:25 -04:00
|
|
|
"filesystem: %o package: %o\n"), filename, lsbuf.st_mode & mask,
|
2009-07-17 09:48:57 -04:00
|
|
|
entrymode & mask);
|
2013-01-18 20:42:21 -05:00
|
|
|
alpm_logaction(handle, ALPM_CALLER_PREFIX,
|
|
|
|
"warning: directory permissions differ on %s\n"
|
2013-02-15 22:59:57 -05:00
|
|
|
"filesystem: %o package: %o\n", filename, lsbuf.st_mode & mask,
|
2009-07-17 09:48:57 -04:00
|
|
|
entrymode & mask);
|
|
|
|
}
|
2013-07-21 02:10:25 -04:00
|
|
|
|
|
|
|
if((entryuid != lsbuf.st_uid) || (entrygid != lsbuf.st_gid)) {
|
|
|
|
_alpm_log(handle, ALPM_LOG_WARNING, _("directory ownership differs on %s\n"
|
|
|
|
"filesystem: %u:%u package: %u:%u\n"), filename,
|
|
|
|
lsbuf.st_uid, lsbuf.st_gid, entryuid, entrygid);
|
|
|
|
alpm_logaction(handle, ALPM_CALLER_PREFIX,
|
|
|
|
"warning: directory ownership differs on %s\n"
|
|
|
|
"filesystem: %u:%u package: %u:%u\n", filename,
|
|
|
|
lsbuf.st_uid, lsbuf.st_gid, entryuid, entrygid);
|
|
|
|
}
|
|
|
|
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "extract: skipping dir extraction of %s\n",
|
2013-02-15 22:59:57 -05:00
|
|
|
filename);
|
2009-07-17 09:48:57 -04:00
|
|
|
archive_read_data_skip(archive);
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
2009-07-17 09:48:57 -04:00
|
|
|
} else {
|
2013-03-10 15:34:52 -04:00
|
|
|
/* case 5: trying to overwrite dir with file, don't allow it */
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_ERROR, _("extract: not overwriting dir with file %s\n"),
|
2013-02-15 22:59:57 -05:00
|
|
|
filename);
|
2009-07-17 09:48:57 -04:00
|
|
|
archive_read_data_skip(archive);
|
2011-03-20 20:45:57 -04:00
|
|
|
return 1;
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
2013-03-10 15:34:52 -04:00
|
|
|
} else if(S_ISDIR(entrymode)) {
|
|
|
|
/* case 4: trying to overwrite file with dir */
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "extract: overwriting file with dir %s\n",
|
2013-02-15 22:59:57 -05:00
|
|
|
filename);
|
2013-03-10 15:34:52 -04:00
|
|
|
} else {
|
|
|
|
/* case 3: */
|
2007-07-15 21:36:46 -04:00
|
|
|
/* if file is in NoUpgrade, don't touch it */
|
2013-06-18 11:44:15 -04:00
|
|
|
if(_alpm_fnmatch_patterns(handle->noupgrade, entryname) == 0) {
|
2007-07-15 21:36:46 -04:00
|
|
|
notouch = 1;
|
|
|
|
} else {
|
2011-06-28 00:39:43 -04:00
|
|
|
alpm_backup_t *backup;
|
2007-07-15 21:36:46 -04:00
|
|
|
/* go to the backup array and see if our conflict is there */
|
|
|
|
/* check newpkg first, so that adding backup files is retroactive */
|
2011-07-14 16:32:03 -04:00
|
|
|
backup = _alpm_needbackup(entryname, newpkg);
|
2011-06-16 14:15:11 -04:00
|
|
|
if(backup) {
|
2007-12-02 17:48:12 -05:00
|
|
|
needbackup = 1;
|
|
|
|
}
|
2007-07-15 21:36:46 -04:00
|
|
|
|
|
|
|
/* check oldpkg for a backup entry, store the hash if available */
|
|
|
|
if(oldpkg) {
|
2011-07-14 16:32:03 -04:00
|
|
|
backup = _alpm_needbackup(entryname, oldpkg);
|
2011-06-16 14:15:11 -04:00
|
|
|
if(backup) {
|
|
|
|
hash_orig = backup->hash;
|
2007-07-15 21:36:46 -04:00
|
|
|
needbackup = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-07-14 19:15:07 -04:00
|
|
|
}
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
2006-07-14 19:15:07 -04:00
|
|
|
|
2008-05-04 21:51:04 -04:00
|
|
|
/* we need access to the original entryname later after calls to
|
|
|
|
* archive_entry_set_pathname(), so we need to dupe it and free() later */
|
2011-07-01 12:01:39 -04:00
|
|
|
STRDUP(entryname_orig, entryname, RET_ERR(handle, ALPM_ERR_MEMORY, -1));
|
2008-05-04 21:51:04 -04:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
if(needbackup) {
|
2011-09-30 12:43:11 -04:00
|
|
|
char *checkfile;
|
2007-07-15 21:36:46 -04:00
|
|
|
char *hash_local = NULL, *hash_pkg = NULL;
|
2011-09-30 12:43:11 -04:00
|
|
|
size_t len;
|
2007-07-15 21:36:46 -04:00
|
|
|
|
2011-09-30 12:43:11 -04:00
|
|
|
len = strlen(filename) + 10;
|
|
|
|
MALLOC(checkfile, len,
|
|
|
|
errors++; handle->pm_errno = ALPM_ERR_MEMORY; goto needbackup_cleanup);
|
|
|
|
snprintf(checkfile, len, "%s.paccheck", filename);
|
2008-10-31 23:43:55 -04:00
|
|
|
|
2011-09-30 12:43:11 -04:00
|
|
|
if(perform_extraction(handle, archive, entry, checkfile, entryname_orig)) {
|
|
|
|
errors++;
|
|
|
|
goto needbackup_cleanup;
|
2007-02-17 03:55:05 -05:00
|
|
|
}
|
2005-03-26 15:24:57 -05:00
|
|
|
|
2008-08-26 06:57:08 -04:00
|
|
|
hash_local = alpm_compute_md5sum(filename);
|
|
|
|
hash_pkg = alpm_compute_md5sum(checkfile);
|
2007-07-15 21:36:46 -04:00
|
|
|
|
2013-04-14 22:33:46 -04:00
|
|
|
/* update the md5 hash in newpkg's backup (it will be the new original) */
|
2011-06-16 14:15:11 -04:00
|
|
|
alpm_list_t *i;
|
|
|
|
for(i = alpm_pkg_get_backup(newpkg); i; i = i->next) {
|
2011-06-28 00:39:43 -04:00
|
|
|
alpm_backup_t *backup = i->data;
|
2011-06-16 14:15:11 -04:00
|
|
|
char *newhash;
|
|
|
|
if(!backup->name || strcmp(backup->name, entryname_orig) != 0) {
|
2007-08-25 10:26:41 -04:00
|
|
|
continue;
|
2007-02-17 03:55:05 -05:00
|
|
|
}
|
2011-07-01 12:01:39 -04:00
|
|
|
STRDUP(newhash, hash_pkg, RET_ERR(handle, ALPM_ERR_MEMORY, -1));
|
2011-06-16 14:15:11 -04:00
|
|
|
FREE(backup->hash);
|
|
|
|
backup->hash = newhash;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "checking hashes for %s\n", entryname_orig);
|
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "current: %s\n", hash_local);
|
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "new: %s\n", hash_pkg);
|
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "original: %s\n", hash_orig);
|
2005-03-26 03:50:27 -05:00
|
|
|
|
2013-05-18 19:37:59 -04:00
|
|
|
if(hash_local && hash_pkg && strcmp(hash_local, hash_pkg) == 0) {
|
2013-06-04 05:20:14 -04:00
|
|
|
/* local and new files are the same, updating anyway to get
|
|
|
|
* correct timestamps */
|
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "action: installing new file: %s\n",
|
|
|
|
entryname_orig);
|
|
|
|
if(try_rename(handle, checkfile, filename)) {
|
|
|
|
errors++;
|
|
|
|
}
|
2013-05-18 19:37:59 -04:00
|
|
|
} else if(hash_orig && hash_pkg && strcmp(hash_orig, hash_pkg) == 0) {
|
|
|
|
/* original and new files are the same, leave the local version alone,
|
|
|
|
* including any user changes */
|
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG,
|
|
|
|
"action: leaving existing file in place\n");
|
|
|
|
unlink(checkfile);
|
|
|
|
} else if(hash_orig && hash_local && strcmp(hash_orig, hash_local) == 0) {
|
|
|
|
/* installed file has NOT been changed by user,
|
|
|
|
* update to the new version */
|
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "action: installing new file: %s\n",
|
|
|
|
entryname_orig);
|
|
|
|
if(try_rename(handle, checkfile, filename)) {
|
|
|
|
errors++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* none of the three files matched another, unpack the new file alongside
|
|
|
|
* the local file */
|
|
|
|
|
|
|
|
if(oldpkg) {
|
2011-09-30 12:43:11 -04:00
|
|
|
char *newpath;
|
2013-05-18 19:37:59 -04:00
|
|
|
size_t newlen = strlen(filename) + strlen(".pacnew") + 1;
|
|
|
|
|
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG,
|
|
|
|
"action: keeping current file and installing"
|
|
|
|
" new one with .pacnew ending\n");
|
|
|
|
|
|
|
|
MALLOC(newpath, newlen,
|
|
|
|
errors++; handle->pm_errno = ALPM_ERR_MEMORY; goto needbackup_cleanup);
|
|
|
|
snprintf(newpath, newlen, "%s.pacnew", filename);
|
|
|
|
|
|
|
|
if(try_rename(handle, checkfile, newpath)) {
|
|
|
|
errors++;
|
|
|
|
} else {
|
2014-02-12 10:32:30 -05:00
|
|
|
alpm_event_pacnew_created_t event = {
|
|
|
|
.type = ALPM_EVENT_PACNEW_CREATED,
|
|
|
|
.from_noupgrade = 0,
|
|
|
|
.oldpkg = oldpkg,
|
|
|
|
.newpkg = newpkg,
|
|
|
|
.file = filename
|
|
|
|
};
|
|
|
|
EVENT(handle, &event);
|
2013-05-18 19:37:59 -04:00
|
|
|
alpm_logaction(handle, ALPM_CALLER_PREFIX,
|
|
|
|
"warning: %s installed as %s\n", filename, newpath);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(newpath);
|
|
|
|
} else {
|
|
|
|
char *newpath;
|
|
|
|
size_t newlen = strlen(filename) + strlen(".pacorig") + 1;
|
|
|
|
|
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG,
|
|
|
|
"action: saving existing file with a .pacorig ending"
|
|
|
|
" and installing a new one\n");
|
|
|
|
|
2011-09-30 12:43:11 -04:00
|
|
|
MALLOC(newpath, newlen,
|
|
|
|
errors++; handle->pm_errno = ALPM_ERR_MEMORY; goto needbackup_cleanup);
|
|
|
|
snprintf(newpath, newlen, "%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" */
|
2011-09-30 12:38:36 -04:00
|
|
|
if(try_rename(handle, filename, newpath)) {
|
2013-05-18 19:37:59 -04:00
|
|
|
errors++; /* failed rename filename -> filename.pacorig */
|
|
|
|
errors++; /* failed rename checkfile -> filename */
|
2007-07-15 21:36:46 -04:00
|
|
|
} else {
|
2008-04-28 23:19:56 -04:00
|
|
|
/* rename the file we extracted to the real name */
|
2011-09-30 12:38:36 -04:00
|
|
|
if(try_rename(handle, checkfile, filename)) {
|
2007-07-15 21:36:46 -04:00
|
|
|
errors++;
|
|
|
|
} else {
|
2014-02-12 10:32:30 -05:00
|
|
|
alpm_event_pacorig_created_t event = {
|
|
|
|
.type = ALPM_EVENT_PACORIG_CREATED,
|
|
|
|
.newpkg = newpkg,
|
|
|
|
.file = filename
|
|
|
|
};
|
|
|
|
EVENT(handle, &event);
|
2013-01-18 20:42:21 -05:00
|
|
|
alpm_logaction(handle, ALPM_CALLER_PREFIX,
|
|
|
|
"warning: %s saved as %s\n", filename, newpath);
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
|
|
|
}
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2011-09-30 12:43:11 -04:00
|
|
|
free(newpath);
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
|
|
|
}
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2011-09-30 12:43:11 -04:00
|
|
|
needbackup_cleanup:
|
|
|
|
free(checkfile);
|
|
|
|
free(hash_local);
|
|
|
|
free(hash_pkg);
|
2007-07-15 21:36:46 -04:00
|
|
|
} else {
|
2014-02-12 10:32:30 -05:00
|
|
|
size_t len;
|
2007-07-15 21:36:46 -04:00
|
|
|
/* we didn't need a backup */
|
|
|
|
if(notouch) {
|
|
|
|
/* change the path to a .pacnew extension */
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "%s is in NoUpgrade -- skipping\n", filename);
|
2014-02-12 10:32:30 -05:00
|
|
|
/* remember len so we can get the old filename back for the event */
|
|
|
|
len = strlen(filename);
|
|
|
|
strncat(filename, ".pacnew", PATH_MAX - len);
|
2007-07-15 21:36:46 -04:00
|
|
|
} else {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "extracting %s\n", filename);
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
2007-04-26 19:57:09 -04:00
|
|
|
|
2011-07-01 12:01:39 -04:00
|
|
|
if(handle->trans->flags & ALPM_TRANS_FLAG_FORCE) {
|
2007-07-15 21:36:46 -04:00
|
|
|
/* 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
|
|
|
|
2011-09-30 12:43:11 -04:00
|
|
|
if(perform_extraction(handle, archive, entry, filename, entryname_orig)) {
|
2008-10-31 23:43:55 -04:00
|
|
|
/* error */
|
2011-09-30 12:43:11 -04:00
|
|
|
free(entryname_orig);
|
|
|
|
errors++;
|
|
|
|
return errors;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2014-02-12 10:32:30 -05:00
|
|
|
if(notouch) {
|
|
|
|
alpm_event_pacnew_created_t event = {
|
|
|
|
.type = ALPM_EVENT_PACNEW_CREATED,
|
|
|
|
.from_noupgrade = 1,
|
|
|
|
.oldpkg = oldpkg,
|
|
|
|
.newpkg = newpkg,
|
|
|
|
.file = filename
|
|
|
|
};
|
|
|
|
/* "remove" the .pacnew suffix */
|
|
|
|
filename[len] = '\0';
|
|
|
|
EVENT(handle, &event);
|
|
|
|
alpm_logaction(handle, ALPM_CALLER_PREFIX,
|
|
|
|
"warning: %s installed as %s.pacnew\n", filename, filename);
|
|
|
|
/* restore */
|
|
|
|
filename[len] = '.';
|
|
|
|
}
|
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
/* calculate an hash if this is in newpkg's backup */
|
2011-06-16 14:15:11 -04:00
|
|
|
alpm_list_t *i;
|
|
|
|
for(i = alpm_pkg_get_backup(newpkg); i; i = i->next) {
|
2011-06-28 00:39:43 -04:00
|
|
|
alpm_backup_t *backup = i->data;
|
2011-06-16 14:15:11 -04:00
|
|
|
char *newhash;
|
|
|
|
if(!backup->name || strcmp(backup->name, entryname_orig) != 0) {
|
2007-09-18 14:46:41 -04:00
|
|
|
continue;
|
2007-02-10 18:44:39 -05:00
|
|
|
}
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "appending backup entry for %s\n", entryname_orig);
|
2011-06-16 14:15:11 -04:00
|
|
|
newhash = alpm_compute_md5sum(filename);
|
|
|
|
FREE(backup->hash);
|
|
|
|
backup->hash = newhash;
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
|
|
|
}
|
2011-09-30 12:43:11 -04:00
|
|
|
free(entryname_orig);
|
2011-03-20 20:45:57 -04:00
|
|
|
return errors;
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
2005-05-04 17:06:03 -04:00
|
|
|
|
2011-06-28 09:26:39 -04:00
|
|
|
static int commit_single_pkg(alpm_handle_t *handle, alpm_pkg_t *newpkg,
|
2011-06-03 14:18:36 -04:00
|
|
|
size_t pkg_current, size_t pkg_count)
|
2007-07-15 21:36:46 -04:00
|
|
|
{
|
|
|
|
int i, ret = 0, errors = 0;
|
2013-03-07 01:32:41 -05:00
|
|
|
int is_upgrade = 0;
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *oldpkg = NULL;
|
2011-06-28 00:11:43 -04:00
|
|
|
alpm_db_t *db = handle->db_local;
|
2011-06-28 09:27:16 -04:00
|
|
|
alpm_trans_t *trans = handle->trans;
|
2013-12-02 15:45:15 -05:00
|
|
|
alpm_progress_t progress = ALPM_PROGRESS_ADD_START;
|
2014-01-10 10:25:14 -05:00
|
|
|
alpm_event_package_operation_t event;
|
2013-03-07 01:32:41 -05:00
|
|
|
const char *log_msg = "adding";
|
2011-10-27 15:59:24 -04:00
|
|
|
const char *pkgfile;
|
2009-12-04 19:50:09 -05:00
|
|
|
|
2011-06-28 18:46:04 -04:00
|
|
|
ASSERT(trans != NULL, return -1);
|
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
/* see if this is an upgrade. if so, remove the old package first */
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *local = _alpm_db_get_pkgfromcache(db, newpkg->name);
|
2007-07-15 21:36:46 -04:00
|
|
|
if(local) {
|
2013-03-07 01:32:41 -05:00
|
|
|
int cmp = _alpm_pkg_compare_versions(newpkg, local);
|
|
|
|
if(cmp < 0) {
|
|
|
|
log_msg = "downgrading";
|
2013-12-02 15:45:15 -05:00
|
|
|
progress = ALPM_PROGRESS_DOWNGRADE_START;
|
2014-01-10 10:25:14 -05:00
|
|
|
event.operation = ALPM_PACKAGE_DOWNGRADE;
|
2013-03-07 01:32:41 -05:00
|
|
|
} else if(cmp == 0) {
|
|
|
|
log_msg = "reinstalling";
|
2013-12-02 15:45:15 -05:00
|
|
|
progress = ALPM_PROGRESS_REINSTALL_START;
|
2014-01-10 10:25:14 -05:00
|
|
|
event.operation = ALPM_PACKAGE_REINSTALL;
|
2013-03-07 01:32:41 -05:00
|
|
|
} else {
|
|
|
|
log_msg = "upgrading";
|
2013-12-02 15:45:15 -05:00
|
|
|
progress = ALPM_PROGRESS_UPGRADE_START;
|
2014-01-10 10:25:14 -05:00
|
|
|
event.operation = ALPM_PACKAGE_UPGRADE;
|
2013-03-07 01:32:41 -05:00
|
|
|
}
|
2007-07-15 21:36:46 -04:00
|
|
|
is_upgrade = 1;
|
|
|
|
|
|
|
|
/* we'll need to save some record for backup checks later */
|
2011-08-19 12:06:55 -04:00
|
|
|
if(_alpm_pkg_dup(local, &oldpkg) == -1) {
|
|
|
|
ret = -1;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2008-07-30 17:36:46 -04:00
|
|
|
|
2008-01-13 16:15:10 -05:00
|
|
|
/* copy over the install reason */
|
2011-08-19 12:06:55 -04:00
|
|
|
newpkg->reason = alpm_pkg_get_reason(local);
|
2014-01-10 10:25:14 -05:00
|
|
|
} else {
|
|
|
|
event.operation = ALPM_PACKAGE_INSTALL;
|
2011-09-28 04:45:46 -04:00
|
|
|
}
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2014-01-10 10:25:14 -05:00
|
|
|
event.type = ALPM_EVENT_PACKAGE_OPERATION_START;
|
|
|
|
event.oldpkg = oldpkg;
|
|
|
|
event.newpkg = newpkg;
|
|
|
|
EVENT(handle, &event);
|
2013-03-07 01:32:41 -05:00
|
|
|
|
2011-10-27 15:59:24 -04:00
|
|
|
pkgfile = newpkg->origin_data.file;
|
|
|
|
|
2011-09-28 04:45:46 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "%s package %s-%s\n",
|
2013-03-07 01:32:41 -05:00
|
|
|
log_msg, newpkg->name, newpkg->version);
|
2011-09-28 04:45:46 -04:00
|
|
|
/* pre_install/pre_upgrade scriptlet */
|
|
|
|
if(alpm_pkg_has_scriptlet(newpkg) &&
|
|
|
|
!(trans->flags & ALPM_TRANS_FLAG_NOSCRIPTLET)) {
|
|
|
|
const char *scriptlet_name = is_upgrade ? "pre_upgrade" : "pre_install";
|
2012-05-04 12:41:40 -04:00
|
|
|
|
|
|
|
_alpm_runscriptlet(handle, pkgfile, scriptlet_name,
|
|
|
|
newpkg->version, oldpkg ? oldpkg->version : NULL, 1);
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
2005-05-04 17:06:03 -04:00
|
|
|
|
2008-01-13 16:15:10 -05:00
|
|
|
/* we override any pre-set reason if we have alldeps or allexplicit set */
|
2011-07-01 12:01:39 -04:00
|
|
|
if(trans->flags & ALPM_TRANS_FLAG_ALLDEPS) {
|
2011-07-01 12:01:38 -04:00
|
|
|
newpkg->reason = ALPM_PKG_REASON_DEPEND;
|
2011-07-01 12:01:39 -04:00
|
|
|
} else if(trans->flags & ALPM_TRANS_FLAG_ALLEXPLICIT) {
|
2011-07-01 12:01:38 -04:00
|
|
|
newpkg->reason = ALPM_PKG_REASON_EXPLICIT;
|
2008-01-13 16:15:10 -05:00
|
|
|
}
|
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
if(oldpkg) {
|
|
|
|
/* set up fake remove transaction */
|
2011-07-06 10:18:59 -04:00
|
|
|
if(_alpm_remove_single_package(handle, oldpkg, newpkg, 0, 0) == -1) {
|
2011-07-01 12:01:39 -04:00
|
|
|
handle->pm_errno = ALPM_ERR_TRANS_ABORT;
|
2009-07-15 13:14:01 -04:00
|
|
|
ret = -1;
|
2008-07-15 07:30:34 -04:00
|
|
|
goto cleanup;
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
|
|
|
}
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2009-01-02 04:12:22 -05:00
|
|
|
/* prepare directory for database entries so permission are correct after
|
2013-07-15 00:14:46 -04:00
|
|
|
changelog/install script installation */
|
2010-10-13 04:04:07 -04:00
|
|
|
if(_alpm_local_db_prepare(db, newpkg)) {
|
2013-01-18 20:42:21 -05:00
|
|
|
alpm_logaction(handle, ALPM_CALLER_PREFIX,
|
|
|
|
"error: could not create database entry %s-%s\n",
|
2011-08-18 00:25:19 -04:00
|
|
|
newpkg->name, newpkg->version);
|
2011-07-01 12:01:39 -04:00
|
|
|
handle->pm_errno = ALPM_ERR_DB_WRITE;
|
2009-01-02 04:12:22 -05:00
|
|
|
ret = -1;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2011-07-01 12:01:39 -04:00
|
|
|
if(!(trans->flags & ALPM_TRANS_FLAG_DBONLY)) {
|
2008-04-08 23:14:21 -04:00
|
|
|
struct archive *archive;
|
|
|
|
struct archive_entry *entry;
|
2011-11-14 00:45:55 -05:00
|
|
|
struct stat buf;
|
|
|
|
int fd, cwdfd;
|
2008-04-08 23:14:21 -04:00
|
|
|
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "extracting files\n");
|
2005-05-04 17:06:03 -04:00
|
|
|
|
2011-11-14 00:45:55 -05:00
|
|
|
fd = _alpm_open_archive(db->handle, pkgfile, &buf,
|
|
|
|
&archive, ALPM_ERR_PKG_OPEN);
|
|
|
|
if(fd < 0) {
|
2008-07-15 07:30:34 -04:00
|
|
|
ret = -1;
|
|
|
|
goto cleanup;
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
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 */
|
2014-01-02 13:37:12 -05:00
|
|
|
OPEN(cwdfd, ".", O_RDONLY | O_CLOEXEC);
|
2011-09-19 15:08:14 -04:00
|
|
|
if(cwdfd < 0) {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_ERROR, _("could not get current working directory\n"));
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
/* libarchive requires this for extracting hard links */
|
2011-06-07 17:13:58 -04:00
|
|
|
if(chdir(handle->root) != 0) {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_ERROR, _("could not change directory to %s (%s)\n"),
|
2011-06-07 17:13:58 -04:00
|
|
|
handle->root, strerror(errno));
|
2013-01-28 20:23:25 -05:00
|
|
|
_alpm_archive_read_free(archive);
|
2013-07-03 20:33:19 -04:00
|
|
|
close(fd);
|
2010-06-27 06:32:11 -04:00
|
|
|
ret = -1;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
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 */
|
2013-12-02 15:45:15 -05:00
|
|
|
PROGRESS(handle, progress, newpkg->name, 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++) {
|
2011-01-09 21:36:42 -05:00
|
|
|
int percent;
|
2008-06-01 22:47:31 -04:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
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) */
|
2013-01-28 20:23:25 -05:00
|
|
|
int64_t pos = _alpm_archive_compressed_ftell(archive);
|
2011-01-09 21:36:42 -05:00
|
|
|
percent = (pos * 100) / newpkg->size;
|
|
|
|
if(percent >= 100) {
|
|
|
|
percent = 100;
|
2005-05-04 17:06:03 -04:00
|
|
|
}
|
2008-06-01 22:47:31 -04:00
|
|
|
} else {
|
2011-01-09 21:36:42 -05:00
|
|
|
percent = 0;
|
2005-05-04 17:06:03 -04:00
|
|
|
}
|
2007-02-17 03:55:05 -05:00
|
|
|
|
2013-12-02 15:45:15 -05:00
|
|
|
PROGRESS(handle, progress, newpkg->name, percent, pkg_count, pkg_current);
|
2005-05-04 17:06:03 -04:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
/* extract the next file from the archive */
|
2011-06-09 16:15:15 -04:00
|
|
|
errors += extract_single_file(handle, archive, entry, newpkg, oldpkg);
|
2005-05-04 17:06:03 -04:00
|
|
|
}
|
2013-01-28 20:23:25 -05:00
|
|
|
_alpm_archive_read_free(archive);
|
2013-07-03 20:33:19 -04:00
|
|
|
close(fd);
|
2005-05-04 17:06:03 -04:00
|
|
|
|
2010-06-27 06:32:11 -04:00
|
|
|
/* restore the old cwd if we have it */
|
2011-09-19 15:08:14 -04:00
|
|
|
if(cwdfd >= 0) {
|
|
|
|
if(fchdir(cwdfd) != 0) {
|
|
|
|
_alpm_log(handle, ALPM_LOG_ERROR,
|
|
|
|
_("could not restore working directory (%s)\n"), strerror(errno));
|
|
|
|
}
|
2013-07-03 20:33:19 -04:00
|
|
|
close(cwdfd);
|
2007-03-01 02:03:05 -05:00
|
|
|
}
|
2007-07-15 21:36:46 -04:00
|
|
|
|
|
|
|
if(errors) {
|
2008-07-15 07:30:34 -04:00
|
|
|
ret = -1;
|
2007-07-15 21:36:46 -04:00
|
|
|
if(is_upgrade) {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_ERROR, _("problem occurred while upgrading %s\n"),
|
2007-07-15 21:36:46 -04:00
|
|
|
newpkg->name);
|
2013-01-18 20:42:21 -05:00
|
|
|
alpm_logaction(handle, ALPM_CALLER_PREFIX,
|
|
|
|
"error: problem occurred while upgrading %s\n",
|
2007-07-15 21:36:46 -04:00
|
|
|
newpkg->name);
|
|
|
|
} else {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_ERROR, _("problem occurred while installing %s\n"),
|
2007-07-15 21:36:46 -04:00
|
|
|
newpkg->name);
|
2013-01-18 20:42:21 -05:00
|
|
|
alpm_logaction(handle, ALPM_CALLER_PREFIX,
|
|
|
|
"error: problem occurred while installing %s\n",
|
2007-07-15 21:36:46 -04:00
|
|
|
newpkg->name);
|
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "updating database\n");
|
|
|
|
_alpm_log(handle, ALPM_LOG_DEBUG, "adding database entry '%s'\n", newpkg->name);
|
2007-07-15 21:36:46 -04:00
|
|
|
|
2010-10-13 04:04:07 -04:00
|
|
|
if(_alpm_local_db_write(db, newpkg, INFRQ_ALL)) {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_ERROR, _("could not update database entry %s-%s\n"),
|
2011-08-18 00:25:19 -04:00
|
|
|
newpkg->name, newpkg->version);
|
2013-01-18 20:42:21 -05:00
|
|
|
alpm_logaction(handle, ALPM_CALLER_PREFIX,
|
|
|
|
"error: could not update database entry %s-%s\n",
|
2011-08-18 00:25:19 -04:00
|
|
|
newpkg->name, newpkg->version);
|
2011-07-01 12:01:39 -04:00
|
|
|
handle->pm_errno = ALPM_ERR_DB_WRITE;
|
2008-07-15 07:30:34 -04:00
|
|
|
ret = -1;
|
|
|
|
goto cleanup;
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if(_alpm_db_add_pkgincache(db, newpkg) == -1) {
|
2011-07-01 12:01:38 -04:00
|
|
|
_alpm_log(handle, ALPM_LOG_ERROR, _("could not add entry '%s' in cache\n"),
|
2011-08-18 00:25:19 -04:00
|
|
|
newpkg->name);
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
|
|
|
|
2013-12-02 15:45:15 -05:00
|
|
|
PROGRESS(handle, progress, newpkg->name, 100, pkg_count, pkg_current);
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2014-01-10 10:25:14 -05:00
|
|
|
switch(event.operation) {
|
|
|
|
case ALPM_PACKAGE_INSTALL:
|
2013-11-05 11:29:55 -05:00
|
|
|
alpm_logaction(handle, ALPM_CALLER_PREFIX, "installed %s (%s)\n",
|
|
|
|
newpkg->name, newpkg->version);
|
|
|
|
break;
|
2014-01-10 10:25:14 -05:00
|
|
|
case ALPM_PACKAGE_DOWNGRADE:
|
2013-11-05 11:29:55 -05:00
|
|
|
alpm_logaction(handle, ALPM_CALLER_PREFIX, "downgraded %s (%s -> %s)\n",
|
|
|
|
newpkg->name, oldpkg->version, newpkg->version);
|
|
|
|
break;
|
2014-01-10 10:25:14 -05:00
|
|
|
case ALPM_PACKAGE_REINSTALL:
|
2013-11-05 11:29:55 -05:00
|
|
|
alpm_logaction(handle, ALPM_CALLER_PREFIX, "reinstalled %s (%s)\n",
|
|
|
|
newpkg->name, newpkg->version);
|
|
|
|
break;
|
2014-01-10 10:25:14 -05:00
|
|
|
case ALPM_PACKAGE_UPGRADE:
|
2013-11-05 11:29:55 -05:00
|
|
|
alpm_logaction(handle, ALPM_CALLER_PREFIX, "upgraded %s (%s -> %s)\n",
|
|
|
|
newpkg->name, oldpkg->version, newpkg->version);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* we should never reach here */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-11-08 00:44:40 -05:00
|
|
|
/* run the post-install script if it exists */
|
2007-07-15 21:36:46 -04:00
|
|
|
if(alpm_pkg_has_scriptlet(newpkg)
|
2011-07-01 12:01:39 -04:00
|
|
|
&& !(trans->flags & ALPM_TRANS_FLAG_NOSCRIPTLET)) {
|
2011-09-28 05:43:23 -04:00
|
|
|
char *scriptlet = _alpm_local_db_pkgpath(db, newpkg, "install");
|
|
|
|
const char *scriptlet_name = is_upgrade ? "post_upgrade" : "post_install";
|
2011-09-28 04:45:46 -04:00
|
|
|
|
|
|
|
_alpm_runscriptlet(handle, scriptlet, scriptlet_name,
|
|
|
|
newpkg->version, oldpkg ? oldpkg->version : NULL, 0);
|
2011-09-28 05:43:23 -04:00
|
|
|
free(scriptlet);
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
2006-10-15 15:31:03 -04:00
|
|
|
|
2014-01-10 10:25:14 -05:00
|
|
|
event.type = ALPM_EVENT_PACKAGE_OPERATION_DONE;
|
|
|
|
EVENT(handle, &event);
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2008-07-15 07:30:34 -04:00
|
|
|
cleanup:
|
2007-07-15 21:36:46 -04:00
|
|
|
_alpm_pkg_free(oldpkg);
|
2011-03-20 20:45:57 -04:00
|
|
|
return ret;
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
|
|
|
|
2011-06-28 00:04:00 -04:00
|
|
|
int _alpm_upgrade_packages(alpm_handle_t *handle)
|
2007-07-15 21:36:46 -04:00
|
|
|
{
|
2010-12-08 00:13:36 -05:00
|
|
|
size_t pkg_count, pkg_current;
|
2008-10-31 23:43:55 -04:00
|
|
|
int skip_ldconfig = 0, ret = 0;
|
2007-07-15 21:36:46 -04:00
|
|
|
alpm_list_t *targ;
|
2011-06-28 09:27:16 -04:00
|
|
|
alpm_trans_t *trans = handle->trans;
|
2007-07-15 21:36:46 -04:00
|
|
|
|
2009-07-15 13:14:01 -04:00
|
|
|
if(trans->add == NULL) {
|
2011-03-20 20:45:57 -04:00
|
|
|
return 0;
|
2007-07-15 21:36:46 -04:00
|
|
|
}
|
|
|
|
|
2009-07-15 13:14:01 -04:00
|
|
|
pkg_count = alpm_list_count(trans->add);
|
2007-07-15 21:36:46 -04:00
|
|
|
pkg_current = 1;
|
|
|
|
|
|
|
|
/* loop through our package list adding/upgrading one at a time */
|
2009-07-15 13:14:01 -04:00
|
|
|
for(targ = trans->add; targ; targ = targ->next) {
|
2011-06-28 09:26:39 -04:00
|
|
|
alpm_pkg_t *newpkg = targ->data;
|
2011-06-14 11:01:08 -04:00
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
if(handle->trans->state == STATE_INTERRUPTED) {
|
2011-03-20 20:45:57 -04:00
|
|
|
return ret;
|
2007-07-14 09:34:39 -04:00
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2011-06-03 14:18:36 -04:00
|
|
|
if(commit_single_pkg(handle, newpkg, pkg_current, pkg_count)) {
|
2008-10-31 23:43:55 -04:00
|
|
|
/* something screwed up on the commit, abort the trans */
|
|
|
|
trans->state = STATE_INTERRUPTED;
|
2011-07-01 12:01:39 -04:00
|
|
|
handle->pm_errno = ALPM_ERR_TRANS_ABORT;
|
2008-10-31 23:43:55 -04:00
|
|
|
/* running ldconfig at this point could possibly screw system */
|
|
|
|
skip_ldconfig = 1;
|
|
|
|
ret = -1;
|
|
|
|
}
|
|
|
|
|
2007-07-15 21:36:46 -04:00
|
|
|
pkg_current++;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2008-10-31 23:43:55 -04:00
|
|
|
if(!skip_ldconfig) {
|
|
|
|
/* run ldconfig if it exists */
|
2011-06-03 13:33:18 -04:00
|
|
|
_alpm_ldconfig(handle);
|
2008-10-31 23:43:55 -04:00
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2011-03-20 20:45:57 -04:00
|
|
|
return ret;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2014-01-22 18:06:11 -05:00
|
|
|
/* vim: set noet: */
|