Click here to Skip to main content
Click here to Skip to main content

W2K BUG: timeout of serial driver uses absolute time

By , 28 Sep 2000
 

Introduction

During testing we uncovered a bug in the standard serial driver of Windows 2000.

If you do a ReadFile() with a certain timeout value and you set the date/time backwards while this timeout has not yet occurred then you can wait a until the specified date/time is reached again before the call returns.

This means that the serial driver uses an absolute date/time instead of a relative time for its timeout. This is a serious problem for everyone doing serial communication especially in daylight saving areas.

This problem was found in Windows 2000 / SP1 with the standard serial port driver.

Just run the following code and change the date/time backwards to see the problem:

#include <windows.h>
#include <stdio.h>
#include <conio.h>

int main(void)
{
   COMMTIMEOUTS timeouts;
   HANDLE handle;
   DCB dcb;
   char buffer[1000] = "abcdefghijklmnopqrstuvwxyz";
   DWORD dwLen;

   handle = CreateFile("\\\\.\\COM1", GENERIC_READ | GENERIC_WRITE,
               0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);

   if (handle == INVALID_HANDLE_VALUE)
   {
      printf("CreateFile() Failed\n");
      return 1;
   }

   timeouts.ReadIntervalTimeout        = 300;
   timeouts.ReadTotalTimeoutMultiplier = 0;
   timeouts.ReadTotalTimeoutConstant   = 0;
   timeouts.WriteTotalTimeoutMultiplier= 0;
   timeouts.WriteTotalTimeoutConstant  = 0;
   if (!SetCommTimeouts(handle, &timeouts))
   {
      printf("SetCommTimeouts() Failed\n");
      return 2;
   }

   ZeroMemory(&dcb, sizeof(dcb));

   dcb.DCBlength           = sizeof(dcb);
   dcb.BaudRate            = 19200; 
   dcb.fParity             = TRUE;
   dcb.fOutxCtsFlow        = false;
   dcb.fOutxDsrFlow        = false;
   dcb.fDtrControl         = DTR_CONTROL_ENABLE;
   dcb.fDsrSensitivity     = FALSE;
   dcb.fTXContinueOnXoff   = FALSE;
   dcb.fOutX               = false;
   dcb.fInX                = false;
   dcb.fNull               = FALSE;
   dcb.fRtsControl         = RTS_CONTROL_ENABLE;
   dcb.fAbortOnError       = false;
   dcb.ByteSize            = 8;
   dcb.Parity              = ODDPARITY;
   dcb.StopBits            = ONESTOPBIT;

   if (!SetCommState(handle, &dcb))
   {
      printf("SetCommState() Failed\n");
      return 1;
   }

   while (! _kbhit() )
   {
      printf("W");

      if (!WriteFile(handle, buffer, 40, &dwLen, 0))
         printf("\rWriteFile() returned %d\n", GetLastError());

      printf("R");

      if ( !ReadFile(handle, buffer, 100, &dwLen, 0) )
         printf("\rReadFile() returned %d\n", GetLastError());
   }

   printf("\nDone!\n");

   CloseHandle(handle);

   return 0;
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Ben Kokx
United States United States
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionHelp-me ? PinsussAlexandte1 Nov '02 - 6:37 
Generali have the problem on one machine ! PinmemberAnonymous24 Apr '01 - 2:13 
GeneralNo way !! PinmemberRiccardo Modesti28 Mar '01 - 2:02 
GeneralOK under W2K/No SP PinsussSerge Wautier2 Oct '00 - 21:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 29 Sep 2000
Article Copyright 2000 by Ben Kokx
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid