Changeset 175
- Timestamp:
- Feb 6, 2017, 10:17:15 AM (8 years ago)
- Location:
- trunk/src
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/makefile.mk ¶
r170 r175 1 1 _VENDOR=Netlabs 2 _VER=0.10 .a82 _VER=0.10 3 3 _VERSION=$(_VER).r$(%SVNREV) 4 4 FILEVER=@$#$(_VENDOR):$(_VERSION)$#@$#$#1$#$# $(%PROJSTR)::::0::@@ … … 40 40 deamon.txt fat32.txt lesser.txt & 41 41 license.txt os2fat32.txt problems.txt & 42 partfilt.txt 42 partfilt.txt message.txt 43 43 44 44 korean = & … … 70 70 $(p)os2\docs\fat32\deamon.txt $(p)os2\docs\fat32\fat32.txt $(p)os2\docs\fat32\lesser.txt & 71 71 $(p)os2\docs\fat32\license.txt $(p)os2\docs\fat32\os2fat32.txt $(p)os2\docs\fat32\problems.txt & 72 $(p)os2\docs\fat32\partfilt.txt &72 $(p)os2\docs\fat32\partfilt.txt $(p)os2\docs\fat32\message.txt & 73 73 $(p)os2\boot\country.kor $(p)os2\docs\fat32\fat32.kor & 74 74 $(p)os2\boot\os2dasd.f32 … … 156 156 $(BINROOT)\os2\docs\fat32\deamon.txt $(BINROOT)\os2\docs\fat32\fat32.txt $(BINROOT)\os2\docs\fat32\lesser.txt & 157 157 $(BINROOT)\os2\docs\fat32\license.txt $(BINROOT)\os2\docs\fat32\os2fat32.txt $(BINROOT)\os2\docs\fat32\problems.txt & 158 $(BINROOT)\os2\docs\fat32\partfilt.txt .symbolic158 $(BINROOT)\os2\docs\fat32\partfilt.txt $(BINROOT)\os2\docs\fat32\message.txt .symbolic 159 159 160 160 $(BINROOT)\os2\boot\os2dasd.f32: $(ROOT)\lib\os2dasd.f32 … … 192 192 193 193 $(BINROOT)\os2\docs\fat32\partfilt.txt: $(ROOT)\doc\partfilt.txt 194 @copy $< $^@ >nul 2>&1 195 196 $(BINROOT)\os2\docs\fat32\message.txt: $(ROOT)\doc\message.txt 194 197 @copy $< $^@ >nul 2>&1 195 198 -
TabularUnified trunk/src/ufat32/chkdsk.c ¶
r174 r175 35 35 #include <os2.h> 36 36 #include "portable.h" 37 #include "fat32 def.h"37 #include "fat32c.h" 38 38 39 39 #define STACKSIZE 0x20000 … … 81 81 VOID Translate2OS2(PUSHORT pusUni, PSZ pszName, USHORT usLen); 82 82 83 void remount_media (HFILE hDevice);84 85 83 INT cdecl iShowMessage(PCDINFO pCD, USHORT usNr, USHORT usNumFields, ...); 86 84 PSZ GetOS2Error(USHORT rc); 85 86 #define LOGBUF_SIZE 0x10000 87 char logbuf[LOGBUF_SIZE]; 88 int logbufpos = 0; 87 89 88 90 F32PARMS f32Parms = {0}; … … 495 497 } 496 498 499 void LogOutMessagePrintf(ULONG ulMsgNo, char *psz, ULONG ulParmNo, va_list va) 500 { 501 #pragma pack (2) 502 struct 503 { 504 USHORT usRecordSize; 505 USHORT usMsgNo; 506 USHORT ulParmNo; 507 USHORT cbStrLen; 508 } header; 509 #pragma pach() 510 ULONG ulParm; 511 int i, len; 512 513 header.usRecordSize = sizeof(header) + ulParmNo * sizeof(ULONG); 514 515 if (psz) 516 { 517 len = strlen(psz) + 1; 518 header.usRecordSize += len; 519 } 520 521 header.usMsgNo = (USHORT)ulMsgNo; 522 header.ulParmNo = ulParmNo; 523 524 if (logbufpos + header.usRecordSize > LOGBUF_SIZE) 525 return; 526 527 memcpy(&logbuf[logbufpos], &header, sizeof(header)); 528 logbufpos += sizeof(header); 529 530 if (psz) 531 { 532 len = strlen(psz) + 1; 533 header.cbStrLen = len; 534 memcpy(&logbuf[logbufpos], psz, len); 535 logbufpos += len; 536 } 537 538 for (i = 0; i < ulParmNo; i++) 539 { 540 ulParm = va_arg(va, ULONG); 541 memcpy(&logbuf[logbufpos], &ulParm, sizeof(ULONG)); 542 logbufpos += sizeof(ULONG); 543 } 544 } 545 546 void LogOutMessage(ULONG ulMsgNo, char *psz, ULONG ulParmNo, ...) 547 { 548 va_list va; 549 550 va_start(va, ulParmNo); 551 LogOutMessagePrintf(ulMsgNo, psz, ulParmNo, va); 552 va_end(va); 553 } 554 497 555 ULONG ChkDskMain(PCDINFO pCD) 498 556 { … … 503 561 PSZ p; 504 562 ULONG dummy = 0; 563 HFILE hf; 564 ULONG cbActual, ulAction; 565 char szLogFile[16]; 505 566 506 567 /* 507 568 Some preparations 508 569 */ 570 memset(logbuf, 0, LOGBUF_SIZE); 571 logbufpos = 0; 572 strcpy(szLogFile, pCD->szDrive); 573 strcat(szLogFile, "\\chkdsk.log"); 574 509 575 pCD->ulCurFATSector = 0xFFFFFFFF; 510 576 pCD->ulActiveFatStart = pCD->BootSect.bpb.ReservedSectors; … … 529 595 { 530 596 printf("Not enough memory for FATBITS\n"); 531 return ERROR_NOT_ENOUGH_MEMORY; 597 rc = ERROR_NOT_ENOUGH_MEMORY; 598 goto ChkDskMainExit; 532 599 } 533 600 … … 551 618 { 552 619 printf("The media descriptor is incorrect\n"); 620 LogOutMessage(2400, NULL, 0); 553 621 pCD->ulErrorCount++; 554 622 } … … 560 628 561 629 if (pCD->fAutoCheck && pCD->fCleanOnBoot) 630 { 562 631 // cancel autocheck if disk is clean 563 return 0; 632 rc = 0; 633 goto ChkDskMainExit; 634 } 564 635 565 636 rc = CheckFats(pCD); … … 568 639 printf("The copies of the FATs do not match.\n"); 569 640 printf("Please run CHKDISK under Windows to correct this problem.\n"); 570 return rc; 641 LogOutMessage(2401, NULL, 0); 642 goto ChkDskMainExit; 571 643 } 572 644 rc = CheckFiles(pCD); … … 574 646 575 647 if (pCD->DiskInfo.total_clusters != pCD->ulTotalClusters) 648 { 576 649 printf("Total clusters mismatch!\n"); 650 LogOutMessage(2402, NULL, 0); 651 } 577 652 578 653 if (pCD->DiskInfo.avail_clusters != pCD->ulFreeClusters) … … 581 656 printf("(%lu free allocation units are reported,\nwhile %lu free units are detected.)\n", 582 657 pCD->DiskInfo.avail_clusters, pCD->ulFreeClusters); 658 LogOutMessage(2403, NULL, 2, pCD->DiskInfo.avail_clusters, pCD->ulFreeClusters); 583 659 if (pCD->fFix) 584 660 { … … 594 670 printf("The correct free space is set to %lu allocation units.\n", 595 671 ulFreeBlocks); 672 LogOutMessage(2404, NULL, 1, ulFreeBlocks); 596 673 //else 597 674 //{ … … 655 732 iShowMessage(pCD, 1339, 0); 656 733 else 657 printf("Errors may still exist on this volume. Recommended action: Run CHKDSK under Windows.\n");734 printf("Errors may still exist on this volume. \nRecommended action: Run CHKDSK under Windows.\n"); 658 735 } 659 736 else if (pCD->fFix) … … 668 745 } 669 746 670 return 0; 747 ChkDskMainExit: 748 // write chkdsk log 749 DosOpen(szLogFile, 750 &hf, 751 &ulAction, 752 0, 753 0, 754 OPEN_ACTION_CREATE_IF_NEW | OPEN_ACTION_REPLACE_IF_EXISTS, 755 OPEN_SHARE_DENYWRITE | OPEN_ACCESS_READWRITE, 756 NULL); 757 DosWrite(hf, logbuf, logbufpos, &cbActual); 758 DosClose(hf); 759 return rc; 671 760 } 672 761 … … 714 803 { 715 804 printf("There is only one active FAT.\n"); 805 LogOutMessage(2405, NULL, 0); 716 806 return 0; 717 807 } … … 773 863 printf("FAT Entry for cluster %lu contains an invalid value.\n", 774 864 ulCluster); 865 LogOutMessage(2406, NULL, 1, ulCluster); 775 866 fRetco = 1; 776 867 } … … 787 878 printf("\n"); 788 879 iShowMessage(pCD, 1374, 1, TYPE_STRING, pCD->szDrive); 880 LogOutMessage(2407, pCD->szDrive, 0); 789 881 pCD->ulErrorCount++; 790 882 pCD->fFatOk = FALSE; … … 794 886 { 795 887 printf("Ok. \n"); 888 LogOutMessage(2408, NULL, 0); 796 889 pCD->fFatOk = TRUE; 797 890 } … … 917 1010 { 918 1011 printf("CHKDSK was unable to delete a lost chain.\n"); 1012 LogOutMessage(2409, NULL, 0); 919 1013 pCD->ulErrorCount++; 920 1014 } … … 937 1031 { 938 1032 printf("An invalid cluster number %8.8lX was found.\n", ulCluster); 1033 LogOutMessage(2410, NULL, 1, ulCluster); 939 1034 return TRUE; 940 1035 } … … 980 1075 { 981 1076 printf("ERROR: Cluster for %s is 0!\n", pszPath); 1077 LogOutMessage(2411, pszPath, 0); 982 1078 return TRUE; 983 1079 } … … 1001 1097 { 1002 1098 printf("ERROR:Directory %s is too large ! (Not enough memory!)\n", pszPath); 1099 LogOutMessage(2412, pszPath, 0); 1003 1100 return ERROR_NOT_ENOUGH_MEMORY; 1004 1101 } … … 1032 1129 printf("A lost long filename was found: %s\n", 1033 1130 szLongName); 1131 LogOutMessage(2413, szLongName, 0); 1034 1132 pCD->ulErrorCount++; 1035 1133 memset(szLongName, 0, sizeof(szLongName)); … … 1057 1155 printf("The longname %s does not belong to %s\\%s\n", 1058 1156 szLongName, pszPath, MakeName(pDir, szShortName, sizeof(szShortName))); 1157 LogOutMessage(2414, MakeName(pDir, szShortName, sizeof(szShortName)), 0); 1059 1158 memset(szLongName, 0, sizeof(szLongName)); 1060 1159 } … … 1113 1212 { 1114 1213 printf("%s has old EA mark byte(0x%0X).\n", pbPath, pDir->fEAS ); 1214 LogOutMessage(2415, pbPath, 1, pDir->fEAS); 1115 1215 if (pCD->fFix) 1116 1216 { … … 1127 1227 printf("This has been corrected.\n"); 1128 1228 else 1229 { 1129 1230 printf("SYS%4.4u: Unable to correct problem.\n", rc); 1231 LogOutMessage(2416, NULL, 1, rc); 1232 } 1130 1233 } 1131 1234 } … … 1135 1238 { 1136 1239 printf("%s has unknown EA mark byte(0x%0X).\n", pbPath, pDir->fEAS ); 1240 LogOutMessage(2417, pbPath, 1, pDir->fEAS); 1137 1241 } 1138 1242 #endif … … 1142 1246 { 1143 1247 printf("%s has EA byte(0x%0X).\n", pbPath, pDir->fEAS ); 1248 LogOutMessage(2418, pbPath, 1, pDir->fEAS); 1144 1249 } 1145 1250 #endif … … 1156 1261 { 1157 1262 printf("%s is marked having EAs, but the EA file (%s) is not found. (SYS%4.4u)\n", pbPath, Mark.szFileName, rc); 1263 LogOutMessage(2419, Mark.szFileName, 1, rc); 1158 1264 if (pCD->fFix) 1159 1265 { … … 1170 1276 printf("This has been corrected.\n"); 1171 1277 else 1278 { 1172 1279 printf("SYS%4.4u: Unable to correct problem.\n", rc); 1280 LogOutMessage(2416, NULL, 1, rc); 1281 } 1173 1282 } 1174 1283 } … … 1176 1285 { 1177 1286 printf("%s is marked having EAs, but the EA file (%s) is empty.\n", pbPath, Mark.szFileName); 1287 LogOutMessage(2420, NULL, 1, Mark.szFileName); 1178 1288 if (pCD->fFix) 1179 1289 { … … 1191 1301 printf("This has been corrected.\n"); 1192 1302 else 1303 { 1193 1304 printf("SYS%4.4u: Unable to correct problem.\n", rc); 1305 LogOutMessage(2416, NULL, 1, rc); 1306 } 1194 1307 } 1195 1308 } … … 1223 1336 printf("A lost Extended attribute was found (for %s)\n", 1224 1337 Mark.szFileName); 1338 LogOutMessage(2421, Mark.szFileName, 0); 1225 1339 if (pCD->fFix) 1226 1340 { … … 1238 1352 rc = DosMove(pbPath, Mark.szFileName); 1239 1353 if (!rc) 1354 { 1240 1355 printf("This attribute has been converted to a file \n(%s).\n", Mark.szFileName); 1356 LogOutMessage(2422, Mark.szFileName, 0); 1357 } 1241 1358 else 1242 1359 { 1243 1360 printf("SYS%4.4u: Cannot convert %s\n", 1244 1361 rc, pbPath); 1362 LogOutMessage(2423, pbPath, 1, rc); 1245 1363 pCD->ulErrorCount++; 1246 1364 } … … 1251 1369 { 1252 1370 printf("SYS%4.4u occured while retrieving EA flag for %s.\n", rc, Mark.szFileName); 1371 LogOutMessage(2424, Mark.szFileName, 1, rc); 1253 1372 } 1254 1373 else … … 1257 1376 { 1258 1377 printf("EAs detected for %s, but it is not marked having EAs.\n", Mark.szFileName); 1378 LogOutMessage(2425, Mark.szFileName, 0); 1259 1379 if (pCD->fFix) 1260 1380 { … … 1270 1390 printf("This has been corrected.\n"); 1271 1391 else 1392 { 1272 1393 printf("SYS%4.4u: Unable to correct problem.\n", rc); 1394 LogOutMessage(2416, NULL, 1, rc); 1395 } 1273 1396 } 1274 1397 } … … 1295 1418 pszPath, szLongName); 1296 1419 #endif 1420 LogOutMessage(2426, szLongName, 0); 1297 1421 pCD->ulErrorCount++; 1298 1422 } … … 1321 1445 fs.szFileName); 1322 1446 printf("CHKDSK was unable to correct the filesize. SYS%4.4u.\n", rc); 1447 LogOutMessage(2426, fs.szFileName, 0); 1448 LogOutMessage(2428, NULL, 1, rc); 1323 1449 pCD->ulErrorCount++; 1324 1450 } … … 1380 1506 printf("Non matching longname %s for %-11.11s\n", 1381 1507 szLongName, pDir->bFileName); 1508 LogOutMessage(2429, pDir->bFileName, 0); 1382 1509 memset(szLongName, 0, sizeof(szLongName)); 1383 1510 } … … 1409 1536 { 1410 1537 if (ulCluster != ulDirCluster) 1538 { 1411 1539 printf(". entry in %s is incorrect!\n", pszPath); 1540 LogOutMessage(2430, pszPath, 0); 1541 } 1412 1542 } 1413 1543 else if (!memicmp(pDir->bFileName, ".. ", 11)) 1414 1544 { 1415 1545 if (ulCluster != ulParentDirCluster) 1546 { 1416 1547 printf(".. entry in %s is incorrect! (%lX %lX)\n", 1417 1548 pszPath, ulCluster, ulParentDirCluster); 1549 LogOutMessage(2431, pszPath, 2, ulCluster, ulParentDirCluster); 1550 } 1418 1551 } 1419 1552 else … … 1467 1600 printf("Invalid start of clusterchain %lX found for %s\n", 1468 1601 ulCluster, pszFile); 1602 LogOutMessage(2432, pszFile, 1, ulCluster); 1469 1603 return 0; 1470 1604 } … … 1482 1616 { 1483 1617 printf("CHKDSK found an improperly terminated cluster chain for %s ", pszFile); 1618 LogOutMessage(2433, pszFile, 0); 1484 1619 if (SetNextCluster(pCD, ulCluster, FAT_EOF)) 1485 1620 //{ … … 1488 1623 //} 1489 1624 //else 1625 { 1490 1626 printf(" and corrected the problem.\n"); 1627 LogOutMessage(2434, NULL, 0); 1628 } 1491 1629 } 1492 1630 else 1493 1631 { 1494 1632 printf("A bad terminated cluster chain was found for %s\n", pszFile); 1633 LogOutMessage(2435, pszFile, 0); 1495 1634 pCD->ulErrorCount++; 1496 1635 } … … 1505 1644 { 1506 1645 printf("%s is fragmented\n", pszFile); 1646 LogOutMessage(2436, pszFile, 0); 1507 1647 fShown = TRUE; 1508 1648 } … … 1823 1963 pCD->ulErrorCount++; 1824 1964 printf("CHKDSK was unable to recover a lost chain. SYS%4.4u\n", rc); 1965 LogOutMessage(2437, NULL, 1, rc); 1825 1966 return FALSE; 1826 1967 }
Note:
See TracChangeset
for help on using the changeset viewer.