5,664,339 members and growing! (17,801 online)
Email Password   helpLost your password?
General Programming » Bugs & Workarounds » General     Beginner License: The Code Project Open License (CPOL)

The Year 2038 Bug - Y2K38 Problem - Many of your applications will crash

By Ruchit Surati

The Year 2038 Bug - Y2K38 Problem.
C++, Windows, Win32, CEO, Architect, DBA, Dev, Design, SysAdmin

Posted: 6 May 2008
Updated: 6 May 2008
Views: 15,238
Bookmarked: 11 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
26 votes for this Article.
Popularity: 5.54 Rating: 3.92 out of 5
4 votes, 15.4%
1
4 votes, 15.4%
2
2 votes, 7.7%
3
1 vote, 3.8%
4
15 votes, 57.7%
5
Note: This is an unedited contribution. If this article is inappropriate, needs attention or copies someone else's work without reference then please Report This Article

Try this First.

Sign out from yahoo messenger or gmail talk. Open your System Date and Time Settings. Change the year to anything beyond 2038. You can try setting the year to 2040. Now try logging in to either of the messenger. It does not log in and gives you some error. Surprised!

So, Where's the problem ?

The source of the problem is actually the way some(major) applications store their date/time data types. Programmes using POSIX time representation will be affected by this problem. The structure time_t is a value type which stores time in a 32-bit signed integer. It stores the time as number of seconds elapsed since January 1, 1970. So it is capable of representing time which can be addressed within total of 231 seconds. According to this, the latest time that it can store is 03:14:07 UTC, Tuesday, January 19, 2038. After this time, the sign bit of the 32-bit signed integer will be set and it will represent a negative number. As I said, the time is stored as number of seconds elapsed since 1st January 1970, this negative number will be added to compute the time as per the POSIX standards. But this being a negative number it will calculate the time by subtracting this many seconds from 1st January 1970 which will eventually generate a historical date-time which will cause the applications to fail. This time will be Friday, December 1901 and is called the wrap-around date. Applications written in C in many operating system will also be affected as the POSIX presentation of time is widely used there. The animation below visualizes actual scenario in an easier manner. This bug is often denoted as "Y2038", "Y2K38", or "Y2.038K" bug.


Simulate the bug in a C Programme.

The following ANSI C programme when compiled simulates the bug. The output produced by the programme is also attached below the code. This code has been been referred from here.

#include <stdlib.h> 
#include <stdio.h> 
#include <unistd.h> 
#include <time.h> 
int main (int argc, char **argv) 
{ 
       time_t t; 
       t = (time_t) 1000000000;
       printf ("%d, %s", (int) t, asctime (gmtime (&t))); 
       t = (time_t) (0x7FFFFFFF); 
       printf ("%d, %s", (int) t, asctime (gmtime (&t))); 
       t++; 
       printf ("%d, %s", (int) t, asctime (gmtime (&t)));
 
return 0; 
} 

Output :

1000000000, Sun Sep 9 01:46:40 20012147483647, 
Tue Jan 19 03:14:07 2038-2147483648, 
Fri Dec 13 20:45:52 1901

Above programme being a strict ANSI, should compile using any C compiler on any platform. Now lets take a look at a perl script on both UNIX and Windows 2000. This script has been referred from here.

#!/usr/bin/perl # 
# I've seen a few versions of this algorithm 
# online, I don't know who to credit. I assume 
# this code to by GPL unless proven otherwise. 
# Comments provided by William Porquet, February 2004. 
# You may need to change the line above to # reflect the location of your Perl binary 
# (e.g. "#!/usr/local/bin/perl"). 
# Also change this file's name to '2038.pl'. 
# Don't forget to make this file +x with "chmod". 
# On Linux, you can run this from a command line like this: 
# ./2038.pl use POSIX; 
# Use POSIX (Portable Operating System Interface), 
# a set of standard operating system interfaces.

$ENV{'TZ'} = "GMT";

# Set the Time Zone to GMT (Greenwich Mean Time) for date 
# calculations.

for ($clock = 2147483641; $clock < 2147483651; $clock++) {
       print ctime($clock); }

# Count up in seconds of Epoch time just before and after the 
# critical event. 
# Print out the corresponding date in Gregorian calendar 
# for each result. 
# Are the date and time outputs correct after the critical 
# event second? 
        

A mere handful of operating systems appear to be unaffected by the year 2038 bug so far. For example, the output of this script on Debian GNU/Linux (kernel 2.4.22):

