Home | History | Annotate | Line # | Download | only in fdformat
fdformat.c revision 1.7
      1  1.7  christos /*	$NetBSD: fdformat.c,v 1.7 2001/02/05 01:45:32 christos Exp $	*/
      2  1.5   thorpej 
      3  1.1       jtk /*-
      4  1.5   thorpej  * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
      5  1.5   thorpej  * All rights reserved.
      6  1.5   thorpej  *
      7  1.5   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8  1.5   thorpej  * by John Kohl.
      9  1.1       jtk  *
     10  1.1       jtk  * Redistribution and use in source and binary forms, with or without
     11  1.1       jtk  * modification, are permitted provided that the following conditions
     12  1.1       jtk  * are met:
     13  1.1       jtk  * 1. Redistributions of source code must retain the above copyright
     14  1.1       jtk  *    notice, this list of conditions and the following disclaimer.
     15  1.1       jtk  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1       jtk  *    notice, this list of conditions and the following disclaimer in the
     17  1.1       jtk  *    documentation and/or other materials provided with the distribution.
     18  1.1       jtk  * 3. All advertising materials mentioning features or use of this software
     19  1.1       jtk  *    must display the following acknowledgement:
     20  1.5   thorpej  *        This product includes software developed by the NetBSD
     21  1.5   thorpej  *	  Foundation, Inc. and its contributors.
     22  1.5   thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.5   thorpej  *    contributors may be used to endorse or promote products derived
     24  1.5   thorpej  *    from this software without specific prior written permission.
     25  1.1       jtk  *
     26  1.5   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.5   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.5   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.5   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.5   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.5   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.5   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.5   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.5   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.5   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.1       jtk  * POSSIBILITY OF SUCH DAMAGE.
     37  1.1       jtk  */
     38  1.1       jtk 
     39  1.1       jtk /*
     40  1.1       jtk  * fdformat: format a floppy diskette, using interface provided in
     41  1.1       jtk  * <sys/fdio.h>
     42  1.1       jtk  */
     43  1.4     lukem #include <sys/types.h>
     44  1.4     lukem #include <sys/fdio.h>
     45  1.4     lukem #include <sys/ioctl.h>
     46  1.1       jtk 
     47  1.4     lukem #include <err.h>
     48  1.4     lukem #include <errno.h>
     49  1.4     lukem #include <fcntl.h>
     50  1.4     lukem #include <limits.h>
     51  1.1       jtk #include <stdio.h>
     52  1.1       jtk #include <stdlib.h>
     53  1.1       jtk #include <unistd.h>
     54  1.1       jtk #include "pathnames.h"
     55  1.1       jtk 
     56  1.1       jtk char *fdb_array[2] = {_PATH_FLOPPYTAB, 0};
     57  1.1       jtk 
     58  1.1       jtk #define MASK_NBPS	0x0001
     59  1.1       jtk #define MASK_NCYL	0x0002
     60  1.1       jtk #define MASK_NSPT	0x0004
     61  1.1       jtk #define MASK_NTRK	0x0008
     62  1.1       jtk #define MASK_STEPSPERCYL	0x0010
     63  1.1       jtk #define MASK_GAPLEN	0x0020
     64  1.1       jtk #define MASK_FILLBYTE	0x0040
     65  1.1       jtk #define MASK_XFER_RATE	0x0080
     66  1.1       jtk #define MASK_INTERLEAVE	0x0100
     67  1.1       jtk 
     68  1.1       jtk #define ALLPARMS (MASK_NBPS|MASK_NCYL|MASK_NSPT|MASK_NTRK|MASK_STEPSPERCYL|MASK_GAPLEN|MASK_FILLBYTE|MASK_XFER_RATE|MASK_INTERLEAVE)
     69  1.1       jtk 
     70  1.4     lukem int	confirm(int);
     71  1.4     lukem int	main __P((int, char **));
     72  1.4     lukem void	usage __P((void));
     73  1.4     lukem int	verify_track(int, int, int, struct fdformat_parms *, char *);
     74  1.1       jtk 
     75  1.7  christos extern char *__progname;
     76  1.7  christos 
     77  1.1       jtk int
     78  1.1       jtk confirm(int def)
     79  1.1       jtk {
     80  1.1       jtk 	int ch;
     81  1.1       jtk 
     82  1.1       jtk 	printf(" Yes/no [%c]?", def ? 'y' : 'n');
     83  1.1       jtk 	ch = getchar();
     84  1.1       jtk 	switch (ch) {
     85  1.1       jtk 	case 'y':
     86  1.1       jtk 	case 'Y':
     87  1.1       jtk 		return 1;
     88  1.1       jtk 	case '\n':
     89  1.1       jtk 		return def;
     90  1.1       jtk 	case EOF:
     91  1.1       jtk 	case 'n':
     92  1.1       jtk 	case 'N':
     93  1.1       jtk 	default:
     94  1.1       jtk 		return 0;
     95  1.1       jtk 	}
     96  1.1       jtk }
     97  1.1       jtk 
     98  1.1       jtk int
     99  1.1       jtk verify_track(int fd, int cyl, int trk, struct fdformat_parms *parms, char *buf)
    100  1.1       jtk {
    101  1.1       jtk 	size_t tracksize;
    102  1.1       jtk 	off_t offset;
    103  1.1       jtk 
    104  1.1       jtk 	tracksize = parms->nbps * parms->nspt; /* bytes per track */
    105  1.1       jtk 	offset = tracksize * (cyl * parms->ntrk + trk); /* track offset */
    106  1.1       jtk 
    107  1.1       jtk 	if (lseek(fd, offset, SEEK_SET) == (off_t) -1) {
    108  1.1       jtk 		putchar('E');
    109  1.1       jtk 		return 1;
    110  1.1       jtk 	}
    111  1.1       jtk 	if (read(fd, buf, tracksize) != tracksize) {
    112  1.1       jtk 		putchar('E');
    113  1.1       jtk 		return 1;
    114  1.1       jtk 	} else
    115  1.1       jtk 		putchar('V');
    116  1.1       jtk 	return 0;
    117  1.1       jtk }
    118  1.1       jtk 
    119  1.1       jtk void
    120  1.1       jtk usage(void)
    121  1.1       jtk {
    122  1.7  christos 	fprintf(stderr, "Usage: %s [-f device] [-t type] [-n] [-B nbps] [-S nspt]\n\t[-T ntrk] [-C ncyl] [-P stepspercyl] [-G gaplen]\n\t[-F fillbyte] [-X xfer_rate] [-I interleave]\n", __progname);
    123  1.7  christos 	exit(1);
    124  1.1       jtk }
    125  1.1       jtk 
    126  1.1       jtk #define numarg(which, maskn) \
    127  1.1       jtk  tmplong = strtol(optarg, &tmpcharp, 0); \
    128  1.1       jtk  if (*tmpcharp != '\0' || tmplong <= 0 || tmplong == LONG_MIN || tmplong == LONG_MAX) \
    129  1.1       jtk      errx(1, "invalid numerical argument %s for " # which, optarg); \
    130  1.1       jtk  parms.which = tmplong; \
    131  1.1       jtk  parmmask |= MASK_##maskn
    132  1.1       jtk 
    133  1.1       jtk #define getparm(structname, maskname) \
    134  1.1       jtk 	if (cgetnum(fdbuf, # structname, &tmplong) == -1) \
    135  1.1       jtk 		errx(1, "parameter " # structname " missing for type %s", \
    136  1.1       jtk 		     optarg); \
    137  1.1       jtk 	parms.structname = tmplong; \
    138  1.1       jtk 	parmmask |= MASK_ ## maskname
    139  1.1       jtk 
    140  1.1       jtk #define copyparm(which, mask) \
    141  1.1       jtk 	if ((parmmask & MASK_##mask) == 0) \
    142  1.1       jtk 		parms.which = fetchparms.which
    143  1.1       jtk 
    144  1.1       jtk int
    145  1.1       jtk main(int argc, char *argv[])
    146  1.1       jtk {
    147  1.4     lukem 	char *fdbuf = NULL, *trackbuf = NULL;
    148  1.1       jtk 	int errcnt = 0;
    149  1.1       jtk 	int verify = 1;
    150  1.1       jtk 	int ch;
    151  1.1       jtk 	long tmplong;
    152  1.1       jtk 	int tmpint;
    153  1.1       jtk 	char *tmpcharp;
    154  1.1       jtk 	int parmmask = 0;
    155  1.1       jtk 	struct fdformat_parms parms, fetchparms;
    156  1.1       jtk 	struct fdformat_cmd cmd;
    157  1.1       jtk 	char *filename = _PATH_FLOPPY_DEV;
    158  1.1       jtk 	int fd;
    159  1.4     lukem 	int trk, cyl;
    160  1.1       jtk 
    161  1.1       jtk 	while ((ch = getopt(argc, argv, "f:t:nB:C:S:T:P:G:F:X:I:")) != -1)
    162  1.1       jtk 		switch (ch) {
    163  1.1       jtk 		case 't':		/* disk type */
    164  1.1       jtk 			switch (cgetent(&fdbuf, fdb_array, optarg)) {
    165  1.1       jtk 			case 0:
    166  1.1       jtk 				break;
    167  1.1       jtk 			case 1:
    168  1.1       jtk 			case -3:
    169  1.1       jtk 				errx(1, "tc= loop or missing entry entry in "
    170  1.1       jtk 				     _PATH_FLOPPYTAB " for type %s", optarg);
    171  1.1       jtk 				break;
    172  1.1       jtk 			case -1:
    173  1.1       jtk 				errx(1, "unknown floppy disk type %s", optarg);
    174  1.1       jtk 				break;
    175  1.1       jtk 			default:
    176  1.1       jtk 				err(1, "problem accessing " _PATH_FLOPPYTAB);
    177  1.1       jtk 				break;
    178  1.1       jtk 			}
    179  1.1       jtk 
    180  1.1       jtk 			getparm(nbps, NBPS);
    181  1.1       jtk 			getparm(ncyl, NCYL);
    182  1.1       jtk 			getparm(nspt, NSPT);
    183  1.1       jtk 			getparm(ntrk, NTRK);
    184  1.1       jtk 			getparm(stepspercyl, STEPSPERCYL);
    185  1.1       jtk 			getparm(gaplen, GAPLEN);
    186  1.1       jtk 			getparm(fillbyte, FILLBYTE);
    187  1.1       jtk 			getparm(xfer_rate, XFER_RATE);
    188  1.1       jtk 			getparm(interleave, INTERLEAVE);
    189  1.1       jtk 			break;
    190  1.1       jtk 		case 'f':		/* device name */
    191  1.1       jtk 			filename = optarg;
    192  1.1       jtk 			break;
    193  1.1       jtk 		case 'n':		/* no verify */
    194  1.1       jtk 			verify = 0;
    195  1.1       jtk 			break;
    196  1.1       jtk 		case 'B':
    197  1.1       jtk 			numarg(nbps, NBPS);
    198  1.1       jtk 			break;
    199  1.1       jtk 		case 'C':
    200  1.1       jtk 			numarg(ncyl, NCYL);
    201  1.1       jtk 			break;
    202  1.1       jtk 		case 'S':
    203  1.1       jtk 			numarg(nspt, NSPT);
    204  1.1       jtk 			break;
    205  1.1       jtk 		case 'T':
    206  1.1       jtk 			numarg(ntrk, NTRK);
    207  1.1       jtk 			break;
    208  1.1       jtk 		case 'P':
    209  1.1       jtk 			numarg(stepspercyl, STEPSPERCYL);
    210  1.1       jtk 			break;
    211  1.1       jtk 		case 'G':
    212  1.1       jtk 			numarg(gaplen, GAPLEN);
    213  1.1       jtk 			break;
    214  1.1       jtk 		case 'F':		/* special handling--0 is OK */
    215  1.1       jtk 			/*numarg(fillbyte, FILLBYTE);*/
    216  1.1       jtk 			tmplong = strtol(optarg, &tmpcharp, 0);
    217  1.1       jtk 			if (*tmpcharp != '\0' || tmplong < 0 ||
    218  1.1       jtk 			    tmplong == LONG_MIN || tmplong == LONG_MAX)
    219  1.1       jtk 				errx(1, "invalid numerical argument %s for fillbyte", optarg);
    220  1.1       jtk 			parms.fillbyte = tmplong;
    221  1.1       jtk 			parmmask |= MASK_FILLBYTE;
    222  1.1       jtk 			break;
    223  1.1       jtk 		case 'X':
    224  1.1       jtk 			numarg(xfer_rate, XFER_RATE);
    225  1.1       jtk 			break;
    226  1.1       jtk 		case 'I':
    227  1.1       jtk 			numarg(interleave, INTERLEAVE);
    228  1.1       jtk 			break;
    229  1.1       jtk 		case '?':
    230  1.1       jtk 		default:
    231  1.1       jtk 			usage();
    232  1.1       jtk 		}
    233  1.3       jtk 	if (optind < argc)
    234  1.3       jtk 		usage();
    235  1.3       jtk 
    236  1.1       jtk 	fd = open(filename, O_RDWR);
    237  1.1       jtk 	if (fd == -1)
    238  1.1       jtk 		err(1, "cannot open %s", filename);
    239  1.1       jtk 	if (ioctl(fd, FDIOCGETFORMAT, &fetchparms) == -1) {
    240  1.1       jtk 		if (errno == ENOTTY)
    241  1.1       jtk 			err(1, "device %s does not support floppy formatting",
    242  1.1       jtk 			    filename);
    243  1.1       jtk 		else
    244  1.1       jtk 			err(1, "cannot fetch current floppy formatting parameters");
    245  1.1       jtk 	}
    246  1.1       jtk 
    247  1.1       jtk 	copyparm(nbps, NBPS);
    248  1.1       jtk 	copyparm(ncyl, NCYL);
    249  1.1       jtk 	copyparm(nspt, NSPT);
    250  1.1       jtk 	copyparm(ntrk, NTRK);
    251  1.1       jtk 	copyparm(stepspercyl, STEPSPERCYL);
    252  1.1       jtk 	copyparm(gaplen, GAPLEN);
    253  1.1       jtk 	copyparm(fillbyte, FILLBYTE);
    254  1.1       jtk 	copyparm(xfer_rate, XFER_RATE);
    255  1.1       jtk 	copyparm(interleave, INTERLEAVE);
    256  1.1       jtk 
    257  1.1       jtk 	parms.fdformat_version = FDFORMAT_VERSION;
    258  1.1       jtk 
    259  1.1       jtk 	tmpint = FDOPT_NORETRY|FDOPT_SILENT;
    260  1.1       jtk 	if (ioctl(fd, FDIOCSETOPTS, &tmpint) == -1 ||
    261  1.1       jtk 	    ioctl(fd, FDIOCSETFORMAT, &parms) == -1) {
    262  1.1       jtk 		warn("cannot set requested formatting parameters");
    263  1.1       jtk 		errx(1, "%d cylinders, %d tracks, %d sectors of %d bytes",
    264  1.1       jtk 		     parms.ncyl, parms.ntrk, parms.nspt, parms.nbps);
    265  1.1       jtk 	}
    266  1.1       jtk 
    267  1.1       jtk 	printf("Ready to format %s with %d cylinders, %d tracks, %d sectors of %d bytes\n(%d KB)",
    268  1.1       jtk 	       filename, parms.ncyl, parms.ntrk, parms.nspt, parms.nbps,
    269  1.1       jtk 	       parms.ncyl * parms.ntrk * parms.nspt * parms.nbps / 1024);
    270  1.1       jtk 	if (!confirm(1))
    271  1.1       jtk 		errx(1,"formatting abandoned--not confirmed.");
    272  1.1       jtk 
    273  1.1       jtk 	if (verify)
    274  1.1       jtk 		trackbuf = malloc(parms.nbps * parms.nspt);
    275  1.1       jtk 
    276  1.1       jtk 	cmd.formatcmd_version = FDFORMAT_VERSION;
    277  1.1       jtk 	for (cyl = 0; cyl < parms.ncyl; cyl++) {
    278  1.1       jtk 		cmd.cylinder = cyl;
    279  1.1       jtk 		for (trk = 0; trk < parms.ntrk; trk++) {
    280  1.1       jtk 			cmd.head = trk;
    281  1.1       jtk 			if (ioctl(fd, FDIOCFORMAT_TRACK, &cmd) == 0) {
    282  1.1       jtk 				putchar('F');
    283  1.1       jtk 				if (verify)
    284  1.1       jtk 					putchar('\b');
    285  1.1       jtk 				fflush(stdout);
    286  1.1       jtk 				if (verify)
    287  1.1       jtk 					errcnt += verify_track(fd, cyl, trk,
    288  1.1       jtk 							       &parms,
    289  1.1       jtk 							       trackbuf);
    290  1.1       jtk 			} else if (errno == EINVAL) {
    291  1.1       jtk 				putchar('\n');
    292  1.1       jtk 				errx(1, "formatting botch at <%d,%d>",
    293  1.1       jtk 				     cyl, trk);
    294  1.1       jtk 			} else if (errno == EIO) {
    295  1.1       jtk 				putchar('E');
    296  1.1       jtk 				fflush(stdout);
    297  1.1       jtk 				errcnt++;
    298  1.1       jtk 			}
    299  1.1       jtk 		}
    300  1.1       jtk 	}
    301  1.1       jtk 	putchar('\n');
    302  1.1       jtk 	if (errcnt)
    303  1.6   hubertf 		errx(1,"%d track formatting error%s", errcnt, errcnt==1?"":"s");
    304  1.1       jtk 	return 0;
    305  1.1       jtk }
    306