init 6.52 KB
Newer Older
longpanda's avatar
longpanda committed
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
#!/ventoy/busybox/sh
#************************************************************************************
# Copyright (c) 2020, longpanda <admin@ventoy.net>
# 
# This program 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.
# 
# This program 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 this program; if not, see <http://www.gnu.org/licenses/>.
# 
#************************************************************************************


###################################################################
#                                                                  #
# Step 1 : parse kernel debug parameter                            #
#                                                                  #
####################################################################
longpanda's avatar
longpanda committed
26
[ -d /proc ] || mkdir /proc; mount -t proc proc /proc
longpanda's avatar
longpanda committed
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
vtcmdline=$(cat /proc/cmdline)
vtkerver=$(cat /proc/version)
umount /proc; rm -rf /proc

echo "kenel version=$vtkerver" >>$VTLOG
echo "kenel cmdline=$vtcmdline" >>$VTLOG

#break here for debug
if [ "$VTOY_BREAK_LEVEL" = "01" ] || [ "$VTOY_BREAK_LEVEL" = "11" ]; then
    sleep 5
    echo -e "\n\n\033[32m ################################################# \033[0m"
    echo -e "\033[32m ################ VENTOY DEBUG ################### \033[0m"
    echo -e "\033[32m ################################################# \033[0m \n"
    
    if [ "$VTOY_BREAK_LEVEL" = "11" ]; then
        cat $VTLOG
    fi
    exec $BUSYBOX_PATH/sh
fi


####################################################################
#                                                                  #
# Step 2 : extract real initramfs to /                             #
#                                                                  #
####################################################################
cd /
rm -rf /init /linuxrc /sbin /dev/  /root

ventoy_is_initrd_ramdisk() {
    #As I known, PCLinuxOS use ramdisk
    if echo $vtkerver | grep -i -q 'PCLinuxOS'; then
        true
    else
        false
    fi
}

# param: file skip magic tmp
ventoy_unpack_initramfs() {        
    vtfile=$1; vtskip=$2; vtmagic=$3; vttmp=$4    
    echo "=====ventoy_unpack_initramfs: #$*#" >> $VTLOG
    
longpanda's avatar
longpanda committed
70
71
72
73
74
75
    #special process
    #if [ "${vtmagic:0:4}" = '5678' ]; then
    #    echo -en '\x1F\x8B' | dd status=none of=$vtfile bs=1 count=2 conv=notrunc
    #    vtmagic='1F8B'
    #fi
    
longpanda's avatar
longpanda committed
76
77
78
79
    for vtx in '1F8B zcat' '1F9E zcat' '425A bzcat' '5D00 lzcat' 'FD37 xzcat' '894C lzopcat' '0221 lz4cat' '28B5 zstdcat' '3037 cat'; do
        if [ "${vtx:0:4}" = "${vtmagic:0:4}" ]; then
            echo "vtx=$vtx" >> $VTLOG            
            if [ $vtskip -eq 0 ]; then
longpanda's avatar
longpanda committed
80
                ${vtx:5} $vtfile | (cpio -idmu 2>>$VTLOG; cat > $vttmp)
longpanda's avatar
longpanda committed
81
            else
longpanda's avatar
longpanda committed
82
                dd if=$vtfile skip=$vtskip iflag=skip_bytes status=none | ${vtx:5} | (cpio -idmu 2>>$VTLOG; cat > $vttmp)
longpanda's avatar
longpanda committed
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
            fi
            break
        fi
    done
}

# param: file magic tmp
ventoy_unpack_initrd() {        
    vtfile=$1; vtmagic=$2; vttmp=$3    
    echo "=====ventoy_unpack_initrd: #$*#" >> $VTLOG
    
    for vtx in '1F8B zcat' '1F9E zcat' '425A bzcat' '5D00 lzcat' 'FD37 xzcat' '894C lzopcat' '0221 lz4cat' '28B5 zstdcat' '3037 cat'; do
        if [ "${vtx:0:4}" = "${vtmagic:0:4}" ]; then
            echo "vtx=$vtx" >> $VTLOG            
            ${vtx:5} $vtfile > $vttmp
            break
        fi
    done    
}


# This export is for busybox cpio command
export EXTRACT_UNSAFE_SYMLINKS=1

