From: "Jakub Narębski" <jnareb@gmail.com>
To: Andrew Keller <andrew@kellerfarm.com>
Cc: "Git List" <git@vger.kernel.org>,
"Krzesimir Nowak" <krzesimir@endocode.com>,
"Ævar Arnfjörð Bjarmason" <avarab@gmail.com>
Subject: Re: [PATCH] gitweb: Improve diffs when filenames contain problem characters
Date: Thu, 3 Apr 2014 08:18:34 +0000 [thread overview]
Message-ID: <CANQwDwdfDQthiYa+-PemzBAgDLDZDDDf_pRzn1vV-7NRH9bjGw@mail.gmail.com> (raw)
In-Reply-To: <A60B35D8-0981-45C8-B7D9-B89C729A837D@kellerfarm.com>
[Forgot to hit Reply-to-all instead of Reply. Andrew, I'm sorry for
duplicate email]
On Sat, Mar 29, 2014 at 2:53 PM, Andrew Keller <andrew@kellerfarm.com> wrote:
>
> When formatting a diff header line, be sure to escape the raw output from git
> for use as HTML. This ensures that when "problem characters" (&, <, >, ?, etc.)
> exist in filenames, gitweb displays them as text, rather than letting the
> browser interpret them as HTML.
Actually gitweb tries to do the right thing, and in most cases it does
HTML escaping correctly. The problem is only with *binary* files (this fact
should IMHO have been mentioned in commit message).
This issue is caused by two problems / errors. First, gitweb misclassify
"Binary files a/foo and b/bar differ" as diff header, while it is untypical
but it is diff contents. Second, gitweb doesn't HTML-escape unknown
diff headers, assuming that it knows about all possible types.
I have had those changes in my git repository, but I do not know if
I have pushed it before the PC went down, and if I have it in backup.
>
> Reported-by: Dongsheng Song <dongsheng.song@gmail.com>
> Signed-off-by: Andrew Keller <andrew@kellerfarm.com>
Thank you for your work.
> ---
> Steps to reproduce:
>
> 1) Create a repository that contains a commit that adds a file:
> * with an ampersand in the filename
> * with binary contents
> 2) Make the repository visible to gitweb
> 3) In gitweb, navigate to the page that shows the diff for the commit
> that added the file
>
> Behavior without patch:
Page contains unescaped '&' instead of '&'
> Page stops rendering when it gets to one of
> the instances of the filename (in the diff header, to be specific), and
> a light-red box appears a the top of the page, saying something like
> this:
>
> This page contains the following errors:
>
> error on line 67 at column 22: xmlParseEntityRef: no name
>
> Below is a rendering of the page up to the first error.
>
>
> (This particular error is what you get with an unescaped ampersand)
This is caused by the fact that some browsers use strict XML validation
mode when receiving 'application/xml+xhtml' contents, and not 'text/html'.
So one might not notice it...
> Behavior with patch: You see the ampersand in the file name, and the
> page renders as one would expect.
A question: it does not escapes HTML twice, i.e. you don't see
'&' in rendered output ('&amp;' in page source)?
> Other notes:
>
> Several helper methods exist for escaping HTML, and I was unsure
> about which one to use. Although this patch fixes the problem,
> it is possible that it may be more correct to use, for example, the
> 'esc_html' helper method instead of interacting with $cgi directly.
It is preferred to use esc_html instead of $cgi->escapeHTML.
Even better use esc_path to escape pathnames.
> The first hunk in the diff seems to be all that's required to experience
> the good behavior, however upon inspecting the code, it seems
> prudent to also include the second one. It's a nearby section of code,
> doing similar work, and is called from the same function as the
> former, and with similar arguments.
I wonder if it would not interfere with processing of diff contents
by gitweb, for example adding links to pre-image and post-image
version of a file.
> gitweb/gitweb.perl | 4 ++++
> 1 files changed, 4 insertions(+), 0 deletions(-)
>
> diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
> index 79057b7..6c559f8 100755
> --- a/gitweb/gitweb.perl
> +++ b/gitweb/gitweb.perl
> @@ -2223,6 +2223,8 @@ sub format_git_diff_header_line {
> my $diffinfo = shift;
> my ($from, $to) = @_;
>
> + $line = $cgi->escapeHTML($line);
> +
> if ($diffinfo->{'nparents'}) {
> # combined diff
> $line =~ s!^(diff (.*?) )"?.*$!$1!;
> @@ -2259,6 +2261,8 @@ sub format_extended_diff_header_line {
> my $diffinfo = shift;
> my ($from, $to) = @_;
>
> + $line = $cgi->escapeHTML($line);
> +
> # match <path>
> if ($line =~ s!^((copy|rename) from ).*$!$1! && $from->{'href'}) {
> $line .= $cgi->a({-href=>$from->{'href'}, -class=>"path"},
I'd have to examine code flow to check where it lands...
--
Jakub Narębski
next parent reply other threads:[~2014-04-03 10:38 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <A60B35D8-0981-45C8-B7D9-B89C729A837D@kellerfarm.com>
2014-04-03 8:18 ` Jakub Narębski [this message]
2014-03-31 2:05 [PATCH] gitweb: Improve diffs when filenames contain problem characters Andrew Keller
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=CANQwDwdfDQthiYa+-PemzBAgDLDZDDDf_pRzn1vV-7NRH9bjGw@mail.gmail.com \
--to=jnareb@gmail.com \
--cc=andrew@kellerfarm.com \
--cc=avarab@gmail.com \
--cc=git@vger.kernel.org \
--cc=krzesimir@endocode.com \
/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;
as well as URLs for NNTP newsgroup(s).