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 <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
/**
|
|
|
|
* @file lib/configure.c
|
|
|
|
* @brief Package configuration routines
|
|
|
|
* @defgroup configure Package configuration functions
|
|
|
|
*
|
|
|
|
* Configure a package or all packages. Only packages in <b>unpacked</b>
|
|
|
|
* state will be processed (unless overriden). Package configuration steps:
|
|
|
|
*
|
|
|
|
* 1- Its <b>post-install</b> target in the INSTALL script will be executed.
|
|
|
|
*
|
|
|
|
* 2- Its state will be changed to <b>installed</b> if previous step
|
|
|
|
* ran successful.
|
|
|
|
*
|
|
|
|
* If the \a XBPS_FLAG_FORCE is set through xbps_set_flags(), the package
|
|
|
|
* (or packages) will be reconfigured even if its state is <b>installed</b>.
|
|
|
|
*/
|
2009-08-17 22:37:20 +05:30
|
|
|
#include <xbps_api.h>
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
int
|
2009-08-21 15:01:26 +05:30
|
|
|
xbps_configure_all_pkgs(void)
|
|
|
|
{
|
|
|
|
prop_dictionary_t d;
|
|
|
|
prop_object_t obj;
|
|
|
|
prop_object_iterator_t iter;
|
2009-08-25 09:33:02 +05:30
|
|
|
const char *pkgname, *version;
|
2009-08-21 15:01:26 +05:30
|
|
|
int rv = 0;
|
|
|
|
pkg_state_t state = 0;
|
|
|
|
|
2009-11-26 07:52:50 +05:30
|
|
|
if ((d = xbps_regpkgs_dictionary_init()) == NULL)
|
|
|
|
return errno;
|
2009-08-21 15:01:26 +05:30
|
|
|
|
|
|
|
iter = xbps_get_array_iter_from_dict(d, "packages");
|
2009-11-26 07:52:50 +05:30
|
|
|
if (iter == NULL) {
|
|
|
|
rv = errno;
|
|
|
|
goto out;
|
|
|
|
}
|
2009-08-21 15:01:26 +05:30
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
if (!prop_dictionary_get_cstring_nocopy(obj,
|
|
|
|
"version", &version)) {
|
|
|
|
rv = errno;
|
|
|
|
break;
|
|
|
|
}
|
2009-08-21 15:01:26 +05:30
|
|
|
if ((rv = xbps_get_pkg_state_dictionary(obj, &state)) != 0)
|
|
|
|
break;
|
|
|
|
if (state != XBPS_PKG_STATE_UNPACKED)
|
|
|
|
continue;
|
2009-12-09 20:44:35 +05:30
|
|
|
if ((rv = xbps_configure_pkg(pkgname, version,
|
|
|
|
false, false)) != 0)
|
2009-08-21 15:01:26 +05:30
|
|
|
break;
|
|
|
|
}
|
|
|
|
prop_object_iterator_release(iter);
|
2009-11-26 07:52:50 +05:30
|
|
|
out:
|
|
|
|
xbps_regpkgs_dictionary_release();
|
2009-08-21 15:01:26 +05:30
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
int
|
2009-12-09 20:44:35 +05:30
|
|
|
xbps_configure_pkg(const char *pkgname, const char *version, bool check_state,
|
|
|
|
bool update)
|
2009-08-17 22:37:20 +05:30
|
|
|
{
|
|
|
|
prop_dictionary_t pkgd;
|
2009-08-25 09:33:02 +05:30
|
|
|
const char *rootdir, *lver;
|
2009-08-17 22:37:20 +05:30
|
|
|
char *buf;
|
|
|
|
int rv = 0, flags = 0;
|
|
|
|
pkg_state_t state = 0;
|
|
|
|
bool reconfigure = false;
|
|
|
|
|
|
|
|
assert(pkgname != NULL);
|
|
|
|
|
|
|
|
rootdir = xbps_get_rootdir();
|
|
|
|
flags = xbps_get_flags();
|
|
|
|
|
2009-08-21 15:01:26 +05:30
|
|
|
if (check_state) {
|
|
|
|
if ((rv = xbps_get_pkg_state_installed(pkgname, &state)) != 0)
|
|
|
|
return rv;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2009-08-21 15:01:26 +05:30
|
|
|
if (state == XBPS_PKG_STATE_INSTALLED) {
|
|
|
|
if ((flags & XBPS_FLAG_FORCE) == 0)
|
|
|
|
return 0;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2009-08-21 15:01:26 +05:30
|
|
|
reconfigure = true;
|
|
|
|
} else if (state != XBPS_PKG_STATE_UNPACKED)
|
|
|
|
return EINVAL;
|
2009-08-25 09:33:02 +05:30
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
pkgd = xbps_find_pkg_dict_installed(pkgname, false);
|
2009-08-25 09:33:02 +05:30
|
|
|
if (pkgd == NULL)
|
2009-11-26 07:52:50 +05:30
|
|
|
return errno;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2009-11-23 15:16:51 +05:30
|
|
|
if (!prop_dictionary_get_cstring_nocopy(pkgd,
|
|
|
|
"version", &lver)) {
|
|
|
|
prop_object_release(pkgd);
|
|
|
|
return errno;
|
|
|
|
}
|
2009-08-25 09:33:02 +05:30
|
|
|
prop_object_release(pkgd);
|
|
|
|
} else {
|
|
|
|
lver = version;
|
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
printf("%sonfiguring package %s-%s...\n",
|
2009-08-25 09:33:02 +05:30
|
|
|
reconfigure ? "Rec" : "C", pkgname, lver);
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
buf = xbps_xasprintf(".%s/metadata/%s/INSTALL",
|
|
|
|
XBPS_META_PATH, pkgname);
|
|
|
|
if (buf == NULL)
|
|
|
|
return errno;
|
|
|
|
|
2009-08-19 03:09:47 +05:30
|
|
|
if (strcmp(rootdir, "") == 0)
|
|
|
|
rootdir = "/";
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2009-11-26 07:52:50 +05:30
|
|
|
if (chdir(rootdir) == -1) {
|
|
|
|
free(buf);
|
2009-08-19 03:09:47 +05:30
|
|
|
return errno;
|
2009-11-26 07:52:50 +05:30
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2009-08-25 09:35:59 +05:30
|
|
|
if (access(buf, X_OK) == 0) {
|
2009-08-17 22:37:20 +05:30
|
|
|
if ((rv = xbps_file_chdir_exec(rootdir, buf, "post",
|
2009-12-09 20:44:35 +05:30
|
|
|
pkgname, lver, update ? "yes" : "no", NULL)) != 0) {
|
2009-08-17 22:37:20 +05:30
|
|
|
free(buf);
|
2010-01-15 19:49:16 +05:30
|
|
|
fprintf(stderr, "%s: post INSTALL action "
|
|
|
|
"returned: %s\n", pkgname, strerror(errno));
|
2009-08-17 22:37:20 +05:30
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (errno != ENOENT) {
|
|
|
|
free(buf);
|
|
|
|
return errno;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(buf);
|
|
|
|
|
|
|
|
return xbps_set_pkg_state_installed(pkgname, XBPS_PKG_STATE_INSTALLED);
|
|
|
|
}
|