/usr/lib/curtin/helpers/common is in curtin-common 0.1.0~bzr126-0ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 26 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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 | #!/bin/bash
TEMP_D=""
error() { echo "$@" 1>&1; }
debug() { [ ${VERBOSITY:-0} -lt "$1" ] || error "$@"; }
partition_main_usage() {
cat <<EOF
Usage: ${0##*/} [ options ] target-dev
partition target-dev with a single partition
destroy any partition table that might be there already.
options:
-f | --format F use partition table format F. [mbr, gpt, uefi]
default gpt
-E | --end E end the partition at E (unit 1k bytes)
EOF
[ $# -eq 0 ] || echo "$@"
}
grub_install_usage() {
cat <<EOF
Usage: ${0##*/} [ options ] mount-point target-dev
perform grub-install with mount-point onto target-dev.
options:
--uefi install grub-efi instead of grub-pc
EOF
[ $# -eq 0 ] || echo "$@"
}
cleanup() {
if [ -d "$TEMP_D" ]; then
rm -Rf "$TEMP_D"
fi
}
wipedev() {
# wipe the front and end (gpt is at end also)
local target="$1" size="" out=""
getsize "$target" ||
{ error "failed to get size of $target"; return 1; }
size="$_RET"
dd if=/dev/zero conv=notrunc of="$target" \
bs=$((1024*1024)) count=1 >/dev/null 2>&1 ||
{ error "failed to zero beginning of $target"; return 1; }
out=$(dd if=/dev/zero conv=notrunc of="$target" bs=1024 \
seek=$(((size/1024)-1024)) count=1024 2>&1)
[ $? -eq 0 ] ||
{ error "failed to wipe end of $target [$size]: $out"; return 1; }
if [ -b "$target" ]; then
blockdev --rereadpt "$target"
udevadm settle
fi
}
pt_gpt() {
local target="$1" end=${2:-""} size="" s512="" ptype="L"
local start="2048" pt1size="" maxend=""
local isblk=false
getsize "$target" ||
{ error "failed to get size of $target"; return 1; }
size="$_RET"
if [ -z "$end" ]; then
end=$(($size/512))
else
end=$(($end/512))
fi
maxend=$((($size/512)-2048))
[ "$end" -gt "$maxend" ] && end="$maxend"
debug 1 "maxend=$maxend end=$end size=$size"
[ -b "$target" ] && isblk=true
sgdisk --new "15:2048:+1M" --typecode=15:ef02 \
--new "1::$end" --typecode=1:8300 "$target" ||
{ error "failed to gpt partition $target"; return 1; }
if $isblk; then
blockdev --rereadpt "$target"
udevadm settle
[ -b "${target}1" ] ||
{ error "no partition found ${target}1"; return 1; }
[ -b "${target}15" ] ||
{ error "no partition found ${target}15"; return 1; }
fi
}
pt_uefi() {
local target="$1" end=${2:-""} size="" s512="" ptype="L"
local start="2048" pt1size="" maxend=""
local isblk=false
getsize "$target" ||
{ error "failed to get size of $target"; return 1; }
size="$_RET"
if [ -z "$end" ]; then
end=$(($size/512))
else
end=$(($end/512))
fi
maxend=$((($size/512)-2048))
[ "$end" -gt "$maxend" ] && end="$maxend"
debug 1 "maxend=$maxend end=$end size=$size"
[ -b "$target" ] && isblk=true
# Part 15 is the UEFI partition, part 1 is root
sgdisk --new "15:2048:+512M" --typecode=15:ef00 "$target" \
--new "1::$end" --typecode=1:8300 "$target" ||
{ error "failed to sgdisk for uefi to $target"; return 1; }
if $isblk; then
blockdev --rereadpt "$target"
udevadm settle
[ -b "${target}1" ] ||
{ error "no partition found ${target}1"; return 1; }
[ -b "${target}15" ] ||
{ error "no partition found ${target}15"; return 1; }
fi
mkfs -t vfat -F 32 -n uefi-boot ${target}15 ||
{ error "failed to partition ${target}15 for UEFI vfat"; return 1; }
}
pt_mbr() {
local target="$1" end=${2:-""} size="" s512="" ptype="L"
local start="2048" pt1size="" maxsize="4294967296"
local isblk=false
getsize "$target" ||
{ error "failed to get size of $target"; return 1; }
size="$_RET"
if [ "$(($size/512))" -gt "$maxsize" ]; then
debug 1 "disk is larger than max for mbr (2TB)"
s512=$maxsize
else
s512=$(($size/512))
fi
if [ -n "$end" ]; then
pt1size=$(((end/512)-2048))
else
pt1size=$((s512-2048))
fi
[ -b "$target" ] && isblk=true
# interact with sfdisk in units of 512 bytes (--unit S)
# we start all partitions at 2048 of those (1M)
local sfdisk_out="" sfdisk_in="2048,$pt1size,$ptype,*" sfdisk_cmd=""
sfdisk_cmd=( sfdisk --no-reread --force --Linux --unit S "$target" )
debug 1 "sfdisking with: echo '$sfdisk_in' | ${sfdisk_cmd[*]}"
sfdisk_out=$(echo "$sfdisk_in" | "${sfdisk_cmd[@]}" 2>&1)
ret=$?
[ $ret -eq 0 ] || {
error "failed to partition $target [${sfdisk_out}]";
return 1;
}
if $isblk; then
blockdev --rereadpt "$target"
udevadm settle
[ -b "${target}1" ] ||
{ error "no partition found ${target}1"; return 1; }
fi
out=$(wipefs "--offset=$(($start*512))" "$target" 2>&1) || {
error "$out";
error "failed to wipefs first partition of $target";
return 1;
}
}
partition_main() {
local short_opts="hE:f:v"
local long_opts="help,end:,format:,verbose"
local getopt_out=$(getopt --name "${0##*/}" \
--options "${short_opts}" --long "${long_opts}" -- "$@") &&
eval set -- "${getopt_out}" ||
{ partition_main_usage 1>&2; return 1; }
local cur="" next=""
local format="mbr" target="" end=""
while [ $# -ne 0 ]; do
cur="$1"; next="$2";
case "$cur" in
-h|--help) partition_main_usage ; exit 0;;
-f|--format) format=$next; shift;;
-E|--end) end=$next; shift;;
-v|--verbose) VERBOSITY=$((${VERBOSITY}+1));;
--) shift; break;;
esac
shift;
done
[ $# -gt 1 ] && { partition_main_usage "got $# args, expected 1" 1>&2; return 1; }
[ $# -eq 0 ] && { partition_main_usage "must provide target-dev" 1>&2; return 1; }
target="$1"
if [ -n "$end" ]; then
human2bytes "$end" ||
{ error "failed to convert '$end' to bytes"; return 1; }
end="$_RET"
fi
[ "$format" = "gpt" -o "$format" = "mbr" -o "$format" = "uefi" ] ||
{ partition_main_usage "invalid format: $format" 1>&2; return 1; }
TEMP_D=$(mktemp -d "${TMPDIR:-/tmp}/${0##*/}.XXXXXX") ||
fail "failed to make tempdir"
[ -e "$target" ] || { error "$target does not exist"; return 1; }
[ -f "$target" -o -b "$target" ] ||
{ error "$target not a block device"; return 1; }
wipedev "$target" ||
{ error "wiping $target failed"; return 1; }
if [ "$format" = "mbr" ]; then
pt_mbr "$target" "$end"
elif [ "$format" = "gpt" ]; then
pt_gpt "$target" "$end"]
elif [ "$format" = "uefi" ]; then
pt_uefi "$target" "$end"
fi
trap cleanup EXIT
return 0
}
human2bytes() {
# converts size suitable for input to resize2fs to bytes
# s:512 byte sectors, K:kilobytes, M:megabytes, G:gigabytes
# none: block size of the image
local input=${1} defunit=${2:-1024}
local unit count;
case "$input" in
*s) count=${input%s}; unit=512;;
*K) count=${input%K}; unit=1024;;
*M) count=${input%M}; unit=$((1024*1024));;
*G) count=${input%G}; unit=$((1024*1024*1024));;
*) count=${input} ; unit=${defunit};;
esac
_RET=$((${count}*${unit}))
}
getsize() {
local target="$1"
if [ -b "$target" ]; then
_RET=$(blockdev --getsize64 "$target")
elif [ -f "$target" ]; then
_RET=$(stat "--format=%s" "$target")
else
return 1;
fi
}
is_md() {
case "${1##*/}" in
md[0-9]) return 0;;
esac
return 1
}
install_grub() {
local long_opts="uefi"
local getopt_out="" mp_efi=""
getopt_out=$(getopt --name "${0##*/}" \
--options "" --long "${long_opts}" -- "$@") &&
eval set -- "${getopt_out}"
local uefi=0
while [ $# -ne 0 ]; do
cur="$1"; next="$2";
case "$cur" in
--uefi) uefi=$((${uefi}+1));;
--) shift; break;;
esac
shift;
done
[ $# -lt 2 ] && { grub_install_usage "must provide mount-point and target-dev" 1>&2; return 1; }
local mp="$1"
local cmdline tmp r=""
shift
local grubdevs
grubdevs=( "$@" )
# find the mp device
mp_dev=$(awk -v MP=${mp} '$2==MP {print$1}' /proc/mounts)
r=$?
if [ $r -ne 0 -a $r -ne 1 ]; then
error "unable to determine device for mount $mp";
return 1;
fi
[ -b $mp_dev ] || { error "$mp_dev is not a block device!"; return 1; }
# set correct grub package
local grub_name="grub-pc"
local grub_target="i386-pc"
if [ "$uefi" -ge 1 ]; then
dpkg_arch=$(chroot "$mp" dpkg --print-architecture)
r=$?
if [ $r -ne 0 -a $r -ne 1 ]; then
error "failed to get dpkg architecture"
return 1;
fi
grub_name="grub-efi-$dpkg_arch"
if [ "$dpkg_arch" = "amd64" ]; then
grub_target="x86_64-efi"
fi
fi
# check that the grub package is installed
tmp=$(chroot "$mp" dpkg-query --show \
--showformat='${Status}\n' $grub_name)
r=$?
if [ $r -ne 0 -a $r -ne 1 ]; then
error "failed to check if $grub_name installed";
return 1;
fi
case "$tmp" in
install\ ok\ installed) :;;
*) debug 1 "$grub_name not installed, not doing anything";
return 0;;
esac
# check that mount point has efi partition, and that its mounted
# at /boot/efi and added to the fstab
if [ "$uefi" -ge 1 ]; then
# this assumes that the device was '/dev/xxx[0-9]' and the efi is 15.
local efi_dev="${mp_dev%[0-9]}15"
[ -b ${efi_dev} ] || { error "no UEFI partition on ${efi_dev}"; return 1; }
fslabel=$(blkid -s LABEL -o value "${efi_dev}")
fstype=$(blkid -s TYPE -o value "${efi_dev}")
[ "$fstype" = "vfat" ] || { error "${efi_dev} is not a vfat fs"; return 1; }
[ -n "$fslabel" ] || { error "no label on EFI device"; return 1; }
mp_efi=$(lsblk --nodeps -n --out "MOUNTPOINT" ${efi_dev})
[ -z "$mp_efi" ] || umount "$mp_efi"
if [ ! -e "$mp/boot/efi" ]; then
mkdir -p "$mp/boot/efi" || { error "failed to mount EFI partition"; return 1; }
mount "$efi_dev" "$mp/boot/efi" || { error "unable to mount efi part"; return 1; }
mp_efi="$mp/boot/efi"
fi
echo "LABEL=${fslabel} /boot/efi vfat defaults 0 0" >> "$mp/etc/fstab"
fi
# copy anything after '--' on cmdline to install'd cmdline
read cmdline < /proc/cmdline
local reconf="" newargs=""
tmp="${cmdline##* -- }"
if [ "$tmp" != "$cmdline" ]; then
# there was an explicit '--', so copy stuff some after it
newargs=$(set -f;
c="";
for p in ${cmdline##* -- }; do
case "$p" in
(BOOTIF=*|initrd=*|BOOT_IMAGE=*) continue;;
esac
c="$c $p";
done
echo "${c# }"
)
elif [ "${cmdline#* console=}" != "${cmdline}" ]; then
# there are 'console=' params, copy those.
newargs=$(set -f; c=""; for p in $cmdline; do
[ "${p#console}" = "$p" ] || c="$c $p"; done; echo "${c# }")
fi
if [ "${REPLACE_GRUB_LINUX_DEFAULT:-1}" != "0" ]; then
local n="GRUB_CMDLINE_LINUX_DEFAULT"
local sede="s|$n=.*|$n=\"$newargs\"|"
sed -i "$sede" "$mp/etc/default/grub" ||
{ error "failed to update /etc/default/grub"; return 1; }
grep "$n" "$mp/etc/default/grub"
reconf="dpkg-reconfigure $grub_name"
debug 1 "updating cmdline to '${newargs}'"
# LP: #1179940 . this fix was applied to raring, which
# made changes above not stick. This might not be the best
# way to handle this, but we'll do it for now.
local cicfg="etc/default/grub.d/50-cloudimg-settings.cfg"
if [ -f "$mp/$cicfg" ]; then
debug 1 "moved $cicfg out of the way"
mv "$mp/$cicfg" "$mp/$cicfg.disabled"
fi
fi
local short="" bd="" grubdev grubdevs_new=""
grubdevs_new=()
for grubdev in "${grubdevs[@]}"; do
if is_md "$grubdev"; then
short=${grubdev##*/}
for bd in "/sys/block/$short/slaves/"/*; do
[ -d "$bd" ] || continue
bd=${bd##*/}
bd="/dev/${bd%[0-9]}" # hack: part2bd
grubdevs_new[${#grubdevs_new[@]}]="$bd"
done
else
grubdevs_new[${#grubdevs_new[@]}]="$grubdev"
fi
done
grubdevs=( "${grubdevs_new[@]}" )
if [ "$uefi" -ge 1 ]; then
debug 1 "installing ${grub_name} to: /boot/efi"
chroot "$mp" env DEBIAN_FRONTEND=noninteractive sh -ec '
prober="/etc/grub.d/30_os-prober"
[ -x $prober ] && chmod -x "$prober"
dpkg-reconfigure "$1"
[ -f $prober ] && chmod +x "$prober"
grub-install --target=$2 --efi-directory=/boot/efi --bootloader-id=ubuntu --recheck || exit; done' \
-- "${grub_name}" "${grub_target}" </dev/null ||
{ error "failed to install grub!"; return 1; }
else
debug 1 "installing grub-pc to: ${grubdevs[*]}"
chroot "$mp" env DEBIAN_FRONTEND=noninteractive sh -ec '
prober="/etc/grub.d/30_os-prober"
[ -x $prober ] && chmod -x "$prober"
dpkg-reconfigure grub-pc
[ -f $prober ] && chmod +x "$prober"
for d in "$@"; do grub-install "$d" || exit; done' \
-- "${grubdevs[@]}" </dev/null ||
{ error "failed to install grub!"; return 1; }
fi
if [ -n "${mp_efi}" ]; then
umount "$mp_efi" ||
{ error "failed to unmount $mp_efi"; return 1; }
fi
return
}
# vi: ts=4 expandtab syntax=sh
|