staticsync-ssh-wrap: drop wheezy compatible rsync call in allowed list
[mirror/dsa-puppet.git] / modules / staticsync / files / 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.iLsfx --safe-links .") # jessie
86         allowed_rsyncs+=("--server --sender -vlHtrze.iLsfxC --safe-links .") # stretch
87
88         for cmd_idx in ${!allowed_rsyncs[*]}; do
89                 args="${allowed_rsyncs[$cmd_idx]}"
90                 for component in $(awk -v this_host="$(hostname -f)" '!/^ *(#|$)/ && $1 == this_host {print $2}' $COMPONENTLIST); do
91                         if [ "$*" = "$args $component/-new-/" ] || [ "$*" = "$args ./$component/-new-/" ] ; then
92                                 local path="$BASEDIR/master/$component-current-push"
93                                 info "serving $remote_host with $path"
94                                 exec rsync $args "$path/."
95                                 croak "Exec failed"
96                         elif [ "$*" = "$args $component/-live-/" ] || [ "$*" = "$args ./$component/-live-/" ] ; then
97                                 local path="$BASEDIR/master/$component-current-live"
98                                 info "host $remote_host wants $path, acquiring lock"
99                                 tgtlock="$BASEDIR/master/$component.lock"
100                                 if ! [ -e "$tgtlock" ]; then
101                                         touch "$tgtlock"
102                                 fi
103                                 exec 200< "$tgtlock"
104                                 if ! flock -s -w 0 200; then
105                                 echo >&2 "Cannot acquire shared lock on $tgtlock covering $path - this should mean an update is already underway anyway."
106                                 exit 1
107                                 fi
108                                 exec rsync $args "$path/."
109                                 croak "Exec failed"
110                         fi
111                 done
112         done
113 }
114
115 do_rsync_on_source() {
116         local remote_host="$1"
117         shift
118
119         local allowed_rsyncs
120         allowed_rsyncs=()
121
122         if [ -e "$COMPONENTLIST" ]; then
123                 for path in $(awk -v host="$(hostname -f)" '!/^ *(#|$)/ && $3 == host {print $4}' $COMPONENTLIST); do
124                         allowed_rsyncs+=("--server --sender -lHtrze.iLsfx --safe-links . $path/.") # jessie
125                         allowed_rsyncs+=("--server --sender -lHtrze.iLsfxC --safe-links . $path/.") # stretch
126                 done
127         fi
128         for cmd_idx in ${!allowed_rsyncs[*]}; do
129                 allowed="${allowed_rsyncs[$cmd_idx]}"
130                 if [ "$*" = "$allowed" ]; then
131                         info "Running for host $remote_host: rsync $*"
132                         exec rsync "$@"
133                         croak "Exec failed"
134                 fi
135         done
136 }
137
138 do_rsync() {
139         do_rsync_on_master "$@"
140         do_rsync_on_source "$@"
141
142         info "NOT allowed for $remote_host: rsync $*"
143         echo >&2 "This rsync command ($@) not allowed."
144         exit 1
145 }
146
147 do_update_component() {
148         local remote_host="$1"; shift
149
150         one_more_arg "$@"
151         component="$1"
152         shift
153
154         hit="$(
155                 awk -v this_host="$(hostname -f)" -v component="$component" -v host="$remote_host" '
156                         !/^ *(#|$)/ && $1 == this_host && $2 == component {
157                                 if ($3 == host) {
158                                         print $4
159                                         exit
160                                 }
161                                 split($5,extra,",")
162                                 for (i in extra) {
163                                         if (host == extra[i]) {
164                                                 printf "%s:%s\n", $3, $4
165                                                 exit
166                                         }
167                                 }
168                                 exit
169                         }' "$COMPONENTLIST"
170                 )"
171         if [ -n "$hit" ]; then
172                 exec static-master-update-component "$component"
173                 echo >&2 "Exec failed"
174                 croak "exec failed"
175         else
176                 info "Not whitelisted: $remote_host update $component"
177                 echo >&2 "Not whitelisted: $remote_host update $component"
178                 exit 1
179         fi
180 }
181
182
183 if [ "${1:-}" = "-h" ] || [ "${1:-}" = "--help" ]; then
184         usage
185         exit 0
186 fi
187
188 one_more_arg "$@"
189 remote_host="$1"
190 shift
191
192
193 # check/parse remote command line
194 if [ -z "${SSH_ORIGINAL_COMMAND:-}" ] ; then
195         croak "Did not find SSH_ORIGINAL_COMMAND"
196 fi
197 set "dummy" ${SSH_ORIGINAL_COMMAND}
198 shift
199
200 info "host $remote_host called with $*"
201
202 one_more_arg "$@"
203 action="$1"
204 shift
205
206 case "$action" in
207         # on a static mirror, update a component from its master
208         mirror)
209                 do_mirror "$remote_host" "$@"
210                 ;;
211         # on a static source, allow fetching from the master,
212         # on a master, allow fetching from a component's mirrors
213         rsync)
214                 do_rsync "$remote_host" "$@"
215                 ;;
216         # on a master, initiate an update of a component
217         static-master-update-component)
218                 do_update_component "$remote_host" "$@"
219                 ;;
220         *)
221                 croak "Invalid operation '$action'"
222                 ;;
223 esac