VentoyWorker.sh 14.7 KB
Newer Older
1
2
3
4
5
#!/bin/sh

. ./tool/ventoy_lib.sh

print_usage() {
longpanda's avatar
longpanda committed
6
    
7
8
    echo 'Usage:  Ventoy2Disk.sh CMD [ OPTION ] /dev/sdX'
    echo '  CMD:'
9
10
11
    echo '   -i  install Ventoy to sdX (fails if disk already installed with Ventoy)'
    echo '   -I  force install Ventoy to sdX (no matter installed or not)'
    echo '   -u  update Ventoy in sdX'
longpanda's avatar
longpanda committed
12
    echo '   -l  list Ventoy information in sdX'
13
14
    echo ''
    echo '  OPTION: (optional)'
longpanda's avatar
longpanda committed
15
    echo '   -r SIZE_MB  preserve some space at the bottom of the disk (only for install)'
longpanda's avatar
longpanda committed
16
    echo '   -s/-S       enable/disable secure boot support (default is disabled)'
longpanda's avatar
longpanda committed
17
    echo '   -g          use GPT partition style, default is MBR (only for install)'
18
    echo '   -L          Label of the 1st exfat partition (default is Ventoy)'
19
20
21
    echo ''
}

longpanda's avatar
longpanda committed
22

23
VTNEW_LABEL='Ventoy'
longpanda's avatar
longpanda committed
24
RESERVE_SIZE_MB=0
25
26
27
28
29
30
31
32
while [ -n "$1" ]; do
    if [ "$1" = "-i" ]; then
        MODE="install"
    elif [ "$1" = "-I" ]; then
        MODE="install"
        FORCE="Y"
    elif [ "$1" = "-u" ]; then
        MODE="update"
longpanda's avatar
longpanda committed
33
34
    elif [ "$1" = "-l" ]; then
        MODE="list"
35
36
    elif [ "$1" = "-s" ]; then
        SECUREBOOT="YES"
longpanda's avatar
longpanda committed
37
38
    elif [ "$1" = "-S" ]; then
        SECUREBOOT="NO"
longpanda's avatar
longpanda committed
39
40
    elif [ "$1" = "-g" ]; then
        VTGPT="YES"
longpanda's avatar
longpanda committed
41
42
43
    elif [ "$1" = "-L" ]; then
        shift
        VTNEW_LABEL=$1
longpanda's avatar
longpanda committed
44
45
46
47
    elif [ "$1" = "-r" ]; then
        RESERVE_SPACE="YES"
        shift
        RESERVE_SIZE_MB=$1
longpanda's avatar
longpanda committed
48
49
    elif [ "$1" = "-V" ] || [ "$1" = "--version" ]; then
        exit 0
longpanda's avatar
longpanda committed
50
    elif [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
longpanda's avatar
longpanda committed
51
52
        print_usage
        exit 0
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
    else
        if ! [ -b "$1" ]; then
            vterr "$1 is NOT a valid device"
            print_usage
            exit 1
        fi
        DISK=$1
    fi
    
    shift
done

if [ -z "$MODE" ]; then
    print_usage
    exit 1
fi

if ! [ -b "$DISK" ]; then
    vterr "Disk $DISK does not exist"
    exit 1
fi

if [ -e /sys/class/block/${DISK#/dev/}/start ]; then
longpanda's avatar
longpanda committed
76
77
    vterr  "$DISK is a partition, please use the whole disk."
    echo   "For example:"
longpanda's avatar
longpanda committed
78
79
    vterr  "    sudo sh Ventoy2Disk.sh -i /dev/sdb1 <=== This is wrong"
    vtinfo "    sudo sh Ventoy2Disk.sh -i /dev/sdb  <=== This is right"
longpanda's avatar
longpanda committed
80
    echo ""
81
82
83
    exit 1
fi

longpanda's avatar
longpanda committed
84
if [ -n "$RESERVE_SPACE" -a "$MODE" = "install" ]; then
longpanda's avatar
longpanda committed
85
86
87
88
89
90
91
92
93
    if echo $RESERVE_SIZE_MB | grep -q '^[0-9][0-9]*$'; then
        vtdebug "User will reserve $RESERVE_SIZE_MB MB disk space"
    else
        vterr "$RESERVE_SIZE_MB is invalid for reserved space"
        exit 1
    fi
fi

vtdebug "MODE=$MODE FORCE=$FORCE RESERVE_SPACE=$RESERVE_SPACE RESERVE_SIZE_MB=$RESERVE_SIZE_MB"
94

longpanda's avatar
longpanda committed
95
96
97
98
#check tools
if check_tool_work_ok; then
    vtdebug "check tool work ok"
else
99
    vterr "Some tools can not run on current system. Please check log.txt for details."
100
101
102
    exit 1
fi

longpanda's avatar
longpanda committed
103
104
105
106
107
108
109
110
111
112
113
114
if [ "$MODE" = "list" ]; then
    version=$(get_disk_ventoy_version $DISK)
    if [ $? -eq 0 ]; then
        echo "Ventoy Version in Disk: $version"
        
        vtPart1Type=$(dd if=$DISK bs=1 count=1 skip=450 status=none | hexdump -n1 -e  '1/1 "%02X"')
        if [ "$vtPart1Type" = "EE" ]; then            
            echo "Disk Partition Style  : GPT"
        else
            echo "Disk Partition Style  : MBR"
        fi
        
115
        if check_disk_secure_boot $DISK; then
longpanda's avatar
longpanda committed
116
117
118
119
120
121
122
123
124
125
126
            echo "Secure Boot Support   : YES"
        else
            echo "Secure Boot Support   : NO"
        fi        
    else
        echo "Ventoy Version: NA"
    fi
    echo ""
    exit 0
fi

longpanda's avatar
longpanda committed
127
#check mountpoint
128
129
130
131
132
133
134
135
136
137
138
grep "^$DISK" /proc/mounts | while read mtline; do
    mtpnt=$(echo $mtline | awk '{print $2}')
    vtdebug "Trying to umount $mtpnt ..."
    umount $mtpnt >/dev/null 2>&1
done

if grep "$DISK" /proc/mounts; then
    vterr "$DISK is already mounted, please umount it first!"
    exit 1
fi

longpanda's avatar
longpanda committed
139
140
141
142
143
144
#check swap partition
if swapon --help 2>&1 | grep -q '^ \-s,'; then
    if swapon -s | grep -q "^${DISK}[0-9]"; then
        vterr "$DISK is used as swap, please swapoff it first!"
        exit 1
    fi
145
146
fi

longpanda's avatar
longpanda committed
147
148
149
150
151
152
153
154
155
156
#check access 
if dd if="$DISK" of=/dev/null bs=1 count=1 >/dev/null 2>&1; then
    vtdebug "root permission check ok ..."
else
    vterr "Failed to access $DISK, maybe root privilege is needed!"
    echo ''
    exit 1
fi


longpanda's avatar
longpanda committed
157
158
159
160
161
162
#check tmp_mnt directory
if [ -d ./tmp_mnt ]; then
    vtdebug "There is a tmp_mnt directory, now delete it."
    umount ./tmp_mnt >/dev/null 2>&1
    rm -rf ./tmp_mnt
    if [ -d ./tmp_mnt ]; then
163
        vterr "tmp_mnt directory exits, please delete it first."
longpanda's avatar
longpanda committed
164
165
166
167
        exit 1
    fi
fi

168
169

if [ "$MODE" = "install" ]; then
170
    vtdebug "install Ventoy ..."
171

longpanda's avatar
longpanda committed
172
173
174
175
    if [ -n "$VTGPT" ]; then
        if parted -v > /dev/null 2>&1; then
            PARTTOOL='parted'
        else
longpanda's avatar
longpanda committed
176
177
            vterr "parted is not found in the system, Ventoy can't create new partitions without it."
            vterr "You should install \"GNU parted\" first."
longpanda's avatar
longpanda committed
178
179
            exit 1
        fi
180
    else
longpanda's avatar
longpanda committed
181
182
183
184
185
        if parted -v > /dev/null 2>&1; then
            PARTTOOL='parted'
        elif fdisk -v >/dev/null 2>&1; then
            PARTTOOL='fdisk'
        else
longpanda's avatar
longpanda committed
186
            vterr "Both parted and fdisk are not found in the system, Ventoy can't create new partitions."
longpanda's avatar
longpanda committed
187
188
            exit 1
        fi
189
190
191
192
193
194
195
    fi
    
    version=$(get_disk_ventoy_version $DISK)
    if [ $? -eq 0 ]; then
        if [ -z "$FORCE" ]; then
            vtwarn "$DISK already contains a Ventoy with version $version"
            vtwarn "Use -u option to do a safe upgrade operation."
196
            vtwarn "OR if you really want to reinstall Ventoy to $DISK, please use -I option."
197
198
199
200
201
202
203
204
            vtwarn ""
            exit 1
        fi
    fi
    
    disk_sector_num=$(cat /sys/block/${DISK#/dev/}/size)
    disk_size_gb=$(expr $disk_sector_num / 2097152)

longpanda's avatar
update  
longpanda committed
205
    if [ $disk_sector_num -gt 4294967296 ] && [ -z "$VTGPT" ]; then
206
207
208
209
        vterr "$DISK is over 2TB size, MBR will not work on it."
        exit 1
    fi

longpanda's avatar
longpanda committed
210
211
212
213
214
215
216
217
218
219
    if [ -n "$RESERVE_SPACE" ]; then
        sum_size_mb=$(expr $RESERVE_SIZE_MB + $VENTOY_PART_SIZE_MB)
        reserve_sector_num=$(expr $sum_size_mb \* 2048)
        
        if [ $disk_sector_num -le $reserve_sector_num ]; then
            vterr "Can't reserve $RESERVE_SIZE_MB MB space from $DISK"
            exit 1
        fi
    fi

220
221
222
    #Print disk info
    echo "Disk : $DISK"
    parted -s $DISK p 2>&1 | grep Model
longpanda's avatar
longpanda committed
223
224
225
226
227
228
    echo "Size : $disk_size_gb GB"    
    if [ -n "$VTGPT" ]; then
        echo "Style: GPT"
    else
        echo "Style: MBR"
    fi    
229
230
    echo ''

longpanda's avatar
longpanda committed
231
232
233
234
235
    if [ -n "$RESERVE_SPACE" ]; then
        echo "You will reserve $RESERVE_SIZE_MB MB disk space "
    fi
    echo ''

236
237
238
239
240
    vtwarn "Attention:"
    vtwarn "You will install Ventoy to $DISK."
    vtwarn "All the data on the disk $DISK will be lost!!!"
    echo ""

longpanda's avatar
longpanda committed
241
    read -p 'Continue? (y/n) '  Answer
242
243
244
245
246
247
248
249
    if [ "$Answer" != "y" ]; then
        if [ "$Answer" != "Y" ]; then
            exit 0
        fi
    fi

    echo ""
    vtwarn "All the data on the disk $DISK will be lost!!!"
longpanda's avatar
longpanda committed
250
    read -p 'Double-check. Continue? (y/n) '  Answer
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
    if [ "$Answer" != "y" ]; then
        if [ "$Answer" != "Y" ]; then
            exit 0
        fi
    fi

    if [ $disk_sector_num -le $VENTOY_SECTOR_NUM ]; then  
        vterr "No enough space in disk $DISK"
        exit 1
    fi

    if ! dd if=/dev/zero of=$DISK bs=1 count=512 status=none conv=fsync; then
        vterr "Write data to $DISK failed, please check whether it's in use."
        exit 1
    fi

longpanda's avatar
longpanda committed
267
268
269
270
271
272
273
    if [ -n "$VTGPT" ]; then
        vtdebug "format_ventoy_disk_gpt $RESERVE_SIZE_MB $DISK $PARTTOOL ..."
        format_ventoy_disk_gpt $RESERVE_SIZE_MB $DISK $PARTTOOL
    else
        vtdebug "format_ventoy_disk_mbr $RESERVE_SIZE_MB $DISK $PARTTOOL ..."
        format_ventoy_disk_mbr $RESERVE_SIZE_MB $DISK $PARTTOOL
    fi
274
275
276
277
278
279
280
281
282
283
284

    # format part1

    # DiskSize > 32GB  Cluster Size use 128KB
    # DiskSize < 32GB  Cluster Size use 32KB
    if [ $disk_size_gb -gt 32 ]; then
        cluster_sectors=256
    else
        cluster_sectors=64
    fi

longpanda's avatar
longpanda committed
285
286
287
    PART1=$(get_disk_part_name $DISK 1)  
    PART2=$(get_disk_part_name $DISK 2)  

longpanda's avatar
longpanda committed
288
    mkexfatfs -n "$VTNEW_LABEL" -s $cluster_sectors ${PART1}
289
290

    vtinfo "writing data to disk ..."
longpanda's avatar
longpanda committed
291
    
292
    dd status=none conv=fsync if=./boot/boot.img of=$DISK bs=1 count=446
longpanda's avatar
longpanda committed
293
294
295
    
    if [ -n "$VTGPT" ]; then
        echo -en '\x22' | dd status=none of=$DISK conv=fsync bs=1 count=1 seek=92        
longpanda's avatar
longpanda committed
296
        xzcat ./boot/core.img.xz | dd status=none conv=fsync of=$DISK bs=512 count=2014 seek=34
longpanda's avatar
longpanda committed
297
298
        echo -en '\x23' | dd of=$DISK conv=fsync bs=1 count=1 seek=17908 status=none
    else
longpanda's avatar
longpanda committed
299
        xzcat ./boot/core.img.xz | dd status=none conv=fsync of=$DISK bs=512 count=2047 seek=1
longpanda's avatar
longpanda committed
300
301
    fi
    
longpanda's avatar
longpanda committed
302
    xzcat ./ventoy/ventoy.disk.img.xz | dd status=none conv=fsync of=$DISK bs=512 count=$VENTOY_SECTOR_NUM seek=$part2_start_sector
303
    
longpanda's avatar
longpanda committed
304
305
306
307
    #test UUID
    testUUIDStr=$(vtoy_gen_uuid | hexdump -C)
    vtdebug "test uuid: $testUUIDStr"
    
308
    #disk uuid
longpanda's avatar
longpanda committed
309
    vtoy_gen_uuid | dd status=none conv=fsync of=${DISK} seek=384 bs=1 count=16
310
311
    
    #disk signature
longpanda's avatar
longpanda committed
312
    vtoy_gen_uuid | dd status=none conv=fsync of=${DISK} skip=12 seek=440 bs=1 count=4
313
314
315
316
317
318
319

    vtinfo "sync data ..."
    sync
    
    vtinfo "esp partition processing ..."
    
    sleep 1
longpanda's avatar
longpanda committed
320
    mtpnt=$(grep "^${PART2}" /proc/mounts | awk '{print $2}')
321
322
323
324
    if [ -n "$mtpnt" ]; then
        umount $mtpnt >/dev/null 2>&1
    fi
    
longpanda's avatar
longpanda committed
325
    if [ "$SECUREBOOT" != "YES" ]; then        
326
327
328
        mkdir ./tmp_mnt
        
        vtdebug "mounting part2 ...."
longpanda's avatar
longpanda committed
329
330
        for tt in 1 2 3 4 5; do            
            if mount ${PART2} ./tmp_mnt > /dev/null 2>&1; then
331
332
333
334
                vtdebug "mounting part2 success"
                break
            fi
            
longpanda's avatar
longpanda committed
335
            mtpnt=$(grep "^${PART2}" /proc/mounts | awk '{print $2}')
336
337
            if [ -n "$mtpnt" ]; then
                umount $mtpnt >/dev/null 2>&1
longpanda's avatar
longpanda committed
338
            fi    
339
340
            sleep 2
        done
longpanda's avatar
longpanda committed
341
        
342
343
        rm -f ./tmp_mnt/EFI/BOOT/BOOTX64.EFI
        rm -f ./tmp_mnt/EFI/BOOT/grubx64.efi
longpanda's avatar
longpanda committed
344
345
        rm -f ./tmp_mnt/EFI/BOOT/BOOTIA32.EFI
        rm -f ./tmp_mnt/EFI/BOOT/grubia32.efi
346
        rm -f ./tmp_mnt/EFI/BOOT/MokManager.efi
longpanda's avatar
longpanda committed
347
        rm -f ./tmp_mnt/EFI/BOOT/mmia32.efi
348
349
        rm -f ./tmp_mnt/ENROLL_THIS_KEY_IN_MOKMANAGER.cer
        mv ./tmp_mnt/EFI/BOOT/grubx64_real.efi  ./tmp_mnt/EFI/BOOT/BOOTX64.EFI
longpanda's avatar
longpanda committed
350
        mv ./tmp_mnt/EFI/BOOT/grubia32_real.efi  ./tmp_mnt/EFI/BOOT/BOOTIA32.EFI
351
        
longpanda's avatar
longpanda committed
352
353
354
355
356
357
358
359
360
361
        for tt in 1 2 3; do
            if umount ./tmp_mnt; then
                vtdebug "umount part2 success"
                rm -rf ./tmp_mnt
                break
            else
                vtdebug "umount part2 failed, now retry..."
                sleep 1
            fi
        done
362
363
364
365
366
367
368
    fi

    echo ""
    vtinfo "Install Ventoy to $DISK successfully finished."
    echo ""
    
else
369
    vtdebug "update Ventoy ..."
370
371
372
    
    oldver=$(get_disk_ventoy_version $DISK)
    if [ $? -ne 0 ]; then
373
        vtwarn "$DISK does not contain Ventoy or data corrupted"
374
375
376
377
378
379
        echo ""
        vtwarn "Please use -i option if you want to install ventoy to $DISK"
        echo ""
        exit 1
    fi

longpanda's avatar
longpanda committed
380
381
382
383
384
385
386
387
388
    #reserve secure boot option
    if [ -z "$SECUREBOOT" ]; then
        if check_disk_secure_boot $DISK; then
            SECUREBOOT="YES"
        else
            SECUREBOOT="NO"
        fi
    fi

389
390
391
392
393
394
395
396
397
398
399
400
401
    curver=$(cat ./ventoy/version)

    vtinfo "Upgrade operation is safe, all the data in the 1st partition (iso files and other) will be unchanged!"
    echo ""

    read -p "Update Ventoy  $oldver ===> $curver   Continue? (y/n)"  Answer
    if [ "$Answer" != "y" ]; then
        if [ "$Answer" != "Y" ]; then
            exit 0
        fi
    fi

    PART2=$(get_disk_part_name $DISK 2)
402
403
    SHORT_PART2=${PART2#/dev/}
    part2_start=$(cat /sys/class/block/$SHORT_PART2/start)
404
    
longpanda's avatar
longpanda committed
405
    PART1_TYPE=$(dd if=$DISK bs=1 count=1 skip=450 status=none | hexdump -n1 -e  '1/1 "%02X"')
406
    
longpanda's avatar
longpanda committed
407
408
409
410
411
412
413
414
415
416
417
418
    #reserve disk uuid
    rm -f ./diskuuid.bin
    dd status=none conv=fsync if=${DISK} skip=384 bs=1 count=16 of=./diskuuid.bin
    
    dd status=none conv=fsync if=./boot/boot.img of=$DISK bs=1 count=440
    dd status=none conv=fsync if=./diskuuid.bin of=$DISK bs=1 count=16 seek=384
    rm -f ./diskuuid.bin

    #reserve data
    rm -f ./rsvdata.bin
    dd status=none conv=fsync if=${DISK} skip=2040 bs=512 count=8 of=./rsvdata.bin

longpanda's avatar
update  
longpanda committed
419
    if [ "$PART1_TYPE" = "EE" ]; then
longpanda's avatar
longpanda committed
420
421
        vtdebug "This is GPT partition style ..."    
        echo -en '\x22' | dd status=none of=$DISK conv=fsync bs=1 count=1 seek=92
longpanda's avatar
longpanda committed
422
        xzcat ./boot/core.img.xz | dd status=none conv=fsync of=$DISK bs=512 count=2014 seek=34
longpanda's avatar
update  
longpanda committed
423
424
425
        echo -en '\x23' | dd of=$DISK conv=fsync bs=1 count=1 seek=17908 status=none
    else
        vtdebug "This is MBR partition style ..."
longpanda's avatar
longpanda committed
426
    
longpanda's avatar
longpanda committed
427
428
        PART1_ACTIVE=$(dd if=$DISK bs=1 count=1 skip=446 status=none | hexdump -n1 -e  '1/1 "%02X"')
        PART2_ACTIVE=$(dd if=$DISK bs=1 count=1 skip=462 status=none | hexdump -n1 -e  '1/1 "%02X"')
longpanda's avatar
update  
longpanda committed
429
430
431
432
433
434
435
        
        vtdebug "PART1_ACTIVE=$PART1_ACTIVE  PART2_ACTIVE=$PART2_ACTIVE"
        if [ "$PART1_ACTIVE" = "00" ] && [ "$PART2_ACTIVE" = "80" ]; then
            vtdebug "change 1st partition active, 2nd partition inactive ..."
            echo -en '\x80' | dd of=$DISK conv=fsync bs=1 count=1 seek=446 status=none
            echo -en '\x00' | dd of=$DISK conv=fsync bs=1 count=1 seek=462 status=none
        fi
longpanda's avatar
longpanda committed
436
        xzcat ./boot/core.img.xz | dd status=none conv=fsync of=$DISK bs=512 count=2047 seek=1
longpanda's avatar
longpanda committed
437
    fi
longpanda's avatar
longpanda committed
438

longpanda's avatar
longpanda committed
439
440
441
    dd status=none conv=fsync if=./rsvdata.bin seek=2040 bs=512 count=8 of=${DISK}
    rm -f ./rsvdata.bin

longpanda's avatar
longpanda committed
442
    xzcat ./ventoy/ventoy.disk.img.xz | dd status=none conv=fsync of=$DISK bs=512 count=$VENTOY_SECTOR_NUM seek=$part2_start
443
444
445
446
447
448

    sync
    
    if [ "$SECUREBOOT" != "YES" ]; then
        mkdir ./tmp_mnt
        
longpanda's avatar
longpanda committed
449
450
451
        vtdebug "mounting part2 ...."        
        for tt in 1 2 3 4 5; do            
            if mount ${PART2} ./tmp_mnt > /dev/null 2>&1; then
452
453
                vtdebug "mounting part2 success"
                break
longpanda's avatar
longpanda committed
454
455
            else
                vtdebug "mounting part2 failed, now wait and retry..."
456
            fi
longpanda's avatar
longpanda committed
457
            sleep 2            
458
        done
longpanda's avatar
longpanda committed
459
        
460
461
        rm -f ./tmp_mnt/EFI/BOOT/BOOTX64.EFI
        rm -f ./tmp_mnt/EFI/BOOT/grubx64.efi
longpanda's avatar
longpanda committed
462
463
        rm -f ./tmp_mnt/EFI/BOOT/BOOTIA32.EFI
        rm -f ./tmp_mnt/EFI/BOOT/grubia32.efi
464
        rm -f ./tmp_mnt/EFI/BOOT/MokManager.efi
longpanda's avatar
longpanda committed
465
        rm -f ./tmp_mnt/EFI/BOOT/mmia32.efi
466
467
        rm -f ./tmp_mnt/ENROLL_THIS_KEY_IN_MOKMANAGER.cer
        mv ./tmp_mnt/EFI/BOOT/grubx64_real.efi  ./tmp_mnt/EFI/BOOT/BOOTX64.EFI
longpanda's avatar
longpanda committed
468
469
        mv ./tmp_mnt/EFI/BOOT/grubia32_real.efi  ./tmp_mnt/EFI/BOOT/BOOTIA32.EFI
        
470
        
longpanda's avatar
longpanda committed
471
        for tt in 1 2 3; do
longpanda's avatar
longpanda committed
472
            if umount ./tmp_mnt > /dev/null 2>&1; then
longpanda's avatar
longpanda committed
473
474
475
476
477
478
479
480
                vtdebug "umount part2 success"
                rm -rf ./tmp_mnt
                break
            else
                vtdebug "umount part2 failed, now retry..."
                sleep 1
            fi
        done        
481
482
483
    fi

    echo ""
484
    vtinfo "Update Ventoy on $DISK successfully finished."
485
486
487
488
489
    echo ""
    
fi