Click here to Skip to main content
Licence 
First Posted 28 Sep 2000
Views 48,676
Bookmarked 11 times

W2K BUG: timeout of serial driver uses absolute time

By | 28 Sep 2000 | Article
The serial driver uses an absolute date/time instead of a relative time for its timeout, causing problems in situations like daylight savings.

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



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. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionHelp-me ? PinsussAlexandte6:37 1 Nov '02  
Generali have the problem on one machine ! PinmemberAnonymous2:13 24 Apr '01  
GeneralNo way !! PinmemberRiccardo Modesti2:02 28 Mar '01  
GeneralOK under W2K/No SP PinsussSerge Wautier21:34 2 Oct '00  

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

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