2009-08-17 22:37:20 +05:30
|
|
|
/*-
|
2020-04-29 17:42:10 +05:30
|
|
|
* Copyright (c) 2009-2015 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.
|
2009-08-17 22:37:20 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#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-11-24 16:20:53 +05:30
|
|
|
* If the \a XBPS_FLAG_FORCE_CONFIGURE is set through xbps_init() in the flags
|
2013-03-05 08:38:42 +05:30
|
|
|
member, the package (or packages) will be reconfigured even if its
|
2011-02-21 22:12:47 +05:30
|
|
|
* state is XBPS_PKG_STATE_INSTALLED.
|
2010-01-21 07:40:19 +05:30
|
|
|
*/
|
2011-12-23 12:46:25 +05:30
|
|
|
int
|
2014-12-09 17:40:48 +05:30
|
|
|
xbps_configure_packages(struct xbps_handle *xhp, xbps_array_t ignpkgs)
|
2011-12-23 12:46:25 +05:30
|
|
|
{
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_t pkgd;
|
|
|
|
xbps_object_t obj;
|
|
|
|
xbps_object_iterator_t iter;
|
2013-03-05 08:38:42 +05:30
|
|
|
const char *pkgver;
|
2012-01-04 22:11:36 +05:30
|
|
|
int rv;
|
|
|
|
|
2012-02-29 01:46:41 +05:30
|
|
|
if ((rv = xbps_pkgdb_init(xhp)) != 0)
|
|
|
|
return rv;
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
iter = xbps_dictionary_iterator(xhp->pkgdb);
|
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))) {
|
|
|
|
pkgd = xbps_dictionary_get_keysym(xhp->pkgdb, obj);
|
2015-10-31 19:33:26 +05:30
|
|
|
if (!xbps_dictionary_get_cstring_nocopy(pkgd, "pkgver", &pkgver))
|
|
|
|
continue;
|
2014-12-09 17:40:48 +05:30
|
|
|
if (xbps_array_count(ignpkgs)) {
|
|
|
|
if ((xbps_match_string_in_array(ignpkgs, pkgver)) ||
|
|
|
|
(xbps_match_pkgver_in_array(ignpkgs, pkgver))) {
|
|
|
|
xbps_dbg_printf(xhp, "%s: ignoring pkg %s\n",
|
|
|
|
__func__, pkgver);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2014-03-04 19:07:10 +05:30
|
|
|
rv = xbps_configure_pkg(xhp, pkgver, true, false);
|
2012-12-17 15:57:10 +05:30
|
|
|
if (rv != 0) {
|
|
|
|
xbps_dbg_printf(xhp, "%s: failed to configure %s: %s\n",
|
2013-03-05 08:38:42 +05:30
|
|
|
__func__, pkgver, strerror(rv));
|
2012-02-29 01:46:41 +05:30
|
|
|
break;
|
2012-12-17 15:57:10 +05:30
|
|
|
}
|
2012-02-29 01:46:41 +05:30
|
|
|
}
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_iterator_release(iter);
|
2012-11-30 14:19:09 +05:30
|
|
|
|
2012-01-04 22:11:36 +05:30
|
|
|
return rv;
|
2009-08-21 15:01:26 +05:30
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
int
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_configure_pkg(struct xbps_handle *xhp,
|
2013-03-05 08:38:42 +05:30
|
|
|
const char *pkgver,
|
2010-11-19 18:10:13 +05:30
|
|
|
bool check_state,
|
2014-03-04 19:07:10 +05:30
|
|
|
bool update)
|
2009-08-17 22:37:20 +05:30
|
|
|
{
|
2014-09-11 03:42:12 +05:30
|
|
|
xbps_dictionary_t pkgd;
|
2020-02-09 00:01:29 +05:30
|
|
|
const char *p;
|
|
|
|
char pkgname[XBPS_NAME_SIZE];
|
2011-02-21 22:12:47 +05:30
|
|
|
int rv = 0;
|
2009-08-17 22:37:20 +05:30
|
|
|
pkg_state_t state = 0;
|
2015-06-28 08:44:02 +05:30
|
|
|
mode_t myumask;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2013-03-05 08:38:42 +05:30
|
|
|
assert(pkgver != NULL);
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2020-02-09 00:01:29 +05:30
|
|
|
if (!xbps_pkg_name(pkgname, sizeof(pkgname), pkgver)) {
|
|
|
|
p = pkgver;
|
|
|
|
} else {
|
|
|
|
p = pkgname;
|
2014-03-14 01:58:31 +05:30
|
|
|
}
|
2020-02-09 00:01:29 +05:30
|
|
|
|
|
|
|
pkgd = xbps_pkgdb_get_pkg(xhp, p);
|
2014-03-14 01:58:31 +05:30
|
|
|
if (pkgd == NULL) {
|
|
|
|
xbps_dbg_printf(xhp, "[configure] cannot find %s (%s) "
|
2020-02-09 00:01:29 +05:30
|
|
|
"in pkgdb\n", p, pkgver);
|
2012-04-10 13:32:27 +05:30
|
|
|
return ENOENT;
|
2014-03-14 01:58:31 +05:30
|
|
|
}
|
2012-04-10 13:32:27 +05:30
|
|
|
|
2012-10-26 13:54:26 +05:30
|
|
|
rv = xbps_pkg_state_dictionary(pkgd, &state);
|
2013-03-05 08:38:42 +05:30
|
|
|
xbps_dbg_printf(xhp, "%s: state %d rv %d\n", pkgver, state, rv);
|
2012-10-26 13:54:26 +05:30
|
|
|
if (rv != 0) {
|
|
|
|
xbps_dbg_printf(xhp, "%s: [configure] failed to get "
|
2013-03-05 08:38:42 +05:30
|
|
|
"pkg state: %s\n", pkgver, strerror(rv));
|
2012-10-26 13:54:26 +05:30
|
|
|
return EINVAL;
|
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2012-10-26 13:54:26 +05:30
|
|
|
if (check_state) {
|
2009-08-21 15:01:26 +05:30
|
|
|
if (state == XBPS_PKG_STATE_INSTALLED) {
|
2014-03-14 01:58:31 +05:30
|
|
|
if ((xhp->flags & XBPS_FLAG_FORCE_CONFIGURE) == 0) {
|
2009-08-21 15:01:26 +05:30
|
|
|
return 0;
|
2014-03-14 01:58:31 +05:30
|
|
|
}
|
|
|
|
} else if (state != XBPS_PKG_STATE_UNPACKED) {
|
2009-08-21 15:01:26 +05:30
|
|
|
return EINVAL;
|
2014-03-14 01:58:31 +05:30
|
|
|
}
|
2009-08-25 09:33:02 +05:30
|
|
|
}
|
2012-10-26 13:54:26 +05:30
|
|
|
|
2015-06-28 08:44:02 +05:30
|
|
|
myumask = umask(022);
|
|
|
|
|
2013-03-05 08:38:42 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_CONFIGURE, 0, pkgver, NULL);
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2014-09-11 03:42:12 +05:30
|
|
|
rv = xbps_pkg_exec_script(xhp, pkgd, "install-script", "post", update);
|
2012-11-16 21:25:35 +05:30
|
|
|
if (rv != 0) {
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_CONFIGURE_FAIL,
|
2013-03-05 08:38:42 +05:30
|
|
|
errno, pkgver,
|
2012-11-16 21:25:35 +05:30
|
|
|
"%s: [configure] INSTALL script failed to execute "
|
|
|
|
"the post ACTION: %s", pkgver, strerror(rv));
|
2015-06-28 08:44:02 +05:30
|
|
|
umask(myumask);
|
2012-11-16 21:25:35 +05:30
|
|
|
return rv;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
2012-12-17 15:57:10 +05:30
|
|
|
rv = xbps_set_pkg_state_dictionary(pkgd, XBPS_PKG_STATE_INSTALLED);
|
2011-11-24 15:53:08 +05:30
|
|
|
if (rv != 0) {
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_CONFIGURE_FAIL, rv,
|
2013-03-05 08:38:42 +05:30
|
|
|
pkgver, "%s: [configure] failed to set state to installed: %s",
|
2011-11-24 15:53:08 +05:30
|
|
|
pkgver, strerror(rv));
|
2015-06-28 08:44:02 +05:30
|
|
|
umask(myumask);
|
2013-03-07 13:54:04 +05:30
|
|
|
return rv;
|
2011-11-11 14:11:48 +05:30
|
|
|
}
|
2013-03-07 13:54:04 +05:30
|
|
|
if (rv == 0)
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_CONFIGURE_DONE, 0, pkgver, NULL);
|
|
|
|
|
2015-06-28 08:44:02 +05:30
|
|
|
umask(myumask);
|
2014-07-27 14:54:49 +05:30
|
|
|
/* show install-msg if exists */
|
2014-09-11 03:42:12 +05:30
|
|
|
return xbps_cb_message(xhp, pkgd, "install-msg");
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|