sysupgrade: Enable killing of all processes under upgraded
[15.05/openwrt.git] / package / base-files / files / lib / upgrade / common.sh
1 #!/bin/sh
2
3 RAM_ROOT=/tmp/root
4
5 ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }
6 libs() { ldd $* | awk '{print $3}'; }
7
8 install_file() { # <file> [ <file> ... ]
9         for file in "$@"; do
10                 dest="$RAM_ROOT/$file"
11                 [ -f $file -a ! -f $dest ] && {
12                         dir="$(dirname $dest)"
13                         mkdir -p "$dir"
14                         cp $file $dest
15                 }
16         done
17 }
18
19 install_bin() { # <file> [ <symlink> ... ]
20         src=$1
21         files=$1
22         [ -x "$src" ] && files="$src $(libs $src)"
23         install_file $files
24         [ -e /lib/ld.so.1 ] && {
25                 install_file /lib/ld.so.1
26         }
27         shift
28         for link in "$@"; do {
29                 dest="$RAM_ROOT/$link"
30                 dir="$(dirname $dest)"
31                 mkdir -p "$dir"
32                 [ -f "$dest" ] || ln -s $src $dest
33         }; done
34 }
35
36 supivot() { # <new_root> <old_root>
37         /bin/mount | grep "on $1 type" 2>&- 1>&- || /bin/mount -o bind $1 $1
38         mkdir -p $1$2 $1/proc $1/sys $1/dev $1/tmp $1/overlay && \
39         /bin/mount -o noatime,move /proc $1/proc && \
40         pivot_root $1 $1$2 || {
41                 /bin/umount -l $1 $1
42                 return 1
43         }
44
45         /bin/mount -o noatime,move $2/sys /sys
46         /bin/mount -o noatime,move $2/dev /dev
47         /bin/mount -o noatime,move $2/tmp /tmp
48         /bin/mount -o noatime,move $2/overlay /overlay 2>&-
49         return 0
50 }
51
52 run_ramfs() { # <command> [...]
53         install_bin /bin/busybox /bin/ash /bin/sh /bin/mount /bin/umount        \
54                 /sbin/pivot_root /usr/bin/wget /sbin/reboot /bin/sync /bin/dd   \
55                 /bin/grep /bin/cp /bin/mv /bin/tar /usr/bin/md5sum "/usr/bin/[" \
56                 /bin/dd /bin/vi /bin/ls /bin/cat /usr/bin/awk /usr/bin/hexdump  \
57                 /bin/sleep /bin/zcat /usr/bin/bzcat /usr/bin/printf /usr/bin/wc \
58                 /bin/cut /usr/bin/printf /bin/sync /bin/mkdir /bin/rmdir        \
59                 /bin/rm /usr/bin/basename /bin/kill /bin/chmod
60
61         install_bin /sbin/mtd
62         install_bin /sbin/ubi
63         install_bin /sbin/mount_root
64         install_bin /sbin/snapshot
65         install_bin /sbin/snapshot_tool
66         install_bin /usr/sbin/ubiupdatevol
67         install_bin /usr/sbin/ubiattach
68         install_bin /usr/sbin/ubiblock
69         install_bin /usr/sbin/ubiformat
70         install_bin /usr/sbin/ubidetach
71         install_bin /usr/sbin/ubirsvol
72         install_bin /usr/sbin/ubirmvol
73         install_bin /usr/sbin/ubimkvol
74         for file in $RAMFS_COPY_BIN; do
75                 install_bin ${file//:/ }
76         done
77         install_file /etc/resolv.conf /lib/*.sh /lib/functions/*.sh /lib/upgrade/*.sh $RAMFS_COPY_DATA
78
79         [ -L "/lib64" ] && ln -s /lib $RAM_ROOT/lib64
80
81         supivot $RAM_ROOT /mnt || {
82                 echo "Failed to switch over to ramfs. Please reboot."
83                 exit 1
84         }
85
86         /bin/mount -o remount,ro /mnt
87         /bin/umount -l /mnt
88
89         grep /overlay /proc/mounts > /dev/null && {
90                 /bin/mount -o noatime,remount,ro /overlay
91                 /bin/umount -l /overlay
92         }
93
94         # spawn a new shell from ramdisk to reduce the probability of cache issues
95         exec /bin/busybox ash -c "$*"
96 }
97
98 kill_remaining() { # [ <signal> ]
99         local sig="${1:-TERM}"
100         echo -n "Sending $sig to remaining processes ... "
101
102         local my_pid=$$
103         local my_ppid=$(cut -d' ' -f4  /proc/$my_pid/stat)
104         local my_ppisupgraded=
105         grep -q upgraded /proc/$my_ppid/cmdline >/dev/null && {
106                 local my_ppisupgraded=1
107         }
108         
109         local stat
110         for stat in /proc/[0-9]*/stat; do
111                 [ -f "$stat" ] || continue
112
113                 local pid name state ppid rest
114                 read pid name state ppid rest < $stat
115                 name="${name#(}"; name="${name%)}"
116
117                 local cmdline
118                 read cmdline < /proc/$pid/cmdline
119
120                 # Skip kernel threads
121                 [ -n "$cmdline" ] || continue
122
123                 if [ $$ -eq 1 ] || [ $my_ppid -eq 1 ] && [ -n "$my_ppisupgraded" ]; then
124                         # Running as init process, kill everything except me
125                         if [ $pid -ne $$ ] && [ $pid -ne $my_ppid ]; then
126                                 echo -n "$name "
127                                 kill -$sig $pid 2>/dev/null
128                         fi
129                 else 
130                         case "$name" in
131                                 # Skip essential services
132                                 *procd*|*ash*|*init*|*watchdog*|*ssh*|*dropbear*|*telnet*|*login*|*hostapd*|*wpa_supplicant*|*nas*) : ;;
133
134                                 # Killable process
135                                 *)
136                                         if [ $pid -ne $$ ] && [ $ppid -ne $$ ]; then
137                                                 echo -n "$name "
138                                                 kill -$sig $pid 2>/dev/null
139                                         fi
140                                 ;;
141                         esac
142                 fi
143         done
144         echo ""
145 }
146
147 run_hooks() {
148         local arg="$1"; shift
149         for func in "$@"; do
150                 eval "$func $arg"
151         done
152 }
153
154 ask_bool() {
155         local default="$1"; shift;
156         local answer="$default"
157
158         [ "$INTERACTIVE" -eq 1 ] && {
159                 case "$default" in
160                         0) echo -n "$* (y/N): ";;
161                         *) echo -n "$* (Y/n): ";;
162                 esac
163                 read answer
164                 case "$answer" in
165                         y*) answer=1;;
166                         n*) answer=0;;
167                         *) answer="$default";;
168                 esac
169         }
170         [ "$answer" -gt 0 ]
171 }
172
173 v() {
174         [ "$VERBOSE" -ge 1 ] && echo "$@"
175 }
176
177 rootfs_type() {
178         /bin/mount | awk '($3 ~ /^\/$/) && ($5 !~ /rootfs/) { print $5 }'
179 }
180
181 get_image() { # <source> [ <command> ]
182         local from="$1"
183         local conc="$2"
184         local cmd
185
186         case "$from" in
187                 http://*|ftp://*) cmd="wget -O- -q";;
188                 *) cmd="cat";;
189         esac
190         if [ -z "$conc" ]; then
191                 local magic="$(eval $cmd $from 2>/dev/null | dd bs=2 count=1 2>/dev/null | hexdump -n 2 -e '1/1 "%02x"')"
192                 case "$magic" in
193                         1f8b) conc="zcat";;
194                         425a) conc="bzcat";;
195                 esac
196         fi
197
198         eval "$cmd $from 2>/dev/null ${conc:+| $conc}"
199 }
200
201 get_magic_word() {
202         (get_image "$@" | dd bs=2 count=1 | hexdump -v -n 2 -e '1/1 "%02x"') 2>/dev/null
203 }
204
205 get_magic_long() {
206         (get_image "$@" | dd bs=4 count=1 | hexdump -v -n 4 -e '1/1 "%02x"') 2>/dev/null
207 }
208
209 jffs2_copy_config() {
210         if grep rootfs_data /proc/mtd >/dev/null; then
211                 # squashfs+jffs2
212                 mtd -e rootfs_data jffs2write "$CONF_TAR" rootfs_data
213         else
214                 # jffs2
215                 mtd jffs2write "$CONF_TAR" rootfs
216         fi
217 }
218
219 default_do_upgrade() {
220         sync
221         if [ "$SAVE_CONFIG" -eq 1 ]; then
222                 get_image "$1" | mtd $MTD_CONFIG_ARGS -j "$CONF_TAR" write - "${PART_NAME:-image}"
223         else
224                 get_image "$1" | mtd write - "${PART_NAME:-image}"
225         fi
226 }
227
228 do_upgrade() {
229         v "Performing system upgrade..."
230         if type 'platform_do_upgrade' >/dev/null 2>/dev/null; then
231                 platform_do_upgrade "$ARGV"
232         else
233                 default_do_upgrade "$ARGV"
234         fi
235
236         if [ "$SAVE_CONFIG" -eq 1 ] && type 'platform_copy_config' >/dev/null 2>/dev/null; then
237                 platform_copy_config
238         fi
239
240         v "Upgrade completed"
241         [ -n "$DELAY" ] && sleep "$DELAY"
242         ask_bool 1 "Reboot" && {
243                 v "Rebooting system..."
244                 reboot -f
245                 sleep 5
246                 echo b 2>/dev/null >/proc/sysrq-trigger
247         }
248 }