2009-08-17 22:37:20 +05:30
|
|
|
/*-
|
2011-01-21 21:46:58 +05:30
|
|
|
* Copyright (c) 2009-2011 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>
|
2010-01-14 10:55:01 +05:30
|
|
|
#include <ctype.h>
|
2010-11-13 07:48:58 +05:30
|
|
|
#include <assert.h>
|
2010-11-19 18:10:13 +05:30
|
|
|
#include <unistd.h>
|
2011-01-21 21:46:58 +05:30
|
|
|
#include <limits.h>
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
#include <xbps_api.h>
|
2011-01-21 21:46:58 +05:30
|
|
|
#include "strlcpy.h"
|
2009-08-17 22:37:20 +05:30
|
|
|
#include "defs.h"
|
2010-12-03 22:06:07 +05:30
|
|
|
#include "../xbps-repo/defs.h"
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
struct transaction {
|
|
|
|
prop_dictionary_t dict;
|
|
|
|
prop_object_iterator_t iter;
|
2009-12-22 19:13:38 +05:30
|
|
|
bool yes;
|
2011-01-27 19:06:33 +05:30
|
|
|
bool only_show;
|
2010-01-21 07:40:19 +05:30
|
|
|
size_t inst_pkgcnt;
|
|
|
|
size_t up_pkgcnt;
|
|
|
|
size_t cf_pkgcnt;
|
2011-02-01 05:51:54 +05:30
|
|
|
size_t rm_pkgcnt;
|
2009-08-17 22:37:20 +05:30
|
|
|
};
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
static void
|
2011-01-25 07:25:34 +05:30
|
|
|
show_missing_deps(prop_array_t a)
|
2010-01-21 07:40:19 +05:30
|
|
|
{
|
2011-01-30 22:53:33 +05:30
|
|
|
prop_object_t obj;
|
|
|
|
size_t i;
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
fprintf(stderr,
|
|
|
|
"xbps-bin: unable to locate some required packages:\n");
|
2011-01-30 22:53:33 +05:30
|
|
|
|
|
|
|
for (i = 0; i < prop_array_count(a); i++) {
|
|
|
|
obj = prop_array_get(a, i);
|
|
|
|
fprintf(stderr, " * Missing binary package for: %s\n",
|
|
|
|
prop_string_cstring_nocopy(obj));
|
|
|
|
}
|
2010-01-21 07:40:19 +05:30
|
|
|
}
|
|
|
|
|
2011-01-18 22:51:55 +05:30
|
|
|
static int
|
2011-01-30 22:53:33 +05:30
|
|
|
check_binpkg_hash(const char *path,
|
|
|
|
const char *filename,
|
2009-11-28 07:08:41 +05:30
|
|
|
const char *sha256)
|
2009-08-17 22:37:20 +05:30
|
|
|
{
|
2011-01-18 22:51:55 +05:30
|
|
|
int rv;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2009-11-28 07:08:41 +05:30
|
|
|
printf("Checking %s integrity... ", filename);
|
|
|
|
rv = xbps_check_file_hash(path, sha256);
|
|
|
|
if (rv != 0 && rv != ERANGE) {
|
2011-01-30 22:53:33 +05:30
|
|
|
xbps_error_printf("\nxbps-bin: unexpected error: %s\n",
|
2010-01-15 19:49:16 +05:30
|
|
|
strerror(rv));
|
2011-01-18 22:51:55 +05:30
|
|
|
return rv;
|
2009-11-28 07:08:41 +05:30
|
|
|
} else if (rv == ERANGE) {
|
2010-01-25 07:44:54 +05:30
|
|
|
printf("hash mismatch!\n");
|
2011-01-30 22:53:33 +05:30
|
|
|
xbps_warn_printf("Package '%s' has wrong checksum, removing "
|
2011-01-18 22:51:55 +05:30
|
|
|
"and refetching it again...\n", filename);
|
|
|
|
(void)remove(path);
|
|
|
|
return rv;
|
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
|
|
|
|
2011-01-18 22:51:55 +05:30
|
|
|
return 0;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
static int
|
2011-01-27 19:06:33 +05:30
|
|
|
download_package_list(prop_object_iterator_t iter, bool only_show)
|
2009-10-27 06:16:00 +05:30
|
|
|
{
|
|
|
|
prop_object_t obj;
|
2011-01-22 17:10:19 +05:30
|
|
|
struct xbps_fetch_progress_data xfpd;
|
2009-11-28 07:08:41 +05:30
|
|
|
const char *pkgver, *repoloc, *filename, *cachedir, *sha256;
|
2011-01-18 22:51:55 +05:30
|
|
|
char *binfile;
|
2009-10-27 06:16:00 +05:30
|
|
|
int rv = 0;
|
2011-01-18 22:51:55 +05:30
|
|
|
bool cksum;
|
2009-11-28 07:08:41 +05:30
|
|
|
|
|
|
|
cachedir = xbps_get_cachedir();
|
|
|
|
if (cachedir == NULL)
|
|
|
|
return EINVAL;
|
2009-10-27 06:16:00 +05:30
|
|
|
|
2011-01-18 22:51:55 +05:30
|
|
|
again:
|
2009-10-27 06:16:00 +05:30
|
|
|
while ((obj = prop_object_iterator_next(iter)) != NULL) {
|
2011-01-18 22:51:55 +05:30
|
|
|
cksum = false;
|
|
|
|
prop_dictionary_get_bool(obj, "checksum_ok", &cksum);
|
|
|
|
if (cksum == true)
|
|
|
|
continue;
|
|
|
|
|
2011-02-01 05:51:54 +05:30
|
|
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
|
|
|
"repository", &repoloc))
|
|
|
|
continue;
|
2010-11-06 11:14:00 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "pkgver", &pkgver);
|
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "filename", &filename);
|
|
|
|
prop_dictionary_get_cstring_nocopy(obj,
|
|
|
|
"filename-sha256", &sha256);
|
2009-10-27 06:16:00 +05:30
|
|
|
|
2011-01-20 21:11:49 +05:30
|
|
|
binfile = xbps_get_binpkg_repo_uri(obj, repoloc);
|
2011-01-18 22:51:55 +05:30
|
|
|
if (binfile == NULL)
|
2009-10-27 06:16:00 +05:30
|
|
|
return errno;
|
2009-11-28 07:08:41 +05:30
|
|
|
/*
|
|
|
|
* If downloaded package is in cachedir, check its hash
|
2011-01-18 22:51:55 +05:30
|
|
|
* and refetch the binpkg again if didn't match.
|
2009-11-28 07:08:41 +05:30
|
|
|
*/
|
2011-01-18 22:51:55 +05:30
|
|
|
if (access(binfile, R_OK) == 0) {
|
|
|
|
rv = check_binpkg_hash(binfile, filename, sha256);
|
|
|
|
free(binfile);
|
|
|
|
if (rv != 0 && rv != ERANGE) {
|
|
|
|
return rv;
|
|
|
|
} else if (rv == ERANGE) {
|
|
|
|
break;
|
2009-11-28 07:08:41 +05:30
|
|
|
}
|
2011-01-18 22:51:55 +05:30
|
|
|
prop_dictionary_set_bool(obj, "checksum_ok", true);
|
|
|
|
continue;
|
2009-11-28 07:08:41 +05:30
|
|
|
}
|
2011-01-27 19:06:33 +05:30
|
|
|
if (only_show) {
|
|
|
|
printf("%s\n", binfile);
|
|
|
|
free(binfile);
|
|
|
|
continue;
|
|
|
|
}
|
2009-11-28 07:08:41 +05:30
|
|
|
if (xbps_mkpath(__UNCONST(cachedir), 0755) == -1) {
|
2011-01-18 22:51:55 +05:30
|
|
|
free(binfile);
|
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);
|
2011-01-22 17:10:19 +05:30
|
|
|
rv = xbps_fetch_file(binfile, cachedir, false, NULL,
|
|
|
|
fetch_file_progress_cb, &xfpd);
|
2009-11-24 10:33:26 +05:30
|
|
|
if (rv == -1) {
|
2011-01-30 22:53:33 +05:30
|
|
|
xbps_error_printf("xbps-bin: couldn't download `%s'\n",
|
2010-01-21 07:40:19 +05:30
|
|
|
filename);
|
2011-01-30 22:53:33 +05:30
|
|
|
xbps_error_printf("xbps-bin: %s returned: `%s'\n",
|
2010-01-21 07:40:19 +05:30
|
|
|
repoloc, xbps_fetch_error_string());
|
2011-01-18 22:51:55 +05:30
|
|
|
free(binfile);
|
2010-01-21 07:40:19 +05:30
|
|
|
return -1;
|
2009-10-27 06:16:00 +05:30
|
|
|
}
|
2011-01-18 22:51:55 +05:30
|
|
|
free(binfile);
|
2011-01-20 21:11:49 +05:30
|
|
|
binfile = xbps_get_binpkg_repo_uri(obj, repoloc);
|
2011-01-18 22:51:55 +05:30
|
|
|
if (binfile == NULL)
|
2009-11-23 15:16:51 +05:30
|
|
|
return errno;
|
2011-01-18 22:51:55 +05:30
|
|
|
|
|
|
|
rv = check_binpkg_hash(binfile, filename, sha256);
|
|
|
|
free(binfile);
|
|
|
|
if (rv != 0 && rv != ERANGE) {
|
|
|
|
return rv;
|
|
|
|
} else if (rv == ERANGE) {
|
|
|
|
break;
|
2009-11-23 15:16:51 +05:30
|
|
|
}
|
2011-01-18 22:51:55 +05:30
|
|
|
prop_dictionary_set_bool(obj, "checksum_ok", true);
|
2009-10-27 06:16:00 +05:30
|
|
|
}
|
|
|
|
prop_object_iterator_reset(iter);
|
2011-01-18 22:51:55 +05:30
|
|
|
if (rv == ERANGE)
|
|
|
|
goto again;
|
2009-10-27 06:16:00 +05:30
|
|
|
|
|
|
|
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;
|
2009-11-22 09:45:47 +05:30
|
|
|
const char *pkgver, *tract;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
while ((obj = prop_object_iterator_next(iter)) != NULL) {
|
2010-11-06 11:14:00 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "pkgver", &pkgver);
|
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "trans-action", &tract);
|
2009-08-17 22:37:20 +05:30
|
|
|
if (strcmp(match, tract))
|
|
|
|
continue;
|
2011-01-25 22:22:04 +05:30
|
|
|
print_package_line(pkgver, false);
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
prop_object_iterator_reset(iter);
|
2011-01-25 22:22:04 +05:30
|
|
|
print_package_line(NULL, true);
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2010-01-21 07:40:19 +05:30
|
|
|
show_transaction_sizes(struct transaction *trans)
|
2009-08-17 22:37:20 +05:30
|
|
|
{
|
|
|
|
prop_object_t obj;
|
2010-01-21 07:40:19 +05:30
|
|
|
uint64_t dlsize = 0, instsize = 0;
|
2011-02-01 05:51:54 +05:30
|
|
|
const char *tract;
|
2011-01-19 03:40:07 +05:30
|
|
|
char size[8];
|
2011-02-01 05:51:54 +05:30
|
|
|
bool trans_inst, trans_up, trans_conf, trans_rm;
|
2009-11-26 07:52:50 +05:30
|
|
|
|
2011-02-01 05:51:54 +05:30
|
|
|
trans_inst = trans_up = trans_conf = trans_rm = false;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
while ((obj = prop_object_iterator_next(trans->iter))) {
|
2010-11-06 11:14:00 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "trans-action", &tract);
|
2010-01-21 07:40:19 +05:30
|
|
|
if (strcmp(tract, "install") == 0) {
|
|
|
|
trans->inst_pkgcnt++;
|
2009-08-17 22:37:20 +05:30
|
|
|
trans_inst = true;
|
2010-01-21 07:40:19 +05:30
|
|
|
} else if (strcmp(tract, "update") == 0) {
|
|
|
|
trans->up_pkgcnt++;
|
2009-08-17 22:37:20 +05:30
|
|
|
trans_up = true;
|
2010-01-21 07:40:19 +05:30
|
|
|
} else if (strcmp(tract, "configure") == 0) {
|
|
|
|
trans->cf_pkgcnt++;
|
2009-11-26 07:52:50 +05:30
|
|
|
trans_conf = true;
|
2011-02-01 05:51:54 +05:30
|
|
|
} else if (strcmp(tract, "remove") == 0) {
|
|
|
|
trans->rm_pkgcnt++;
|
|
|
|
trans_rm = true;
|
2010-01-21 07:40:19 +05:30
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
2010-01-21 07:40:19 +05:30
|
|
|
prop_object_iterator_reset(trans->iter);
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Show the list of packages that will be installed.
|
|
|
|
*/
|
|
|
|
if (trans_inst) {
|
|
|
|
printf("The following packages will be installed:\n\n");
|
2010-01-21 07:40:19 +05:30
|
|
|
show_package_list(trans->iter, "install");
|
2009-08-17 22:37:20 +05:30
|
|
|
printf("\n\n");
|
|
|
|
}
|
|
|
|
if (trans_up) {
|
|
|
|
printf("The following packages will be updated:\n\n");
|
2010-01-21 07:40:19 +05:30
|
|
|
show_package_list(trans->iter, "update");
|
2009-08-17 22:37:20 +05:30
|
|
|
printf("\n\n");
|
|
|
|
}
|
2009-11-26 07:52:50 +05:30
|
|
|
if (trans_conf) {
|
|
|
|
printf("The following packages will be configured:\n\n");
|
2010-01-21 07:40:19 +05:30
|
|
|
show_package_list(trans->iter, "configure");
|
2009-11-26 07:52:50 +05:30
|
|
|
printf("\n\n");
|
|
|
|
}
|
2011-02-01 05:51:54 +05:30
|
|
|
if (trans_rm) {
|
|
|
|
printf("The following packages will be removed:\n\n");
|
|
|
|
show_package_list(trans->iter, "remove");
|
|
|
|
printf("\n\n");
|
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Show total download/installed size for all required packages.
|
|
|
|
*/
|
2010-11-06 11:14:00 +05:30
|
|
|
prop_dictionary_get_uint64(trans->dict, "total-download-size", &dlsize);
|
|
|
|
prop_dictionary_get_uint64(trans->dict, "total-installed-size",
|
|
|
|
&instsize);
|
2011-01-19 03:40:07 +05:30
|
|
|
if (xbps_humanize_number(size, (int64_t)dlsize) == -1) {
|
2011-01-30 22:53:33 +05:30
|
|
|
xbps_error_printf("xbps-bin: error: humanize_number returns "
|
2010-01-15 19:49:16 +05:30
|
|
|
"%s\n", strerror(errno));
|
2009-08-17 22:37:20 +05:30
|
|
|
return -1;
|
|
|
|
}
|
2011-01-30 17:10:16 +05:30
|
|
|
printf("Total download size:\t%6s\n", size);
|
2011-01-19 03:40:07 +05:30
|
|
|
if (xbps_humanize_number(size, (int64_t)instsize) == -1) {
|
2011-01-30 22:53:33 +05:30
|
|
|
xbps_error_printf("xbps-bin: error: humanize_number2 returns "
|
2010-01-15 19:49:16 +05:30
|
|
|
"%s\n", strerror(errno));
|
2009-08-17 22:37:20 +05:30
|
|
|
return -1;
|
|
|
|
}
|
2011-01-30 17:10:16 +05:30
|
|
|
printf("Total installed size:\t%6s\n\n", size);
|
|
|
|
|
2011-02-01 05:51:54 +05:30
|
|
|
printf("%6zu package%s will be installed.\n", trans->inst_pkgcnt,
|
|
|
|
trans->inst_pkgcnt == 1 ? "" : "s");
|
|
|
|
printf("%6zu package%s will be updated.\n", trans->up_pkgcnt,
|
|
|
|
trans->up_pkgcnt == 1 ? "" : "s");
|
|
|
|
printf("%6zu package%s will be configured.\n", trans->cf_pkgcnt,
|
|
|
|
trans->cf_pkgcnt == 1 ? "" : "s");
|
|
|
|
printf("%6zu package%s will be removed.\n\n", trans->rm_pkgcnt,
|
|
|
|
trans->rm_pkgcnt == 1 ? "" : "s");
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-23 17:31:54 +05:30
|
|
|
int
|
2011-01-27 19:06:33 +05:30
|
|
|
xbps_autoupdate_pkgs(bool yes, bool show_download_pkglist_url)
|
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;
|
2010-11-19 18:10:13 +05:30
|
|
|
} else if (rv == ENXIO) {
|
2009-12-22 17:07:36 +05:30
|
|
|
printf("All packages are up-to-date.\n");
|
|
|
|
return 0;
|
2010-11-19 18:10:13 +05:30
|
|
|
} else {
|
2011-01-30 22:53:33 +05:30
|
|
|
xbps_error_printf("xbps-bin: unexpected error %s\n",
|
2010-11-19 18:10:13 +05:30
|
|
|
strerror(rv));
|
|
|
|
return -1;
|
2009-12-22 17:07:36 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-27 19:06:33 +05:30
|
|
|
return xbps_exec_transaction(yes, show_download_pkglist_url);
|
2009-12-22 17:07:36 +05:30
|
|
|
}
|
|
|
|
|
2010-01-14 10:55:01 +05:30
|
|
|
int
|
|
|
|
xbps_install_new_pkg(const char *pkg)
|
|
|
|
{
|
|
|
|
prop_dictionary_t pkgd;
|
2010-02-26 10:43:33 +05:30
|
|
|
char *pkgname = NULL, *pkgpatt = NULL;
|
2010-01-14 10:55:01 +05:30
|
|
|
int rv = 0;
|
|
|
|
bool pkgmatch = false;
|
|
|
|
|
2010-02-26 10:43:33 +05:30
|
|
|
if (xbps_get_pkgpattern_version(pkg)) {
|
|
|
|
pkgpatt = __UNCONST(pkg);
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* If only pkgname has been specified, always append
|
|
|
|
* '>=0' at the end, will be easier to parse.
|
|
|
|
*/
|
2010-01-14 10:55:01 +05:30
|
|
|
pkgmatch = true;
|
2010-02-26 10:43:33 +05:30
|
|
|
pkgpatt = xbps_xasprintf("%s%s", pkg, ">=0");
|
|
|
|
if (pkgpatt == NULL)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
pkgname = xbps_get_pkgpattern_name(pkgpatt);
|
|
|
|
if (pkgname == NULL)
|
|
|
|
return -1;
|
2009-12-22 17:07:36 +05:30
|
|
|
/*
|
|
|
|
* Find a package in a repository and prepare for installation.
|
|
|
|
*/
|
2010-01-21 07:40:19 +05:30
|
|
|
if ((pkgd = xbps_find_pkg_dict_installed(pkgname, false))) {
|
2009-12-22 17:07:36 +05:30
|
|
|
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-11-19 18:10:13 +05:30
|
|
|
if ((rv = xbps_repository_install_pkg(pkgpatt)) != 0) {
|
2011-01-24 23:19:24 +05:30
|
|
|
if (rv == ENOENT) {
|
2010-11-19 18:10:13 +05:30
|
|
|
fprintf(stderr, "xbps-bin: unable to locate '%s' in "
|
|
|
|
"repository pool.\n", pkg);
|
|
|
|
rv = -1;
|
|
|
|
} else {
|
2011-01-30 22:53:33 +05:30
|
|
|
xbps_error_printf("xbps-bin: unexpected error: %s\n",
|
2010-11-19 18:10:13 +05:30
|
|
|
strerror(rv));
|
|
|
|
rv = -1;
|
|
|
|
}
|
2009-12-22 17:07:36 +05:30
|
|
|
}
|
2010-01-14 06:44:31 +05:30
|
|
|
if (pkgmatch)
|
2010-02-26 10:43:33 +05:30
|
|
|
free(pkgpatt);
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
int rv = 0;
|
|
|
|
|
2010-11-19 18:10:13 +05:30
|
|
|
rv = xbps_repository_update_pkg(pkgname);
|
|
|
|
if (rv == EEXIST)
|
|
|
|
printf("Package '%s' is up to date.\n", pkgname);
|
|
|
|
else if (rv == ENOENT)
|
|
|
|
fprintf(stderr, "Package '%s' not found in "
|
|
|
|
"repository pool.\n", pkgname);
|
|
|
|
else if (rv == ENODEV)
|
2009-12-22 17:07:36 +05:30
|
|
|
printf("Package '%s' not installed.\n", pkgname);
|
2010-11-19 18:10:13 +05:30
|
|
|
else if (rv != 0) {
|
2011-01-30 22:53:33 +05:30
|
|
|
xbps_error_printf("xbps-bin: unexpected error %s\n",
|
2010-11-19 18:10:13 +05:30
|
|
|
strerror(rv));
|
|
|
|
return -1;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
2010-11-19 18:10:13 +05:30
|
|
|
return 0;
|
2009-12-22 17:07:36 +05:30
|
|
|
}
|
|
|
|
|
2011-01-21 21:46:58 +05:30
|
|
|
static void
|
|
|
|
unpack_progress_cb_verbose(void *data)
|
|
|
|
{
|
2011-01-22 17:10:19 +05:30
|
|
|
struct xbps_unpack_progress_data *xpd = data;
|
2011-01-21 21:46:58 +05:30
|
|
|
|
|
|
|
if (xpd->entry == NULL || xpd->entry_is_metadata)
|
|
|
|
return;
|
|
|
|
else if (xpd->entry_size <= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
fprintf(stderr, "Extracted %sfile `%s' (%" PRIi64 " bytes)\n",
|
|
|
|
xpd->entry_is_conf ? "configuration " : "", xpd->entry,
|
|
|
|
xpd->entry_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
unpack_progress_cb_percentage(void *data)
|
|
|
|
{
|
2011-01-22 17:10:19 +05:30
|
|
|
struct xbps_unpack_progress_data *xpd = data;
|
|
|
|
double percent = 0;
|
2011-01-21 21:46:58 +05:30
|
|
|
|
|
|
|
if (xpd->entry_is_metadata)
|
|
|
|
return;
|
|
|
|
|
|
|
|
percent =
|
2011-01-22 17:10:19 +05:30
|
|
|
(double)((xpd->entry_extract_count * 100.0) / xpd->entry_total_count);
|
|
|
|
if (percent > 100.0 ||
|
|
|
|
xpd->entry_extract_count >= xpd->entry_total_count)
|
|
|
|
percent = 100.0;
|
2011-01-21 21:46:58 +05:30
|
|
|
|
2011-01-22 17:10:19 +05:30
|
|
|
printf("\033[s(%3.2f%%)\033[u", percent);
|
2011-01-21 21:46:58 +05:30
|
|
|
}
|
|
|
|
|
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;
|
2011-01-22 17:10:19 +05:30
|
|
|
struct xbps_unpack_progress_data xpd;
|
2011-01-21 21:46:58 +05:30
|
|
|
const char *pkgname, *version, *pkgver, *instver, *filen, *tract;
|
|
|
|
int flags = xbps_get_flags(), rv = 0;
|
2010-01-28 20:38:50 +05:30
|
|
|
bool update, preserve, autoinst;
|
2011-02-01 05:51:54 +05:30
|
|
|
pkg_state_t state;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2011-01-27 19:06:33 +05:30
|
|
|
/*
|
|
|
|
* Only show the URLs to download the binary packages.
|
|
|
|
*/
|
|
|
|
if (trans->only_show)
|
|
|
|
return download_package_list(trans->iter, true);
|
2009-08-17 22:37:20 +05:30
|
|
|
/*
|
|
|
|
* Show download/installed size for the transaction.
|
|
|
|
*/
|
2010-01-21 07:40:19 +05:30
|
|
|
if ((rv = show_transaction_sizes(trans)) != 0)
|
2009-08-17 22:37:20 +05:30
|
|
|
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
|
|
|
*/
|
2010-01-24 18:37:57 +05:30
|
|
|
printf("[1/3] Downloading/integrity check\n");
|
2011-01-27 19:06:33 +05:30
|
|
|
if ((rv = download_package_list(trans->iter, false)) != 0)
|
2009-10-27 06:16:00 +05:30
|
|
|
return rv;
|
2009-08-17 22:37:20 +05:30
|
|
|
/*
|
|
|
|
* Iterate over the transaction dictionary.
|
|
|
|
*/
|
2010-01-24 18:37:57 +05:30
|
|
|
printf("\n[2/3] Unpacking\n");
|
2009-08-17 22:37:20 +05:30
|
|
|
while ((obj = prop_object_iterator_next(trans->iter)) != NULL) {
|
2010-04-29 01:03:36 +05:30
|
|
|
autoinst = preserve = false;
|
2010-11-06 11:14:00 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "pkgname", &pkgname);
|
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "version", &version);
|
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "pkgver", &pkgver);
|
2011-01-21 21:46:58 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "filename", &filen);
|
2010-11-06 11:14:00 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "trans-action", &tract);
|
2010-10-23 21:39:35 +05:30
|
|
|
prop_dictionary_get_bool(obj, "automatic-install", &autoinst);
|
|
|
|
prop_dictionary_get_bool(obj, "preserve", &preserve);
|
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;
|
|
|
|
|
2011-02-01 05:51:54 +05:30
|
|
|
if (strcmp(tract, "remove") == 0) {
|
|
|
|
/* Remove a package */
|
|
|
|
printf("Removing `%s' package ...\n", pkgver);
|
|
|
|
rv = xbps_remove_pkg(pkgname, version, false);
|
2009-10-17 08:29:59 +05:30
|
|
|
if (rv != 0) {
|
2011-02-01 05:51:54 +05:30
|
|
|
xbps_error_printf("xbps-bin: failed to remove "
|
|
|
|
"`%s': %s\n", pkgver, strerror(rv));
|
2009-10-17 08:29:59 +05:30
|
|
|
return rv;
|
2009-10-17 07:56:43 +05:30
|
|
|
}
|
2011-02-01 05:51:54 +05:30
|
|
|
continue;
|
2009-10-17 07:56:43 +05:30
|
|
|
|
2011-02-01 05:51:54 +05:30
|
|
|
} else if (strcmp(tract, "update") == 0) {
|
|
|
|
/* Update a package */
|
2010-01-21 07:40:19 +05:30
|
|
|
instpkgd = xbps_find_pkg_dict_installed(pkgname, false);
|
2009-08-17 22:37:20 +05:30
|
|
|
if (instpkgd == NULL) {
|
2011-01-30 22:53:33 +05:30
|
|
|
xbps_error_printf("xbps-bin: error: unable to "
|
2010-01-15 19:49:16 +05:30
|
|
|
"find %s installed dict!\n", pkgname);
|
2009-08-17 22:37:20 +05:30
|
|
|
return EINVAL;
|
|
|
|
}
|
2010-11-06 11:14:00 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(instpkgd,
|
|
|
|
"version", &instver);
|
2009-08-17 22:37:20 +05:30
|
|
|
prop_object_release(instpkgd);
|
2010-01-28 20:38:50 +05:30
|
|
|
if (preserve)
|
2010-01-25 20:46:48 +05:30
|
|
|
printf("Conserving %s-%s files, installing new "
|
|
|
|
"version ...\n", pkgname, instver);
|
2010-01-21 07:40:19 +05:30
|
|
|
else
|
2010-01-28 20:38:50 +05:30
|
|
|
printf("Replacing %s files (%s -> %s) ...\n",
|
|
|
|
pkgname, instver, version);
|
2010-01-21 07:40:19 +05:30
|
|
|
|
2010-11-19 18:10:13 +05:30
|
|
|
if ((rv = xbps_remove_pkg(pkgname, version, true)) != 0) {
|
2011-01-30 22:53:33 +05:30
|
|
|
xbps_error_printf("xbps-bin: error "
|
2010-01-28 20:38:50 +05:30
|
|
|
"replacing %s-%s (%s)\n", pkgname,
|
2010-01-21 07:40:19 +05:30
|
|
|
instver, strerror(rv));
|
|
|
|
return rv;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Unpack binary package.
|
|
|
|
*/
|
2011-01-21 21:46:58 +05:30
|
|
|
printf("Unpacking `%s' (from ../%s) ... ", pkgver, filen);
|
|
|
|
if (flags & XBPS_FLAG_VERBOSE) {
|
2011-01-22 17:10:19 +05:30
|
|
|
rv = xbps_unpack_binary_pkg(obj,
|
2011-01-21 21:46:58 +05:30
|
|
|
unpack_progress_cb_verbose, &xpd);
|
|
|
|
printf("\n");
|
|
|
|
} else {
|
2011-01-22 17:10:19 +05:30
|
|
|
rv = xbps_unpack_binary_pkg(obj,
|
2011-01-21 21:46:58 +05:30
|
|
|
unpack_progress_cb_percentage, &xpd);
|
|
|
|
}
|
2011-01-22 17:10:19 +05:30
|
|
|
if (rv != 0) {
|
2011-01-30 22:53:33 +05:30
|
|
|
xbps_error_printf("xbps-bin: error unpacking %s "
|
2010-01-15 19:49:16 +05:30
|
|
|
"(%s)\n", pkgver, strerror(rv));
|
2009-08-17 22:37:20 +05:30
|
|
|
return rv;
|
|
|
|
}
|
2011-01-21 21:46:58 +05:30
|
|
|
if ((flags & XBPS_FLAG_VERBOSE) == 0)
|
|
|
|
printf("\n");
|
2009-08-17 22:37:20 +05:30
|
|
|
/*
|
|
|
|
* Register binary package.
|
|
|
|
*/
|
2009-10-22 18:02:21 +05:30
|
|
|
if ((rv = xbps_register_pkg(obj, autoinst)) != 0) {
|
2011-01-30 22:53:33 +05:30
|
|
|
xbps_error_printf("xbps-bin: error registering %s "
|
2010-01-15 19:49:16 +05:30
|
|
|
"(%s)\n", pkgver, strerror(rv));
|
2009-08-17 22:37:20 +05:30
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
prop_object_iterator_reset(trans->iter);
|
|
|
|
/*
|
|
|
|
* Configure all unpacked packages.
|
|
|
|
*/
|
2010-01-24 18:37:57 +05:30
|
|
|
printf("\n[3/3] Configuring\n");
|
2009-08-17 22:37:20 +05:30
|
|
|
while ((obj = prop_object_iterator_next(trans->iter)) != NULL) {
|
2011-02-01 05:51:54 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "trans-action", &tract);
|
|
|
|
if (strcmp(tract, "remove") == 0)
|
|
|
|
continue;
|
2010-11-06 11:14:00 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "pkgname", &pkgname);
|
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "version", &version);
|
2009-12-09 20:44:35 +05:30
|
|
|
update = false;
|
|
|
|
if (strcmp(tract, "update") == 0)
|
|
|
|
update = true;
|
|
|
|
rv = xbps_configure_pkg(pkgname, version, false, update);
|
|
|
|
if (rv != 0) {
|
2011-01-30 22:53:33 +05:30
|
|
|
xbps_error_printf("xbps-bin: error configuring "
|
2010-01-15 19:49:16 +05:30
|
|
|
"package %s (%s)\n", pkgname, strerror(rv));
|
2009-08-17 22:37:20 +05:30
|
|
|
return rv;
|
|
|
|
}
|
2010-01-21 07:40:19 +05:30
|
|
|
trans->cf_pkgcnt++;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
2010-01-21 07:40:19 +05:30
|
|
|
printf("\nxbps-bin: %zu installed, %zu updated, "
|
2011-02-01 05:51:54 +05:30
|
|
|
"%zu configured, %zu removed.\n", trans->inst_pkgcnt,
|
|
|
|
trans->up_pkgcnt, trans->cf_pkgcnt, trans->rm_pkgcnt);
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2010-01-21 07:40:19 +05:30
|
|
|
|
|
|
|
int
|
2011-01-27 19:06:33 +05:30
|
|
|
xbps_exec_transaction(bool yes, bool show_download_pkglist_url)
|
2010-01-21 07:40:19 +05:30
|
|
|
{
|
|
|
|
struct transaction *trans;
|
|
|
|
prop_array_t array;
|
|
|
|
int rv = 0;
|
|
|
|
|
|
|
|
trans = calloc(1, sizeof(struct transaction));
|
|
|
|
if (trans == NULL)
|
2010-04-28 22:01:37 +05:30
|
|
|
return rv;
|
2010-01-21 07:40:19 +05:30
|
|
|
|
2011-01-24 21:25:58 +05:30
|
|
|
trans->dict = xbps_transaction_prepare();
|
2010-11-19 18:10:13 +05:30
|
|
|
if (trans->dict == NULL) {
|
2011-01-24 21:25:58 +05:30
|
|
|
if (errno == ENODEV) {
|
|
|
|
/* missing packages */
|
|
|
|
array = xbps_transaction_missingdeps_get();
|
2011-01-25 07:25:34 +05:30
|
|
|
show_missing_deps(array);
|
2011-01-24 21:25:58 +05:30
|
|
|
goto out;
|
|
|
|
}
|
2010-11-24 03:47:04 +05:30
|
|
|
xbps_dbg_printf("Empty transaction dictionary: %s\n",
|
|
|
|
strerror(errno));
|
2010-01-21 07:40:19 +05:30
|
|
|
goto out;
|
2010-11-19 18:10:13 +05:30
|
|
|
}
|
2010-12-03 22:06:07 +05:30
|
|
|
xbps_dbg_printf("Dictionary before transaction happens:\n");
|
|
|
|
xbps_dbg_printf_append("%s", prop_dictionary_externalize(trans->dict));
|
2010-01-21 07:40:19 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* It's time to run the transaction!
|
|
|
|
*/
|
|
|
|
trans->iter = xbps_get_array_iter_from_dict(trans->dict, "packages");
|
|
|
|
if (trans->iter == NULL) {
|
2011-01-30 22:53:33 +05:30
|
|
|
xbps_error_printf("xbps-bin: error allocating array mem! (%s)\n",
|
2010-01-21 07:40:19 +05:30
|
|
|
strerror(errno));
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
trans->yes = yes;
|
2011-01-27 19:06:33 +05:30
|
|
|
trans->only_show = show_download_pkglist_url;
|
2010-01-21 07:40:19 +05:30
|
|
|
rv = exec_transaction(trans);
|
|
|
|
out:
|
|
|
|
if (trans->iter)
|
|
|
|
prop_object_iterator_release(trans->iter);
|
|
|
|
if (trans->dict)
|
|
|
|
prop_object_release(trans->dict);
|
|
|
|
if (trans)
|
|
|
|
free(trans);
|
2011-01-24 21:25:58 +05:30
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
return rv;
|
|
|
|
}
|