git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: Jeff King <peff@peff.net>
To: Dongsheng Song <dongsheng.song@gmail.com>
Cc: Git Mailing List <git@vger.kernel.org>
Subject: Re: timezone related bug of git
Date: Sun, 31 Oct 2021 04:53:55 -0400	[thread overview]
Message-ID: <YX5Zo9uV7qG73p6R@coredump.intra.peff.net> (raw)
In-Reply-To: <CAE8XmWpK0ubcTXOaxBKGKh1qU+73Rr181wMAM7KAAX_A5PEYOw@mail.gmail.com>

On Sun, Oct 31, 2021 at 11:23:24AM +0800, Dongsheng Song wrote:

>  I found a timezone related bug in the git:
> 
> 1. git log 11990eba -1 --date=format:%s
> 
> commit 11990eba0be50d1ad0655ede4062b7130326c41f (HEAD -> trunk,
> origin/trunk, origin/HEAD)
> Author: rillig <rillig@NetBSD.org>
> Date:   1635604878
> 
>     indent: move debugging functions to a separate section
> 
> 2. git cat-file -p 11990eba
> 
> tree 5d62150f5e2bafd3db76641450ca5d902302a039
> parent 892557a74bd49983fac28366b772b53c9216ca73
> author rillig <rillig@NetBSD.org> 1635633678 +0000
> committer rillig <rillig@NetBSD.org> 1635633678 +0000
> 
> indent: move debugging functions to a separate section
> 
> 3. conclusion
> 
> The unix time stored in git repository not same as the git log output,
> then there must be a timezone offset bug:
> 
> 1635633678 - 1635604878 = 28800 = 8 hours (local timezone offset)

The short answer is: don't do that. Use --date=unix instead.

The longer one is:

The problem is that the strftime() "%s" specifier is a bit broken.
That function (which is what is interpreting your format) takes a
broken-down "struct tm", which can only be converted back to an epoch
time if you know which time zone it's in.

But we have no way to tell the function that; the standard indicates
that it always assumes the local system timezone, and there's no
provision at all for formatting times in other zones (which is what we
usually try to do, showing the date in the author's zone). There's no
field in the "struct tm" to carry any zone information[1].

Even when you're in the same timezone, there's a similar problem with
the is_dst field. There's some discussion in [2], including the
possibility of intercepting "%s" and handling it ourselves, like we do
for "%z". I don't think anybody has cared enough to work on it.

-Peff

[1] Some implementations (like glibc) actually _do_ carry this
    information in private fields of "struct tm". But we can't rely on
    it, and even where it's available, it's confusing (e.g., mktime()
    ignores it!). If you're a real masochist, you can read all of:

      https://lore.kernel.org/git/22824.29946.305300.380299@a1i15.kph.uni-mainz.de/

[2] This is a similar bug report from 2020:

      https://lore.kernel.org/git/CAGqZTUu2U6FFXGTXihC64O0gB5Bz_Z3MbD750kMoJWMciAGH6w@mail.gmail.com/

  reply	other threads:[~2021-10-31  8:54 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-31  3:23 timezone related bug of git Dongsheng Song
2021-10-31  8:53 ` Jeff King [this message]
2021-10-31 13:18   ` Dongsheng Song
2021-10-31 18:46     ` Junio C Hamano
2021-11-01  4:03       ` Jeff King
2021-11-01 14:31         ` Dongsheng Song
2021-11-01 18:18         ` Junio C Hamano
2021-11-02  1:43           ` Jeff King
2021-11-02 11:35           ` [PATCH] strbuf_addftime(): handle "%s" manually Jeff King
2021-11-02 15:43             ` Jeff King
2021-11-03 20:28             ` Junio C Hamano
2021-11-04  2:11               ` Jeff King

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

  List information: http://vger.kernel.org/majordomo-info.html

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=YX5Zo9uV7qG73p6R@coredump.intra.peff.net \
    --to=peff@peff.net \
    --cc=dongsheng.song@gmail.com \
    --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.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).