KnowledgeBase Archive

An Archive of Early Microsoft KnowledgeBase Articles

View on GitHub

Q69136: fread() May Cause Protection Violation Under OS/2

Article: Q69136
Product(s): See article
Version(s): 6.00 6.00a
Operating System(s): OS/2
Keyword(s): ENDUSER | buglist6.00 buglist 6.00a | mspl13_c
Last Modified: 11-FEB-1991

Under certain circumstances, fread() may issue a general protection
violation (GP fault) under OS/2 when compiled in large model with C
versions 6.00 and 6.00a.

The sample code below allocates a 64K segment, filling it by doing 128
fread()'s that request 512 bytes per call. In tracing through the
code, it appears that as fread() is preparing to continue the read, it
calculates the address of the first unused byte. Finding it to be
beyond the end of the segment, it adds 0x20 to the segment value and
places the result in the ES register, resulting in a general
protection violation.

Sample Code
-----------

/* Compile with -AL
 *
 */

#define BUFS_PER_BLOCK   128      /* Number of word buffers per block. */
#define WORD_BUFFER_SIZE 512

#include <stdio.h>
#include <os2.h>

void main( void)
{
   SEL  usSel;                    /* Selector for allocated memory. */
   FILE *fp;
   CHAR *ptCurrentBufferAddress;  /* Address of current word buffer. */
   INT   i;

   DosAllocSeg(WORD_BUFFER_SIZE * BUFS_PER_BLOCK, &usSel, SEG_GETTABLE);
   if ((fp = fopen("c:\\os2\\pmfile.exe", "r+b")) == NULL)
      printf("FOPEN FAILED\n");
   else
      printf("FOPEN SUCCEEDED\n");
   ptCurrentBufferAddress = MAKEP(usSel, 0);
   for (i = 0 ; ; i++)
      {
      fread(ptCurrentBufferAddress, WORD_BUFFER_SIZE, 1, fp);
      if (i == BUFS_PER_BLOCK - 1)
         break;
      ptCurrentBufferAddress += WORD_BUFFER_SIZE;
      }
}

Microsoft has confirmed this to be a problem in C versions 6.00 and
6.00a. We are researching this problem and will post new information
here as it becomes available.

THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Copyright Microsoft Corporation 1986-2002.