391 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			391 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*-
 | 
						|
 * Copyright (c) 2009-2014 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>
 | 
						|
 | 
						|
#include "xbps_api_impl.h"
 | 
						|
 | 
						|
/*
 | 
						|
 * Sorting algorithm for packages in the transaction dictionary.
 | 
						|
 * The transaction dictionary contains all package dictionaries found from
 | 
						|
 * the repository plist index file in the "unsorted_deps" array.
 | 
						|
 *
 | 
						|
 * Any package in the unsorted_deps array is added into the tail and
 | 
						|
 * later if a package dependency has an index greater than current
 | 
						|
 * package, the package dependency is moved just before it.
 | 
						|
 *
 | 
						|
 * Once that all package dependencies for a package are in the correct
 | 
						|
 * index, the counter is increased. When all packages in the "unsorted_deps"
 | 
						|
 * array are processed the loop is stopped and the counter should have
 | 
						|
 * the same number than the "unsorted_deps" array... otherwise something
 | 
						|
 * went wrong.
 | 
						|
 */
 | 
						|
 | 
						|
struct pkgdep {
 | 
						|
	TAILQ_ENTRY(pkgdep) pkgdep_entries;
 | 
						|
	xbps_dictionary_t d;
 | 
						|
	char *name;
 | 
						|
};
 | 
						|
 | 
						|
static TAILQ_HEAD(pkgdep_head, pkgdep) pkgdep_list =
 | 
						|
    TAILQ_HEAD_INITIALIZER(pkgdep_list);
 | 
						|
 | 
						|
static struct pkgdep *
 | 
						|
pkgdep_find(const char *pkg)
 | 
						|
{
 | 
						|
	struct pkgdep *pd = NULL;
 | 
						|
	const char *pkgver, *tract;
 | 
						|
 | 
						|
	TAILQ_FOREACH(pd, &pkgdep_list, pkgdep_entries) {
 | 
						|
		if (pd->d == NULL) {
 | 
						|
			/* ignore entries without dictionary */
 | 
						|
			continue;
 | 
						|
		}
 | 
						|
		xbps_dictionary_get_cstring_nocopy(pd->d,
 | 
						|
		    "transaction", &tract);
 | 
						|
		/* ignore pkgs to be removed */
 | 
						|
		if (strcmp(tract, "remove") == 0)
 | 
						|
			continue;
 | 
						|
		/* simple match */
 | 
						|
		xbps_dictionary_get_cstring_nocopy(pd->d, "pkgver", &pkgver);
 | 
						|
		if (strcmp(pkgver, pkg) == 0)
 | 
						|
			return pd;
 | 
						|
		/* pkg expression match */
 | 
						|
		if (xbps_pkgpattern_match(pkgver, pkg))
 | 
						|
			return pd;
 | 
						|
		/* virtualpkg expression match */
 | 
						|
		if (xbps_match_virtual_pkg_in_dict(pd->d, pkg))
 | 
						|
			return pd;
 | 
						|
	}
 | 
						|
 | 
						|
	/* not found */
 | 
						|
	return NULL;
 | 
						|
}
 | 
						|
 | 
						|
static int32_t
 | 
						|
pkgdep_find_idx(const char *pkg)
 | 
						|
{
 | 
						|
	struct pkgdep *pd;
 | 
						|
	int32_t idx = 0;
 | 
						|
	const char *pkgver, *tract;
 | 
						|
 | 
						|
	TAILQ_FOREACH(pd, &pkgdep_list, pkgdep_entries) {
 | 
						|
		if (pd->d == NULL) {
 | 
						|
			/* ignore entries without dictionary */
 | 
						|
			idx++;
 | 
						|
			continue;
 | 
						|
		}
 | 
						|
		xbps_dictionary_get_cstring_nocopy(pd->d,
 | 
						|
		    "transaction", &tract);
 | 
						|
		/* ignore pkgs to be removed */
 | 
						|
		if (strcmp(tract, "remove") == 0) {
 | 
						|
			idx++;
 | 
						|
			continue;
 | 
						|
		}
 | 
						|
		/* simple match */
 | 
						|
		xbps_dictionary_get_cstring_nocopy(pd->d, "pkgver", &pkgver);
 | 
						|
		if (strcmp(pkgver, pkg) == 0)
 | 
						|
			return idx;
 | 
						|
		/* pkg expression match */
 | 
						|
		if (xbps_pkgpattern_match(pkgver, pkg))
 | 
						|
			return idx;
 | 
						|
		/* virtualpkg expression match */
 | 
						|
		if (xbps_match_virtual_pkg_in_dict(pd->d, pkg))
 | 
						|
			return idx;
 | 
						|
 | 
						|
		idx++;
 | 
						|
	}
 | 
						|
	/* not found */
 | 
						|
	return -1;
 | 
						|
}
 | 
						|
 | 
						|
