2011-02-05 16:36:03 +05:30
|
|
|
/*-
|
2014-02-25 21:12:52 +05:30
|
|
|
* Copyright (c) 2008-2014 Juan Romero Pardines.
|
2011-02-05 16:36:03 +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>
|
2013-06-14 13:30:33 +05:30
|
|
|
#include <fcntl.h>
|
|
|
|
#include <dirent.h>
|
2013-06-14 16:01:43 +05:30
|
|
|
#include <pthread.h>
|
2011-02-05 16:36:03 +05:30
|
|
|
|
|
|
|
#include "xbps_api_impl.h"
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
static xbps_dictionary_t
|
2014-09-14 16:20:17 +05:30
|
|
|
get_pkg_in_array(xbps_array_t array, const char *str, const char *trans, bool virtual)
|
2011-02-05 16:36:03 +05:30
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_t obj = NULL;
|
|
|
|
xbps_object_iterator_t iter;
|
2014-09-14 16:20:17 +05:30
|
|
|
const char *tract;
|
2012-11-30 11:41:51 +05:30
|
|
|
bool found = false;
|
2012-06-05 02:52:33 +05:30
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
iter = xbps_array_iterator(array);
|
2012-11-30 14:19:09 +05:30
|
|
|
assert(iter);
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
while ((obj = xbps_object_iterator_next(iter))) {
|
2014-09-14 16:20:17 +05:30
|
|
|
const char *pkgver;
|
|
|
|
char *dpkgn;
|
|
|
|
|
2012-04-12 15:27:21 +05:30
|
|
|
if (virtual) {
|
|
|
|
/*
|
|
|
|
* Check if package pattern matches
|
|
|
|
* any virtual package version in dictionary.
|
|
|
|
*/
|
2014-04-20 20:24:50 +05:30
|
|
|
found = xbps_match_virtual_pkg_in_dict(obj, str);
|
2012-11-30 11:41:51 +05:30
|
|
|
if (found)
|
2012-04-12 15:27:21 +05:30
|
|
|
break;
|
2012-11-30 11:41:51 +05:30
|
|
|
} else if (xbps_pkgpattern_version(str)) {
|
2013-06-27 19:56:19 +05:30
|
|
|
/* match by pattern against pkgver */
|
2013-06-20 13:56:12 +05:30
|
|
|
if (!xbps_dictionary_get_cstring_nocopy(obj,
|
2011-02-05 16:36:03 +05:30
|
|
|
"pkgver", &pkgver))
|
|
|
|
continue;
|
2012-11-30 11:41:51 +05:30
|
|
|
if (xbps_pkgpattern_match(pkgver, str)) {
|
|
|
|
found = true;
|
2011-02-05 16:36:03 +05:30
|
|
|
break;
|
2012-11-30 11:41:51 +05:30
|
|
|
}
|
|
|
|
} else if (xbps_pkg_version(str)) {
|
|
|
|
/* match by exact pkgver */
|
2013-06-20 13:56:12 +05:30
|
|
|
if (!xbps_dictionary_get_cstring_nocopy(obj,
|
2012-11-30 11:41:51 +05:30
|
|
|
"pkgver", &pkgver))
|
2011-02-05 16:36:03 +05:30
|
|
|
continue;
|
2012-11-30 11:41:51 +05:30
|
|
|
if (strcmp(str, pkgver) == 0) {
|
|
|
|
found = true;
|
2011-02-05 16:36:03 +05:30
|
|
|
break;
|
2012-06-05 14:28:39 +05:30
|
|
|
}
|
2012-11-30 11:41:51 +05:30
|
|
|
} else {
|
|
|
|
/* match by pkgname */
|
2013-06-20 13:56:12 +05:30
|
|
|
if (!xbps_dictionary_get_cstring_nocopy(obj,
|
2013-03-05 08:38:42 +05:30
|
|
|
"pkgver", &pkgver))
|
2012-11-30 11:41:51 +05:30
|
|
|
continue;
|
2013-03-05 08:38:42 +05:30
|
|
|
dpkgn = xbps_pkg_name(pkgver);
|
|
|
|
assert(dpkgn);
|
2012-11-30 11:41:51 +05:30
|
|
|
if (strcmp(dpkgn, str) == 0) {
|
2013-03-05 08:38:42 +05:30
|
|
|
free(dpkgn);
|
2012-11-30 11:41:51 +05:30
|
|
|
found = true;
|
2011-06-04 17:07:53 +05:30
|
|
|
break;
|
|
|
|
}
|
2013-03-05 08:38:42 +05:30
|
|
|
free(dpkgn);
|
2011-06-04 17:07:53 +05:30
|
|
|
}
|
2011-02-05 16:36:03 +05:30
|
|
|
}
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_iterator_release(iter);
|
2012-11-30 14:19:09 +05:30
|
|
|
|
2014-09-14 16:20:17 +05:30
|
|
|
if (found && trans &&
|
|
|
|
xbps_dictionary_get_cstring_nocopy(obj, "transaction", &tract)) {
|
|
|
|
if (strcmp(tract, trans) == 0)
|
2015-01-17 10:34:22 +05:30
|
|
|
found = true;
|
2014-09-14 16:20:17 +05:30
|
|
|
}
|
2014-05-17 16:06:02 +05:30
|
|
|
if (!found) {
|
|
|
|
errno = ENOENT;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return obj;
|
2012-01-19 16:56:40 +05:30
|
|
|
}
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t HIDDEN
|
2014-09-14 16:20:17 +05:30
|
|
|
xbps_find_pkg_in_array(xbps_array_t a, const char *s, const char *trans)
|
2011-02-05 16:36:03 +05:30
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
assert(xbps_object_type(a) == XBPS_TYPE_ARRAY);
|
2012-11-30 11:41:51 +05:30
|
|
|
assert(s);
|
2011-07-15 21:52:58 +05:30
|
|
|
|
2014-09-14 16:20:17 +05:30
|
|
|
return get_pkg_in_array(a, s, trans, false);
|
2011-02-05 16:36:03 +05:30
|
|
|
}
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t HIDDEN
|
2012-11-30 11:41:51 +05:30
|
|
|
xbps_find_virtualpkg_in_array(struct xbps_handle *x,
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_array_t a,
|
2014-09-14 16:20:17 +05:30
|
|
|
const char *s,
|
|
|
|
const char *trans)
|
2011-02-05 16:36:03 +05:30
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t pkgd;
|
2012-11-30 11:41:51 +05:30
|
|
|
const char *vpkg;
|
2011-02-05 16:36:03 +05:30
|
|
|
|
2012-11-30 11:41:51 +05:30
|
|
|
assert(x);
|
2013-06-20 13:56:12 +05:30
|
|
|
assert(xbps_object_type(a) == XBPS_TYPE_ARRAY);
|
2012-11-30 11:41:51 +05:30
|
|
|
assert(s);
|
2011-02-05 16:36:03 +05:30
|
|
|
|
2014-12-31 13:21:45 +05:30
|
|
|
if ((vpkg = vpkg_user_conf(x, s))) {
|
2014-09-14 16:20:17 +05:30
|
|
|
if ((pkgd = get_pkg_in_array(a, vpkg, trans, true)))
|
2012-11-30 11:41:51 +05:30
|
|
|
return pkgd;
|
2011-02-05 16:36:03 +05:30
|
|
|
}
|
2011-06-04 17:07:53 +05:30
|
|
|
|
2014-09-14 16:20:17 +05:30
|
|
|
return get_pkg_in_array(a, s, trans, true);
|
2011-07-15 21:52:58 +05:30
|
|
|
}
|
2013-03-05 08:38:42 +05:30
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
static xbps_dictionary_t
|
|
|
|
match_pkg_by_pkgver(xbps_dictionary_t repod, const char *p)
|
2013-03-05 08:38:42 +05:30
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t d = NULL;
|
2013-03-05 08:38:42 +05:30
|
|
|
const char *pkgver;
|
|
|
|
char *pkgname;
|
|
|
|
|
|
|
|
/* exact match by pkgver */
|
|
|
|
if ((pkgname = xbps_pkg_name(p)) == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
d = xbps_dictionary_get(repod, pkgname);
|
2013-03-05 08:38:42 +05:30
|
|
|
if (d) {
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_get_cstring_nocopy(d, "pkgver", &pkgver);
|
2014-05-17 16:06:02 +05:30
|
|
|
if (strcmp(pkgver, p)) {
|
2013-03-05 08:38:42 +05:30
|
|
|
d = NULL;
|
2014-05-17 16:06:02 +05:30
|
|
|
errno = ENOENT;
|
|
|
|
}
|
2013-03-05 08:38:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
free(pkgname);
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
static xbps_dictionary_t
|
|
|
|
match_pkg_by_pattern(xbps_dictionary_t repod, const char *p)
|
2013-03-05 08:38:42 +05:30
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t d = NULL;
|
2013-03-05 08:38:42 +05:30
|
|
|
const char *pkgver;
|
|
|
|
char *pkgname;
|
|
|
|
|
|
|
|
/* match by pkgpattern in pkgver */
|
|
|
|
if ((pkgname = xbps_pkgpattern_name(p)) == NULL) {
|
2013-08-29 15:21:42 +05:30
|
|
|
if ((pkgname = xbps_pkg_name(p))) {
|
|
|
|
free(pkgname);
|
2013-03-05 08:38:42 +05:30
|
|
|
return match_pkg_by_pkgver(repod, p);
|
2013-08-29 15:21:42 +05:30
|
|
|
}
|
2013-03-05 08:38:42 +05:30
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
d = xbps_dictionary_get(repod, pkgname);
|
2013-03-05 08:38:42 +05:30
|
|
|
if (d) {
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_get_cstring_nocopy(d, "pkgver", &pkgver);
|
2013-03-05 08:38:42 +05:30
|
|
|
assert(pkgver);
|
2014-05-17 16:06:02 +05:30
|
|
|
if (!xbps_pkgpattern_match(pkgver, p)) {
|
2013-03-05 08:38:42 +05:30
|
|
|
d = NULL;
|
2014-05-17 16:06:02 +05:30
|
|
|
errno = ENOENT;
|
|
|
|
}
|
2013-03-05 08:38:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
free(pkgname);
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char HIDDEN *
|
2014-12-31 13:21:45 +05:30
|
|
|
vpkg_user_conf(struct xbps_handle *xhp, const char *vpkg)
|
2013-03-05 08:38:42 +05:30
|
|
|
{
|
2014-02-25 21:12:52 +05:30
|
|
|
xbps_object_t obj;
|
|
|
|
xbps_object_iterator_t iter;
|
2014-12-31 13:21:45 +05:30
|
|
|
const char *pkg = NULL;
|
2014-02-25 23:13:33 +05:30
|
|
|
bool found = false;
|
2013-03-05 08:38:42 +05:30
|
|
|
|
2014-12-31 13:21:45 +05:30
|
|
|
/* init pkgdb just in case to detect vpkgs */
|
|
|
|
(void)xbps_pkgdb_init(xhp);
|
|
|
|
|
2014-02-25 21:12:52 +05:30
|
|
|
if (xhp->vpkgd == NULL)
|
2013-03-05 08:38:42 +05:30
|
|
|
return NULL;
|
|
|
|
|
2014-02-25 21:12:52 +05:30
|
|
|
iter = xbps_dictionary_iterator(xhp->vpkgd);
|
|
|
|
assert(iter);
|
2013-03-05 08:38:42 +05:30
|
|
|
|
2014-02-25 21:12:52 +05:30
|
|
|
while ((obj = xbps_object_iterator_next(iter))) {
|
2014-12-31 13:21:45 +05:30
|
|
|
xbps_string_t rpkg;
|
2015-01-05 20:34:22 +05:30
|
|
|
char *dpkgname, *vpkgname;
|
2014-12-31 13:21:45 +05:30
|
|
|
const char *vpkg_conf;
|
|
|
|
|
|
|
|
vpkg_conf = xbps_dictionary_keysym_cstring_nocopy(obj);
|
2014-02-25 21:12:52 +05:30
|
|
|
rpkg = xbps_dictionary_get_keysym(xhp->vpkgd, obj);
|
|
|
|
pkg = xbps_string_cstring_nocopy(rpkg);
|
|
|
|
|
2015-01-05 20:34:22 +05:30
|
|
|
if (xbps_pkg_version(vpkg_conf)) {
|
|
|
|
vpkgname = xbps_pkg_name(vpkg_conf);
|
|
|
|
assert(vpkgname);
|
2014-02-25 21:12:52 +05:30
|
|
|
} else {
|
2015-01-05 20:34:22 +05:30
|
|
|
vpkgname = strdup(vpkg_conf);
|
|
|
|
assert(vpkgname);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (xbps_pkgpattern_version(vpkg)) {
|
|
|
|
char *vpkgver;
|
|
|
|
|
2014-12-31 13:21:45 +05:30
|
|
|
if (xbps_pkg_version(vpkg_conf)) {
|
2015-01-05 20:34:22 +05:30
|
|
|
if (!xbps_pkgpattern_match(vpkg_conf, vpkg)) {
|
2014-12-31 13:21:45 +05:30
|
|
|
free(vpkgname);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else {
|
2015-01-05 20:34:22 +05:30
|
|
|
vpkgver = xbps_xasprintf("%s-999999_1", vpkg_conf);
|
|
|
|
if (!xbps_pkgpattern_match(vpkgver, vpkg)) {
|
|
|
|
free(vpkgver);
|
|
|
|
free(vpkgname);
|
2014-12-31 13:21:45 +05:30
|
|
|
continue;
|
|
|
|
}
|
2015-01-05 20:34:22 +05:30
|
|
|
free(vpkgver);
|
|
|
|
}
|
|
|
|
} else if (xbps_pkg_version(vpkg)) {
|
|
|
|
dpkgname = xbps_pkg_name(vpkg);
|
|
|
|
assert(dpkgname);
|
|
|
|
if (strcmp(dpkgname, vpkgname)) {
|
|
|
|
free(dpkgname);
|
|
|
|
free(vpkgname);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
free(dpkgname);
|
|
|
|
} else {
|
|
|
|
if (strcmp(vpkg, vpkgname)) {
|
|
|
|
free(vpkgname);
|
|
|
|
continue;
|
2013-03-05 08:38:42 +05:30
|
|
|
}
|
|
|
|
}
|
2015-01-05 20:34:22 +05:30
|
|
|
free(vpkgname);
|
2014-02-25 23:13:33 +05:30
|
|
|
found = true;
|
2014-02-25 21:12:52 +05:30
|
|
|
break;
|
2013-03-05 08:38:42 +05:30
|
|
|
}
|
2014-02-25 21:12:52 +05:30
|
|
|
xbps_object_iterator_release(iter);
|
|
|
|
|
2014-02-25 23:13:33 +05:30
|
|
|
return found ? pkg : NULL;
|
2013-03-05 08:38:42 +05:30
|
|
|
}
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t
|
2013-03-05 08:38:42 +05:30
|
|
|
xbps_find_virtualpkg_in_dict(struct xbps_handle *xhp,
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t d,
|
2013-03-05 08:38:42 +05:30
|
|
|
const char *pkg)
|
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_t obj;
|
|
|
|
xbps_object_iterator_t iter;
|
|
|
|
xbps_dictionary_t pkgd = NULL;
|
2013-03-05 08:38:42 +05:30
|
|
|
const char *vpkg;
|
|
|
|
|
|
|
|
/* Try matching vpkg from configuration files */
|
2014-12-31 13:21:45 +05:30
|
|
|
vpkg = vpkg_user_conf(xhp, pkg);
|
2013-03-05 08:38:42 +05:30
|
|
|
if (vpkg != NULL) {
|
|
|
|
if (xbps_pkgpattern_version(vpkg))
|
|
|
|
pkgd = match_pkg_by_pattern(d, vpkg);
|
|
|
|
else if (xbps_pkg_version(vpkg))
|
|
|
|
pkgd = match_pkg_by_pkgver(d, vpkg);
|
|
|
|
else
|
2013-06-20 13:56:12 +05:30
|
|
|
pkgd = xbps_dictionary_get(d, vpkg);
|
2013-03-05 08:38:42 +05:30
|
|
|
|
2013-08-29 15:21:42 +05:30
|
|
|
if (pkgd)
|
|
|
|
return pkgd;
|
2013-03-05 08:38:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* ... otherwise match the first one in dictionary */
|
2013-06-20 13:56:12 +05:30
|
|
|
iter = xbps_dictionary_iterator(d);
|
2013-03-05 08:38:42 +05:30
|
|
|
assert(iter);
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
while ((obj = xbps_object_iterator_next(iter))) {
|
|
|
|
pkgd = xbps_dictionary_get_keysym(d, obj);
|
2014-04-20 20:24:50 +05:30
|
|
|
if (xbps_match_virtual_pkg_in_dict(pkgd, pkg)) {
|
2013-08-29 15:21:42 +05:30
|
|
|
xbps_object_iterator_release(iter);
|
|
|
|
return pkgd;
|
2013-03-05 08:38:42 +05:30
|
|
|
}
|
|
|
|
}
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_iterator_release(iter);
|
2013-03-05 08:38:42 +05:30
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t
|
|
|
|
xbps_find_pkg_in_dict(xbps_dictionary_t d, const char *pkg)
|
2013-03-05 08:38:42 +05:30
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t pkgd = NULL;
|
2013-03-05 08:38:42 +05:30
|
|
|
|
|
|
|
if (xbps_pkgpattern_version(pkg))
|
|
|
|
pkgd = match_pkg_by_pattern(d, pkg);
|
|
|
|
else if (xbps_pkg_version(pkg))
|
|
|
|
pkgd = match_pkg_by_pkgver(d, pkg);
|
|
|
|
else
|
2013-06-20 13:56:12 +05:30
|
|
|
pkgd = xbps_dictionary_get(d, pkg);
|
2013-03-05 08:38:42 +05:30
|
|
|
|
|
|
|
return pkgd;
|
|
|
|
}
|