chiark / gitweb /
contrib/: New directory for random occasionally-useful stuff.
authorMark Wooding <mdw@distorted.org.uk>
Wed, 14 Mar 2012 20:57:07 +0000 (20:57 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Wed, 14 Mar 2012 21:09:26 +0000 (21:09 +0000)
Makefile.am
configure.ac
contrib/Makefile.am [new file with mode: 0644]
contrib/README [new file with mode: 0644]
contrib/ipif-peers [new file with mode: 0755]
contrib/tripe-ipif [new file with mode: 0755]

index e04377f2669ecb01303b13a9da714d2247be02c9..c3d5bf6726453f92a9d2af64f3318aed0c4496a5 100644 (file)
@@ -67,6 +67,9 @@ if HAVE_PYGTK
 SUBDIRS                        += mon
 endif
 
+## Contributed stuff.
+SUBDIRS                        += contrib
+
 ## Testing.
 SUBDIRS                        += t
 
index 3ca6cf6cb04526ef18c4d15cb7d89125f7e5acd3..66d216d0c5884df1cd30cdea19f5dec00688915f 100644 (file)
@@ -335,6 +335,7 @@ AC_CONFIG_FILES(
   [keys/Makefile]
   [svc/Makefile]
   [mon/Makefile]
+  [contrib/Makefile]
   [t/Makefile t/atlocal])
 AC_OUTPUT
 
diff --git a/contrib/Makefile.am b/contrib/Makefile.am
new file mode 100644 (file)
index 0000000..fe5b472
--- /dev/null
@@ -0,0 +1,36 @@
+### -*-makefile-*-
+###
+### Makefile for TrIPE contrib stuff
+###
+### (c) 2001 Straylight/Edgeware
+###
+
+###----- Licensing notice ---------------------------------------------------
+###
+### This file is part of Trivial IP Encryption (TrIPE).
+###
+### TrIPE is free software; you can redistribute it and/or modify
+### it under the terms of the GNU General Public License as published by
+### the Free Software Foundation; either version 2 of the License, or
+### (at your option) any later version.
+###
+### TrIPE is distributed in the hope that it will be useful,
+### but WITHOUT ANY WARRANTY; without even the implied warranty of
+### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+### GNU General Public License for more details.
+###
+### You should have received a copy of the GNU General Public License
+### along with TrIPE; if not, write to the Free Software Foundation,
+### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+include $(top_srcdir)/vars.am
+
+dist_noinst_DATA        =
+
+###--------------------------------------------------------------------------
+### Contributions.
+
+## Glue for `userv-ipif'.
+dist_noinst_DATA       += tripe-ipif ipif-peers
+
+###----- That's all, folks --------------------------------------------------
diff --git a/contrib/README b/contrib/README
new file mode 100644 (file)
index 0000000..c055145
--- /dev/null
@@ -0,0 +1,10 @@
+CONTRIBUTED FILES
+
+This directory contains some random scripts which might be useful, but
+aren't part of the official distribution.
+
+What is there?
+
+tripe-ipif
+ipif-peers
+       Glue for attaching tripe to Ian Jackson's `userv-ipif' service.
diff --git a/contrib/ipif-peers b/contrib/ipif-peers
new file mode 100755 (executable)
index 0000000..c976238
--- /dev/null
@@ -0,0 +1,59 @@
+#! /bin/sh
+###
+### Start up peers registered in tripe-ipif's table
+###
+### (c) 2012 Mark Wooding
+###
+
+###----- Licensing notice ---------------------------------------------------
+###
+### This file is part of Trivial IP Encryption (TrIPE).
+###
+### TrIPE is free software; you can redistribute it and/or modify
+### it under the terms of the GNU General Public License as published by
+### the Free Software Foundation; either version 2 of the License, or
+### (at your option) any later version.
+###
+### TrIPE is distributed in the hope that it will be useful,
+### but WITHOUT ANY WARRANTY; without even the implied warranty of
+### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+### GNU General Public License for more details.
+###
+### You should have received a copy of the GNU General Public License
+### along with TrIPE; if not, write to the Free Software Foundation,
+### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+###--------------------------------------------------------------------------
+### Instructions.
+###
+### This script will tell a tripe server to associate with all of the peers
+### named in the $TRIPEDIR/ipif.tab file.  See `tripe-ipif' for a description
+### of the configuration file.
+
+set -e
+quis=${0##*/}
+case ${TRIPEDIR+t} in
+  t) ;;
+  *) echo >&2 "$quis: \`TRIPEDIR' unset"; exit 1 ;;
+esac
+
+## Trundle through the table.
+while read name remote_ext local_int remote_int routes; do
+
+  ## Ignore comments, and unknown remote-external addresses.
+  case "$name" in "" | "#"*) continue ;; esac
+  case "$remote_ext" in -) continue ;; esac
+
+  ## Parse the address.
+  fam=INET port=4070
+  case "$remote_ext" in
+    *:*) port=${remote_ext#*:}; addr=${remote_ext%:*} ;;
+    *) addr=$remote_ext ;
+  esac
+
+  ## Add the peer.
+  tripectl ADD "$name" "$fam" "$addr" "$port"
+
+done <$TRIPEDIR/ipif.tab
+
+###----- That's all, folks --------------------------------------------------
diff --git a/contrib/tripe-ipif b/contrib/tripe-ipif
new file mode 100755 (executable)
index 0000000..689957c
--- /dev/null
@@ -0,0 +1,132 @@
+#! /bin/sh
+###
+### TRIPE_SLIPIF dynamic allocation script for use with `userv-ipif'
+###
+### (c) 2012 Mark Wooding
+###
+
+###----- Licensing notice ---------------------------------------------------
+###
+### This file is part of Trivial IP Encryption (TrIPE).
+###
+### TrIPE is free software; you can redistribute it and/or modify
+### it under the terms of the GNU General Public License as published by
+### the Free Software Foundation; either version 2 of the License, or
+### (at your option) any later version.
+###
+### TrIPE is distributed in the hope that it will be useful,
+### but WITHOUT ANY WARRANTY; without even the implied warranty of
+### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+### GNU General Public License for more details.
+###
+### You should have received a copy of the GNU General Public License
+### along with TrIPE; if not, write to the Free Software Foundation,
+### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+###--------------------------------------------------------------------------
+### Instructions.
+###
+### This script is an adaptor for attaching tripe's `slip' tunnel driver to
+### `userv-ipif'.  The latter is a service for GNU Userv which allows
+### otherwise unprivileged users to implement network devices, subject to
+### administrative limitations on which addresses can be configured and which
+### prefixes routed through them.  The software is available as part of the
+### `userv-utils' package.
+###
+### To use this script, you'll need to set up a configuration file
+### `$TRIPEDIR/ipif.tab'.  This file may contain comments (begining `#') and
+### blank lines, both of which are ignored, and entries of the form
+###
+### PEER       REMOTE-EXT      LOCAL-INT       REMOTE-INT      ROUTE,...
+###
+### The PEER names a peer, as given to tripe's ADD command.  REMOTE-EXT is
+### the external IP address of the peer, i.e., the one which tripe will send
+### its packets to.  LOCAL-INT and REMOTE-INT are the local and remote
+### addresses to be associated with the point-to-point interface.  Finally,
+### the ROUTEs are a comma-separated list of PREFIX/LEN pairs declaring
+### which prefixes should be routed over this interface.  The *-INT and
+### ROUTEs fields are passed on to the `userv-ipif' service.  The REMOTE-EXT
+### field is used (a) by the accompanying `ipif-peers' script to set up the
+### peer association, and (b) to determine the correct MTU to set; it
+### should have the form ADDRESS[:PORT], where the PORT defaults to 4070 if
+### it's not given explicitly.
+###
+### Having done all of that, and having configured userv-ipif correctly,
+### you should set TRIPE_SLIPIF=.../tripe-ipif and everything should just
+### work.  If you drop the script `ipif-peers' into the $TRIPEDIR/peers
+### directory, then the init script will run it and all of the configured
+### peers with known remote addresses will be added on startup.
+
+set -e
+quis=${0##*/}
+
+## Parse the command line.
+case $# in 1) ;; *) echo >&2 "Usage: $quis PEER"; exit 1 ;; esac
+case ${TRIPEDIR+t} in
+  t) ;;
+  *) echo >&2 "$quis: \`TRIPEDIR' unset"; exit 1 ;;
+esac
+peer=$1
+
+## Arrange for errors to go somewhere.
+case "${TRIPE_IPIF_LOG+t}" in t) exec 2>>"$TRIPE_IPIF_LOG" ;; esac
+now=$(date +"%Y-%m-%d %H:%M:%S")
+echo >&2 "$now $quis[$$] running for peer \`$peer'"
+
+## Find the record in the peer table.
+foundp=nil
+while read name remote_ext local_int remote_int routes; do
+  case $name in "$peer") foundp=t; break ;; esac
+done <$TRIPEDIR/ipif.tab
+case $foundp in
+  nil) echo >&2 "$quis[$$]: unknown peer \`$peer'"; exit 1 ;;
+esac
+
+## Announce the interface name.  We actually have no way to determine this,
+## so lie and hope that nobody cares.
+echo "userv-$peer"
+
+## Now we can interrogate the server without deadlocking it.
+algs=$(tripectl algs) tagsz=nil blksz=nil
+while read line; do
+  for i in $line; do
+    case $i in
+      cipher-blksz=*) blksz=${i#*=} ;;
+      mac-tagsz=*) tagsz=${i#*=} ;;
+    esac
+  done
+done <<EOF
+$algs
+EOF
+case ,$tagsz,$blksz, in
+  *,nil,*) echo >&2 "$quis[$$]: failed to discover cipher suite"; exit 1 ;;
+esac
+
+## Determine the remote address if none is specified; strip off a port number
+## if there is one.
+case "$remote_ext" in
+  -)
+    addr=$(tripectl addr $peer)
+    set -- $addr
+    case $1 in
+      INET) remote_ext=$2 ;;
+      *) echo >&2 "$quis: unexpected address family \`$1'"; exit 1 ;;
+    esac
+    ;;
+  *:*)
+    remote_ext=${remote_ext%:*}
+    ;;
+esac
+
+## Determine the MTU based on the path.
+pmtu=$(pathmtu $remote_ext)
+mtu=$(( $pmtu - 33 - $tagsz - $blksz ))
+
+## Obtain the tunnel and run it.
+now=$(date +"%Y-%m-%d %H:%M:%S")
+info="invoking \`userv ipif' for \`$peer'; mtu = $mtu"
+info="$info; $local_int -> $remote_int${routes+ $routes}"
+echo >&2 "$now $quis[$$] $info"
+exec userv root ipif $local_int,$remote_int,$mtu,slip $routes
+
+###----- That's all, folks --------------------------------------------------