Restore its ability to reject a string longer than will fit within size_t that was lost by moving away from strnlen(). Determine the length inline rather than using strlen(). Move it from hacklib.c to alloc.c so that utility programs have easy access, and remove the copy of it from dlb_main.c. Fix a logic bug in str_start_is(). If a string was considered to be too long, it exited the loop when n was 0 but also performed post-decrement. So after the loop, n would be -1 and the 'if (n==0)' test would fail. panic() would occur if the initial string matched and happened to be LARGEST_INT-1 characters long.
552 lines
16 KiB
C
552 lines
16 KiB
C
/* NetHack 3.7 dlb_main.c $NHDT-Date: 1706213798 2024/01/25 20:16:38 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.27 $ */
|
|
/* Copyright (c) Kenneth Lorber, Bethesda, Maryland, 1993. */
|
|
/* NetHack may be freely redistributed. See license for details. */
|
|
|
|
/* data librarian; only useful if you are making the library version, DLBLIB
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include "dlb.h"
|
|
#if !defined(O_WRONLY) && !defined(MAC) && !defined(AZTEC_C)
|
|
#include <fcntl.h>
|
|
#endif
|
|
#if defined(__DJGPP__)
|
|
#include <string.h>
|
|
#endif
|
|
|
|
ATTRNORETURN static void xexit(int) NORETURN;
|
|
ATTRNORETURN extern void panic(const char *, ...) NORETURN;
|
|
char *eos(char *); /* also used by dlb.c */
|
|
FILE *fopen_datafile(const char *, const char *);
|
|
|
|
#ifdef DLB
|
|
#ifdef DLBLIB
|
|
static void grow_ld(libdir **, int *, int);
|
|
|
|
#define DLB_DIRECTORY "Directory" /* name of lib directory */
|
|
#define LIBLISTFILE "dlb.lst" /* default list file */
|
|
|
|
/* library functions (from dlb.c) */
|
|
extern boolean open_library(const char *, library *);
|
|
extern void close_library(library *);
|
|
|
|
static void Write(int, char *, long);
|
|
ATTRNORETURN static void usage(void) NORETURN;
|
|
ATTRNORETURN static void verbose_help(void) NORETURN;
|
|
static void write_dlb_directory(int, int, libdir *, long, long, long);
|
|
|
|
static char default_progname[] = "dlb";
|
|
static char *progname = default_progname;
|
|
|
|
/* fixed library and list file names - can be overridden if necessary */
|
|
static const char *library_file = DLBFILE;
|
|
static const char *list_file = LIBLISTFILE;
|
|
|
|
#ifdef AMIGA
|
|
static char origdir[255] = "";
|
|
#endif
|
|
|
|
#ifndef O_BINARY
|
|
#define O_BINARY 0
|
|
#endif
|
|
|
|
#define DLB_FILES_ALLOC 200 /* initial # of files we'll handle; can grow */
|
|
#define DLB_VERS 1 /* version of dlb file we will write */
|
|
|
|
/*
|
|
* How the file is encoded within the library. Don't use a space
|
|
* because (at least) the SunOS 4.1.3 C library will eat the white
|
|
* space instead of preserving it like the man page says it should.
|
|
*/
|
|
#define ENC_NORMAL 'n' /* normal: not compressed in any way */
|
|
|
|
/*
|
|
* If you know tar, you have a small clue how to use this (note: - does
|
|
* NOT mean stdin/stdout).
|
|
*
|
|
* dlb COMMANDoptions arg... files...
|
|
* commands:
|
|
* dlb x extract all files
|
|
* dlb c build the archive
|
|
* dlb t list the archive
|
|
* options:
|
|
* v verbose
|
|
* f file specify archive file (default DLBFILE)
|
|
* I file specify file for list of files (default LIBLISTFILE)
|
|
* C dir chdir to dir (used ONCE, not like tar's -C)
|
|
*/
|
|
|
|
ATTRNORETURN static void
|
|
usage(void)
|
|
{
|
|
(void) printf("Usage: %s [ctxCIfv] arguments... [files...]\n", progname);
|
|
(void) printf(" default library is %s\n", library_file);
|
|
(void) printf(" default list file is %s\n", list_file);
|
|
xexit(EXIT_FAILURE);
|
|
/*NOTREACHED*/
|
|
}
|
|
|
|
ATTRNORETURN static void
|
|
verbose_help(void)
|
|
{
|
|
static const char *const long_help[] = {
|
|
"", "dlb COMMANDoptions args... files...", " commands:",
|
|
" dlb ? print this text", " dlb h ditto",
|
|
" dlb x extract all files", " dlb c create the archive",
|
|
" dlb t list table of contents", " options:",
|
|
" v verbose operation",
|
|
" f file specify archive file name",
|
|
" I file specify file for list of file names",
|
|
" C dir change directory before processing any files", "",
|
|
(char *) 0
|
|
};
|
|
const char *const *str;
|
|
|
|
for (str = long_help; *str; str++)
|
|
(void) printf("%s\n", *str);
|
|
usage();
|
|
/*NOTREACHED*/
|
|
}
|
|
|
|
static void
|
|
Write(int out, char *buf, long len)
|
|
{
|
|
#if defined(MSDOS) && !defined(__DJGPP__)
|
|
unsigned short slen;
|
|
|
|
if (len > 65534) {
|
|
printf("%d Length specified for write() too large for 16 bit env.",
|
|
len);
|
|
xexit(EXIT_FAILURE);
|
|
}
|
|
slen = (unsigned short) len;
|
|
if (write(out, buf, slen) != slen) {
|
|
#else
|
|
if (write(out, buf, len) != len) {
|
|
#endif
|
|
printf("Write Error in '%s'\n", library_file);
|
|
xexit(EXIT_FAILURE);
|
|
}
|
|
}
|
|
#endif /* DLBLIB */
|
|
#endif /* DLB */
|
|
|
|
/* open_library(dlb.c) needs this (which normally comes from src/files.c) */
|
|
FILE *
|
|
fopen_datafile(const char *filename, const char *mode)
|
|
{
|
|
return fopen(filename, mode);
|
|
}
|
|
|
|
char *
|
|
eos(char *s)
|
|
{
|
|
while (*s)
|
|
s++;
|
|
return s;
|
|
}
|
|
|
|
#ifdef DLB
|
|
#define UNUSED_if_no_DLB /*empty*/
|
|
#else
|
|
#define UNUSED_if_no_DLB UNUSED
|
|
#endif
|
|
|
|
DISABLE_WARNING_UNREACHABLE_CODE
|
|
|
|
int
|
|
main(int argc UNUSED_if_no_DLB, char **argv UNUSED_if_no_DLB)
|
|
{
|
|
#ifdef DLB
|
|
#ifdef DLBLIB
|
|
int i, r;
|
|
int ap = 2; /* argument pointer */
|
|
int cp; /* command pointer */
|
|
int iseen = 0, fseen = 0, verbose = 0; /* flags */
|
|
char action = ' ';
|
|
library lib;
|
|
|
|
if (argc > 0)
|
|
progname = argv[0];
|
|
if (!progname || !*progname)
|
|
progname = default_progname;
|
|
#ifdef VMS
|
|
progname = vms_basename(progname, FALSE);
|
|
#endif
|
|
|
|
if (argc < 2) {
|
|
usage();
|
|
/* doesn't return */
|
|
}
|
|
|
|
for (cp = 0; argv[1][cp]; cp++) {
|
|
switch (argv[1][cp]) {
|
|
default:
|
|
usage(); /* doesn't return */
|
|
/*NOTREACHED*/
|
|
break;
|
|
case '-': /* silently ignore */
|
|
break;
|
|
case '?':
|
|
case 'h':
|
|
verbose_help();
|
|
/*NOTREACHED*/
|
|
break;
|
|
case 'I':
|
|
if (ap == argc)
|
|
usage();
|
|
list_file = argv[ap++];
|
|
if (iseen)
|
|
printf("Warning: multiple I options. Previous ignored.\n");
|
|
iseen = 1;
|
|
break;
|
|
case 'f':
|
|
if (ap == argc)
|
|
usage();
|
|
library_file = argv[ap++];
|
|
#ifdef VERSION_IN_DLB_FILENAME
|
|
library_file = build_dlb_filename(library_file);
|
|
#endif
|
|
if (fseen)
|
|
printf("Warning: multiple f options. Previous ignored.\n");
|
|
fseen = 1;
|
|
break;
|
|
case 'C':
|
|
if (ap == argc)
|
|
usage();
|
|
#ifdef AMIGA
|
|
if (!getcwd(origdir, sizeof(origdir))) {
|
|
printf("Can't get current directory.\n");
|
|
xexit(EXIT_FAILURE);
|
|
}
|
|
#endif
|
|
if (chdir(argv[ap++])) {
|
|
printf("Can't chdir to %s\n", argv[--ap]);
|
|
xexit(EXIT_FAILURE);
|
|
}
|
|
break;
|
|
case 'v':
|
|
verbose = 1;
|
|
break;
|
|
case 't':
|
|
case 'c':
|
|
case 'x':
|
|
if (action != ' ') {
|
|
printf("Only one of t,x,c may be specified.\n");
|
|
usage();
|
|
}
|
|
action = argv[1][cp];
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (argv[ap] && iseen) {
|
|
printf("Too many arguments.\n");
|
|
xexit(EXIT_FAILURE);
|
|
}
|
|
|
|
switch (action) {
|
|
default:
|
|
printf("Internal error - action.\n");
|
|
xexit(EXIT_FAILURE);
|
|
/*NOTREACHED*/
|
|
break;
|
|
|
|
case 't': /* list archive */
|
|
if (!open_library(library_file, &lib)) {
|
|
printf("Can't open dlb file\n");
|
|
xexit(EXIT_FAILURE);
|
|
}
|
|
|
|
for (i = 0; i < lib.nentries; i++) {
|
|
if (verbose)
|
|
printf("%-14s %6ld %6ld\n", lib.dir[i].fname,
|
|
lib.dir[i].foffset, lib.dir[i].fsize);
|
|
else
|
|
printf("%s\n", lib.dir[i].fname);
|
|
}
|
|
|
|
if (verbose)
|
|
printf("Revision:%ld File count:%ld String size:%ld\n", lib.rev,
|
|
lib.nentries, lib.strsize);
|
|
|
|
close_library(&lib);
|
|
/* xexit(EXIT_SUCCESS); */
|
|
break;
|
|
|
|
case 'x': { /* extract archive contents */
|
|
int f, n;
|
|
long remainder, total_read;
|
|
char buf[BUFSIZ];
|
|
|
|
if (!open_library(library_file, &lib)) {
|
|
printf("Can't open dlb file\n");
|
|
xexit(EXIT_FAILURE);
|
|
}
|
|
|
|
for (i = 0; i < lib.nentries; i++) {
|
|
if (argv[ap]) {
|
|
/* if files are listed, see if current is wanted */
|
|
int c;
|
|
for (c = ap; c < argc; c++)
|
|
if (!FILENAME_CMP(lib.dir[i].fname, argv[c]))
|
|
break;
|
|
if (c == argc)
|
|
continue; /* skip */
|
|
} else if (!FILENAME_CMP(lib.dir[i].fname, DLB_DIRECTORY)) {
|
|
/*
|
|
* Don't extract the directory unless the user
|
|
* specifically asks for it.
|
|
*
|
|
* Perhaps we should never extract the directory???
|
|
*/
|
|
continue;
|
|
}
|
|
fseek(lib.fdata, lib.dir[i].foffset, SEEK_SET);
|
|
|
|
f = open(lib.dir[i].fname,
|
|
O_WRONLY | O_TRUNC | O_BINARY | O_CREAT, 0640);
|
|
if (f < 0) {
|
|
printf("Can't create '%s'\n", lib.dir[i].fname);
|
|
xexit(EXIT_FAILURE);
|
|
}
|
|
|
|
/* read chunks from library and write them out */
|
|
total_read = 0;
|
|
do {
|
|
remainder = lib.dir[i].fsize - total_read;
|
|
if (remainder > (long) sizeof(buf))
|
|
r = (int) sizeof(buf);
|
|
else
|
|
r = (int) remainder;
|
|
|
|
n = (int) fread(buf, 1, r, lib.fdata);
|
|
if (n != r) {
|
|
printf("Read Error in '%s'\n", lib.dir[i].fname);
|
|
xexit(EXIT_FAILURE);
|
|
}
|
|
if (write(f, buf, n) != n) {
|
|
printf("Write Error in '%s'\n", lib.dir[i].fname);
|
|
xexit(EXIT_FAILURE);
|
|
}
|
|
|
|
total_read += n;
|
|
} while (total_read != lib.dir[i].fsize);
|
|
|
|
(void) close(f);
|
|
|
|
if (verbose)
|
|
printf("x %s\n", lib.dir[i].fname);
|
|
}
|
|
|
|
close_library(&lib);
|
|
/* xexit(EXIT_SUCCESS); */
|
|
break;
|
|
}
|
|
|
|
case 'c': /* create archive */
|
|
{
|
|
libdir *ld = 0;
|
|
int ldlimit = 0;
|
|
char buf[BUFSIZ];
|
|
int fd, out, nfiles = 0;
|
|
long dir_size, slen, flen, fsiz;
|
|
boolean rewrite_directory = FALSE;
|
|
|
|
/*
|
|
* Get names from either/both an argv list and a file
|
|
* list. This does not do any duplicate checking
|
|
*/
|
|
|
|
grow_ld(&ld, &ldlimit, DLB_FILES_ALLOC);
|
|
|
|
/* get file name in argv list */
|
|
if (argv[ap]) {
|
|
for (; ap < argc; ap++, nfiles++) {
|
|
if (nfiles == ldlimit)
|
|
grow_ld(&ld, &ldlimit, DLB_FILES_ALLOC / 5);
|
|
ld[nfiles].fname = dupstr(argv[ap]);
|
|
}
|
|
}
|
|
|
|
if (iseen) {
|
|
/* want to do a list file */
|
|
FILE *list = fopen(list_file, "r");
|
|
if (!list) {
|
|
printf("Can't open %s\n", list_file);
|
|
xexit(EXIT_FAILURE);
|
|
}
|
|
|
|
/* get file names, one per line */
|
|
for (; fgets(buf, sizeof(buf), list); nfiles++) {
|
|
if (nfiles == ldlimit)
|
|
grow_ld(&ld, &ldlimit, DLB_FILES_ALLOC / 5);
|
|
*(eos(buf) - 1) = '\0'; /* strip newline */
|
|
ld[nfiles].fname = dupstr(buf);
|
|
}
|
|
fclose(list);
|
|
}
|
|
|
|
if (nfiles == 0) {
|
|
printf("No files to archive\n");
|
|
xexit(EXIT_FAILURE);
|
|
}
|
|
|
|
/*
|
|
* Get file sizes and name string length. Don't include
|
|
* the directory information yet.
|
|
*/
|
|
for (i = 0, slen = 0, flen = 0; i < nfiles; i++) {
|
|
fd = open(ld[i].fname, O_RDONLY | O_BINARY, 0);
|
|
if (fd < 0) {
|
|
printf("Can't open %s\n", ld[i].fname);
|
|
xexit(EXIT_FAILURE);
|
|
}
|
|
ld[i].fsize = lseek(fd, 0, SEEK_END);
|
|
ld[i].foffset = flen;
|
|
|
|
slen += (long) strlen(ld[i].fname); /* don't add null (yet) */
|
|
flen += ld[i].fsize;
|
|
close(fd);
|
|
}
|
|
|
|
/* open output file */
|
|
out = open(library_file,
|
|
O_RDWR | O_TRUNC | O_BINARY | O_CREAT, FCMASK);
|
|
if (out < 0) {
|
|
printf("Can't open %s for output\n", library_file);
|
|
xexit(EXIT_FAILURE);
|
|
}
|
|
|
|
/* caculate directory size */
|
|
dir_size = 40 /* header line (see below) */
|
|
+ ((nfiles + 1) * 11) /* handling+file offset+SP+newline */
|
|
+ slen + (long) strlen(DLB_DIRECTORY); /* file names */
|
|
|
|
/* write directory */
|
|
write_dlb_directory(out, nfiles, ld, slen, dir_size, flen);
|
|
|
|
flen = 0L;
|
|
/* write each file */
|
|
for (i = 0; i < nfiles; i++) {
|
|
fd = open(ld[i].fname, O_RDONLY | O_BINARY, 0);
|
|
if (fd < 0) {
|
|
printf("Can't open input file '%s'\n", ld[i].fname);
|
|
xexit(EXIT_FAILURE);
|
|
}
|
|
if (verbose)
|
|
printf("%s\n", ld[i].fname);
|
|
|
|
fsiz = 0L;
|
|
while ((r = (int) read(fd, buf, sizeof buf)) != 0) {
|
|
if (r == -1) {
|
|
printf("Read Error in '%s'\n", ld[i].fname);
|
|
xexit(EXIT_FAILURE);
|
|
}
|
|
if (write(out, buf, r) != r) {
|
|
printf("Write Error in '%s'\n", ld[i].fname);
|
|
xexit(EXIT_FAILURE);
|
|
}
|
|
fsiz += r;
|
|
}
|
|
(void) close(fd);
|
|
if (fsiz != ld[i].fsize)
|
|
rewrite_directory = TRUE;
|
|
/* in case directory rewrite is needed */
|
|
ld[i].fsize = fsiz;
|
|
ld[i].foffset = flen;
|
|
flen += fsiz;
|
|
}
|
|
|
|
if (rewrite_directory) {
|
|
if (verbose)
|
|
printf("(rewriting dlb directory info)\n");
|
|
(void) lseek(out, 0, SEEK_SET); /* rewind */
|
|
write_dlb_directory(out, nfiles, ld, slen, dir_size, flen);
|
|
}
|
|
|
|
for (i = 0; i < nfiles; i++)
|
|
free((genericptr_t) ld[i].fname), ld[i].fname = 0;
|
|
free((genericptr_t) ld), ldlimit = 0;
|
|
|
|
(void) close(out);
|
|
/* xexit(EXIT_SUCCESS); */
|
|
break;
|
|
} /* case 'c' */
|
|
} /* switch */
|
|
#endif /* DLBLIB */
|
|
#endif /* DLB */
|
|
|
|
xexit(EXIT_SUCCESS);
|
|
/*NOTREACHED*/
|
|
return 0;
|
|
}
|
|
|
|
RESTORE_WARNING_UNREACHABLE_CODE
|
|
|
|
#ifdef DLB
|
|
#ifdef DLBLIB
|
|
|
|
static void
|
|
grow_ld(libdir **ld_p, int *ldlimit_p, int alloc_incr)
|
|
{
|
|
static libdir zerolibdir;
|
|
int i = 0, newlimit = *ldlimit_p + alloc_incr;
|
|
libdir *newld = (libdir *) alloc(newlimit * sizeof *newld);
|
|
|
|
if (*ld_p) {
|
|
for (; i < *ldlimit_p; ++i)
|
|
newld[i] = (*ld_p)[i];
|
|
free((genericptr_t) *ld_p);
|
|
}
|
|
*ld_p = newld, *ldlimit_p = newlimit;
|
|
for (; i < *ldlimit_p; ++i)
|
|
(*ld_p)[i] = zerolibdir;
|
|
}
|
|
|
|
static void
|
|
write_dlb_directory(int out, int nfiles, libdir *ld,
|
|
long slen, long dir_size, long flen)
|
|
{
|
|
char buf[BUFSIZ];
|
|
int i;
|
|
|
|
sprintf(buf, "%3ld %8ld %8ld %8ld %8ld\n",
|
|
(long) DLB_VERS, /* version of dlb file */
|
|
(long) nfiles + 1, /* # of entries (includes directory) */
|
|
/* string length + room for nulls */
|
|
(long) slen + (long) strlen(DLB_DIRECTORY) + nfiles + 1,
|
|
(long) dir_size, /* start of first file */
|
|
(long) flen + dir_size); /* total file size */
|
|
Write(out, buf, strlen(buf));
|
|
|
|
/* write each file entry */
|
|
#define ENTRY_FORMAT "%c%s %8ld\n"
|
|
sprintf(buf, ENTRY_FORMAT, ENC_NORMAL, DLB_DIRECTORY, (long) 0);
|
|
Write(out, buf, strlen(buf));
|
|
for (i = 0; i < nfiles; i++) {
|
|
sprintf(buf, ENTRY_FORMAT, ENC_NORMAL, /* encoding */
|
|
ld[i].fname, /* name */
|
|
ld[i].foffset + dir_size); /* offset */
|
|
Write(out, buf, strlen(buf));
|
|
}
|
|
}
|
|
|
|
#endif /* DLBLIB */
|
|
#endif /* DLB */
|
|
|
|
ATTRNORETURN static void
|
|
xexit(int retcd)
|
|
{
|
|
#ifdef DLB
|
|
#ifdef AMIGA
|
|
if (origdir[0])
|
|
chdir(origdir);
|
|
#endif
|
|
#endif
|
|
exit(retcd);
|
|
/*NOTREACHED*/
|
|
}
|
|
|
|
/*dlb_main.c*/
|