base-files: sysupgrade: use tar helper to include installed_packages.txt
[openwrt/openwrt.git] / package / base-files / files / sbin / sysupgrade
1 #!/bin/sh
2
3 . /lib/functions.sh
4 . /lib/functions/system.sh
5 . /usr/share/libubox/jshn.sh
6
7 # File-local constants
8 CONF_TAR=/tmp/sysupgrade.tgz
9 ETCBACKUP_DIR=/etc/backup
10 INSTALLED_PACKAGES=${ETCBACKUP_DIR}/installed_packages.txt
11 COMMAND=/lib/upgrade/do_stage2
12
13 # File-local globals
14 SAVE_OVERLAY=0
15 SAVE_OVERLAY_PATH=
16 SAVE_PARTITIONS=1
17 SAVE_INSTALLED_PKGS=0
18 SKIP_UNCHANGED=0
19 CONF_IMAGE=
20 CONF_BACKUP_LIST=0
21 CONF_BACKUP=
22 CONF_RESTORE=
23 NEED_IMAGE=
24 HELP=0
25 TEST=0
26
27 # Globals accessed in other files
28 export MTD_ARGS=""
29 export MTD_CONFIG_ARGS=""
30 export INTERACTIVE=0
31 export VERBOSE=1
32 export SAVE_CONFIG=1
33 export IGNORE_MINOR_COMPAT=0
34 export FORCE=0
35 export CONFFILES=/tmp/sysupgrade.conffiles
36
37 # parse options
38 while [ -n "$1" ]; do
39 case "$1" in
40 -i) export INTERACTIVE=1;;
41 -v) export VERBOSE="$(($VERBOSE + 1))";;
42 -q) export VERBOSE="$(($VERBOSE - 1))";;
43 -n) export SAVE_CONFIG=0;;
44 -c) SAVE_OVERLAY=1 SAVE_OVERLAY_PATH=/etc;;
45 -o) SAVE_OVERLAY=1 SAVE_OVERLAY_PATH=/;;
46 -p) SAVE_PARTITIONS=0;;
47 -k) SAVE_INSTALLED_PKGS=1;;
48 -u) SKIP_UNCHANGED=1;;
49 -b|--create-backup) CONF_BACKUP="$2" NEED_IMAGE=1; shift;;
50 -r|--restore-backup) CONF_RESTORE="$2" NEED_IMAGE=1; shift;;
51 -l|--list-backup) CONF_BACKUP_LIST=1;;
52 -f) CONF_IMAGE="$2"; shift;;
53 -F|--force) export FORCE=1;;
54 -T|--test) TEST=1;;
55 -h|--help) HELP=1; break;;
56 --ignore-minor-compat-version) export IGNORE_MINOR_COMPAT=1;;
57 -*)
58 echo "Invalid option: $1" >&2
59 exit 1
60 ;;
61 *) break;;
62 esac
63 shift;
64 done
65
66 print_help() {
67 cat <<EOF
68 Usage: $0 [<upgrade-option>...] <image file or URL>
69 $0 [-q] [-i] [-c] [-u] [-o] [-k] <backup-command> <file>
70
71 upgrade-option:
72 -f <config> restore configuration from .tar.gz (file or url)
73 -i interactive mode
74 -c attempt to preserve all changed files in /etc/
75 -o attempt to preserve all changed files in /, except those
76 from packages but including changed confs.
77 -u skip from backup files that are equal to those in /rom
78 -n do not save configuration over reflash
79 -p do not attempt to restore the partition table after flash.
80 -k include in backup a list of current installed packages at
81 $INSTALLED_PACKAGES
82 -T | --test
83 Verify image and config .tar.gz but do not actually flash.
84 -F | --force
85 Flash image even if image checks fail, this is dangerous!
86 --ignore-minor-compat-version
87 Flash image even if the minor compat version is incompatible.
88 -q less verbose
89 -v more verbose
90 -h | --help display this help
91
92 backup-command:
93 -b | --create-backup <file>
94 create .tar.gz of files specified in sysupgrade.conf
95 then exit. Does not flash an image. If file is '-',
96 i.e. stdout, verbosity is set to 0 (i.e. quiet).
97 -r | --restore-backup <file>
98 restore a .tar.gz created with sysupgrade -b
99 then exit. Does not flash an image. If file is '-',
100 the archive is read from stdin.
101 -l | --list-backup
102 list the files that would be backed up when calling
103 sysupgrade -b. Does not create a backup file.
104
105 EOF
106 }
107
108 IMAGE="$1"
109
110 if [ $HELP -gt 0 ]; then
111 print_help
112 exit 0
113 fi
114
115 if [ -z "$IMAGE" -a -z "$NEED_IMAGE" -a $CONF_BACKUP_LIST -eq 0 ]; then
116 print_help
117 exit 1
118 fi
119
120 [ -n "$IMAGE" -a -n "$NEED_IMAGE" ] && {
121 cat <<-EOF
122 -b|--create-backup and -r|--restore-backup do not perform a firmware upgrade.
123 Do not specify both -b|-r and a firmware image.
124 EOF
125 exit 1
126 }
127
128 # prevent messages from clobbering the tarball when using stdout
129 [ "$CONF_BACKUP" = "-" ] && export VERBOSE=0
130
131
132 list_conffiles() {
133 awk '
134 BEGIN { conffiles = 0 }
135 /^Conffiles:/ { conffiles = 1; next }
136 !/^ / { conffiles = 0; next }
137 conffiles == 1 { print }
138 ' /usr/lib/opkg/status
139 }
140
141 list_changed_conffiles() {
142 # Cannot handle spaces in filenames - but opkg cannot either...
143 list_conffiles | while read file csum; do
144 [ -r "$file" ] || continue
145
146 echo "${csum} ${file}" | busybox sha256sum -sc - || echo "$file"
147 done
148 }
149
150 list_static_conffiles() {
151 local filter=$1
152
153 find $(sed -ne '/^[[:space:]]*$/d; /^#/d; p' \
154 /etc/sysupgrade.conf /lib/upgrade/keep.d/* 2>/dev/null) \
155 \( -type f -o -type l \) $filter 2>/dev/null
156 }
157
158 build_list_of_backup_config_files() {
159 local file="$1"
160
161 ( list_static_conffiles "$find_filter"; list_changed_conffiles ) |
162 sort -u > "$file"
163 return 0
164 }
165
166 build_list_of_backup_overlay_files() {
167 local file="$1"
168
169 local packagesfiles=$1.packagesfiles
170 touch "$packagesfiles"
171
172 if [ "$SAVE_OVERLAY_PATH" = / ]; then
173 local conffiles=$1.conffiles
174 local keepfiles=$1.keepfiles
175
176 list_conffiles | cut -f2 -d ' ' | sort -u > "$conffiles"
177
178 # backup files from /etc/sysupgrade.conf and /lib/upgrade/keep.d, but
179 # ignore those aready controlled by opkg conffiles
180 list_static_conffiles | sort -u |
181 grep -h -v -x -F -f $conffiles > "$keepfiles"
182
183 # backup conffiles, but only those changed if '-u'
184 [ $SKIP_UNCHANGED = 1 ] &&
185 list_changed_conffiles | sort -u > "$conffiles"
186
187 # do not backup files from packages, except those listed
188 # in conffiles and keep.d
189 {
190 find /usr/lib/opkg/info -type f -name "*.list" -exec cat {} \;
191 find /usr/lib/opkg/info -type f -name "*.control" -exec sed \
192 -ne '/^Alternatives/{s/^Alternatives: //;s/, /\n/g;p}' {} \; |
193 cut -f2 -d:
194 } | grep -v -x -F -f $conffiles |
195 grep -v -x -F -f $keepfiles | sort -u > "$packagesfiles"
196 rm -f "$keepfiles" "$conffiles"
197 fi
198
199 # busybox grep bug when file is empty
200 [ -s "$packagesfiles" ] || echo > $packagesfiles
201
202 ( cd /overlay/upper/; find .$SAVE_OVERLAY_PATH \( -type f -o -type l \) $find_filter | sed \
203 -e 's,^\.,,' \
204 -e '\,^/etc/board.json$,d' \
205 -e '\,/[^/]*-opkg$,d' \
206 -e '\,^/etc/urandom.seed$,d' \
207 -e "\,^$INSTALLED_PACKAGES$,d" \
208 -e '\,^/usr/lib/opkg/.*,d' \
209 ) | grep -v -x -F -f $packagesfiles > "$file"
210
211 rm -f "$packagesfiles"
212
213 return 0
214 }
215
216 if [ $SAVE_OVERLAY = 1 ]; then
217 [ ! -d /overlay/upper/etc ] && {
218 echo "Cannot find '/overlay/upper/etc', required for '-c' or '-o'" >&2
219 exit 1
220 }
221 sysupgrade_init_conffiles="build_list_of_backup_overlay_files"
222 else
223 sysupgrade_init_conffiles="build_list_of_backup_config_files"
224 fi
225
226 find_filter=""
227 if [ $SKIP_UNCHANGED = 1 ]; then
228 [ ! -d /rom/ ] && {
229 echo "'/rom/' is required by '-u'"
230 exit 1
231 }
232 find_filter='( ( -exec test -e /rom/{} ; -exec cmp -s /{} /rom/{} ; ) -o -print )'
233 fi
234
235 include /lib/upgrade
236
237 create_backup_archive() {
238 local conf_tar="$1"
239
240 [ "$(rootfs_type)" = "tmpfs" ] && {
241 echo "Cannot save config while running from ramdisk." >&2
242 ask_bool 0 "Abort" && exit
243 rm -f "$conf_tar"
244 return 0
245 }
246 run_hooks "$CONFFILES" $sysupgrade_init_conffiles
247 ask_bool 0 "Edit config file list" && vi "$CONFFILES"
248
249 v "Saving config files..."
250 [ "$VERBOSE" -gt 1 ] && TAR_V="v" || TAR_V=""
251 sed -i -e 's,^/,,' "$CONFFILES"
252 {
253 # Part of archive with installed packages info
254 if [ "$SAVE_INSTALLED_PKGS" -eq 1 ]; then
255 # Format: pkg-name<TAB>{rom,overlay,unknown}
256 # rom is used for pkgs in /rom, even if updated later
257 tar_print_member "$INSTALLED_PACKAGES" "$(find /usr/lib/opkg/info -name "*.control" \( \
258 \( -exec test -f /rom/{} \; -exec echo {} rom \; \) -o \
259 \( -exec test -f /overlay/upper/{} \; -exec echo {} overlay \; \) -o \
260 \( -exec echo {} unknown \; \) \
261 \) | sed -e 's,.*/,,;s/\.control /\t/')"
262 fi
263
264 # Rest of archive with config files and ending padding
265 tar c${TAR_V} -C / -T "$CONFFILES"
266 } | gzip > "$conf_tar"
267
268 local err=$?
269 if [ "$err" -ne 0 ]; then
270 echo "Failed to create the configuration backup."
271 rm -f "$conf_tar"
272 fi
273
274 rm -f "$CONFFILES"
275
276 return "$err"
277 }
278
279 if [ $CONF_BACKUP_LIST -eq 1 ]; then
280 run_hooks "$CONFFILES" $sysupgrade_init_conffiles
281 [ "$SAVE_INSTALLED_PKGS" -eq 1 ] && echo ${INSTALLED_PACKAGES} >> "$CONFFILES"
282 cat "$CONFFILES"
283 rm -f "$CONFFILES"
284 exit 0
285 fi
286
287 if [ -n "$CONF_BACKUP" ]; then
288 create_backup_archive "$CONF_BACKUP"
289 exit
290 fi
291
292 if [ -n "$CONF_RESTORE" ]; then
293 if [ "$CONF_RESTORE" != "-" ] && [ ! -f "$CONF_RESTORE" ]; then
294 echo "Backup archive '$CONF_RESTORE' not found." >&2
295 exit 1
296 fi
297
298 [ "$VERBOSE" -gt 1 ] && TAR_V="v" || TAR_V=""
299 v "Restoring config files..."
300 tar -C / -x${TAR_V}zf "$CONF_RESTORE"
301 exit $?
302 fi
303
304 type platform_check_image >/dev/null 2>/dev/null || {
305 echo "Firmware upgrade is not implemented for this platform." >&2
306 exit 1
307 }
308
309 case "$IMAGE" in
310 http://*|\
311 https://*)
312 wget -O/tmp/sysupgrade.img "$IMAGE" || exit 1
313 IMAGE=/tmp/sysupgrade.img
314 ;;
315 esac
316
317 IMAGE="$(readlink -f "$IMAGE")"
318
319 case "$IMAGE" in
320 '')
321 echo "Image file not found." >&2
322 exit 1
323 ;;
324 /tmp/*) ;;
325 *)
326 v "Image not in /tmp, copying..."
327 cp -f "$IMAGE" /tmp/sysupgrade.img
328 IMAGE=/tmp/sysupgrade.img
329 ;;
330 esac
331
332 json_load "$(/usr/libexec/validate_firmware_image "$IMAGE")" || {
333 echo "Failed to check image"
334 exit 1
335 }
336 json_get_var valid "valid"
337 [ "$valid" -eq 0 ] && {
338 if [ $FORCE -eq 1 ]; then
339 echo "Image check failed but --force given - will update anyway!" >&2
340 else
341 echo "Image check failed." >&2
342 exit 1
343 fi
344 }
345
346 if [ -n "$CONF_IMAGE" ]; then
347 case "$(get_magic_word $CONF_IMAGE cat)" in
348 # .gz files
349 1f8b) ;;
350 *)
351 echo "Invalid config file. Please use only .tar.gz files" >&2
352 exit 1
353 ;;
354 esac
355 get_image "$CONF_IMAGE" "cat" > "$CONF_TAR"
356 export SAVE_CONFIG=1
357 elif ask_bool $SAVE_CONFIG "Keep config files over reflash"; then
358 [ $TEST -eq 1 ] || create_backup_archive "$CONF_TAR" || exit
359 export SAVE_CONFIG=1
360 else
361 [ $TEST -eq 1 ] || rm -f "$CONF_TAR"
362 export SAVE_CONFIG=0
363 fi
364
365 if [ $TEST -eq 1 ]; then
366 exit 0
367 fi
368
369 install_bin /sbin/upgraded
370 v "Commencing upgrade. Closing all shell sessions."
371
372 if [ -n "$FAILSAFE" ]; then
373 printf '%s\x00%s\x00%s' "$RAM_ROOT" "$IMAGE" "$COMMAND" >/tmp/sysupgrade
374 lock -u /tmp/.failsafe
375 else
376 json_init
377 json_add_string prefix "$RAM_ROOT"
378 json_add_string path "$IMAGE"
379 [ $FORCE -eq 1 ] && json_add_boolean force 1
380 [ $SAVE_CONFIG -eq 1 ] && json_add_string backup "$CONF_TAR"
381 json_add_string command "$COMMAND"
382 json_add_object options
383 json_add_int save_partitions "$SAVE_PARTITIONS"
384 json_close_object
385
386 ubus call system sysupgrade "$(json_dump)"
387 fi