Home | History | Annotate | Line # | Download | only in tunefs
tunefs.c revision 1.10
      1  1.10      cgd /*	$NetBSD: tunefs.c,v 1.10 1995/03/18 15:01:31 cgd Exp $	*/
      2  1.10      cgd 
      3   1.1      cgd /*
      4   1.8  mycroft  * Copyright (c) 1983, 1993
      5   1.8  mycroft  *	The Regents of the University of California.  All rights reserved.
      6   1.1      cgd  *
      7   1.1      cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1      cgd  * modification, are permitted provided that the following conditions
      9   1.1      cgd  * are met:
     10   1.1      cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1      cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1      cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1      cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1      cgd  *    documentation and/or other materials provided with the distribution.
     15   1.1      cgd  * 3. All advertising materials mentioning features or use of this software
     16   1.1      cgd  *    must display the following acknowledgement:
     17   1.1      cgd  *	This product includes software developed by the University of
     18   1.1      cgd  *	California, Berkeley and its contributors.
     19   1.1      cgd  * 4. Neither the name of the University nor the names of its contributors
     20   1.1      cgd  *    may be used to endorse or promote products derived from this software
     21   1.1      cgd  *    without specific prior written permission.
     22   1.1      cgd  *
     23   1.1      cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1      cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1      cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1      cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1      cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1      cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1      cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1      cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1      cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1      cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1      cgd  * SUCH DAMAGE.
     34   1.1      cgd  */
     35   1.1      cgd 
     36   1.1      cgd #ifndef lint
     37   1.8  mycroft static char copyright[] =
     38   1.8  mycroft "@(#) Copyright (c) 1983, 1993\n\
     39   1.8  mycroft 	The Regents of the University of California.  All rights reserved.\n";
     40   1.1      cgd #endif /* not lint */
     41   1.1      cgd 
     42   1.1      cgd #ifndef lint
     43  1.10      cgd #if 0
     44  1.10      cgd static char sccsid[] = "@(#)tunefs.c	8.2 (Berkeley) 4/19/94";
     45  1.10      cgd #else
     46  1.10      cgd static char rcsid[] = "$NetBSD: tunefs.c,v 1.10 1995/03/18 15:01:31 cgd Exp $";
     47  1.10      cgd #endif
     48   1.1      cgd #endif /* not lint */
     49   1.1      cgd 
     50   1.1      cgd /*
     51   1.1      cgd  * tunefs: change layout parameters to an existing file system.
     52   1.1      cgd  */
     53   1.1      cgd #include <sys/param.h>
     54   1.1      cgd #include <sys/stat.h>
     55   1.8  mycroft 
     56   1.8  mycroft #include <ufs/ffs/fs.h>
     57   1.8  mycroft 
     58   1.8  mycroft #include <errno.h>
     59   1.6      cgd #include <err.h>
     60   1.6      cgd #include <fcntl.h>
     61   1.1      cgd #include <fstab.h>
     62   1.1      cgd #include <stdio.h>
     63   1.1      cgd #include <paths.h>
     64   1.6      cgd #include <stdlib.h>
     65   1.6      cgd #include <unistd.h>
     66   1.6      cgd 
     67   1.6      cgd /* the optimization warning string template */
     68   1.8  mycroft #define	OPTWARN	"should optimize for %s with minfree %s %d%%"
     69   1.1      cgd 
     70   1.1      cgd union {
     71   1.1      cgd 	struct	fs sb;
     72   1.1      cgd 	char pad[MAXBSIZE];
     73   1.1      cgd } sbun;
     74   1.1      cgd #define	sblock sbun.sb
     75   1.1      cgd 
     76   1.1      cgd int fi;
     77   1.1      cgd long dev_bsize = 1;
     78   1.1      cgd 
     79   1.6      cgd void bwrite(daddr_t, char *, int);
     80   1.6      cgd int bread(daddr_t, char *, int);
     81   1.6      cgd void getsb(struct fs *, char *);
     82   1.6      cgd void usage __P((void));
     83   1.6      cgd 
     84   1.6      cgd int
     85   1.1      cgd main(argc, argv)
     86   1.1      cgd 	int argc;
     87   1.1      cgd 	char *argv[];
     88   1.1      cgd {
     89   1.1      cgd 	char *cp, *special, *name;
     90   1.1      cgd 	struct stat st;
     91   1.1      cgd 	int i;
     92   1.1      cgd 	int Aflag = 0;
     93   1.1      cgd 	struct fstab *fs;
     94   1.1      cgd 	char *chg[2], device[MAXPATHLEN];
     95   1.1      cgd 
     96   1.1      cgd 	argc--, argv++;
     97   1.1      cgd 	if (argc < 2)
     98   1.6      cgd 		usage();
     99   1.1      cgd 	special = argv[argc - 1];
    100   1.1      cgd 	fs = getfsfile(special);
    101   1.1      cgd 	if (fs)
    102   1.1      cgd 		special = fs->fs_spec;
    103   1.1      cgd again:
    104   1.1      cgd 	if (stat(special, &st) < 0) {
    105   1.1      cgd 		if (*special != '/') {
    106   1.1      cgd 			if (*special == 'r')
    107   1.1      cgd 				special++;
    108   1.1      cgd 			(void)sprintf(device, "%s/%s", _PATH_DEV, special);
    109   1.1      cgd 			special = device;
    110   1.1      cgd 			goto again;
    111   1.1      cgd 		}
    112   1.6      cgd 		err(1, "%s", special);
    113   1.1      cgd 	}
    114   1.9  mycroft 	if (!S_ISBLK(st.st_mode) && !S_ISCHR(st.st_mode))
    115   1.8  mycroft 		errx(10, "%s: not a block or character device", special);
    116   1.1      cgd 	getsb(&sblock, special);
    117   1.1      cgd 	for (; argc > 0 && argv[0][0] == '-'; argc--, argv++) {
    118   1.1      cgd 		for (cp = &argv[0][1]; *cp; cp++)
    119   1.1      cgd 			switch (*cp) {
    120   1.1      cgd 
    121   1.1      cgd 			case 'A':
    122   1.1      cgd 				Aflag++;
    123   1.1      cgd 				continue;
    124   1.1      cgd 
    125   1.1      cgd 			case 'a':
    126   1.1      cgd 				name = "maximum contiguous block count";
    127   1.1      cgd 				if (argc < 1)
    128   1.8  mycroft 					errx(10, "-a: missing %s", name);
    129   1.1      cgd 				argc--, argv++;
    130   1.1      cgd 				i = atoi(*argv);
    131   1.1      cgd 				if (i < 1)
    132   1.8  mycroft 					errx(10, "%s must be >= 1 (was %s)",
    133   1.6      cgd 					    name, *argv);
    134   1.6      cgd 				warnx("%s changes from %d to %d",
    135   1.6      cgd 				    name, sblock.fs_maxcontig, i);
    136   1.1      cgd 				sblock.fs_maxcontig = i;
    137   1.1      cgd 				continue;
    138   1.1      cgd 
    139   1.1      cgd 			case 'd':
    140   1.1      cgd 				name =
    141   1.1      cgd 				   "rotational delay between contiguous blocks";
    142   1.1      cgd 				if (argc < 1)
    143   1.8  mycroft 					errx(10, "-d: missing %s", name);
    144   1.1      cgd 				argc--, argv++;
    145   1.1      cgd 				i = atoi(*argv);
    146   1.6      cgd 				warnx("%s changes from %dms to %dms",
    147   1.6      cgd 				    name, sblock.fs_rotdelay, i);
    148   1.1      cgd 				sblock.fs_rotdelay = i;
    149   1.1      cgd 				continue;
    150   1.1      cgd 
    151   1.1      cgd 			case 'e':
    152   1.1      cgd 				name =
    153   1.1      cgd 				  "maximum blocks per file in a cylinder group";
    154   1.1      cgd 				if (argc < 1)
    155   1.8  mycroft 					errx(10, "-e: missing %s", name);
    156   1.1      cgd 				argc--, argv++;
    157   1.1      cgd 				i = atoi(*argv);
    158   1.1      cgd 				if (i < 1)
    159   1.8  mycroft 					errx(10, "%s must be >= 1 (was %s)",
    160   1.6      cgd 					    name, *argv);
    161   1.6      cgd 				warnx("%s changes from %d to %d",
    162   1.6      cgd 				    name, sblock.fs_maxbpg, i);
    163   1.1      cgd 				sblock.fs_maxbpg = i;
    164   1.1      cgd 				continue;
    165   1.1      cgd 
    166   1.1      cgd 			case 'm':
    167   1.1      cgd 				name = "minimum percentage of free space";
    168   1.1      cgd 				if (argc < 1)
    169   1.8  mycroft 					errx(10, "-m: missing %s", name);
    170   1.1      cgd 				argc--, argv++;
    171   1.1      cgd 				i = atoi(*argv);
    172   1.1      cgd 				if (i < 0 || i > 99)
    173   1.8  mycroft 					errx(10, "bad %s (%s)", name, *argv);
    174   1.6      cgd 				warnx("%s changes from %d%% to %d%%",
    175   1.6      cgd 				    name, sblock.fs_minfree, i);
    176   1.1      cgd 				sblock.fs_minfree = i;
    177   1.6      cgd 				if (i >= MINFREE &&
    178   1.6      cgd 				    sblock.fs_optim == FS_OPTSPACE)
    179   1.6      cgd 					warnx(OPTWARN, "time", ">=", MINFREE);
    180   1.6      cgd 				if (i < MINFREE &&
    181   1.6      cgd 				    sblock.fs_optim == FS_OPTTIME)
    182   1.6      cgd 					warnx(OPTWARN, "space", "<", MINFREE);
    183   1.1      cgd 				continue;
    184   1.1      cgd 
    185   1.1      cgd 			case 'o':
    186   1.1      cgd 				name = "optimization preference";
    187   1.1      cgd 				if (argc < 1)
    188   1.8  mycroft 					errx(10, "-o: missing %s", name);
    189   1.1      cgd 				argc--, argv++;
    190   1.1      cgd 				chg[FS_OPTSPACE] = "space";
    191   1.1      cgd 				chg[FS_OPTTIME] = "time";
    192   1.1      cgd 				if (strcmp(*argv, chg[FS_OPTSPACE]) == 0)
    193   1.1      cgd 					i = FS_OPTSPACE;
    194   1.1      cgd 				else if (strcmp(*argv, chg[FS_OPTTIME]) == 0)
    195   1.1      cgd 					i = FS_OPTTIME;
    196   1.1      cgd 				else
    197   1.8  mycroft 					errx(10, "bad %s (options are `space' or `time')",
    198   1.6      cgd 					    name);
    199   1.1      cgd 				if (sblock.fs_optim == i) {
    200   1.6      cgd 					warnx("%s remains unchanged as %s",
    201   1.6      cgd 					    name, chg[i]);
    202   1.1      cgd 					continue;
    203   1.1      cgd 				}
    204   1.6      cgd 				warnx("%s changes from %s to %s",
    205   1.6      cgd 				    name, chg[sblock.fs_optim], chg[i]);
    206   1.1      cgd 				sblock.fs_optim = i;
    207   1.6      cgd 				if (sblock.fs_minfree >= MINFREE &&
    208   1.6      cgd 				    i == FS_OPTSPACE)
    209   1.6      cgd 					warnx(OPTWARN, "time", ">=", MINFREE);
    210   1.6      cgd 				if (sblock.fs_minfree < MINFREE &&
    211   1.6      cgd 				    i == FS_OPTTIME)
    212   1.6      cgd 					warnx(OPTWARN, "space", "<", MINFREE);
    213   1.1      cgd 				continue;
    214   1.1      cgd 
    215   1.1      cgd 			default:
    216   1.6      cgd 				usage();
    217   1.1      cgd 			}
    218   1.1      cgd 	}
    219   1.1      cgd 	if (argc != 1)
    220   1.6      cgd 		usage();
    221   1.5      cgd 	bwrite((daddr_t)SBOFF / dev_bsize, (char *)&sblock, SBSIZE);
    222   1.1      cgd 	if (Aflag)
    223   1.1      cgd 		for (i = 0; i < sblock.fs_ncg; i++)
    224   1.1      cgd 			bwrite(fsbtodb(&sblock, cgsblock(&sblock, i)),
    225   1.1      cgd 			    (char *)&sblock, SBSIZE);
    226   1.1      cgd 	close(fi);
    227   1.1      cgd 	exit(0);
    228   1.6      cgd }
    229   1.6      cgd 
    230   1.6      cgd void
    231   1.6      cgd usage()
    232   1.6      cgd {
    233   1.8  mycroft 
    234   1.8  mycroft 	fprintf(stderr, "Usage: tunefs tuneup-options special-device\n");
    235   1.1      cgd 	fprintf(stderr, "where tuneup-options are:\n");
    236   1.1      cgd 	fprintf(stderr, "\t-a maximum contiguous blocks\n");
    237   1.1      cgd 	fprintf(stderr, "\t-d rotational delay between contiguous blocks\n");
    238   1.1      cgd 	fprintf(stderr, "\t-e maximum blocks per file in a cylinder group\n");
    239   1.1      cgd 	fprintf(stderr, "\t-m minimum percentage of free space\n");
    240   1.1      cgd 	fprintf(stderr, "\t-o optimization preference (`space' or `time')\n");
    241   1.8  mycroft 	exit(2);
    242   1.1      cgd }
    243   1.1      cgd 
    244   1.6      cgd void
    245   1.1      cgd getsb(fs, file)
    246   1.1      cgd 	register struct fs *fs;
    247   1.1      cgd 	char *file;
    248   1.1      cgd {
    249   1.1      cgd 
    250   1.1      cgd 	fi = open(file, 2);
    251   1.6      cgd 	if (fi < 0)
    252   1.8  mycroft 		err(3, "cannot open %s", file);
    253   1.6      cgd 	if (bread((daddr_t)SBOFF, (char *)fs, SBSIZE))
    254   1.8  mycroft 		err(4, "%s: bad super block", file);
    255   1.6      cgd 	if (fs->fs_magic != FS_MAGIC)
    256   1.8  mycroft 		err(5, "%s: bad magic number", file);
    257   1.1      cgd 	dev_bsize = fs->fs_fsize / fsbtodb(fs, 1);
    258   1.1      cgd }
    259   1.1      cgd 
    260   1.6      cgd void
    261   1.8  mycroft bwrite(blk, buf, size)
    262   1.8  mycroft 	daddr_t blk;
    263   1.1      cgd 	char *buf;
    264   1.6      cgd 	int size;
    265   1.1      cgd {
    266   1.8  mycroft 
    267   1.8  mycroft 	if (lseek(fi, (off_t)blk * dev_bsize, SEEK_SET) < 0)
    268   1.8  mycroft 		err(6, "FS SEEK");
    269   1.6      cgd 	if (write(fi, buf, size) != size)
    270   1.8  mycroft 		err(7, "FS WRITE");
    271   1.1      cgd }
    272   1.1      cgd 
    273   1.6      cgd int
    274   1.1      cgd bread(bno, buf, cnt)
    275   1.1      cgd 	daddr_t bno;
    276   1.1      cgd 	char *buf;
    277   1.6      cgd 	int cnt;
    278   1.1      cgd {
    279   1.8  mycroft 	int i;
    280   1.1      cgd 
    281   1.8  mycroft 	if (lseek(fi, (off_t)bno * dev_bsize, SEEK_SET) < 0)
    282   1.1      cgd 		return(1);
    283   1.1      cgd 	if ((i = read(fi, buf, cnt)) != cnt) {
    284   1.1      cgd 		for(i=0; i<sblock.fs_bsize; i++)
    285   1.1      cgd 			buf[i] = 0;
    286   1.1      cgd 		return (1);
    287   1.1      cgd 	}
    288   1.1      cgd 	return (0);
    289   1.1      cgd }
    290