base-files: fix issues in nand sysupgrade
[openwrt/staging/wigyori.git] / package / base-files / files / lib / upgrade / nand.sh
1 # Copyright (C) 2014 OpenWrt.org
2 #
3
4 . /lib/functions.sh
5
6 # 'kernel' partition or UBI volume on NAND contains the kernel
7 CI_KERNPART="${CI_KERNPART:-kernel}"
8
9 # 'ubi' partition on NAND contains UBI
10 CI_UBIPART="${CI_UBIPART:-ubi}"
11
12 # 'rootfs' UBI volume on NAND contains the rootfs
13 CI_ROOTPART="${CI_ROOTPART:-rootfs}"
14
15 ubi_mknod() {
16 local dir="$1"
17 local dev="/dev/$(basename $dir)"
18
19 [ -e "$dev" ] && return 0
20
21 local devid="$(cat $dir/dev)"
22 local major="${devid%%:*}"
23 local minor="${devid##*:}"
24 mknod "$dev" c $major $minor
25 }
26
27 nand_find_volume() {
28 local ubidevdir ubivoldir
29 ubidevdir="/sys/devices/virtual/ubi/$1"
30 [ ! -d "$ubidevdir" ] && return 1
31 for ubivoldir in $ubidevdir/${1}_*; do
32 [ ! -d "$ubivoldir" ] && continue
33 if [ "$( cat $ubivoldir/name )" = "$2" ]; then
34 basename $ubivoldir
35 ubi_mknod "$ubivoldir"
36 return 0
37 fi
38 done
39 }
40
41 nand_find_ubi() {
42 local ubidevdir ubidev mtdnum
43 mtdnum="$( find_mtd_index $1 )"
44 [ ! "$mtdnum" ] && return 1
45 for ubidevdir in /sys/devices/virtual/ubi/ubi*; do
46 [ ! -d "$ubidevdir" ] && continue
47 cmtdnum="$( cat $ubidevdir/mtd_num )"
48 [ ! "$mtdnum" ] && continue
49 if [ "$mtdnum" = "$cmtdnum" ]; then
50 ubidev=$( basename $ubidevdir )
51 ubi_mknod "$ubidevdir"
52 echo $ubidev
53 return 0
54 fi
55 done
56 }
57
58 nand_get_magic_long() {
59 dd if="$1" skip=$2 bs=4 count=1 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"'
60 }
61
62 get_magic_long_tar() {
63 ( tar xf $1 $2 -O | dd bs=4 count=1 | hexdump -v -n 4 -e '1/1 "%02x"') 2> /dev/null
64 }
65
66 identify_magic() {
67 local magic=$1
68 case "$magic" in
69 "55424923")
70 echo "ubi"
71 ;;
72 "31181006")
73 echo "ubifs"
74 ;;
75 "68737173")
76 echo "squashfs"
77 ;;
78 "d00dfeed")
79 echo "fit"
80 ;;
81 "4349"*)
82 echo "combined"
83 ;;
84 *)
85 echo "unknown $magic"
86 ;;
87 esac
88 }
89
90
91 identify() {
92 identify_magic $(nand_get_magic_long "$1" "${2:-0}")
93 }
94
95 identify_tar() {
96 identify_magic $(get_magic_long_tar "$1" "$2")
97 }
98
99 nand_restore_config() {
100 local ubidev=$( nand_find_ubi "$CI_UBIPART" )
101 local ubivol="$( nand_find_volume $ubidev rootfs_data )"
102 if [ ! "$ubivol" ]; then
103 ubivol="$( nand_find_volume $ubidev "$CI_ROOTPART" )"
104 if [ ! "$ubivol" ]; then
105 echo "cannot find ubifs data volume"
106 return 1
107 fi
108 fi
109 mkdir /tmp/new_root
110 if ! mount -t ubifs /dev/$ubivol /tmp/new_root; then
111 echo "cannot mount ubifs volume $ubivol"
112 rmdir /tmp/new_root
113 return 1
114 fi
115 if mv "$1" "/tmp/new_root/$BACKUP_FILE"; then
116 if umount /tmp/new_root; then
117 echo "configuration saved"
118 rmdir /tmp/new_root
119 return 0
120 fi
121 else
122 umount /tmp/new_root
123 fi
124 echo "could not save configuration to ubifs volume $ubivol"
125 rmdir /tmp/new_root
126 return 1
127 }
128
129 nand_remove_ubiblock() {
130 local ubivol=$1
131 local ubiblk=ubiblock${ubivol:3}
132 if [ -e /dev/$ubiblk ]; then
133 echo "removing $ubiblk"
134 if ! ubiblock -r /dev/$ubivol; then
135 echo "cannot remove $ubiblk"
136 return 1
137 fi
138 fi
139 }
140
141 nand_upgrade_prepare_ubi() {
142 local rootfs_length="$1"
143 local rootfs_type="$2"
144 local rootfs_data_max="$(fw_printenv -n rootfs_data_max 2>/dev/null)"
145 [ -n "$rootfs_data_max" ] && rootfs_data_max=$((rootfs_data_max))
146
147 local kernel_length="$3"
148 local has_env="${4:-0}"
149
150 [ -n "$rootfs_length" -o -n "$kernel_length" ] || return 1
151
152 local mtdnum="$( find_mtd_index "$CI_UBIPART" )"
153 if [ ! "$mtdnum" ]; then
154 echo "cannot find ubi mtd partition $CI_UBIPART"
155 return 1
156 fi
157
158 local ubidev="$( nand_find_ubi "$CI_UBIPART" )"
159 if [ ! "$ubidev" ]; then
160 ubiattach -m "$mtdnum"
161 sync
162 ubidev="$( nand_find_ubi "$CI_UBIPART" )"
163
164 if [ ! "$ubidev" ]; then
165 ubiformat /dev/mtd$mtdnum -y
166 ubiattach -m "$mtdnum"
167 sync
168 ubidev="$( nand_find_ubi "$CI_UBIPART" )"
169
170 if [ ! "$ubidev" ]; then
171 echo "cannot attach ubi mtd partition $CI_UBIPART"
172 return 1
173 fi
174
175 if [ "$has_env" -gt 0 ]; then
176 ubimkvol /dev/$ubidev -n 0 -N ubootenv -s 1MiB
177 ubimkvol /dev/$ubidev -n 1 -N ubootenv2 -s 1MiB
178 fi
179 fi
180 fi
181
182 local kern_ubivol="$( nand_find_volume $ubidev "$CI_KERNPART" )"
183 local root_ubivol="$( nand_find_volume $ubidev "$CI_ROOTPART" )"
184 local data_ubivol="$( nand_find_volume $ubidev rootfs_data )"
185 [ "$root_ubivol" = "$kern_ubivol" ] && root_ubivol=
186
187 # remove ubiblocks
188 [ "$kern_ubivol" ] && { nand_remove_ubiblock $kern_ubivol || return 1; }
189 [ "$root_ubivol" ] && { nand_remove_ubiblock $root_ubivol || return 1; }
190 [ "$data_ubivol" ] && { nand_remove_ubiblock $data_ubivol || return 1; }
191
192 # kill volumes
193 [ "$kern_ubivol" ] && ubirmvol /dev/$ubidev -N "$CI_KERNPART" || :
194 [ "$root_ubivol" ] && ubirmvol /dev/$ubidev -N "$CI_ROOTPART" || :
195 [ "$data_ubivol" ] && ubirmvol /dev/$ubidev -N rootfs_data || :
196
197 # create kernel vol
198 if [ -n "$kernel_length" ]; then
199 if ! ubimkvol /dev/$ubidev -N "$CI_KERNPART" -s $kernel_length; then
200 echo "cannot create kernel volume"
201 return 1;
202 fi
203 fi
204
205 # create rootfs vol
206 if [ -n "$rootfs_length" ]; then
207 local rootfs_size_param
208 if [ "$rootfs_type" = "ubifs" ]; then
209 rootfs_size_param="-m"
210 else
211 rootfs_size_param="-s $rootfs_length"
212 fi
213 if ! ubimkvol /dev/$ubidev -N "$CI_ROOTPART" $rootfs_size_param; then
214 echo "cannot create rootfs volume"
215 return 1;
216 fi
217 fi
218
219 # create rootfs_data vol for non-ubifs rootfs
220 if [ "$rootfs_type" != "ubifs" ]; then
221 local rootfs_data_size_param="-m"
222 if [ -n "$rootfs_data_max" ]; then
223 rootfs_data_size_param="-s $rootfs_data_max"
224 fi
225 if ! ubimkvol /dev/$ubidev -N rootfs_data $rootfs_data_size_param; then
226 if ! ubimkvol /dev/$ubidev -N rootfs_data -m; then
227 echo "cannot initialize rootfs_data volume"
228 return 1
229 fi
230 fi
231 fi
232 sync
233 return 0
234 }
235
236 nand_do_upgrade_success() {
237 local conf_tar="/tmp/sysupgrade.tgz"
238 if { [ ! -f "$conf_tar" ] || nand_restore_config "$conf_tar"; } && sync; then
239 echo "sysupgrade successful"
240 fi
241 umount -a
242 reboot -f
243 }
244
245 # Flash the UBI image to MTD partition
246 nand_upgrade_ubinized() {
247 local ubi_file="$1"
248 local mtdnum="$(find_mtd_index "$CI_UBIPART")"
249
250 if [ ! "$mtdnum" ]; then
251 echo "cannot find mtd device $CI_UBIPART"
252 umount -a
253 reboot -f
254 fi
255
256 local mtddev="/dev/mtd${mtdnum}"
257 ubidetach -p "${mtddev}" || :
258 sync
259 ubiformat "${mtddev}" -y -f "${ubi_file}"
260 ubiattach -p "${mtddev}"
261
262 nand_do_upgrade_success
263 }
264
265 # Write the UBIFS image to UBI volume
266 nand_upgrade_ubifs() {
267 local rootfs_length=$( (cat $1 | wc -c) 2> /dev/null)
268
269 nand_upgrade_prepare_ubi "$rootfs_length" "ubifs" "" ""
270
271 local ubidev="$( nand_find_ubi "$CI_UBIPART" )"
272 local root_ubivol="$(nand_find_volume $ubidev "$CI_ROOTPART")"
273 ubiupdatevol /dev/$root_ubivol -s $rootfs_length $1
274
275 nand_do_upgrade_success
276 }
277
278 nand_upgrade_fit() {
279 local fit_file="$1"
280 local fit_length="$(wc -c < "$fit_file")"
281
282 nand_upgrade_prepare_ubi "" "" "$fit_length" "1"
283
284 local fit_ubidev="$(nand_find_ubi "$CI_UBIPART")"
285 local fit_ubivol="$(nand_find_volume $fit_ubidev "$CI_KERNPART")"
286 ubiupdatevol /dev/$fit_ubivol -s $fit_length $fit_file
287
288 nand_do_upgrade_success
289 }
290
291 nand_upgrade_tar() {
292 local tar_file="$1"
293
294 local board_dir="$(tar tf "$tar_file" | grep -m 1 '^sysupgrade-.*/$')"
295 board_dir="${board_dir%/}"
296
297 local kernel_mtd kernel_length
298 if [ "$CI_KERNPART" != "none" ]; then
299 kernel_mtd="$(find_mtd_index "$CI_KERNPART")"
300 kernel_length=$( (tar xf "$tar_file" "$board_dir/kernel" -O | wc -c) 2> /dev/null)
301 [ "$kernel_length" = 0 ] && kernel_length=
302 fi
303 local rootfs_length=$( (tar xf "$tar_file" "$board_dir/root" -O | wc -c) 2> /dev/null)
304 [ "$rootfs_length" = 0 ] && rootfs_length=
305 local rootfs_type
306 [ "$rootfs_length" ] && rootfs_type="$(identify_tar "$tar_file" "$board_dir/root")"
307
308 local ubi_kernel_length
309 if [ "$kernel_length" ]; then
310 if [ "$kernel_mtd" ]; then
311 mtd erase "$CI_KERNPART"
312 else
313 ubi_kernel_length="$kernel_length"
314 fi
315 fi
316 local has_env=0
317 nand_upgrade_prepare_ubi "$rootfs_length" "$rootfs_type" "$ubi_kernel_length" "$has_env"
318
319 local ubidev="$( nand_find_ubi "$CI_UBIPART" )"
320 if [ "$rootfs_length" ]; then
321 local root_ubivol="$( nand_find_volume $ubidev "$CI_ROOTPART" )"
322 tar xf "$tar_file" "$board_dir/root" -O | \
323 ubiupdatevol /dev/$root_ubivol -s $rootfs_length -
324 fi
325 if [ "$kernel_length" ]; then
326 if [ "$kernel_mtd" ]; then
327 tar xf "$tar_file" "$board_dir/kernel" -O | \
328 mtd -n write - "$CI_KERNPART"
329 else
330 local kern_ubivol="$( nand_find_volume $ubidev "$CI_KERNPART" )"
331 tar xf "$tar_file" "$board_dir/kernel" -O | \
332 ubiupdatevol /dev/$kern_ubivol -s $kernel_length -
333 fi
334 fi
335
336 nand_do_upgrade_success
337 }
338
339 # Recognize type of passed file and start the upgrade process
340 nand_do_upgrade() {
341 local file_type=$(identify $1)
342
343 [ ! "$(find_mtd_index "$CI_UBIPART")" ] && CI_UBIPART=rootfs
344
345 case "$file_type" in
346 "fit") nand_upgrade_fit $1;;
347 "ubi") nand_upgrade_ubinized $1;;
348 "ubifs") nand_upgrade_ubifs $1;;
349 *) nand_upgrade_tar $1;;
350 esac
351 }
352
353 # Check if passed file is a valid one for NAND sysupgrade. Currently it accepts
354 # 3 types of files:
355 # 1) UBI - should contain an ubinized image, header is checked for the proper
356 # MAGIC
357 # 2) UBIFS - should contain UBIFS partition that will replace "rootfs" volume,
358 # header is checked for the proper MAGIC
359 # 3) TAR - archive has to include "sysupgrade-BOARD" directory with a non-empty
360 # "CONTROL" file (at this point its content isn't verified)
361 #
362 # You usually want to call this function in platform_check_image.
363 #
364 # $(1): board name, used in case of passing TAR file
365 # $(2): file to be checked
366 nand_do_platform_check() {
367 local board_name="$1"
368 local tar_file="$2"
369 local control_length=$( (tar xf $tar_file sysupgrade-$board_name/CONTROL -O | wc -c) 2> /dev/null)
370 local file_type="$(identify $2)"
371
372 [ "$control_length" = 0 -a "$file_type" != "ubi" -a "$file_type" != "ubifs" -a "$file_type" != "fit" ] && {
373 echo "Invalid sysupgrade file."
374 return 1
375 }
376
377 return 0
378 }