d1667fd931
The previous idea was to use virtual packages in the users configuration to satisfy dependencies by mapping them to existing installed packages. Using virtual packages for it doesn't work as expected and trying to make it work would break other functionalities of virtual packages, like the version satisfaction checks for `provides` and the ability to replace virtual packages with real packages. The virtual package functionality should be used exclusively for virtual packages. This allows users to specify packages packages that should be ignored. Ignored packages in dependencies are always satisfied without installing the package, while updating or installing a package that depends on an ignored package. This does NOT ignore the shlib checks, ignoring a package that provides required shared libraries will abort the transaction as if there was no package that provides the required shared library.
554 lines
11 KiB
C
554 lines
11 KiB
C
/*-
|
|
* Copyright (c) 2008-2015 Juan Romero Pardines.
|
|
* 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.
|
|
*/
|
|
|
|
#ifdef HAVE_VASPRINTF
|
|
# define _GNU_SOURCE /* for vasprintf(3) */
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <fnmatch.h>
|
|
#include <ctype.h>
|
|
#include <libgen.h>
|
|
#include <sys/utsname.h>
|
|
|
|
#include "xbps_api_impl.h"
|
|
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic ignored "-Wformat-nonliteral"
|
|
#endif
|
|
|
|
/**
|
|
* @file lib/util.c
|
|
* @brief Utility routines
|
|
* @defgroup util Utility functions
|
|
*/
|
|
bool
|
|
xbps_repository_is_remote(const char *uri)
|
|
{
|
|
assert(uri != NULL);
|
|
|
|
if ((strncmp(uri, "http://", 7) == 0) ||
|
|
(strncmp(uri, "https://", 8) == 0) ||
|
|
(strncmp(uri, "ftp://", 6) == 0))
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
int
|
|
xbps_pkg_is_installed(struct xbps_handle *xhp, const char *pkg)
|
|
{
|
|
xbps_dictionary_t dict;
|
|
pkg_state_t state;
|
|
|
|
assert(xhp);
|
|
assert(pkg);
|
|
|
|
if (((dict = xbps_pkgdb_get_virtualpkg(xhp, pkg)) == NULL) &&
|
|
((dict = xbps_pkgdb_get_pkg(xhp, pkg)) == NULL))
|
|
return 0; /* not installed */
|
|
/*
|
|
* Check that package state is fully installed, not
|
|
* unpacked or something else.
|
|
*/
|
|
if (xbps_pkg_state_dictionary(dict, &state) != 0)
|
|
return -1; /* error */
|
|
if (state == XBPS_PKG_STATE_INSTALLED || state == XBPS_PKG_STATE_UNPACKED)
|
|
return 1;
|
|
|
|
return 0; /* not fully installed */
|
|
}
|
|
|
|
bool
|
|
xbps_pkg_is_ignored(struct xbps_handle *xhp, const char *pkg)
|
|
{
|
|
char *pkgname;
|
|
bool rv = false;
|
|
|
|
assert(xhp);
|
|
assert(pkg);
|
|
|
|
if (!xhp->ignored_pkgs)
|
|
return false;
|
|
|
|
if ((pkgname = xbps_pkgpattern_name(pkg)) != NULL ||
|
|
(pkgname = xbps_pkg_name(pkg)) != NULL) {
|
|
rv = xbps_match_string_in_array(xhp->ignored_pkgs, pkgname);
|
|
free(pkgname);
|
|
return rv;
|
|
}
|
|
|
|
return xbps_match_string_in_array(xhp->ignored_pkgs, pkg);
|
|
}
|
|
|
|
const char *
|
|
xbps_pkg_version(const char *pkg)
|
|
{
|
|
const char *p;
|
|
|
|
if ((p = strrchr(pkg, '-')) == NULL)
|
|
return NULL;
|
|
|
|
for (unsigned int i = 0; i < strlen(p); i++) {
|
|
if (p[i] == '_')
|
|
break;
|
|
if (isdigit((unsigned char)p[i]) && strchr(p, '_')) {
|
|
return p + 1; /* skip first '-' */
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
char *
|
|
xbps_binpkg_pkgver(const char *pkg)
|
|
{
|
|
const char *fname;
|
|
char *p, *p1, *res;
|
|
unsigned int len;
|
|
|
|
/* skip path if found, only interested in filename */
|
|
if ((fname = strrchr(pkg, '/')))
|
|
fname++;
|
|
else
|
|
fname = pkg;
|
|
|
|
/* 5 == .xbps */
|
|
if ((len = strlen(fname)) < 5)
|
|
return NULL;
|
|
len -= 5;
|
|
|
|
p = malloc(len+1);
|
|
assert(p);
|
|
(void)memcpy(p, fname, len);
|
|
p[len] = '\0';
|
|
if (!(p1 = strrchr(p, '.'))) {
|
|
free(p);
|
|
return NULL;
|
|
}
|
|
p[strlen(p)-strlen(p1)] = '\0';
|
|
|
|
/* sanity check it's a proper pkgver string */
|
|
if (xbps_pkg_version(p) == NULL) {
|
|
free(p);
|
|
return NULL;
|
|
}
|
|
res = strdup(p);
|
|
assert(res);
|
|
|
|
free(p);
|
|
return res;
|
|
}
|
|
|
|
char *
|
|
xbps_binpkg_arch(const char *pkg)
|
|
{
|
|
const char *fname;
|
|
char *p, *p1, *res;
|
|
unsigned int len;
|
|
|
|
/* skip path if found, only interested in filename */
|
|
if ((fname = strrchr(pkg, '/')))
|
|
fname++;
|
|
else
|
|
fname = pkg;
|
|
|
|
/* 5 == .xbps */
|
|
if ((len = strlen(fname)) < 5)
|
|
return NULL;
|
|
len -= 5;
|
|
|
|
p = malloc(len+1);
|
|
assert(p);
|
|
(void)memcpy(p, fname, len);
|
|
p[len] = '\0';
|
|
if (!(p1 = strrchr(p, '.'))) {
|
|
free(p);
|
|
return NULL;
|
|
}
|
|
res = strdup(p1 + 1);
|
|
assert(res);
|
|
|
|
free(p);
|
|
return res;
|
|
}
|
|
|
|
const char *
|
|
xbps_pkg_revision(const char *pkg)
|
|
{
|
|
const char *p;
|
|
|
|
assert(pkg != NULL);
|
|
|
|
/* Get the required revision */
|
|
if ((p = strrchr(pkg, '_')) == NULL)
|
|
return NULL;
|
|
|
|
if (!isdigit((unsigned char)p[1]))
|
|
return NULL;
|
|
|
|
return p + 1; /* skip first '_' */
|
|
}
|
|
|
|
char *
|
|
xbps_pkg_name(const char *pkg)
|
|
{
|
|
const char *p;
|
|
char *buf;
|
|
unsigned int len;
|
|
bool valid = false;
|
|
|
|
if ((p = strrchr(pkg, '-')) == NULL)
|
|
return NULL;
|
|
|
|
for (unsigned int i = 0; i < strlen(p); i++) {
|
|
if (p[i] == '_')
|
|
break;
|
|
if (isdigit((unsigned char)p[i]) && strchr(p, '_')) {
|
|
valid = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!valid)
|
|
return NULL;
|
|
|
|
len = strlen(pkg) - strlen(p) + 1;
|
|
buf = malloc(len);
|
|
assert(buf != NULL);
|
|
|
|
memcpy(buf, pkg, len-1);
|
|
buf[len-1] = '\0';
|
|
|
|
return buf;
|
|
}
|
|
|
|
char *
|
|
xbps_pkgpattern_name(const char *pkg)
|
|
{
|
|
char *res, *pkgname;
|
|
unsigned int len;
|
|
|
|
assert(pkg != NULL);
|
|
|
|
if ((res = strpbrk(pkg, "><*?[]")) == NULL)
|
|
return NULL;
|
|
|
|
len = strlen(pkg) - strlen(res) + 1;
|
|
if (strlen(pkg) < len-2)
|
|
return NULL;
|
|
|
|
if (pkg[len-2] == '-')
|
|
len--;
|
|
|
|
pkgname = malloc(len);
|
|
assert(pkgname != NULL);
|
|
|
|
memcpy(pkgname, pkg, len-1);
|
|
pkgname[len-1] = '\0';
|
|
|
|
return pkgname;
|
|
}
|
|
|
|
const char *
|
|
xbps_pkgpattern_version(const char *pkg)
|
|
{
|
|
assert(pkg != NULL);
|
|
|
|
return strpbrk(pkg, "><*?[]");
|
|
}
|
|
|
|
char *
|
|
xbps_repository_pkg_path(struct xbps_handle *xhp, xbps_dictionary_t pkg_repod)
|
|
{
|
|
const char *pkgver, *arch, *repoloc;
|
|
char *lbinpkg = NULL;
|
|
|
|
assert(xhp);
|
|
assert(xbps_object_type(pkg_repod) == XBPS_TYPE_DICTIONARY);
|
|
|
|
if (!xbps_dictionary_get_cstring_nocopy(pkg_repod,
|
|
"pkgver", &pkgver))
|
|
return NULL;
|
|
if (!xbps_dictionary_get_cstring_nocopy(pkg_repod,
|
|
"architecture", &arch))
|
|
return NULL;
|
|
if (!xbps_dictionary_get_cstring_nocopy(pkg_repod,
|
|
"repository", &repoloc))
|
|
return NULL;
|
|
|
|
if (xbps_repository_is_remote(repoloc)) {
|
|
/*
|
|
* First check if binpkg is available in cachedir.
|
|
*/
|
|
lbinpkg = xbps_xasprintf("%s/%s.%s.xbps", xhp->cachedir,
|
|
pkgver, arch);
|
|
if (access(lbinpkg, R_OK) == 0)
|
|
return lbinpkg;
|
|
|
|
free(lbinpkg);
|
|
}
|
|
/*
|
|
* Local and remote repositories use the same path.
|
|
*/
|
|
return xbps_xasprintf("%s/%s.%s.xbps", repoloc, pkgver, arch);
|
|
}
|
|
|
|
bool
|
|
xbps_binpkg_exists(struct xbps_handle *xhp, xbps_dictionary_t pkgd)
|
|
{
|
|
char *binpkg;
|
|
bool exists = true;
|
|
|
|
if ((binpkg = xbps_repository_pkg_path(xhp, pkgd)) == NULL)
|
|
return false;
|
|
|
|
if (access(binpkg, R_OK) == -1)
|
|
exists = false;
|
|
|
|
free(binpkg);
|
|
return exists;
|
|
}
|
|
|
|
bool
|
|
xbps_pkg_has_rundeps(xbps_dictionary_t pkgd)
|
|
{
|
|
xbps_array_t array;
|
|
|
|
assert(xbps_object_type(pkgd) == XBPS_TYPE_DICTIONARY);
|
|
|
|
array = xbps_dictionary_get(pkgd, "run_depends");
|
|
if (xbps_array_count(array))
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
xbps_pkg_arch_match(struct xbps_handle *xhp, const char *orig,
|
|
const char *target)
|
|
{
|
|
const char *arch;
|
|
|
|
if (xhp->target_arch)
|
|
arch = xhp->target_arch;
|
|
else
|
|
arch = xhp->native_arch;
|
|
|
|
if (target == NULL) {
|
|
if ((strcmp(orig, "noarch") == 0) ||
|
|
(strcmp(orig, arch) == 0))
|
|
return true;
|
|
} else {
|
|
if ((strcmp(orig, "noarch") == 0) ||
|
|
(strcmp(orig, target) == 0))
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
char *
|
|
xbps_xasprintf(const char *fmt, ...)
|
|
{
|
|
va_list ap;
|
|
char *buf = NULL;
|
|
|
|
va_start(ap, fmt);
|
|
if (vasprintf(&buf, fmt, ap) == -1) {
|
|
va_end(ap);
|
|
assert(buf);
|
|
}
|
|
va_end(ap);
|
|
assert(buf);
|
|
|
|
return buf;
|
|
}
|
|
|
|
/*
|
|
* Match pkg against pattern, return 1 if matching, 0 otherwise or -1 on error.
|
|
*/
|
|
int
|
|
xbps_pkgpattern_match(const char *pkg, const char *pattern)
|
|
{
|
|
/* simple match on "pkg" against "pattern" */
|
|
if (strcmp(pattern, pkg) == 0)
|
|
return 1;
|
|
|
|
/* perform relational dewey match on version number */
|
|
if (strpbrk(pattern, "<>") != NULL)
|
|
return dewey_match(pattern, pkg);
|
|
|
|
/* glob match */
|
|
if (strpbrk(pattern, "*?[]") != NULL)
|
|
if (fnmatch(pattern, pkg, FNM_PERIOD) == 0)
|
|
return 1;
|
|
|
|
/* no match */
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Small wrapper for NetBSD's humanize_number(3) with some
|
|
* defaults set that we care about.
|
|
*/
|
|
int
|
|
xbps_humanize_number(char *buf, int64_t bytes)
|
|
{
|
|
assert(buf != NULL);
|
|
|
|
return humanize_number(buf, 7, bytes, "B",
|
|
HN_AUTOSCALE, HN_DECIMAL|HN_NOSPACE);
|
|
}
|
|
|
|
size_t
|
|
xbps_strlcat(char *dest, const char *src, size_t siz)
|
|
{
|
|
return strlcat(dest, src, siz);
|
|
}
|
|
|
|
size_t
|
|
xbps_strlcpy(char *dest, const char *src, size_t siz)
|
|
{
|
|
return strlcpy(dest, src, siz);
|
|
}
|
|
|
|
/*
|
|
* Check if pkg is explicitly marked to replace a specific installed version.
|
|
*/
|
|
bool
|
|
xbps_pkg_reverts(xbps_dictionary_t pkg, const char *pkgver)
|
|
{
|
|
unsigned int i;
|
|
xbps_array_t reverts;
|
|
const char *version = xbps_pkg_version(pkgver);
|
|
const char *revertver;
|
|
|
|
if ((reverts = xbps_dictionary_get(pkg, "reverts")) == NULL)
|
|
return false;
|
|
|
|
for (i = 0; i < xbps_array_count(reverts); i++) {
|
|
xbps_array_get_cstring_nocopy(reverts, i, &revertver);
|
|
if (strcmp(version, revertver) == 0) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
char *
|
|
xbps_sanitize_path(const char *src)
|
|
{
|
|
const char *s = src;
|
|
char *d, *dest;
|
|
size_t len;
|
|
|
|
assert(src);
|
|
len = strlen(src);
|
|
assert(len != 0);
|
|
|
|
dest = malloc(len+1);
|
|
assert(dest);
|
|
d = dest;
|
|
|
|
while ((*d = *s)) {
|
|
if (*s == '/' && *(s+1) == '/') {
|
|
s++;
|
|
continue;
|
|
}
|
|
d++, s++;
|
|
}
|
|
*d = '\0';
|
|
|
|
return dest;
|
|
}
|
|
|
|
char *
|
|
xbps_symlink_target(struct xbps_handle *xhp, const char *path, const char *tgt)
|
|
{
|
|
struct stat sb;
|
|
char *res = NULL, *lnk = NULL;
|
|
ssize_t r;
|
|
|
|
if (lstat(path, &sb) == -1)
|
|
return NULL;
|
|
|
|
lnk = malloc(sb.st_size + 1);
|
|
assert(lnk);
|
|
|
|
r = readlink(path, lnk, sb.st_size + 1);
|
|
if (r < 0 || r > sb.st_size) {
|
|
free(lnk);
|
|
return NULL;
|
|
}
|
|
lnk[sb.st_size] = '\0';
|
|
|
|
if (tgt[0] != '/') {
|
|
/*
|
|
* target file is relative and wasn't converted to absolute by
|
|
* xbps-create(8), just compare it as is.
|
|
*/
|
|
return lnk;
|
|
}
|
|
|
|
if (strstr(lnk, "./") || lnk[0] != '/') {
|
|
char *p, *p1, *dname, buf[PATH_MAX];
|
|
/* relative */
|
|
p = strdup(path);
|
|
assert(p);
|
|
dname = dirname(p);
|
|
assert(dname);
|
|
snprintf(buf, sizeof(buf), "%s/%s", dname, lnk);
|
|
free(p);
|
|
p = xbps_sanitize_path(buf);
|
|
assert(p);
|
|
if ((strstr(p, "./")) && (p1 = realpath(p, NULL))) {
|
|
if (strcmp(xhp->rootdir, "/") == 0) {
|
|
res = strdup(p1);
|
|
} else {
|
|
res = strdup(p1 + strlen(xhp->rootdir));
|
|
}
|
|
free(p1);
|
|
} else {
|
|
if (strcmp(xhp->rootdir, "/") == 0) {
|
|
res = strdup(p);
|
|
} else {
|
|
res = strdup(p + strlen(xhp->rootdir));
|
|
}
|
|
}
|
|
assert(res);
|
|
free(lnk);
|
|
free(p);
|
|
} else {
|
|
/* absolute */
|
|
res = lnk;
|
|
}
|
|
|
|
return res;
|
|
}
|