#include <sys/cdefs.h>
#ifndef lint
__COPYRIGHT("@(#) Copyright (c) 1989, 1992, 1993\
The Regents of the University of California. All rights reserved.");
#endif
#ifndef lint
#if 0
static char sccsid[] = "@(#)newfs.c 8.5 (Berkeley) 5/24/95";
#else
__RCSID("$NetBSD: newfs.c,v 1.30 2015/10/15 06:24:33 dholland Exp $");
#endif
#endif
#include <sys/param.h>
#include <sys/ucred.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/file.h>
#include <sys/mount.h>
#include <sys/sysctl.h>
#include <sys/time.h>
#include <sys/disk.h>
#include <ufs/lfs/lfs.h>
#include <err.h>
#include <errno.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include <paths.h>
#include <util.h>
#include "config.h"
#include "extern.h"
#include "bufcache.h"
#include "partutil.h"
#define COMPAT
#ifdef COMPAT
const char lmsg[] = "%s: can't read disk label; disk type must be specified";
#else
const char lmsg[] = "%s: can't read disk label";
#endif
int Nflag = 0;
int fssize;
int sectorsize;
int fsize = 0;
int bsize = 0;
int ibsize = 0;
int interleave = 0;
int minfree = MINFREE;
int minfreeseg = 0;
int resvseg = 0;
u_int32_t roll_id = 0;
u_long memleft;
caddr_t membase;
#ifdef COMPAT
char *disktype;
#endif
int preen = 0;
char device[MAXPATHLEN];
char *progname, *special;
extern long dev_bsize;
static int64_t strsuftoi64(const char *, const char *, int64_t, int64_t, int *);
static int strtoint(const char *, const char *, int, int);
static void usage(void);
#define CHUNKSIZE (1024 * 1024)
static size_t
auto_segsize(int fd, off_t len, int version)
{
off_t off, bw;
time_t start, finish;
char buf[CHUNKSIZE];
long seeks;
size_t final;
int i;
time(&start);
finish = start;
for (off = 0; finish - start < 10; off += CHUNKSIZE) {
if (pread(fd, buf, CHUNKSIZE, off) < 0)
break;
time(&finish);
}
bw = off / (finish - start);
time(&start);
finish = start;
for (seeks = 0; finish - start < 10; ) {
off = (((double)rand()) * (btodb(len))) / ((off_t)RAND_MAX + 1);
if (pread(fd, buf, dbtob(1), dbtob(off)) < 0)
err(1, "pread");
time(&finish);
++seeks;
}
seeks /= (finish - start);
if (seeks == 0)
seeks = 1;
printf("bw = %ld B/s, seek time %ld ms (%ld seeks/s)\n",
(long)bw, 1000/seeks, seeks);
final = dbtob(btodb(4 * bw / seeks));
if (version == 1) {
for (i = 0; final; final >>= 1, i++)
;
final = 1 << i;
}
printf("using initial segment size %ld\n", (long)final);
return final;
}
int
main(int argc, char **argv)
{
int version, ch;
struct disk_geom geo;
struct dkwedge_info dkw;
struct stat st;
int debug, force, fsi, fso, lfs_segsize, maxpartitions, bitwidth;
uint secsize = 0;
daddr_t start;
const char *opstring;
int byte_sized = 0;
int r;
version = DFL_VERSION;
if ((progname = strrchr(*argv, '/')) != NULL)
++progname;
else
progname = *argv;
maxpartitions = getmaxpartitions();
if (maxpartitions > 26)
fatal("insane maxpartitions value %d", maxpartitions);
opstring = "AB:b:DFf:I:i:LM:m:NO:R:r:S:s:v:w:";
start = debug = force = lfs_segsize = bitwidth = 0;
while ((ch = getopt(argc, argv, opstring)) != -1)
switch(ch) {
case 'A':
lfs_segsize = -1;
break;
case 'B':
lfs_segsize = strsuftoi64("segment size", optarg, LFS_MINSEGSIZE, INT64_MAX, NULL);
break;
case 'D':
debug = 1;
break;
case 'F':
force = 1;
break;
case 'I':
interleave = strsuftoi64("interleave", optarg, 0, INT64_MAX, NULL);
break;
case 'L':
break;
case 'M':
minfreeseg = strsuftoi64("minfreeseg", optarg, 0, INT64_MAX, NULL);
break;
case 'N':
Nflag++;
break;
case 'O':
start = strsuftoi64("start", optarg, 0, INT64_MAX, NULL);
break;
case 'R':
resvseg = strsuftoi64("resvseg", optarg, 0, INT64_MAX, NULL);
break;
case 'S':
secsize = strsuftoi64("sector size", optarg, 1, INT64_MAX, NULL);
if (secsize <= 0 || (secsize & (secsize - 1)))
fatal("%s: bad sector size", optarg);
break;
#ifdef COMPAT
case 'T':
disktype = optarg;
break;
#endif
case 'b':
bsize = strsuftoi64("block size", optarg, LFS_MINBLOCKSIZE, INT64_MAX, NULL);
break;
case 'f':
fsize = strsuftoi64("fragment size", optarg, LFS_MINBLOCKSIZE, INT64_MAX, NULL);
break;
case 'i':
ibsize = strsuftoi64("inode block size", optarg, LFS_MINBLOCKSIZE, INT64_MAX, NULL);
break;
case 'm':
minfree = strsuftoi64("free space %", optarg, 0, 99, NULL);
break;
case 'r':
roll_id = strsuftoi64("roll-forward id", optarg, 1, UINT_MAX, NULL);
break;
case 's':
fssize = strsuftoi64("file system size", optarg, 0, INT64_MAX, &byte_sized);
break;
case 'v':
version = strsuftoi64("file system version", optarg, 1, LFS_VERSION, NULL);
break;
case 'w':
bitwidth = strtoint("bit width", optarg, 32, 64);
break;
case '?':
default:
usage();
}
argc -= optind;
argv += optind;
if (argc != 2 && argc != 1)
usage();
if (bitwidth != 32 && bitwidth != 64 && bitwidth != 0) {
errx(1, "bit width %d is not sensible; please use 32 or 64",
bitwidth);
}
if (bitwidth == 64 && version < 2) {
errx(1, "Cannot make a 64-bit version 1 volume");
}
special = argv[0];
if (strchr(special, '/') == NULL) {
(void)snprintf(device, sizeof(device), "%sr%s", _PATH_DEV,
special);
if (stat(device, &st) == -1)
(void)snprintf(device, sizeof(device), "%s%s",
_PATH_DEV, special);
special = device;
}
if (!Nflag) {
fso = open(special, O_RDWR, DEFFILEMODE);
if (debug && fso < 0) {
fso = open(special, O_CREAT | O_RDWR, DEFFILEMODE);
if (fso >= 0) {
char buf[512];
int i;
for (i = 0; i < fssize; i++)
write(fso, buf, sizeof(buf));
lseek(fso, 0, SEEK_SET);
}
}
if (fso < 0)
fatal("%s: %s", special, strerror(errno));
} else
fso = -1;
fsi = open(special, O_RDONLY);
if (fsi < 0)
fatal("%s: %s", special, strerror(errno));
if (fstat(fsi, &st) < 0)
fatal("%s: %s", special, strerror(errno));
if (!S_ISCHR(st.st_mode)) {
if (!S_ISREG(st.st_mode)) {
fatal("%s: neither a character special device "
"nor a regular file", special);
}
(void)strcpy(dkw.dkw_ptype, DKW_PTYPE_LFS);
if (secsize == 0)
secsize = 512;
dkw.dkw_size = st.st_size / secsize;
} else {
#ifdef COMPAT
if (disktype == NULL)
disktype = argv[1];
#endif
if (getdiskinfo(special, fsi, disktype, &geo, &dkw) == -1)
errx(1, lmsg, special);
if (dkw.dkw_size == 0)
fatal("%s: is zero sized", argv[0]);
if (!force && strcmp(dkw.dkw_ptype, DKW_PTYPE_LFS) != 0)
fatal("%s: is not `%s', but `%s'", argv[0],
DKW_PTYPE_LFS, dkw.dkw_ptype);
}
if (secsize == 0)
secsize = geo.dg_secsize;
dev_bsize = secsize;
if (byte_sized) {
fssize /= secsize;
}
if (force) {
(void)strcpy(dkw.dkw_ptype, DKW_PTYPE_LFS);
if (fssize) {
dkw.dkw_size = fssize;
}
} else
if (fssize != 0 && fssize < dkw.dkw_size)
dkw.dkw_size = fssize;
if (bitwidth == 0) {
if (dkw.dkw_size > 0x7fffffff) {
bitwidth = 64;
} else {
bitwidth = 32;
}
}
if (dkw.dkw_size > 0x7fffffff && bitwidth == 32) {
if (dkw.dkw_size >= 0xfffffffe) {
errx(1, "This volume is too large for a 32-bit LFS.");
}
warnx("Using negative block numbers; not recommended. "
"You should probably use -w 64.");
}
if (lfs_segsize == -1) {
if (!S_ISCHR(st.st_mode)) {
warnx("%s is not a character special device, ignoring -A", special);
lfs_segsize = 0;
} else
lfs_segsize = auto_segsize(fsi, dkw.dkw_size / secsize,
version);
}
r = make_lfs(fso, secsize, &dkw, minfree, bsize, fsize, lfs_segsize,
minfreeseg, resvseg, version, start, ibsize, interleave, roll_id,
bitwidth);
if (debug)
bufstats();
exit(r);
}
static int64_t
strsuftoi64(const char *desc, const char *arg, int64_t min, int64_t max, int *num_suffix)
{
int64_t result, r1;
int shift = 0;
char *ep;
errno = 0;
r1 = strtoll(arg, &ep, 10);
if (ep[0] != '\0' && ep[1] != '\0')
errx(1, "%s `%s' is not a valid number.", desc, arg);
switch (ep[0]) {
case '\0':
case 's': case 'S':
if (num_suffix != NULL)
*num_suffix = 0;
break;
case 'g': case 'G':
shift += 10;
case 'm': case 'M':
shift += 10;
case 'k': case 'K':
shift += 10;
case 'b': case 'B':
if (num_suffix != NULL)
*num_suffix = 1;
break;
default:
errx(1, "`%s' is not a valid suffix for %s.", ep, desc);
}
result = r1 << shift;
if (errno == ERANGE || result >> shift != r1)
errx(1, "%s `%s' is too large to convert.", desc, arg);
if (result < min)
errx(1, "%s `%s' (%" PRId64 ") is less than the minimum (%" PRId64 ").",
desc, arg, result, min);
if (result > max)
errx(1, "%s `%s' (%" PRId64 ") is greater than the maximum (%" PRId64 ").",
desc, arg, result, max);
return result;
}
static int
strtoint(const char *desc, const char *arg, int min, int max)
{
long result;
char *s;
errno = 0;
result = strtol(arg, &s, 10);
if (errno || *s != '\0') {
errx(1, "%s `%s' is not a valid number.", desc, arg);
}
#if LONG_MAX > INT_MAX
if (result > INT_MAX || result < INT_MIN) {
errx(1, "%s `%s' is out of range.", desc, arg);
}
#endif
if (result < min || result > max) {
errx(1, "%s `%s' is out of range.", desc, arg);
}
return (int)result;
}
void
usage()
{
fprintf(stderr, "usage: newfs_lfs [ -fsoptions ] special-device\n");
fprintf(stderr, "where fsoptions are:\n");
fprintf(stderr, "\t-A (autoconfigure segment size)\n");
fprintf(stderr, "\t-B segment size in bytes\n");
fprintf(stderr, "\t-D (debug)\n");
fprintf(stderr, "\t-M count of segments not counted in bfree\n");
fprintf(stderr,
"\t-N (do not create file system, just print out parameters)\n");
fprintf(stderr, "\t-O first segment offset in sectors\n");
fprintf(stderr, "\t-R count of segments reserved for the cleaner\n");
fprintf(stderr, "\t-b block size in bytes\n");
fprintf(stderr, "\t-f frag size in bytes\n");
fprintf(stderr, "\t-m minimum free space %%\n");
fprintf(stderr, "\t-s file system size in sectors\n");
fprintf(stderr, "\t-v version\n");
exit(1);
}