1 # live-initramfs helper functions, used by live-initramfs on boot and by live-snapshot
3 if [ ! -x "/bin/fstype" ]
5 # klibc not in path -> not in initramfs
6 export PATH="${PATH}:/usr/lib/klibc/bin"
9 # handle upgrade path from old udev (using udevinfo) to
10 # recent versions of udev (using udevadm info)
11 if [ -x /sbin/udevadm ]
13 udevinfo='/sbin/udevadm info'
21 echo "/dev/$($udevinfo -q name -p ${sysdev} 2>/dev/null|| echo ${sysdev##*/})"
29 for dev in "${sysblock}" "${sysblock}"/*
31 if [ -e "${dev}/dev" ]
44 # Validate input first
50 # Try to look if it is already supported by the kernel
51 if grep -q ${fstype} /proc/filesystems
55 # Then try to add support for it the gentle way using the initramfs capabilities
57 if grep -q ${fstype} /proc/filesystems
60 # Then try the hard way if /root is already reachable
62 kmodule="/root/lib/modules/`uname -r`/${fstype}/${fstype}.ko"
63 if [ -e "${kmodule}" ]
66 if grep -q ${fstype} /proc/filesystems
79 # udev (>= 146) no longer provides vol_id
80 if [ -x /lib/udev/vol_id ]
83 /lib/udev/vol_id -t ${1} 2>/dev/null
86 /sbin/blkid -s TYPE -o value $1 2>/dev/null
94 if grep -q "^${device} " /proc/mounts
96 # return the first found
97 grep -m1 "^${device} " /proc/mounts | cut -f2 -d ' '
114 mounts="$(awk '{print $2}' /proc/mounts)"
115 testpath="$(busybox realpath ${testpath})"
119 if echo "${mounts}" | grep -qs "^${testpath}"
121 set -- $(echo "${mounts}" | grep "^${testpath}" | lastline)
125 testpath=$(dirname $testpath)
132 # Returns used/free fs kbytes + 5% more
133 # You could pass a block device as ${1} or the mount point as ${2}
139 if [ -z "${mountp}" ]
141 mountp="$(where_is_mounted ${dev})"
143 if [ -z "${mountp}" ]
145 mountp="/mnt/tmp_fs_size"
148 mount -t $(get_fstype "${dev}") -o ro "${dev}" "${mountp}" || log_warning_msg "cannot mount -t $(get_fstype ${dev}) -o ro ${dev} ${mountp}"
154 if [ "${used}" = "used" ]
156 size=$(du -ks ${mountp} | cut -f1)
157 size=$(expr ${size} + ${size} / 20 ) # FIXME: 5% more to be sure
160 size="$(df -k | grep -s ${mountp} | awk '{print $4}')"
163 if [ -n "${doumount}" ]
165 umount "${mountp}" || log_warning_msg "cannot umount ${mountp}"
175 if [ -x /bin/loadkeys -a -r /etc/boottime.kmap.gz ]
177 loadkeys /etc/boottime.kmap.gz
187 local encryption=${5}
190 modprobe -q -b "${module}"
194 for loopdev in ${pattern}
196 if [ "$(cat ${loopdev}/size)" -eq 0 ]
198 dev=$(sys2dev "${loopdev}")
201 if [ -n "${readonly}" ]
203 if losetup --help 2>&1 | grep -q -- "-r\b"
205 options="${options} -r"
209 if [ 0 -lt "${offset}" ]
211 options="${options} -o ${offset}"
214 if [ -z "${encryption}" ]
216 losetup ${options} "${dev}" "${fspath}"
218 # Loop AES encryption
223 echo -n "Enter passphrase for root filesystem: " >&6
225 echo "${passphrase}" > /tmp/passphrase
227 exec 9</tmp/passphrase
228 /sbin/losetup ${options} -e "${encryption}" -p 9 "${dev}" "${fspath}"
231 rm -f /tmp/passphrase
233 if [ 0 -eq ${error} ]
240 echo -n "There was an error decrypting the root filesystem ... Retry? [Y/n] " >&6
243 if [ "$(echo "${answer}" | cut -b1 | tr A-Z a-z)" = "n" ]
256 panic "No loop devices available"
266 old_mountp="$(where_is_mounted ${dev})"
268 if [ -n "${old_mountp}" ]
270 if [ "${opts}" != "ro" ]
272 mount -o remount,"${opts}" "${dev}" "${old_mountp}" || panic "Remounting ${dev} ${opts} on ${old_mountp} failed"
275 mount -o bind "${old_mountp}" "${mountp}" || panic "Cannot bind-mount ${old_mountp} on ${mountp}"
277 if [ -z "${fstype}" ]
279 fstype=$(get_fstype "${dev}")
281 mount -t "${fstype}" -o "${opts}" "${dev}" "${mountp}" || \
282 ( echo "SKIPPING: Cannot mount ${dev} on ${mountp}, fstype=${fstype}, options=${opts}" > live.log && return 0 )
288 # Returns a device containing a partition labeled "${pers_label}" or containing a file named the same way
289 # in the latter case the partition containing the file is left mounted
290 # if is not in black_listed_devices
292 cow_backing="/${pers_label}-backing"
293 black_listed_devices="${2}"
295 if [ -z "${PERSISTENT_PATH}" ]
297 pers_fpath=${cow_backing}/${pers_label}
299 pers_fpath=${cow_backing}/${PERSISTENT_PATH}/${pers_label}
302 for sysblock in $(echo /sys/block/* | tr ' ' '\n' | grep -v loop | grep -v ram | grep -v fd)
304 for dev in $(subdevices "${sysblock}")
306 devname=$(sys2dev "${dev}")
308 if echo "${black_listed_devices}" | grep -q "${devname}"
310 # skip this device enterely
314 # Checking for a luks device
315 if [ "${PERSISTENT}" = "cryptsetup" ] && [ -e /sbin/cryptsetup ] && /sbin/cryptsetup isLuks ${devname}
321 /lib/cryptsetup/askpass "Enter passphrase for ${pers_label} on ${devname}: " | /sbin/cryptsetup -T 1 luksOpen ${devname} $(basename ${devname}) --key-file=-
324 devname="/dev/mapper/$(basename ${devname})"
326 if [ 0 -eq ${error} ]
333 echo -n "There was an error decrypting ${devname} ... Retry? [Y/n] " >&6
336 if [ "$(echo "${answer}" | cut -b1 | tr A-Z a-z)" = "n" ]
344 # udev (>= 146) no longer provides vol_id
345 if [ -x /lib/udev/vol_id ]
348 if [ "$(/lib/udev/vol_id -l ${devname} 2>/dev/null)" = "${pers_label}" ]
355 if [ "$(/sbin/blkid -s LABEL -o value $devname 2>/dev/null)" = "${pers_label}" ]
362 if [ "${PERSISTENT}" = "nofiles" ]
364 # do not mount the device to find for image files
369 case "$(get_fstype ${devname})" in
370 vfat|ext2|ext3|ext4|jffs2)
371 mkdir -p "${cow_backing}"
372 if try_mount "${devname}" "${cow_backing}" "rw"
374 if [ -f "${pers_fpath}" ]
376 echo $(setup_loop "${pers_fpath}" "loop" "/sys/block/loop*")
379 umount ${cow_backing} > /dev/null 2>&1 || true
393 # return the a string composed by device name, mountpoint an the first of ${filenames} found on a supported partition
394 # FIXME: merge with above function
397 snap_backing="/snap-backing"
398 black_listed_devices="${2}"
400 for sysblock in $(echo /sys/block/* | tr ' ' '\n' | grep -v loop | grep -v ram | grep -v fd)
402 for dev in $(subdevices "${sysblock}")
404 devname=$(sys2dev "${dev}")
405 devfstype="$(get_fstype ${devname})"
407 if echo "${black_listed_devices}" | grep -q "${devname}"
409 # skip this device enterely
413 if is_supported_fs ${devfstype}
415 mkdir -p "${snap_backing}"
417 if try_mount "${devname}" "${snap_backing}" "ro" "${devfstype}"
419 for filename in ${filenames}
421 if [ -f "${snap_backing}/${filename}" ]
423 echo "${devname} ${snap_backing} ${filename}"
424 umount ${snap_backing}
430 umount ${snap_backing}
440 for adaptor in /sys/class/net/*
442 status="$(cat ${adaptor}/iflink)"
444 if [ "${status}" -eq 2 ]
446 mac="$(cat ${adaptor}/address)"
447 mac="$(echo ${mac} | sed 's/:/-/g' | tr '[a-z]' '[A-Z]')"
457 if [ -x /sbin/cryptsetup ]
459 /sbin/cryptsetup isLuks "${devname}" 2>/dev/null || ret=${?}