2001-03-15 10:47:00 +00:00
|
|
|
#ifndef lint
|
|
|
|
static const char rcsid[] =
|
|
|
|
"$FreeBSD$";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FreeBSD install - a package for the installation and maintainance
|
|
|
|
* of non-core utilities.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Maxim Sobolev
|
|
|
|
* 14 March 2001
|
|
|
|
*
|
|
|
|
* Routines used to do various operations with dependencies
|
|
|
|
* among installed packages.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "lib.h"
|
|
|
|
#include <err.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sort given NULL-terminated list of installed packages (pkgs) in
|
|
|
|
* such a way that if package A depends on package B then after
|
|
|
|
* sorting A will be listed before B no matter how they were
|
|
|
|
* originally positioned in the list.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
sortdeps(char **pkgs)
|
|
|
|
{
|
|
|
|
char *tmp;
|
|
|
|
int i, j, loop_cnt;
|
|
|
|
int err_cnt = 0;
|
|
|
|
|
|
|
|
for (i = 0; pkgs[i]; i++) {
|
|
|
|
/*
|
|
|
|
* Check to see if any other package in pkgs[i+1:] depends
|
|
|
|
* on pkgs[i] and swap those two packages if so.
|
|
|
|
*/
|
|
|
|
loop_cnt = 0;
|
|
|
|
for (j = i + 1; pkgs[j]; j++) {
|
|
|
|
if (chkifdepends(pkgs[j], pkgs[i]) == 1) {
|
|
|
|
/*
|
|
|
|
* Try to avoid deadlock if package A depends on B which in
|
|
|
|
* turn depends on C and C due to an error depends on A.
|
|
|
|
* Use ugly but simple method, becase it Should Never
|
|
|
|
* Happen[tm] in the real life anyway.
|
|
|
|
*/
|
|
|
|
if (loop_cnt > 4096) {
|
|
|
|
warnx("dependency loop detected for package %s", pkgs[j]);
|
|
|
|
err_cnt++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
loop_cnt++;
|
|
|
|
tmp = pkgs[i];
|
|
|
|
pkgs[i] = pkgs[j];
|
|
|
|
pkgs[j] = tmp;
|
|
|
|
/*
|
|
|
|
* Another iteration requred to check if new pkgs[i]
|
|
|
|
* itself has any packages that depend on it
|
|
|
|
*/
|
|
|
|
j = i + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return err_cnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check to see if pkgname1 depends on pkgname2.
|
|
|
|
* Returns 1 if depends, 0 if not, and -1 if error occured.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
chkifdepends(char *pkgname1, char *pkgname2)
|
2001-09-19 08:06:48 +00:00
|
|
|
{
|
|
|
|
char pkgdir[FILENAME_MAX];
|
|
|
|
int errcode;
|
|
|
|
struct reqr_by_entry *rb_entry;
|
|
|
|
struct reqr_by_head *rb_list;
|
|
|
|
|
|
|
|
/* Check that pkgname2 is actually installed */
|
|
|
|
snprintf(pkgdir, sizeof(pkgdir), "%s/%s", LOG_DIR, pkgname2);
|
|
|
|
if (!isdir(pkgdir))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
errcode = requiredby(pkgname2, &rb_list, FALSE, TRUE);
|
|
|
|
if (errcode < 0)
|
|
|
|
return errcode;
|
|
|
|
|
|
|
|
STAILQ_FOREACH(rb_entry, rb_list, link)
|
|
|
|
if (strcmp(rb_entry->pkgname, pkgname1) == 0) /* match */
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Load +REQUIRED_BY file and return a list with names of
|
|
|
|
* packages that require package reffered to by `pkgname'.
|
|
|
|
*
|
|
|
|
* Optionally check that packages listed there are actually
|
|
|
|
* installed and filter out those that don't (filter == TRUE).
|
|
|
|
*
|
|
|
|
* strict argument controls whether the caller want warnings
|
|
|
|
* to be emitted when there are some non-fatal conditions,
|
|
|
|
* i.e. package doesn't have +REQUIRED_BY file or some packages
|
|
|
|
* listed in +REQUIRED_BY don't exist.
|
|
|
|
*
|
|
|
|
* Result returned in the **list, while return value is equal
|
|
|
|
* to the number of entries in the resulting list. Print error
|
|
|
|
* message and return -1 on error.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
requiredby(const char *pkgname, struct reqr_by_head **list, Boolean strict, Boolean filter)
|
2001-03-15 10:47:00 +00:00
|
|
|
{
|
|
|
|
FILE *fp;
|
2001-09-19 08:06:48 +00:00
|
|
|
char fbuf[FILENAME_MAX], fname[FILENAME_MAX], pkgdir[FILENAME_MAX];
|
2001-03-15 10:47:00 +00:00
|
|
|
int retval;
|
2001-09-19 08:06:48 +00:00
|
|
|
struct reqr_by_entry *rb_entry;
|
|
|
|
static struct reqr_by_head rb_list = STAILQ_HEAD_INITIALIZER(rb_list);
|
|
|
|
|
|
|
|
*list = &rb_list;
|
|
|
|
/* Deallocate any previously allocated space */
|
|
|
|
while (!STAILQ_EMPTY(&rb_list)) {
|
|
|
|
rb_entry = STAILQ_FIRST(&rb_list);
|
|
|
|
STAILQ_REMOVE_HEAD(&rb_list, link);
|
|
|
|
free(rb_entry);
|
|
|
|
}
|
2001-03-15 10:47:00 +00:00
|
|
|
|
2001-09-19 08:06:48 +00:00
|
|
|
snprintf(fname, sizeof(fname), "%s/%s", LOG_DIR, pkgname);
|
|
|
|
if (!isdir(fname)) {
|
|
|
|
if (strict == TRUE)
|
|
|
|
warnx("no such package '%s' installed", pkgname);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(fname, sizeof(fname), "%s/%s", fname, REQUIRED_BY_FNAME);
|
2001-03-15 10:47:00 +00:00
|
|
|
fp = fopen(fname, "r");
|
|
|
|
if (fp == NULL) {
|
2001-09-19 08:06:48 +00:00
|
|
|
/* Probably pkgname doesn't have any packages that depend on it */
|
|
|
|
if (strict == TRUE)
|
|
|
|
warnx("couldn't open dependency file '%s'", fname);
|
2001-03-15 10:47:00 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
retval = 0;
|
|
|
|
while (fgets(fbuf, sizeof(fbuf), fp) != NULL) {
|
2001-09-19 08:06:48 +00:00
|
|
|
if (fbuf[strlen(fbuf) - 1] == '\n')
|
|
|
|
fbuf[strlen(fbuf) - 1] = '\0';
|
|
|
|
snprintf(pkgdir, sizeof(pkgdir), "%s/%s", LOG_DIR, fbuf);
|
|
|
|
if (filter == TRUE && !isdir(pkgdir)) {
|
|
|
|
if (strict == TRUE)
|
|
|
|
warnx("package '%s' is recorded in the '%s' but isn't "
|
|
|
|
"actually installed", fbuf, fname);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
retval++;
|
|
|
|
rb_entry = malloc(sizeof(*rb_entry));
|
|
|
|
if (rb_entry == NULL) {
|
|
|
|
warnx("%s(): malloc() failed", __FUNCTION__);
|
|
|
|
retval = -1;
|
2001-03-15 10:47:00 +00:00
|
|
|
break;
|
|
|
|
}
|
2001-09-19 08:06:48 +00:00
|
|
|
strlcpy(rb_entry->pkgname, fbuf, sizeof(rb_entry->pkgname));
|
|
|
|
STAILQ_INSERT_TAIL(&rb_list, rb_entry, link);
|
2001-03-15 10:47:00 +00:00
|
|
|
}
|
|
|
|
fclose(fp);
|
2001-09-19 08:06:48 +00:00
|
|
|
|
2001-03-15 10:47:00 +00:00
|
|
|
return retval;
|
|
|
|
}
|