git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: Patrick Steinhardt <patrick.steinhardt@elego.de>
To: "brian m. carlson" <sandals@crustytoothpaste.net>, git@vger.kernel.org
Subject: Re: Wildcard URL config matching
Date: Wed, 7 Nov 2018 13:56:01 +0100	[thread overview]
Message-ID: <20181107125601.GA20965@ncase.pks.im> (raw)
In-Reply-To: <20181105205652.GA890086@genre.crustytoothpaste.net>

[-- Attachment #1: Type: text/plain, Size: 2283 bytes --]

Hi Brian,

On Mon, Nov 05, 2018 at 08:56:52PM +0000, brian m. carlson wrote:
> In a272b9e70a ("urlmatch: allow globbing for the URL host part",
> 2017-01-31), we added support for wildcard matching for URLs when
> reading from .git/config.  Now it's possible to specify an option like
> http.http://*.example.com/.cookieFile and have it match for the URL
> http://foo.example.com.  However, since this option also allows
> wildcards at any level, the following also matches:
> http.http://*.*.*/.cookieFile.
> 
> I'm wondering if it was intentional to allow this behavior or if we
> intended to allow only the leftmost label (or labels) to be a wildcard.
> The tests seem to test only the leftmost label, and that is the behavior
> that one has for TLS certificates, for example.  I don't really see a
> situation where one would want to match hostname labels in an arbitrary
> position, but perhaps I'm simply not being imaginative enough in
> thinking through the use cases.

The behavior is intentional. The above example of "http://*.*.*/"
obviously doesn't make a lot of sense, but e.g. the pattern
"http://*.*.example.com" should match all sub-sub domains of
"example.com" like for example "http://foo.bar.example.com". The
ability to use multiple globs is necessary as they aren't "true"
globs, but will only match the current component of the subdomain
separated by dots. So they behave similar to globs in the shell,
where they only match up to the next directory separator.

If we were to remove the ability to use globs for multiple
components, then one would have to again explicitly list patterns
for all possible combinations.

> Regardless of what we decide, I'll be sending a patch, either to add
> additional tests, or correct the code (or both).

I agree that there should've been additional tests to also verify
that multiple globs work as expected. So thanks for doing that!

> I ask because we're implementing this behavior for Git LFS, where we
> don't iterate over all configuration keys, instead looking up certain
> values in a hash.  We'll need to make some changes in order to have
> things work correctly if we want to implement the current Git behavior
> to prevent combinatorial explosion.

Regards
Patrick

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

      reply	other threads:[~2018-11-07 13:03 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-05 20:56 Wildcard URL config matching brian m. carlson
2018-11-07 12:56 ` Patrick Steinhardt [this message]

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=20181107125601.GA20965@ncase.pks.im \
    --to=patrick.steinhardt@elego.de \
    --cc=git@vger.kernel.org \
    --cc=sandals@crustytoothpaste.net \
    /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).