Setting up Hg on a Windows machine... Part 2
07 Mar 2012 - Nic Ho Chee
I thought I’d look at securing Hg through Abyss, turning on pushing and pulling through security and what it takes to sort out a backup. I wanted to look at CVS and SVN which I’ll leave for another time.
This post is the second part, to see the first part go here.
Security
Hg supports SSL/HTTPS and defaults to requiring SSL for pushing operations. You can turn this off however it isn't a good idea, if you require a URL plus username/password to access a site, you really don't want to be transmitting that data in the clear. Most of the security is going to be handled through Abyss. You need to create/import a private key and certificate for the site, create passwords for your users and lock-down directory access to the repo dirs.
Creating a Private Key
- Open the Abyss console and go to SSL/TLS certificates.
- Add a private key, in this case we'll call it test_private_key.
- Generate an RSA 2048 bit key. Any less and we'll start to make it easier to crack.
- The key will now be stored ready for user later.
Creating a Test Certificate
Ideally, you should buy a certificate from a known provider, for the purposes of this post we're going to create a test certificate. We can still use this, however when browsers open to the site they will complain that the signing authority is not known, and that do you/they still want to trust the site. In our case this doesn't matter as we're trusting ourselves not to do anything bad like snarf someone's user/pass data :).
- In the SSL/TLS certificates section, Add a certificate.
- Create a new certificate, we'll call is test_certificate.
- Set the private key to the previously generated key "test_private_key"... and set the type of certificate to Self Signed.
- There will be a set of details that you need to fill out, set a test address which can be IP of the machine the Abyss server is situated on.
- Set the locality to GB and fill the rest in accordingly.
- Click Ok and you have yourself a test certificate stored on the webserver.
Setting Up The Rest of the Security
- Configure the host to use HTTPS. Go back to configuring the host, under Configure > General > Protocol set it to HTTPS and use the certificate we just created.
- Click OK and Restart to get the server running again.
- Test the site using https://localhost/ and you should get the warning screen about the signing authority not being known.
- Go to Configure > Users and Groups > Add A User.
- We will create a new user bobjones with a password bobjones.
- Ok and Restart/Refresh the server and the user is added.
- Go to Configure > Access Control and add a new directory to control. Set the virtual path to cgi-bin, set the realm to hg_test, set the order to allow/deny and allow for bobjones. Setting Allow/Deny makes sure that you allow only the selected users and deny everyone else.
- After refreshing if you go to http://<insert your webserver address here>/cgi-bin/hgwebdir.cgi it should ask you for a username/password :).
Setting Up Hg To Use SSL
We now have an SSL enabled server, so we need to set up Hg to use it. This is where it gets a little bit interesting, as there isn't a lot of information about using Abyss and Hg together or how the various hg .ini files work together in windows. The first thing to understand is that there are two main files you will be playing with:
- %MERCURIAL_INSTALLATION_DIR%\Mercurial.ini
- hgweb.config in the cgi-bin directory.
Mercurial has a few variables which can be set in these files and lays them out here for you:
http://www.selenic.com/mercurial/hgrc.5.html
The first thing to do is create a new clone of the repo in c:\temp\workdir. Notice that we're cloning over HTTPS now:
Hg will now prompt you for a username/password. If you don't fancy filling in your username/password each time you can insert the lines below in the Mercurial.ini file and it will supply your credentials each time you carry out an hg command. Please be aware that it's storing your password on your machine in plaintext, someone could easily come and snarf your machine and password so it needs to be physically secure. You can add multiple prefixes for all the repos you use and separate username/passwords for each one as long as you create a new groupname as below:
Previously we added a file, Test1.txt to our repo, now go to the file in the newly cloned ProjectA repo and add a second line, "thisisasecondstring". Save the file and we'll try pushing this to the repo.
Hg status tells you all of your uncommitted files. It should say something like:
Commit the change to the local repo. Committing as below will carry out a silent commit and only show problems if there are any errors in the operation.
Now we can push the change back to the main ProjectA repo.
UH OH! You won't be able to push the changes, it should say something like "abort: authorization failed". You need to set up the Hg install on the webserver for pushing data.
In your Mercurial.ini file add the line below to allow pushing for bobjones
Now would be a good chance to check what is going to be pushed to the main repo. You can do this with the "outgoing" key word. This will show all of the pending changelists which are to be sent up to the main repo as shown below:
So... push the changelist... using "hg push". UH OH... you can't. You'll get another authorization failed message. You can attempt to get some more information by forcing hg to output some debug data as shown below:
This is where it gets a little annoying... for some reason setting allow_push in your Mercurial.ini file doesn't force Mercurial to turn on pushing. It looks like a minor bug, but you have to move this line into the hgweb.config file. Insert the lines below in the hgweb.ini file and you're good to go.
Run "hg push" again and you have committed your first set of changes over SSL and pushed them back to the main repo :).
Backing Up The Repo
We now have changes that we don't want to lose and need to back up the repo. Its simple, just zip up the repo directory, in this case C:\temp\MercurialTest\ProjectA and if you need to go back to it simply replace the current directory with the unzipped copy and you're away! You can set up a cron job to clone the repo to a known directory, create a zip of the known directory and hive that off somewhere and you're done... so simple for Hg :).
Next…
Thats pretty much it for now for setting up and basics. If needed I'll be looking at moving from a CVS or SVN repo, but for the moment I'll be playing with my newly minted Hg repo :).