static void
 | 
						|
pkgdep_release(struct pkgdep *pd)
 | 
						|
{
 | 
						|
	free(pd->name);
 | 
						|
	free(pd);
 | 
						|
}
 | 
						|
 | 
						|
static struct pkgdep *
 | 
						|
pkgdep_alloc(xbps_dictionary_t d, const char *pkg)
 | 
						|
{
 | 
						|
	struct pkgdep *pd;
 | 
						|
 | 
						|
	pd = malloc(sizeof(*pd));
 | 
						|
	assert(pd);
 | 
						|
	pd->d = d;
 | 
						|
	pd->name = strdup(pkg);
 | 
						|
 | 
						|
	return pd;
 | 
						|
}
 | 
						|
 | 
						|
static void
 | 
						|
pkgdep_end(xbps_array_t sorted)
 | 
						|
{
 | 
						|
	struct pkgdep *pd;
 | 
						|
 | 
						|
	while ((pd = TAILQ_FIRST(&pkgdep_list)) != NULL) {
 | 
						|
		TAILQ_REMOVE(&pkgdep_list, pd, pkgdep_entries);
 | 
						|
		if (sorted != NULL && pd->d != NULL)
 | 
						|
			xbps_array_add(sorted, pd->d);
 | 
						|
 | 
						|
		pkgdep_release(pd);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
static int
 | 
						|
sort_pkg_rundeps(struct xbps_handle *xhp,
 | 
						|
		 struct pkgdep *pd,
 | 
						|
		 xbps_array_t pkg_rundeps,
 | 
						|
		 xbps_array_t unsorted)
 | 
						|
{
 | 
						|
	xbps_array_t provides;
 | 
						|
	xbps_dictionary_t curpkgd;
 | 
						|
	struct pkgdep *lpd, *pdn;
 | 
						|
	const char *str;
 | 
						|
	int32_t pkgdepidx, curpkgidx;
 | 
						|
	uint32_t i, idx = 0;
 | 
						|
	int rv = 0;
 | 
						|
 | 
						|
	xbps_dbg_printf_append(xhp, "\n");
 | 
						|
	curpkgidx = pkgdep_find_idx(pd->name);
 | 
						|
 | 
						|
again:
 | 
						|
	for (i = idx; i < xbps_array_count(pkg_rundeps); i++) {
 | 
						|
		xbps_array_get_cstring_nocopy(pkg_rundeps, i, &str);
 | 
						|
		xbps_dbg_printf(xhp, "  Required dependency '%s': ", str);
 | 
						|
 | 
						|
		pdn = pkgdep_find(str);
 | 
						|
		if ((pdn == NULL) && xbps_pkg_is_installed(xhp, str)) {
 | 
						|
			/*
 | 
						|
			 * Package dependency is installed, just add to
 | 
						|
			 * the list but just mark it as "installed", to avoid
 | 
						|
			 * calling xbps_pkg_is_installed(),
 | 
						|
			 * which is expensive.
 | 
						|
			 */
 | 
						|
			xbps_dbg_printf_append(xhp, "installed.\n");
 | 
						|
			lpd = pkgdep_alloc(NULL, str);
 | 
						|
			TAILQ_INSERT_TAIL(&pkgdep_list, lpd, pkgdep_entries);
 | 
						|
			continue;
 | 
						|
		} else if (pdn != NULL && pdn->d == NULL) {
 | 
						|
			/*
 | 
						|
			 * Package was added previously into the list
 | 
						|
			 * and is installed, skip.
 | 
						|
			 */
 | 
						|
			xbps_dbg_printf_append(xhp, "installed.\n");
 | 
						|
			continue;
 | 
						|
		}
 | 
						|
		if (((curpkgd = xbps_find_pkg_in_array(unsorted, str, "remove")) == NULL) &&
 | 
						|
		    ((curpkgd = xbps_find_virtualpkg_in_array(xhp, unsorted, str, "remove")) == NULL)) {
 | 
						|
			xbps_dbg_printf_append(xhp, "cannot find %s in unsorted array\n", str);
 | 
						|
			rv = EINVAL;
 | 
						|
			break;
 | 
						|
		}
 | 
						|
		if (pd->d) {
 | 
						|
			provides = xbps_dictionary_get(pd->d, "provides");
 | 
						|
			if (provides && xbps_match_virtual_pkg_in_array(provides, str)) {
 | 
						|
				xbps_dbg_printf_append(xhp, "%s is a vpkg provided by %s, ignored.\n", str, pd->name);
 | 
						|
				continue;
 | 
						|
			}
 | 
						|
		}
 | 
						|
		lpd = pkgdep_alloc(curpkgd, str);
 | 
						|
		if (pdn == NULL) {
 | 
						|
			/*
 | 
						|
			 * If package is not in the list, add to the tail
 | 
						|
			 * and iterate at the same position.
 | 
						|
			 */
 | 
						|
			TAILQ_INSERT_TAIL(&pkgdep_list, lpd, pkgdep_entries);
 | 
						|
			idx = i;
 | 
						|
			xbps_dbg_printf_append(xhp, "added into the tail, "
 | 
						|
			    "checking again...\n");
 | 
						|
			goto again;
 | 
						|
		}
 | 
						|
		/*
 | 
						|
		 * Find package dependency index.
 | 
						|
		 */
 | 
						|
		pkgdepidx = pkgdep_find_idx(str);
 | 
						|
		/*
 | 
						|
		 * If package dependency index is less than current
 | 
						|
		 * package index, it's already sorted.
 | 
						|
		 */
 | 
						|
		if (pkgdepidx < curpkgidx) {
 | 
						|
			xbps_dbg_printf_append(xhp, "already sorted.\n");
 | 
						|
			pkgdep_release(lpd);
 | 
						|
		} else if (pd == pdn) {
 | 
						|
			/*
 | 
						|
			 * Processing same pkg, just continue.
 | 
						|
			 */
 | 
						|
			xbps_dbg_printf_append(xhp, "already sorted.\n");
 | 
						|
			pkgdep_release(lpd);
 | 
						|
		} else {
 | 
						|
			/*
 | 
						|
			 * Remove package dependency from list and move
 | 
						|
			 * it before current package.
 | 
						|
			 */
 | 
						|
			TAILQ_REMOVE(&pkgdep_list, pdn, pkgdep_entries);
 | 
						|
			pkgdep_release(pdn);
 | 
						|
			TAILQ_INSERT_BEFORE(pd, lpd, pkgdep_entries);
 | 
						|
			xbps_dbg_printf_append(xhp,
 | 
						|
			    "added before `%s'.\n", pd->name);
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	return rv;
 | 
						|
}
 | 
						|
 | 
						|
int HIDDEN
 | 
						|
xbps_transaction_sort(struct xbps_handle *xhp)
 | 
						|
{
 | 
						|
	xbps_array_t provides, sorted, unsorted, rundeps;
 | 
						|
	xbps_object_t obj;
 | 
						|
	struct pkgdep *pd;
 | 
						|
	unsigned int ndeps = 0, cnt = 0;
 | 
						|
	const char *pkgver, *tract, *vpkgdep;
 | 
						|
	int rv = 0;
 | 
						|
	bool vpkg_found;
 | 
						|
 | 
						|
	if ((sorted = xbps_array_create()) == NULL)
 | 
						|
		return ENOMEM;
 | 
						|
	/*
 | 
						|
	 * Add sorted packages array into transaction dictionary (empty).
 | 
						|
	 */
 | 
						|
	if (!xbps_dictionary_set(xhp->transd, "packages", sorted)) {
 | 
						|
		rv = EINVAL;
 | 
						|
		goto out;
 | 
						|
	}
 | 
						|
	/*
 | 
						|
	 * All required deps are satisfied (already installed).
 | 
						|
	 */
 | 
						|
	unsorted = xbps_dictionary_get(xhp->transd, "unsorted_deps");
 | 
						|
	if (xbps_array_count(unsorted) == 0) {
 | 
						|
		xbps_dictionary_set(xhp->transd, "packages", sorted);
 | 
						|
		xbps_object_release(sorted);
 | 
						|
		return 0;
 | 
						|
	}
 | 
						|
	/*
 | 
						|
	 * The sorted array should have the same capacity than
 | 
						|
	 * all objects in the unsorted array.
 | 
						|
	 */
 | 
						|
	ndeps = xbps_array_count(unsorted);
 | 
						|
	/*
 | 
						|
	 * Iterate over the unsorted package dictionaries and sort all
 | 
						|
	 * its package dependencies.
 | 
						|
	 */
 | 
						|
	for (unsigned int i = 0; i < ndeps; i++) {
 | 
						|
		vpkg_found = false;
 | 
						|
		obj = xbps_array_get(unsorted, i);
 | 
						|
		xbps_dictionary_get_cstring_nocopy(obj, "pkgver", &pkgver);
 | 
						|
		xbps_dictionary_get_cstring_nocopy(obj, "transaction", &tract);
 | 
						|
		provides = xbps_dictionary_get(obj, "provides");
 | 
						|
		xbps_dbg_printf(xhp, "Sorting package '%s' (%s): ", pkgver, tract);
 | 
						|
 | 
						|
		if (provides) {
 | 
						|
			/*
 | 
						|
			 * If current pkgdep provides any virtual pkg check
 | 
						|
			 * if any of them was previously added. If true, don't
 | 
						|
			 * add it into the list again, just order its deps.
 | 
						|
			 */
 | 
						|
			for (unsigned int j = 0; j < xbps_array_count(provides); j++) {
 | 
						|
				xbps_array_get_cstring_nocopy(provides,
 | 
						|
				    j, &vpkgdep);
 | 
						|
				pd = pkgdep_find(vpkgdep);
 | 
						|
				if (pd != NULL) {
 | 
						|
					xbps_dbg_printf_append(xhp, "already "
 | 
						|
					    "sorted via `%s' vpkg.", vpkgdep);
 | 
						|
					vpkg_found = true;
 | 
						|
					break;
 | 
						|
				}
 | 
						|
			}
 | 
						|
		}
 | 
						|
		pd = pkgdep_find(pkgver);
 | 
						|
		if ((!strcmp(tract, "remove") || (!pd && !vpkg_found))) {
 | 
						|
			/*
 | 
						|
			 * If package not in list, just add to the tail.
 | 
						|
			 */
 | 
						|
			pd = pkgdep_alloc(obj, pkgver);
 | 
						|
			if (pd == NULL) {
 | 
						|
				pkgdep_end(NULL);
 | 
						|
				rv = ENOMEM;
 | 
						|
				goto out;
 | 
						|
			}
 | 
						|
			if (strcmp(tract, "remove") == 0) {
 | 
						|
				xbps_dbg_printf_append(xhp, "added into head.\n");
 | 
						|
				TAILQ_INSERT_HEAD(&pkgdep_list, pd,
 | 
						|
				    pkgdep_entries);
 | 
						|
				cnt++;
 | 
						|
				continue;
 | 
						|
			} else {
 | 
						|
				xbps_dbg_printf_append(xhp, "added into tail.");
 | 
						|
				TAILQ_INSERT_TAIL(&pkgdep_list, pd,
 | 
						|
				    pkgdep_entries);
 | 
						|
			}
 | 
						|
		}
 | 
						|
		/*
 | 
						|
		 * Packages that don't have deps go at head, because
 | 
						|
		 * it doesn't matter.
 | 
						|
		 */
 | 
						|
		rundeps = xbps_dictionary_get(obj, "run_depends");
 | 
						|
		if (xbps_array_count(rundeps) == 0) {
 | 
						|
			xbps_dbg_printf_append(xhp, "\n");
 | 
						|
			cnt++;
 | 
						|
			continue;
 | 
						|
		}
 | 
						|
		/*
 | 
						|
		 * Sort package run-time dependencies for this package.
 | 
						|
		 */
 | 
						|
		if ((rv = sort_pkg_rundeps(xhp, pd, rundeps, unsorted)) != 0) {
 | 
						|
			pkgdep_end(NULL);
 | 
						|
			goto out;
 | 
						|
		}
 | 
						|
		cnt++;
 | 
						|
	}
 | 
						|
	/*
 | 
						|
	 * We are done, now we have to copy all pkg dictionaries
 | 
						|
	 * from the sorted list into the "packages" array, and at
 | 
						|
	 * the same time freeing memory used for temporary sorting.
 | 
						|
	 */
 | 
						|
	pkgdep_end(sorted);
 | 
						|
	/*
 | 
						|
	 * Sanity check that the array contains the same number of
 | 
						|
	 * objects than the total number of required dependencies.
 | 
						|
	 */
 | 
						|
	assert(cnt == xbps_array_count(unsorted));
 | 
						|
	/*
 | 
						|
	 * We are done, all packages were sorted... remove the
 | 
						|
	 * temporary array with unsorted packages.
 | 
						|
	 */
 | 
						|
	xbps_dictionary_remove(xhp->transd, "unsorted_deps");
 | 
						|
out:
 | 
						|
	if (rv != 0)
 | 
						|
		xbps_dictionary_remove(xhp->transd, "packages");
 | 
						|
 | 
						|
	xbps_object_release(sorted);
 | 
						|
 | 
						|
	return rv;
 | 
						|
}
 |