longpanda's avatar
longpanda committed
107
108
# special process
need_xzminidec() {
longpanda's avatar
longpanda committed
109
110
111
112
113
114
    if [ -e /initrd001 ]; then
        testmagic=$(hexdump -n 2 -e '2/1 "%02X"' /initrd001)
    else
        testmagic='xxxx'
    fi
    
longpanda's avatar
longpanda committed
115
116
117
118
119
    if [ "FD37" = "${testmagic:0:4}" ]; then
        if echo $vtkerver | grep -q 'kaspersky'; then
            true
        elif echo $vtkerver | grep -q 'kiosk.*Gentoo'; then
            true
longpanda's avatar
longpanda committed
120
121
        elif echo $vtkerver | grep -q 'porteus '; then
            true
longpanda's avatar
longpanda committed
122
123
124
        else
            false
        fi
longpanda's avatar
longpanda committed
125
    else
longpanda's avatar
longpanda committed
126
        false
longpanda's avatar
longpanda committed
127
    fi
longpanda's avatar
longpanda committed
128
}
longpanda's avatar
longpanda committed
129

longpanda's avatar
longpanda committed
130
131
132
133
134
135
136
137
138
139
140
141
if need_xzminidec; then
    echo "use xzminidec" >> $VTLOG
    cat /initrd001 | xzminidec | cpio -idmu 2>>$VTLOG
    rm -f /initrd001
else
    for vtfile in $(ls /initrd*); do    
        #decompress first initrd
        vtmagic=$(hexdump -n 2 -e '2/1 "%02X"' $vtfile)

        if ventoy_is_initrd_ramdisk; then
            ventoy_unpack_initrd $vtfile $vtmagic ${vtfile}_tmp
            mv ${vtfile}_tmp $vtfile
longpanda's avatar
longpanda committed
142
            break
longpanda's avatar
longpanda committed
143
144
        else
            ventoy_unpack_initramfs $vtfile 0 $vtmagic ${vtfile}_tmp
longpanda's avatar
longpanda committed
145
        fi
longpanda's avatar
longpanda committed
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160

        #only for cpio,cpio,...,initrd sequence, initrd,cpio or initrd,initrd sequence is not supported
        while [ -e ${vtfile}_tmp ] && [ $(stat -c '%s' ${vtfile}_tmp) -gt 512 ]; do
            mv ${vtfile}_tmp $vtfile
            vtdump=$(hexdump -n 512 -e '512/1 "%02X"' $vtfile)
            vtmagic=$(echo $vtdump | sed 's/^\(00\)*//')
            let vtoffset="(${#vtdump}-${#vtmagic})/2"
            
            if [ -z "$vtmagic" ]; then
                echo "terminate with all zero data file" >> $VTLOG
                break
            fi
            
            ventoy_unpack_initramfs $vtfile $vtoffset ${vtmagic:0:4} ${vtfile}_tmp
        done
longpanda's avatar
longpanda committed
161
        
longpanda's avatar
longpanda committed
162
        rm -f $vtfile ${vtfile}_tmp
longpanda's avatar
longpanda committed
163
    done
longpanda's avatar
longpanda committed
164
fi
longpanda's avatar
longpanda committed
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188

#break here for debug
if [ "$VTOY_BREAK_LEVEL" = "02" ] || [ "$VTOY_BREAK_LEVEL" = "12" ]; then
    sleep 5
    echo -e "\n\n\033[32m ################################################# \033[0m"
    echo -e "\033[32m ################ VENTOY DEBUG ################### \033[0m"
    echo -e "\033[32m ################################################# \033[0m \n"   
    if [ "$VTOY_BREAK_LEVEL" = "12" ]; then 
        cat $VTOY_PATH/log
    fi    
    exec $BUSYBOX_PATH/sh
fi


####################################################################
#                                                                  #
# Step 3 : Hand over to ventoy.sh                                  #
#                                                                  #
####################################################################
echo "Now hand over to ventoy.sh" >>$VTLOG
. $VTOY_PATH/tool/vtoytool_install.sh

export PATH=$VTOY_ORG_PATH
exec $BUSYBOX_PATH/sh $VTOY_PATH/ventoy.sh