Basic running of pacman -Qkk to check mtree files
If a package has an mtree file, using pacman -Qkk will read that file and use it to perform more in depth package checking. Currently this only checks for file presence. Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
parent
cfd9f1cc69
commit
327c272bb4
4 changed files with 76 additions and 4 deletions
|
@ -44,7 +44,7 @@ static int check_file_exists(const char *pkgname, const char * filepath,
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Loop through the files of the package to check if they exist. */
|
/* Loop through the files of the package to check if they exist. */
|
||||||
int check(alpm_pkg_t *pkg)
|
int check_pkg_fast(alpm_pkg_t *pkg)
|
||||||
{
|
{
|
||||||
const char *root, *pkgname;
|
const char *root, *pkgname;
|
||||||
size_t errors = 0;
|
size_t errors = 0;
|
||||||
|
@ -88,4 +88,71 @@ int check(alpm_pkg_t *pkg)
|
||||||
return (errors != 0 ? 1 : 0);
|
return (errors != 0 ? 1 : 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Loop though files in a package and perform full file property checking. */
|
||||||
|
int check_pkg_full(alpm_pkg_t *pkg)
|
||||||
|
{
|
||||||
|
const char *root, *pkgname;
|
||||||
|
size_t errors = 0;
|
||||||
|
size_t rootlen;
|
||||||
|
char filepath[PATH_MAX];
|
||||||
|
struct archive *mtree;
|
||||||
|
struct archive_entry *entry = NULL;
|
||||||
|
size_t file_count = 0;
|
||||||
|
|
||||||
|
root = alpm_option_get_root(config->handle);
|
||||||
|
rootlen = strlen(root);
|
||||||
|
if(rootlen + 1 > PATH_MAX) {
|
||||||
|
/* we are in trouble here */
|
||||||
|
pm_printf(ALPM_LOG_ERROR, _("path too long: %s%s\n"), root, "");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
strcpy(filepath, root);
|
||||||
|
|
||||||
|
pkgname = alpm_pkg_get_name(pkg);
|
||||||
|
mtree = alpm_pkg_mtree_open(pkg);
|
||||||
|
if(mtree == NULL) {
|
||||||
|
/* TODO: check error to confirm failure due to no mtree file */
|
||||||
|
if(!config->quiet) {
|
||||||
|
printf(_("%s: no mtree file\n"), pkgname);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
while(alpm_pkg_mtree_next(pkg, mtree, &entry) == ARCHIVE_OK) {
|
||||||
|
struct stat st;
|
||||||
|
const char *path = archive_entry_pathname(entry);
|
||||||
|
|
||||||
|
/* TODO: ignoring special files for the moment */
|
||||||
|
if(*path == '.') {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
file_count++;
|
||||||
|
|
||||||
|
if(rootlen + 1 + strlen(path) > PATH_MAX) {
|
||||||
|
pm_printf(ALPM_LOG_WARNING, _("path too long: %s%s\n"), root, path);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
strcpy(filepath + rootlen, path);
|
||||||
|
|
||||||
|
if(check_file_exists(pkgname, filepath, &st) == 1) {
|
||||||
|
errors++;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* TODO: check file properties */
|
||||||
|
}
|
||||||
|
|
||||||
|
alpm_pkg_mtree_close(pkg, mtree);
|
||||||
|
|
||||||
|
if(!config->quiet) {
|
||||||
|
printf(_n("%s: %jd total file, ", "%s: %jd total files, ",
|
||||||
|
(unsigned long)file_count), pkgname, (intmax_t)file_count);
|
||||||
|
printf(_n("%jd altered file\n", "%jd altered files\n",
|
||||||
|
(unsigned long)errors), (intmax_t)errors);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (errors != 0 ? 1 : 0);
|
||||||
|
}
|
||||||
|
|
||||||
/* vim: set ts=2 sw=2 noet: */
|
/* vim: set ts=2 sw=2 noet: */
|
||||||
|
|
|
@ -22,7 +22,8 @@
|
||||||
|
|
||||||
#include <alpm.h>
|
#include <alpm.h>
|
||||||
|
|
||||||
int check(alpm_pkg_t *pkg);
|
int check_pkg_fast(alpm_pkg_t *pkg);
|
||||||
|
int check_pkg_full(alpm_pkg_t *pkg);
|
||||||
|
|
||||||
#endif /* _PM_CHECK_H */
|
#endif /* _PM_CHECK_H */
|
||||||
|
|
||||||
|
|
|
@ -460,7 +460,7 @@ static int parsearg_query(int opt)
|
||||||
case 'e': config->op_q_explicit = 1; break;
|
case 'e': config->op_q_explicit = 1; break;
|
||||||
case 'g': (config->group)++; break;
|
case 'g': (config->group)++; break;
|
||||||
case 'i': (config->op_q_info)++; break;
|
case 'i': (config->op_q_info)++; break;
|
||||||
case 'k': config->op_q_check = 1; break;
|
case 'k': (config->op_q_check)++; break;
|
||||||
case 'l': config->op_q_list = 1; break;
|
case 'l': config->op_q_list = 1; break;
|
||||||
case 'm': config->op_q_foreign = 1; break;
|
case 'm': config->op_q_foreign = 1; break;
|
||||||
case 'n': config->op_q_native = 1; break;
|
case 'n': config->op_q_native = 1; break;
|
||||||
|
|
|
@ -411,7 +411,11 @@ static int display(alpm_pkg_t *pkg)
|
||||||
dump_pkg_changelog(pkg);
|
dump_pkg_changelog(pkg);
|
||||||
}
|
}
|
||||||
if(config->op_q_check) {
|
if(config->op_q_check) {
|
||||||
ret = check(pkg);
|
if(config->op_q_check == 1) {
|
||||||
|
ret = check_pkg_fast(pkg);
|
||||||
|
} else {
|
||||||
|
ret = check_pkg_full(pkg);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if(!config->op_q_info && !config->op_q_list
|
if(!config->op_q_info && !config->op_q_list
|
||||||
&& !config->op_q_changelog && !config->op_q_check) {
|
&& !config->op_q_changelog && !config->op_q_check) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue