Changeset 175


Ignore:
Timestamp:
Feb 6, 2017, 10:17:15 AM (8 years ago)
Author:
Valery V. Sedletski
Message:

CHKDSK: CHKDSK log support.

Location:
trunk/src
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/makefile.mk

    r170 r175  
    11_VENDOR=Netlabs
    2 _VER=0.10.a8
     2_VER=0.10
    33_VERSION=$(_VER).r$(%SVNREV)
    44FILEVER=@$#$(_VENDOR):$(_VERSION)$#@$#$#1$#$# $(%PROJSTR)::::0::@@
     
    4040 deamon.txt fat32.txt lesser.txt &
    4141 license.txt os2fat32.txt problems.txt &
    42  partfilt.txt
     42 partfilt.txt message.txt
    4343
    4444korean   = &
     
    7070 $(p)os2\docs\fat32\deamon.txt $(p)os2\docs\fat32\fat32.txt $(p)os2\docs\fat32\lesser.txt &
    7171 $(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 &
    7373 $(p)os2\boot\country.kor $(p)os2\docs\fat32\fat32.kor &
    7474 $(p)os2\boot\os2dasd.f32
     
    156156 $(BINROOT)\os2\docs\fat32\deamon.txt $(BINROOT)\os2\docs\fat32\fat32.txt $(BINROOT)\os2\docs\fat32\lesser.txt &
    157157 $(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 .symbolic
     158 $(BINROOT)\os2\docs\fat32\partfilt.txt $(BINROOT)\os2\docs\fat32\message.txt .symbolic
    159159
    160160$(BINROOT)\os2\boot\os2dasd.f32: $(ROOT)\lib\os2dasd.f32
     
    192192
    193193$(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
    194197 @copy $< $^@ >nul 2>&1
    195198
  • TabularUnified trunk/src/ufat32/chkdsk.c

    r174 r175  
    3535#include <os2.h>
    3636#include "portable.h"
    37 #include "fat32def.h"
     37#include "fat32c.h"
    3838
    3939#define STACKSIZE 0x20000
     
    8181VOID Translate2OS2(PUSHORT pusUni, PSZ pszName, USHORT usLen);
    8282
    83 void remount_media (HFILE hDevice);
    84 
    8583INT cdecl iShowMessage(PCDINFO pCD, USHORT usNr, USHORT usNumFields, ...);
    8684PSZ       GetOS2Error(USHORT rc);
     85
     86#define LOGBUF_SIZE 0x10000
     87char logbuf[LOGBUF_SIZE];
     88int  logbufpos = 0;
    8789
    8890F32PARMS  f32Parms = {0};
     
    495497}
    496498
     499void 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
     546void 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
    497555ULONG ChkDskMain(PCDINFO pCD)
    498556{
     
    503561PSZ    p;
    504562ULONG  dummy = 0;
     563HFILE  hf;
     564ULONG  cbActual, ulAction;
     565char szLogFile[16];
    505566
    506567   /*
    507568      Some preparations
    508569   */
     570   memset(logbuf, 0, LOGBUF_SIZE);
     571   logbufpos = 0;
     572   strcpy(szLogFile, pCD->szDrive);
     573   strcat(szLogFile, "\\chkdsk.log");
     574
    509575   pCD->ulCurFATSector = 0xFFFFFFFF;
    510576   pCD->ulActiveFatStart =  pCD->BootSect.bpb.ReservedSectors;
     
    529595      {
    530596      printf("Not enough memory for FATBITS\n");
    531       return ERROR_NOT_ENOUGH_MEMORY;
     597      rc = ERROR_NOT_ENOUGH_MEMORY;
     598      goto ChkDskMainExit;
    532599      }
    533600
     
    551618      {
    552619      printf("The media descriptor is incorrect\n");
     620      LogOutMessage(2400, NULL, 0);
    553621      pCD->ulErrorCount++;
    554622      }
     
    560628
    561629   if (pCD->fAutoCheck && pCD->fCleanOnBoot)
     630      {
    562631      // cancel autocheck if disk is clean
    563       return 0;
     632      rc = 0;
     633      goto ChkDskMainExit;
     634      }
    564635
    565636   rc = CheckFats(pCD);
     
    568639      printf("The copies of the FATs do not match.\n");
    569640      printf("Please run CHKDISK under Windows to correct this problem.\n");
    570       return rc;
     641      LogOutMessage(2401, NULL, 0);
     642      goto ChkDskMainExit;
    571643      }
    572644   rc = CheckFiles(pCD);
     
    574646
    575647   if (pCD->DiskInfo.total_clusters != pCD->ulTotalClusters)
     648      {
    576649      printf("Total clusters mismatch!\n");
     650      LogOutMessage(2402, NULL, 0);
     651      }
    577652
    578653   if (pCD->DiskInfo.avail_clusters != pCD->ulFreeClusters)
     
    581656      printf("(%lu free allocation units are reported,\nwhile %lu free units are detected.)\n",
    582657         pCD->DiskInfo.avail_clusters, pCD->ulFreeClusters);
     658      LogOutMessage(2403, NULL, 2, pCD->DiskInfo.avail_clusters, pCD->ulFreeClusters);
    583659      if (pCD->fFix)
    584660         {
     
    594670            printf("The correct free space is set to %lu allocation units.\n",
    595671               ulFreeBlocks);
     672            LogOutMessage(2404, NULL, 1, ulFreeBlocks);
    596673         //else
    597674            //{
     
    655732         iShowMessage(pCD, 1339, 0);
    656733      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");
    658735      }
    659736   else if (pCD->fFix)
     
    668745      }
    669746
    670    return 0;
     747ChkDskMainExit:
     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;
    671760}
    672761
     
    714803      {
    715804      printf("There is only one active FAT.\n");
     805      LogOutMessage(2405, NULL, 0);
    716806      return 0;
    717807      }
     
    773863               printf("FAT Entry for cluster %lu contains an invalid value.\n",
    774864                  ulCluster);
     865               LogOutMessage(2406, NULL, 1, ulCluster);
    775866               fRetco = 1;
    776867               }
     
    787878      printf("\n");
    788879      iShowMessage(pCD, 1374, 1, TYPE_STRING, pCD->szDrive);
     880      LogOutMessage(2407, pCD->szDrive, 0);
    789881      pCD->ulErrorCount++;
    790882      pCD->fFatOk = FALSE;
     
    794886      {
    795887      printf("Ok.   \n");
     888      LogOutMessage(2408, NULL, 0);
    796889      pCD->fFatOk = TRUE;
    797890      }
     
    9171010                  {
    9181011                  printf("CHKDSK was unable to delete a lost chain.\n");
     1012                  LogOutMessage(2409, NULL, 0);
    9191013                  pCD->ulErrorCount++;
    9201014                  }
     
    9371031      {
    9381032      printf("An invalid cluster number %8.8lX was found.\n", ulCluster);
     1033      LogOutMessage(2410, NULL, 1, ulCluster);
    9391034      return TRUE;
    9401035      }
     
    9801075      {
    9811076      printf("ERROR: Cluster for %s is 0!\n", pszPath);
     1077      LogOutMessage(2411, pszPath, 0);
    9821078      return TRUE;
    9831079      }
     
    10011097      {
    10021098      printf("ERROR:Directory %s is too large ! (Not enough memory!)\n", pszPath);
     1099      LogOutMessage(2412, pszPath, 0);
    10031100      return ERROR_NOT_ENOUGH_MEMORY;
    10041101      }
     
    10321129               printf("A lost long filename was found: %s\n",
    10331130                  szLongName);
     1131               LogOutMessage(2413, szLongName, 0);
    10341132               pCD->ulErrorCount++;
    10351133               memset(szLongName, 0, sizeof(szLongName));
     
    10571155               printf("The longname %s does not belong to %s\\%s\n",
    10581156                  szLongName, pszPath, MakeName(pDir, szShortName, sizeof(szShortName)));
     1157               LogOutMessage(2414, MakeName(pDir, szShortName, sizeof(szShortName)), 0);
    10591158               memset(szLongName, 0, sizeof(szLongName));
    10601159               }
     
    11131212            {
    11141213                printf("%s has old EA mark byte(0x%0X).\n", pbPath, pDir->fEAS );
     1214                LogOutMessage(2415, pbPath, 1, pDir->fEAS);
    11151215                if (pCD->fFix)
    11161216                {
     
    11271227                        printf("This has been corrected.\n");
    11281228                     else
     1229                        {
    11291230                        printf("SYS%4.4u: Unable to correct problem.\n", rc);
     1231                        LogOutMessage(2416, NULL, 1, rc);
     1232                        }
    11301233                }
    11311234            }
     
    11351238            {
    11361239                printf("%s has unknown EA mark byte(0x%0X).\n", pbPath, pDir->fEAS );
     1240                LogOutMessage(2417, pbPath, 1, pDir->fEAS);
    11371241            }
    11381242#endif
     
    11421246            {
    11431247                printf("%s has EA byte(0x%0X).\n", pbPath, pDir->fEAS );
     1248                LogOutMessage(2418, pbPath, 1, pDir->fEAS);
    11441249            }
    11451250#endif
     
    11561261                  {
    11571262                  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);
    11581264                  if (pCD->fFix)
    11591265                     {
     
    11701276                        printf("This has been corrected.\n");
    11711277                     else
     1278                        {
    11721279                        printf("SYS%4.4u: Unable to correct problem.\n", rc);
     1280                        LogOutMessage(2416, NULL, 1, rc);
     1281                        }
    11731282                     }
    11741283                  }
     
    11761285                  {
    11771286                  printf("%s is marked having EAs, but the EA file (%s) is empty.\n", pbPath, Mark.szFileName);
     1287                  LogOutMessage(2420, NULL, 1, Mark.szFileName);
    11781288                  if (pCD->fFix)
    11791289                     {
     
    11911301                        printf("This has been corrected.\n");
    11921302                     else
     1303                        {
    11931304                        printf("SYS%4.4u: Unable to correct problem.\n", rc);
     1305                        LogOutMessage(2416, NULL, 1, rc);
     1306                        }
    11941307                     }
    11951308                  }
     
    12231336                     printf("A lost Extended attribute was found (for %s)\n",
    12241337                        Mark.szFileName);
     1338                     LogOutMessage(2421, Mark.szFileName, 0);
    12251339                     if (pCD->fFix)
    12261340                        {
     
    12381352                           rc = DosMove(pbPath, Mark.szFileName);
    12391353                        if (!rc)
     1354                           {
    12401355                           printf("This attribute has been converted to a file \n(%s).\n", Mark.szFileName);
     1356                           LogOutMessage(2422, Mark.szFileName, 0);
     1357                           }
    12411358                        else
    12421359                           {
    12431360                           printf("SYS%4.4u: Cannot convert %s\n",
    12441361                              rc, pbPath);
     1362                           LogOutMessage(2423, pbPath, 1, rc);
    12451363                           pCD->ulErrorCount++;
    12461364                           }
     
    12511369                     {
    12521370                     printf("SYS%4.4u occured while retrieving EA flag for %s.\n", rc, Mark.szFileName);
     1371                     LogOutMessage(2424, Mark.szFileName, 1, rc);
    12531372                     }
    12541373                  else
     
    12571376                        {
    12581377                        printf("EAs detected for %s, but it is not marked having EAs.\n", Mark.szFileName);
     1378                        LogOutMessage(2425, Mark.szFileName, 0);
    12591379                        if (pCD->fFix)
    12601380                           {
     
    12701390                              printf("This has been corrected.\n");
    12711391                           else
     1392                              {
    12721393                              printf("SYS%4.4u: Unable to correct problem.\n", rc);
     1394                              LogOutMessage(2416, NULL, 1, rc);
     1395                              }
    12731396                           }
    12741397                        }
     
    12951418                        pszPath, szLongName);
    12961419#endif
     1420                     LogOutMessage(2426, szLongName, 0);
    12971421                     pCD->ulErrorCount++;
    12981422                     }
     
    13211445                           fs.szFileName);
    13221446                        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);
    13231449                        pCD->ulErrorCount++;
    13241450                        }
     
    13801506                  printf("Non matching longname %s for %-11.11s\n",
    13811507                     szLongName, pDir->bFileName);
     1508                  LogOutMessage(2429, pDir->bFileName, 0);
    13821509                  memset(szLongName, 0, sizeof(szLongName));
    13831510                  }
     
    14091536                  {
    14101537                  if (ulCluster != ulDirCluster)
     1538                     {
    14111539                     printf(". entry in %s is incorrect!\n", pszPath);
     1540                     LogOutMessage(2430, pszPath, 0);
     1541                     }
    14121542                  }
    14131543               else if (!memicmp(pDir->bFileName, "..         ", 11))
    14141544                  {
    14151545                  if (ulCluster != ulParentDirCluster)
     1546                     {
    14161547                     printf(".. entry in %s is incorrect! (%lX %lX)\n",
    14171548                        pszPath, ulCluster, ulParentDirCluster);
     1549                     LogOutMessage(2431, pszPath, 2, ulCluster, ulParentDirCluster);
     1550                     }
    14181551                  }
    14191552               else
     
    14671600      printf("Invalid start of clusterchain %lX found for %s\n",
    14681601         ulCluster, pszFile);
     1602      LogOutMessage(2432, pszFile, 1, ulCluster);
    14691603      return 0;
    14701604      }
     
    14821616            {
    14831617            printf("CHKDSK found an improperly terminated cluster chain for %s ", pszFile);
     1618            LogOutMessage(2433, pszFile, 0);
    14841619            if (SetNextCluster(pCD, ulCluster, FAT_EOF))
    14851620               //{
     
    14881623               //}
    14891624            //else
     1625               {
    14901626               printf(" and corrected the problem.\n");
     1627               LogOutMessage(2434, NULL, 0);
     1628               }
    14911629            }
    14921630         else
    14931631            {
    14941632            printf("A bad terminated cluster chain was found for %s\n", pszFile);
     1633            LogOutMessage(2435, pszFile, 0);
    14951634            pCD->ulErrorCount++;
    14961635            }
     
    15051644               {
    15061645               printf("%s is fragmented\n", pszFile);
     1646               LogOutMessage(2436, pszFile, 0);
    15071647               fShown = TRUE;
    15081648               }
     
    18231963      pCD->ulErrorCount++;
    18241964      printf("CHKDSK was unable to recover a lost chain. SYS%4.4u\n", rc);
     1965      LogOutMessage(2437, NULL, 1, rc);
    18251966      return FALSE;
    18261967      }
Note: See TracChangeset for help on using the changeset viewer.