fat.c revision 1.27 1 /* $NetBSD: fat.c,v 1.27 2014/07/07 18:46:45 christos Exp $ */
2
3 /*
4 * Copyright (C) 1995, 1996, 1997 Wolfgang Solfrank
5 * Copyright (c) 1995 Martin Husemann
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28
29 #include <sys/cdefs.h>
30 #ifndef lint
31 __RCSID("$NetBSD: fat.c,v 1.27 2014/07/07 18:46:45 christos Exp $");
32 #endif /* not lint */
33
34 #include <stdlib.h>
35 #include <string.h>
36 #include <ctype.h>
37 #include <stdio.h>
38 #include <unistd.h>
39
40 #include "ext.h"
41 #include "fsutil.h"
42
43 static int checkclnum(struct bootblock *, u_int, cl_t, cl_t *);
44 static int clustdiffer(cl_t, cl_t *, cl_t *, u_int);
45 static int tryclear(struct bootblock *, struct fatEntry *, cl_t, cl_t *);
46 static int _readfat(int, struct bootblock *, u_int, u_char **);
47
48 /*
49 * Check a cluster number for valid value
50 */
51 static int
52 checkclnum(struct bootblock *boot, u_int fat, cl_t cl, cl_t *next)
53 {
54 if (*next >= (CLUST_RSRVD&boot->ClustMask))
55 *next |= ~boot->ClustMask;
56 if (*next == CLUST_FREE) {
57 boot->NumFree++;
58 return FSOK;
59 }
60 if (*next == CLUST_BAD) {
61 boot->NumBad++;
62 return FSOK;
63 }
64 if (*next < CLUST_FIRST
65 || (*next >= boot->NumClusters && *next < CLUST_EOFS)) {
66 pwarn("Cluster %u in FAT %u continues with %s cluster number %u\n",
67 cl, fat,
68 *next < CLUST_RSRVD ? "out of range" : "reserved",
69 *next&boot->ClustMask);
70 if (ask(0, "Truncate")) {
71 *next = CLUST_EOF;
72 return FSFATMOD;
73 }
74 return FSERROR;
75 }
76 return FSOK;
77 }
78
79 /*
80 * Read a FAT from disk. Returns 1 if successful, 0 otherwise.
81 */
82 static int
83 _readfat(int fs, struct bootblock *boot, u_int no, u_char **buffer)
84 {
85 off_t off;
86 size_t len;
87
88 *buffer = malloc(len = boot->FATsecs * boot->BytesPerSec);
89 if (*buffer == NULL) {
90 perr("No space for FAT sectors (%zu)", len);
91 return 0;
92 }
93
94 off = boot->ResSectors + no * boot->FATsecs;
95 off *= boot->BytesPerSec;
96
97 if (lseek(fs, off, SEEK_SET) != off) {
98 perr("Unable to read FAT");
99 goto err;
100 }
101
102 if ((size_t)read(fs, *buffer, boot->FATsecs * boot->BytesPerSec)
103 != boot->FATsecs * boot->BytesPerSec) {
104 perr("Unable to read FAT");
105 goto err;
106 }
107
108 return 1;
109
110 err:
111 free(*buffer);
112 return 0;
113 }
114
115 /*
116 * Read a FAT and decode it into internal format
117 */
118 int
119 readfat(int fs, struct bootblock *boot, u_int no, struct fatEntry **fp)
120 {
121 struct fatEntry *fat;
122 u_char *buffer, *p;
123 cl_t cl;
124 int ret = FSOK;
125 size_t len;
126
127 boot->NumFree = boot->NumBad = 0;
128
129 if (!_readfat(fs, boot, no, &buffer))
130 return FSFATAL;
131
132 fat = malloc(len = boot->NumClusters * sizeof(struct fatEntry));
133 if (fat == NULL) {
134 perr("No space for FAT clusters (%zu)", len);
135 free(buffer);
136 return FSFATAL;
137 }
138 (void)memset(fat, 0, len);
139
140 if (buffer[0] != boot->Media
141 || buffer[1] != 0xff || buffer[2] != 0xff
142 || (boot->ClustMask == CLUST16_MASK && buffer[3] != 0xff)
143 || (boot->ClustMask == CLUST32_MASK
144 && ((buffer[3]&0x0f) != 0x0f
145 || buffer[4] != 0xff || buffer[5] != 0xff
146 || buffer[6] != 0xff || (buffer[7]&0x0f) != 0x0f))) {
147
148 /* Windows 95 OSR2 (and possibly any later) changes
149 * the FAT signature to 0xXXffff7f for FAT16 and to
150 * 0xXXffff0fffffff07 for FAT32 upon boot, to know that the
151 * filesystem is dirty if it doesn't reboot cleanly.
152 * Check this special condition before errorring out.
153 */
154 if (buffer[0] == boot->Media && buffer[1] == 0xff
155 && buffer[2] == 0xff
156 && ((boot->ClustMask == CLUST16_MASK && buffer[3] == 0x7f)
157 || (boot->ClustMask == CLUST32_MASK
158 && buffer[3] == 0x0f && buffer[4] == 0xff
159 && buffer[5] == 0xff && buffer[6] == 0xff
160 && buffer[7] == 0x07)))
161 ret |= FSDIRTY;
162 else {
163 /* just some odd byte sequence in FAT */
164
165 switch (boot->ClustMask) {
166 case CLUST32_MASK:
167 pwarn("%s (%02x%02x%02x%02x%02x%02x%02x%02x)\n",
168 "FAT starts with odd byte sequence",
169 buffer[0], buffer[1], buffer[2], buffer[3],
170 buffer[4], buffer[5], buffer[6], buffer[7]);
171 break;
172 case CLUST16_MASK:
173 pwarn("%s (%02x%02x%02x%02x)\n",
174 "FAT starts with odd byte sequence",
175 buffer[0], buffer[1], buffer[2], buffer[3]);
176 break;
177 default:
178 pwarn("%s (%02x%02x%02x)\n",
179 "FAT starts with odd byte sequence",
180 buffer[0], buffer[1], buffer[2]);
181 break;
182 }
183
184
185 if (ask(1, "Correct"))
186 ret |= FSFIXFAT;
187 }
188 }
189 switch (boot->ClustMask) {
190 case CLUST32_MASK:
191 p = buffer + 8;
192 break;
193 case CLUST16_MASK:
194 p = buffer + 4;
195 break;
196 default:
197 p = buffer + 3;
198 break;
199 }
200 for (cl = CLUST_FIRST; cl < boot->NumClusters;) {
201 switch (boot->ClustMask) {
202 case CLUST32_MASK:
203 fat[cl].next = p[0] + (p[1] << 8)
204 + (p[2] << 16) + (p[3] << 24);
205 fat[cl].next &= boot->ClustMask;
206 ret |= checkclnum(boot, no, cl, &fat[cl].next);
207 cl++;
208 p += 4;
209 break;
210 case CLUST16_MASK:
211 fat[cl].next = p[0] + (p[1] << 8);
212 ret |= checkclnum(boot, no, cl, &fat[cl].next);
213 cl++;
214 p += 2;
215 break;
216 default:
217 fat[cl].next = (p[0] + (p[1] << 8)) & 0x0fff;
218 ret |= checkclnum(boot, no, cl, &fat[cl].next);
219 cl++;
220 if (cl >= boot->NumClusters)
221 break;
222 fat[cl].next = ((p[1] >> 4) + (p[2] << 4)) & 0x0fff;
223 ret |= checkclnum(boot, no, cl, &fat[cl].next);
224 cl++;
225 p += 3;
226 break;
227 }
228 }
229
230 free(buffer);
231 if (ret & FSFATAL) {
232 free(fat);
233 *fp = NULL;
234 } else
235 *fp = fat;
236 return ret;
237 }
238
239 /*
240 * Get type of reserved cluster
241 */
242 const char *
243 rsrvdcltype(cl_t cl)
244 {
245 if (cl == CLUST_FREE)
246 return "free";
247 if (cl < CLUST_BAD)
248 return "reserved";
249 if (cl > CLUST_BAD)
250 return "as EOF";
251 return "bad";
252 }
253
254 static int
255 clustdiffer(cl_t cl, cl_t *cp1, cl_t *cp2, u_int fatnum)
256 {
257 if (*cp1 == CLUST_FREE || *cp1 >= CLUST_RSRVD) {
258 if (*cp2 == CLUST_FREE || *cp2 >= CLUST_RSRVD) {
259 if ((*cp1 != CLUST_FREE && *cp1 < CLUST_BAD
260 && *cp2 != CLUST_FREE && *cp2 < CLUST_BAD)
261 || (*cp1 > CLUST_BAD && *cp2 > CLUST_BAD)) {
262 pwarn("Cluster %u is marked %s with different indicators, ",
263 cl, rsrvdcltype(*cp1));
264 if (ask(1, "fix")) {
265 *cp2 = *cp1;
266 return FSFATMOD;
267 }
268 return FSFATAL;
269 }
270 pwarn("Cluster %u is marked %s in FAT 0, %s in FAT %u\n",
271 cl, rsrvdcltype(*cp1), rsrvdcltype(*cp2), fatnum);
272 if (ask(0, "use FAT 0's entry")) {
273 *cp2 = *cp1;
274 return FSFATMOD;
275 }
276 if (ask(0, "use FAT %u's entry", fatnum)) {
277 *cp1 = *cp2;
278 return FSFATMOD;
279 }
280 return FSFATAL;
281 }
282 pwarn("Cluster %u is marked %s in FAT 0, but continues with cluster %u in FAT %u\n",
283 cl, rsrvdcltype(*cp1), *cp2, fatnum);
284 if (ask(0, "Use continuation from FAT %u", fatnum)) {
285 *cp1 = *cp2;
286 return FSFATMOD;
287 }
288 if (ask(0, "Use mark from FAT 0")) {
289 *cp2 = *cp1;
290 return FSFATMOD;
291 }
292 return FSFATAL;
293 }
294 if (*cp2 == CLUST_FREE || *cp2 >= CLUST_RSRVD) {
295 pwarn("Cluster %u continues with cluster %u in FAT 0, but is marked %s in FAT %u\n",
296 cl, *cp1, rsrvdcltype(*cp2), fatnum);
297 if (ask(0, "Use continuation from FAT 0")) {
298 *cp2 = *cp1;
299 return FSFATMOD;
300 }
301 if (ask(0, "Use mark from FAT %u", fatnum)) {
302 *cp1 = *cp2;
303 return FSFATMOD;
304 }
305 return FSERROR;
306 }
307 pwarn("Cluster %u continues with cluster %u in FAT 0, but with cluster %u in FAT %u\n",
308 cl, *cp1, *cp2, fatnum);
309 if (ask(0, "Use continuation from FAT 0")) {
310 *cp2 = *cp1;
311 return FSFATMOD;
312 }
313 if (ask(0, "Use continuation from FAT %u", fatnum)) {
314 *cp1 = *cp2;
315 return FSFATMOD;
316 }
317 return FSERROR;
318 }
319
320 /*
321 * Compare two FAT copies in memory. Resolve any conflicts and merge them
322 * into the first one.
323 */
324 int
325 comparefat(struct bootblock *boot, struct fatEntry *first,
326 struct fatEntry *second, u_int fatnum)
327 {
328 cl_t cl;
329 int ret = FSOK;
330
331 for (cl = CLUST_FIRST; cl < boot->NumClusters; cl++)
332 if (first[cl].next != second[cl].next)
333 ret |= clustdiffer(cl, &first[cl].next, &second[cl].next, fatnum);
334 return ret;
335 }
336
337 void
338 clearchain(struct bootblock *boot, struct fatEntry *fat, cl_t head)
339 {
340 cl_t p, q;
341
342 for (p = head; p >= CLUST_FIRST && p < boot->NumClusters; p = q) {
343 if (fat[p].head != head)
344 break;
345 q = fat[p].next;
346 fat[p].next = fat[p].head = CLUST_FREE;
347 fat[p].length = 0;
348 }
349 }
350
351 int
352 tryclear(struct bootblock *boot, struct fatEntry *fat, cl_t head, cl_t *truncp)
353 {
354 if (ask(0, "Clear chain starting at %u", head)) {
355 clearchain(boot, fat, head);
356 return FSFATMOD;
357 } else if (ask(0, "Truncate")) {
358 uint32_t len;
359 cl_t p;
360
361 for (p = head, len = 0;
362 p >= CLUST_FIRST && p < boot->NumClusters;
363 p = fat[p].next, len++)
364 continue;
365 *truncp = CLUST_EOF;
366 fat[head].length = len;
367 return FSFATMOD;
368 } else
369 return FSERROR;
370 }
371
372 /*
373 * Check a complete FAT in-memory for crosslinks
374 */
375 int
376 checkfat(struct bootblock *boot, struct fatEntry *fat)
377 {
378 cl_t head, p, h, n;
379 u_int len;
380 int ret = 0;
381 int conf;
382
383 /*
384 * pass 1: figure out the cluster chains.
385 */
386 for (head = CLUST_FIRST; head < boot->NumClusters; head++) {
387 /* find next untravelled chain */
388 if (fat[head].head != 0 /* cluster already belongs to some chain */
389 || fat[head].next == CLUST_FREE
390 || fat[head].next == CLUST_BAD)
391 continue; /* skip it. */
392
393 /* follow the chain and mark all clusters on the way */
394 for (len = 0, p = head;
395 p >= CLUST_FIRST && p < boot->NumClusters;
396 p = fat[p].next) {
397 fat[p].head = head;
398 len++;
399 }
400
401 /* the head record gets the length */
402 fat[head].length = fat[head].next == CLUST_FREE ? 0 : len;
403 }
404
405 /*
406 * pass 2: check for crosslinked chains (we couldn't do this in pass 1 because
407 * we didn't know the real start of the chain then - would have treated partial
408 * chains as interlinked with their main chain)
409 */
410 for (head = CLUST_FIRST; head < boot->NumClusters; head++) {
411 /* find next untravelled chain */
412 if (fat[head].head != head)
413 continue;
414
415 /* follow the chain to its end (hopefully) */
416 for (len = fat[head].length, p = head;
417 (n = fat[p].next) >= CLUST_FIRST && n < boot->NumClusters;
418 p = n)
419 if (fat[n].head != head || len-- < 2)
420 break;
421 if (n >= CLUST_EOFS)
422 continue;
423
424 if (n == CLUST_FREE || n >= CLUST_RSRVD) {
425 pwarn("Cluster chain starting at %u ends with cluster marked %s\n",
426 head, rsrvdcltype(n));
427 clear:
428 ret |= tryclear(boot, fat, head, &fat[p].next);
429 continue;
430 }
431 if (n < CLUST_FIRST || n >= boot->NumClusters) {
432 pwarn("Cluster chain starting at %u ends with cluster out of range (%u)\n",
433 head, n);
434 goto clear;
435 }
436 if (head == fat[n].head) {
437 pwarn("Cluster chain starting at %u loops at cluster %u\n",
438
439 head, p);
440 goto clear;
441 }
442 pwarn("Cluster chains starting at %u and %u are linked at cluster %u\n",
443 head, fat[n].head, n);
444 conf = tryclear(boot, fat, head, &fat[p].next);
445 if (ask(0, "Clear chain starting at %u", h = fat[n].head)) {
446 if (conf == FSERROR) {
447 /*
448 * Transfer the common chain to the one not cleared above.
449 */
450 for (p = n;
451 p >= CLUST_FIRST && p < boot->NumClusters;
452 p = fat[p].next) {
453 if (h != fat[p].head) {
454 /*
455 * Have to reexamine this chain.
456 */
457 head--;
458 break;
459 }
460 fat[p].head = head;
461 }
462 }
463 clearchain(boot, fat, h);
464 conf |= FSFATMOD;
465 }
466 ret |= conf;
467 }
468
469 return ret;
470 }
471
472 /*
473 * Write out FATs encoding them from the internal format
474 */
475 int
476 writefat(int fs, struct bootblock *boot, struct fatEntry *fat, int correct_fat)
477 {
478 u_char *buffer, *p;
479 cl_t cl;
480 u_int i;
481 size_t fatsz;
482 off_t off;
483 int ret = FSOK;
484
485 buffer = malloc(fatsz = boot->FATsecs * boot->BytesPerSec);
486 if (buffer == NULL) {
487 perr("No space for FAT sectors (%zu)", fatsz);
488 return FSFATAL;
489 }
490 memset(buffer, 0, fatsz);
491 boot->NumFree = 0;
492 p = buffer;
493 if (correct_fat) {
494 *p++ = (u_char)boot->Media;
495 *p++ = 0xff;
496 *p++ = 0xff;
497 switch (boot->ClustMask) {
498 case CLUST16_MASK:
499 *p++ = 0xff;
500 break;
501 case CLUST32_MASK:
502 *p++ = 0x0f;
503 *p++ = 0xff;
504 *p++ = 0xff;
505 *p++ = 0xff;
506 *p++ = 0x0f;
507 break;
508 }
509 } else {
510 /* use same FAT signature as the old FAT has */
511 int count;
512 u_char *old_fat;
513
514 switch (boot->ClustMask) {
515 case CLUST32_MASK:
516 count = 8;
517 break;
518 case CLUST16_MASK:
519 count = 4;
520 break;
521 default:
522 count = 3;
523 break;
524 }
525
526 if (!_readfat(fs, boot, boot->ValidFat >= 0 ? boot->ValidFat :0,
527 &old_fat)) {
528 free(buffer);
529 return FSFATAL;
530 }
531
532 memcpy(p, old_fat, count);
533 free(old_fat);
534 p += count;
535 }
536
537 for (cl = CLUST_FIRST; cl < boot->NumClusters; cl++) {
538 switch (boot->ClustMask) {
539 case CLUST32_MASK:
540 if (fat[cl].next == CLUST_FREE)
541 boot->NumFree++;
542 *p++ = (u_char)fat[cl].next;
543 *p++ = (u_char)(fat[cl].next >> 8);
544 *p++ = (u_char)(fat[cl].next >> 16);
545 *p &= 0xf0;
546 *p++ |= (fat[cl].next >> 24)&0x0f;
547 break;
548 case CLUST16_MASK:
549 if (fat[cl].next == CLUST_FREE)
550 boot->NumFree++;
551 *p++ = (u_char)fat[cl].next;
552 *p++ = (u_char)(fat[cl].next >> 8);
553 break;
554 default:
555 if (fat[cl].next == CLUST_FREE)
556 boot->NumFree++;
557 *p++ = (u_char)fat[cl].next;
558 *p++ = (u_char)((fat[cl].next >> 8) & 0xf);
559 cl++;
560 if (cl >= boot->NumClusters)
561 break;
562 if (fat[cl].next == CLUST_FREE)
563 boot->NumFree++;
564 *p |= (u_char)(fat[cl + 1].next << 4);
565 *p++ = (u_char)(fat[cl + 1].next >> 4);
566 break;
567 }
568 }
569 for (i = 0; i < boot->FATs; i++) {
570 off = boot->ResSectors + i * boot->FATsecs;
571 off *= boot->BytesPerSec;
572 if (lseek(fs, off, SEEK_SET) != off
573 || (size_t)write(fs, buffer, fatsz) != fatsz) {
574 perr("Unable to write FAT");
575 ret = FSFATAL; /* Return immediately? XXX */
576 }
577 }
578 free(buffer);
579 return ret;
580 }
581
582 /*
583 * Check a complete in-memory FAT for lost cluster chains
584 */
585 int
586 checklost(int dosfs, struct bootblock *boot, struct fatEntry *fat)
587 {
588 cl_t head;
589 int mod = FSOK;
590 int ret;
591
592 for (head = CLUST_FIRST; head < boot->NumClusters; head++) {
593 /* find next untravelled chain */
594 if (fat[head].head != head
595 || fat[head].next == CLUST_FREE
596 || (fat[head].next >= CLUST_RSRVD
597 && fat[head].next < CLUST_EOFS)
598 || (fat[head].flags & FAT_USED))
599 continue;
600
601 pwarn("Lost cluster chain at cluster %u\n%d Cluster(s) lost\n",
602 head, fat[head].length);
603 mod |= ret = reconnect(dosfs, boot, fat, head);
604 if (mod & FSFATAL)
605 break;
606 if (ret == FSERROR && ask(0, "Clear")) {
607 clearchain(boot, fat, head);
608 mod |= FSFATMOD;
609 }
610 }
611 finishlf();
612
613 if (boot->FSInfo) {
614 ret = 0;
615 if (boot->FSFree != 0xffffffffU &&
616 boot->FSFree != boot->NumFree) {
617 pwarn("Free space in FSInfo block (%u) not correct (%u)\n",
618 boot->FSFree, boot->NumFree);
619 if (ask(1, "fix")) {
620 boot->FSFree = boot->NumFree;
621 ret = 1;
622 }
623 }
624 if (boot->FSNext != 0xffffffffU &&
625 (boot->FSNext >= boot->NumClusters ||
626 (boot->NumFree && fat[boot->FSNext].next != CLUST_FREE))) {
627 pwarn("Next free cluster in FSInfo block (%u) %s\n",
628 boot->FSNext,
629 (boot->FSNext >= boot->NumClusters) ? "invalid" : "not free");
630 if (ask(1, "fix"))
631 for (head = CLUST_FIRST; head < boot->NumClusters; head++)
632 if (fat[head].next == CLUST_FREE) {
633 boot->FSNext = head;
634 ret = 1;
635 break;
636 }
637 }
638 if (ret)
639 mod |= writefsinfo(dosfs, boot);
640 }
641
642 return mod;
643 }
644