# ./2038.pl
Tue Jan 19 03:14:01 2038
Tue Jan 19 03:14:02 2038
Tue Jan 19 03:14:03 2038
Tue Jan 19 03:14:04 2038
Tue Jan 19 03:14:05 2038
Tue Jan 19 03:14:06 2038
Tue Jan 19 03:14:07 2038
Fri Dec 13 20:45:52 1901
Fri Dec 13 20:45:52 1901
Fri Dec 13 20:45:52 1901

Windows 2000 Professional with ActivePerl 5.8.3.809 fails in such a manner that it stops displaying the date after the critical second :

C:\>perl 2038.pl
Mon Jan 18 22:14:01 2038
Mon Jan 18 22:14:02 2038
Mon Jan 18 22:14:03 2038
Mon Jan 18 22:14:04 2038
Mon Jan 18 22:14:05 2038
Mon Jan 18 22:14:06 2038
Mon Jan 18 22:14:07 2038

Do we have a solution ?

Yes, Of course, There have been many solutions proposed worldwide for this problem. Few of them are listed here.

1.) Re-define the time_t structure as 64-bit.

This is not a solution as the binary compatibility of the software would break here. Programmes depending on the binary representations of time would be in trouble. So we can not even think of this one.

2.) Change time_t from 32-bit signed to 32-bit unsigned.

This seems to be good at first look, but this would just delay(post-pone) the judgement day to the year 2106 as it will give some more scope by adding another usable bit. You will be in the same trouble by then. So this is a feasible solution but not a practical one.

3.) Shift from 32-bit systems to 64-bit systems.

Most 64-bit architectures use 64 bit storage to represent time_t. The new wrap-around date with this new (signed)64 bit representation will not come before 290 billion years. It is positively predicted that by the year 2038 all 32-bit systems will be phased out and all systems will be 64-bit.

Thanks.

Ruchit S.
http://www.ruchitsurati.net/

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Ruchit Surati



Occupation: Web Developer
Company: MobiCore Technologies Pvt. Ltd.
Location: India India

Other popular Bugs & Workarounds articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 25 of 27 (Total in Forum: 27) (Refresh)FirstPrevNext
GeneralA foresight too-far-sightedmemberMember 234087423:42 12 Jun '08  
GeneralRe: A foresight too-far-sightedmemberrobzzzzz2:54 16 Jun '08  
GeneralIt will pay our rentmemberPC-Alex19:22 27 May '08  
Generalplagiarized article, no attribution given, unauthorized re-licencingmemberWilliam Porquet10:35 7 May '08  
GeneralRe: plagiarized article, no attribution given, unauthorized re-licencingmemberRuchit Surati10:53 7 May '08  
GeneralRe: plagiarized article, no attribution given, unauthorized re-licencingmemberRuchit Surati11:02 7 May '08  
GeneralRe: plagiarized article, no attribution given, unauthorized re-licencingmemberWilliam Porquet11:20 7 May '08  
AnswerMy solution [modified]memberjohn wallis0:55 7 May '08  
GeneralRe: My solutionmemberDouglas R. Keesler18:40 7 May '08  
GeneralDo we have a solution ?memberT-Mac-Oz22:28 6 May '08  
GeneralVery goodmvpHans Dietrich17:55 6 May '08  
Generalbetter buggy whips....memberDouglas R. Keesler17:53 6 May '08  
GeneralRe: better buggy whips....mvpRajesh R Subramanian19:34 6 May '08  
GeneralRe: better buggy whips....memberLee Humphries21:24 6 May '08  
GeneralRe: better buggy whips....memberRuchit Surati21:35 6 May '08  
GeneralRe: better buggy whips....memberN-O-R-B-E-R-T21:53 6 May '08  
GeneralRe: better buggy whips....memberWong Shao Voon22:15 6 May '08  
GeneralRe: better buggy whips....memberDouglas R. Keesler17:54 7 May '08  
GeneralRe: better buggy whips....memberrobertjb204:43 7 May '08  
GeneralRe: better buggy whips....memberDouglas R. Keesler18:17 7 May '08  
GeneralRe: better buggy whips....memberBC3Tech12:20 7 May '08  
GeneralRe: better buggy whips....memberStefan Melaet2:24 13 May '08  
GeneralThe year 2106memberTak13:43 6 May '08  
GeneralRe: The year 2106member0898908817:04 6 May '08  
GeneralRe: The year 2106memberLuis Alonso Ramos17:29 6 May '08  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 6 May 2008
Editor:
Copyright 2008 by Ruchit Surati
Everything else Copyright © CodeProject, 1999-2008
Web20 | Advertise on the Code Project