VALIDCRC.C
上传用户:cuilin0620
上传日期:2007-01-13
资源大小:33k
文件大小:3k
源码类别:

杀毒

开发平台:

C/C++

  1. /*
  2. VALIDCRC.C
  3. Kevin Dean
  4. Fairview Mall P.O. Box 55074
  5. 1800 Sheppard Avenue East
  6. Willowdale, Ontario
  7. CANADA    M2J 5B9
  8. CompuServe ID: 76336,3114
  9. March 24, 1991
  10. This module validates the CRC of the program in which it is linked.
  11. The code was designed as an anti-virus algorithm.  The CRC is a very effective
  12. method of detecting viruses; any virus that attaches itself to the program
  13. changes the CRC of the program.  The response to an invalid CRC is entirely up
  14. to the programmer.
  15. This code is public domain.
  16. */
  17. #include <dos.h>
  18. #include <stdio.h>
  19. #include <stdlib.h>
  20. #include <string.h>
  21. #include "viruscrc.h"
  22. /* Macros to extract low and high bytes of a word. */
  23. #define lowb(x)  (*(unsigned char *)&(x))
  24. #define hib(x)   (*((unsigned char *)&(x) + 1))
  25. /* Macros to extract low and high words of a dword. */
  26. #define loww(x)  (*(unsigned short *)&(x))
  27. #define hiw(x)   (*((unsigned short *)&(x) + 1))
  28. void *bufalloc(size_t *size, size_t minsize);
  29. #if defined(__TURBOC__)
  30. #include <dir.h>
  31. #define findprog(progname, pn)  strcpy(pn, searchpath(progname))
  32. #define argv0  _argv[0]
  33. #elif defined(_MSC_VER) || defined(_QC)
  34. #define findprog(progname, pn)  _searchenv(progname, getenv("PATH"), pn)
  35. extern char **__argv;
  36. #define argv0  __argv[0]
  37. #else
  38. #error Unknown compiler.
  39. #endif
  40. /***/
  41. /* Calculate CRC of active program and compare it to CRC in _viruscrc. */
  42. int validatecrc(const char *progname)
  43. {
  44. int retcode; /* Function return code. */
  45. if (_viruscrc.x.polynomial != 0)
  46.   {
  47.   unsigned char *buffer; /* Buffer for program image. */
  48.   size_t bufsize; /* Buffer size. */
  49.   /* Allocate 8k buffer if possible, but get at least 512 bytes. */
  50.   bufsize = 8192;
  51.   buffer = bufalloc(&bufsize, 512);
  52.   if (buffer)
  53.     {
  54.     char pn[80]; /* Fully qualified program name. */
  55.     FILE *progfile; /* Program file. */
  56.     if (_osmajor < 3)
  57.       /* Search PATH for program specified in progname. */
  58.       findprog(progname, pn);
  59.     else
  60.       /* Under DOS versions 3 and above, the program name is in argv[0] (passed as argv0). */
  61.       strcpy(pn, argv0);
  62.     if ((progfile = fopen(pn, "rb")) != NULL)
  63.       {
  64.       crc32_t table[256]; /* CRC table. */
  65.       register crc32_t *halfi; /* Pointer to CRC of i / 2. */
  66.       crc32_t crc; /* Current CRC. */
  67.       register size_t i; /* Byte counter. */
  68.       unsigned char *bufptr; /* Pointer to walk through buffer. */
  69.       /* Generate a CRC lookup table for faster calculation. */
  70.       for (i = 0, halfi = table, table[0] = 0; i < 256; i += 2, halfi++)
  71. if (hib(hiw(*halfi)) & 0x80)
  72.   table[i] = (table[i + 1] = *halfi << 1) ^ _viruscrc.x.polynomial;
  73. else
  74.   table[i + 1] = (table[i] = *halfi << 1) ^ _viruscrc.x.polynomial;
  75.       crc = 0;
  76.       while ((i = fread(buffer, 1, bufsize, progfile)) != 0)
  77. for (bufptr = buffer; i--; bufptr++)
  78.   crc = (crc << 8) ^ table[hib(hiw(crc)) ^ *bufptr];
  79.       fclose(progfile);
  80.       retcode = crc == _viruscrc.x.crc ? CRC_VALID : CRC_INVALID;
  81.       }
  82.     else
  83.       retcode = CRC_FILEERR;
  84.     free(buffer);
  85.     }
  86.   else
  87.     retcode = CRC_NOMEM;
  88.   }
  89. else
  90.   /* CRC polynomial must be something other than 0. */
  91.   retcode = CRC_ISZERO;
  92. return (retcode);
  93. }