1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
|
#!/usr/bin/env bash
# Librerelease
# Uploads packages and releases them
# Copyright (C) 2010-2012 Joshua Ismael Haase Hernández (xihh) <hahj87@gmail.com>
# Copyright (C) 2010-2013 Nicolás Reynolds <fauno@parabola.nu>
# Copyright (C) 2013 Michał Masłowski <mtjm@mtjm.eu>
# Copyright (C) 2013-2014, 2017 Luke Shumaker <lukeshu@sbcglobal.net>
#
# For just the create_signature() function:
# Copyright (C) 2006-2013 Pacman Development Team <pacman-dev@archlinux.org>
# Copyright (C) 2002-2006 Judd Vinet <jvinet@zeroflux.org>
# Copyright (C) 2005 Aurelien Foret <orelien@chez.com>
# Copyright (C) 2006 Miklos Vajna <vmiklos@frugalware.org>
# Copyright (C) 2005 Christian Hamar <krics@linuxforum.hu>
# Copyright (C) 2006 Alex Smith <alex@alex-smith.me.uk>
# Copyright (C) 2006 Andras Voroskoi <voroskoi@frugalware.org>
#
# License: GNU GPLv3+
#
# This file is part of Parabola.
#
# Parabola 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 3 of the License, or
# (at your option) any later version.
#
# Parabola 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 Parabola. If not, see <http://www.gnu.org/licenses/>.
# create_signature() is taken from pacman:makepkg, which is GPLv2+,
# so we take the '+' to combine it with our GPLv3+.
set -euE
. "$(librelib messages)"
. "$(librelib conf)"
setup_traps
dryrun=""
upload_only=false
readonly rsync_flags=(
--no-group
--no-perms
--copy-links
--hard-links
--partial
--human-readable
--progress
)
# Functions ####################################################################
list0_files() {
find -L "${WORKDIR}/staging" -type f -not -name '*.lock' \
-exec realpath -z --relative-to="${WORKDIR}/staging" {} +
}
# This function is taken almost verbatim from makepkg
create_signature() {
local ret=$EXIT_SUCCESS
local filename="$1"
msg "Signing package..."
local SIGNWITHKEY=()
if [[ -n $GPGKEY ]]; then
SIGNWITHKEY=(-u "${GPGKEY}")
fi
gpg --detach-sign --use-agent "${SIGNWITHKEY[@]}" --no-armor "$filename" &>/dev/null || ret=$EXIT_FAILURE
if (( ! ret )); then
msg2 "Created signature file %s." "$filename.sig"
else
error "Failed to sign package file."
return $ret
fi
}
sign_packages() {
IFS=$'\n'
local files=($(find "${WORKDIR}/staging/" \
\( -type d -name "${ABSLIBREDEST##*/}" \) -prune \
-o \( -type f -not -iname '*.sig' \) -print))
local file
for file in "${files[@]}"; do
if [[ -f "${file}.sig" ]]; then
msg2 "File signature found, verifying..."
# Verify that the signature is correct, else remove for re-signing
if ! gpg --quiet --verify "${file}.sig" >/dev/null 2>&1; then
error "Failed! Re-signing..."
rm -f "${file}.sig"
fi
fi
if ! [[ -f "${file}.sig" ]]; then
create_signature "$file" || return
fi
done
}
# Clean everything if not in dry-run mode
clean_files() {
local file_list=$1
local rmcmd=(rm -fv)
if [[ -n "${dryrun}" ]]; then
rmcmd=(printf "$(_ "removed '%s' (dry-run)")\n")
fi
msg "Removing files from local staging directory"
cd "${WORKDIR}/staging" && xargs -0r -a "$file_list" "${rmcmd[@]}"
cd "${WORKDIR}/staging" && find . -mindepth 1 -type d -empty \
-exec rmdir -p {} + 2>/dev/null
}
################################################################################
usage() {
print "Usage: %s [OPTIONS]" "${0##*/}"
print 'Upload packages in $WORKDIR/staging to the Parabola server'
echo
print "Options:"
flag '-c' 'Clean; delete packages in $WORKDIR/staging'
flag '-l' "List; list packages but not upload them"
flag '-u' "Upload-only; do not run db-update on the server"
flag '-n' "Dry-run; don't actually do anything"
flag '-h' "Show this message"
}
main() {
if [[ -w / ]]; then
error "This program should be run as regular user"
return 1
fi
# Parse options
local mode="release_packages"
while getopts 'clunh' arg; do
case $arg in
c) mode=clean ;;
l) mode=pretty_print_packages ;;
u) upload_only=true ;;
n) dryrun="--dry-run" ;;
h) mode=usage ;;
*) usage >&2; return 1 ;;
esac
done
shift $((OPTIND - 1))
if [[ $# != 0 ]]; then
usage >&2
return 1
fi
if [[ $mode == usage ]]; then
usage
return 0
fi
declare -i ret=0
load_conf makepkg.conf GPGKEY || ret=$?
load_conf libretools.conf WORKDIR REPODEST ABSLIBREDEST || ret=$? # and HOOK{PRE,POST}RELEASE, which are optional
[[ $ret = 0 ]] || exit $ret
local re_url='^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?$'
local re_authority='^(([^@]*)@)?([^][@:]*|\[[^]]*\])(:([0-9]*))?$'
local REPODEST_ok=false
if [[ "$REPODEST" =~ $re_url ]]; then
REPODEST_ok=true
REPODEST_scheme=${BASH_REMATCH[2]}
REPODEST_authority=${BASH_REMATCH[4]}
REPODEST_path=${BASH_REMATCH[5]}
REPODEST_query=${BASH_REMATCH[7]}
REPODEST_fragment=${BASH_REMATCH[9]}
if [[ "$REPODEST_authority" =~ $re_authority ]]; then
REPODEST_userinfo=${BASH_REMATCH[2]}
REPODEST_host=${BASH_REMATCH[3]}
REPODEST_port=${BASH_REMATCH[5]}
else
REPODEST_ok=false
fi
[[ $REPODEST_scheme == ssh ]] || REPODEST_ok=false
[[ -n $REPODEST_authority ]] || REPODEST_ok=false
[[ -n $REPODEST_path ]] || REPODEST_ok=false
[[ -n $REPODEST_userhost ]] || REPODEST_ok=false
fi
if ! $REPODEST_ok; then
error 'The format of libretools.conf:REPODEST has changed.'
plain 'Merge the /etc/libretools.conf.pacnew file!'
return 6
fi
if [[ "$REPODEST_path" = '/~'* ]]; then
if [[ "$REPODEST_path" = '/~/'* ]]; then
REPODEST_path=${REPODEST_path#'/~/'}
else
error 'Unfortunately, `~user` home-directory expansion is not (yet?) supported in libretools.conf:REPODEST'
return 6
fi
fi
if [[ "$REPODEST_host" = '['*']' ]]; then
REPODEST_host=${REPODEST_HOST#'['}
REPODEST_host=${REPODEST_HOST#']'}
fi
REPODEST_userhost="${REPODEST_userinfo:+${REPODEST_userinfo%%:*}@}${REPODEST_host}"
"$mode"
}
# The different modes (sans 'usage') ###########################################
pretty_print_packages() {
find "$WORKDIR/staging/" -mindepth 1 -maxdepth 1 -type d -not -empty | sort |
while read -r path; do
msg2 "${path##*/}"
cd "$path"
find -L . -type f -not -name '*.lock' | sed 's|^\./| |' | sort
done
}
clean() {
lock 8 "${WORKDIR}/staging.lock" \
'Waiting for an exclusive lock on the staging directory'
local file_list
file_list="$(mktemp -t "${0##*/}.XXXXXXXXXX")"
trap "$(printf 'rm -f -- %q' "$file_list")" EXIT
list0_files > "$file_list"
lock_close 8
clean_files "$file_list"
}
release_packages() {
if [[ -n $HOOKPRERELEASE ]]; then
msg "Running HOOKPRERELEASE..."
plain '%s' "${HOOKPRERELEASE}"
bash -c "${HOOKPRERELEASE}"
fi
lock 8 "${WORKDIR}/staging.lock" \
'Waiting for an exclusive lock on the staging directory'
sign_packages || return 1
# Make the permissions of the packages 644 otherwise the user will get access
# denied error when they try to download (rsync --no-perms doesn't seem to
# work).
find "${WORKDIR}/staging" -type f -exec chmod 644 {} +
find "${WORKDIR}/staging" -type d -exec chmod 755 {} +
local file_list="$(mktemp -t ${0##*/}.XXXXXXXXXX)"
trap "$(printf 'rm -f -- %q' "$file_list")" EXIT
list0_files > "$file_list"
lock_close 8
msg "%s to upload" "$(cd "${WORKDIR}/staging" && du -hc --files0-from="$file_list" | sed -n '$s/\t.*//p')"
msg "Uploading packages..."
xargs -0r -a "$file_list" dirname -z | ssh ${REPODEST_port:+-p "$REPODEST_port"} "${REPODEST_userhost}" "$(printf 'mkdir -p -- %q && cd %q && xargs -0r mkdir -pv --' "${REPODEST_path}"{,})"
if ! rsync ${dryrun} "${rsync_flags[@]}" \
-e "ssh ${REPODEST_port:+-p $REPODEST_port}" \
-0 --files-from="$file_list" \
"${WORKDIR}/staging" \
"$REPODEST_userhost:$REPODEST_path/"
then
error "Sync failed, try again"
return 1
fi
clean_files "$file_list"
if $upload_only; then
return 0
fi
msg "Running db-update on repos"
ssh ${REPODEST_port:+-p "$REPODEST_port"} "${REPODEST_userhost}" "$(printf 'STAGING=%q db-update' "$REPODEST_path")"
if [[ -n $HOOKPOSTRELEASE ]]; then
msg "Running HOOKPOSTRELEASE..."
plain '%s' "${HOOKPOSTRELEASE}"
bash -c "${HOOKPOSTRELEASE}"
fi
return 0
}
main "$@"
|