]> git.proxmox.com Git - pve-kernel-meta.git/blame - bin/pve-efiboot-tool
pve-efiboot-tool: add clean command
[pve-kernel-meta.git] / bin / pve-efiboot-tool
CommitLineData
b3d47d2d
SI
1#!/bin/sh
2
3set -e
4
5. /usr/share/pve-kernel-helper/scripts/functions
6
2955b2b7
FG
7_add_entry_to_list_file() {
8 file="$1"
9 entry="$2"
10
11 if [ -e "$file" ]; then
12 cp "$file" "$file.new"
13 fi
14 echo "$entry" >> "$file.new"
15 sort -uo "$file.new" "$file.new"
16 mv "$file.new" "$file"
17}
18
19_remove_entry_from_list_file() {
20 file="$1"
21 entry="$2"
22
23 # guard against removing whole file by accident!
24 if [ -z "$entry" ]; then
25 echo "cannot remove empty entry from '$file'."
26 return
27 fi
28
29 if [ -e "$file" ]; then
30 grep -vFx "$entry" "$file" > "$file.new" || true
31 mv "$file.new" "$file"
32 else
33 echo "'$file' does not exist.."
34 fi
35}
b3d47d2d
SI
36
37_get_partition_info() {
38 if [ ! -e "$1" ]; then
39 warn "E: '$1' does not exist!"
40 exit 1
41 fi
42 bdev=$(realpath "$1")
43 if [ ! -b "$bdev" ]; then
44 warn "E: '$bdev' is not a block device!"
45 exit 1
46 fi
47
48 bdev_info=$( \
49 lsblk \
50 --bytes \
51 --pairs \
52 -o 'UUID,SIZE,FSTYPE,PARTTYPE,PKNAME,MOUNTPOINT' \
53 "$bdev" \
54 )
55 if [ -z "$bdev_info" ]; then
56 warn "E: unable to get information about block device '$1'!"
57 exit 1
58 fi
59
60 count=$(echo "$bdev_info" | grep -c '^')
61 if [ "$count" -ne '1' ]; then
62 echo "$bdev_info"
63 warn "E: block device '$1' has children!"
64 exit 1
65 fi
66
67 echo "$bdev_info"
68 eval "$bdev_info"
69
70 if [ -z "$PKNAME" ]; then
71 warn "E: cannot determine parent device of '$1' - please provide a partition, not a full disk."
72 exit 1
73 fi
74
75 if [ -n "$SIZE" ] && [ "$SIZE" -lt 268435456 ]; then
76 warn "E: '$1' is too small (<256M)."
77 exit 1
78 fi
79
80 if [ -n "$MOUNTPOINT" ]; then
81 warn "E: '$1' is mounted on '$MOUNTPOINT' - exiting."
82 exit 1
83 fi
84}
85
86format() {
87 part="$1"
88 force="$2"
89
90 _get_partition_info "$part"
91
92 if [ -n "$FSTYPE" ]; then
93 if [ -z "$force" ] || [ "$force" != '--force' ]; then
94 warn "E: '$part' contains a filesystem ('$FSTYPE') - exiting (use --force to override)"
95 exit 1
96 fi
97 fi
98
99 part_basename=$(basename "$part")
100 if [ -z "$part_basename" ]; then
101 warn "E: unable to determine basename of '$part'"
102 exit 1
103 fi
104
105 part_num=$(cat /sys/block/"$PKNAME"/"$part_basename"/partition)
106 if [ -z "$part_num" ]; then
107 warn "E: unable to determine partition number of '$part'"
108 exit 1
109 fi
110
111 if [ -z "$PARTTYPE" ] || [ "$PARTTYPE" != "$ESPTYPE" ]; then
112 echo "Setting partition type of '$part' to '$ESPTYPE'.."
113 sgdisk "-t$part_num:$ESPTYPE" "/dev/$PKNAME"
114 echo "Calling 'udevadm settle'.."
115 udevadm settle --timeout=5
116 fi
117
118 echo "Formatting '$part' as vfat.."
119 mkfs.vfat -F 32 "$part"
120 echo "Done."
121 exit 0
122}
123
124init() {
125 part="$1"
126
127 _get_partition_info "$part"
128
129 if [ -z "$PARTTYPE" ] || [ "$PARTTYPE" != "$ESPTYPE" ]; then
130 warn "E: '$part' has wrong partition type (!= $ESPTYPE)."
131 exit 1
132 fi
133
134 if [ -z "$FSTYPE" ] || [ "$FSTYPE" != 'vfat' ]; then
135 warn "E: '$part' has wrong filesystem (!= vfat)."
136 exit 1
137 fi
138
139 if [ -z "$UUID" ]; then
140 warn "E: '$part' has no UUID set, required for mounting."
141 exit 1
142 fi
143
144 esp_mp="/var/tmp/espmounts/$UUID"
145
146 mkdir -p "$esp_mp"
147 echo "Mounting '$part' on '$esp_mp'."
148 mount -t vfat "$part" "$esp_mp"
149
150 echo "Installing systemd-boot.."
151 mkdir -p "$esp_mp/$PMX_ESP_DIR"
152 bootctl --path "$esp_mp" install
153
154 echo "Configuring systemd-boot.."
155 echo "timeout 3" > "$esp_mp/$PMX_LOADER_CONF.tmp"
156 echo "default proxmox-*" >> "$esp_mp/$PMX_LOADER_CONF.tmp"
157 mv "$esp_mp/$PMX_LOADER_CONF.tmp" "$esp_mp/$PMX_LOADER_CONF"
158 echo "Unmounting '$part'."
159 umount "$part"
160
161 echo "Adding '$part' to list of synced ESPs.."
2955b2b7 162 _add_entry_to_list_file "$ESP_LIST" "$UUID"
b3d47d2d
SI
163
164 echo "Refreshing kernels and initrds.."
165 refresh
166}
167
0956bd22
FG
168_clean_impl() {
169 if [ ! -e "/dev/disk/by-uuid/" ]; then
170 warn 'E: /dev/disk/by-uuid does not exist, aborting!'
171 exit 1
172 fi
173 echo -n "Checking whether ESP '$curr_uuid' exists.. "
174 if [ -e "/dev/disk/by-uuid/$curr_uuid" ]; then
175 echo "Found!"
176 else
177 echo "Not found!"
178 if [ -z "$dry_run" ] || [ "$dry_run" != '--dry-run' ]; then
179 _remove_entry_from_list_file "$ESP_LIST" "$curr_uuid"
180 fi
181 fi
182}
183
184clean() {
185 dry_run="$1"
186 rm -f "$ESP_LIST".tmp
187 loop_esp_list _clean_impl
188 if [ "$?" -eq 2 ]; then
189 warn "E: $ESP_LIST does not exist."
190 exit 1
191 fi
192 if [ -e "$ESP_LIST".tmp ]; then
193 mv "$ESP_LIST".tmp "$ESP_LIST"
194 fi
195}
196
b3d47d2d
SI
197refresh() {
198 hookscript='/etc/kernel/postinst.d/zz-pve-efiboot'
199 echo "Running hook script '$hookscript'.."
200 exec $hookscript
201}
202
203usage() {
204 warn "USAGE: $0 <commands> [ARGS]"
205 warn ""
206 warn " $0 format <partition> [--force]"
207 warn " $0 init <partition>"
0956bd22 208 warn " $0 clean [--dry-run]"
b3d47d2d 209 warn " $0 refresh"
0b99d576 210 warn " $0 help"
b3d47d2d
SI
211}
212
213help() {
214 echo "USAGE: $0 format <partition> [--force]"
215 echo ""
216 echo " format <partition> as EFI system partition. Use --force to format even if <partition> is currently in use."
217 echo ""
218 echo "USAGE: $0 init <partition>"
219 echo ""
220 echo " initialize EFI system partition at <partition> for automatic synchronization of pve-kernels and their associated initrds."
221 echo ""
0956bd22
FG
222 echo "USAGE: $0 clean [--dry-run]"
223 echo ""
224 echo " remove no longer existing EFI system partition UUIDs from $ESP_LIST. Use --dry-run to only print outdated entries instead of removing them."
225 echo ""
b3d47d2d
SI
226 echo "USAGE: $0 refresh"
227 echo ""
228 echo " refresh all configured EFI system partitions."
229 echo ""
230}
231
232if [ -z "$1" ]; then
233 usage
234 exit 0
235fi
236
237case "$1" in
238 'format')
239 shift
240 if [ -z "$1" ]; then
241 warn "E: <partition> is mandatory."
242 warn ""
243 usage
244 exit 1
245 fi
246 format "$@"
247 exit 0
248 ;;
249 'init')
420039cd 250 reexec_in_mountns "$@"
b3d47d2d
SI
251 shift
252 if [ -z "$1" ]; then
253 warn "E: <partition> is mandatory."
254 warn ""
255 usage
256 exit 1
257 fi
258 init "$@"
259 exit 0
260 ;;
0956bd22
FG
261 'clean')
262 shift
263 clean "$@"
264 exit 0
265 ;;
b3d47d2d
SI
266 'refresh')
267 shift
268 refresh
269 exit 0
270 ;;
271 'help')
272 shift
273 help
274 exit 0
275 ;;
276 *)
277 warn "Invalid/unknown command '$1'."
278 warn ""
279 usage
280 exit 1
281 ;;
282esac
283
284exit 1