From: "Michal Suchánek" <msuchanek@suse.de>
To: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Cc: git@vger.kernel.org
Subject: Re: Y2038 vs struct cache_time/time_t
Date: Mon, 20 Jan 2020 20:45:15 +0100 [thread overview]
Message-ID: <20200120194515.GE4113@kitsune.suse.cz> (raw)
In-Reply-To: <nycvar.QRO.7.76.6.2001201555220.46@tvgsbejvaqbjf.bet>
On Mon, Jan 20, 2020 at 08:38:51PM +0100, Johannes Schindelin wrote:
> Team,
>
> today, in quite an entertaining thread on Twitter
> (https://twitter.com/jxxf/status/1219009308438024200) I read about yet
> another account how the Year 2038 problem already bites people. And costs
> real amounts of money.
>
> And after I stopped shaking my head in disbelief, I had a quick look, and
> it seems that we're safe at least until February 7th, 2106. That's not
> great, but I plan on not being around at that date anymore, so there. That
> date is when the unsigned 32-bit Unix epoch will roll over and play
> dead^W^Wwreak havoc (iff the human species manages to actually turn around
> and reverse the climate catastrophe it caused, and that's a big iff):
> https://en.wikipedia.org/wiki/Time_formatting_and_storage_bugs#Year_2106
>
> Concretely, it looks as if we store our own timestamps on disk (in the
> index file) as uint32_t:
>
> /*
> * The "cache_time" is just the low 32 bits of the
> * time. It doesn't matter if it overflows - we only
> * check it for equality in the 32 bits we save.
> */
> struct cache_time {
> uint32_t sec;
> uint32_t nsec;
> };
>
> The comment seems to indicate that we are still safe even if 2106 comes
> around, but I am not _quite_ that sure, as I expect us to have "greater
> than" checks, not only equality checks.
>
> But wait, we're still not quite safe. If I remember correctly, 32-bit
> Linux still uses _signed_ 32-bit integers as `time_t`, so when we render
> dates, for example, and use system-provided functions, on 32-bit Linux we
> will at least show the wrong dates starting 2038.
>
> This got me thinking, and I put on my QA hat. Kids, try this at home:
>
> $ git log --until=1.january.1960
>
> $ git log --since=1.january.2200
>
> Git does not really do what you expected, eh?
>
> Maybe we want to do something about that, and while at it also fix the
> overflow problems, probably requiring a new index format?
Which means we can split off the timestamps to a separate file, too ;-)
Thanks
Michal
next prev parent reply other threads:[~2020-01-20 19:45 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-20 19:38 Y2038 vs struct cache_time/time_t Johannes Schindelin
2020-01-20 19:45 ` Michal Suchánek [this message]
2020-01-21 11:46 ` Johannes Schindelin
2020-01-20 20:23 ` Randall S. Becker
2020-01-21 11:47 ` Johannes Schindelin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200120194515.GE4113@kitsune.suse.cz \
--to=msuchanek@suse.de \
--cc=Johannes.Schindelin@gmx.de \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox