"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | 01c3d40 | 2003-07-05 07:51:31 +0000 | [diff] [blame] | 2 | /* fdformat.c - Low-level formats a floppy disk - Werner Almesberger */ |
| 3 | |
| 4 | /* 1999-02-22 Arkadiusz Mi¶kiewicz <misiek@pld.ORG.PL> |
| 5 | * - added Native Language Support |
| 6 | * 1999-03-20 Arnaldo Carvalho de Melo <acme@conectiva.com.br> |
| 7 | * - more i18n/nls translatable strings marked |
| 8 | * |
| 9 | * 5 July 2003 -- modified for Busybox by Erik Andersen |
| 10 | */ |
| 11 | |
Eric Andersen | 01c3d40 | 2003-07-05 07:51:31 +0000 | [diff] [blame] | 12 | #include "busybox.h" |
| 13 | |
| 14 | |
| 15 | /* Stuff extracted from linux/fd.h */ |
| 16 | struct floppy_struct { |
| 17 | unsigned int size, /* nr of sectors total */ |
| 18 | sect, /* sectors per track */ |
| 19 | head, /* nr of heads */ |
| 20 | track, /* nr of tracks */ |
| 21 | stretch; /* !=0 means double track steps */ |
| 22 | #define FD_STRETCH 1 |
| 23 | #define FD_SWAPSIDES 2 |
| 24 | |
| 25 | unsigned char gap, /* gap1 size */ |
| 26 | |
| 27 | rate, /* data rate. |= 0x40 for perpendicular */ |
| 28 | #define FD_2M 0x4 |
| 29 | #define FD_SIZECODEMASK 0x38 |
| 30 | #define FD_SIZECODE(floppy) (((((floppy)->rate&FD_SIZECODEMASK)>> 3)+ 2) %8) |
| 31 | #define FD_SECTSIZE(floppy) ( (floppy)->rate & FD_2M ? \ |
| 32 | 512 : 128 << FD_SIZECODE(floppy) ) |
| 33 | #define FD_PERP 0x40 |
| 34 | |
| 35 | spec1, /* stepping rate, head unload time */ |
| 36 | fmt_gap; /* gap2 size */ |
| 37 | const char * name; /* used only for predefined formats */ |
| 38 | }; |
| 39 | struct format_descr { |
| 40 | unsigned int device,head,track; |
| 41 | }; |
| 42 | #define FDFMTBEG _IO(2,0x47) |
| 43 | #define FDFMTTRK _IOW(2,0x48, struct format_descr) |
| 44 | #define FDFMTEND _IO(2,0x49) |
| 45 | #define FDGETPRM _IOR(2, 0x04, struct floppy_struct) |
| 46 | #define FD_FILL_BYTE 0xF6 /* format fill byte. */ |
| 47 | |
Glenn L McGrath | 348672d | 2004-01-20 12:57:18 +0000 | [diff] [blame] | 48 | static void print_and_flush(const char * __restrict format, ...) |
Eric Andersen | 01c3d40 | 2003-07-05 07:51:31 +0000 | [diff] [blame] | 49 | { |
Glenn L McGrath | 348672d | 2004-01-20 12:57:18 +0000 | [diff] [blame] | 50 | va_list arg; |
Eric Andersen | 01c3d40 | 2003-07-05 07:51:31 +0000 | [diff] [blame] | 51 | |
Glenn L McGrath | 348672d | 2004-01-20 12:57:18 +0000 | [diff] [blame] | 52 | va_start(arg, format); |
| 53 | bb_vfprintf(stdout, format, arg); |
| 54 | va_end(arg); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame^] | 55 | xfflush_stdout(); |
Eric Andersen | 01c3d40 | 2003-07-05 07:51:31 +0000 | [diff] [blame] | 56 | } |
| 57 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame^] | 58 | static void xioctl(int fd, int request, void *argp, const char *string) |
Eric Andersen | 01c3d40 | 2003-07-05 07:51:31 +0000 | [diff] [blame] | 59 | { |
Glenn L McGrath | 348672d | 2004-01-20 12:57:18 +0000 | [diff] [blame] | 60 | if (ioctl (fd, request, argp) < 0) { |
| 61 | bb_perror_msg_and_die(string); |
Eric Andersen | 01c3d40 | 2003-07-05 07:51:31 +0000 | [diff] [blame] | 62 | } |
Eric Andersen | 01c3d40 | 2003-07-05 07:51:31 +0000 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | int fdformat_main(int argc,char **argv) |
| 66 | { |
Glenn L McGrath | 348672d | 2004-01-20 12:57:18 +0000 | [diff] [blame] | 67 | int fd, n, cyl, read_bytes, verify; |
| 68 | unsigned char *data; |
| 69 | struct stat st; |
| 70 | struct floppy_struct param; |
| 71 | struct format_descr descr; |
Eric Andersen | 01c3d40 | 2003-07-05 07:51:31 +0000 | [diff] [blame] | 72 | |
Glenn L McGrath | 348672d | 2004-01-20 12:57:18 +0000 | [diff] [blame] | 73 | if (argc < 2) { |
| 74 | bb_show_usage(); |
| 75 | } |
| 76 | verify = !bb_getopt_ulflags(argc, argv, "n"); |
| 77 | argv += optind; |
Eric Andersen | 01c3d40 | 2003-07-05 07:51:31 +0000 | [diff] [blame] | 78 | |
Glenn L McGrath | 348672d | 2004-01-20 12:57:18 +0000 | [diff] [blame] | 79 | /* R_OK is needed for verifying */ |
| 80 | if (stat(*argv,&st) < 0 || access(*argv,W_OK | R_OK ) < 0) { |
Mike Frysinger | 948a09d | 2006-03-23 02:07:20 +0000 | [diff] [blame] | 81 | bb_perror_msg_and_die("%s",*argv); |
Glenn L McGrath | 348672d | 2004-01-20 12:57:18 +0000 | [diff] [blame] | 82 | } |
| 83 | if (!S_ISBLK(st.st_mode)) { |
| 84 | bb_error_msg_and_die("%s: not a block device",*argv); |
| 85 | /* do not test major - perhaps this was an USB floppy */ |
| 86 | } |
Eric Andersen | 01c3d40 | 2003-07-05 07:51:31 +0000 | [diff] [blame] | 87 | |
Eric Andersen | 01c3d40 | 2003-07-05 07:51:31 +0000 | [diff] [blame] | 88 | |
Glenn L McGrath | 348672d | 2004-01-20 12:57:18 +0000 | [diff] [blame] | 89 | /* O_RDWR for formatting and verifying */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame^] | 90 | fd = xopen(*argv,O_RDWR ); |
Glenn L McGrath | 348672d | 2004-01-20 12:57:18 +0000 | [diff] [blame] | 91 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame^] | 92 | xioctl(fd, FDGETPRM, ¶m, "FDGETPRM");/*original message was: "Could not determine current format type" */ |
Glenn L McGrath | 348672d | 2004-01-20 12:57:18 +0000 | [diff] [blame] | 93 | |
| 94 | print_and_flush("%s-sided, %d tracks, %d sec/track. Total capacity %d kB.\n", |
| 95 | (param.head == 2) ? "Double" : "Single", |
| 96 | param.track, param.sect, param.size >> 1); |
| 97 | |
| 98 | /* FORMAT */ |
| 99 | print_and_flush("Formatting ... ", NULL); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame^] | 100 | xioctl(fd, FDFMTBEG,NULL,"FDFMTBEG"); |
Glenn L McGrath | 348672d | 2004-01-20 12:57:18 +0000 | [diff] [blame] | 101 | |
| 102 | /* n == track */ |
Eric Andersen | 522a2f3 | 2004-04-03 12:36:03 +0000 | [diff] [blame] | 103 | for (n = 0; n < param.track; n++) |
| 104 | { |
| 105 | descr.head = 0; |
| 106 | descr.track = n; |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame^] | 107 | xioctl(fd, FDFMTTRK,&descr,"FDFMTTRK"); |
Eric Andersen | 522a2f3 | 2004-04-03 12:36:03 +0000 | [diff] [blame] | 108 | print_and_flush("%3d\b\b\b", n); |
| 109 | if (param.head == 2) { |
| 110 | descr.head = 1; |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame^] | 111 | xioctl(fd, FDFMTTRK,&descr,"FDFMTTRK"); |
Eric Andersen | 522a2f3 | 2004-04-03 12:36:03 +0000 | [diff] [blame] | 112 | } |
Glenn L McGrath | 348672d | 2004-01-20 12:57:18 +0000 | [diff] [blame] | 113 | } |
Eric Andersen | 522a2f3 | 2004-04-03 12:36:03 +0000 | [diff] [blame] | 114 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame^] | 115 | xioctl(fd,FDFMTEND,NULL,"FDFMTEND"); |
Glenn L McGrath | 348672d | 2004-01-20 12:57:18 +0000 | [diff] [blame] | 116 | print_and_flush("done\n", NULL); |
| 117 | |
| 118 | /* VERIFY */ |
| 119 | if(verify) { |
| 120 | /* n == cyl_size */ |
| 121 | n = param.sect*param.head*512; |
| 122 | |
| 123 | data = xmalloc(n); |
| 124 | print_and_flush("Verifying ... ", NULL); |
| 125 | for (cyl = 0; cyl < param.track; cyl++) { |
| 126 | print_and_flush("%3d\b\b\b", cyl); |
| 127 | if((read_bytes = safe_read(fd,data,n))!= n ) { |
| 128 | if(read_bytes < 0) { |
Bernhard Reutner-Fischer | 1b9d7c9 | 2006-06-03 22:45:37 +0000 | [diff] [blame] | 129 | bb_perror_msg(bb_msg_read_error); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 130 | } |
Glenn L McGrath | 348672d | 2004-01-20 12:57:18 +0000 | [diff] [blame] | 131 | bb_error_msg_and_die("Problem reading cylinder %d, expected %d, read %d", cyl, n, read_bytes); |
| 132 | } |
| 133 | /* Check backwards so we don't need a counter */ |
| 134 | while(--read_bytes>=0) { |
| 135 | if( data[read_bytes] != FD_FILL_BYTE) { |
| 136 | print_and_flush("bad data in cyl %d\nContinuing ... ",cyl); |
| 137 | } |
| 138 | } |
| 139 | } |
| 140 | /* There is no point in freeing blocks at the end of a program, because |
| 141 | all of the program's space is given back to the system when the process |
| 142 | terminates.*/ |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 143 | |
Rob Landley | 658d2cf | 2005-09-08 03:11:58 +0000 | [diff] [blame] | 144 | if (ENABLE_FEATURE_CLEAN_UP) free(data); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 145 | |
Glenn L McGrath | 348672d | 2004-01-20 12:57:18 +0000 | [diff] [blame] | 146 | print_and_flush("done\n", NULL); |
| 147 | } |
Rob Landley | 658d2cf | 2005-09-08 03:11:58 +0000 | [diff] [blame] | 148 | |
| 149 | if (ENABLE_FEATURE_CLEAN_UP) close(fd); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 150 | |
Glenn L McGrath | 348672d | 2004-01-20 12:57:18 +0000 | [diff] [blame] | 151 | /* Don't bother closing. Exit does |
| 152 | * that, so we can save a few bytes */ |
| 153 | return EXIT_SUCCESS; |
Eric Andersen | 01c3d40 | 2003-07-05 07:51:31 +0000 | [diff] [blame] | 154 | } |