• Updated 2023-07-12: Hello, Guest! Welcome back, and be sure to check out this follow-up post about our outage a week or so ago.

Classic Mac OS will survive Y2038 (and maybe longer)

ClassicHasClass

Well-known member
One of the bugs I fixed in Classilla 9.3.2 was an issue with cookies far in the future overflowing the 32-bit time value in the classic Mac OS. Interestingly, this value is unsigned, unlike the regular time_t in OS X, which is signed.

It is well-known that 32-bit time_t values have a Y2038 problem, because (counting from the Unix epoch start date of midnight 1 Jan 1970) the signed 32-bit quantity (thus 31 bits) will overflow on 19 January 2038 at 3:14:07am GMT. This is true of all 32-bit Mac OS X kernels as well, which includes 10.4, 10.5 and 32-bit 10.6, PPC or Intel, so every Power Mac running OS X and early Intel Macs will be affected. 64-bit OS X kernels use a 64-bit time_t and are not affected. You can prove this by looking at /usr/include/time.h, where time_t is defined as __darwin_time_t, and i386/_types.h and ppc/_types.h both define it as long (not long long). :scrambled:

You would expect that the classic Mac OS would be worse, because its epoch starts at midnight 1 Jan 1904. But because it has that extra bit of precision not used for the sign, it will overflow on ... 6 February 2040 at 6:28:15am local time. :cc:

Yes, that's right, Boy Scouts and others who wish to be prepared. You will survive the Y2038 apocalypse with the SE/30 you should recap and stick in your fallout shelter, or the MDD you have already reformatted and installed 9.2.2 on.

Now, the hacks part: it should be possible to write an extension to transparently handle this, at least for the menu bar clock. Programs that compute based on their own epoch assumptions would fail, but Classilla 194.38.2 will have this support.

See you in the bunker in 37 years. :rambo:

 

ClassicHasClass

Well-known member
I put a hard cap on how far in the future the cookie would be stored (in this case, the limit of Mac OS). A proper solution would have been to implement a 64-bit time on Mac OS, but this would probably have had some undesirable complications and would not have fixed the OS issue.

 

resx

Active member
That reminds me, is there any mac that was ever hardened to better handle an EMP?

:) just curious.
Yes. Although not really designed with an EMP in mind, it was designed to stop people from using Van Eck phreaking to "eavesdrop" on the business of others via the electromagnetic emissions.

 

Paralel

Well-known member
As far as I'm aware, it's in the Mac Toolbox, so it's in the ROM. In that case, there is nothing you can do. I don't think you could patch the Toolbox in a way that would make it compatible with the OS and/or software, but I could also be wrong about that (Mac Toolbox is not one of my areas of expertise.

If I'm wrong about that, then it is determined by your system version, Apple changed the drop dead year every so many versions starting with 7.1. I think with System 9 it was moved up to 2099 or something, so, honestly, none of us will be around to have a problem with it.

 

Dog Cow

Well-known member
As far as I'm aware, it's in the Mac Toolbox, so it's in the ROM. In that case, there is nothing you can do. I don't think you could patch the Toolbox in a way that would make it compatible with the OS and/or software, but I could also be wrong about that (Mac Toolbox is not one of my areas of expertise.
The Operating System and Toolbox dispatch tables are in RAM, so any OS or Toolbox trap can be patched or completely replaced. You would have to establish a new epoch, and a cut-off as well to make sure all dates from 1980s to 2038 still resolve correctly too.

Pseudo code would look like:

if (timestamp < x)
{
       use_new_post_2038_epoch();
}
else
{
    use_old_1904_epoch();
}


'x' would probably be some timestamp resolving to 1980 or so under the current 1904 epoch.

 
Last edited by a moderator:

Paralel

Well-known member
Ah, I see, Makes sense to me. I guess classic mac's will be working long after I'm gone then.

I wonder how long before Y2k38 people will get on board with checking compliance on embedded systems, etc... I'm guessing 2-3 years.

 
Last edited by a moderator:

CC_333

Well-known member
I think with System 9 it was moved up to 2099 or something, so, honestly, none of us will be around to have a problem with it.
Don't be so sure! Those who were born within the last 18 years just might make it there!!

Not to mention the people born between now and then who might take an interest in old Macs....

c

 

Paralel

Well-known member
Don't be so sure! Those who were born within the last 18 years just might make it there!!

Not to mention the people born between now and then who might take an interest in old Macs....

c
True. I guess I just hand waved it because I won't be around, so, I just think of it as someone else's problem.

 

CC_333

Well-known member
Indeed. Most of us won't be there most likely (but who knows?), so it will be someone else's problem... unless someone wants to fix it now, in a time where there's still a few people around who actually know how.

c

 
Top