2009-08-17 22:37:20 +05:30
|
|
|
/*-
|
2011-01-22 17:10:19 +05:30
|
|
|
* Copyright (c) 2009-2011 Juan Romero Pardines.
|
2009-08-17 22:37:20 +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 <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2010-11-13 07:48:58 +05:30
|
|
|
#include "xbps_api_impl.h"
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
/**
|
2011-01-19 05:01:22 +05:30
|
|
|
* @file lib/package_configure.c
|
2010-01-21 07:40:19 +05:30
|
|
|
* @brief Package configuration routines
|
|
|
|
* @defgroup configure Package configuration functions
|
|
|
|
*
|
2010-01-23 07:07:19 +05:30
|
|
|
* Configure a package or all packages. Only packages in XBPS_PKG_STATE_UNPACKED
|
2010-01-21 07:40:19 +05:30
|
|
|
* state will be processed (unless overriden). Package configuration steps:
|
2010-01-23 04:29:55 +05:30
|
|
|
* - Its <b>post-install</b> target in the INSTALL script will be executed.
|
2010-01-23 07:07:19 +05:30
|
|
|
* - Its state will be changed to XBPS_PKG_STATE_INSTALLED if previous step
|
2010-01-23 04:29:55 +05:30
|
|
|
* ran successful.
|
2010-01-21 07:40:19 +05:30
|
|
|
*
|
2010-01-23 04:29:55 +05:30
|
|
|
* @note
|
2011-02-21 22:12:47 +05:30
|
|
|
* If the \a XBPS_FLAG_FORCE is set through xbps_init() in the flags
|
|
|
|
* member, the package (or packages) will be reconfigured even if its
|
|
|
|
* state is XBPS_PKG_STATE_INSTALLED.
|
2010-01-21 07:40:19 +05:30
|
|
|
*/
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
int
|
2011-06-01 13:07:32 +05:30
|
|
|
xbps_configure_packages(void)
|
2009-08-21 15:01:26 +05:30
|
|
|
{
|
2011-07-27 20:43:54 +05:30
|
|
|
struct xbps_handle *xhp;
|
2009-08-21 15:01:26 +05:30
|
|
|
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;
|
|
|
|
|
2011-06-04 17:07:53 +05:30
|
|
|
xhp = xbps_handle_get();
|
|
|
|
iter = xbps_array_iter_from_dict(xhp->regpkgdb_dictionary, "packages");
|
|
|
|
if (iter == NULL)
|
2009-11-26 07:52:50 +05:30
|
|
|
return errno;
|
2009-08-21 15:01:26 +05:30
|
|
|
|
|
|
|
while ((obj = prop_object_iterator_next(iter)) != NULL) {
|
2010-11-06 11:14:00 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "pkgname", &pkgname);
|
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "version", &version);
|
|
|
|
rv = xbps_configure_pkg(pkgname, version, true, false);
|
|
|
|
if (rv != 0)
|
2009-08-21 15:01:26 +05:30
|
|
|
break;
|
|
|
|
}
|
|
|
|
prop_object_iterator_release(iter);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
int
|
2010-11-19 18:10:13 +05:30
|
|
|
xbps_configure_pkg(const char *pkgname,
|
|
|
|
const char *version,
|
|
|
|
bool check_state,
|
2009-12-09 20:44:35 +05:30
|
|
|
bool update)
|
2009-08-17 22:37:20 +05:30
|
|
|
{
|
2011-07-27 20:43:54 +05:30
|
|
|
struct xbps_handle *xhp;
|
2009-08-17 22:37:20 +05:30
|
|
|
prop_dictionary_t pkgd;
|
2011-02-21 22:12:47 +05:30
|
|
|
const char *lver;
|
2011-02-22 15:39:39 +05:30
|
|
|
char *buf, *pkgver;
|
2011-02-21 22:12:47 +05:30
|
|
|
int rv = 0;
|
2009-08-17 22:37:20 +05:30
|
|
|
pkg_state_t state = 0;
|
|
|
|
|
|
|
|
assert(pkgname != NULL);
|
2011-02-21 22:12:47 +05:30
|
|
|
xhp = xbps_handle_get();
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2009-08-21 15:01:26 +05:30
|
|
|
if (check_state) {
|
2011-06-01 13:07:32 +05:30
|
|
|
rv = xbps_pkg_state_installed(pkgname, &state);
|
2011-10-20 19:43:16 +05:30
|
|
|
if (rv == ENOENT) {
|
|
|
|
/*
|
|
|
|
* package not installed or has been removed
|
|
|
|
* (must be purged) so ignore it.
|
|
|
|
*/
|
|
|
|
return 0;
|
|
|
|
} else if (rv != 0) {
|
|
|
|
xbps_dbg_printf("%s: [configure] failed to get "
|
|
|
|
"pkg state: %s\n", pkgname, strerror(rv));
|
2010-11-19 18:10:13 +05:30
|
|
|
return EINVAL;
|
2011-10-20 19:43:16 +05:30
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2009-08-21 15:01:26 +05:30
|
|
|
if (state == XBPS_PKG_STATE_INSTALLED) {
|
2011-02-21 22:12:47 +05:30
|
|
|
if ((xhp->flags & XBPS_FLAG_FORCE) == 0)
|
2009-08-21 15:01:26 +05:30
|
|
|
return 0;
|
|
|
|
} 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);
|
2010-11-06 11:14:00 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(pkgd, "version", &lver);
|
2009-08-25 09:33:02 +05:30
|
|
|
prop_object_release(pkgd);
|
|
|
|
} else {
|
|
|
|
lver = version;
|
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2011-07-27 20:43:54 +05:30
|
|
|
pkgver = xbps_xasprintf("%s-%s", pkgname, lver);
|
|
|
|
if (pkgver == NULL)
|
|
|
|
return ENOMEM;
|
|
|
|
|
2011-11-11 14:11:48 +05:30
|
|
|
if (xhp->xbps_state_cb) {
|
|
|
|
xhp->xscd->desc = NULL;
|
|
|
|
xhp->xscd->binpkg_fname = NULL;
|
|
|
|
xhp->xscd->repourl = NULL;
|
|
|
|
xhp->xscd->err = 0;
|
|
|
|
xhp->xscd->state = XBPS_STATE_CONFIGURE;
|
|
|
|
xhp->xscd->pkgver = pkgver;
|
|
|
|
xhp->xbps_state_cb(xhp->xscd);
|
2011-07-27 20:43:54 +05:30
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
buf = xbps_xasprintf(".%s/metadata/%s/INSTALL",
|
|
|
|
XBPS_META_PATH, pkgname);
|
2011-07-27 20:43:54 +05:30
|
|
|
if (buf == NULL) {
|
|
|
|
free(pkgver);
|
2010-11-19 18:10:13 +05:30
|
|
|
return ENOMEM;
|
2011-07-27 20:43:54 +05:30
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2011-10-17 16:07:15 +05:30
|
|
|
if (chdir(prop_string_cstring_nocopy(xhp->rootdir)) == -1) {
|
2010-11-19 18:10:13 +05:30
|
|
|
xbps_dbg_printf("%s: [configure] chdir to '%s' returned %s\n",
|
2011-10-17 16:07:15 +05:30
|
|
|
pkgname, prop_string_cstring_nocopy(xhp->rootdir),
|
|
|
|
strerror(errno));
|
2009-11-26 07:52:50 +05:30
|
|
|
free(buf);
|
2011-07-27 20:43:54 +05:30
|
|
|
free(pkgver);
|
2010-11-19 18:10:13 +05:30
|
|
|
return EINVAL;
|
2009-11-26 07:52:50 +05:30
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2010-11-19 18:10:13 +05:30
|
|
|
if (access(buf, X_OK) == 0) {
|
|
|
|
if (xbps_file_exec(buf, "post",
|
|
|
|
pkgname, lver, update ? "yes" : "no", NULL) != 0) {
|
|
|
|
free(buf);
|
2011-07-27 20:43:54 +05:30
|
|
|
free(pkgver);
|
2011-01-22 17:10:19 +05:30
|
|
|
xbps_error_printf("%s: post install script error: %s\n",
|
|
|
|
pkgname, strerror(errno));
|
2010-11-19 18:10:13 +05:30
|
|
|
return errno;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (errno != ENOENT) {
|
|
|
|
free(buf);
|
2011-07-27 20:43:54 +05:30
|
|
|
free(pkgver);
|
2010-11-19 18:10:13 +05:30
|
|
|
return errno;
|
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
free(buf);
|
2011-02-22 15:39:39 +05:30
|
|
|
rv = xbps_set_pkg_state_installed(pkgname, lver, pkgver,
|
|
|
|
XBPS_PKG_STATE_INSTALLED);
|
|
|
|
free(pkgver);
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2011-11-11 14:11:48 +05:30
|
|
|
if (rv != 0 && xhp->xbps_state_cb) {
|
|
|
|
xhp->xscd->pkgver = pkgver;
|
|
|
|
xhp->xscd->err = rv;
|
|
|
|
xhp->xscd->state = XBPS_STATE_CONFIGURE_FAIL;
|
|
|
|
xhp->xbps_state_cb(xhp->xscd);
|
|
|
|
}
|
|
|
|
|
2011-02-22 15:39:39 +05:30
|
|
|
return rv;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|