2009-08-17 22:37:20 +05:30
|
|
|
/*-
|
|
|
|
* Copyright (c) 2009 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>
|
|
|
|
|
|
|
|
#include <xbps_api.h>
|
|
|
|
|
|
|
|
static prop_dictionary_t pkg_props;
|
|
|
|
static bool pkg_props_initialized;
|
|
|
|
|
|
|
|
static int set_pkg_state(prop_dictionary_t, const char *);
|
|
|
|
|
|
|
|
static int
|
|
|
|
create_pkg_props_dictionary(void)
|
|
|
|
{
|
|
|
|
prop_array_t unsorted, missing;
|
|
|
|
int rv = 0;
|
|
|
|
|
|
|
|
if (pkg_props_initialized)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
pkg_props = prop_dictionary_create();
|
|
|
|
if (pkg_props == NULL)
|
|
|
|
return ENOMEM;
|
|
|
|
|
|
|
|
missing = prop_array_create();
|
|
|
|
if (missing == NULL) {
|
|
|
|
rv = ENOMEM;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsorted = prop_array_create();
|
|
|
|
if (unsorted == NULL) {
|
|
|
|
rv = ENOMEM;
|
|
|
|
goto fail2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!xbps_add_obj_to_dict(pkg_props, missing, "missing_deps")) {
|
|
|
|
rv = EINVAL;
|
|
|
|
goto fail3;
|
|
|
|
}
|
|
|
|
if (!xbps_add_obj_to_dict(pkg_props, unsorted, "unsorted_deps")) {
|
|
|
|
rv = EINVAL;
|
|
|
|
goto fail3;
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_props_initialized = true;
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
fail3:
|
|
|
|
prop_object_release(unsorted);
|
|
|
|
fail2:
|
|
|
|
prop_object_release(missing);
|
|
|
|
fail:
|
|
|
|
prop_object_release(pkg_props);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
prop_dictionary_t SYMEXPORT
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_get_pkg_props(void)
|
|
|
|
{
|
|
|
|
if (pkg_props_initialized == false)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return pkg_props;
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
int SYMEXPORT
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_find_new_packages(void)
|
|
|
|
{
|
|
|
|
prop_dictionary_t dict;
|
|
|
|
prop_object_t obj;
|
|
|
|
prop_object_iterator_t iter;
|
|
|
|
const char *pkgname;
|
|
|
|
int rv = 0;
|
2009-10-17 09:48:20 +05:30
|
|
|
bool newpkg_found = false;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Prepare dictionary with all registered packages.
|
|
|
|
*/
|
2009-11-26 07:52:50 +05:30
|
|
|
dict = xbps_regpkgs_dictionary_init();
|
2009-08-17 22:37:20 +05:30
|
|
|
if (dict == NULL)
|
|
|
|
return ENOENT;
|
|
|
|
|
|
|
|
/*
|
2009-11-26 07:52:50 +05:30
|
|
|
* Prepare simpleq with all registered repositories.
|
2009-08-17 22:37:20 +05:30
|
|
|
*/
|
2009-11-26 07:52:50 +05:30
|
|
|
if ((rv = xbps_repository_pool_init()) != 0)
|
|
|
|
goto out;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
iter = xbps_get_array_iter_from_dict(dict, "packages");
|
2009-11-26 07:52:50 +05:30
|
|
|
if (iter == NULL) {
|
|
|
|
rv = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Find out if there is a newer version for all currently
|
|
|
|
* installed packages.
|
|
|
|
*/
|
|
|
|
while ((obj = prop_object_iterator_next(iter)) != NULL) {
|
2009-11-23 15:16:51 +05:30
|
|
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
|
|
|
"pkgname", &pkgname)) {
|
|
|
|
rv = errno;
|
|
|
|
break;
|
|
|
|
}
|
2009-10-16 19:01:57 +05:30
|
|
|
rv = xbps_find_new_pkg(pkgname, obj);
|
2009-10-17 09:48:20 +05:30
|
|
|
if (rv == ENOENT)
|
|
|
|
continue;
|
|
|
|
else if (rv == EEXIST) {
|
2009-10-16 19:16:54 +05:30
|
|
|
rv = 0;
|
2009-10-16 19:01:57 +05:30
|
|
|
continue;
|
2009-11-21 11:42:42 +05:30
|
|
|
} else if (rv != 0)
|
|
|
|
break;
|
|
|
|
|
2009-10-17 09:48:20 +05:30
|
|
|
newpkg_found = true;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
prop_object_iterator_release(iter);
|
|
|
|
|
2009-10-17 09:48:20 +05:30
|
|
|
if (rv != ENOENT && !newpkg_found)
|
|
|
|
rv = ENOPKG;
|
2009-11-26 07:52:50 +05:30
|
|
|
out:
|
|
|
|
xbps_repository_pool_release();
|
|
|
|
xbps_regpkgs_dictionary_release();
|
2009-10-17 09:48:20 +05:30
|
|
|
|
2009-08-17 22:37:20 +05:30
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
int SYMEXPORT
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_find_new_pkg(const char *pkgname, prop_dictionary_t instpkg)
|
|
|
|
{
|
|
|
|
prop_dictionary_t pkgrd = NULL;
|
|
|
|
prop_array_t unsorted;
|
|
|
|
struct repository_data *rdata;
|
2009-10-27 06:16:00 +05:30
|
|
|
const char *repover, *instver;
|
2009-08-17 22:37:20 +05:30
|
|
|
int rv = 0;
|
2009-10-16 19:01:57 +05:30
|
|
|
bool newpkg_found = false;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
assert(pkgname != NULL);
|
|
|
|
assert(instpkg != NULL);
|
|
|
|
|
2009-10-16 20:34:35 +05:30
|
|
|
/*
|
2009-11-26 07:52:50 +05:30
|
|
|
* Prepare repository pool queue.
|
2009-10-16 20:34:35 +05:30
|
|
|
*/
|
2009-11-26 07:52:50 +05:30
|
|
|
if ((rv = xbps_repository_pool_init()) != 0)
|
2009-10-16 20:34:35 +05:30
|
|
|
return rv;
|
|
|
|
|
2009-08-17 22:37:20 +05:30
|
|
|
SIMPLEQ_FOREACH(rdata, &repodata_queue, chain) {
|
|
|
|
/*
|
|
|
|
* Get the package dictionary from current repository.
|
|
|
|
* If it's not there, pass to the next repository.
|
|
|
|
*/
|
|
|
|
pkgrd = xbps_find_pkg_in_dict(rdata->rd_repod,
|
|
|
|
"packages", pkgname);
|
2009-11-26 07:52:50 +05:30
|
|
|
if (pkgrd == NULL) {
|
|
|
|
if (errno && errno != ENOENT) {
|
|
|
|
rv = errno;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
DPRINTF(("Package %s not found in repo %s.\n",
|
|
|
|
pkgname, rdata->rd_uri));
|
|
|
|
} else if (pkgrd != NULL) {
|
2009-08-17 22:37:20 +05:30
|
|
|
/*
|
2009-10-16 19:01:57 +05:30
|
|
|
* Check if version in repository is greater than
|
|
|
|
* the version currently installed.
|
2009-08-17 22:37:20 +05:30
|
|
|
*/
|
2009-11-23 15:16:51 +05:30
|
|
|
if (!prop_dictionary_get_cstring_nocopy(instpkg,
|
|
|
|
"version", &instver)) {
|
|
|
|
rv = errno;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!prop_dictionary_get_cstring_nocopy(pkgrd,
|
|
|
|
"version", &repover)) {
|
|
|
|
rv = errno;
|
|
|
|
break;
|
|
|
|
}
|
2009-10-16 19:01:57 +05:30
|
|
|
if (xbps_cmpver(repover, instver) > 0) {
|
2009-11-21 11:42:42 +05:30
|
|
|
DPRINTF(("Found %s-%s in repo %s.\n",
|
|
|
|
pkgname, repover, rdata->rd_uri));
|
2009-10-16 19:01:57 +05:30
|
|
|
newpkg_found = true;
|
|
|
|
break;
|
|
|
|
}
|
2009-11-21 11:42:42 +05:30
|
|
|
DPRINTF(("Skipping %s-%s in repo %s.\n",
|
|
|
|
pkgname, repover, rdata->rd_uri));
|
2009-11-23 02:22:15 +05:30
|
|
|
continue;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
}
|
2009-11-26 07:52:50 +05:30
|
|
|
if (!newpkg_found) {
|
|
|
|
rv = EEXIST;
|
|
|
|
goto out;
|
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2009-11-26 07:52:50 +05:30
|
|
|
if (pkgrd == NULL) {
|
|
|
|
rv = ENOENT;
|
|
|
|
goto out;
|
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
/*
|
|
|
|
* Create master pkg dictionary.
|
|
|
|
*/
|
|
|
|
if ((rv = create_pkg_props_dictionary()) != 0)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set repository in pkg dictionary.
|
|
|
|
*/
|
2009-11-23 15:16:51 +05:30
|
|
|
if (!prop_dictionary_set_cstring(pkgrd, "repository", rdata->rd_uri)) {
|
|
|
|
rv = errno;
|
|
|
|
goto out;
|
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Construct the dependency chain for this package.
|
|
|
|
*/
|
|
|
|
if ((rv = xbps_find_deps_in_pkg(pkg_props, pkgrd)) != 0)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add required package dictionary into the packages
|
|
|
|
* dictionary.
|
|
|
|
*/
|
|
|
|
unsorted = prop_dictionary_get(pkg_props, "unsorted_deps");
|
|
|
|
if (unsorted == NULL) {
|
|
|
|
rv = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Always set "not-installed" package state. Will be overwritten
|
|
|
|
* to its correct state later.
|
|
|
|
*/
|
|
|
|
if ((rv = set_pkg_state(pkgrd, pkgname)) != 0)
|
|
|
|
goto out;
|
|
|
|
|
2009-11-23 15:16:51 +05:30
|
|
|
if (!prop_dictionary_set_cstring_nocopy(pkgrd,
|
|
|
|
"trans-action", "update")) {
|
|
|
|
rv = errno;
|
|
|
|
goto out;
|
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
if (!prop_array_add(unsorted, pkgrd))
|
|
|
|
rv = errno;
|
|
|
|
|
|
|
|
out:
|
2009-11-26 07:52:50 +05:30
|
|
|
xbps_repository_pool_release();
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
set_pkg_state(prop_dictionary_t pkgd, const char *pkgname)
|
|
|
|
{
|
|
|
|
pkg_state_t state = 0;
|
|
|
|
int rv = 0;
|
|
|
|
|
|
|
|
rv = xbps_set_pkg_state_dictionary(pkgd, XBPS_PKG_STATE_NOT_INSTALLED);
|
|
|
|
if (rv != 0)
|
|
|
|
return rv;
|
|
|
|
/*
|
|
|
|
* Overwrite package state in dictionary if it was unpacked
|
|
|
|
* previously.
|
|
|
|
*/
|
|
|
|
rv = xbps_get_pkg_state_installed(pkgname, &state);
|
|
|
|
if (rv == 0) {
|
|
|
|
if ((rv = xbps_set_pkg_state_dictionary(pkgd, state)) != 0)
|
|
|
|
return rv;
|
|
|
|
} else if (rv == ENOENT)
|
|
|
|
rv = 0;
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2009-10-27 06:16:00 +05:30
|
|
|
int SYMEXPORT
|
2009-08-17 22:37:20 +05:30
|
|
|
xbps_prepare_pkg(const char *pkgname)
|
|
|
|
{
|
2009-11-26 07:52:50 +05:30
|
|
|
prop_dictionary_t origin_pkgrd = NULL, pkgrd = NULL;
|
2009-08-17 22:37:20 +05:30
|
|
|
prop_array_t pkgs_array;
|
|
|
|
struct repository_data *rdata;
|
|
|
|
int rv = 0;
|
|
|
|
|
|
|
|
assert(pkgname != NULL);
|
|
|
|
|
2009-11-26 07:52:50 +05:30
|
|
|
if ((rv = xbps_repository_pool_init()) != 0)
|
2009-08-17 22:37:20 +05:30
|
|
|
return rv;
|
|
|
|
|
|
|
|
SIMPLEQ_FOREACH(rdata, &repodata_queue, chain) {
|
|
|
|
/*
|
|
|
|
* Get the package dictionary from current repository.
|
|
|
|
* If it's not there, pass to the next repository.
|
|
|
|
*/
|
|
|
|
pkgrd = xbps_find_pkg_in_dict(rdata->rd_repod,
|
|
|
|
"packages", pkgname);
|
2009-11-26 07:52:50 +05:30
|
|
|
if (pkgrd == NULL) {
|
|
|
|
if (errno && errno != ENOENT) {
|
|
|
|
rv = errno;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
} else if (pkgrd != NULL)
|
2009-08-17 22:37:20 +05:30
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (pkgrd == NULL) {
|
|
|
|
rv = EAGAIN;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create master pkg dictionary.
|
|
|
|
*/
|
|
|
|
if ((rv = create_pkg_props_dictionary()) != 0)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set repository in pkg dictionary.
|
|
|
|
*/
|
2009-11-23 15:16:51 +05:30
|
|
|
if (!prop_dictionary_set_cstring(pkgrd, "repository", rdata->rd_uri)) {
|
|
|
|
rv = errno;
|
|
|
|
goto out;
|
|
|
|
}
|
2009-11-26 07:52:50 +05:30
|
|
|
origin_pkgrd = prop_dictionary_copy(pkgrd);
|
|
|
|
|
2009-11-23 15:16:51 +05:30
|
|
|
if (!prop_dictionary_set_cstring(pkg_props, "origin", pkgname)) {
|
|
|
|
rv = errno;
|
|
|
|
goto out;
|
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
/*
|
|
|
|
* Check if this package needs dependencies.
|
|
|
|
*/
|
|
|
|
if (xbps_pkg_has_rundeps(pkgrd)) {
|
|
|
|
/*
|
|
|
|
* Construct the dependency chain for this package.
|
|
|
|
*/
|
|
|
|
if ((rv = xbps_find_deps_in_pkg(pkg_props, pkgrd)) != 0)
|
|
|
|
goto out;
|
|
|
|
/*
|
|
|
|
* Sort the dependency chain for this package.
|
|
|
|
*/
|
|
|
|
if ((rv = xbps_sort_pkg_deps(pkg_props)) != 0)
|
|
|
|
goto out;
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Package has no deps, so we have to create the
|
|
|
|
* "packages" array.
|
|
|
|
*/
|
|
|
|
pkgs_array = prop_array_create();
|
|
|
|
if (pkgs_array == NULL) {
|
|
|
|
rv = errno;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (!prop_dictionary_set(pkg_props, "packages",
|
|
|
|
pkgs_array)) {
|
|
|
|
rv = errno;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add required package dictionary into the packages
|
|
|
|
* dictionary.
|
|
|
|
*/
|
|
|
|
pkgs_array = prop_dictionary_get(pkg_props, "packages");
|
|
|
|
if (pkgs_array == NULL ||
|
|
|
|
prop_object_type(pkgs_array) != PROP_TYPE_ARRAY) {
|
|
|
|
rv = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
2009-11-26 07:52:50 +05:30
|
|
|
if ((rv = set_pkg_state(origin_pkgrd, pkgname)) != 0)
|
2009-08-17 22:37:20 +05:30
|
|
|
goto out;
|
|
|
|
|
2009-11-26 07:52:50 +05:30
|
|
|
if (!prop_dictionary_set_cstring_nocopy(origin_pkgrd,
|
2009-11-23 15:16:51 +05:30
|
|
|
"trans-action", "install")) {
|
|
|
|
rv = errno;
|
|
|
|
goto out;
|
|
|
|
}
|
2009-11-26 07:52:50 +05:30
|
|
|
if (!prop_array_add(pkgs_array, origin_pkgrd))
|
2009-08-17 22:37:20 +05:30
|
|
|
rv = errno;
|
|
|
|
|
|
|
|
out:
|
2009-11-26 07:52:50 +05:30
|
|
|
if (origin_pkgrd)
|
|
|
|
prop_object_release(origin_pkgrd);
|
|
|
|
|
|
|
|
xbps_repository_pool_release();
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|