2009-08-17 22:37:20 +05:30
|
|
|
/*-
|
2011-01-25 08:03:51 +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 <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2010-11-13 07:48:58 +05:30
|
|
|
#include <assert.h>
|
2010-11-19 18:10:13 +05:30
|
|
|
#include <unistd.h>
|
2011-06-01 11:01:38 +05:30
|
|
|
#include <sys/param.h>
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
#include <xbps_api.h>
|
|
|
|
#include "defs.h"
|
|
|
|
|
2011-12-22 18:55:27 +05:30
|
|
|
struct checkpkg {
|
|
|
|
size_t npkgs;
|
|
|
|
size_t nbrokenpkgs;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
cb_pkg_integrity(prop_object_t obj, void *arg, bool *done)
|
|
|
|
{
|
|
|
|
struct checkpkg *cpkg = arg;
|
|
|
|
const char *pkgname, *version;
|
|
|
|
|
|
|
|
(void)done;
|
|
|
|
|
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "pkgname", &pkgname);
|
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "version", &version);
|
|
|
|
printf("Checking %s-%s ...\n", pkgname, version);
|
|
|
|
if (check_pkg_integrity(obj, pkgname) != 0)
|
|
|
|
cpkg->nbrokenpkgs++;
|
|
|
|
|
|
|
|
cpkg->npkgs++;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-06 04:12:37 +05:30
|
|
|
int
|
2011-07-27 20:43:54 +05:30
|
|
|
check_pkg_integrity_all(void)
|
2009-10-06 04:12:37 +05:30
|
|
|
{
|
2011-12-22 18:55:27 +05:30
|
|
|
struct checkpkg *cpkg;
|
|
|
|
|
|
|
|
cpkg = calloc(1, sizeof(*cpkg));
|
|
|
|
if (cpkg == NULL)
|
|
|
|
return ENOMEM;
|
|
|
|
|
|
|
|
(void)xbps_regpkgdb_foreach_pkg_cb(cb_pkg_integrity, cpkg);
|
|
|
|
printf("%zu package%s processed: %zu broken.\n", cpkg->npkgs,
|
|
|
|
cpkg->npkgs == 1 ? "" : "s", cpkg->nbrokenpkgs);
|
|
|
|
free(cpkg);
|
2009-10-06 04:12:37 +05:30
|
|
|
|
2011-07-28 19:54:16 +05:30
|
|
|
return 0;
|
2009-10-06 04:12:37 +05:30
|
|
|
}
|
|
|
|
|
2009-08-17 22:37:20 +05:30
|
|
|
int
|
2011-12-22 18:55:27 +05:30
|
|
|
check_pkg_integrity(prop_dictionary_t pkgd, const char *pkgname)
|
2009-08-17 22:37:20 +05:30
|
|
|
{
|
2011-12-22 18:55:27 +05:30
|
|
|
prop_dictionary_t opkgd, propsd, filesd;
|
2009-08-17 22:37:20 +05:30
|
|
|
int rv = 0;
|
2011-10-27 20:38:48 +05:30
|
|
|
bool broken = false;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2011-12-22 18:55:27 +05:30
|
|
|
propsd = filesd = opkgd = NULL;
|
2011-10-28 13:05:34 +05:30
|
|
|
|
2011-10-27 20:38:48 +05:30
|
|
|
/* find real pkg by name */
|
2009-08-17 22:37:20 +05:30
|
|
|
if (pkgd == NULL) {
|
2011-12-22 18:55:27 +05:30
|
|
|
opkgd = xbps_find_pkg_dict_installed(pkgname, false);
|
|
|
|
if (opkgd == NULL) {
|
|
|
|
/* find virtual pkg by name */
|
|
|
|
pkgd = xbps_find_virtualpkg_dict_installed(pkgname,
|
|
|
|
false);
|
|
|
|
}
|
|
|
|
if (opkgd == NULL) {
|
|
|
|
printf("Package %s is not installed.\n", pkgname);
|
|
|
|
return 0;
|
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Check for props.plist metadata file.
|
|
|
|
*/
|
2011-06-01 13:07:32 +05:30
|
|
|
propsd = xbps_dictionary_from_metadata_plist(pkgname, XBPS_PKGPROPS);
|
2011-01-25 08:03:51 +05:30
|
|
|
if (prop_object_type(propsd) != PROP_TYPE_DICTIONARY) {
|
2011-07-28 19:54:16 +05:30
|
|
|
xbps_error_printf("%s: unexistent %s or invalid metadata "
|
|
|
|
"file.\n", pkgname, XBPS_PKGPROPS);
|
|
|
|
broken = true;
|
2009-08-17 22:37:20 +05:30
|
|
|
goto out;
|
|
|
|
} else if (prop_dictionary_count(propsd) == 0) {
|
2011-07-28 19:54:16 +05:30
|
|
|
xbps_error_printf("%s: incomplete %s metadata file.\n",
|
|
|
|
pkgname, XBPS_PKGPROPS);
|
|
|
|
broken = true;
|
2010-01-25 20:45:33 +05:30
|
|
|
goto out;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Check for files.plist metadata file.
|
|
|
|
*/
|
2011-06-01 13:07:32 +05:30
|
|
|
filesd = xbps_dictionary_from_metadata_plist(pkgname, XBPS_PKGFILES);
|
2011-01-25 08:03:51 +05:30
|
|
|
if (prop_object_type(filesd) != PROP_TYPE_DICTIONARY) {
|
2011-07-28 19:54:16 +05:30
|
|
|
xbps_error_printf("%s: unexistent %s or invalid metadata "
|
|
|
|
"file.\n", pkgname, XBPS_PKGFILES);
|
|
|
|
broken = true;
|
2010-01-25 20:45:33 +05:30
|
|
|
goto out;
|
2009-08-17 22:37:20 +05:30
|
|
|
} else if (prop_dictionary_count(filesd) == 0) {
|
2011-07-28 19:54:16 +05:30
|
|
|
xbps_error_printf("%s: incomplete %s metadata file.\n",
|
|
|
|
pkgname, XBPS_PKGFILES);
|
|
|
|
broken = true;
|
2010-01-25 20:45:33 +05:30
|
|
|
goto out;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
|
2011-12-22 18:55:27 +05:30
|
|
|
#define RUN_PKG_CHECK(name) \
|
|
|
|
do { \
|
|
|
|
rv = check_pkg_##name(pkgd ? pkgd : opkgd, propsd, filesd); \
|
|
|
|
if (rv) \
|
|
|
|
broken = true; \
|
|
|
|
else if (rv == -1) { \
|
|
|
|
xbps_error_printf("%s: the %s test " \
|
|
|
|
"returned error!\n", pkgname, #name); \
|
|
|
|
goto out; \
|
|
|
|
} \
|
2011-10-28 04:27:16 +05:30
|
|
|
} while (0)
|
|
|
|
|
2011-10-27 20:38:48 +05:30
|
|
|
/* Execute pkg checks */
|
|
|
|
RUN_PKG_CHECK(autoinstall);
|
|
|
|
RUN_PKG_CHECK(files);
|
|
|
|
RUN_PKG_CHECK(symlinks);
|
|
|
|
RUN_PKG_CHECK(rundeps);
|
2011-10-28 04:27:16 +05:30
|
|
|
RUN_PKG_CHECK(requiredby);
|
|
|
|
|
|
|
|
#undef RUN_PKG_CHECK
|
2009-08-17 22:37:20 +05:30
|
|
|
|
|
|
|
out:
|
2011-10-27 20:38:48 +05:30
|
|
|
if (prop_object_type(filesd) == PROP_TYPE_DICTIONARY)
|
2010-01-25 20:45:33 +05:30
|
|
|
prop_object_release(filesd);
|
2011-10-27 20:38:48 +05:30
|
|
|
if (prop_object_type(propsd) == PROP_TYPE_DICTIONARY)
|
2010-01-25 20:45:33 +05:30
|
|
|
prop_object_release(propsd);
|
2011-12-22 18:55:27 +05:30
|
|
|
if (prop_object_type(opkgd) == PROP_TYPE_DICTIONARY)
|
|
|
|
prop_object_release(opkgd);
|
2009-10-06 04:12:37 +05:30
|
|
|
if (broken)
|
2011-10-27 20:38:48 +05:30
|
|
|
return 1;
|
2009-10-06 04:12:37 +05:30
|
|
|
|
2011-07-28 19:54:16 +05:30
|
|
|
return 0;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|