Home | History | Annotate | Line # | Download | only in fsirand
fsirand.c revision 1.29.8.2
      1  1.29.8.1       tls /*	$NetBSD: fsirand.c,v 1.29.8.2 2014/08/20 00:02:25 tls Exp $	*/
      2       1.1  christos 
      3      1.11  christos /*-
      4      1.11  christos  * Copyright (c) 1997 The NetBSD Foundation, Inc.
      5      1.11  christos  * All rights reserved.
      6      1.11  christos  *
      7      1.11  christos  * This code is derived from software contributed to The NetBSD Foundation
      8      1.11  christos  * by Christos Zoulas.
      9       1.1  christos  *
     10       1.1  christos  * Redistribution and use in source and binary forms, with or without
     11       1.1  christos  * modification, are permitted provided that the following conditions
     12       1.1  christos  * are met:
     13       1.1  christos  * 1. Redistributions of source code must retain the above copyright
     14       1.1  christos  *    notice, this list of conditions and the following disclaimer.
     15       1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     17       1.1  christos  *    documentation and/or other materials provided with the distribution.
     18       1.1  christos  *
     19      1.11  christos  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20      1.11  christos  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21      1.11  christos  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22      1.11  christos  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23      1.11  christos  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24      1.11  christos  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25      1.11  christos  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26      1.11  christos  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27      1.11  christos  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28      1.11  christos  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29      1.11  christos  * POSSIBILITY OF SUCH DAMAGE.
     30       1.1  christos  */
     31       1.1  christos 
     32       1.6     lukem #include <sys/cdefs.h>
     33       1.1  christos #ifndef lint
     34  1.29.8.1       tls __RCSID("$NetBSD: fsirand.c,v 1.29.8.2 2014/08/20 00:02:25 tls Exp $");
     35       1.1  christos #endif /* lint */
     36       1.1  christos 
     37      1.17     lukem #include <sys/param.h>
     38      1.17     lukem #include <sys/time.h>
     39      1.17     lukem #include <sys/vnode.h>
     40      1.17     lukem #include <sys/disklabel.h>
     41      1.17     lukem #include <sys/ioctl.h>
     42      1.17     lukem 
     43       1.1  christos #include <ctype.h>
     44      1.15     lukem #include <err.h>
     45      1.15     lukem #include <errno.h>
     46       1.1  christos #include <fcntl.h>
     47      1.15     lukem #include <stdio.h>
     48       1.1  christos #include <stdlib.h>
     49      1.15     lukem #include <string.h>
     50       1.1  christos #include <unistd.h>
     51      1.17     lukem #include <util.h>
     52      1.27  drochner #include <signal.h>
     53       1.1  christos 
     54       1.8    bouyer #include <ufs/ufs/ufs_bswap.h>
     55       1.1  christos 
     56      1.19     lukem #include <ufs/ufs/dinode.h>
     57       1.1  christos #include <ufs/ffs/fs.h>
     58       1.8    bouyer #include <ufs/ffs/ffs_extern.h>
     59       1.1  christos 
     60      1.29     joerg __dead static void usage(void);
     61      1.17     lukem static void getsblock(int, const char *, struct fs *);
     62      1.13     lukem static void fixinodes(int, struct fs *, struct disklabel *, int, long);
     63      1.15     lukem static void statussig(int);
     64       1.1  christos 
     65      1.20      fvdl int	needswap, ino, imax, is_ufs2;
     66      1.29     joerg static time_t	tstart;
     67      1.15     lukem 
     68       1.1  christos static void
     69      1.13     lukem usage(void)
     70       1.1  christos {
     71      1.12       cgd 
     72      1.15     lukem 	(void) fprintf(stderr,
     73      1.23      jmmv 	    "usage: %s [-F] [-p] [-x <constant>] <special>\n",
     74      1.12       cgd 	    getprogname());
     75       1.1  christos 	exit(1);
     76       1.1  christos }
     77       1.1  christos 
     78       1.1  christos 
     79      1.20      fvdl static const off_t sblock_try[] = SBLOCKSEARCH;
     80      1.20      fvdl 
     81      1.13     lukem /*
     82      1.13     lukem  * getsblock():
     83       1.1  christos  *	Return the superblock
     84       1.1  christos  */
     85       1.1  christos static void
     86      1.17     lukem getsblock(int fd, const char *name, struct fs *fs)
     87       1.1  christos {
     88      1.20      fvdl 	int i;
     89      1.20      fvdl 
     90      1.24       dsl 	for (i = 0; ; i++) {
     91      1.24       dsl 		if (sblock_try[i] == -1)
     92      1.24       dsl 			errx(1, "%s: can't find superblock", name);
     93      1.24       dsl 		if (pread(fd, fs, SBLOCKSIZE, sblock_try[i]) != SBLOCKSIZE)
     94      1.20      fvdl 			continue;
     95       1.1  christos 
     96      1.20      fvdl 		switch(fs->fs_magic) {
     97      1.20      fvdl 		case FS_UFS2_MAGIC:
     98      1.20      fvdl 			is_ufs2 = 1;
     99      1.20      fvdl 			/* FALLTHROUGH */
    100      1.20      fvdl 		case FS_UFS1_MAGIC:
    101      1.24       dsl 			break;
    102      1.20      fvdl 		case FS_UFS2_MAGIC_SWAPPED:
    103      1.20      fvdl 			is_ufs2 = 1;
    104      1.20      fvdl 			/* FALLTHROUGH */
    105      1.20      fvdl 		case FS_UFS1_MAGIC_SWAPPED:
    106       1.8    bouyer 			needswap = 1;
    107      1.24       dsl 			ffs_sb_swap(fs, fs);
    108      1.24       dsl 			break;
    109      1.20      fvdl 		default:
    110      1.20      fvdl 			continue;
    111      1.20      fvdl 		}
    112      1.24       dsl 
    113      1.24       dsl 		if (!is_ufs2 && sblock_try[i] == SBLOCK_UFS2)
    114      1.24       dsl 			continue;
    115      1.24       dsl 		break;
    116       1.9      ross 	}
    117       1.1  christos 
    118       1.1  christos 	if (fs->fs_ncg < 1)
    119      1.17     lukem 		errx(1, "%s: bad ncg in superblock", name);
    120       1.1  christos 
    121      1.20      fvdl 	if (fs->fs_sbsize > SBLOCKSIZE)
    122      1.17     lukem 		errx(1, "%s: superblock too large", name);
    123       1.1  christos }
    124       1.1  christos 
    125      1.15     lukem 
    126      1.13     lukem /*
    127      1.13     lukem  * fixinodes():
    128       1.1  christos  *	Randomize the inode generation numbers
    129       1.1  christos  */
    130       1.1  christos static void
    131      1.13     lukem fixinodes(int fd, struct fs *fs, struct disklabel *lab, int pflag, long xorval)
    132       1.1  christos {
    133  1.29.8.1       tls 	int inopb = FFS_INOPB(fs);
    134      1.20      fvdl 	int size;
    135      1.10   thorpej 	caddr_t buf;
    136      1.26     lukem 	struct ufs1_dinode *dp1 = NULL;
    137      1.26     lukem 	struct ufs2_dinode *dp2 = NULL;
    138      1.15     lukem 	int i;
    139       1.1  christos 
    140      1.20      fvdl 	size = is_ufs2 ? inopb * sizeof (struct ufs2_dinode) :
    141      1.20      fvdl 	    inopb * sizeof (struct ufs1_dinode);
    142      1.20      fvdl 
    143      1.10   thorpej 	if ((buf = malloc(size)) == NULL)
    144       1.1  christos 		err(1, "Out of memory");
    145       1.1  christos 
    146      1.20      fvdl 	if (is_ufs2)
    147      1.20      fvdl 		dp2 = (struct ufs2_dinode *)buf;
    148      1.20      fvdl 	else
    149      1.20      fvdl 		dp1 = (struct ufs1_dinode *)buf;
    150      1.20      fvdl 
    151       1.1  christos 	for (ino = 0, imax = fs->fs_ipg * fs->fs_ncg; ino < imax;) {
    152       1.5   mycroft 		off_t sp;
    153  1.29.8.2       tls 		sp = (off_t) FFS_FSBTODB(fs, ino_to_fsba(fs, ino)) *
    154       1.5   mycroft 		     (off_t) lab->d_secsize;
    155       1.1  christos 
    156       1.1  christos 		if (lseek(fd, sp, SEEK_SET) == (off_t) -1)
    157       1.1  christos 			err(1, "Seeking to inode %d failed", ino);
    158       1.1  christos 
    159      1.10   thorpej 		if (read(fd, buf, size) != size)
    160       1.1  christos 			err(1, "Reading inodes %d+%d failed", ino, inopb);
    161       1.1  christos 
    162      1.10   thorpej 		for (i = 0; i < inopb; i++) {
    163      1.20      fvdl 			if (is_ufs2) {
    164      1.20      fvdl 				if (pflag)
    165      1.20      fvdl 					printf("inode %10d   gen 0x%08x\n",
    166      1.20      fvdl 					    ino,
    167      1.20      fvdl 					    ufs_rw32(dp2[i].di_gen, needswap));
    168      1.20      fvdl 				else
    169      1.20      fvdl 					dp2[i].di_gen =
    170      1.22    itojun 					    ufs_rw32((arc4random() & INT32_MAX)^ xorval,
    171      1.20      fvdl 						needswap);
    172      1.20      fvdl 			} else {
    173      1.20      fvdl 				if (pflag)
    174      1.20      fvdl 					printf("inode %10d   gen 0x%08x\n",
    175      1.20      fvdl 					    ino,
    176      1.20      fvdl 					    ufs_rw32(dp1[i].di_gen, needswap));
    177      1.20      fvdl 				else
    178      1.20      fvdl 					dp1[i].di_gen =
    179      1.22    itojun 					    ufs_rw32((arc4random() & INT32_MAX) ^ xorval,
    180      1.20      fvdl 						needswap);
    181      1.20      fvdl 			}
    182       1.1  christos 			if (++ino > imax)
    183       1.1  christos 				errx(1, "Exceeded number of inodes");
    184       1.1  christos 		}
    185       1.1  christos 
    186       1.1  christos 		if (pflag)
    187       1.1  christos 			continue;
    188       1.1  christos 
    189       1.1  christos 		if (lseek(fd, sp, SEEK_SET) == (off_t) -1)
    190       1.1  christos 			err(1, "Seeking to inode %d failed", ino);
    191       1.1  christos 
    192      1.10   thorpej 		if (write(fd, buf, size) != size)
    193       1.1  christos 			err(1, "Writing inodes %d+%d failed", ino, inopb);
    194       1.1  christos 	}
    195      1.10   thorpej 	free(buf);
    196       1.1  christos }
    197       1.1  christos 
    198      1.15     lukem /*
    199      1.15     lukem  * statussig():
    200      1.15     lukem  *	display current status
    201      1.15     lukem  */
    202      1.29     joerg static void
    203      1.15     lukem statussig(int dummy)
    204      1.15     lukem {
    205      1.15     lukem 	char	msgbuf[256];
    206      1.15     lukem 	int	len, deltat;
    207  1.29.8.2       tls 	time_t	tnow;
    208      1.15     lukem 
    209      1.15     lukem 	(void)time(&tnow);
    210      1.15     lukem 	len = snprintf(msgbuf, sizeof(msgbuf),
    211      1.15     lukem 	    "fsirand: completed inode %d of %d (%3.2f%%)",
    212      1.15     lukem 	    ino, imax, (ino * 100.0) / imax);
    213      1.15     lukem 	if (imax - ino) {
    214      1.15     lukem 		deltat = tstart - tnow + (1.0 * (tnow - tstart)) / ino * imax;
    215      1.15     lukem 		len += snprintf(msgbuf + len, sizeof(msgbuf) - len,
    216      1.15     lukem 		    ", finished in %d:%02d\n", deltat / 60, deltat % 60);
    217      1.15     lukem 	} else {
    218      1.15     lukem 		len += snprintf(msgbuf + len, sizeof(msgbuf) - len, "\n");
    219      1.15     lukem 	}
    220      1.15     lukem 	write(STDERR_FILENO, msgbuf, len);
    221      1.15     lukem }
    222      1.15     lukem 
    223       1.1  christos int
    224      1.13     lukem main(int argc, char *argv[])
    225       1.1  christos {
    226      1.17     lukem 	const char *special;
    227      1.20      fvdl 	char buf[SBLOCKSIZE], device[MAXPATHLEN];
    228       1.1  christos 	struct fs *fs = (struct fs *) buf;
    229       1.1  christos 	struct disklabel lab;
    230      1.17     lukem 	long xorval;
    231       1.1  christos 	char *ep;
    232      1.17     lukem 	int fd, c, Fflag, pflag, openflags;
    233       1.1  christos 
    234      1.17     lukem 	xorval = 0;
    235      1.15     lukem 	Fflag = pflag = 0;
    236       1.1  christos 
    237      1.15     lukem 	while ((c = getopt(argc, argv, "Fpx:")) != -1)
    238       1.1  christos 		switch (c) {
    239      1.15     lukem 		case 'F':
    240      1.15     lukem 			Fflag++;
    241      1.15     lukem 			break;
    242       1.1  christos 		case 'p':
    243       1.1  christos 			pflag++;
    244       1.1  christos 			break;
    245       1.1  christos 		case 'x':
    246      1.21     lukem 			errno = 0;
    247       1.1  christos 			xorval = strtol(optarg, &ep, 0);
    248       1.4    kleink 			if ((xorval == LONG_MIN || xorval == LONG_MAX) &&
    249       1.1  christos 			    errno == ERANGE)
    250       1.1  christos 				err(1, "Out of range constant");
    251       1.1  christos 			if (*ep)
    252       1.1  christos 				errx(1, "Bad constant");
    253       1.1  christos 			break;
    254       1.1  christos 		default:
    255       1.1  christos 			usage();
    256       1.1  christos 		}
    257       1.1  christos 
    258       1.1  christos 	argv += optind;
    259       1.1  christos 	argc -= optind;
    260       1.1  christos 
    261       1.1  christos 	if (argc != 1)
    262       1.1  christos 		usage();
    263       1.1  christos 
    264      1.17     lukem 	special = argv[0];
    265      1.17     lukem 	openflags = pflag ? O_RDONLY : O_RDWR;
    266      1.17     lukem 	if (Fflag)
    267      1.17     lukem 		fd = open(special, openflags);
    268      1.17     lukem 	else {
    269      1.17     lukem 		fd = opendisk(special, openflags, device, sizeof(device), 0);
    270      1.17     lukem 		special = device;
    271      1.17     lukem 	}
    272      1.17     lukem 	if (fd == -1)
    273      1.17     lukem 		err(1, "Cannot open `%s'", special);
    274       1.1  christos 
    275      1.15     lukem 	if (Fflag) {
    276      1.15     lukem 		memset(&lab, 0, sizeof(lab));
    277      1.15     lukem 		lab.d_secsize = DEV_BSIZE;	/* XXX */
    278      1.17     lukem 	} else {
    279      1.15     lukem 		if (ioctl(fd, DIOCGDINFO, &lab) == -1)
    280      1.17     lukem 			err(1, "%s: cannot get disklabel information", special);
    281      1.17     lukem 	}
    282      1.15     lukem 
    283      1.15     lukem 	time(&tstart);
    284      1.15     lukem 	(void)signal(SIGINFO, statussig);
    285      1.17     lukem 	getsblock(fd, special, fs);
    286       1.1  christos 	fixinodes(fd, fs, &lab, pflag, xorval);
    287       1.1  christos 
    288       1.1  christos 	(void) close(fd);
    289       1.1  christos 	return 0;
    290       1.1  christos }
    291