CTM for OpenBSD

What is CTM?

CTM is a system which was designed by Poul-Henning Kamp for making changes to a source tree available on a daily basis by email. This is a good way to stay up to date with the current source tree or CVS repository if you have a slow Internet connection, for instance via modem.

CTM uses very low bandwidth for distributing the changes to the tree, and compresses them using gzip -9. In contrast to CVSup, CTM is written in plain C language and therefore available for every platform supported by OpenBSD.

For any problems, suggestions, reports and questions regarding CTM, contact the CTM maintainer Hans Günter Weigand. (Please do not ask other OpenBSD people for CTM support, as they are busy doing other things. Thank you.)

How does it work?

The basic idea of CTM is that you subscribe to a special mailing list for a particular source tree. Each day you receive an email message containing all the changes to that tree during that period. One such set of differences is called a delta. Actually, the CTM server makes new deltas every twelve hours.

You begin with a base set, against which later deltas are patched. To begin using CTM you download the latest base set and all deltas generated after that. Once you have processed those you can process later deltas you receive from the mailing list. The base sets are split into pieces of 1400kB each for easier downloading over bad lines.

Base sets are generated once every 50 relative deltas, so you never have to grab more than 50 deltas to catch up.

There are currently two kinds of base set files. For quite a while we were making tar.gz files manually, but we are switching back to real CTM base deltas. The latter contain md5(1) checksums and are generated automatically, thus are a bit safer. You can distinguish these two kinds of base sets by their filename. An example for a tar.gz file is OpenBSD-cvs.1450.tar.gz, whereas a CTM base delta would be named OpenBSD-cvs.1500A.gz. See below for detailed instructions.

How much bandwidth does CTM use?

You obtain the base set and all relative deltas up to the recent one via ftp from the sites listed below. Sizes are:

How do I use CTM?

Note: The examples below just cover OpenBSD-cvs for clarity. The other source sets are handled in the same fashion.

The addresses of the FTP servers carrying CTM deltas are:

NOTE: I'm very interested in finding other sites around the world that would like to mirror these deltas.

Should I choose the source tree or the CVS repository?

This depends on your diskspace, among other factors. Since CTM doesn't deal very well with files which have been modified locally, the "better" choice is probably the CVS repository. You can check out your working copy of the source tree from your CVS repository then, and keep your local modifications in your source tree. CVS is smart enough to merge in your local changes. You can also use the full range of CVS commands except cvs commit.

The drawback, however, is the amount of diskspace it takes. A checked-out source tree takes about 350MB or so, but if you have your own CVS repository you need more than 1Gb for it, plus another 350MB for the checked out tree. This doesn't count the 100MB or more (depending on the architecture) you will need to do a build, i.e. compile the sources.

If you just get the source tree, you will need to deal with local modifications. One way to do this is to use the union filesystem, (see mount_union(8)) although there have been reports that the union filesystem can be unstable if both the upper and lower layers reside on the same physical filesystem. If you place your upper and lower layers on separate filesystems you should have no problems. A sample of this is as follows:

Suppose your CTM-updated tree is in /usr/src-ctm, and your real source tree, the one you make your modifications to and do your builds from, is in /usr/src. /usr/src should be initially an empty directory. The following command will set up the union mount:

	mount -t union -o -b /usr/src-ctm /usr/src

Modifications made to files in /usr/src will become a file contained within /usr/src, hiding the one in src-ctm. If changes are made via CTM to the underlying src-ctm tree, those changes will not be seen if there is a file in the upper layer hiding it.

You should periodically unmount the union and search for files which are local to the union filesystem.

	umount /usr/src
	find /usr/src -type f

The commands ls -W and rm -W will be useful too, as objects named "whiteouts" in /usr/src will also hide files in src-ctm.

If you get the CVS repository, you can use the cvs checkout command to check out a source tree from it. Each time you update with CTM you can use the cvs update command to update your source repository.

To get an initial src repository:

	cd /usr
	cvs -qd YOUR_CVS_REPOSITORY checkout -A src

and after each CTM update:

	cd /usr/src
	cvs -q update -PAd

How stable is CTM for OpenBSD?

CTM has been in use for over four years for OpenBSD, and for FreeBSD for an even longer period of time. CTM is very reliable and stable.

What does the future hold for CTM?

There are numerous (small) changes and optimizations possible. Among them:

More information

If you want to learn more about CTM, a good place to start with is the FreeBSD Handbook: There are also man pages for all of the CTM utilities.

Summary:

Important notes and announcements about CTM will be posted to:

Acknowledgements

OpenBSD/CTM logo designed for the OpenBSD Project by Phillip F Knaack.


OpenBSD www@openbsd.org
$OpenBSD: ctm.html,v 1.17 2001/09/30 17:39:11 jufi Exp $