2009-08-17 22:37:20 +05:30
|
|
|
/*-
|
2010-01-14 06:44:31 +05:30
|
|
|
* Copyright (c) 2009-2010 Juan Romero Pardines.
|
2009-08-17 22:37:20 +05:30
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <xbps_api.h>
|
|
|
|
#include "defs.h"
|
|
|
|
|
|
|
|
struct transaction {
|
|
|
|
prop_dictionary_t dict;
|
|
|
|
prop_object_iterator_t iter;
|
2009-12-22 19:13:38 +05:30
|
|
|
bool yes;
|
2009-08-17 22:37:20 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
static int exec_transaction(struct transaction *);
|
2009-12-22 17:07:36 +05:30
|
|
|
static void show_missing_deps(prop_dictionary_t);
|
2009-08-17 22:37:20 +05:30
|
|
|
static int show_missing_dep_cb(prop_object_t, void *, bool *);
|
|
|
|
static void show_package_list(prop_object_iterator_t, const char *);
|
|
|
|
|
|
|
|
static void
|
2009-12-22 17:07:36 +05:30
|
|
|
show_missing_deps(prop_dictionary_t d)
|
2009-08-17 22:37:20 +05:30
|
|
|
{
|
2009-12-22 17:07:36 +05:30
|
|
|
printf("Unable to locate some required packages:\n");
|
2009-08-17 22:37:20 +05:30
|
|
|
(void)xbps_callback_array_iter_in_dict(d, "missing_deps",
|
|
|
|
show_missing_dep_cb, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
show_missing_dep_cb(prop_object_t obj, void *arg, bool *loop_done)
|
|
|
|
{
|
2009-11-29 07:47:35 +05:30
|
|
|
const char *reqpkg;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
(void)arg;
|
|
|
|
(void)loop_done;
|
|
|
|
|
2009-11-29 07:47:35 +05:30
|
|
|
reqpkg = prop_string_cstring_nocopy(obj);
|
|
|
|
if (reqpkg == NULL)
|
|
|
|
return EINVAL;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2009-11-29 07:47:35 +05:30
|
|
|
printf(" * Missing binary package for: %s\n", reqpkg);
|
|
|
|
return 0;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
|
2009-11-28 07:08:41 +05:30
|
|
|
static bool
|
|
|
|
check_binpkg_hash(const char *path, const char *filename,
|
|
|
|
const char *sha256)
|
2009-08-17 22:37:20 +05:30
|
|
|
{
|
|
|
|
int rv = 0;
|
|
|
|
|
2009-11-28 07:08:41 +05:30
|
|
|
printf("Checking %s integrity... ", filename);
|
|
|
|
rv = xbps_check_file_hash(path, sha256);
|
|
|
|
errno = rv;
|
|
|
|
if (rv != 0 && rv != ERANGE) {
|
|
|
|
printf("unexpected error: %s\n", strerror(rv));
|
|
|
|
return false;
|
|
|
|
} else if (rv == ERANGE) {
|
|
|
|
printf("hash mismatch!.\n");
|
|
|
|
return false;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
2009-11-28 07:08:41 +05:30
|
|
|
printf("OK.\n");
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2009-11-28 07:08:41 +05:30
|
|
|
return true;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
static int
|
|
|
|
download_package_list(prop_object_iterator_t iter)
|
|
|
|
{
|
|
|
|
prop_object_t obj;
|
2009-11-28 07:08:41 +05:30
|
|
|
const char *pkgver, *repoloc, *filename, *cachedir, *sha256;
|
|
|
|
char *binfile, *lbinfile;
|
2009-10-27 06:16:00 +05:30
|
|
|
int rv = 0;
|
2009-11-28 07:08:41 +05:30
|
|
|
bool found_binpkg;
|
|
|
|
|
|
|
|
cachedir = xbps_get_cachedir();
|
|
|
|
if (cachedir == NULL)
|
|
|
|
return EINVAL;
|
2009-10-27 06:16:00 +05:30
|
|
|
|
|
|
|
while ((obj = prop_object_iterator_next(iter)) != NULL) {
|
2009-11-28 07:08:41 +05:30
|
|
|
found_binpkg = false;
|
2009-11-23 15:16:51 +05:30
|
|
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
|
|
|
"repository", &repoloc))
|
|
|
|
return errno;
|
|
|
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
|
|
|
"pkgver", &pkgver))
|
|
|
|
return errno;
|
|
|
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
|
|
|
"filename", &filename))
|
|
|
|
return errno;
|
|
|
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
2009-11-28 07:08:41 +05:30
|
|
|
"filename-sha256", &sha256))
|
2009-11-23 15:16:51 +05:30
|
|
|
return errno;
|
2009-10-27 06:16:00 +05:30
|
|
|
|
2009-11-28 07:51:29 +05:30
|
|
|
lbinfile = xbps_get_binpkg_local_path(obj, repoloc);
|
2009-11-28 07:08:41 +05:30
|
|
|
if (lbinfile == NULL)
|
2009-10-27 06:16:00 +05:30
|
|
|
return errno;
|
|
|
|
|
2009-11-28 07:08:41 +05:30
|
|
|
/*
|
|
|
|
* If package is in a local repository, check its hash
|
|
|
|
* and pass no next one.
|
|
|
|
*/
|
|
|
|
if (!xbps_check_is_repo_string_remote(repoloc)) {
|
|
|
|
if (!check_binpkg_hash(lbinfile, filename, sha256)) {
|
|
|
|
free(lbinfile);
|
|
|
|
return errno;
|
|
|
|
}
|
|
|
|
free(lbinfile);
|
|
|
|
continue;
|
2009-10-27 06:16:00 +05:30
|
|
|
}
|
2009-11-28 07:08:41 +05:30
|
|
|
/*
|
|
|
|
* If downloaded package is in cachedir, check its hash
|
|
|
|
* and restart it again if doesn't match.
|
|
|
|
*/
|
2009-10-27 06:16:00 +05:30
|
|
|
if (access(lbinfile, R_OK) == 0) {
|
2009-11-28 07:08:41 +05:30
|
|
|
if (check_binpkg_hash(lbinfile, filename, sha256)) {
|
|
|
|
free(lbinfile);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (errno && errno != ERANGE) {
|
|
|
|
free(lbinfile);
|
|
|
|
return errno;
|
|
|
|
} else if (errno == ERANGE) {
|
|
|
|
(void)remove(lbinfile);
|
|
|
|
printf("Refetching %s again...\n",
|
|
|
|
filename);
|
|
|
|
errno = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (xbps_mkpath(__UNCONST(cachedir), 0755) == -1) {
|
2009-10-27 06:16:00 +05:30
|
|
|
free(lbinfile);
|
2009-11-28 07:08:41 +05:30
|
|
|
return errno;
|
2009-10-27 06:16:00 +05:30
|
|
|
}
|
2009-11-30 17:05:38 +05:30
|
|
|
binfile = xbps_repository_get_path_from_pkg_dict(obj, repoloc);
|
2009-10-27 06:16:00 +05:30
|
|
|
if (binfile == NULL) {
|
2009-11-28 07:08:41 +05:30
|
|
|
free(lbinfile);
|
2009-10-27 06:16:00 +05:30
|
|
|
return errno;
|
|
|
|
}
|
2009-11-22 09:45:47 +05:30
|
|
|
printf("Downloading %s binary package ...\n", pkgver);
|
2009-11-28 07:08:41 +05:30
|
|
|
rv = xbps_fetch_file(binfile, cachedir, false, NULL);
|
2009-10-27 06:16:00 +05:30
|
|
|
free(binfile);
|
2009-11-24 10:33:26 +05:30
|
|
|
if (rv == -1) {
|
2009-10-27 06:16:00 +05:30
|
|
|
printf("Couldn't download %s from %s (%s)\n",
|
2009-11-24 10:33:26 +05:30
|
|
|
filename, repoloc, xbps_fetch_error_string());
|
2009-11-28 07:08:41 +05:30
|
|
|
free(lbinfile);
|
2009-10-27 06:16:00 +05:30
|
|
|
return errno;
|
|
|
|
}
|
2009-11-28 07:08:41 +05:30
|
|
|
if (!check_binpkg_hash(lbinfile, filename, sha256)) {
|
|
|
|
printf("W: removing wrong %s file ...\n", filename);
|
|
|
|
(void)remove(lbinfile);
|
|
|
|
free(lbinfile);
|
2009-11-23 15:16:51 +05:30
|
|
|
return errno;
|
|
|
|
}
|
2009-11-28 07:08:41 +05:30
|
|
|
free(lbinfile);
|
2009-10-27 06:16:00 +05:30
|
|
|
}
|
|
|
|
prop_object_iterator_reset(iter);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-08-17 22:37:20 +05:30
|
|
|
static void
|
|
|
|
show_package_list(prop_object_iterator_t iter, const char *match)
|
|
|
|
{
|
|
|
|
prop_object_t obj;
|
|
|
|
size_t cols = 0;
|
2009-11-22 09:45:47 +05:30
|
|
|
const char *pkgver, *tract;
|
2009-08-17 22:37:20 +05:30
|
|
|
bool first = false;
|
|
|
|
|
|
|
|
while ((obj = prop_object_iterator_next(iter)) != NULL) {
|
2009-11-23 15:16:51 +05:30
|
|
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
|
|
|
"pkgver", &pkgver))
|
|
|
|
return;
|
|
|
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
|
|
|
"trans-action", &tract))
|
|
|
|
return;
|
2009-08-17 22:37:20 +05:30
|
|
|
if (strcmp(match, tract))
|
|
|
|
continue;
|
|
|
|
|
2009-11-22 09:45:47 +05:30
|
|
|
cols += strlen(pkgver) + 4;
|
2009-08-17 22:37:20 +05:30
|
|
|
if (cols <= 80) {
|
|
|
|
if (first == false) {
|
|
|
|
printf(" ");
|
|
|
|
first = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
printf("\n ");
|
2009-11-22 09:45:47 +05:30
|
|
|
cols = strlen(pkgver) + 4;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
2009-11-22 09:45:47 +05:30
|
|
|
printf("%s ", pkgver);
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
prop_object_iterator_reset(iter);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
show_transaction_sizes(prop_object_iterator_t iter)
|
|
|
|
{
|
|
|
|
prop_object_t obj;
|
|
|
|
uint64_t tsize = 0, dlsize = 0, instsize = 0;
|
|
|
|
const char *tract;
|
|
|
|
char size[64];
|
2009-11-26 07:52:50 +05:30
|
|
|
bool trans_inst, trans_up, trans_conf;
|
|
|
|
|
|
|
|
trans_inst = trans_up = trans_conf = false;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
while ((obj = prop_object_iterator_next(iter)) != NULL) {
|
2009-11-23 15:16:51 +05:30
|
|
|
if (!prop_dictionary_get_uint64(obj, "filename-size", &tsize))
|
|
|
|
return errno;
|
|
|
|
|
2009-08-17 22:37:20 +05:30
|
|
|
dlsize += tsize;
|
|
|
|
tsize = 0;
|
2009-11-23 15:16:51 +05:30
|
|
|
if (!prop_dictionary_get_uint64(obj, "installed_size", &tsize))
|
|
|
|
return errno;
|
|
|
|
|
2009-08-17 22:37:20 +05:30
|
|
|
instsize += tsize;
|
|
|
|
tsize = 0;
|
|
|
|
}
|
|
|
|
prop_object_iterator_reset(iter);
|
|
|
|
|
|
|
|
while ((obj = prop_object_iterator_next(iter))) {
|
2009-11-23 15:16:51 +05:30
|
|
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
|
|
|
"trans-action", &tract))
|
|
|
|
return errno;
|
|
|
|
|
2009-08-17 22:37:20 +05:30
|
|
|
if (strcmp(tract, "install") == 0)
|
|
|
|
trans_inst = true;
|
|
|
|
else if (strcmp(tract, "update") == 0)
|
|
|
|
trans_up = true;
|
2009-11-26 07:52:50 +05:30
|
|
|
else if (strcmp(tract, "configure") == 0)
|
|
|
|
trans_conf = true;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
prop_object_iterator_reset(iter);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Show the list of packages that will be installed.
|
|
|
|
*/
|
|
|
|
if (trans_inst) {
|
|
|
|
printf("The following packages will be installed:\n\n");
|
|
|
|
show_package_list(iter, "install");
|
|
|
|
printf("\n\n");
|
|
|
|
}
|
|
|
|
if (trans_up) {
|
|
|
|
printf("The following packages will be updated:\n\n");
|
|
|
|
show_package_list(iter, "update");
|
|
|
|
printf("\n\n");
|
|
|
|
}
|
2009-11-26 07:52:50 +05:30
|
|
|
if (trans_conf) {
|
|
|
|
printf("The following packages will be configured:\n\n");
|
|
|
|
show_package_list(iter, "configure");
|
|
|
|
printf("\n\n");
|
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Show total download/installed size for all required packages.
|
|
|
|
*/
|
|
|
|
if (xbps_humanize_number(size, 5, (int64_t)dlsize,
|
2009-10-23 12:15:59 +05:30
|
|
|
"", HN_AUTOSCALE, HN_B|HN_DECIMAL|HN_NOSPACE) == -1) {
|
2009-08-17 22:37:20 +05:30
|
|
|
printf("error: humanize_number returns %s\n",
|
|
|
|
strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
printf("Total download size: %s\n", size);
|
|
|
|
if (xbps_humanize_number(size, 5, (int64_t)instsize,
|
2009-10-23 12:15:59 +05:30
|
|
|
"", HN_AUTOSCALE, HN_B|HN_DECIMAL|HN_NOSPACE) == -1) {
|
2009-08-17 22:37:20 +05:30
|
|
|
printf("error: humanize_number2 returns %s\n",
|
|
|
|
strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
printf("Total installed size: %s\n\n", size);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-23 17:31:54 +05:30
|
|
|
int
|
2009-12-22 19:13:38 +05:30
|
|
|
xbps_autoupdate_pkgs(bool yes)
|
2009-12-22 17:07:36 +05:30
|
|
|
{
|
|
|
|
int rv = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Update all currently installed packages, aka
|
|
|
|
* "xbps-bin autoupdate".
|
|
|
|
*/
|
|
|
|
printf("Finding new packages...\n");
|
|
|
|
if ((rv = xbps_repository_update_allpkgs()) != 0) {
|
|
|
|
if (rv == ENOENT) {
|
|
|
|
printf("No packages currently registered.\n");
|
|
|
|
return 0;
|
|
|
|
} else if (rv == ENOPKG) {
|
|
|
|
printf("All packages are up-to-date.\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2009-12-22 19:13:38 +05:30
|
|
|
return xbps_exec_transaction(yes);
|
2009-12-22 17:07:36 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2010-01-14 06:44:31 +05:30
|
|
|
xbps_install_new_pkg(const char *pkg)
|
2009-08-17 22:37:20 +05:30
|
|
|
{
|
|
|
|
prop_dictionary_t pkgd;
|
2010-01-14 06:44:31 +05:30
|
|
|
char *pkgname;
|
2009-08-17 22:37:20 +05:30
|
|
|
int rv = 0;
|
2010-01-14 06:44:31 +05:30
|
|
|
bool pkgmatch = false;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if 'pkg' string is a pkgmatch valid pattern or it
|
|
|
|
* is just a pkgname.
|
|
|
|
*/
|
2010-01-14 08:30:01 +05:30
|
|
|
if ((pkgname = xbps_get_pkgdep_name(pkg))) {
|
|
|
|
if (xbps_cmpver("0.0", pkgname) <= 0)
|
|
|
|
pkgmatch = true;
|
|
|
|
else {
|
|
|
|
free(pkgname);
|
|
|
|
pkgname = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pkgname == NULL && (pkgname = xbps_get_pkg_name(pkg))) {
|
|
|
|
if (xbps_cmpver("0.0", pkgname) <= 0)
|
|
|
|
pkgmatch = true;
|
|
|
|
else {
|
|
|
|
free(pkgname);
|
|
|
|
pkgname = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pkgname == NULL)
|
2010-01-14 06:44:31 +05:30
|
|
|
pkgname = __UNCONST(pkg);
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2009-12-22 17:07:36 +05:30
|
|
|
/*
|
|
|
|
* Find a package in a repository and prepare for installation.
|
|
|
|
*/
|
|
|
|
if ((pkgd = xbps_find_pkg_installed_from_plist(pkgname))) {
|
|
|
|
printf("Package '%s' is already installed.\n", pkgname);
|
|
|
|
prop_object_release(pkgd);
|
2010-01-14 06:44:31 +05:30
|
|
|
if (pkgmatch)
|
|
|
|
free(pkgname);
|
2009-12-22 19:13:38 +05:30
|
|
|
return 0;
|
2009-12-22 17:07:36 +05:30
|
|
|
}
|
2010-01-14 06:44:31 +05:30
|
|
|
rv = xbps_repository_install_pkg(pkg, pkgmatch);
|
|
|
|
if (rv == EAGAIN) {
|
2009-12-22 17:07:36 +05:30
|
|
|
printf("Unable to locate '%s' in "
|
2010-01-14 06:44:31 +05:30
|
|
|
"repository pool.\n", pkg);
|
2009-12-22 19:13:38 +05:30
|
|
|
rv = 0;
|
2009-12-22 17:07:36 +05:30
|
|
|
} else if (rv != 0 && rv != ENOENT) {
|
|
|
|
printf("Unexpected error: %s", strerror(errno));
|
|
|
|
}
|
2010-01-14 06:44:31 +05:30
|
|
|
|
|
|
|
if (pkgmatch)
|
|
|
|
free(pkgname);
|
2009-12-22 17:07:36 +05:30
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
2009-10-16 21:07:32 +05:30
|
|
|
|
2009-12-22 17:07:36 +05:30
|
|
|
int
|
|
|
|
xbps_update_pkg(const char *pkgname)
|
|
|
|
{
|
|
|
|
prop_dictionary_t pkgd;
|
|
|
|
int rv = 0;
|
|
|
|
|
|
|
|
pkgd = xbps_find_pkg_installed_from_plist(pkgname);
|
|
|
|
printf("Finding new '%s' package...\n", pkgname);
|
|
|
|
if (pkgd) {
|
|
|
|
rv = xbps_repository_update_pkg(pkgname, pkgd);
|
|
|
|
if (rv == EEXIST) {
|
|
|
|
printf("Package '%s' is up to date.\n", pkgname);
|
2009-12-22 19:13:38 +05:30
|
|
|
rv = 0;
|
2009-12-22 17:07:36 +05:30
|
|
|
} else if (rv == ENOENT) {
|
|
|
|
printf("Package '%s' not found in "
|
|
|
|
"repository pool.\n", pkgname);
|
2009-12-22 19:13:38 +05:30
|
|
|
rv = 0;
|
2009-10-16 21:07:32 +05:30
|
|
|
}
|
2009-12-22 17:07:36 +05:30
|
|
|
prop_object_release(pkgd);
|
2009-10-16 21:07:32 +05:30
|
|
|
} else {
|
2009-12-22 17:07:36 +05:30
|
|
|
printf("Package '%s' not installed.\n", pkgname);
|
2009-12-22 19:13:38 +05:30
|
|
|
return 0;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
|
2009-12-22 17:07:36 +05:30
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2009-12-22 19:13:38 +05:30
|
|
|
xbps_exec_transaction(bool yes)
|
2009-12-22 17:07:36 +05:30
|
|
|
{
|
|
|
|
struct transaction *trans;
|
|
|
|
prop_array_t array;
|
|
|
|
int rv = 0;
|
|
|
|
|
2009-08-17 22:37:20 +05:30
|
|
|
trans = calloc(1, sizeof(struct transaction));
|
|
|
|
if (trans == NULL)
|
|
|
|
goto out;
|
|
|
|
|
2009-11-30 16:38:46 +05:30
|
|
|
trans->dict = xbps_repository_get_transaction_dict();
|
2009-08-17 22:37:20 +05:30
|
|
|
if (trans->dict == NULL) {
|
2009-12-22 19:13:38 +05:30
|
|
|
printf("Empty transaction, exiting.\n");
|
2009-08-17 22:37:20 +05:30
|
|
|
goto out1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Bail out if there are unresolved deps.
|
|
|
|
*/
|
|
|
|
array = prop_dictionary_get(trans->dict, "missing_deps");
|
|
|
|
if (prop_array_count(array) > 0) {
|
2009-12-22 17:07:36 +05:30
|
|
|
show_missing_deps(trans->dict);
|
2009-08-17 22:37:20 +05:30
|
|
|
goto out2;
|
|
|
|
}
|
2009-11-29 10:21:49 +05:30
|
|
|
|
|
|
|
DPRINTF(("%s", prop_dictionary_externalize(trans->dict)));
|
|
|
|
|
2009-12-22 17:07:36 +05:30
|
|
|
/*
|
|
|
|
* Sort the package transaction dictionary.
|
|
|
|
*/
|
|
|
|
if ((rv = xbps_sort_pkg_deps(trans->dict)) != 0) {
|
|
|
|
printf("Error while sorting packages: %s\n", strerror(rv));
|
|
|
|
goto out2;
|
2009-10-16 19:01:57 +05:30
|
|
|
}
|
2009-12-22 17:07:36 +05:30
|
|
|
|
2009-08-17 22:37:20 +05:30
|
|
|
/*
|
|
|
|
* It's time to run the transaction!
|
|
|
|
*/
|
|
|
|
trans->iter = xbps_get_array_iter_from_dict(trans->dict, "packages");
|
|
|
|
if (trans->iter == NULL) {
|
2009-10-16 19:01:57 +05:30
|
|
|
printf("error: allocating array mem! (%s)\n",
|
2009-08-17 22:37:20 +05:30
|
|
|
strerror(errno));
|
|
|
|
goto out2;
|
|
|
|
}
|
|
|
|
|
2009-12-22 19:13:38 +05:30
|
|
|
trans->yes = yes;
|
2009-08-17 22:37:20 +05:30
|
|
|
rv = exec_transaction(trans);
|
|
|
|
|
|
|
|
prop_object_iterator_release(trans->iter);
|
|
|
|
out2:
|
|
|
|
prop_object_release(trans->dict);
|
|
|
|
out1:
|
|
|
|
free(trans);
|
|
|
|
out:
|
2009-10-23 17:31:54 +05:30
|
|
|
return rv;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
|
2009-10-17 08:29:59 +05:30
|
|
|
static int
|
2009-11-22 09:45:47 +05:30
|
|
|
replace_packages(prop_object_iterator_t iter, const char *pkgver)
|
2009-10-17 08:29:59 +05:30
|
|
|
{
|
|
|
|
prop_dictionary_t instd;
|
|
|
|
prop_object_t obj;
|
2009-11-29 10:21:49 +05:30
|
|
|
const char *reppkgn, *version;
|
2009-10-17 08:29:59 +05:30
|
|
|
int rv = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This package replaces other package(s), so we remove
|
|
|
|
* them before upgrading or installing new one.
|
|
|
|
*/
|
|
|
|
while ((obj = prop_object_iterator_next(iter))) {
|
|
|
|
reppkgn = prop_string_cstring_nocopy(obj);
|
2009-11-23 15:16:51 +05:30
|
|
|
if (reppkgn == NULL)
|
|
|
|
return errno;
|
|
|
|
|
2009-10-17 08:29:59 +05:30
|
|
|
instd = xbps_find_pkg_installed_from_plist(reppkgn);
|
|
|
|
if (instd == NULL)
|
|
|
|
continue;
|
|
|
|
|
2009-11-22 09:45:47 +05:30
|
|
|
printf("Replacing package '%s' with '%s' ...\n",
|
|
|
|
reppkgn, pkgver);
|
2009-11-29 10:21:49 +05:30
|
|
|
version = xbps_get_pkg_version(pkgver);
|
|
|
|
if ((rv = xbps_remove_pkg(reppkgn, version, false)) != 0) {
|
2009-10-17 08:29:59 +05:30
|
|
|
printf("Couldn't remove %s (%s)\n",
|
|
|
|
reppkgn, strerror(rv));
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
if ((rv = xbps_purge_pkg(reppkgn, false)) != 0) {
|
|
|
|
printf("Couldn't purge %s (%s)\n",
|
|
|
|
reppkgn, strerror(rv));
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
prop_object_iterator_release(iter);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-08-17 22:37:20 +05:30
|
|
|
static int
|
|
|
|
exec_transaction(struct transaction *trans)
|
|
|
|
{
|
|
|
|
prop_dictionary_t instpkgd;
|
2009-10-17 08:29:59 +05:30
|
|
|
prop_object_t obj;
|
2009-10-17 07:56:43 +05:30
|
|
|
prop_object_iterator_t replaces_iter;
|
2009-11-22 09:45:47 +05:30
|
|
|
const char *pkgname, *version, *pkgver, *instver, *filename, *tract;
|
2009-08-17 22:37:20 +05:30
|
|
|
int rv = 0;
|
2009-12-09 20:44:35 +05:30
|
|
|
bool update, essential, autoinst;
|
2009-08-17 22:37:20 +05:30
|
|
|
pkg_state_t state = 0;
|
|
|
|
|
|
|
|
assert(trans != NULL);
|
|
|
|
assert(trans->dict != NULL);
|
|
|
|
assert(trans->iter != NULL);
|
|
|
|
|
2009-12-09 20:44:35 +05:30
|
|
|
update = essential = autoinst = false;
|
2009-08-17 22:37:20 +05:30
|
|
|
/*
|
|
|
|
* Show download/installed size for the transaction.
|
|
|
|
*/
|
|
|
|
rv = show_transaction_sizes(trans->iter);
|
|
|
|
if (rv != 0)
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
/*
|
2009-12-22 19:13:38 +05:30
|
|
|
* Ask interactively (if -y not set).
|
2009-08-17 22:37:20 +05:30
|
|
|
*/
|
2009-12-22 19:13:38 +05:30
|
|
|
if (trans->yes == false) {
|
2009-08-17 22:37:20 +05:30
|
|
|
if (xbps_noyes("Do you want to continue?") == false) {
|
|
|
|
printf("Aborting!\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
/*
|
2009-11-28 07:08:41 +05:30
|
|
|
* Download binary packages (if they come from a remote repository)
|
|
|
|
* and check its SHA256 hash.
|
2009-10-27 06:16:00 +05:30
|
|
|
*/
|
|
|
|
if ((rv = download_package_list(trans->iter)) != 0)
|
|
|
|
return rv;
|
|
|
|
|
2009-08-17 22:37:20 +05:30
|
|
|
/*
|
|
|
|
* Iterate over the transaction dictionary.
|
|
|
|
*/
|
|
|
|
while ((obj = prop_object_iterator_next(trans->iter)) != NULL) {
|
2009-11-23 15:16:51 +05:30
|
|
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
|
|
|
"pkgname", &pkgname))
|
|
|
|
return errno;
|
|
|
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
|
|
|
"version", &version))
|
|
|
|
return errno;
|
|
|
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
|
|
|
"pkgver", &pkgver))
|
|
|
|
return errno;
|
2009-12-22 17:07:36 +05:30
|
|
|
prop_dictionary_get_bool(obj, "automatic-install", &autoinst);
|
2009-08-17 22:37:20 +05:30
|
|
|
prop_dictionary_get_bool(obj, "essential", &essential);
|
2009-11-23 15:16:51 +05:30
|
|
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
|
|
|
"filename", &filename))
|
|
|
|
return errno;
|
|
|
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
|
|
|
"trans-action", &tract))
|
|
|
|
return errno;
|
2009-10-17 07:56:43 +05:30
|
|
|
replaces_iter = xbps_get_array_iter_from_dict(obj, "replaces");
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* If dependency is already unpacked skip this phase.
|
|
|
|
*/
|
|
|
|
state = 0;
|
|
|
|
if (xbps_get_pkg_state_dictionary(obj, &state) != 0)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
if (state == XBPS_PKG_STATE_UNPACKED)
|
|
|
|
continue;
|
|
|
|
|
2009-10-17 07:56:43 +05:30
|
|
|
/*
|
2009-10-17 08:29:59 +05:30
|
|
|
* Replace package(s) if necessary.
|
2009-10-17 07:56:43 +05:30
|
|
|
*/
|
|
|
|
if (replaces_iter != NULL) {
|
2009-11-22 09:45:47 +05:30
|
|
|
rv = replace_packages(replaces_iter, pkgver);
|
2009-10-17 08:29:59 +05:30
|
|
|
if (rv != 0) {
|
|
|
|
printf("Couldn't replace some packages! "
|
|
|
|
"(%s)\n", strerror(rv));
|
|
|
|
return rv;
|
2009-10-17 07:56:43 +05:30
|
|
|
}
|
|
|
|
replaces_iter = NULL;
|
|
|
|
}
|
|
|
|
|
2009-08-17 22:37:20 +05:30
|
|
|
if (strcmp(tract, "update") == 0) {
|
|
|
|
instpkgd = xbps_find_pkg_installed_from_plist(pkgname);
|
|
|
|
if (instpkgd == NULL) {
|
|
|
|
printf("error: unable to find %s installed "
|
|
|
|
"dict!\n", pkgname);
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
2009-11-23 15:16:51 +05:30
|
|
|
if (!prop_dictionary_get_cstring_nocopy(instpkgd,
|
|
|
|
"version", &instver)) {
|
|
|
|
prop_object_release(instpkgd);
|
|
|
|
return errno;
|
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
prop_object_release(instpkgd);
|
|
|
|
|
|
|
|
/*
|
2009-10-01 11:05:42 +05:30
|
|
|
* If package is marked as 'essential' remove old
|
|
|
|
* requiredby entries and overwrite pkg files; otherwise
|
|
|
|
* remove old package and install new one.
|
2009-08-17 22:37:20 +05:30
|
|
|
*/
|
2009-10-01 11:05:42 +05:30
|
|
|
if (essential) {
|
|
|
|
rv = xbps_requiredby_pkg_remove(pkgname);
|
|
|
|
if (rv != 0) {
|
|
|
|
printf("error: couldn't remove reqby"
|
|
|
|
" entries for %s-%s (%s)\n",
|
|
|
|
pkgname, instver, strerror(rv));
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
} else {
|
2009-10-02 20:53:14 +05:30
|
|
|
printf("Removing %s-%s ...\n",
|
|
|
|
pkgname, instver);
|
2009-08-17 22:37:20 +05:30
|
|
|
rv = xbps_remove_pkg(pkgname, version, true);
|
|
|
|
if (rv != 0) {
|
|
|
|
printf("error: removing %s-%s (%s)\n",
|
|
|
|
pkgname, instver, strerror(rv));
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Unpack binary package.
|
|
|
|
*/
|
2009-11-22 09:45:47 +05:30
|
|
|
printf("Unpacking %s (from .../%s) ...\n", pkgver, filename);
|
2009-12-02 11:01:03 +05:30
|
|
|
if ((rv = xbps_unpack_binary_pkg(obj)) != 0) {
|
2009-11-22 09:45:47 +05:30
|
|
|
printf("error: unpacking %s (%s)\n", pkgver,
|
|
|
|
strerror(rv));
|
2009-08-17 22:37:20 +05:30
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Register binary package.
|
|
|
|
*/
|
2009-10-22 18:02:21 +05:30
|
|
|
if ((rv = xbps_register_pkg(obj, autoinst)) != 0) {
|
2009-11-22 09:45:47 +05:30
|
|
|
printf("error: registering %s! (%s)\n",
|
|
|
|
pkgver, strerror(rv));
|
2009-08-17 22:37:20 +05:30
|
|
|
return rv;
|
|
|
|
}
|
2009-10-22 18:02:21 +05:30
|
|
|
autoinst = false;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
prop_object_iterator_reset(trans->iter);
|
|
|
|
/*
|
|
|
|
* Configure all unpacked packages.
|
|
|
|
*/
|
|
|
|
while ((obj = prop_object_iterator_next(trans->iter)) != NULL) {
|
2009-11-23 15:16:51 +05:30
|
|
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
|
|
|
"pkgname", &pkgname))
|
|
|
|
return errno;
|
|
|
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
|
|
|
"version", &version))
|
|
|
|
return errno;
|
2009-12-09 20:44:35 +05:30
|
|
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
|
|
|
"trans-action", &tract))
|
|
|
|
return errno;
|
|
|
|
update = false;
|
|
|
|
if (strcmp(tract, "update") == 0)
|
|
|
|
update = true;
|
|
|
|
rv = xbps_configure_pkg(pkgname, version, false, update);
|
|
|
|
if (rv != 0) {
|
2009-08-17 22:37:20 +05:30
|
|
|
printf("Error configuring package %s (%s)\n",
|
|
|
|
pkgname, strerror(rv));
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|