Re: [RFC 2/2] Add Git-aware CGI for Git-aware smart HTTP transport

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Shawn O. Pearce
Date: Monday, August 4, 2008 - 8:59 am

Rogan Dawes <lists@dawes.za.net> wrote:

Its not negotiable.  POST requires no caching.  End of discussion.


That's exactly what we are doing.  Where caching is reasonable we are
using a GET request.  Where caching cannot be performed as the server
state is changing (e.g. actually updating refs) we are using POST.
That is entirely within the guidelines of the RFC.

However we are "abusing" POST for "POST /info/refs" to detect a
Git-aware HTTP server.  Sending POST to a static resource should
always fail.


Well, true, we could do that.  But then we have to break the
command name out of the input stream.  In some cases we may just be
exec'ing another Git process and letting it handle the input stream.
Shoving the command name into the start of it just makes it that
much harder to parse out.

We already have to handle splitting PATH_TRANSLATED into a pair of
(GIT_DIR, command) so we can handle that for a GET.  We might as
well just use that very same code for POST to select the command.

Besides, by placing the command name into the URL server admins can
use regex filters in their configurations to control access.  If we
shove the command name into the body of a POST they cannot do this.

I can see sites wanting to offer anonymous smart fetch, but require
password protected smart push on the same repository URL.  Slapping
a directive like:

	<Location ~ ^/git/.*/receive-pack$>
		require valid-user
		...
	</Location>

Would easily make Apache implement this for us.  Most modern HTTP
servers should be able to be configured like this.

One of the problems with these RPC-in-HTTP systems is always the
fact that the true nature of the action isn't visible in the method
and URL, causing servers and proxies to have to parse the stream to
implement firewall rules.  Or to provide access control.  I'm trying
to reuse as much of the access control support as possible from the
HTTP server and put as little of it as possible into the backend CGI.

Since the backend CGI is based upon git-receive-pack itself admins
can use the standard pre-receive/update hook pair to manage branch
level security in a repository, while gross-level read/write can
be done in the server.

-- 
Shawn.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
More on git over HTTP POST, H. Peter Anvin, (Fri Aug 1, 2:50 pm)
Re: More on git over HTTP POST, Shawn O. Pearce, (Sat Aug 2, 1:57 pm)
Re: More on git over HTTP POST, Daniel Stenberg, (Sat Aug 2, 2:00 pm)
Re: More on git over HTTP POST, Shawn O. Pearce, (Sat Aug 2, 2:08 pm)
Re: More on git over HTTP POST, Petr Baudis, (Sat Aug 2, 2:23 pm)
Re: More on git over HTTP POST, Shawn O. Pearce, (Sat Aug 2, 2:32 pm)
Re: More on git over HTTP POST, Shawn O. Pearce, (Sat Aug 2, 7:56 pm)
Re: More on git over HTTP POST, Junio C Hamano, (Sat Aug 2, 8:27 pm)
Re: More on git over HTTP POST, Shawn O. Pearce, (Sat Aug 2, 8:31 pm)
Re: More on git over HTTP POST, H. Peter Anvin, (Sat Aug 2, 8:47 pm)
Re: More on git over HTTP POST, H. Peter Anvin, (Sat Aug 2, 8:51 pm)
Re: More on git over HTTP POST, H. Peter Anvin, (Sat Aug 2, 9:01 pm)
Re: More on git over HTTP POST, Shawn O. Pearce, (Sat Aug 2, 9:10 pm)
Re: More on git over HTTP POST, Shawn O. Pearce, (Sat Aug 2, 9:12 pm)
Re: More on git over HTTP POST, Mike Hommey, (Sat Aug 2, 11:43 pm)
Re: More on git over HTTP POST, david, (Sun Aug 3, 1:10 am)
Re: More on git over HTTP POST, H. Peter Anvin, (Sun Aug 3, 4:29 am)
Re: More on git over HTTP POST, H. Peter Anvin, (Sun Aug 3, 4:31 am)
Re: More on git over HTTP POST, H. Peter Anvin, (Sun Aug 3, 4:42 am)
Re: [RFC 2/2] Add Git-aware CGI for Git-aware smart HTTP t ..., Johannes Schindelin, (Mon Aug 4, 3:08 am)
Re: [RFC 2/2] Add Git-aware CGI for Git-aware smart HTTP t ..., Johannes Schindelin, (Mon Aug 4, 3:26 am)
Re: [RFC 2/2] Add Git-aware CGI for Git-aware smart HTTP t ..., Shawn O. Pearce, (Mon Aug 4, 8:59 am)
Add Git-aware CGI for Git-aware smart HTTP transport, H. Peter Anvin, (Tue Aug 12, 6:56 pm)
Re: Add Git-aware CGI for Git-aware smart HTTP transport, Shawn O. Pearce, (Tue Aug 12, 7:37 pm)