b23855f692
If xbps_repo_open() was called with the lock arg set, xbps_repo_close() will now unlock the repo file lock, without the need to set it. This avoids the need to always unlock the file lock even if it wasn't locked previously. This also introduceds an ABI/API break, but this way it's cleaner.
162 lines
4.3 KiB
C
162 lines
4.3 KiB
C
/*-
|
|
* Copyright (c) 2012-2015 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 <sys/stat.h>
|
|
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <dirent.h>
|
|
#include <libgen.h>
|
|
#include <assert.h>
|
|
|
|
#include <xbps.h>
|
|
#include "defs.h"
|
|
|
|
static int
|
|
remove_pkg(const char *repodir, const char *file)
|
|
{
|
|
char *filepath, *sigpath;
|
|
int rv = 0;
|
|
|
|
filepath = xbps_xasprintf("%s/%s", repodir, file);
|
|
sigpath = xbps_xasprintf("%s.sig", filepath);
|
|
if (remove(filepath) == -1) {
|
|
if (errno != ENOENT) {
|
|
rv = errno;
|
|
fprintf(stderr, "xbps-rindex: failed to remove "
|
|
"package `%s': %s\n", file, strerror(rv));
|
|
}
|
|
}
|
|
if (remove(sigpath) == -1) {
|
|
if (errno != ENOENT) {
|
|
rv = errno;
|
|
fprintf(stderr, "xbps-rindex: failed to remove "
|
|
"package signature `%s': %s\n", sigpath, strerror(rv));
|
|
}
|
|
}
|
|
free(sigpath);
|
|
free(filepath);
|
|
|
|
return rv;
|
|
}
|
|
|
|
static int
|
|
cleaner_cb(struct xbps_handle *xhp, xbps_object_t obj, const char *key _unused, void *arg, bool *done _unused)
|
|
{
|
|
struct xbps_repo *repo = arg;
|
|
const char *binpkg;
|
|
char *pkgver, *arch = NULL;
|
|
int rv;
|
|
|
|
binpkg = xbps_string_cstring_nocopy(obj);
|
|
if (access(binpkg, R_OK) == -1) {
|
|
if (errno == ENOENT) {
|
|
if ((rv = remove_pkg(repo->uri, binpkg)) != 0)
|
|
return 0;
|
|
|
|
printf("Removed broken package `%s'.\n", binpkg);
|
|
}
|
|
}
|
|
arch = xbps_binpkg_arch(binpkg);
|
|
assert(arch);
|
|
/* ignore pkgs from other archs */
|
|
if (!xbps_pkg_arch_match(xhp, arch, NULL)) {
|
|
free(arch);
|
|
return 0;
|
|
}
|
|
free(arch);
|
|
|
|
pkgver = xbps_binpkg_pkgver(binpkg);
|
|
assert(pkgver);
|
|
if (xhp->flags & XBPS_FLAG_VERBOSE)
|
|
printf("checking %s (%s)\n", pkgver, binpkg);
|
|
/*
|
|
* If binpkg is not registered in index, remove binpkg.
|
|
*/
|
|
if (!xbps_repo_get_pkg(repo, pkgver)) {
|
|
if ((rv = remove_pkg(repo->uri, binpkg)) != 0) {
|
|
free(pkgver);
|
|
return 0;
|
|
}
|
|
printf("Removed obsolete package `%s'.\n", binpkg);
|
|
}
|
|
free(pkgver);
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
remove_obsoletes(struct xbps_handle *xhp, const char *repodir)
|
|
{
|
|
xbps_array_t array = NULL;
|
|
struct xbps_repo *repo;
|
|
DIR *dirp;
|
|
struct dirent *dp;
|
|
char *ext;
|
|
int rv = 0;
|
|
|
|
repo = xbps_repo_open(xhp, repodir, false);
|
|
if (repo == NULL) {
|
|
if (errno != ENOENT) {
|
|
fprintf(stderr, "xbps-rindex: cannot read repository data: %s\n",
|
|
strerror(errno));
|
|
return -1;
|
|
}
|
|
return 0;
|
|
}
|
|
if (chdir(repodir) == -1) {
|
|
fprintf(stderr, "xbps-rindex: cannot chdir to %s: %s\n",
|
|
repodir, strerror(errno));
|
|
free(repo);
|
|
return errno;
|
|
}
|
|
if ((dirp = opendir(repodir)) == NULL) {
|
|
fprintf(stderr, "xbps-rindex: failed to open %s: %s\n",
|
|
repodir, strerror(errno));
|
|
free(repo);
|
|
return errno;
|
|
}
|
|
while ((dp = readdir(dirp))) {
|
|
if (strcmp(dp->d_name, "..") == 0)
|
|
continue;
|
|
if ((ext = strrchr(dp->d_name, '.')) == NULL)
|
|
continue;
|
|
if (strcmp(ext, ".xbps"))
|
|
continue;
|
|
if (array == NULL)
|
|
array = xbps_array_create();
|
|
|
|
xbps_array_add_cstring(array, dp->d_name);
|
|
}
|
|
(void)closedir(dirp);
|
|
|
|
rv = xbps_array_foreach_cb_multi(xhp, array, NULL, cleaner_cb, repo);
|
|
xbps_repo_close(repo);
|
|
xbps_object_release(array);
|
|
|
|
return rv;
|
|
}
|