bad144.c revision 1.12 1 1.12 kleink /* $NetBSD: bad144.c,v 1.12 1997/08/25 19:32:03 kleink Exp $ */
2 1.10 mikel
3 1.1 cgd /*
4 1.6 mycroft * Copyright (c) 1980, 1986, 1988, 1993
5 1.6 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.6 mycroft static char copyright[] =
38 1.6 mycroft "@(#) Copyright (c) 1980, 1986, 1988, 1993\n\
39 1.6 mycroft The Regents of the University of California. All rights reserved.\n";
40 1.11 mikel #endif /* not lint */
41 1.1 cgd
42 1.1 cgd #ifndef lint
43 1.11 mikel #if 0
44 1.11 mikel static char sccsid[] = "@(#)bad144.c 8.2 (Berkeley) 4/27/95";
45 1.11 mikel #else
46 1.12 kleink static char rcsid[] = "$NetBSD: bad144.c,v 1.12 1997/08/25 19:32:03 kleink Exp $";
47 1.11 mikel #endif
48 1.11 mikel #endif /* not lint */
49 1.1 cgd
50 1.1 cgd /*
51 1.1 cgd * bad144
52 1.1 cgd *
53 1.1 cgd * This program prints and/or initializes a bad block record for a pack,
54 1.1 cgd * in the format used by the DEC standard 144.
55 1.1 cgd * It can also add bad sector(s) to the record, moving the sector
56 1.1 cgd * replacements as necessary.
57 1.1 cgd *
58 1.1 cgd * It is preferable to write the bad information with a standard formatter,
59 1.1 cgd * but this program will do.
60 1.1 cgd *
61 1.1 cgd * RP06 sectors are marked as bad by inverting the format bit in the
62 1.1 cgd * header; on other drives the valid-sector bit is cleared.
63 1.1 cgd */
64 1.1 cgd #include <sys/param.h>
65 1.1 cgd #include <sys/dkbad.h>
66 1.1 cgd #include <sys/ioctl.h>
67 1.1 cgd #include <sys/file.h>
68 1.1 cgd #include <sys/disklabel.h>
69 1.6 mycroft #include <ufs/ffs/fs.h>
70 1.1 cgd
71 1.1 cgd #include <stdio.h>
72 1.11 mikel #include <stdlib.h>
73 1.9 cgd #include <string.h>
74 1.1 cgd #include <paths.h>
75 1.11 mikel #include <unistd.h>
76 1.1 cgd
77 1.1 cgd #define RETRIES 10 /* number of retries on reading old sectors */
78 1.4 cgd #ifdef i386 /* XXX */
79 1.1 cgd #define RAWPART "d" /* disk partition containing badsector tables */
80 1.1 cgd #else
81 1.1 cgd #define RAWPART "c" /* disk partition containing badsector tables */
82 1.1 cgd #endif
83 1.1 cgd
84 1.1 cgd int fflag, add, copy, verbose, nflag;
85 1.1 cgd int dups;
86 1.1 cgd int badfile = -1; /* copy of badsector table to use, -1 if any */
87 1.1 cgd #define MAXSECSIZE 1024
88 1.1 cgd struct dkbad curbad, oldbad;
89 1.1 cgd #define DKBAD_MAGIC 0x4321
90 1.1 cgd
91 1.1 cgd char label[BBSIZE];
92 1.11 mikel daddr_t size;
93 1.1 cgd struct disklabel *dp;
94 1.1 cgd char name[BUFSIZ];
95 1.1 cgd
96 1.11 mikel void Perror __P((const char *));
97 1.11 mikel daddr_t badsn __P((const struct bt_bad *));
98 1.11 mikel int blkcopy __P((int, daddr_t, daddr_t));
99 1.11 mikel void blkzero __P((int, daddr_t));
100 1.11 mikel int checkold __P((void));
101 1.11 mikel int compare __P((const void *, const void *));
102 1.11 mikel daddr_t getold __P((int, struct dkbad *));
103 1.11 mikel void shift __P((int, int, int));
104 1.11 mikel
105 1.11 mikel int
106 1.1 cgd main(argc, argv)
107 1.1 cgd int argc;
108 1.1 cgd char *argv[];
109 1.1 cgd {
110 1.11 mikel struct bt_bad *bt;
111 1.1 cgd daddr_t sn, bn[126];
112 1.1 cgd int i, f, nbad, new, bad, errs;
113 1.1 cgd
114 1.1 cgd argc--, argv++;
115 1.1 cgd while (argc > 0 && **argv == '-') {
116 1.1 cgd (*argv)++;
117 1.1 cgd while (**argv) {
118 1.1 cgd switch (**argv) {
119 1.1 cgd #if vax
120 1.1 cgd case 'f':
121 1.1 cgd fflag++;
122 1.1 cgd break;
123 1.1 cgd #endif
124 1.1 cgd case 'a':
125 1.1 cgd add++;
126 1.1 cgd break;
127 1.1 cgd case 'c':
128 1.1 cgd copy++;
129 1.1 cgd break;
130 1.1 cgd case 'v':
131 1.1 cgd verbose++;
132 1.1 cgd break;
133 1.1 cgd case 'n':
134 1.1 cgd nflag++;
135 1.1 cgd verbose++;
136 1.1 cgd break;
137 1.1 cgd default:
138 1.1 cgd if (**argv >= '0' && **argv <= '4') {
139 1.1 cgd badfile = **argv - '0';
140 1.1 cgd break;
141 1.1 cgd }
142 1.1 cgd goto usage;
143 1.1 cgd }
144 1.1 cgd (*argv)++;
145 1.1 cgd }
146 1.1 cgd argc--, argv++;
147 1.1 cgd }
148 1.1 cgd if (argc < 1) {
149 1.1 cgd usage:
150 1.1 cgd fprintf(stderr,
151 1.11 mikel "usage: bad144 [ -f ] disk [ snum [ bn ... ] ]\n");
152 1.1 cgd fprintf(stderr,
153 1.11 mikel "to read or overwrite bad-sector table, e.g.: bad144 hp0\n");
154 1.1 cgd fprintf(stderr,
155 1.11 mikel "or bad144 -a [ -f ] [ -c ] disk bn ...\n");
156 1.1 cgd fprintf(stderr, "where options are:\n");
157 1.1 cgd fprintf(stderr, "\t-a add new bad sectors to the table\n");
158 1.1 cgd fprintf(stderr, "\t-f reformat listed sectors as bad\n");
159 1.1 cgd fprintf(stderr, "\t-c copy original sector to replacement\n");
160 1.1 cgd exit(1);
161 1.1 cgd }
162 1.1 cgd if (argv[0][0] != '/')
163 1.8 mycroft (void)sprintf(name, "%sr%s%s", _PATH_DEV, argv[0], RAWPART);
164 1.1 cgd else
165 1.1 cgd strcpy(name, argv[0]);
166 1.1 cgd f = open(name, argc == 1? O_RDONLY : O_RDWR);
167 1.1 cgd if (f < 0)
168 1.1 cgd Perror(name);
169 1.1 cgd #ifdef was
170 1.1 cgd if (read(f, label, sizeof(label)) < 0)
171 1.1 cgd Perror("read");
172 1.1 cgd for (dp = (struct disklabel *)(label + LABELOFFSET);
173 1.1 cgd dp < (struct disklabel *)
174 1.1 cgd (label + sizeof(label) - sizeof(struct disklabel));
175 1.1 cgd dp = (struct disklabel *)((char *)dp + 64))
176 1.1 cgd if (dp->d_magic == DISKMAGIC && dp->d_magic2 == DISKMAGIC)
177 1.1 cgd break;
178 1.1 cgd #else
179 1.1 cgd /* obtain label and adjust to fit */
180 1.3 mycroft dp = (struct disklabel *)&label;
181 1.1 cgd if (ioctl(f, DIOCGDINFO, dp) < 0)
182 1.1 cgd Perror("ioctl DIOCGDINFO");
183 1.1 cgd #endif
184 1.1 cgd if (dp->d_magic != DISKMAGIC || dp->d_magic2 != DISKMAGIC
185 1.1 cgd /* dkcksum(lp) != 0 */ ) {
186 1.1 cgd fprintf(stderr, "Bad pack magic number (pack is unlabeled)\n");
187 1.1 cgd exit(1);
188 1.1 cgd }
189 1.1 cgd if (dp->d_secsize > MAXSECSIZE || dp->d_secsize <= 0) {
190 1.1 cgd fprintf(stderr, "Disk sector size too large/small (%d)\n",
191 1.1 cgd dp->d_secsize);
192 1.1 cgd exit(7);
193 1.1 cgd }
194 1.4 cgd #ifdef i386
195 1.1 cgd if (dp->d_type == DTYPE_SCSI) {
196 1.1 cgd fprintf(stderr, "SCSI disks don't use bad144!\n");
197 1.1 cgd exit(1);
198 1.1 cgd }
199 1.1 cgd /* are we inside a DOS partition? */
200 1.1 cgd if (dp->d_partitions[0].p_offset) {
201 1.1 cgd /* yes, rules change. assume bad tables at end of partition C,
202 1.1 cgd which maps all of DOS partition we are within -wfj */
203 1.1 cgd size = dp->d_partitions[2].p_offset + dp->d_partitions[2].p_size;
204 1.1 cgd } else
205 1.1 cgd #endif
206 1.1 cgd size = dp->d_nsectors * dp->d_ntracks * dp->d_ncylinders;
207 1.1 cgd argc--;
208 1.1 cgd argv++;
209 1.1 cgd if (argc == 0) {
210 1.1 cgd sn = getold(f, &oldbad);
211 1.1 cgd printf("bad block information at sector %d in %s:\n",
212 1.1 cgd sn, name);
213 1.1 cgd printf("cartridge serial number: %d(10)\n", oldbad.bt_csn);
214 1.1 cgd switch (oldbad.bt_flag) {
215 1.1 cgd
216 1.1 cgd case (u_short)-1:
217 1.1 cgd printf("alignment cartridge\n");
218 1.1 cgd break;
219 1.1 cgd
220 1.1 cgd case DKBAD_MAGIC:
221 1.1 cgd break;
222 1.1 cgd
223 1.1 cgd default:
224 1.1 cgd printf("bt_flag=%x(16)?\n", oldbad.bt_flag);
225 1.1 cgd break;
226 1.1 cgd }
227 1.1 cgd bt = oldbad.bt_bad;
228 1.1 cgd for (i = 0; i < 126; i++) {
229 1.1 cgd bad = (bt->bt_cyl<<16) + bt->bt_trksec;
230 1.1 cgd if (bad < 0)
231 1.1 cgd break;
232 1.1 cgd printf("sn=%d, cn=%d, tn=%d, sn=%d\n", badsn(bt),
233 1.1 cgd bt->bt_cyl, bt->bt_trksec>>8, bt->bt_trksec&0xff);
234 1.1 cgd bt++;
235 1.1 cgd }
236 1.11 mikel (void) checkold();
237 1.1 cgd exit(0);
238 1.1 cgd }
239 1.1 cgd if (add) {
240 1.1 cgd /*
241 1.1 cgd * Read in the old badsector table.
242 1.1 cgd * Verify that it makes sense, and the bad sectors
243 1.1 cgd * are in order. Copy the old table to the new one.
244 1.1 cgd */
245 1.1 cgd (void) getold(f, &oldbad);
246 1.11 mikel i = checkold();
247 1.1 cgd if (verbose)
248 1.1 cgd printf("Had %d bad sectors, adding %d\n", i, argc);
249 1.1 cgd if (i + argc > 126) {
250 1.1 cgd printf("bad144: not enough room for %d more sectors\n",
251 1.1 cgd argc);
252 1.1 cgd printf("limited to 126 by information format\n");
253 1.1 cgd exit(1);
254 1.1 cgd }
255 1.1 cgd curbad = oldbad;
256 1.1 cgd } else {
257 1.1 cgd curbad.bt_csn = atoi(*argv++);
258 1.1 cgd argc--;
259 1.1 cgd curbad.bt_mbz = 0;
260 1.1 cgd curbad.bt_flag = DKBAD_MAGIC;
261 1.1 cgd if (argc > 126) {
262 1.1 cgd printf("bad144: too many bad sectors specified\n");
263 1.1 cgd printf("limited to 126 by information format\n");
264 1.1 cgd exit(1);
265 1.1 cgd }
266 1.1 cgd i = 0;
267 1.1 cgd }
268 1.1 cgd errs = 0;
269 1.1 cgd new = argc;
270 1.1 cgd while (argc > 0) {
271 1.1 cgd daddr_t sn = atoi(*argv++);
272 1.1 cgd argc--;
273 1.1 cgd if (sn < 0 || sn >= size) {
274 1.1 cgd printf("%d: out of range [0,%d) for disk %s\n",
275 1.1 cgd sn, size, dp->d_typename);
276 1.1 cgd errs++;
277 1.1 cgd continue;
278 1.1 cgd }
279 1.1 cgd bn[i] = sn;
280 1.1 cgd curbad.bt_bad[i].bt_cyl = sn / (dp->d_nsectors*dp->d_ntracks);
281 1.1 cgd sn %= (dp->d_nsectors*dp->d_ntracks);
282 1.1 cgd curbad.bt_bad[i].bt_trksec =
283 1.1 cgd ((sn/dp->d_nsectors) << 8) + (sn%dp->d_nsectors);
284 1.1 cgd i++;
285 1.1 cgd }
286 1.1 cgd if (errs)
287 1.1 cgd exit(1);
288 1.1 cgd nbad = i;
289 1.1 cgd while (i < 126) {
290 1.1 cgd curbad.bt_bad[i].bt_trksec = -1;
291 1.1 cgd curbad.bt_bad[i].bt_cyl = -1;
292 1.1 cgd i++;
293 1.1 cgd }
294 1.1 cgd if (add) {
295 1.1 cgd /*
296 1.1 cgd * Sort the new bad sectors into the list.
297 1.1 cgd * Then shuffle the replacement sectors so that
298 1.1 cgd * the previous bad sectors get the same replacement data.
299 1.1 cgd */
300 1.1 cgd qsort((char *)curbad.bt_bad, nbad, sizeof (struct bt_bad),
301 1.1 cgd compare);
302 1.1 cgd if (dups) {
303 1.1 cgd fprintf(stderr,
304 1.1 cgd "bad144: bad sectors have been duplicated; can't add existing sectors\n");
305 1.1 cgd exit(3);
306 1.1 cgd }
307 1.1 cgd shift(f, nbad, nbad-new);
308 1.1 cgd }
309 1.1 cgd if (badfile == -1)
310 1.1 cgd i = 0;
311 1.1 cgd else
312 1.1 cgd i = badfile * 2;
313 1.1 cgd for (; i < 10 && i < dp->d_nsectors; i += 2) {
314 1.11 mikel if (lseek(f,
315 1.12 kleink (off_t)(dp->d_secsize * (size - dp->d_nsectors + i)),
316 1.12 kleink SEEK_SET) < 0)
317 1.1 cgd Perror("lseek");
318 1.1 cgd if (verbose)
319 1.1 cgd printf("write badsect file at %d\n",
320 1.1 cgd size - dp->d_nsectors + i);
321 1.1 cgd if (nflag == 0 && write(f, (caddr_t)&curbad, sizeof(curbad)) !=
322 1.1 cgd sizeof(curbad)) {
323 1.1 cgd char msg[80];
324 1.1 cgd (void)sprintf(msg, "bad144: write bad sector file %d",
325 1.1 cgd i/2);
326 1.1 cgd perror(msg);
327 1.1 cgd }
328 1.1 cgd if (badfile != -1)
329 1.1 cgd break;
330 1.1 cgd }
331 1.1 cgd #ifdef vax
332 1.1 cgd if (nflag == 0 && fflag)
333 1.1 cgd for (i = nbad - new; i < nbad; i++)
334 1.1 cgd format(f, bn[i]);
335 1.1 cgd #endif
336 1.1 cgd #ifdef DIOCSBAD
337 1.1 cgd if (nflag == 0 && ioctl(f, DIOCSBAD, (caddr_t)&curbad) < 0)
338 1.1 cgd fprintf(stderr,
339 1.1 cgd "Can't sync bad-sector file; reboot for changes to take effect\n");
340 1.1 cgd #endif
341 1.1 cgd if ((dp->d_flags & D_BADSECT) == 0 && nflag == 0) {
342 1.1 cgd dp->d_flags |= D_BADSECT;
343 1.1 cgd if (ioctl(f, DIOCWDINFO, dp) < 0) {
344 1.1 cgd perror("label");
345 1.7 mycroft fprintf(stderr, "Can't write label to enable bad sector handling\n");
346 1.1 cgd exit(1);
347 1.1 cgd }
348 1.1 cgd }
349 1.1 cgd exit(0);
350 1.1 cgd }
351 1.1 cgd
352 1.1 cgd daddr_t
353 1.1 cgd getold(f, bad)
354 1.11 mikel int f;
355 1.11 mikel struct dkbad *bad;
356 1.1 cgd {
357 1.11 mikel int i;
358 1.1 cgd daddr_t sn;
359 1.1 cgd char msg[80];
360 1.1 cgd
361 1.1 cgd if (badfile == -1)
362 1.1 cgd i = 0;
363 1.1 cgd else
364 1.1 cgd i = badfile * 2;
365 1.1 cgd for (; i < 10 && i < dp->d_nsectors; i += 2) {
366 1.1 cgd sn = size - dp->d_nsectors + i;
367 1.12 kleink if (lseek(f, (off_t)(sn * dp->d_secsize), SEEK_SET) < 0)
368 1.1 cgd Perror("lseek");
369 1.1 cgd if (read(f, (char *) bad, dp->d_secsize) == dp->d_secsize) {
370 1.1 cgd if (i > 0)
371 1.1 cgd printf("Using bad-sector file %d\n", i/2);
372 1.1 cgd return(sn);
373 1.1 cgd }
374 1.1 cgd (void)sprintf(msg, "bad144: read bad sector file at sn %d", sn);
375 1.1 cgd perror(msg);
376 1.1 cgd if (badfile != -1)
377 1.1 cgd break;
378 1.1 cgd }
379 1.1 cgd fprintf(stderr, "bad144: %s: can't read bad block info\n", name);
380 1.1 cgd exit(1);
381 1.1 cgd /*NOTREACHED*/
382 1.1 cgd }
383 1.1 cgd
384 1.11 mikel int
385 1.1 cgd checkold()
386 1.1 cgd {
387 1.1 cgd register int i;
388 1.1 cgd register struct bt_bad *bt;
389 1.1 cgd daddr_t sn, lsn;
390 1.1 cgd int errors = 0, warned = 0;
391 1.1 cgd
392 1.1 cgd if (oldbad.bt_flag != DKBAD_MAGIC) {
393 1.1 cgd fprintf(stderr, "bad144: %s: bad flag in bad-sector table\n",
394 1.1 cgd name);
395 1.1 cgd errors++;
396 1.1 cgd }
397 1.1 cgd if (oldbad.bt_mbz != 0) {
398 1.1 cgd fprintf(stderr, "bad144: %s: bad magic number\n", name);
399 1.1 cgd errors++;
400 1.1 cgd }
401 1.1 cgd bt = oldbad.bt_bad;
402 1.1 cgd for (i = 0; i < 126; i++, bt++) {
403 1.1 cgd if (bt->bt_cyl == 0xffff && bt->bt_trksec == 0xffff)
404 1.1 cgd break;
405 1.1 cgd if ((bt->bt_cyl >= dp->d_ncylinders) ||
406 1.1 cgd ((bt->bt_trksec >> 8) >= dp->d_ntracks) ||
407 1.1 cgd ((bt->bt_trksec & 0xff) >= dp->d_nsectors)) {
408 1.1 cgd fprintf(stderr,
409 1.1 cgd "bad144: cyl/trk/sect out of range in existing entry: ");
410 1.1 cgd fprintf(stderr, "sn=%d, cn=%d, tn=%d, sn=%d\n",
411 1.1 cgd badsn(bt), bt->bt_cyl, bt->bt_trksec>>8,
412 1.1 cgd bt->bt_trksec & 0xff);
413 1.1 cgd errors++;
414 1.1 cgd }
415 1.1 cgd sn = (bt->bt_cyl * dp->d_ntracks +
416 1.1 cgd (bt->bt_trksec >> 8)) *
417 1.1 cgd dp->d_nsectors + (bt->bt_trksec & 0xff);
418 1.1 cgd if (i > 0 && sn < lsn && !warned) {
419 1.1 cgd fprintf(stderr,
420 1.1 cgd "bad144: bad sector file is out of order\n");
421 1.1 cgd errors++;
422 1.1 cgd warned++;
423 1.1 cgd }
424 1.1 cgd if (i > 0 && sn == lsn) {
425 1.1 cgd fprintf(stderr,
426 1.1 cgd "bad144: bad sector file contains duplicates (sn %d)\n",
427 1.1 cgd sn);
428 1.1 cgd errors++;
429 1.1 cgd }
430 1.1 cgd lsn = sn;
431 1.1 cgd }
432 1.1 cgd if (errors)
433 1.1 cgd exit(1);
434 1.1 cgd return (i);
435 1.1 cgd }
436 1.1 cgd
437 1.1 cgd /*
438 1.1 cgd * Move the bad sector replacements
439 1.1 cgd * to make room for the new bad sectors.
440 1.1 cgd * new is the new number of bad sectors, old is the previous count.
441 1.1 cgd */
442 1.11 mikel void
443 1.1 cgd shift(f, new, old)
444 1.11 mikel int f, new, old;
445 1.1 cgd {
446 1.1 cgd daddr_t repl;
447 1.1 cgd
448 1.1 cgd /*
449 1.1 cgd * First replacement is last sector of second-to-last track.
450 1.1 cgd */
451 1.1 cgd repl = size - dp->d_nsectors - 1;
452 1.1 cgd new--; old--;
453 1.1 cgd while (new >= 0 && new != old) {
454 1.1 cgd if (old < 0 ||
455 1.1 cgd compare(&curbad.bt_bad[new], &oldbad.bt_bad[old]) > 0) {
456 1.1 cgd /*
457 1.1 cgd * Insert new replacement here-- copy original
458 1.1 cgd * sector if requested and possible,
459 1.1 cgd * otherwise write a zero block.
460 1.1 cgd */
461 1.1 cgd if (!copy ||
462 1.1 cgd !blkcopy(f, badsn(&curbad.bt_bad[new]), repl - new))
463 1.1 cgd blkzero(f, repl - new);
464 1.1 cgd } else {
465 1.1 cgd if (blkcopy(f, repl - old, repl - new) == 0)
466 1.1 cgd fprintf(stderr,
467 1.1 cgd "Can't copy replacement sector %d to %d\n",
468 1.1 cgd repl-old, repl-new);
469 1.1 cgd old--;
470 1.1 cgd }
471 1.1 cgd new--;
472 1.1 cgd }
473 1.1 cgd }
474 1.1 cgd
475 1.1 cgd char *buf;
476 1.1 cgd
477 1.1 cgd /*
478 1.1 cgd * Copy disk sector s1 to s2.
479 1.1 cgd */
480 1.11 mikel int
481 1.1 cgd blkcopy(f, s1, s2)
482 1.11 mikel int f;
483 1.11 mikel daddr_t s1, s2;
484 1.1 cgd {
485 1.1 cgd register tries, n;
486 1.1 cgd
487 1.1 cgd if (buf == (char *)NULL) {
488 1.1 cgd buf = malloc((unsigned)dp->d_secsize);
489 1.1 cgd if (buf == (char *)NULL) {
490 1.1 cgd fprintf(stderr, "Out of memory\n");
491 1.1 cgd exit(20);
492 1.1 cgd }
493 1.1 cgd }
494 1.1 cgd for (tries = 0; tries < RETRIES; tries++) {
495 1.12 kleink if (lseek(f, (off_t)(dp->d_secsize * s1), SEEK_SET) < 0)
496 1.1 cgd Perror("lseek");
497 1.1 cgd if ((n = read(f, buf, dp->d_secsize)) == dp->d_secsize)
498 1.1 cgd break;
499 1.1 cgd }
500 1.1 cgd if (n != dp->d_secsize) {
501 1.1 cgd fprintf(stderr, "bad144: can't read sector, %d: ", s1);
502 1.1 cgd if (n < 0)
503 1.1 cgd perror((char *)0);
504 1.1 cgd return(0);
505 1.1 cgd }
506 1.12 kleink if (lseek(f, (off_t)(dp->d_secsize * s2), SEEK_SET) < 0)
507 1.1 cgd Perror("lseek");
508 1.1 cgd if (verbose)
509 1.1 cgd printf("copying %d to %d\n", s1, s2);
510 1.1 cgd if (nflag == 0 && write(f, buf, dp->d_secsize) != dp->d_secsize) {
511 1.1 cgd fprintf(stderr,
512 1.1 cgd "bad144: can't write replacement sector, %d: ", s2);
513 1.1 cgd perror((char *)0);
514 1.1 cgd return(0);
515 1.1 cgd }
516 1.1 cgd return(1);
517 1.1 cgd }
518 1.1 cgd
519 1.1 cgd char *zbuf;
520 1.1 cgd
521 1.11 mikel void
522 1.1 cgd blkzero(f, sn)
523 1.11 mikel int f;
524 1.11 mikel daddr_t sn;
525 1.1 cgd {
526 1.1 cgd
527 1.1 cgd if (zbuf == (char *)NULL) {
528 1.1 cgd zbuf = malloc((unsigned)dp->d_secsize);
529 1.1 cgd if (zbuf == (char *)NULL) {
530 1.1 cgd fprintf(stderr, "Out of memory\n");
531 1.1 cgd exit(20);
532 1.1 cgd }
533 1.1 cgd }
534 1.12 kleink if (lseek(f, (off_t)(dp->d_secsize * sn), SEEK_SET) < 0)
535 1.1 cgd Perror("lseek");
536 1.1 cgd if (verbose)
537 1.1 cgd printf("zeroing %d\n", sn);
538 1.1 cgd if (nflag == 0 && write(f, zbuf, dp->d_secsize) != dp->d_secsize) {
539 1.1 cgd fprintf(stderr,
540 1.1 cgd "bad144: can't write replacement sector, %d: ", sn);
541 1.1 cgd perror((char *)0);
542 1.1 cgd }
543 1.1 cgd }
544 1.1 cgd
545 1.11 mikel int
546 1.11 mikel compare(v1, v2)
547 1.11 mikel const void *v1, *v2;
548 1.1 cgd {
549 1.11 mikel const struct bt_bad *b1 = v1;
550 1.11 mikel const struct bt_bad *b2 = v2;
551 1.11 mikel
552 1.1 cgd if (b1->bt_cyl > b2->bt_cyl)
553 1.1 cgd return(1);
554 1.1 cgd if (b1->bt_cyl < b2->bt_cyl)
555 1.1 cgd return(-1);
556 1.1 cgd if (b1->bt_trksec == b2->bt_trksec)
557 1.1 cgd dups++;
558 1.1 cgd return (b1->bt_trksec - b2->bt_trksec);
559 1.1 cgd }
560 1.1 cgd
561 1.1 cgd daddr_t
562 1.1 cgd badsn(bt)
563 1.11 mikel const struct bt_bad *bt;
564 1.1 cgd {
565 1.11 mikel
566 1.11 mikel return ((bt->bt_cyl * dp->d_ntracks
567 1.11 mikel + (bt->bt_trksec >> 8)) * dp->d_nsectors
568 1.11 mikel + (bt->bt_trksec & 0xff));
569 1.1 cgd }
570 1.1 cgd
571 1.1 cgd #ifdef vax
572 1.1 cgd
573 1.1 cgd struct rp06hdr {
574 1.1 cgd short h_cyl;
575 1.1 cgd short h_trksec;
576 1.1 cgd short h_key1;
577 1.1 cgd short h_key2;
578 1.1 cgd char h_data[512];
579 1.1 cgd #define RP06_FMT 010000 /* 1 == 16 bit, 0 == 18 bit */
580 1.1 cgd };
581 1.1 cgd
582 1.1 cgd /*
583 1.1 cgd * Most massbus and unibus drives
584 1.1 cgd * have headers of this form
585 1.1 cgd */
586 1.1 cgd struct hpuphdr {
587 1.1 cgd u_short hpup_cyl;
588 1.1 cgd u_char hpup_sect;
589 1.1 cgd u_char hpup_track;
590 1.1 cgd char hpup_data[512];
591 1.1 cgd #define HPUP_OKSECT 0xc000 /* this normally means sector is good */
592 1.1 cgd #define HPUP_16BIT 0x1000 /* 1 == 16 bit format */
593 1.1 cgd };
594 1.1 cgd int rp06format(), hpupformat();
595 1.1 cgd
596 1.1 cgd struct formats {
597 1.1 cgd char *f_name; /* disk name */
598 1.1 cgd int f_bufsize; /* size of sector + header */
599 1.1 cgd int f_bic; /* value to bic in hpup_cyl */
600 1.1 cgd int (*f_routine)(); /* routine for special handling */
601 1.1 cgd } formats[] = {
602 1.1 cgd { "rp06", sizeof (struct rp06hdr), RP06_FMT, rp06format },
603 1.1 cgd { "eagle", sizeof (struct hpuphdr), HPUP_OKSECT, hpupformat },
604 1.1 cgd { "capricorn", sizeof (struct hpuphdr), HPUP_OKSECT, hpupformat },
605 1.1 cgd { "rm03", sizeof (struct hpuphdr), HPUP_OKSECT, hpupformat },
606 1.1 cgd { "rm05", sizeof (struct hpuphdr), HPUP_OKSECT, hpupformat },
607 1.1 cgd { "9300", sizeof (struct hpuphdr), HPUP_OKSECT, hpupformat },
608 1.1 cgd { "9766", sizeof (struct hpuphdr), HPUP_OKSECT, hpupformat },
609 1.1 cgd { 0, 0, 0, 0 }
610 1.1 cgd };
611 1.1 cgd
612 1.1 cgd /*ARGSUSED*/
613 1.11 mikel int
614 1.1 cgd hpupformat(fp, dp, blk, buf, count)
615 1.1 cgd struct formats *fp;
616 1.1 cgd struct disklabel *dp;
617 1.1 cgd daddr_t blk;
618 1.1 cgd char *buf;
619 1.1 cgd int count;
620 1.1 cgd {
621 1.1 cgd struct hpuphdr *hdr = (struct hpuphdr *)buf;
622 1.1 cgd int sect;
623 1.1 cgd
624 1.1 cgd if (count < sizeof(struct hpuphdr)) {
625 1.1 cgd hdr->hpup_cyl = (HPUP_OKSECT | HPUP_16BIT) |
626 1.1 cgd (blk / (dp->d_nsectors * dp->d_ntracks));
627 1.1 cgd sect = blk % (dp->d_nsectors * dp->d_ntracks);
628 1.1 cgd hdr->hpup_track = (u_char)(sect / dp->d_nsectors);
629 1.1 cgd hdr->hpup_sect = (u_char)(sect % dp->d_nsectors);
630 1.1 cgd }
631 1.1 cgd return (0);
632 1.1 cgd }
633 1.1 cgd
634 1.1 cgd /*ARGSUSED*/
635 1.11 mikel int
636 1.1 cgd rp06format(fp, dp, blk, buf, count)
637 1.1 cgd struct formats *fp;
638 1.1 cgd struct disklabel *dp;
639 1.1 cgd daddr_t blk;
640 1.1 cgd char *buf;
641 1.1 cgd int count;
642 1.1 cgd {
643 1.1 cgd
644 1.1 cgd if (count < sizeof(struct rp06hdr)) {
645 1.1 cgd fprintf(stderr, "Can't read header on blk %d, can't reformat\n",
646 1.1 cgd blk);
647 1.1 cgd return (-1);
648 1.1 cgd }
649 1.1 cgd return (0);
650 1.1 cgd }
651 1.1 cgd
652 1.11 mikel void
653 1.1 cgd format(fd, blk)
654 1.1 cgd int fd;
655 1.1 cgd daddr_t blk;
656 1.1 cgd {
657 1.1 cgd register struct formats *fp;
658 1.1 cgd static char *buf;
659 1.1 cgd static char bufsize;
660 1.1 cgd struct format_op fop;
661 1.1 cgd int n;
662 1.1 cgd
663 1.1 cgd for (fp = formats; fp->f_name; fp++)
664 1.1 cgd if (strcmp(dp->d_typename, fp->f_name) == 0)
665 1.1 cgd break;
666 1.1 cgd if (fp->f_name == 0) {
667 1.1 cgd fprintf(stderr, "bad144: don't know how to format %s disks\n",
668 1.1 cgd dp->d_typename);
669 1.1 cgd exit(2);
670 1.1 cgd }
671 1.1 cgd if (buf && bufsize < fp->f_bufsize) {
672 1.1 cgd free(buf);
673 1.1 cgd buf = NULL;
674 1.1 cgd }
675 1.1 cgd if (buf == NULL)
676 1.1 cgd buf = malloc((unsigned)fp->f_bufsize);
677 1.1 cgd if (buf == NULL) {
678 1.1 cgd fprintf(stderr, "bad144: can't allocate sector buffer\n");
679 1.1 cgd exit(3);
680 1.1 cgd }
681 1.1 cgd bufsize = fp->f_bufsize;
682 1.1 cgd /*
683 1.1 cgd * Here we do the actual formatting. All we really
684 1.1 cgd * do is rewrite the sector header and flag the bad sector
685 1.1 cgd * according to the format table description. If a special
686 1.1 cgd * purpose format routine is specified, we allow it to
687 1.1 cgd * process the sector as well.
688 1.1 cgd */
689 1.1 cgd if (verbose)
690 1.1 cgd printf("format blk %d\n", blk);
691 1.1 cgd bzero((char *)&fop, sizeof(fop));
692 1.1 cgd fop.df_buf = buf;
693 1.1 cgd fop.df_count = fp->f_bufsize;
694 1.1 cgd fop.df_startblk = blk;
695 1.1 cgd bzero(buf, fp->f_bufsize);
696 1.1 cgd if (ioctl(fd, DIOCRFORMAT, &fop) < 0)
697 1.1 cgd perror("bad144: read format");
698 1.1 cgd if (fp->f_routine &&
699 1.1 cgd (*fp->f_routine)(fp, dp, blk, buf, fop.df_count) != 0)
700 1.1 cgd return;
701 1.1 cgd if (fp->f_bic) {
702 1.1 cgd struct hpuphdr *xp = (struct hpuphdr *)buf;
703 1.1 cgd
704 1.1 cgd xp->hpup_cyl &= ~fp->f_bic;
705 1.1 cgd }
706 1.1 cgd if (nflag)
707 1.1 cgd return;
708 1.1 cgd bzero((char *)&fop, sizeof(fop));
709 1.1 cgd fop.df_buf = buf;
710 1.1 cgd fop.df_count = fp->f_bufsize;
711 1.1 cgd fop.df_startblk = blk;
712 1.1 cgd if (ioctl(fd, DIOCWFORMAT, &fop) < 0)
713 1.1 cgd Perror("write format");
714 1.1 cgd if (fop.df_count != fp->f_bufsize) {
715 1.1 cgd char msg[80];
716 1.1 cgd (void)sprintf(msg, "bad144: write format %d", blk);
717 1.1 cgd perror(msg);
718 1.1 cgd }
719 1.1 cgd }
720 1.1 cgd #endif
721 1.1 cgd
722 1.11 mikel void
723 1.1 cgd Perror(op)
724 1.11 mikel const char *op;
725 1.1 cgd {
726 1.1 cgd
727 1.11 mikel (void)fprintf(stderr, "bad144: "); perror(op);
728 1.1 cgd exit(4);
729 1.1 cgd }
730