gitolite/doc/shell-games.mkd
Sitaram Chamarty 6a5d564917 (minor) less important docs have "## title" now
this is so the make-gh-pages (not part of gitolite) script can boldface
the ones which have "# title"
2011-01-29 15:47:53 +05:30

3.3 KiB

avoiding the shell on the server

Gitolite now tries to prevent gitolite-admin push privileges from being used to obtain a shell on the server. This was not always the case (older gitolite did not make this distinction), but I've been moving towards this for a while now, and, while there could still be holes in that separation, they will be fixed as and when found.

Thus, settings that have security implications can be set only from the rc file, which needs to be edited directly on the server. And adding a new hook requires adding it to the gitolite clone and running easy install again, or gl-setup, if you used the server-side install method, both of which require shell access.

While this is great for my main target (corporate environments), some people don't like it. They want to do all of this from the gitolite-admin repo, because the security concern mentioned above does not bother them. They don't want to log on to the server to make a change in the rc file or don't want to run easy install to propagate a new set of hooks. In addition, they may want all of these animals versioned in the "gitolite-admin" repo itself, which certainly makes sense.

So here's how you might do that.

First, arrange to have all your special files added to the gitolite-admin repo. The best option is to keep all of this in a single subdirectory (let's call it "local" in our example). So your ~/.gitolite.rc might go into local/gitolite.rc, and all your local hooks into local/hooks etc. Add them, commit, and push.

Note: do not create any top level directory called "conf", "contrib", "doc", "hooks", or "src" -- those names are used by gitolite itself.

Second, create a post-update.secondary hook and place it in the gitolite clone's hooks/common directory, containing the following code:

#!/bin/bash

[ -z "$GL_RC" ] && { echo "ENV GL_RC not set"; exit 1; }

GL_ADMINDIR=`$GL_BINDIR/gl-query-rc GL_ADMINDIR`

cp    $GL_ADMINDIR/local/gitolite.rc    $HOME/.gitolite.rc
cp -a $GL_ADMINDIR/local/hooks/*        $GL_ADMINDIR/hooks/common
$HOME/gitolite-install/src/gl-install -q

Now run easy-install (or gl-setup) once, and you're done.

All future changes to the rc file can be done via local/gitolite.rc in the admin repo, and hooks can be added to local/hooks.

Warning: Nothing in gitolite removes hooks, so if you delete (or even rename) a script, it still stays on the server -- you'll have to delete them manually from the server.


So what's this actually doing?

Well, first, note that $GL_ADMINDIR contains files from both gitolite itself, as well as from the gitolite-admin repo. "conf/VERSION", "src", "doc", and "hooks" come from gitolite itself, while the other 2 files in "conf", and all of "keydir" come from the gitolite-admin repo. ("logs" doesn't come from anywhere).

In addition, any other files in the "master" branch of the gitolite-admin repo get checked out here, which in this case would mean the entire "local/" hierarchy you created above.

Now, since the "hooks/common" directory is coming from gitolite itself, clearly this is where the internal "install" routine expects to find new or updated hooks to propagate. So you just copy your local hooks (in the "local/hooks" directory) to "hooks/common" and run the installer again. Done!