2013-06-10 13:58:39 +05:30
|
|
|
/*-
|
|
|
|
* Copyright (c) 2012-2013 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2013-08-29 18:00:14 +05:30
|
|
|
#include <fcntl.h>
|
2013-06-10 13:58:39 +05:30
|
|
|
|
|
|
|
#include "xbps_api_impl.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file lib/repo.c
|
|
|
|
* @brief Repository functions
|
|
|
|
* @defgroup repo Repository functions
|
|
|
|
*/
|
|
|
|
char *
|
|
|
|
xbps_repo_path(struct xbps_handle *xhp, const char *url)
|
|
|
|
{
|
|
|
|
assert(xhp);
|
|
|
|
assert(url);
|
|
|
|
|
|
|
|
return xbps_xasprintf("%s/%s-repodata",
|
|
|
|
url, xhp->target_arch ? xhp->target_arch : xhp->native_arch);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct xbps_repo *
|
|
|
|
xbps_repo_open(struct xbps_handle *xhp, const char *url)
|
|
|
|
{
|
|
|
|
struct xbps_repo *repo;
|
2013-08-29 18:00:14 +05:30
|
|
|
struct stat st;
|
2013-06-10 13:58:39 +05:30
|
|
|
const char *arch;
|
|
|
|
char *repofile;
|
|
|
|
|
|
|
|
assert(xhp);
|
|
|
|
assert(url);
|
|
|
|
|
|
|
|
if (xhp->target_arch)
|
|
|
|
arch = xhp->target_arch;
|
|
|
|
else
|
|
|
|
arch = xhp->native_arch;
|
|
|
|
|
|
|
|
if (xbps_repository_is_remote(url)) {
|
|
|
|
/* remote repository */
|
|
|
|
char *rpath;
|
|
|
|
|
|
|
|
if ((rpath = xbps_get_remote_repo_string(url)) == NULL)
|
|
|
|
return NULL;
|
|
|
|
repofile = xbps_xasprintf("%s/%s/%s-repodata", xhp->metadir, rpath, arch);
|
|
|
|
free(rpath);
|
|
|
|
} else {
|
|
|
|
/* local repository */
|
|
|
|
repofile = xbps_repo_path(xhp, url);
|
|
|
|
}
|
|
|
|
|
|
|
|
repo = calloc(1, sizeof(struct xbps_repo));
|
|
|
|
assert(repo);
|
|
|
|
|
|
|
|
repo->xhp = xhp;
|
|
|
|
repo->uri = url;
|
|
|
|
repo->ar = archive_read_new();
|
2013-08-15 15:25:20 +05:30
|
|
|
archive_read_support_compression_gzip(repo->ar);
|
|
|
|
archive_read_support_compression_bzip2(repo->ar);
|
|
|
|
archive_read_support_compression_xz(repo->ar);
|
2013-06-10 13:58:39 +05:30
|
|
|
archive_read_support_format_tar(repo->ar);
|
|
|
|
|
2013-08-29 18:00:14 +05:30
|
|
|
if (stat(repofile, &st) == -1) {
|
2013-10-05 15:08:04 +05:30
|
|
|
xbps_dbg_printf(xhp, "[repo] `%s' missing repodata %s: %s\n",
|
|
|
|
url, repofile, strerror(errno));
|
2013-08-29 18:00:14 +05:30
|
|
|
archive_read_finish(repo->ar);
|
|
|
|
free(repo);
|
|
|
|
repo = NULL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (archive_read_open_filename(repo->ar, repofile, st.st_blksize) == ARCHIVE_FATAL) {
|
2013-10-05 15:08:04 +05:30
|
|
|
xbps_dbg_printf(xhp,
|
|
|
|
"[repo] `%s' failed to open repodata archive %s: %s\n",
|
|
|
|
url, repofile, strerror(archive_errno(repo->ar)));
|
2013-08-29 18:00:14 +05:30
|
|
|
archive_read_finish(repo->ar);
|
2013-06-10 13:58:39 +05:30
|
|
|
free(repo);
|
|
|
|
repo = NULL;
|
|
|
|
}
|
2013-08-29 18:00:14 +05:30
|
|
|
out:
|
2013-06-10 13:58:39 +05:30
|
|
|
free(repofile);
|
|
|
|
return repo;
|
|
|
|
}
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t
|
2013-06-10 13:58:39 +05:30
|
|
|
xbps_repo_get_plist(struct xbps_repo *repo, const char *file)
|
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t d;
|
2013-06-10 13:58:39 +05:30
|
|
|
struct archive_entry *entry;
|
|
|
|
void *buf;
|
|
|
|
size_t buflen;
|
|
|
|
ssize_t nbytes = -1;
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
assert(repo);
|
|
|
|
assert(file);
|
|
|
|
|
2013-07-26 15:12:52 +05:30
|
|
|
if (repo->ar == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2013-06-10 13:58:39 +05:30
|
|
|
for (;;) {
|
|
|
|
rv = archive_read_next_header(repo->ar, &entry);
|
|
|
|
if (rv == ARCHIVE_EOF || rv == ARCHIVE_FATAL)
|
|
|
|
break;
|
|
|
|
else if (rv == ARCHIVE_RETRY)
|
|
|
|
continue;
|
|
|
|
if (strcmp(archive_entry_pathname(entry), file) == 0) {
|
|
|
|
buflen = (size_t)archive_entry_size(entry);
|
|
|
|
buf = malloc(buflen);
|
|
|
|
assert(buf);
|
|
|
|
nbytes = archive_read_data(repo->ar, buf, buflen);
|
|
|
|
if ((size_t)nbytes != buflen) {
|
|
|
|
free(buf);
|
|
|
|
return NULL;
|
|
|
|
}
|
2013-06-20 13:56:12 +05:30
|
|
|
d = xbps_dictionary_internalize(buf);
|
2013-06-10 13:58:39 +05:30
|
|
|
free(buf);
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
archive_read_data_skip(repo->ar);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
xbps_repo_close(struct xbps_repo *repo)
|
|
|
|
{
|
|
|
|
assert(repo);
|
|
|
|
|
2013-10-05 15:08:04 +05:30
|
|
|
if (repo->ar != NULL)
|
|
|
|
archive_read_finish(repo->ar);
|
2013-07-26 15:12:52 +05:30
|
|
|
|
2013-10-05 15:08:04 +05:30
|
|
|
if (repo->meta != NULL) {
|
|
|
|
xbps_object_release(repo->meta);
|
|
|
|
repo->meta = NULL;
|
|
|
|
}
|
|
|
|
if (repo->idx != NULL) {
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_release(repo->idx);
|
2013-10-05 15:08:04 +05:30
|
|
|
repo->idx = NULL;
|
|
|
|
}
|
|
|
|
if (repo->idxfiles != NULL) {
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_release(repo->idxfiles);
|
2013-10-05 15:08:04 +05:30
|
|
|
repo->idxfiles = NULL;
|
|
|
|
}
|
2013-06-10 13:58:39 +05:30
|
|
|
}
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t
|
2013-06-10 13:58:39 +05:30
|
|
|
xbps_repo_get_virtualpkg(struct xbps_repo *repo, const char *pkg)
|
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t pkgd;
|
2013-06-10 13:58:39 +05:30
|
|
|
|
|
|
|
assert(repo);
|
|
|
|
assert(pkg);
|
|
|
|
|
2013-10-05 15:08:04 +05:30
|
|
|
if (repo->ar == NULL || repo->idx == NULL)
|
2013-07-26 15:12:52 +05:30
|
|
|
return NULL;
|
|
|
|
|
2013-06-10 13:58:39 +05:30
|
|
|
pkgd = xbps_find_virtualpkg_in_dict(repo->xhp, repo->idx, pkg);
|
|
|
|
if (pkgd) {
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_set_cstring_nocopy(pkgd,
|
2013-06-10 13:58:39 +05:30
|
|
|
"repository", repo->uri);
|
|
|
|
return pkgd;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t
|
2013-06-10 13:58:39 +05:30
|
|
|
xbps_repo_get_pkg(struct xbps_repo *repo, const char *pkg)
|
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t pkgd;
|
2013-06-10 13:58:39 +05:30
|
|
|
|
|
|
|
assert(repo);
|
|
|
|
assert(pkg);
|
|
|
|
|
2013-10-05 15:08:04 +05:30
|
|
|
if (repo->ar == NULL || repo->idx == NULL)
|
2013-07-26 15:12:52 +05:30
|
|
|
return NULL;
|
|
|
|
|
2013-06-10 13:58:39 +05:30
|
|
|
pkgd = xbps_find_pkg_in_dict(repo->idx, pkg);
|
|
|
|
if (pkgd) {
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_set_cstring_nocopy(pkgd,
|
2013-06-10 13:58:39 +05:30
|
|
|
"repository", repo->uri);
|
|
|
|
return pkgd;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2013-06-14 11:43:51 +05:30
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t
|
|
|
|
xbps_repo_get_pkg_plist(struct xbps_handle *xhp, xbps_dictionary_t pkgd,
|
2013-06-14 13:52:10 +05:30
|
|
|
const char *plist)
|
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t bpkgd;
|
2013-06-14 13:52:10 +05:30
|
|
|
char *url;
|
|
|
|
|
|
|
|
url = xbps_repository_pkg_path(xhp, pkgd);
|
|
|
|
if (url == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
bpkgd = xbps_get_pkg_plist_from_binpkg(url, plist);
|
|
|
|
free(url);
|
|
|
|
return bpkgd;
|
|
|
|
}
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
static xbps_array_t
|
|
|
|
revdeps_match(struct xbps_repo *repo, xbps_dictionary_t tpkgd, const char *str)
|
2013-06-14 11:43:51 +05:30
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t pkgd;
|
|
|
|
xbps_array_t revdeps = NULL, pkgdeps, provides;
|
|
|
|
xbps_object_iterator_t iter;
|
|
|
|
xbps_object_t obj;
|
2013-06-14 11:43:51 +05:30
|
|
|
const char *pkgver, *tpkgver, *arch, *vpkg;
|
|
|
|
char *buf;
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
iter = xbps_dictionary_iterator(repo->idx);
|
2013-06-14 11:43:51 +05:30
|
|
|
assert(iter);
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
while ((obj = xbps_object_iterator_next(iter))) {
|
|
|
|
pkgd = xbps_dictionary_get_keysym(repo->idx, obj);
|
|
|
|
if (xbps_dictionary_equals(pkgd, tpkgd))
|
2013-06-14 11:43:51 +05:30
|
|
|
continue;
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
pkgdeps = xbps_dictionary_get(pkgd, "run_depends");
|
|
|
|
if (!xbps_array_count(pkgdeps))
|
2013-06-14 11:43:51 +05:30
|
|
|
continue;
|
|
|
|
/*
|
|
|
|
* Try to match passed in string.
|
|
|
|
*/
|
|
|
|
if (str) {
|
|
|
|
if (!xbps_match_pkgdep_in_array(pkgdeps, str))
|
|
|
|
continue;
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_get_cstring_nocopy(pkgd,
|
2013-06-14 11:43:51 +05:30
|
|
|
"architecture", &arch);
|
|
|
|
if (!xbps_pkg_arch_match(repo->xhp, arch, NULL))
|
|
|
|
continue;
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_get_cstring_nocopy(pkgd,
|
2013-06-14 11:43:51 +05:30
|
|
|
"pkgver", &tpkgver);
|
|
|
|
/* match */
|
|
|
|
if (revdeps == NULL)
|
2013-06-20 13:56:12 +05:30
|
|
|
revdeps = xbps_array_create();
|
2013-06-14 11:43:51 +05:30
|
|
|
|
|
|
|
if (!xbps_match_string_in_array(revdeps, tpkgver))
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_array_add_cstring_nocopy(revdeps, tpkgver);
|
2013-06-14 11:43:51 +05:30
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Try to match any virtual package.
|
|
|
|
*/
|
2013-06-20 13:56:12 +05:30
|
|
|
provides = xbps_dictionary_get(tpkgd, "provides");
|
2013-09-15 13:36:49 +05:30
|
|
|
for (unsigned int i = 0; i < xbps_array_count(provides); i++) {
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_array_get_cstring_nocopy(provides, i, &vpkg);
|
2013-06-14 11:43:51 +05:30
|
|
|
if (strchr(vpkg, '_') == NULL)
|
|
|
|
buf = xbps_xasprintf("%s_1", vpkg);
|
|
|
|
else
|
|
|
|
buf = strdup(vpkg);
|
|
|
|
|
|
|
|
if (!xbps_match_pkgdep_in_array(pkgdeps, buf)) {
|
|
|
|
free(buf);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
free(buf);
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_get_cstring_nocopy(pkgd,
|
2013-06-14 11:43:51 +05:30
|
|
|
"architecture", &arch);
|
|
|
|
if (!xbps_pkg_arch_match(repo->xhp, arch, NULL))
|
|
|
|
continue;
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_get_cstring_nocopy(pkgd, "pkgver",
|
2013-06-14 11:43:51 +05:30
|
|
|
&tpkgver);
|
|
|
|
/* match */
|
|
|
|
if (revdeps == NULL)
|
2013-06-20 13:56:12 +05:30
|
|
|
revdeps = xbps_array_create();
|
2013-06-14 11:43:51 +05:30
|
|
|
|
|
|
|
if (!xbps_match_string_in_array(revdeps, tpkgver))
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_array_add_cstring_nocopy(revdeps, tpkgver);
|
2013-06-14 11:43:51 +05:30
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Try to match by pkgver.
|
|
|
|
*/
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_get_cstring_nocopy(tpkgd, "pkgver", &pkgver);
|
2013-06-14 11:43:51 +05:30
|
|
|
if (!xbps_match_pkgdep_in_array(pkgdeps, pkgver))
|
|
|
|
continue;
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_get_cstring_nocopy(pkgd,
|
2013-06-14 11:43:51 +05:30
|
|
|
"architecture", &arch);
|
|
|
|
if (!xbps_pkg_arch_match(repo->xhp, arch, NULL))
|
|
|
|
continue;
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_get_cstring_nocopy(pkgd, "pkgver", &tpkgver);
|
2013-06-14 11:43:51 +05:30
|
|
|
/* match */
|
|
|
|
if (revdeps == NULL)
|
2013-06-20 13:56:12 +05:30
|
|
|
revdeps = xbps_array_create();
|
2013-06-14 11:43:51 +05:30
|
|
|
|
|
|
|
if (!xbps_match_string_in_array(revdeps, tpkgver))
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_array_add_cstring_nocopy(revdeps, tpkgver);
|
2013-06-14 11:43:51 +05:30
|
|
|
}
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_iterator_release(iter);
|
2013-06-14 11:43:51 +05:30
|
|
|
return revdeps;
|
|
|
|
}
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_array_t
|
2013-06-14 11:43:51 +05:30
|
|
|
xbps_repo_get_pkg_revdeps(struct xbps_repo *repo, const char *pkg)
|
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_array_t revdeps = NULL, vdeps = NULL;
|
|
|
|
xbps_dictionary_t pkgd;
|
2013-06-14 11:43:51 +05:30
|
|
|
const char *vpkg;
|
|
|
|
char *buf = NULL;
|
2013-06-27 21:44:38 +05:30
|
|
|
bool match = false;
|
2013-06-14 11:43:51 +05:30
|
|
|
|
2013-10-05 15:08:04 +05:30
|
|
|
if (repo->idx == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2013-06-14 11:43:51 +05:30
|
|
|
if (((pkgd = xbps_rpool_get_pkg(repo->xhp, pkg)) == NULL) &&
|
|
|
|
((pkgd = xbps_rpool_get_virtualpkg(repo->xhp, pkg)) == NULL)) {
|
|
|
|
errno = ENOENT;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* If pkg is a virtual pkg let's match it instead of the real pkgver.
|
|
|
|
*/
|
2013-06-20 13:56:12 +05:30
|
|
|
if ((vdeps = xbps_dictionary_get(pkgd, "provides"))) {
|
2013-09-15 13:36:49 +05:30
|
|
|
for (unsigned int i = 0; i < xbps_array_count(vdeps); i++) {
|
2013-06-14 11:43:51 +05:30
|
|
|
char *vpkgn;
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_array_get_cstring_nocopy(vdeps, i, &vpkg);
|
2013-06-14 11:43:51 +05:30
|
|
|
if (strchr(vpkg, '_') == NULL)
|
|
|
|
buf = xbps_xasprintf("%s_1", vpkg);
|
|
|
|
else
|
|
|
|
buf = strdup(vpkg);
|
|
|
|
|
|
|
|
vpkgn = xbps_pkg_name(buf);
|
|
|
|
assert(vpkgn);
|
|
|
|
if (strcmp(vpkgn, pkg) == 0) {
|
|
|
|
free(vpkgn);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
free(vpkgn);
|
|
|
|
free(buf);
|
|
|
|
buf = NULL;
|
|
|
|
}
|
|
|
|
if (buf) {
|
2013-06-27 21:44:38 +05:30
|
|
|
match = true;
|
2013-06-14 11:43:51 +05:30
|
|
|
revdeps = revdeps_match(repo, pkgd, buf);
|
|
|
|
free(buf);
|
|
|
|
}
|
|
|
|
}
|
2013-06-27 21:44:38 +05:30
|
|
|
if (!match)
|
2013-06-14 11:43:51 +05:30
|
|
|
revdeps = revdeps_match(repo, pkgd, NULL);
|
|
|
|
|
|
|
|
return revdeps;
|
|
|
|
}
|