1999-07-15 23:09:40 +04:00
|
|
|
/* $NetBSD: newfs.c,v 1.2 1999/07/15 19:09:40 perseant Exp $ */
|
1995-03-18 17:54:19 +03:00
|
|
|
|
1994-06-08 23:27:32 +04:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1989, 1992, 1993
|
|
|
|
* The Regents of the University of California. 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:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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.
|
|
|
|
*/
|
|
|
|
|
1997-09-15 10:55:39 +04:00
|
|
|
#include <sys/cdefs.h>
|
1994-06-08 23:27:32 +04:00
|
|
|
#ifndef lint
|
1997-09-15 10:55:39 +04:00
|
|
|
__COPYRIGHT("@(#) Copyright (c) 1989, 1992, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n");
|
1994-06-08 23:27:32 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
1995-03-18 17:54:19 +03:00
|
|
|
#if 0
|
1998-03-01 05:20:01 +03:00
|
|
|
static char sccsid[] = "@(#)newfs.c 8.5 (Berkeley) 5/24/95";
|
1995-03-18 17:54:19 +03:00
|
|
|
#else
|
1999-07-15 23:09:40 +04:00
|
|
|
__RCSID("$NetBSD: newfs.c,v 1.2 1999/07/15 19:09:40 perseant Exp $");
|
1995-03-18 17:54:19 +03:00
|
|
|
#endif
|
1994-06-08 23:27:32 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* newfs: friendly front end to mkfs
|
|
|
|
*/
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/ucred.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/disklabel.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/mount.h>
|
1995-06-28 06:21:02 +04:00
|
|
|
#include <sys/sysctl.h>
|
1994-06-08 23:27:32 +04:00
|
|
|
|
|
|
|
#include <ufs/ufs/dir.h>
|
|
|
|
#include <ufs/ufs/dinode.h>
|
|
|
|
|
1999-01-20 01:23:36 +03:00
|
|
|
#include <disktab.h>
|
1994-06-08 23:27:32 +04:00
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <paths.h>
|
1996-05-16 11:13:01 +04:00
|
|
|
#include <util.h>
|
1994-06-08 23:27:32 +04:00
|
|
|
#include "config.h"
|
|
|
|
#include "extern.h"
|
|
|
|
|
|
|
|
#define COMPAT /* allow non-labeled disks */
|
|
|
|
|
|
|
|
int Nflag; /* run without writing file system */
|
|
|
|
int fssize; /* file system size */
|
|
|
|
int sectorsize; /* bytes/sector */
|
|
|
|
int fsize = 0; /* fragment size */
|
|
|
|
int bsize = 0; /* block size */
|
|
|
|
int minfree = MINFREE; /* free space threshold */
|
|
|
|
int bbsize = BBSIZE; /* boot block size */
|
|
|
|
int sbsize = SBSIZE; /* superblock size */
|
|
|
|
u_long memleft; /* virtual memory available */
|
|
|
|
caddr_t membase; /* start address of memory based filesystem */
|
|
|
|
#ifdef COMPAT
|
|
|
|
char *disktype;
|
|
|
|
int unlabeled;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
char device[MAXPATHLEN];
|
|
|
|
char *progname, *special;
|
|
|
|
|
1997-08-01 10:18:29 +04:00
|
|
|
int main __P((int, char **));
|
1994-06-08 23:27:32 +04:00
|
|
|
static struct disklabel *getdisklabel __P((char *, int));
|
|
|
|
static struct disklabel *debug_readlabel __P((int));
|
1997-08-01 10:18:29 +04:00
|
|
|
#ifdef notdef
|
1994-06-08 23:27:32 +04:00
|
|
|
static void rewritelabel __P((char *, int, struct disklabel *));
|
1997-08-01 10:18:29 +04:00
|
|
|
#endif
|
1994-06-08 23:27:32 +04:00
|
|
|
static void usage __P((void));
|
|
|
|
|
|
|
|
int
|
|
|
|
main(argc, argv)
|
|
|
|
int argc;
|
|
|
|
char *argv[];
|
|
|
|
{
|
1997-09-15 15:40:28 +04:00
|
|
|
int ch;
|
|
|
|
struct partition *pp;
|
|
|
|
struct disklabel *lp;
|
1994-06-08 23:27:32 +04:00
|
|
|
struct stat st;
|
1995-06-28 06:21:02 +04:00
|
|
|
int debug, lfs, fsi, fso, segsize, maxpartitions;
|
1994-06-08 23:27:32 +04:00
|
|
|
char *cp, *opstring;
|
|
|
|
|
1997-08-01 10:18:29 +04:00
|
|
|
if ((progname = strrchr(*argv, '/')) != NULL)
|
1994-06-08 23:27:32 +04:00
|
|
|
++progname;
|
|
|
|
else
|
|
|
|
progname = *argv;
|
|
|
|
|
1995-06-28 06:21:02 +04:00
|
|
|
maxpartitions = getmaxpartitions();
|
|
|
|
if (maxpartitions > 26)
|
|
|
|
fatal("insane maxpartitions value %d", maxpartitions);
|
|
|
|
|
1999-07-15 23:09:40 +04:00
|
|
|
opstring = "B:DLNb:f:m:s:";
|
1994-06-08 23:27:32 +04:00
|
|
|
|
|
|
|
debug = lfs = segsize = 0;
|
1997-09-15 10:55:39 +04:00
|
|
|
while ((ch = getopt(argc, argv, opstring)) != -1)
|
1994-06-08 23:27:32 +04:00
|
|
|
switch(ch) {
|
|
|
|
case 'B': /* LFS segment size */
|
|
|
|
if ((segsize = atoi(optarg)) < LFS_MINSEGSIZE)
|
|
|
|
fatal("%s: bad segment size", optarg);
|
|
|
|
break;
|
|
|
|
case 'D':
|
|
|
|
debug = 1;
|
|
|
|
break;
|
|
|
|
case 'L': /* Create lfs */
|
|
|
|
lfs = 1;
|
|
|
|
break;
|
|
|
|
case 'N':
|
|
|
|
Nflag++;
|
|
|
|
break;
|
|
|
|
#ifdef COMPAT
|
|
|
|
case 'T':
|
|
|
|
disktype = optarg;
|
1999-07-15 23:09:40 +04:00
|
|
|
break;
|
|
|
|
#endif
|
1994-06-08 23:27:32 +04:00
|
|
|
case 'b': /* used for LFS */
|
|
|
|
if ((bsize = atoi(optarg)) < LFS_MINBLOCKSIZE)
|
|
|
|
fatal("%s: bad block size", optarg);
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
if ((fsize = atoi(optarg)) <= 0)
|
|
|
|
fatal("%s: bad frag size", optarg);
|
|
|
|
break;
|
1999-07-15 23:09:40 +04:00
|
|
|
case 'm':
|
1994-06-08 23:27:32 +04:00
|
|
|
if ((minfree = atoi(optarg)) < 0 || minfree > 99)
|
|
|
|
fatal("%s: bad free space %%\n", optarg);
|
|
|
|
break;
|
1999-07-15 23:09:40 +04:00
|
|
|
case 's':
|
1994-06-08 23:27:32 +04:00
|
|
|
if ((fssize = atoi(optarg)) <= 0)
|
|
|
|
fatal("%s: bad file system size", optarg);
|
|
|
|
break;
|
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
1999-07-15 23:09:40 +04:00
|
|
|
if (argc != 2 && argc != 1)
|
1994-06-08 23:27:32 +04:00
|
|
|
usage();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the -N flag isn't specified, open the output file. If no path
|
|
|
|
* prefix, try /dev/r%s and then /dev/%s.
|
|
|
|
*/
|
|
|
|
special = argv[0];
|
1994-09-23 18:26:58 +04:00
|
|
|
if (strchr(special, '/') == NULL) {
|
1998-07-28 23:22:54 +04:00
|
|
|
(void)snprintf(device, sizeof(device), "%sr%s", _PATH_DEV,
|
|
|
|
special);
|
1994-06-08 23:27:32 +04:00
|
|
|
if (stat(device, &st) == -1)
|
1998-07-28 23:22:54 +04:00
|
|
|
(void)snprintf(device, sizeof(device), "%s%s",
|
|
|
|
_PATH_DEV, special);
|
1994-06-08 23:27:32 +04:00
|
|
|
special = device;
|
|
|
|
}
|
|
|
|
if (!Nflag) {
|
|
|
|
fso = open(special,
|
|
|
|
(debug ? O_CREAT : 0) | O_WRONLY, DEFFILEMODE);
|
|
|
|
if (fso < 0)
|
|
|
|
fatal("%s: %s", special, strerror(errno));
|
|
|
|
} else
|
|
|
|
fso = -1;
|
|
|
|
|
|
|
|
/* Open the input file. */
|
|
|
|
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));
|
|
|
|
|
1999-07-15 23:09:40 +04:00
|
|
|
if (!debug && !S_ISCHR(st.st_mode))
|
1994-06-08 23:27:32 +04:00
|
|
|
(void)printf("%s: %s: not a character-special device\n",
|
|
|
|
progname, special);
|
1994-09-23 18:26:58 +04:00
|
|
|
cp = strchr(argv[0], '\0') - 1;
|
1997-08-01 10:18:29 +04:00
|
|
|
if (!debug
|
|
|
|
&& (cp == 0 || ((*cp < 'a' || *cp > ('a' + maxpartitions - 1))
|
|
|
|
&& !isdigit(*cp))))
|
1994-06-08 23:27:32 +04:00
|
|
|
fatal("%s: can't figure out file system partition", argv[0]);
|
|
|
|
|
|
|
|
#ifdef COMPAT
|
1999-07-15 23:09:40 +04:00
|
|
|
if (disktype == NULL)
|
1994-06-08 23:27:32 +04:00
|
|
|
disktype = argv[1];
|
|
|
|
#endif
|
|
|
|
if (debug)
|
|
|
|
lp = debug_readlabel(fsi);
|
|
|
|
else
|
|
|
|
lp = getdisklabel(special, fsi);
|
|
|
|
|
|
|
|
if (isdigit(*cp))
|
|
|
|
pp = &lp->d_partitions[0];
|
|
|
|
else
|
|
|
|
pp = &lp->d_partitions[*cp - 'a'];
|
|
|
|
if (pp->p_size == 0)
|
|
|
|
fatal("%s: `%c' partition is unavailable", argv[0], *cp);
|
|
|
|
|
|
|
|
/* If we're making a LFS, we break out here */
|
1998-03-01 05:20:01 +03:00
|
|
|
exit(make_lfs(fso, lp, pp, minfree, bsize, fsize, segsize));
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef COMPAT
|
|
|
|
char lmsg[] = "%s: can't read disk label; disk type must be specified";
|
|
|
|
#else
|
|
|
|
char lmsg[] = "%s: can't read disk label";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static struct disklabel *
|
|
|
|
getdisklabel(s, fd)
|
|
|
|
char *s;
|
|
|
|
int fd;
|
|
|
|
{
|
|
|
|
static struct disklabel lab;
|
|
|
|
|
|
|
|
if (ioctl(fd, DIOCGDINFO, (char *)&lab) < 0) {
|
|
|
|
#ifdef COMPAT
|
|
|
|
if (disktype) {
|
1997-08-01 10:18:29 +04:00
|
|
|
struct disklabel *lp;
|
1994-06-08 23:27:32 +04:00
|
|
|
|
|
|
|
unlabeled++;
|
|
|
|
lp = getdiskbyname(disktype);
|
|
|
|
if (lp == NULL)
|
|
|
|
fatal("%s: unknown disk type", disktype);
|
|
|
|
return (lp);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
(void)fprintf(stderr,
|
|
|
|
"%s: ioctl (GDINFO): %s\n", progname, strerror(errno));
|
|
|
|
fatal(lmsg, s);
|
|
|
|
}
|
|
|
|
return (&lab);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct disklabel *
|
|
|
|
debug_readlabel(fd)
|
|
|
|
int fd;
|
|
|
|
{
|
|
|
|
static struct disklabel lab;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
if ((n = read(fd, &lab, sizeof(struct disklabel))) < 0)
|
|
|
|
fatal("unable to read disk label: %s", strerror(errno));
|
|
|
|
else if (n < sizeof(struct disklabel))
|
|
|
|
fatal("short read of disklabel: %d of %d bytes", n,
|
|
|
|
sizeof(struct disklabel));
|
|
|
|
return(&lab);
|
|
|
|
}
|
|
|
|
|
1997-08-01 10:18:29 +04:00
|
|
|
#ifdef notdef
|
1994-06-08 23:27:32 +04:00
|
|
|
static void
|
|
|
|
rewritelabel(s, fd, lp)
|
|
|
|
char *s;
|
|
|
|
int fd;
|
1997-09-15 15:40:28 +04:00
|
|
|
struct disklabel *lp;
|
1994-06-08 23:27:32 +04:00
|
|
|
{
|
|
|
|
#ifdef COMPAT
|
|
|
|
if (unlabeled)
|
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
lp->d_checksum = 0;
|
|
|
|
lp->d_checksum = dkcksum(lp);
|
|
|
|
if (ioctl(fd, DIOCWDINFO, (char *)lp) < 0) {
|
|
|
|
(void)fprintf(stderr,
|
|
|
|
"%s: ioctl (WDINFO): %s\n", progname, strerror(errno));
|
|
|
|
fatal("%s: can't rewrite disk label", s);
|
|
|
|
}
|
1998-10-20 05:48:14 +04:00
|
|
|
#if __vax__
|
1994-06-08 23:27:32 +04:00
|
|
|
if (lp->d_type == DTYPE_SMD && lp->d_flags & D_BADSECT) {
|
1997-09-15 15:40:28 +04:00
|
|
|
int i;
|
1994-06-08 23:27:32 +04:00
|
|
|
int cfd;
|
|
|
|
daddr_t alt;
|
|
|
|
char specname[64];
|
|
|
|
char blk[1024];
|
|
|
|
char *cp;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make name for 'c' partition.
|
|
|
|
*/
|
|
|
|
strcpy(specname, s);
|
|
|
|
cp = specname + strlen(specname) - 1;
|
|
|
|
if (!isdigit(*cp))
|
|
|
|
*cp = 'c';
|
|
|
|
cfd = open(specname, O_WRONLY);
|
|
|
|
if (cfd < 0)
|
|
|
|
fatal("%s: %s", specname, strerror(errno));
|
1994-09-23 18:26:58 +04:00
|
|
|
memset(blk, 0, sizeof(blk));
|
1994-06-08 23:27:32 +04:00
|
|
|
*(struct disklabel *)(blk + LABELOFFSET) = *lp;
|
|
|
|
alt = lp->d_ncylinders * lp->d_secpercyl - lp->d_nsectors;
|
|
|
|
for (i = 1; i < 11 && i < lp->d_nsectors; i += 2) {
|
1997-08-25 23:31:43 +04:00
|
|
|
if (lseek(cfd, (off_t)((alt + i) * lp->d_secsize),
|
|
|
|
SEEK_SET) == -1)
|
1994-06-08 23:27:32 +04:00
|
|
|
fatal("lseek to badsector area: %s",
|
|
|
|
strerror(errno));
|
|
|
|
if (write(cfd, blk, lp->d_secsize) < lp->d_secsize)
|
|
|
|
fprintf(stderr,
|
|
|
|
"%s: alternate label %d write: %s\n",
|
|
|
|
progname, i/2, strerror(errno));
|
|
|
|
}
|
|
|
|
close(cfd);
|
|
|
|
}
|
1997-08-01 10:18:29 +04:00
|
|
|
#endif /* vax */
|
1994-06-08 23:27:32 +04:00
|
|
|
}
|
1997-08-01 10:18:29 +04:00
|
|
|
#endif /* notdef */
|
1994-06-08 23:27:32 +04:00
|
|
|
|
|
|
|
void
|
|
|
|
usage()
|
|
|
|
{
|
1999-07-15 23:09:40 +04:00
|
|
|
fprintf(stderr, "usage: newfs_lfs [ -fsoptions ] special-device\n");
|
1994-06-08 23:27:32 +04:00
|
|
|
fprintf(stderr, "where fsoptions are:\n");
|
|
|
|
fprintf(stderr, "\t-B LFS segment size\n");
|
|
|
|
fprintf(stderr, "\t-D debug\n");
|
1999-07-15 23:09:40 +04:00
|
|
|
/* fprintf(stderr, "\t-L create LFS file system\n"); */
|
1994-06-08 23:27:32 +04:00
|
|
|
fprintf(stderr,
|
|
|
|
"\t-N do not create file system, just print out parameters\n");
|
|
|
|
fprintf(stderr, "\t-b block size\n");
|
|
|
|
fprintf(stderr, "\t-f frag size\n");
|
|
|
|
fprintf(stderr, "\t-m minimum free space %%\n");
|
|
|
|
fprintf(stderr, "\t-s file system size (sectors)\n");
|
|
|
|
exit(1);
|
|
|
|
}
|