a4075471da3a9d7e83fe4d9908de61124fc40445
[mirror/dsa-puppet.git] / modules / roles / files / static-mirroring / staticsync-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 . /etc/staticsync.conf
28 if ! [ -n "$base" ]; then
29   echo >&2 "base not configured!"
30   exit 1
31 fi
32 BASEDIR="$base"
33
34 MYLOGNAME="`basename "$0"`[$$]"
35 COMPONENTLIST=/etc/static-components.conf
36
37 usage() {
38         echo "local Usage: $0 <host>"
39         echo "via ssh orig command:"
40         echo "                      mirror <component> <serial>"
41         echo "                      rsync <stuff>"
42         echo "                      static-master-update-component <component>"
43 }
44
45 one_more_arg() {
46         if [ "$#" -lt 1 ]; then
47                 usage >&2
48                 exit 1
49         fi
50 }
51
52 info() {
53         logger -p daemon.info -t "$MYLOGNAME" "$1"
54 }
55
56 croak() {
57         logger -s -p daemon.warn -t "$MYLOGNAME" "$1"
58         exit 1
59 }
60
61 do_mirror() {
62         local remote_host="$1"; shift
63         one_more_arg "$@"
64         local component="$1"; shift
65         one_more_arg "$@"
66         local serial="$1"; shift
67
68         masterhost="$(awk -v component="$component" '!/^ *(#|$)/ && $2 == component {print $1; exit}' "$COMPONENTLIST")"
69         if [ -z "$masterhost" ]; then
70                 croak "Did not find master for component $component."
71         elif [ "$masterhost" != "$remote_host" ]; then
72                 croak "$remote_host is not master for $component."
73         else
74                 info "Host $remote_host triggered a mirror run for $component, serial $serial"
75                 exec /usr/local/bin/static-mirror-run "$BASEDIR/mirrors/$component" "$remote_host:$component/-new-" "$serial"
76                 echo >&2 "Exec failed"
77                 croak "exec failed"
78         fi
79 }
80
81 do_rsync_on_master() {
82         local remote_host="$1"; shift
83         local allowed_rsyncs
84         allowed_rsyncs=()
85         allowed_rsyncs+=("--server --sender -vlHtrze.iLsf --safe-links .") # wheezy
86         allowed_rsyncs+=("--server --sender -vlHtrze.iLsfx --safe-links .") # jessie
87         allowed_rsyncs+=("--server --sender -vlHtrze.iLsfxC --safe-links .") # stretch
88
89         for cmd_idx in ${!allowed_rsyncs[*]}; do
90                 args="${allowed_rsyncs[$cmd_idx]}"
91                 for component in $(awk -v this_host="$(hostname -f)" '!/^ *(#|$)/ && $1 == this_host {print $2}' $COMPONENTLIST); do
92                         if [ "$*" = "$args $component/-new-/" ] || [ "$*" = "$args ./$component/-new-/" ] ; then
93                                 local path="$BASEDIR/master/$component-current-push"
94                                 info "serving $remote_host with $path"
95                                 exec rsync $args "$path/."
96                                 croak "Exec failed"
97                         elif [ "$*" = "$args $component/-live-/" ] || [ "$*" = "$args ./$component/-live-/" ] ; then
98                                 local path="$BASEDIR/master/$component-current-live"
99                                 info "host $remote_host wants $path, acquiring lock"
100                                 exec 200< "$path"
101                                 if ! flock -s -w 0 200; then
102                                 echo >&2 "Cannot acquire shared lock on $path - this should mean an update is already underway anyway."
103                                 exit 1
104                                 fi
105                                 exec rsync $args "$path/."
106                                 croak "Exec failed"
107                         fi
108                 done
109         done
110 }
111
112 do_rsync_on_source() {
113         local remote_host="$1"
114         shift
115
116         local allowed_rsyncs
117         allowed_rsyncs=()
118
119         if [ -e "$COMPONENTLIST" ]; then
120                 for path in $(awk -v host="$(hostname -f)" '!/^ *(#|$)/ && $3 == host {print $4}' $COMPONENTLIST); do
121                         allowed_rsyncs+=("--server --sender -lHtrze.iLsf --safe-links . $path/.") # wheezy
122                         allowed_rsyncs+=("--server --sender -lHtrze.iLsfx --safe-links . $path/.") # jessie
123                         allowed_rsyncs+=("--server --sender -lHtrze.iLsfxC --safe-links . $path/.") # stretch
124                 done
125         fi
126         for cmd_idx in ${!allowed_rsyncs[*]}; do
127                 allowed="${allowed_rsyncs[$cmd_idx]}"
128                 if [ "$*" = "$allowed" ]; then
129                         info "Running for host $remote_host: rsync $*"
130                         exec rsync "$@"
131                         croak "Exec failed"
132                 fi
133         done
134 }
135
136 do_rsync() {
137         do_rsync_on_master "$@"
138         do_rsync_on_source "$@"
139
140         info "NOT allowed for $remote_host: rsync $*"
141         echo >&2 "This rsync command ($@) not allowed."
142         exit 1
143 }
144
145 do_update_component() {
146         local remote_host="$1"; shift
147
148         one_more_arg "$@"
149         component="$1"
150         shift
151
152         hit="$(
153                 awk -v this_host="$(hostname -f)" -v component="$component" -v host="$remote_host" '
154                         !/^ *(#|$)/ && $1 == this_host && $2 == component {
155                                 if ($3 == host) {
156                                         print $4
157                                         exit
158                                 }
159                                 split($5,extra,",")
160                                 for (i in extra) {
161                                         if (host == extra[i]) {
162                                                 printf "%s:%s\n", $3, $4
163                                                 exit
164                                         }
165                                 }
166                                 exit
167                         }' "$COMPONENTLIST"
168                 )"
169         if [ -n "$hit" ]; then
170                 exec static-master-update-component "$component"
171                 echo >&2 "Exec failed"
172                 croak "exec failed"
173         else
174                 info "Not whitelisted: $remote_host update $component"
175                 echo >&2 "Not whitelisted: $remote_host update $component"
176                 exit 1
177         fi
178 }
179
180
181 if [ "${1:-}" = "-h" ] || [ "${1:-}" = "--help" ]; then
182         usage
183         exit 0
184 fi
185
186 one_more_arg "$@"
187 remote_host="$1"
188 shift
189
190
191 # check/parse remote command line
192 if [ -z "${SSH_ORIGINAL_COMMAND:-}" ] ; then
193         croak "Did not find SSH_ORIGINAL_COMMAND"
194 fi
195 set "dummy" ${SSH_ORIGINAL_COMMAND}
196 shift
197
198 info "host $remote_host called with $*"
199
200 one_more_arg "$@"
201 action="$1"
202 shift
203
204 case "$action" in
205         # on a static mirror, update a component from its master
206         mirror)
207                 do_mirror "$remote_host" "$@"
208                 ;;
209         # on a static source, allow fetching from the master,
210         # on a master, allow fetching from a component's mirrors
211         rsync)
212                 do_rsync "$remote_host" "$@"
213                 ;;
214         # on a master, initiate an update of a component
215         static-master-update-component)
216                 do_update_component "$remote_host" "$@"
217                 ;;
218         *)
219                 croak "Invalid operation '$action'"
220                 ;;
221 esac