2009-10-08 21:41:22 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# set -e
|
|
|
|
|
|
|
|
export PATH=/usr/bin:/usr/sbin:/bin:/sbin
|
|
|
|
|
|
|
|
mountpoint=/cdrom
|
|
|
|
LIVE_MEDIA_PATH=casper
|
2011-05-20 14:25:04 +02:00
|
|
|
LIVE_ROOTFS=filesystem.squashfs
|
2009-10-08 21:41:22 +02:00
|
|
|
|
|
|
|
USERNAME=casper
|
|
|
|
USERFULLNAME="Live session user"
|
|
|
|
HOST=live
|
|
|
|
BUILD_SYSTEM=Custom
|
|
|
|
|
|
|
|
mkdir -p $mountpoint
|
2010-05-17 17:44:20 +02:00
|
|
|
tried=/tmp/tried
|
2009-10-08 21:41:22 +02:00
|
|
|
|
|
|
|
[ -f /etc/casper.conf ] && . /etc/casper.conf
|
|
|
|
export USERNAME USERFULLNAME HOST BUILD_SYSTEM
|
|
|
|
|
2011-03-11 08:05:59 +01:00
|
|
|
. /scripts/functions
|
2009-10-08 21:41:22 +02:00
|
|
|
. /scripts/casper-helpers
|
|
|
|
|
|
|
|
if [ ! -f /casper.vars ]; then
|
|
|
|
touch /casper.vars
|
|
|
|
fi
|
|
|
|
|
2011-05-20 14:25:04 +02:00
|
|
|
parse_cmdline()
|
|
|
|
{
|
2009-10-08 21:41:22 +02:00
|
|
|
for x in $(cat /proc/cmdline); do
|
|
|
|
case $x in
|
|
|
|
union=*)
|
|
|
|
export UNIONFS="${x#union=}";;
|
|
|
|
ignore_uuid)
|
|
|
|
IGNORE_UUID="Yes" ;;
|
2011-05-20 14:25:04 +02:00
|
|
|
live-rootfs=*)
|
|
|
|
LIVE_ROOTFS="${x#live-rootfs=}"
|
|
|
|
export LIVE_ROOTFS
|
|
|
|
echo "export LIVE_ROOTFS=\"$LIVE_ROOTFS\"" >> /etc/casper.conf ;;
|
2009-10-08 21:41:22 +02:00
|
|
|
live-media-path=*)
|
|
|
|
LIVE_MEDIA_PATH="${x#live-media-path=}"
|
|
|
|
export LIVE_MEDIA_PATH
|
2010-05-17 17:44:20 +02:00
|
|
|
echo "export LIVE_MEDIA_PATH=\"$LIVE_MEDIA_PATH\"" >> /etc/casper.conf ;;
|
|
|
|
toram)
|
|
|
|
export TORAM="Yes" ;;
|
|
|
|
todisk=*)
|
|
|
|
export TODISK="${x#todisk=}" ;;
|
2009-10-08 21:41:22 +02:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
if [ "${UNIONFS}" = "" ]; then
|
2009-10-12 18:46:43 +02:00
|
|
|
export UNIONFS="unionfs"
|
2009-10-08 21:41:22 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2011-05-20 14:25:04 +02:00
|
|
|
is_casper_path()
|
|
|
|
{
|
|
|
|
local path=$1
|
|
|
|
|
2009-10-08 21:41:22 +02:00
|
|
|
if [ -d "$path/$LIVE_MEDIA_PATH" ]; then
|
2009-10-12 18:46:43 +02:00
|
|
|
if [ "$(echo $path/$LIVE_MEDIA_PATH/*.squashfs)" != \
|
2011-05-20 14:25:04 +02:00
|
|
|
"$path/$LIVE_MEDIA_PATH/*.squashfs" ]; then
|
2009-10-08 21:41:22 +02:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2011-05-20 14:25:04 +02:00
|
|
|
matches_uuid()
|
|
|
|
{
|
2009-10-08 21:41:22 +02:00
|
|
|
if [ "$IGNORE_UUID" ] || [ ! -e /conf/uuid.conf ]; then
|
|
|
|
return 0
|
|
|
|
fi
|
2011-05-20 14:25:04 +02:00
|
|
|
local path="$1"
|
|
|
|
local uuid="$(cat /conf/uuid.conf)"
|
|
|
|
|
2009-10-08 21:41:22 +02:00
|
|
|
for try_uuid_file in "$path/.disk/casper-uuid"*; do
|
|
|
|
[ -e "$try_uuid_file" ] || continue
|
|
|
|
try_uuid="$(cat "$try_uuid_file")"
|
|
|
|
if [ "$uuid" = "$try_uuid" ]; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2011-05-20 14:25:04 +02:00
|
|
|
get_backing_device()
|
|
|
|
{
|
2009-10-08 21:41:22 +02:00
|
|
|
case "$1" in
|
2011-05-20 14:25:04 +02:00
|
|
|
*.squashfs)
|
2009-10-08 21:41:22 +02:00
|
|
|
echo $(setup_loop "$1" "loop" "/sys/block/loop*")
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
panic "Unrecognized casper filesystem: $1"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2011-05-20 14:25:04 +02:00
|
|
|
mount_image_in_directory()
|
|
|
|
{
|
|
|
|
local directory="$1"
|
|
|
|
local rootmnt="$2"
|
2009-10-08 21:41:22 +02:00
|
|
|
|
2011-05-20 14:25:04 +02:00
|
|
|
if [ ! -f "$directory/$LIVE_MEDIA_PATH/$LIVE_ROOTFS" ]; then
|
|
|
|
panic "Cannot find $directory/$LIVE_MEDIA_PATH/$LIVE_ROOTFS"
|
2009-10-08 21:41:22 +02:00
|
|
|
fi
|
|
|
|
|
2011-05-20 14:25:04 +02:00
|
|
|
setup_unionfs "$directory/$LIVE_MEDIA_PATH" "$rootmnt"
|
2009-10-08 21:41:22 +02:00
|
|
|
}
|
|
|
|
|
2011-05-20 14:25:04 +02:00
|
|
|
is_nice_device()
|
|
|
|
{
|
|
|
|
local sysfs_path="${1#/sys}"
|
|
|
|
|
2011-10-23 17:04:05 +02:00
|
|
|
if /sbin/udevadm test-builtin path_id "${sysfs_path}" | \
|
|
|
|
egrep -q "ID_PATH=(usb|pci-[^-]*-(ide|scsi|usb)|platform-orion-ehci|platform-mmc|platform-mxsdhci)"; then
|
2010-05-17 17:44:20 +02:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
if echo ${sysfs_path} | grep -q "^/block/dm-"; then
|
2009-10-08 21:41:22 +02:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2011-05-20 14:25:04 +02:00
|
|
|
copy_live_to()
|
|
|
|
{
|
|
|
|
local copyfrom="${1}"
|
|
|
|
local copytodev="${2}"
|
|
|
|
local copyto="${copyfrom}_swap"
|
|
|
|
local size freespace mount_options free_string fstype dev
|
2009-10-08 21:41:22 +02:00
|
|
|
|
|
|
|
size=$(fs_size "" ${copyfrom} "used")
|
|
|
|
|
|
|
|
if [ "${copytodev}" = "ram" ]; then
|
|
|
|
# copying to ram:
|
2010-05-17 17:44:20 +02:00
|
|
|
freespace=$(awk '/^MemFree:/{f=$2} /^Cached:/{c=$2} END{print f+c}' /proc/meminfo)
|
2009-10-08 21:41:22 +02:00
|
|
|
mount_options="-o size=${size}k"
|
|
|
|
free_string="memory"
|
|
|
|
fstype="tmpfs"
|
|
|
|
dev="/dev/shm"
|
|
|
|
else
|
|
|
|
# it should be a writable block device
|
|
|
|
if [ -b "${copytodev}" ]; then
|
|
|
|
dev="${copytodev}"
|
|
|
|
free_string="space"
|
|
|
|
fstype=$(get_fstype "${dev}")
|
|
|
|
freespace=$(fs_size "${dev}")
|
|
|
|
else
|
2009-10-12 18:46:43 +02:00
|
|
|
[ "$quiet" != "y" ] && \
|
|
|
|
log_warning_msg "${copytodev} is not a block device."
|
2009-10-08 21:41:22 +02:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ "${freespace}" -lt "${size}" ] ; then
|
|
|
|
[ "$quiet" != "y" ] && log_warning_msg "Not enough free ${free_string} (${freespace}k > ${size}k) to copy live media in ${copytodev}."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# begin copying..
|
|
|
|
mkdir "${copyto}"
|
|
|
|
echo "mount -t ${fstype} ${mount_options} ${dev} ${copyto}"
|
|
|
|
mount -t "${fstype}" ${mount_options} "${dev}" "${copyto}"
|
2009-10-12 18:46:43 +02:00
|
|
|
# "cp -a" from busybox also copies hidden files
|
|
|
|
cp -a ${copyfrom}/* ${copyto}
|
2009-10-08 21:41:22 +02:00
|
|
|
umount ${copyfrom}
|
|
|
|
mount -r -o move ${copyto} ${copyfrom}
|
|
|
|
rmdir ${copyto}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2011-05-20 14:25:04 +02:00
|
|
|
setup_unionfs()
|
2009-10-08 21:41:22 +02:00
|
|
|
{
|
2011-05-20 14:25:04 +02:00
|
|
|
local image_directory="$1"
|
|
|
|
local rootmnt="$2"
|
|
|
|
local croot rofsstring rofslist roopt image imagename backdev
|
|
|
|
local fstype cowdevice cow_fstrype cow_mountopt
|
2009-10-08 21:41:22 +02:00
|
|
|
|
|
|
|
case ${UNIONFS} in
|
|
|
|
aufs|unionfs)
|
|
|
|
modprobe "${MP_QUIET}" -b ${UNIONFS} || true
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# run-init can't deal with images in a subdir, but we're going to
|
|
|
|
# move all of these away before it runs anyway. No, we're not,
|
|
|
|
# put them in / since move-mounting them into / breaks mono and
|
|
|
|
# some other apps.
|
|
|
|
croot="/"
|
|
|
|
|
|
|
|
# Let's just mount the read-only file systems first
|
|
|
|
rofsstring=""
|
|
|
|
rofslist=""
|
2011-05-20 14:25:04 +02:00
|
|
|
if [ "${UNIONFS}" = "aufs" ]; then
|
2009-10-08 21:41:22 +02:00
|
|
|
roopt="rr"
|
|
|
|
else
|
|
|
|
roopt="ro"
|
|
|
|
fi
|
|
|
|
|
|
|
|
mkdir -p "${croot}"
|
2011-05-20 14:25:04 +02:00
|
|
|
image="${image_directory}/${LIVE_ROOTFS}"
|
|
|
|
imagename=$(basename "$image")
|
|
|
|
backdev=$(get_backing_device "$image")
|
|
|
|
fstype=$(get_fstype "${backdev}")
|
|
|
|
if [ "${fstype}" = "unknown" ]; then
|
|
|
|
panic "Unknown file system type on ${backdev} (${image})"
|
|
|
|
fi
|
|
|
|
mkdir -p "${croot}/${imagename}"
|
|
|
|
mount -t "${fstype}" -o ro,noatime "${backdev}" "${croot}/${imagename}" \
|
|
|
|
|| panic "Can not mount $backdev ($image) on ${croot}/${imagename}"
|
|
|
|
|
|
|
|
rofsstring="${croot}/${imagename}=${roopt}:${rofsstring}"
|
|
|
|
rofslist="${croot}/${imagename} ${rofslist}"
|
2009-10-08 21:41:22 +02:00
|
|
|
rofsstring=${rofsstring%:}
|
|
|
|
|
|
|
|
mkdir -p /cow
|
|
|
|
cowdevice="tmpfs"
|
|
|
|
cow_fstype="tmpfs"
|
|
|
|
cow_mountopt="rw,noatime,mode=755"
|
|
|
|
|
2009-10-12 18:46:43 +02:00
|
|
|
mount -t ${cow_fstype} -o ${cow_mountopt} ${cowdevice} \
|
|
|
|
/cow || panic "Can not mount $cowdevice on /cow"
|
|
|
|
mount -t ${UNIONFS} -o noatime,dirs=/cow=rw:$rofsstring \
|
|
|
|
${UNIONFS} "$rootmnt" || panic "${UNIONFS} mount failed"
|
2009-10-08 21:41:22 +02:00
|
|
|
|
|
|
|
# move the first mount.
|
|
|
|
mkdir -p "${rootmnt}/rofs"
|
2011-05-20 14:25:04 +02:00
|
|
|
mount -o move ${croot}${imagename} "${rootmnt}/rofs"
|
2009-10-08 21:41:22 +02:00
|
|
|
}
|
|
|
|
|
2011-05-20 14:25:04 +02:00
|
|
|
check_dev()
|
2009-10-08 21:41:22 +02:00
|
|
|
{
|
2011-05-20 14:25:04 +02:00
|
|
|
local sysdev="${1}"
|
|
|
|
local devname="${2}"
|
|
|
|
local skip_uuid_check="${3}"
|
|
|
|
local loopdevname devuid
|
|
|
|
|
2009-10-08 21:41:22 +02:00
|
|
|
if [ -z "${devname}" ]; then
|
|
|
|
devname=$(sys2dev "${sysdev}")
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -d "${devname}" ]; then
|
|
|
|
mount -o bind "${devname}" $mountpoint || continue
|
|
|
|
if is_casper_path $mountpoint; then
|
|
|
|
echo $mountpoint
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
umount $mountpoint
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2010-05-17 17:44:20 +02:00
|
|
|
[ -e "$devname" ] || continue
|
|
|
|
|
2009-10-08 21:41:22 +02:00
|
|
|
if [ -n "${LIVEMEDIA_OFFSET}" ]; then
|
|
|
|
loopdevname=$(setup_loop "${devname}" "loop" "/sys/block/loop*" "${LIVEMEDIA_OFFSET}")
|
|
|
|
devname="${loopdevname}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
fstype=$(get_fstype "${devname}")
|
|
|
|
if is_supported_fs ${fstype}; then
|
2010-05-17 17:44:20 +02:00
|
|
|
devuid=$(blkid -o value -s UUID "$devname")
|
|
|
|
[ -n "$devuid" ] && grep -qs "\<$devuid\>" $tried && continue
|
2009-10-08 21:41:22 +02:00
|
|
|
mount -t ${fstype} -o ro,noatime "${devname}" $mountpoint || continue
|
2010-05-17 17:44:20 +02:00
|
|
|
[ -n "$devuid" ] && echo "$devuid" >> $tried
|
2009-10-08 21:41:22 +02:00
|
|
|
if is_casper_path $mountpoint && \
|
|
|
|
([ "$skip_uuid_check" ] || matches_uuid $mountpoint); then
|
|
|
|
echo $mountpoint
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
umount $mountpoint
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "${LIVEMEDIA_OFFSET}" ]; then
|
|
|
|
losetup -d "${loopdevname}"
|
|
|
|
fi
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2011-05-20 14:25:04 +02:00
|
|
|
find_livefs()
|
|
|
|
{
|
|
|
|
local timeout="${1}"
|
|
|
|
local devname fstype dev
|
|
|
|
|
2009-10-08 21:41:22 +02:00
|
|
|
# first look at the one specified in the command line
|
|
|
|
if [ ! -z "${LIVEMEDIA}" ]; then
|
|
|
|
if check_dev "null" "${LIVEMEDIA}" "skip_uuid_check"; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
# don't start autodetection before timeout has expired
|
|
|
|
if [ -n "${LIVEMEDIA_TIMEOUT}" ]; then
|
|
|
|
if [ "${timeout}" -lt "${LIVEMEDIA_TIMEOUT}" ]; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
# or do the scan of block devices
|
2009-10-12 18:46:43 +02:00
|
|
|
for sysblock in \
|
|
|
|
$(echo /sys/block/* | tr ' ' '\n' | grep -vE "/(loop|ram|fd)"); do
|
2009-10-08 21:41:22 +02:00
|
|
|
devname=$(sys2dev "${sysblock}")
|
2010-05-17 17:44:20 +02:00
|
|
|
[ -e "$devname" ] || continue
|
2009-10-08 21:41:22 +02:00
|
|
|
fstype=$(get_fstype "${devname}")
|
|
|
|
if /lib/udev/cdrom_id ${devname} > /dev/null; then
|
|
|
|
if check_dev "null" "${devname}" ; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
elif is_nice_device "${sysblock}" ; then
|
|
|
|
for dev in $(subdevices "${sysblock}"); do
|
|
|
|
if check_dev "${dev}" ; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
done
|
2011-05-20 14:25:04 +02:00
|
|
|
elif [ "${fstype}" = "squashfs" ]; then
|
2009-10-08 21:41:22 +02:00
|
|
|
# This is an ugly hack situation, the block device has
|
|
|
|
# an image directly on it. It's hopefully
|
|
|
|
# casper, so take it and run with it.
|
|
|
|
ln -s "${devname}" "${devname}.${fstype}"
|
|
|
|
echo "${devname}.${fstype}"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2011-05-20 14:25:04 +02:00
|
|
|
mountroot()
|
|
|
|
{
|
|
|
|
local i livefs_root live_dest
|
|
|
|
|
2009-10-08 21:41:22 +02:00
|
|
|
parse_cmdline
|
|
|
|
wait_for_udev 10
|
|
|
|
|
2009-10-12 18:46:43 +02:00
|
|
|
maybe_break casper-premount
|
2011-03-06 11:13:28 +01:00
|
|
|
log_begin_msg "Running /scripts/casper-premount"
|
2009-10-08 21:41:22 +02:00
|
|
|
run_scripts /scripts/casper-premount
|
2011-03-06 11:13:28 +01:00
|
|
|
log_end_msg
|
2009-10-08 21:41:22 +02:00
|
|
|
|
2011-03-06 11:13:28 +01:00
|
|
|
# Scan local devices for the image
|
|
|
|
i=0
|
2011-05-20 14:25:04 +02:00
|
|
|
while [ "$i" -lt 10 ]; do
|
|
|
|
livefs_root=$(find_livefs $i)
|
2011-03-06 11:13:28 +01:00
|
|
|
[ -n "${livefs_root}" ] && break
|
|
|
|
sleep 1
|
|
|
|
i="$(($i + 1))"
|
|
|
|
done
|
2009-10-08 21:41:22 +02:00
|
|
|
|
|
|
|
if [ -z "${livefs_root}" ]; then
|
|
|
|
panic "Unable to find a medium containing a live file system"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${TORAM}" ]; then
|
|
|
|
live_dest="ram"
|
|
|
|
elif [ "${TODISK}" ]; then
|
|
|
|
live_dest="${TODISK}"
|
|
|
|
fi
|
|
|
|
if [ "${live_dest}" ]; then
|
2011-03-06 11:13:28 +01:00
|
|
|
log_begin_msg "Copying live_media to ${live_dest}"
|
2009-10-08 21:41:22 +02:00
|
|
|
copy_live_to "${livefs_root}" "${live_dest}"
|
2011-03-06 11:13:28 +01:00
|
|
|
log_end_msg
|
2009-10-08 21:41:22 +02:00
|
|
|
fi
|
|
|
|
|
2011-05-20 14:25:04 +02:00
|
|
|
mount_image_in_directory "${livefs_root}" "${rootmnt}"
|
2009-10-08 21:41:22 +02:00
|
|
|
|
|
|
|
maybe_break casper-bottom
|
2011-03-06 11:13:28 +01:00
|
|
|
log_begin_msg "Running /scripts/casper-bottom"
|
2009-10-08 21:41:22 +02:00
|
|
|
run_scripts /scripts/casper-bottom
|
2011-03-06 11:13:28 +01:00
|
|
|
log_end_msg
|
2009-10-08 21:41:22 +02:00
|
|
|
}
|