]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/roles/files/static-mirroring/static-master-ssh-wrap
b5c88be72321be8687474389b78ff878636fc5e0
[dsa-puppet.git] / modules / roles / files / static-mirroring / static-master-ssh-wrap
1 #!/bin/bash
2
3 # Copyright (c) 2009, 2010, 2012 Peter Palfrader
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining
6 # a copy of this software and associated documentation files (the
7 # "Software"), to deal in the Software without restriction, including
8 # without limitation the rights to use, copy, modify, merge, publish,
9 # distribute, sublicense, and/or sell copies of the Software, and to
10 # permit persons to whom the Software is furnished to do so, subject to
11 # the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be
14 # included in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
24 set -e
25 set -u
26
27 MYLOGNAME="`basename "$0"`[$$]"
28 BASEDIR="/home/staticsync/static-master"
29 COMPONENTLIST=/etc/static-components.conf
30
31 usage() {
32         echo "local Usage: $0 <host>"
33         echo "via ssh orig command:"
34         echo "                      rsync <stuff>"
35         echo "                      static-master-update-component <component>"
36 }
37
38 one_more_arg() {
39         if [ "$#" -lt 1 ]; then
40                 usage >&2
41                 exit 1
42         fi
43 }
44
45 info() {
46         logger -p daemon.info -t "$MYLOGNAME" "$1"
47 }
48
49 croak() {
50         logger -s -p daemon.warn -t "$MYLOGNAME" "$1"
51         exit 1
52 }
53
54 lock() {
55   local fd="$1"; shift
56   local path="$1"; shift
57   local exclusive="$1"; shift
58
59   eval "exec $fd< '$path'"
60
61   if [ "$exclusive" -gt 0 ]; then
62     locktype="-e"
63   else
64     locktype="-s"
65   fi
66
67   if ! flock "$locktype" "$fd"; then
68     echo >&2 "$0: Cannot acquire lock on $base (flock $locktype failed) - Very bad, we should have waited!"
69     exit 1
70   fi
71 }
72
73 serve_dir() {
74         local remote_host="$1"; shift
75         local path="$1"; shift
76
77         local sender='rsync --server --sender -vlogDtprze.iLsf . '
78
79         if [ -e "$path" ]; then
80                 info "serving $remote_host with $path"
81                 $sender "$path/"
82         else
83                 info "$remote_host wants non-existing $path"
84                 echo >&2 "$path does not exist."
85                 exit 1
86         fi
87 }
88
89 do_rsync() {
90         local remote_host="$1"; shift
91
92         if [ "$*" = "--server --sender -vltrze.iLsf --safe-links . -new-/" ] ; then
93                 serve_dir "$remote_host" "$BASEDIR/current-push"
94         elif [ "$*" = "--server --sender -vltrze.iLsf --safe-links . -live-/" ] ; then
95                 local p="$BASEDIR/current-live"
96                 info "host $remote_host wants $p, acquiring lock"
97                 lock 200 "$p" 0
98                 serve_dir "$remote_host" "$p"
99         else
100                 info "NOT allowed for $remote_host: rsync $*"
101                 echo >&2 "This rsync command ($@) not allowed."
102                 exit 1
103         fi
104 }
105
106 do_update_component() {
107         local remote_host="$1"; shift
108
109         one_more_arg "$@"
110         component="$1"
111         shift
112
113         hit="$(awk -v component="$component" -v host="$remote_host" '$1 == component && $2 == host {print $3; exit}' "$COMPONENTLIST")"
114         if [ -n "$hit" ]; then
115                 exec static-master-update-component "$component"
116                 echo >&2 "Exec failed"
117                 croak "exec failed"
118         else
119                 info "Not whitelisted: $remote_host update $component"
120                 echo >&2 "Not whitelisted: $remote_host update $component"
121                 exit 1
122         fi
123 }
124
125
126 if [ "${1:-}" = "-h" ] || [ "${1:-}" = "--help" ]; then
127         usage
128         exit 0
129 fi
130
131 one_more_arg "$@"
132 remote_host="$1"
133 shift
134
135
136 # check/parse remote command line
137 if [ -z "${SSH_ORIGINAL_COMMAND:-}" ] ; then
138         croak "Did not find SSH_ORIGINAL_COMMAND"
139 fi
140 set "dummy" ${SSH_ORIGINAL_COMMAND}
141 shift
142
143 info "host $remote_host called with $*"
144
145 one_more_arg "$@"
146 action="$1"
147 shift
148
149 case "$action" in
150         rsync)
151                 do_rsync "$remote_host" "$@"
152                 ;;
153         static-master-update-component)
154                 do_update_component "$remote_host" "$@"
155                 ;;
156         *)
157                 croak "Invalid operation '$action'"
158                 ;;
159 esac