Bacula Encryption Fund-Raising Project

09 Aug 2005, 21:23 PDT

Bacula is an excellent backup solution available for the BSDs, Linux, Mac OS X, Windows, and other operating systems.

As the original contributor of Bacula's network encryption support, I recently volunteered to implement on-disk backup encryption -- with one catch. In exchange for implementing data encryption support, I would like the Bacula community to donate $3,000 to the Electronic Frontier Foundation.

To quote the official announcement: "Can your company contribute $250 or $500? How about $100? And if your budget is really tight, why not forego a couple of fast food meals and contribute $20?. Bacula is a community project, and this can be your way of helping make Bacula an even better product for the good of the whole community."

Information on how to donate can be found in the official announcement.

OpenVPN Auth-LDAP Plugin

31 Mar 2005, 15:05 PST

Yesterday I implemented a LDAP authentication plugin for OpenVPN 2.x. OpenVPN's new plugin architecture makes it surprisingly easy to extend the software in very useful ways.

More information and the source code are available on this page

Gathering Interface Statistics with PF

10 Feb 2005, 03:45 PST

Introduction

Yesterday, I wanted to gather bandwith usage statistics on my FreeBSD pf(4) based firewall in order to graph incoming and outgoing bandwidth utilization.

pfctl(8) provides the '-s info' flag, which can provide statistics on a single interface at a time. The interface can be chosen with the either the "loginterface" directive in pf.conf, or by using the DIOCSETSTATUSIF ioctl. However, I needed statics for all the network interfaces, not just one.

Fortunately, pf(4) also provides the DIOCIGETIFACES ioctl, which allows me to gather packet and byte statistics on all interfaces at once. This article will provide an introduction to using the pf(4) ioctl interface to gather network interface traffic statistics. Full example source code can be downloaded here. Note that PF does not maintain statistics on traffic that does not pass through PF. If you don't use PF, all the counters will be zero.

Read more ...

Installing and Using the MinGW Cross-Compiler on Mac OS X

07 Dec 2004, 15:13 PST

MinGW supplies header files, import libraries, and a compiler tool-chain based on GNU cc and binutils for building native Windows executables and libraries with no dependencies on third party libraries.

I am using the MinGW tool-chain to compile the Win32 port of OpenDarwin libFoundation. To cross-compile the library on my Mac OS X machine, I created DarwinPorts Portfiles for the MinGW tool-chain.

In this article I'll document how to install the MinGW ports, build a "Hello, World" example, and run the result on a x86 machine using Wine.

Read more ...

Fixing ptrace(pt_deny_attach, ...)

10 Oct 2004, 13:13 PDT

NOTE: For information on Mac OS X Tiger, refer to this article.

In Mac OS X, Apple introduced an additional, non-standard request type to the ptrace() system call - PT_DENY_ATTACH. While an understandable addition, especially in terms of providing plausible defense for their DRM applications, PT_DENY_ATTACH has come to be used by a number of third party developers in an attempt to provide further copy protection.

This is unfortunate for those of us with a genuine need to attach a debugger; There are several circumstances when this ability is necessary, including working with libSystem, writing a runtime patch with APE, writing a kext, writing an input manager, or software auditing.

There are several possible ways to work around this behavior; breaking on ptrace(2) in gdb, recompiling your kernel, or writing a kext. I choose to write a kext that hooks ptrace(2).

Read more ...

Accessing My Sources Using Arch

12 Sep 2004, 21:43 PDT

GNU Arch, while incredibly obtuse, has a relatively unique featureset that I've come to appreciate. As such, I've begun using it for my externally available source code. There are two projects currently available in my arch repository - the project containing this web log, and TclObjC, a Tcl<->Obj-C bridge that I have been working on.

If you want to browse my arch repository, just point your web browser at my ArchZoom interface. To access the repository directly, you'll need the arch client, tla. If you're using Mac OS X or Darwin, you can use DarwinPorts to install it. Once you have arch installed, use the commands below to access my archive.

Read more ...

Introduction / Implementation

07 Jul 2004, 12:44 PDT

For quite some time I have wanted an easy means of sharing information in a semi-attractive format while expending the least possible effort. To this end, I have finally assembled a web log based on Blosxom, Arch, and duct tape.

All my modifications to blosxom and various blosxom plugins can be accessed via my arch repository. See this post for details on accessing the arch repository.