2009-08-17 22:37:20 +05:30
|
|
|
/*-
|
2020-04-29 17:42:10 +05:30
|
|
|
* Copyright (c) 2009-2020 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 <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2010-11-19 18:10:13 +05:30
|
|
|
#include "xbps_api_impl.h"
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
/**
|
2011-01-19 05:01:22 +05:30
|
|
|
* @file lib/package_orphans.c
|
2010-01-21 07:40:19 +05:30
|
|
|
* @brief Package orphans handling routines
|
|
|
|
* @defgroup pkg_orphans Package orphans handling functions
|
2010-01-23 10:59:34 +05:30
|
|
|
*
|
|
|
|
* Functions to find installed package orphans.
|
|
|
|
*
|
|
|
|
* Package orphans were installed automatically by another package,
|
|
|
|
* but currently no other packages are depending on.
|
|
|
|
*
|
|
|
|
* The following image shown below shows the registered packages database
|
2011-01-27 16:49:05 +05:30
|
|
|
* dictionary (the array returned by xbps_find_pkg_orphans() will
|
2010-01-23 10:59:34 +05:30
|
|
|
* contain a package dictionary per orphan found):
|
|
|
|
*
|
2013-09-25 14:45:04 +05:30
|
|
|
* @image html images/xbps_pkgdb_dictionary.png
|
2010-01-23 10:59:34 +05:30
|
|
|
*
|
|
|
|
* Legend:
|
2013-09-25 14:45:04 +05:30
|
|
|
* - <b>Salmon filled box</b>: \a pkgdb plist internalized.
|
2010-01-23 10:59:34 +05:30
|
|
|
* - <b>White filled box</b>: mandatory objects.
|
|
|
|
* - <b>Grey filled box</b>: optional objects.
|
|
|
|
* - <b>Green filled box</b>: possible value set in the object, only one
|
|
|
|
* of them is set.
|
|
|
|
*
|
|
|
|
* Text inside of white boxes are the key associated with the object, its
|
|
|
|
* data type is specified on its edge, i.e array, bool, integer, string,
|
|
|
|
* dictionary.
|
2010-01-21 07:40:19 +05:30
|
|
|
*/
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_array_t
|
2019-06-30 20:03:08 +05:30
|
|
|
xbps_find_pkg_orphans(struct xbps_handle *xhp, xbps_array_t orphans_user)
|
2009-08-17 22:37:20 +05:30
|
|
|
{
|
2020-01-26 12:10:25 +05:30
|
|
|
xbps_array_t array = NULL;
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_object_t obj;
|
|
|
|
xbps_object_iterator_t iter;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2013-03-09 14:26:36 +05:30
|
|
|
if (xbps_pkgdb_init(xhp) != 0)
|
|
|
|
return NULL;
|
2020-01-26 12:10:25 +05:30
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
if ((array = xbps_array_create()) == NULL)
|
2013-03-09 14:26:36 +05:30
|
|
|
return NULL;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2020-01-26 12:10:25 +05:30
|
|
|
if (!orphans_user) {
|
|
|
|
/* automatic mode (xbps-query -O, xbps-remove -o) */
|
|
|
|
iter = xbps_dictionary_iterator(xhp->pkgdb);
|
|
|
|
assert(iter);
|
|
|
|
/*
|
|
|
|
* Iterate on pkgdb until no more orphans are found.
|
|
|
|
*/
|
|
|
|
for (;;) {
|
|
|
|
bool added = false;
|
|
|
|
while ((obj = xbps_object_iterator_next(iter))) {
|
|
|
|
xbps_array_t revdeps;
|
|
|
|
xbps_dictionary_t pkgd;
|
|
|
|
unsigned int cnt = 0, revdepscnt = 0;
|
|
|
|
const char *pkgver = NULL;
|
|
|
|
bool automatic = false;
|
|
|
|
|
|
|
|
pkgd = xbps_dictionary_get_keysym(xhp->pkgdb, obj);
|
|
|
|
if (!xbps_dictionary_get_cstring_nocopy(pkgd, "pkgver", &pkgver)) {
|
|
|
|
/* _XBPS_ALTERNATIVES_ */
|
|
|
|
continue;
|
|
|
|
}
|
2022-12-24 18:16:33 +05:30
|
|
|
xbps_dbg_printf(" %s checking %s\n", __func__, pkgver);
|
2020-01-26 12:10:25 +05:30
|
|
|
xbps_dictionary_get_bool(pkgd, "automatic-install", &automatic);
|
|
|
|
if (!automatic) {
|
2022-12-24 18:16:33 +05:30
|
|
|
xbps_dbg_printf(" %s skipped (!automatic)\n", pkgver);
|
2020-01-26 12:10:25 +05:30
|
|
|
continue;
|
|
|
|
}
|
2020-02-21 13:38:22 +05:30
|
|
|
if (xbps_find_pkg_in_array(array, pkgver, 0)) {
|
2022-12-24 18:16:33 +05:30
|
|
|
xbps_dbg_printf(" %s orphan (queued)\n", pkgver);
|
2020-01-26 12:10:25 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
revdeps = xbps_pkgdb_get_pkg_revdeps(xhp, pkgver);
|
|
|
|
revdepscnt = xbps_array_count(revdeps);
|
|
|
|
|
|
|
|
if (revdepscnt == 0) {
|
|
|
|
added = true;
|
|
|
|
xbps_array_add(array, pkgd);
|
2022-12-24 18:16:33 +05:30
|
|
|
xbps_dbg_printf(" %s orphan (automatic and !revdeps)\n", pkgver);
|
2020-01-26 12:10:25 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* verify all revdeps are seen */
|
|
|
|
for (unsigned int i = 0; i < revdepscnt; i++) {
|
2020-04-23 12:02:54 +05:30
|
|
|
const char *revdepver = NULL;
|
2020-01-26 12:10:25 +05:30
|
|
|
|
|
|
|
xbps_array_get_cstring_nocopy(revdeps, i, &revdepver);
|
2020-02-21 13:38:22 +05:30
|
|
|
if (xbps_find_pkg_in_array(array, revdepver, 0))
|
2020-01-26 12:10:25 +05:30
|
|
|
cnt++;
|
|
|
|
}
|
|
|
|
if (cnt == revdepscnt) {
|
|
|
|
added = true;
|
|
|
|
xbps_array_add(array, pkgd);
|
2022-12-24 18:16:33 +05:30
|
|
|
xbps_dbg_printf(" %s orphan (automatic and all revdeps)\n", pkgver);
|
2020-01-26 12:10:25 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2022-12-24 18:16:33 +05:30
|
|
|
xbps_dbg_printf("orphans pkgdb iter: added %s\n", added ? "true" : "false");
|
2020-01-26 12:10:25 +05:30
|
|
|
xbps_object_iterator_reset(iter);
|
|
|
|
if (!added)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
xbps_object_iterator_release(iter);
|
|
|
|
|
|
|
|
return array;
|
|
|
|
}
|
|
|
|
|
2011-01-30 12:38:34 +05:30
|
|
|
/*
|
2020-01-26 12:10:25 +05:30
|
|
|
* Recursive removal mode (xbps-remove -R).
|
2011-01-30 12:38:34 +05:30
|
|
|
*/
|
2020-01-26 12:10:25 +05:30
|
|
|
for (unsigned int i = 0; i < xbps_array_count(orphans_user); i++) {
|
|
|
|
xbps_dictionary_t pkgd;
|
|
|
|
const char *pkgver = NULL;
|
|
|
|
|
|
|
|
xbps_array_get_cstring_nocopy(orphans_user, i, &pkgver);
|
|
|
|
pkgd = xbps_pkgdb_get_pkg(xhp, pkgver);
|
2013-03-11 16:43:42 +05:30
|
|
|
if (pkgd == NULL)
|
|
|
|
continue;
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_array_add(array, pkgd);
|
2011-01-30 12:38:34 +05:30
|
|
|
}
|
2015-05-06 20:51:13 +05:30
|
|
|
|
2020-01-26 12:10:25 +05:30
|
|
|
for (unsigned int i = 0; i < xbps_array_count(array); i++) {
|
|
|
|
xbps_array_t rdeps;
|
|
|
|
xbps_dictionary_t pkgd;
|
|
|
|
const char *pkgver = NULL;
|
|
|
|
unsigned int cnt = 0, reqbycnt = 0;
|
2011-01-30 12:38:34 +05:30
|
|
|
|
2020-01-26 12:10:25 +05:30
|
|
|
pkgd = xbps_array_get(array, i);
|
|
|
|
xbps_dictionary_get_cstring_nocopy(pkgd, "pkgver", &pkgver);
|
|
|
|
rdeps = xbps_pkgdb_get_pkg_fulldeptree(xhp, pkgver);
|
|
|
|
if (xbps_array_count(rdeps) == 0) {
|
2013-03-09 14:26:36 +05:30
|
|
|
continue;
|
2011-01-30 12:38:34 +05:30
|
|
|
}
|
2019-06-15 21:23:02 +05:30
|
|
|
|
2022-12-24 18:16:33 +05:30
|
|
|
xbps_dbg_printf(" processing rdeps for %s\n", pkgver);
|
2013-09-15 13:36:49 +05:30
|
|
|
for (unsigned int x = 0; x < xbps_array_count(rdeps); x++) {
|
2020-01-26 12:10:25 +05:30
|
|
|
xbps_array_t reqby;
|
|
|
|
xbps_dictionary_t deppkgd;
|
|
|
|
const char *deppkgver = NULL;
|
2020-02-22 04:21:28 +05:30
|
|
|
bool automatic = false;
|
2020-01-26 12:10:25 +05:30
|
|
|
|
2013-03-09 14:26:36 +05:30
|
|
|
cnt = 0;
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_array_get_cstring_nocopy(rdeps, x, &deppkgver);
|
2020-02-21 13:38:22 +05:30
|
|
|
if (xbps_find_pkg_in_array(array, deppkgver, 0)) {
|
2022-12-24 18:16:33 +05:30
|
|
|
xbps_dbg_printf(" rdep %s already queued\n", deppkgver);
|
2015-01-10 10:13:35 +05:30
|
|
|
continue;
|
2020-01-26 12:10:25 +05:30
|
|
|
}
|
2015-01-10 10:13:35 +05:30
|
|
|
deppkgd = xbps_pkgdb_get_pkg(xhp, deppkgver);
|
|
|
|
xbps_dictionary_get_bool(deppkgd, "automatic-install", &automatic);
|
2020-01-26 12:10:25 +05:30
|
|
|
if (!automatic) {
|
2022-12-24 18:16:33 +05:30
|
|
|
xbps_dbg_printf(" rdep %s skipped (!automatic)\n", deppkgver);
|
2013-12-08 12:36:28 +05:30
|
|
|
continue;
|
2020-01-26 12:10:25 +05:30
|
|
|
}
|
|
|
|
|
2013-03-09 14:26:36 +05:30
|
|
|
reqby = xbps_pkgdb_get_pkg_revdeps(xhp, deppkgver);
|
2013-06-20 13:56:12 +05:30
|
|
|
reqbycnt = xbps_array_count(reqby);
|
2013-09-15 13:36:49 +05:30
|
|
|
for (unsigned int j = 0; j < reqbycnt; j++) {
|
2020-01-26 12:10:25 +05:30
|
|
|
const char *reqbydep = NULL;
|
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_array_get_cstring_nocopy(reqby, j, &reqbydep);
|
2022-12-24 18:16:33 +05:30
|
|
|
xbps_dbg_printf(" %s processing revdep %s\n", pkgver, reqbydep);
|
2020-02-21 13:38:22 +05:30
|
|
|
if (xbps_find_pkg_in_array(array, reqbydep, 0))
|
2013-03-09 14:26:36 +05:30
|
|
|
cnt++;
|
|
|
|
}
|
2020-01-26 12:10:25 +05:30
|
|
|
if (cnt == reqbycnt) {
|
2015-01-10 10:13:35 +05:30
|
|
|
xbps_array_add(array, deppkgd);
|
2022-12-24 18:16:33 +05:30
|
|
|
xbps_dbg_printf(" added %s orphan\n", deppkgver);
|
2020-01-26 12:10:25 +05:30
|
|
|
}
|
2013-03-09 14:26:36 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-17 22:37:20 +05:30
|
|
|
return array;
|
|
|
|
}
|