2000-10-09 23:11:58 +04:00
|
|
|
/* $NetBSD: main.c,v 1.14 2000/10/09 19:11:58 hubertf Exp $ */
|
1999-01-19 20:01:56 +03:00
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#ifndef lint
|
2000-10-09 23:11:58 +04:00
|
|
|
__RCSID("$NetBSD: main.c,v 1.14 2000/10/09 19:11:58 hubertf Exp $");
|
1999-01-19 20:01:56 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1999 Hubert Feyrer. 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
2000-02-22 04:24:26 +03:00
|
|
|
* This product includes software developed by Hubert Feyrer for
|
|
|
|
* the NetBSD Project.
|
1999-01-19 20:01:56 +03:00
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* 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/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <md5.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "lib.h"
|
|
|
|
|
1999-08-24 04:48:37 +04:00
|
|
|
void usage(void);
|
1999-01-19 20:01:56 +03:00
|
|
|
|
1999-08-24 04:48:37 +04:00
|
|
|
extern const char *__progname; /* from crt0.o */
|
1999-01-19 20:01:56 +03:00
|
|
|
|
1999-08-24 04:48:37 +04:00
|
|
|
int filecnt;
|
2000-03-19 20:24:27 +03:00
|
|
|
int pkgcnt;
|
1999-03-22 08:02:39 +03:00
|
|
|
|
1999-01-19 20:01:56 +03:00
|
|
|
/*
|
1999-08-24 04:48:37 +04:00
|
|
|
* Assumes CWD is in /var/db/pkg/<pkg>!
|
1999-01-19 20:01:56 +03:00
|
|
|
*/
|
1999-08-24 04:48:37 +04:00
|
|
|
static void
|
|
|
|
check1pkg(const char *pkgdir)
|
1999-01-19 20:01:56 +03:00
|
|
|
{
|
1999-08-24 04:48:37 +04:00
|
|
|
FILE *f;
|
|
|
|
plist_t *p;
|
|
|
|
package_t Plist;
|
|
|
|
char *PkgName, *dirp = NULL, *md5file;
|
|
|
|
char file[FILENAME_MAX];
|
|
|
|
char dir[FILENAME_MAX];
|
|
|
|
|
|
|
|
f = fopen(CONTENTS_FNAME, "r");
|
|
|
|
if (f == NULL)
|
|
|
|
err(1, "can't open %s/%s/%s", _pkgdb_getPKGDB_DIR(), pkgdir, CONTENTS_FNAME);
|
|
|
|
|
|
|
|
Plist.head = Plist.tail = NULL;
|
|
|
|
read_plist(&Plist, f);
|
|
|
|
p = find_plist(&Plist, PLIST_NAME);
|
|
|
|
if (p == NULL)
|
|
|
|
errx(1, "Package %s has no @name, aborting.\n",
|
|
|
|
pkgdir);
|
|
|
|
PkgName = p->name;
|
|
|
|
for (p = Plist.head; p; p = p->next) {
|
|
|
|
switch (p->type) {
|
|
|
|
case PLIST_FILE:
|
|
|
|
if (dirp == NULL) {
|
|
|
|
warnx("dirp not initialized, please send-pr!");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
(void) snprintf(file, sizeof(file), "%s/%s", dirp, p->name);
|
|
|
|
|
1999-09-13 04:32:14 +04:00
|
|
|
if (!(isfile(file) || islinktodir(file)))
|
1999-08-24 04:48:37 +04:00
|
|
|
warnx("%s: File %s is in %s but not on filesystem!", PkgName, file, CONTENTS_FNAME);
|
|
|
|
else {
|
|
|
|
if (p->next &&
|
|
|
|
p->next->type == PLIST_COMMENT &&
|
|
|
|
strncmp(p->next->name, CHECKSUM_HEADER, ChecksumHeaderLen) == 0) { /* || PLIST_MD5 - HF */
|
|
|
|
if ((md5file = MD5File(file, NULL)) != NULL) {
|
|
|
|
/* Mismatch? */
|
1999-01-19 20:01:56 +03:00
|
|
|
#ifdef PKGDB_DEBUG
|
1999-08-24 04:48:37 +04:00
|
|
|
printf("%s: md5 should=<%s>, is=<%s>\n",
|
|
|
|
file, p->next->name + ChecksumHeaderLen, md5file);
|
1999-01-19 20:01:56 +03:00
|
|
|
#endif
|
1999-08-24 04:48:37 +04:00
|
|
|
if (strcmp(md5file, p->next->name + ChecksumHeaderLen) != 0)
|
|
|
|
printf("%s fails MD5 checksum\n", file);
|
|
|
|
|
|
|
|
free(md5file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
filecnt++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case PLIST_CWD:
|
|
|
|
if (strcmp(p->name, ".") != 0)
|
|
|
|
dirp = p->name;
|
|
|
|
else {
|
|
|
|
(void) snprintf(dir, sizeof(dir), "%s/%s", _pkgdb_getPKGDB_DIR(), pkgdir);
|
|
|
|
dirp = dir;
|
|
|
|
}
|
|
|
|
break;
|
1999-11-29 23:09:54 +03:00
|
|
|
case PLIST_SRC:
|
|
|
|
warnx("@src is deprecated - please send-pr for %s!\n", PkgName);
|
|
|
|
break;
|
1999-08-24 04:48:37 +04:00
|
|
|
case PLIST_IGNORE:
|
|
|
|
p = p->next;
|
|
|
|
break;
|
|
|
|
case PLIST_SHOW_ALL:
|
|
|
|
case PLIST_CMD:
|
|
|
|
case PLIST_CHMOD:
|
|
|
|
case PLIST_CHOWN:
|
|
|
|
case PLIST_CHGRP:
|
|
|
|
case PLIST_COMMENT:
|
|
|
|
case PLIST_NAME:
|
|
|
|
case PLIST_UNEXEC:
|
|
|
|
case PLIST_DISPLAY:
|
|
|
|
case PLIST_PKGDEP:
|
|
|
|
case PLIST_MTREE:
|
|
|
|
case PLIST_DIR_RM:
|
|
|
|
case PLIST_IGNORE_INST:
|
|
|
|
case PLIST_OPTION:
|
|
|
|
case PLIST_PKGCFL:
|
|
|
|
break;
|
1999-01-19 20:01:56 +03:00
|
|
|
}
|
|
|
|
}
|
1999-08-24 04:48:37 +04:00
|
|
|
free_plist(&Plist);
|
|
|
|
fclose(f);
|
2000-03-19 20:24:27 +03:00
|
|
|
|
|
|
|
pkgcnt++;
|
1999-01-19 20:01:56 +03:00
|
|
|
}
|
|
|
|
|
1999-08-24 04:48:37 +04:00
|
|
|
static void
|
|
|
|
rebuild(void)
|
1999-01-19 20:01:56 +03:00
|
|
|
{
|
1999-08-24 04:48:37 +04:00
|
|
|
DIR *dp;
|
|
|
|
struct dirent *de;
|
|
|
|
FILE *f;
|
|
|
|
plist_t *p;
|
|
|
|
char *PkgName, dir[FILENAME_MAX], *dirp = NULL;
|
|
|
|
char *PkgDBDir = NULL, file[FILENAME_MAX];
|
|
|
|
|
2000-03-19 20:24:27 +03:00
|
|
|
pkgcnt = 0;
|
1999-08-24 04:48:37 +04:00
|
|
|
filecnt = 0;
|
|
|
|
|
|
|
|
if (unlink(_pkgdb_getPKGDB_FILE()) != 0 && errno != ENOENT)
|
|
|
|
err(1, "unlink %s", _pkgdb_getPKGDB_FILE());
|
|
|
|
|
|
|
|
if (pkgdb_open(0) == -1)
|
|
|
|
err(1, "cannot open pkgdb");
|
|
|
|
|
|
|
|
setbuf(stdout, NULL);
|
|
|
|
PkgDBDir = _pkgdb_getPKGDB_DIR();
|
|
|
|
chdir(PkgDBDir);
|
1999-01-19 20:01:56 +03:00
|
|
|
#ifdef PKGDB_DEBUG
|
1999-08-24 04:48:37 +04:00
|
|
|
printf("PkgDBDir='%s'\n", PkgDBDir);
|
1999-01-19 20:01:56 +03:00
|
|
|
#endif
|
1999-08-24 04:48:37 +04:00
|
|
|
dp = opendir(".");
|
|
|
|
if (dp == NULL)
|
|
|
|
err(1, "opendir failed");
|
|
|
|
while ((de = readdir(dp))) {
|
|
|
|
package_t Plist;
|
|
|
|
|
|
|
|
if (!isdir(de->d_name))
|
|
|
|
continue;
|
1999-01-19 20:01:56 +03:00
|
|
|
|
1999-08-24 04:48:37 +04:00
|
|
|
if (strcmp(de->d_name, ".") == 0 ||
|
|
|
|
strcmp(de->d_name, "..") == 0)
|
|
|
|
continue;
|
1999-01-19 20:01:56 +03:00
|
|
|
|
|
|
|
#ifdef PKGDB_DEBUG
|
1999-08-24 04:48:37 +04:00
|
|
|
printf("%s\n", de->d_name);
|
1999-01-19 20:01:56 +03:00
|
|
|
#else
|
1999-08-24 04:48:37 +04:00
|
|
|
printf(".");
|
1999-01-19 20:01:56 +03:00
|
|
|
#endif
|
|
|
|
|
1999-08-24 04:48:37 +04:00
|
|
|
chdir(de->d_name);
|
|
|
|
|
|
|
|
f = fopen(CONTENTS_FNAME, "r");
|
|
|
|
if (f == NULL)
|
|
|
|
err(1, "can't open %s/%s", de->d_name, CONTENTS_FNAME);
|
|
|
|
|
|
|
|
Plist.head = Plist.tail = NULL;
|
|
|
|
read_plist(&Plist, f);
|
|
|
|
p = find_plist(&Plist, PLIST_NAME);
|
|
|
|
if (p == NULL)
|
|
|
|
errx(1, "Package %s has no @name, aborting.\n",
|
|
|
|
de->d_name);
|
|
|
|
PkgName = p->name;
|
|
|
|
for (p = Plist.head; p; p = p->next) {
|
|
|
|
switch (p->type) {
|
|
|
|
case PLIST_FILE:
|
|
|
|
if (dirp == NULL) {
|
|
|
|
warnx("dirp not initialized, please send-pr!");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
(void) snprintf(file, sizeof(file), "%s/%s", dirp, p->name);
|
|
|
|
|
1999-09-13 04:32:14 +04:00
|
|
|
if (!(isfile(file) || islinktodir(file)))
|
1999-08-24 04:48:37 +04:00
|
|
|
warnx("%s: File %s is in %s but not on filesystem!",
|
|
|
|
PkgName, file, CONTENTS_FNAME);
|
|
|
|
else {
|
|
|
|
pkgdb_store(file, PkgName);
|
|
|
|
filecnt++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case PLIST_CWD:
|
|
|
|
if (strcmp(p->name, ".") != 0)
|
|
|
|
dirp = p->name;
|
|
|
|
else {
|
|
|
|
(void) snprintf(dir, sizeof(dir), "%s/%s", PkgDBDir, de->d_name);
|
|
|
|
dirp = dir;
|
|
|
|
}
|
|
|
|
break;
|
1999-11-29 23:09:54 +03:00
|
|
|
case PLIST_SRC:
|
|
|
|
warnx("@src is deprecated - please send-pr for %s!\n", PkgName);
|
|
|
|
break;
|
1999-08-24 04:48:37 +04:00
|
|
|
case PLIST_IGNORE:
|
|
|
|
p = p->next;
|
|
|
|
break;
|
|
|
|
case PLIST_SHOW_ALL:
|
|
|
|
case PLIST_CMD:
|
|
|
|
case PLIST_CHMOD:
|
|
|
|
case PLIST_CHOWN:
|
|
|
|
case PLIST_CHGRP:
|
|
|
|
case PLIST_COMMENT:
|
|
|
|
case PLIST_NAME:
|
|
|
|
case PLIST_UNEXEC:
|
|
|
|
case PLIST_DISPLAY:
|
|
|
|
case PLIST_PKGDEP:
|
|
|
|
case PLIST_MTREE:
|
|
|
|
case PLIST_DIR_RM:
|
|
|
|
case PLIST_IGNORE_INST:
|
|
|
|
case PLIST_OPTION:
|
|
|
|
case PLIST_PKGCFL:
|
|
|
|
break;
|
|
|
|
}
|
1999-01-19 20:01:56 +03:00
|
|
|
}
|
1999-08-24 04:48:37 +04:00
|
|
|
free_plist(&Plist);
|
|
|
|
fclose(f);
|
1999-01-19 20:01:56 +03:00
|
|
|
|
1999-08-24 04:48:37 +04:00
|
|
|
chdir("..");
|
1999-01-19 20:01:56 +03:00
|
|
|
|
1999-08-24 04:48:37 +04:00
|
|
|
pkgcnt++;
|
|
|
|
}
|
|
|
|
closedir(dp);
|
|
|
|
pkgdb_close();
|
1999-01-19 20:01:56 +03:00
|
|
|
|
1999-08-24 04:48:37 +04:00
|
|
|
printf("\n");
|
|
|
|
printf("Stored %d file%s from %d package%s in %s.\n",
|
|
|
|
filecnt, filecnt == 1 ? "" : "s",
|
|
|
|
pkgcnt, pkgcnt == 1 ? "" : "s",
|
|
|
|
_pkgdb_getPKGDB_FILE());
|
|
|
|
}
|
1999-01-19 20:01:56 +03:00
|
|
|
|
1999-08-24 04:48:37 +04:00
|
|
|
static void
|
|
|
|
checkall(void)
|
1999-01-19 20:01:56 +03:00
|
|
|
{
|
1999-08-24 04:48:37 +04:00
|
|
|
DIR *dp;
|
|
|
|
struct dirent *de;
|
|
|
|
|
2000-03-19 20:24:27 +03:00
|
|
|
pkgcnt = 0;
|
1999-08-24 04:48:37 +04:00
|
|
|
filecnt = 0;
|
|
|
|
|
|
|
|
setbuf(stdout, NULL);
|
|
|
|
chdir(_pkgdb_getPKGDB_DIR());
|
|
|
|
|
|
|
|
dp = opendir(".");
|
|
|
|
if (dp == NULL)
|
|
|
|
err(1, "opendir failed");
|
|
|
|
while ((de = readdir(dp))) {
|
|
|
|
if (!isdir(de->d_name))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (strcmp(de->d_name, ".") == 0 ||
|
|
|
|
strcmp(de->d_name, "..") == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
chdir(de->d_name);
|
|
|
|
|
|
|
|
check1pkg(de->d_name);
|
|
|
|
printf(".");
|
|
|
|
|
|
|
|
chdir("..");
|
|
|
|
|
|
|
|
pkgcnt++;
|
|
|
|
}
|
|
|
|
closedir(dp);
|
|
|
|
pkgdb_close();
|
1999-01-19 20:01:56 +03:00
|
|
|
|
|
|
|
|
1999-08-24 04:48:37 +04:00
|
|
|
printf("\n");
|
|
|
|
printf("Checked %d file%s from %d package%s.\n",
|
|
|
|
filecnt, (filecnt == 1) ? "" : "s",
|
|
|
|
pkgcnt, (pkgcnt == 1) ? "" : "s");
|
1999-01-19 20:01:56 +03:00
|
|
|
}
|
|
|
|
|
1999-03-22 08:02:39 +03:00
|
|
|
static int
|
|
|
|
checkpattern_fn(const char *pkg, char *data)
|
|
|
|
{
|
1999-08-24 04:48:37 +04:00
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = chdir(pkg);
|
|
|
|
if (rc == -1)
|
|
|
|
err(1, "Cannot chdir to %s/%s", _pkgdb_getPKGDB_DIR(), pkg);
|
|
|
|
|
|
|
|
check1pkg(pkg);
|
|
|
|
printf(".");
|
|
|
|
|
|
|
|
chdir("..");
|
|
|
|
|
|
|
|
return 0;
|
1999-03-22 08:02:39 +03:00
|
|
|
}
|
1999-01-19 20:01:56 +03:00
|
|
|
|
2000-05-09 02:48:42 +04:00
|
|
|
static int
|
|
|
|
lspattern_fn(const char *pkg, char *data)
|
|
|
|
{
|
|
|
|
printf("%s/%s\n", data, pkg);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-08-24 04:48:37 +04:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
1999-01-19 20:01:56 +03:00
|
|
|
{
|
1999-08-24 04:48:37 +04:00
|
|
|
if (argc < 2)
|
|
|
|
usage();
|
|
|
|
|
|
|
|
if (strcasecmp(argv[1], "rebuild") == 0) {
|
|
|
|
|
|
|
|
rebuild();
|
2000-05-09 02:48:42 +04:00
|
|
|
printf("Done.\n");
|
1999-08-24 04:48:37 +04:00
|
|
|
|
|
|
|
} else if (strcasecmp(argv[1], "check") == 0) {
|
|
|
|
|
|
|
|
argv++; /* argv[0] */
|
|
|
|
argv++; /* "check" */
|
|
|
|
|
|
|
|
if (*argv != NULL) {
|
|
|
|
/* args specified */
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
filecnt = 0;
|
|
|
|
|
|
|
|
setbuf(stdout, NULL);
|
|
|
|
|
|
|
|
rc = chdir(_pkgdb_getPKGDB_DIR());
|
|
|
|
if (rc == -1)
|
|
|
|
err(1, "Cannot chdir to %s", _pkgdb_getPKGDB_DIR());
|
|
|
|
|
|
|
|
while (*argv != NULL) {
|
|
|
|
if (ispkgpattern(*argv)) {
|
|
|
|
if (findmatchingname(_pkgdb_getPKGDB_DIR(), *argv, checkpattern_fn, NULL) == 0)
|
|
|
|
errx(1, "No matching pkg for %s.", *argv);
|
|
|
|
} else {
|
|
|
|
rc = chdir(*argv);
|
2000-03-19 20:24:27 +03:00
|
|
|
if (rc == -1) {
|
|
|
|
/* found nothing - try 'pkg-[0-9]*' */
|
|
|
|
char try[FILENAME_MAX];
|
|
|
|
|
|
|
|
snprintf(try, sizeof(try), "%s-[0-9]*", *argv);
|
|
|
|
if (findmatchingname(_pkgdb_getPKGDB_DIR(), try,
|
|
|
|
checkpattern_fn, NULL) <= 0) {
|
|
|
|
|
|
|
|
errx(1, "cannot find package %s", *argv);
|
|
|
|
} else {
|
|
|
|
/* nothing to do - all the work is/was
|
|
|
|
* done in checkpattern_fn() */
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
check1pkg(*argv);
|
|
|
|
printf(".");
|
|
|
|
|
|
|
|
chdir("..");
|
|
|
|
}
|
1999-08-24 04:48:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
argv++;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("\n");
|
|
|
|
printf("Checked %d file%s from %d package%s.\n",
|
|
|
|
filecnt, (filecnt == 1) ? "" : "s",
|
|
|
|
pkgcnt, (pkgcnt == 1) ? "" : "s");
|
|
|
|
} else {
|
|
|
|
checkall();
|
1999-03-22 08:02:39 +03:00
|
|
|
}
|
2000-05-09 02:48:42 +04:00
|
|
|
printf("Done.\n");
|
|
|
|
|
|
|
|
} else if (strcasecmp(argv[1], "lsall") == 0) {
|
|
|
|
int saved_wd;
|
|
|
|
|
|
|
|
argv++; /* argv[0] */
|
|
|
|
argv++; /* "check" */
|
|
|
|
|
|
|
|
/* preserve cwd */
|
|
|
|
saved_wd=open(".", O_RDONLY);
|
|
|
|
if (saved_wd == -1)
|
|
|
|
err(1, "Cannot save working dir");
|
|
|
|
|
|
|
|
while (*argv != NULL) {
|
|
|
|
/* args specified */
|
|
|
|
int rc;
|
|
|
|
char *basep, *dir;
|
|
|
|
char *cwd;
|
|
|
|
char base[FILENAME_MAX];
|
|
|
|
|
|
|
|
dir = dirname_of(*argv);
|
|
|
|
basep = basename_of(*argv);
|
|
|
|
snprintf(base, sizeof(base), "%s.tgz", basep);
|
|
|
|
|
|
|
|
fchdir(saved_wd);
|
|
|
|
rc = chdir(dir);
|
|
|
|
if (rc == -1)
|
|
|
|
err(1, "Cannot chdir to %s", _pkgdb_getPKGDB_DIR());
|
|
|
|
|
|
|
|
cwd = getwd(NULL);
|
|
|
|
if (findmatchingname(cwd, base, lspattern_fn, cwd) == -1)
|
|
|
|
errx(1, "Error in findmatchingname(\"%s\", \"%s\", ...)",
|
|
|
|
cwd, base);
|
|
|
|
free(cwd);
|
|
|
|
|
|
|
|
argv++;
|
|
|
|
}
|
|
|
|
|
|
|
|
close(saved_wd);
|
|
|
|
|
|
|
|
} else if (strcasecmp(argv[1], "lsbest") == 0) {
|
|
|
|
int saved_wd;
|
|
|
|
|
|
|
|
argv++; /* argv[0] */
|
|
|
|
argv++; /* "check" */
|
|
|
|
|
|
|
|
/* preserve cwd */
|
|
|
|
saved_wd=open(".", O_RDONLY);
|
|
|
|
if (saved_wd == -1)
|
|
|
|
err(1, "Cannot save working dir");
|
|
|
|
|
|
|
|
while (*argv != NULL) {
|
|
|
|
/* args specified */
|
|
|
|
int rc;
|
|
|
|
char *basep, *dir;
|
|
|
|
char *cwd;
|
|
|
|
char base[FILENAME_MAX];
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
dir = dirname_of(*argv);
|
|
|
|
basep = basename_of(*argv);
|
|
|
|
snprintf(base, sizeof(base), "%s.tgz", basep);
|
|
|
|
|
|
|
|
fchdir(saved_wd);
|
|
|
|
rc = chdir(dir);
|
|
|
|
if (rc == -1)
|
|
|
|
err(1, "Cannot chdir to %s", _pkgdb_getPKGDB_DIR());
|
|
|
|
|
|
|
|
cwd = getwd(NULL);
|
|
|
|
p = findbestmatchingname(cwd, base);
|
|
|
|
if (p)
|
|
|
|
printf("%s/%s\n", cwd, p);
|
|
|
|
free(cwd);
|
|
|
|
|
|
|
|
argv++;
|
|
|
|
}
|
|
|
|
|
|
|
|
close(saved_wd);
|
1999-01-19 20:01:56 +03:00
|
|
|
|
1999-08-24 04:48:37 +04:00
|
|
|
} else if (strcasecmp(argv[1], "list") == 0 ||
|
|
|
|
strcasecmp(argv[1], "dump") == 0) {
|
1999-01-19 20:01:56 +03:00
|
|
|
|
1999-08-24 04:48:37 +04:00
|
|
|
char *key, *val;
|
1999-01-19 20:01:56 +03:00
|
|
|
|
1999-08-24 04:48:37 +04:00
|
|
|
printf("Dumping pkgdb %s:\n", _pkgdb_getPKGDB_FILE());
|
|
|
|
|
|
|
|
if (pkgdb_open(1) == -1) {
|
|
|
|
err(1, "cannot open %s", _pkgdb_getPKGDB_FILE());
|
|
|
|
}
|
|
|
|
while ((key = pkgdb_iter())) {
|
|
|
|
val = pkgdb_retrieve(key);
|
|
|
|
|
|
|
|
printf("file: %-50s pkg: %s\n", key, val);
|
|
|
|
}
|
|
|
|
pkgdb_close();
|
1999-01-19 20:01:56 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
#ifdef PKGDB_DEBUG
|
1999-08-24 04:48:37 +04:00
|
|
|
else if (strcasecmp(argv[1], "del") == 0 ||
|
|
|
|
strcasecmp(argv[1], "delete") == 0) {
|
|
|
|
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
if (pkgdb_open(0) == -1)
|
|
|
|
err(1, "cannot open pkgdb");
|
|
|
|
|
|
|
|
rc = pkgdb_remove(argv[2]);
|
|
|
|
if (rc) {
|
|
|
|
if (errno)
|
|
|
|
perror("pkgdb_remove");
|
|
|
|
else
|
|
|
|
printf("Key not present in pkgdb.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
pkgdb_close();
|
|
|
|
|
|
|
|
} else if (strcasecmp(argv[1], "add") == 0) {
|
|
|
|
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
if (pkgdb_open(0) == -1) {
|
|
|
|
err(1, "cannot open pkgdb");
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = pkgdb_store(argv[2], argv[3]);
|
|
|
|
switch (rc) {
|
|
|
|
case -1:
|
|
|
|
perror("pkgdb_store");
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
printf("Key already present.\n");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* 0: everything ok */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
pkgdb_close();
|
1999-01-19 20:01:56 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|
1999-08-24 04:48:37 +04:00
|
|
|
else {
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
1999-01-19 20:01:56 +03:00
|
|
|
}
|
|
|
|
|
1999-08-24 04:48:37 +04:00
|
|
|
void
|
|
|
|
usage(void)
|
1999-01-19 20:01:56 +03:00
|
|
|
{
|
1999-08-24 04:48:37 +04:00
|
|
|
printf("Usage: %s command args ...\n"
|
|
|
|
"Where 'commands' and 'args' are:\n"
|
|
|
|
" rebuild - rebuild pkgdb from +CONTENTS files\n"
|
|
|
|
" check [pkg ...] - check md5 checksum of installed files\n"
|
1999-01-19 20:01:56 +03:00
|
|
|
#ifdef PKGDB_DEBUG
|
1999-08-24 04:48:37 +04:00
|
|
|
" add key value - add key & value\n"
|
|
|
|
" delete key - delete reference to key\n"
|
1999-01-19 20:01:56 +03:00
|
|
|
#endif
|
1999-08-24 04:48:37 +04:00
|
|
|
" dump - dump database\n"
|
|
|
|
,__progname);
|
|
|
|
exit(1);
|
1999-01-19 20:01:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cleanup(int signo)
|
|
|
|
{
|
1999-08-24 04:48:37 +04:00
|
|
|
;
|
1999-01-19 20:01:56 +03:00
|
|
|
}
|