Adding preparations for booting through syslinux memdisk.
[debian-live-boot/hramrach.git] / scripts / live
blob5b5a3b95eda8018ce556238344aaf737d9d01825
1 #!/bin/sh
3 # set -e
5 export PATH="/root/usr/bin:/root/usr/sbin:/root/bin:/root/sbin:/usr/bin:/usr/sbin:/bin:/sbin"
7 echo "/root/lib" >> /etc/ld.so.conf
8 echo "/root/usr/lib" >> /etc/ld.so.conf
10 mountpoint="/live/image"
11 alt_mountpoint="/media"
12 LIVE_MEDIA_PATH="live"
14 root_persistence="live-rw"
15 home_persistence="home-rw"
16 root_snapshot_label="live-sn"
17 home_snapshot_label="home-sn"
19 USERNAME="user"
20 USERFULLNAME="Live user"
21 HOSTNAME="host"
23 mkdir -p "${mountpoint}"
24 tried="/tmp/tried"
26 # Create /etc/mtab for debug purpose and future syncs
27 if [ ! -d /etc ]
28 then
29 mkdir /etc/
32 if [ ! -f /etc/mtab ]
33 then
34 touch /etc/mtab
37 . /scripts/live-helpers
39 if [ ! -f /live.vars ]
40 then
41 touch /live.vars
44 Arguments ()
46 PRESEEDS=""
47 LOCATIONS=""
49 for ARGUMENT in $(cat /proc/cmdline)
51 case "${ARGUMENT}" in
52 skipconfig)
53 NOACCESSIBILITY="Yes"
54 NOFASTBOOT="Yes"
55 NOFSTAB="Yes"
56 NONETWORKING="Yes"
58 export NOACCESSIBILITY NOFASTBOOT NOFSTAB NONETWORKING
61 access=*)
62 ACCESS="${ARGUMENT#access=}"
63 export ACCESS
66 console=*)
67 DEFCONSOLE="${ARGUMENT#*=}"
68 export DEFCONSOLE
71 debug)
72 DEBUG="Yes"
73 export DEBUG
75 set -x
78 dhcp)
79 # Force dhcp even while netbooting
80 # Use for debugging in case somebody works on fixing dhclient
81 DHCP="Force";
82 export DHCP
85 nodhcp)
86 unset DHCP
89 ethdevice=*)
90 DEVICE="${ARGUMENT#ethdevice=}"
91 export DEVICE
94 ethdevice=*)
95 ETHDEVICE="${ARGUMENT#ethdevice=}"
96 export ETHDEVICE
99 ethdevice-timeout=*)
100 ETHDEV_TIMEOUT="${ARGUMENT#ethdevice-timeout=}"
101 export ETHDEV_TIMEOUT
104 fetch=*)
105 FETCH="${ARGUMENT#fetch=}"
106 export FETCH
109 forcepersistentfsck)
110 FORCEPERSISTENTFSCK="Yes"
111 export FORCEPERSISTENTFSCK
114 ftpfs=*)
115 FTPFS="${ARGUMENT#ftpfs=}"
116 export FTPFS
119 httpfs=*)
120 HTTPFS="${ARGUMENT#httpfs=}"
121 export HTTPFS
124 iscsi=*)
125 ISCSI="${ARGUMENT#iscsi=}"
126 #ip:port - separated by ;
127 ISCSI_PORTAL="${ISCSI%;*}"
128 if echo "${ISCSI_PORTAL}" | grep -q , ; then
129 ISCSI_SERVER="${ISCSI_PORTAL%,*}"
130 ISCSI_PORT="${ISCSI_PORTAL#*,}"
132 #target name
133 ISCSI_TARGET="${ISCSI#*;}"
134 export ISCSI ISCSI_PORTAL ISCSI_TARGET ISCSI_SERVER ISCSI_PORT
137 isofrom=*|fromiso=*)
138 FROMISO="${ARGUMENT#*=}"
139 export FROMISO
142 ignore_uuid)
143 IGNORE_UUID="Yes"
144 export IGNORE_UUID
147 integrity-check)
148 INTEGRITY_CHECK="Yes"
149 export INTEGRITY_CHECK
152 ip=*)
153 STATICIP="${ARGUMENT#ip=}"
155 if [ -z "${STATICIP}" ]
156 then
157 STATICIP="frommedia"
160 export STATICIP
163 live-getty)
164 LIVE_GETTY="1"
165 export LIVE_GETTY
168 live-media=*|bootfrom=*)
169 LIVE_MEDIA="${ARGUMENT#*=}"
170 export LIVE_MEDIA
173 live-media-encryption=*|encryption=*)
174 LIVE_MEDIA_ENCRYPTION="${ARGUMENT#*=}"
175 export LIVE_MEDIA_ENCRYPTION
178 live-media-offset=*)
179 LIVE_MEDIA_OFFSET="${ARGUMENT#live-media-offset=}"
180 export LIVE_MEDIA_OFFSET
183 live-media-path=*)
184 LIVE_MEDIA_PATH="${ARGUMENT#live-media-path=}"
185 export LIVE_MEDIA_PATH
188 live-media-timeout=*)
189 LIVE_MEDIA_TIMEOUT="${ARGUMENT#live-media-timeout=}"
190 export LIVE_MEDIA_TIMEOUT
193 module=*)
194 MODULE="${ARGUMENT#module=}"
195 export MODULE
198 netboot=*)
199 NETBOOT="${ARGUMENT#netboot=}"
200 export NETBOOT
203 nfsopts=*)
204 NFSOPTS="${ARGUMENT#nfsopts=}"
205 export NFSOPTS
208 nfscow=*)
209 NFS_COW="${ARGUMENT#nfscow=}"
210 export NFS_COW
213 noaccessibility)
214 NOACCESSIBILITY="Yes"
215 export NOACCESSIBILITY
218 nofastboot)
219 NOFASTBOOT="Yes"
220 export NOFASTBOOT
223 nofstab)
224 NOFSTAB="Yes"
225 export NOFSTAB
228 nonetworking)
229 NONETWORKING="Yes"
230 export NONETWORKING
233 swapon)
234 SWAPON="Yes"
235 export SWAPON
238 persistent)
239 PERSISTENT="Yes"
240 export PERSISTENT
243 persistent=*)
244 PERSISTENT="${ARGUMENT#persistent=}"
245 if [ -z "${PERSISTENT}" ]
246 then
247 PERSISTENT="Yes"
249 export PERSISTENT
252 persistent-path=*)
253 PERSISTENT_PATH="${ARGUMENT#persistent-path=}"
254 export PERSISTENT_PATH
257 persistent-subtext=*)
258 root_persistence="${root_persistence}-${ARGUMENT#persistent-subtext=}"
259 home_persistence="${home_persistence}-${ARGUMENT#persistent-subtext=}"
260 root_snapshot_label="${root_snapshot_label}-${ARGUMENT#persistent-subtext=}"
261 home_snapshot_label="${home_snapshot_label}-${ARGUMENT#persistent-subtext=}"
264 nopersistent)
265 NOPERSISTENT="Yes"
266 export NOPERSISTENT
269 quickusbmodules)
270 QUICKUSBMODULES="Yes"
271 export QUICKUSBMODULES
274 preseed/file=*|file=*)
275 LOCATIONS="${ARGUMENT#*=} ${LOCATIONS}"
276 export LOCATIONS
279 nopreseed)
280 NOPRESEED="Yes"
281 export NOPRESEED
284 */*=*)
285 question="${ARGUMENT%%=*}"
286 value="${ARGUMENT#*=}"
287 PRESEEDS="${PRESEEDS}\"${question}=${value}\" "
288 export PRESEEDS
291 showmounts)
292 SHOWMOUNTS="Yes"
293 export SHOWMOUNTS
296 silent)
297 SILENT="Yes"
298 export SILENT
301 todisk=*)
302 TODISK="${ARGUMENT#todisk=}"
303 export TODISK
306 toram)
307 TORAM="Yes"
308 export TORAM
311 toram=*)
312 TORAM="Yes"
313 MODULETORAM="${ARGUMENT#toram=}"
314 export TORAM MODULETORAM
317 exposedroot)
318 EXPOSED_ROOT="Yes"
319 export EXPOSED_ROOT
322 plainroot)
323 PLAIN_ROOT="Yes"
324 export PLAIN_ROOT
327 skipunion)
328 SKIP_UNION_MOUNTS="Yes"
329 export SKIP_UNION_MOUNTS
332 root=*)
333 ROOT="${ARGUMENT#root=}"
334 export ROOT
337 union=*)
338 UNIONTYPE="${ARGUMENT#union=}"
339 export UNIONTYPE
341 esac
342 done
344 # sort of compatibility with netboot.h from linux docs
345 if [ -z "${NETBOOT}" ]
346 then
347 if [ "${ROOT}" = "/dev/nfs" ]
348 then
349 NETBOOT="nfs"
350 export NETBOOT
351 elif [ "${ROOT}" = "/dev/cifs" ]
352 then
353 NETBOOT="cifs"
354 export NETBOOT
358 if [ -z "${MODULE}" ]
359 then
360 MODULE="filesystem"
361 export MODULE
364 if [ -z "${UNIONTYPE}" ]
365 then
366 UNIONTYPE="aufs"
367 export UNIONTYPE
371 is_live_path ()
373 DIRECTORY="${1}"
375 if [ -d "${DIRECTORY}"/"${LIVE_MEDIA_PATH}" ]
376 then
377 for FILESYSTEM in squashfs ext2 ext3 ext4 xfs dir jffs2
379 if [ "$(echo ${DIRECTORY}/${LIVE_MEDIA_PATH}/*.${FILESYSTEM})" != "${DIRECTORY}/${LIVE_MEDIA_PATH}/*.${FILESYSTEM}" ]
380 then
381 return 0
383 done
386 return 1
389 matches_uuid ()
391 if [ "${IGNORE_UUID}" ] || [ ! -e /conf/uuid.conf ]
392 then
393 return 0
396 path="${1}"
397 uuid="$(cat /conf/uuid.conf)"
399 for try_uuid_file in "${path}/.disk/live-uuid"*
401 [ -e "${try_uuid_file}" ] || continue
403 try_uuid="$(cat "${try_uuid_file}")"
405 if [ "${uuid}" = "${try_uuid}" ]
406 then
407 return 0
409 done
411 return 1
414 get_backing_device ()
416 case "${1}" in
417 *.squashfs|*.ext2|*.ext3|*.ext4|*.jffs2)
418 echo $(setup_loop "${1}" "loop" "/sys/block/loop*" '0' "${LIVE_MEDIA_ENCRYPTION}" "${2}")
421 *.dir)
422 echo "directory"
426 panic "Unrecognized live filesystem: ${1}"
428 esac
431 match_files_in_dir ()
433 # Does any files match pattern ${1} ?
434 local pattern="${1}"
436 if [ "$(echo ${pattern})" != "${pattern}" ]
437 then
438 return 0
441 return 1
444 mount_images_in_directory ()
446 directory="${1}"
447 rootmnt="${2}"
448 mac="${3}"
451 if match_files_in_dir "${directory}/${LIVE_MEDIA_PATH}/*.squashfs" ||
452 match_files_in_dir "${directory}/${LIVE_MEDIA_PATH}/*.ext2" ||
453 match_files_in_dir "${directory}/${LIVE_MEDIA_PATH}/*.ext3" ||
454 match_files_in_dir "${directory}/${LIVE_MEDIA_PATH}/*.ext4" ||
455 match_files_in_dir "${directory}/${LIVE_MEDIA_PATH}/*.jffs2" ||
456 match_files_in_dir "${directory}/${LIVE_MEDIA_PATH}/*.dir"
457 then
458 [ -n "${mac}" ] && adddirectory="${directory}/${LIVE_MEDIA_PATH}/${mac}"
459 setup_unionfs "${directory}/${LIVE_MEDIA_PATH}" "${rootmnt}" "${adddirectory}"
460 else
461 panic "No supported filesystem images found at /${LIVE_MEDIA_PATH}."
465 is_nice_device ()
467 sysfs_path="${1#/sys}"
469 if /lib/udev/path_id "${sysfs_path}" | egrep -q "ID_PATH=(usb|pci-|platform-orion-ehci|platform-mmc|platform-mxsdhci|)"
470 then
471 return 0
472 elif echo "${sysfs_path}" | grep -q '^/block/vd[a-z]$'
473 then
474 return 0
475 elif echo ${sysfs_path} | grep -q "^/block/dm-"
476 then
477 return 0
480 return 1
483 copy_live_to ()
485 copyfrom="${1}"
486 copytodev="${2}"
487 copyto="${copyfrom}_swap"
489 if [ -z "${MODULETORAM}" ]
490 then
491 size=$(fs_size "" ${copyfrom}/${LIVE_MEDIA_PATH} "used")
492 else
493 MODULETORAMFILE="${copyfrom}/${LIVE_MEDIA_PATH}/${MODULETORAM}"
495 if [ -f "${MODULETORAMFILE}" ]
496 then
497 size=$( expr $(ls -la ${MODULETORAMFILE} | awk '{print $5}') / 1024 + 5000 )
498 else
499 log_warning_msg "Error: toram-module ${MODULETORAM} (${MODULETORAMFILE}) could not be read."
500 return 1
504 if [ "${copytodev}" = "ram" ]
505 then
506 # copying to ram:
507 freespace=$(awk '/^MemFree:/{f=$2} /^Cached:/{c=$2} END{print f+c}' /proc/meminfo)
508 mount_options="-o size=${size}k"
509 free_string="memory"
510 fstype="tmpfs"
511 dev="/dev/shm"
512 else
513 # it should be a writable block device
514 if [ -b "${copytodev}" ]
515 then
516 dev="${copytodev}"
517 free_string="space"
518 fstype=$(get_fstype "${dev}")
519 freespace=$(fs_size "${dev}")
520 else
521 log_warning_msg "${copytodev} is not a block device."
522 return 1
526 if [ "${freespace}" -lt "${size}" ]
527 then
528 log_warning_msg "Not enough free ${free_string} (${freespace}k free, ${size}k needed) to copy live media in ${copytodev}."
529 return 1
532 # begin copying (or uncompressing)
533 mkdir "${copyto}"
534 log_begin_msg "mount -t ${fstype} ${mount_options} ${dev} ${copyto}"
535 mount -t "${fstype}" ${mount_options} "${dev}" "${copyto}"
537 if [ "${extension}" = "tgz" ]
538 then
539 cd "${copyto}"
540 tar zxf "${copyfrom}/${LIVE_MEDIA_PATH}/$(basename ${FETCH})"
541 rm -f "${copyfrom}/${LIVE_MEDIA_PATH}/$(basename ${FETCH})"
542 mount -r -o move "${copyto}" "${rootmnt}"
543 cd "${OLDPWD}"
544 else
545 if [ -n "${MODULETORAMFILE}" ]
546 then
547 if [ -x /bin/rsync ]
548 then
549 echo " * Copying $MODULETORAMFILE to RAM" 1>/dev/console
550 rsync -a --progress ${MODULETORAMFILE} ${copyto} 1>/dev/console # copy only the filesystem module
551 else
552 cp ${MODULETORAMFILE} ${copyto} # copy only the filesystem module
554 else
555 if [ -x /bin/rsync ]
556 then
557 echo " * Copying whole medium to RAM" 1>/dev/console
558 rsync -a --progress ${copyfrom}/* ${copyto} 1>/dev/console # "cp -a" from busybox also copies hidden files
559 else
560 mkdir -p ${copyto}/${LIVE_MEDIA_PATH}
561 cp -a ${copyfrom}/${LIVE_MEDIA_PATH}/* ${copyto}/${LIVE_MEDIA_PATH}
562 if [ -e ${copyfrom}/${LIVE_MEDIA_PATH}/.disk ]
563 then
564 cp -a ${copyfrom}/${LIVE_MEDIA_PATH}/.disk ${copyto}
569 umount ${copyfrom}
570 mount -r -o move ${copyto} ${copyfrom}
573 rmdir ${copyto}
574 return 0
577 do_netsetup ()
579 modprobe -q af_packet # For DHCP
581 udevadm trigger
582 udevadm settle
584 if [ -z "${NETBOOT}" ] && [ -z "${FETCH}" ] && \
585 [ -z "${HTTPFS}" ] && [ -z "${FTPFS}" ]
586 then
588 # if ethdevice was not specified on the kernel command line
589 # make sure we try to get a working network configuration
590 # for *every* present network device (except for loopback of course)
591 if [ -z "$ETHDEVICE" ] ; then
592 echo "If you want to boot from a specific device use bootoption ethdevice=..."
593 for device in /sys/class/net/*; do
594 dev=${device##*/} ;
595 if [ "$dev" != "lo" ] ; then
596 ETHDEVICE="$ETHDEVICE $dev"
598 done
601 # split args of ethdevice=eth0,eth1 into "eth0 eth1"
602 for device in $(echo $ETHDEVICE | sed 's/,/ /g') ; do
603 devlist="$devlist $device"
604 done
606 [ -n "$ETHDEV_TIMEOUT" ] || ETHDEV_TIMEOUT=15
607 echo "Using timeout of $ETHDEV_TIMEOUT seconds for network configuration."
609 # this is tricky (and ugly) because ipconfig sometimes just hangs/runs into
610 # an endless loop; iff execution fails give it two further tries, that's
611 # why we use '$devlist $devlist $devlist' for the other for loop
612 for dev in $devlist $devlist $devlist ; do
613 echo "Executing ipconfig -t $ETHDEV_TIMEOUT $dev"
614 ipconfig -t "$ETHDEV_TIMEOUT" $dev | tee -a /netboot.config &
615 jobid=$!
616 sleep "$ETHDEV_TIMEOUT" ; sleep 1
617 if [ -r /proc/"$jobid"/status ] ; then
618 echo "Killing job $jobid for device $dev as ipconfig ran into recursion..."
619 kill -9 $jobid
622 # if configuration of device worked we should have an assigned
623 # IP address, iff so let's use the according as $DEVICE for later usage
624 # simple and primitive approach which seems to work fine
625 if ifconfig $dev | grep -q 'inet.*addr:' ; then
626 export DEVICE="$dev"
627 break
629 done
631 else
632 ipconfig ${DEVICE} | tee /netboot.config
635 # source relevant ipconfig output
636 OLDHOSTNAME=${HOSTNAME}
637 . /tmp/net-${DEVICE}.conf
638 [ -z ${HOSTNAME} ] && HOSTNAME=${OLDHOSTNAME}
639 export HOSTNAME
641 if [ -n "${DEVICE}" ]
642 then
643 HWADDR="$(cat /sys/class/net/${DEVICE}/address)"
646 # Check if we have a network device at all
647 if ! ls /sys/class/net/"$DEVICE" > /dev/null 2>&1 && \
648 ! ls /sys/class/net/eth0 > /dev/null 2>&1 && \
649 ! ls /sys/class/net/wlan0 > /dev/null 2>&1 && \
650 ! ls /sys/class/net/ath0 > /dev/null 2>&1 && \
651 ! ls /sys/class/net/ra0 > /dev/null 2>&1
652 then
653 panic "No supported network device found, maybe a non-mainline driver is required."
657 do_netmount()
659 do_netsetup
661 if [ "${NFSROOT}" = "auto" ]
662 then
663 NFSROOT=${ROOTSERVER}:${ROOTPATH}
666 rc=1
668 if ( [ -n "${FETCH}" ] || [ -n "${HTTPFS}" ] || [ -n "${FTPFS}" ] )
669 then
670 do_httpmount
671 return $?
674 if [ "${NFSROOT#*:}" = "${NFSROOT}" ] && [ "$NETBOOT" != "cifs" ]
675 then
676 NFSROOT=${ROOTSERVER}:${NFSROOT}
679 log_begin_msg "Trying netboot from ${NFSROOT}"
681 if [ "${NETBOOT}" != "nfs" ] && do_cifsmount
682 then
683 rc=0
684 elif do_nfsmount
685 then
686 NETBOOT="nfs"
687 export NETBOOT
688 rc=0
691 log_end_msg
692 return ${rc}
695 do_iscsi()
697 do_netsetup
698 #modprobe ib_iser
699 modprobe iscsi_tcp
700 local debugopt=""
701 [ "${DEBUG}" == "Yes" ] && debugopt="-d 8"
702 #FIXME this name is supposed to be unique - some date + ifconfig hash?
703 ISCSI_INITIATORNAME="iqn.1993-08.org.debian.live:01:$(echo "${HWADDR}" | sed -e s/://g)"
704 export ISCSI_INITIATORNAME
705 if [ -n "${ISCSI_SERVER}" ] ; then
706 iscsistart $debugopt -i "${ISCSI_INITIATORNAME}" -t "${ISCSI_TARGET}" -g 1 -a "${ISCSI_SERVER}" -p "${ISCSI_PORT}"
707 else
708 iscsistart $debugopt -i "${ISCSI_INITIATORNAME}" -t "${ISCSI_TARGET}" -g 1 -a "${ISCSI_PORTAL}" -p 3260
710 if [ $? != 0 ]
711 then
712 panic "Failed to log into iscsi target"
714 local host="$(ls -d /sys/class/scsi_host/host*/device/iscsi_host:host* \
715 /sys/class/scsi_host/host*/device/iscsi_host/host* | sed -e 's:/device.*::' -e 's:.*host::')"
716 if [ -n "${host}" ]
717 then
718 local devices=""
719 local i=0
720 while [ -z "${devices}" -a $i -lt 60 ]
722 sleep 1
723 devices="$(ls -d /sys/class/scsi_device/${host}*/device/block:* \
724 /sys/class/scsi_device/${host}*/device/block/* | sed -e 's!.*[:/]!!')"
725 i=$(expr $i + 1)
726 echo -ne $i\\r
727 done
728 for dev in $devices
730 if check_dev "null" "/dev/$dev"
731 then
732 NETBOOT="iscsi"
733 export NETBOOT
734 return 0;
736 done
737 panic "Failed to locate a live device on iSCSI devices (tried: $devices)."
738 else
739 panic "Failed to locate iSCSI host in /sys"
743 do_httpmount ()
745 rc=1
747 for webfile in HTTPFS FTPFS FETCH
749 local url="$(eval echo \"\$\{${webfile}\}\")"
750 local extension="$(echo "${url}" | sed 's/\(.*\)\.\(.*\)/\2/')"
752 if [ -n "$url" ]
753 then
754 case "${extension}" in
755 iso|squashfs|tgz|tar)
756 if [ "${extension}" = "iso" ]
757 then
758 mkdir -p "${alt_mountpoint}"
759 dest="${alt_mountpoint}"
760 else
761 local dest="${mountpoint}/${LIVE_MEDIA_PATH}"
762 mount -t ramfs ram "${mountpoint}"
763 mkdir -p "${dest}"
765 if [ "${webfile}" = "FETCH" ]
766 then
767 case "$url" in
768 tftp*)
769 ip="$(dirname $url | sed -e 's|tftp://||g' -e 's|/.*$||g')"
770 rfile="$(echo $url | sed -e "s|tftp://$ip||g")"
771 lfile="$(basename $url)"
772 log_begin_msg "Trying tftp -g -b 10240 -r $rfile -l ${dest}/$lfile $ip"
773 tftp -g -b 10240 -r $rfile -l ${dest}/$lfile $ip
777 log_begin_msg "Trying wget ${url} -O ${dest}/$(basename ${url})"
778 wget "${url}" -O "${dest}/$(basename ${url})"
780 esac
781 else
782 log_begin_msg "Trying to mount ${url} on ${dest}/$(basename ${url})"
783 if [ "${webfile}" = "FTPFS" ]
784 then
785 FUSE_MOUNT="curlftpfs"
786 url="$(dirname ${url})"
787 else
788 FUSE_MOUNT="httpfs"
790 modprobe fuse
791 $FUSE_MOUNT "${url}" "${dest}"
792 FUSE_PID="$(minips h -C "$FUSE_MOUNT" | { read x y ; echo "$x" ; } )"
794 [ ${?} -eq 0 ] && rc=0
795 [ "${extension}" = "tgz" ] && live_dest="ram"
796 if [ "${extension}" = "iso" ]
797 then
798 isoloop=$(setup_loop "${dest}/$(basename "${url}")" "loop" "/sys/block/loop*" "" '')
799 mount -t iso9660 "${isoloop}" "${mountpoint}"
800 rc=${?}
802 break
806 log_begin_msg "Unrecognized archive extension for ${url}"
808 esac
810 done
812 if [ ${rc} != 0 ]
813 then
814 if [ -d "${alt_mountpoint}" ]
815 then
816 umount "${alt_mountpoint}"
817 rmdir "${alt_mountpoint}"
819 umount "${mountpoint}"
820 elif [ "${webfile}" != "FETCH" ] ; then
821 NETBOOT="${webfile}"
822 export NETBOOT
823 if [ -n "${FUSE_PID}" ] ; then
824 echo "${FUSE_PID}" > ${mountpoint}/root.pid
828 return ${rc}
831 do_nfsmount ()
833 rc=1
835 modprobe -q nfs
837 if [ -z "${NFSOPTS}" ]
838 then
839 NFSOPTS=""
842 log_begin_msg "Trying nfsmount -o nolock -o ro ${NFSOPTS} ${NFSROOT} ${mountpoint}"
844 # FIXME: This while loop is an ugly HACK round an nfs bug
846 while [ "$i" -lt 60 ]
848 nfsmount -o nolock -o ro ${NFSOPTS} "${NFSROOT}" "${mountpoint}" && rc=0 && break
849 sleep 1
850 i="$(($i + 1))"
851 done
853 return ${rc}
856 do_cifsmount ()
858 rc=1
860 if [ -x "/sbin/mount.cifs" ]
861 then
862 if [ -z "${NFSOPTS}" ]
863 then
864 CIFSOPTS="-ouser=root,password="
865 else
866 CIFSOPTS="${NFSOPTS}"
869 log_begin_msg "Trying mount.cifs ${NFSROOT} ${mountpoint} ${CIFSOPTS}"
870 modprobe -q cifs
872 if mount.cifs "${NFSROOT}" "${mountpoint}" "${CIFSOPTS}"
873 then
874 rc=0
878 return ${rc}
881 do_snap_copy ()
883 fromdev="${1}"
884 todir="${2}"
885 snap_type="${3}"
886 size=$(fs_size "${fromdev}" "" "used")
888 if [ -b "${fromdev}" ]
889 then
890 # look for free mem
891 if [ -n "${HOMEMOUNTED}" -a "${snap_type}" = "HOME" ]
892 then
893 todev=$(awk -v pat="$(base_path ${todir})" '$2 == pat { print $1 }' /proc/mounts)
894 freespace=$(df -k | awk '/'${todev}'/{print $4}')
895 else
896 freespace=$(awk '/^MemFree:/{f=$2} /^Cached:/{c=$2} END{print f+c}' /proc/meminfo)
899 tomount="/mnt/tmpsnap"
901 if [ ! -d "${tomount}" ]
902 then
903 mkdir -p "${tomount}"
906 fstype=$(get_fstype "${fromdev}")
908 if [ -n "${fstype}" ]
909 then
910 # Copying stuff...
911 mount -o ro -t "${fstype}" "${fromdev}" "${tomount}" || log_warning_msg "Error in mount -t ${fstype} -o ro ${fromdev} ${tomount}"
912 cp -a "${tomount}"/* ${todir}
913 umount "${tomount}"
914 else
915 log_warning_msg "Unrecognized fstype: ${fstype} on ${fromdev}:${snap_type}"
918 rmdir "${tomount}"
920 if echo ${fromdev} | grep -qs loop
921 then
922 losetup -d "${fromdev}"
925 return 0
926 else
927 return 1
929 log_warning_msg "Unable to find the snapshot ${snap_type} medium"
933 find_snap ()
935 # Look for ${snap_label}.* in block devices
936 snap_label="${1}"
938 if [ "${PERSISTENT}" != "nofiles" ]
939 then
940 # search for image files
941 snapdata=$(find_files "${PERSISTENT_PATH}${snap_label}.squashfs ${PERSISTENT_PATH}${snap_label}.cpio.gz ${PERSISTENT_PATH}${snap_label}.ext2 ${PERSISTENT_PATH}${snap_label}.ext3 ${PERSISTENT_PATH}${snap_label}.ext4 ${PERSISTENT_PATH}${snap_label}.jffs2")
944 if [ -z "${snapdata}" ]
945 then
946 snapdata=$(find_cow_device "${snap_label}")
948 echo "${snapdata}"
951 try_snap ()
953 # copy the contents of previously found snapshot to ${snap_mount}
954 # and remember the device and filename for resync on exit in live-boot.init
956 snapdata="${1}"
957 snap_mount="${2}"
958 snap_type="${3}"
960 if [ -n "${snapdata}" ] && [ ! -b "${snapdata}" ]
961 then
962 log_success_msg "found snapshot: ${snapdata}"
963 snapdev="$(echo ${snapdata} | cut -f1 -d ' ')"
964 snapback="$(echo ${snapdata} | cut -f2 -d ' ')"
965 snapfile="$(echo ${snapdata} | cut -f3 -d ' ')"
967 RES=""
968 if ! try_mount "${snapdev}" "${snapback}" "ro"
969 then
970 break
973 if echo "${snapfile}" | grep -qs '\(squashfs\|ext2\|ext3\|ext4\|jffs2\)'
974 then
975 # squashfs, jffs2 or ext2/ext3/ext4 snapshot
976 dev=$(get_backing_device "${snapback}/${snapfile}")
978 do_snap_copy "${dev}" "${snap_mount}" "${snap_type}"
979 RES=$?
980 else
981 # cpio.gz snapshot
983 # Unfortunately klibc's cpio is incompatible with the
984 # rest of the world; everything else requires -u -d,
985 # while klibc doesn't implement them. Try to detect
986 # whether it's in use.
987 cpiopath="$(which cpio)" || true
988 if [ "$cpiopath" ] && grep -aq /lib/klibc "$cpiopath"
989 then
990 cpioargs=
991 else
992 cpioargs='--unconditional --make-directories'
995 if ! (cd "${snap_mount}" && zcat "${snapback}/${snapfile}" | cpio $cpioargs --extract --preserve-modification-time --no-absolute-filenames --sparse 2>/dev/null)
996 then
997 log_warning_msg "failure to \"zcat ${snapback}/${snapfile} | cpio $cpioargs --extract --preserve-modification-time --no-absolute-filenames --sparse\""
1001 umount "${snapback}" || log_warning_msg "failure to \"umount ${snapback}\""
1003 if [ "${RES}" != "0" ]
1004 then
1005 log_warning_msg "Impossible to include the ${snapfile} Snapshot file"
1008 elif [ -b "${snapdata}" ]
1009 then
1010 # Try to find if it could be a snapshot partition
1011 dev="${snapdata}"
1012 log_success_msg "found snapshot ${snap_type} device on ${dev}"
1013 if echo "${dev}" | grep -qs loop
1014 then
1015 # strange things happens, user confused?
1016 snaploop=$( losetup ${dev} | awk '{print $3}' | tr -d '()' )
1017 snapfile=$(basename ${snaploop})
1018 snapdev=$(awk -v pat="$( dirname ${snaploop})" '$2 == pat { print $1 }' /proc/mounts)
1019 else
1020 snapdev="${dev}"
1023 if ! do_snap_copy "${dev}" "${snap_mount}" "${snap_type}"
1024 then
1025 log_warning_msg "Impossible to include the ${snap_type} Snapshot"
1026 return 1
1027 else
1028 if [ -n "${snapfile}" ]
1029 then
1030 # it was a loop device, user confused
1031 umount ${snapdev}
1034 else
1035 log_warning_msg "Impossible to include the ${snap_type} Snapshot"
1036 return 1
1039 echo "export ${snap_type}SNAP="/cow${snap_mount#$rootmnt}":${snapdev}:${snapfile}" >> /etc/live.conf # for resync on reboot/halt
1040 return 0
1043 setup_unionfs ()
1045 image_directory="${1}"
1046 rootmnt="${2}"
1047 addimage_directory="${3}"
1049 case ${UNIONTYPE} in
1050 aufs|unionfs)
1051 modprobe -q -b ${UNIONTYPE}
1053 if ! cut -f2 /proc/filesystems | grep -q "^${UNIONTYPE}\$" && [ -x /bin/unionfs-fuse ]
1054 then
1055 echo "${UNIONTYPE} not available, falling back to unionfs-fuse."
1056 echo "This might be really slow."
1058 UNIONTYPE="unionfs-fuse"
1061 esac
1063 if [ "${UNIONTYPE}" = unionfs-fuse ]
1064 then
1065 modprobe fuse
1068 # run-init can't deal with images in a subdir, but we're going to
1069 # move all of these away before it runs anyway. No, we're not,
1070 # put them in / since move-mounting them into / breaks mono and
1071 # some other apps.
1073 croot="/"
1075 # Let's just mount the read-only file systems first
1076 rofsstring=""
1077 rofslist=""
1079 if [ "${UNIONTYPE}" = "aufs" ]
1080 then
1081 roopt="rr"
1082 noxino_opt="noxino,"
1083 elif [ "${UNIONTYPE}" = "unionfs-fuse" ]
1084 then
1085 roopt="RO"
1086 else
1087 roopt="ro"
1090 if [ -z "${PLAIN_ROOT}" ]
1091 then
1092 # Read image names from ${MODULE}.module if it exists
1093 if [ -e "${image_directory}/filesystem.${MODULE}.module" ]
1094 then
1095 for IMAGE in $(cat ${image_directory}/filesystem.${MODULE}.module)
1097 image_string="${image_string} ${image_directory}/${IMAGE}"
1098 done
1099 elif [ -e "${image_directory}/${MODULE}.module" ]
1100 then
1101 for IMAGE in $(cat ${image_directory}/${MODULE}.module)
1103 image_string="${image_string} ${image_directory}/${IMAGE}"
1104 done
1105 else
1106 # ${MODULE}.module does not exist, create a list of images
1107 for FILESYSTEM in squashfs ext2 ext3 ext4 xfs jffs2 dir
1109 for IMAGE in "${image_directory}"/*."${FILESYSTEM}"
1111 if [ -e "${IMAGE}" ]
1112 then
1113 image_string="${image_string} ${IMAGE}"
1115 done
1116 done
1118 if [ -n "${addimage_directory}" ] && [ -d "${addimage_directory}" ]
1119 then
1120 for FILESYSTEM in squashfs ext2 ext3 ext4 xfs jffs2 dir
1122 for IMAGE in "${addimage_directory}"/*."${FILESYSTEM}"
1124 if [ -e "${IMAGE}" ]
1125 then
1126 image_string="${image_string} ${IMAGE}"
1128 done
1129 done
1132 # Now sort the list
1133 image_string="$(echo ${image_string} | sed -e 's/ /\n/g' | sort )"
1136 [ -n "${MODULETORAMFILE}" ] && image_string="${image_directory}/$(basename ${MODULETORAMFILE})"
1138 mkdir -p "${croot}"
1140 for image in ${image_string}
1142 imagename=$(basename "${image}")
1144 export image devname
1145 maybe_break live-realpremount
1146 log_begin_msg "Running /scripts/live-realpremount"
1147 run_scripts /scripts/live-realpremount
1148 log_end_msg
1150 if [ -d "${image}" ]
1151 then
1152 # it is a plain directory: do nothing
1153 rofsstring="${image}=${roopt}:${rofsstring}"
1154 rofslist="${image} ${rofslist}"
1155 elif [ -f "${image}" ]
1156 then
1157 if losetup --help 2>&1 | grep -q -- "-r\b"
1158 then
1159 backdev=$(get_backing_device "${image}" "-r")
1160 else
1161 backdev=$(get_backing_device "${image}")
1163 fstype=$(get_fstype "${backdev}")
1165 if [ "${fstype}" = "unknown" ]
1166 then
1167 panic "Unknown file system type on ${backdev} (${image})"
1170 if [ -z "${fstype}" ]
1171 then
1172 fstype="${imagename##*.}"
1173 log_warning_msg "Unknown file system type on ${backdev} (${image}), assuming ${fstype}."
1176 mkdir -p "${croot}/${imagename}"
1177 log_begin_msg "Mounting \"${image}\" on \"${croot}${imagename}\" via \"${backdev}\""
1178 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}"
1179 log_end_msg
1181 done
1182 else
1183 # we have a plain root system
1184 mkdir -p "${croot}/filesystem"
1185 log_begin_msg "Mounting \"${image_directory}\" on \"${croot}/filesystem\""
1186 mount -t $(get_fstype "${image_directory}") -o ro,noatime "${image_directory}" "${croot}/filesystem" || panic "Can not mount ${image_directory} on ${croot}/filesystem" && rofsstring="${croot}/filesystem=${roopt}:${rofsstring}" && rofslist="${croot}/filesystem ${rofslist}"
1187 # probably broken:
1188 mount -o bind ${croot}/filesystem $mountpoint
1189 log_end_msg
1192 rofsstring=${rofsstring%:}
1194 mkdir -p /cow
1196 # Looking for "${root_persistence}" device or file
1197 if [ -n "${PERSISTENT}" ] && [ -z "${NOPERSISTENT}" ]
1198 then
1199 if [ -z "${QUICKUSBMODULES}" ]
1200 then
1201 # Load USB modules
1202 num_block=$(ls -l /sys/block | wc -l)
1203 for module in sd_mod uhci-hcd ehci-hcd ohci-hcd usb-storage
1205 modprobe -q -b ${module}
1206 done
1208 udevadm trigger
1209 udevadm settle
1211 # For some reason, udevsettle does not block in this scenario,
1212 # so we sleep for a little while.
1214 # See https://bugs.launchpad.net/ubuntu/+source/casper/+bug/84591
1215 for timeout in 5 4 3 2 1
1217 sleep 1
1219 if [ $(ls -l /sys/block | wc -l) -gt ${num_block} ]
1220 then
1221 break
1223 done
1226 # search for label and files (this could be hugely optimized)
1227 cowprobe=$(find_cow_device "${root_persistence}")
1228 if [ -b "${cowprobe}" ]
1229 then
1230 # Blacklist /cow device, to avoid inconsistent setups for overlapping snapshots
1231 # makes sense to have both persistence for /cow and /home mounted, maybe also with
1232 # snapshots to be sure to really store some e.g key config files,
1233 # but not on the same media
1234 blacklistdev="${cowprobe}"
1235 PERSISTENCE_IS_ON="1"
1236 export PERSISTENCE_IS_ON
1238 # homecow just mount something on /home, this should be generalized some way
1239 homecow=$(find_cow_device "${home_persistence}" "${blacklistdev}")
1240 if [ -b "${homecow}" ]
1241 then
1242 PERSISTENCE_IS_ON="1"
1243 export PERSISTENCE_IS_ON
1245 root_snapdata=$(find_snap "${root_snapshot_label}" "${blacklistdev}")
1246 # This second type should be removed when snapshot will get smarter,
1247 # hence when "/etc/live-snapshot*list" will be supported also by
1248 # ext2|ext3|ext4|jffs2 snapshot types.
1249 home_snapdata=$(find_snap "${home_snapshot_label}" "${blacklistdev}")
1251 if [ -b "${cowprobe}" ]
1252 then
1253 cowdevice=${cowprobe}
1254 cow_fstype=$(get_fstype "${cowprobe}")
1255 cow_mountopt="rw,noatime"
1257 if [ "${FORCEPERSISTENTFSCK}" = "Yes" ]
1258 then
1259 fsck -y ${cowdevice}
1261 else
1262 log_warning_msg "Unable to find the persistent medium"
1263 cowdevice="tmpfs"
1264 cow_fstype="tmpfs"
1265 cow_mountopt="rw,noatime,mode=755"
1267 elif [ -n "${NFS_COW}" ] && [ -z "${NOPERSISTENT}" ]
1268 then
1269 # check if there are any nfs options
1270 if echo ${NFS_COW}|grep -q ','
1271 then
1272 nfs_cow_opts="-o nolock,$(echo ${NFS_COW}|cut -d, -f2-)"
1273 nfs_cow=$(echo ${NFS_COW}|cut -d, -f1)
1274 else
1275 nfs_cow_opts="-o nolock"
1276 nfs_cow=${NFS_COW}
1278 mac="$(get_mac)"
1279 if [ -n "${mac}" ]
1280 then
1281 cowdevice=$(echo ${nfs_cow}|sed "s/client_mac_address/${mac}/")
1282 cow_fstype="nfs"
1283 else
1284 panic "unable to determine mac address"
1286 else
1287 cowdevice="tmpfs"
1288 cow_fstype="tmpfs"
1289 cow_mountopt="rw,noatime,mode=755"
1292 if [ "${cow_fstype}" = "nfs" ]
1293 then
1294 log_begin_msg \
1295 "Trying nfsmount ${nfs_cow_opts} ${cowdevice} /cow"
1296 nfsmount ${nfs_cow_opts} ${cowdevice} /cow || \
1297 panic "Can not mount ${cowdevice} (n: ${cow_fstype}) on /cow"
1298 else
1299 mount -t ${cow_fstype} -o ${cow_mountopt} ${cowdevice} /cow || \
1300 panic "Can not mount ${cowdevice} (o: ${cow_fstype}) on /cow"
1303 rofscount=$(echo ${rofslist} |wc -w)
1305 if [ -n "${EXPOSED_ROOT}" ]
1306 then
1307 if [ ${rofscount} -ne 1 ]
1308 then
1309 panic "only one RO file system supported with exposedroot: ${rofslist}"
1311 exposedrootfs=${rofslist%% }
1313 mount --bind ${exposedrootfs} ${rootmnt} || \
1314 panic "bind mount of ${exposedrootfs} failed"
1316 if [ -z "${SKIP_UNION_MOUNTS}" ]
1317 then
1318 cow_dirs='/var/tmp /var/lock /var/run /var/log /var/spool /home /var/lib/live'
1319 else
1320 cow_dirs=''
1323 for dir in ${cow_dirs}; do
1324 mkdir -p /cow${dir}
1326 case "${UNIONTYPE}" in
1327 unionfs-fuse)
1328 (ulimit -n 16384; unionfs-fuse -o cow -o noinitgroups -o default_permissions -o allow_other -o use_ino -o suid /cow=RW:${exposedrootfs}${dir} "${rootmnt}${dir}" || panic "mount ${UNIONTYPE} on ${rootmnt}${dir} failed with option cow,noinitgroups,default_permissions,allow_other,use_ino,suid=/cow=RW:${exposedrootfs}${dir}")
1329 mkdir -p /dev/.initramfs/varrun
1330 pidof unionfs-fuse >> /dev/.initramfs/varrun/sendsigs.omit || true
1334 mount -t ${UNIONTYPE} -o rw,noatime,dirs=/cow${dir}=rw:${exposedrootfs}${dir}=ro ${UNIONTYPE} "${rootmnt}${dir}" || panic "mount ${UNIONTYPE} on ${rootmnt}${dir} failed with option rw,noatime,dirs=/cow${dir}=rw:${exposedrootfs}${dir}=ro"
1336 esac
1337 done
1338 else
1339 case "${UNIONTYPE}" in
1340 unionfs-fuse)
1341 (ulimit -n 16384; unionfs-fuse -o cow -o noinitgroups -o default_permissions -o allow_other -o use_ino -o suid /cow=RW:${rofsstring} "${rootmnt}" || panic "mount ${UNIONTYPE} on ${rootmnt} failed with option cow,noinitgroups,default_permissions,allow_other,use_ino,suid=/cow:RW:${rofsstring}")
1342 mkdir -p /dev/.initramfs/varrun
1343 pidof unionfs-fuse >> /dev/.initramfs/varrun/sendsigs.omit || true
1347 mount -t ${UNIONTYPE} -o noatime,${noxino_opt}dirs=/cow=rw:${rofsstring} ${UNIONTYPE} "${rootmnt}" || panic "mount ${UNIONTYPE} on ${rootmnt} failed with option noatime,${noxino_opt}dirs=/cow=rw:${rofsstring}"
1349 esac
1352 # Correct the permissions of /:
1353 chmod 0755 "${rootmnt}"
1355 # tmpfs file systems
1356 touch /etc/fstab
1357 mkdir -p "${rootmnt}/live"
1358 mount -t tmpfs tmpfs ${rootmnt}/live
1360 # Adding other custom mounts
1361 if [ -n "${PERSISTENT}" ] && [ -z "${NOPERSISTENT}" ]
1362 then
1363 # directly mount /home
1364 # FIXME: add a custom mounts configurable system
1366 if [ -b "${homecow}" ]
1367 then
1368 mount -t $(get_fstype "${homecow}") -o rw,noatime "${homecow}" "${rootmnt}/home"
1369 export HOMEMOUNTED=1 # used to proper calculate free space in do_snap_copy()
1370 else
1371 log_warning_msg "Unable to find the persistent home medium"
1374 # Look for other snapshots to copy in
1375 try_snap "${root_snapdata}" "${rootmnt}" "ROOT"
1376 # This second type should be removed when snapshot grow smarter
1377 try_snap "${home_snapdata}" "${rootmnt}/home" "HOME"
1380 if [ -n "${SHOWMOUNTS}" ]
1381 then
1382 for d in ${rofslist}
1384 mkdir -p "${rootmnt}/live/${d##*/}"
1386 case d in
1387 *.dir)
1388 # do nothing # mount -o bind "${d}" "${rootmnt}/live/${d##*/}"
1392 case "${UNIONTYPE}" in
1393 unionfs-fuse)
1394 mount -o bind "${d}" "${rootmnt}/live/${d##*/}"
1398 mount -o move "${d}" "${rootmnt}/live/${d##*/}"
1400 esac
1402 esac
1403 done
1406 # shows cow fs on /cow for use by live-snapshot
1407 mkdir -p "${rootmnt}/live/cow"
1408 mount -o move /cow "${rootmnt}/live/cow" >/dev/null 2>&1 || mount -o bind /cow "${rootmnt}/live/cow" || log_warning_msg "Unable to move or bind /cow to ${rootmnt}/live/cow"
1411 check_dev ()
1413 sysdev="${1}"
1414 devname="${2}"
1415 skip_uuid_check="${3}"
1417 # support for fromiso=.../isofrom=....
1418 if [ -n "$FROMISO" ]
1419 then
1420 ISO_DEVICE=$(dirname $FROMISO)
1421 if ! [ -b $ISO_DEVICE ]
1422 then
1423 # to support unusual device names like /dev/cciss/c0d0p1
1424 # as well we have to identify the block device name, let's
1425 # do that for up to 15 levels
1426 i=15
1427 while [ -n "$ISO_DEVICE" ] && [ "$i" -gt 0 ]
1429 ISO_DEVICE=$(dirname ${ISO_DEVICE})
1430 [ -b "$ISO_DEVICE" ] && break
1431 i=$(($i -1))
1432 done
1435 if [ "$ISO_DEVICE" = "/" ]
1436 then
1437 echo "Warning: device for bootoption isofrom= ($FROMISO) not found.">>/live.log
1438 else
1439 mkdir /isofrom
1440 mount "$ISO_DEVICE" /isofrom
1441 ISO_NAME="$(echo $FROMISO | sed "s|$ISO_DEVICE||")"
1442 loopdevname=$(setup_loop "/isofrom/${ISO_NAME}" "loop" "/sys/block/loop*" "" '')
1443 devname="${loopdevname}"
1447 if [ -z "${devname}" ]
1448 then
1449 devname=$(sys2dev "${sysdev}")
1452 if [ -d "${devname}" ]
1453 then
1454 mount -o bind "${devname}" $mountpoint || continue
1456 if is_live_path $mountpoint
1457 then
1458 echo $mountpoint
1459 return 0
1460 else
1461 umount $mountpoint
1464 [ -e "$devname" ] || continue
1466 if [ -n "${LIVE_MEDIA_OFFSET}" ]
1467 then
1468 loopdevname=$(setup_loop "${devname}" "loop" "/sys/block/loop*" "${LIVE_MEDIA_OFFSET}" '')
1469 devname="${loopdevname}"
1472 fstype=$(get_fstype "${devname}")
1474 if is_supported_fs ${fstype}
1475 then
1476 devuid=$(blkid -o value -s UUID "$devname")
1477 [ -n "$devuid" ] && grep -qs "\<$devuid\>" $tried && continue
1478 mount -t ${fstype} -o ro,noatime "${devname}" ${mountpoint} || continue
1479 [ -n "$devuid" ] && echo "$devuid" >> $tried
1481 if is_live_path ${mountpoint} && \
1482 ([ "${skip_uuid_check}" ] || matches_uuid ${mountpoint})
1483 then
1484 echo ${mountpoint}
1485 return 0
1486 else
1487 umount ${mountpoint}
1491 if [ -n "${LIVE_MEDIA_OFFSET}" ]
1492 then
1493 losetup -d "${loopdevname}"
1496 return 1
1499 find_livefs ()
1501 timeout="${1}"
1503 # don't start autodetection before timeout has expired
1504 if [ -n "${LIVE_MEDIA_TIMEOUT}" ]
1505 then
1506 if [ "${timeout}" -lt "${LIVE_MEDIA_TIMEOUT}" ]
1507 then
1508 return 1
1512 # first look at the one specified in the command line
1513 case "${LIVE_MEDIA}" in
1514 removable-usb)
1515 for sysblock in $(echo /sys/block/* | tr ' ' '\n' | grep -vE "/(loop|ram|dm-|fd)")
1517 if [ "$(cat ${sysblock}/removable)" = "1" ]
1518 then
1519 if readlink ${sysblock} | grep -q usb ||
1520 readlink ${sysblock}/device | grep -q usb # linux < 2.6.29
1521 then
1522 for dev in $(subdevices "${sysblock}")
1524 if check_dev "${dev}"
1525 then
1526 return 0
1528 done
1531 done
1532 return 1
1535 removable)
1536 for sysblock in $(echo /sys/block/* | tr ' ' '\n' | grep -vE "/(loop|ram|dm-|fd)")
1538 if [ "$(cat ${sysblock}/removable)" = "1" ]
1539 then
1540 for dev in $(subdevices "${sysblock}")
1542 if check_dev "${dev}"
1543 then
1544 return 0
1546 done
1548 done
1549 return 1
1553 if [ ! -z "${LIVE_MEDIA}" ]
1554 then
1555 if check_dev "null" "${LIVE_MEDIA}" "skip_uuid_check"
1556 then
1557 return 0
1561 esac
1563 # or do the scan of block devices
1564 # prefer removable devices over non-removable devices, so scan them first
1565 for sysblock in $(echo /sys/block/* | tr ' ' '\n' | egrep -v "/(loop|ram|dm-|fd)")
1567 if [ "$(cat ${sysblock}/removable)" = "1" ]
1568 then
1569 removable_devices_to_scan="$removable_devices_to_scan $sysblock"
1570 else
1571 nonremovable_devices_to_scan="$nonremovable_devices_to_scan $sysblock"
1573 done
1574 devices_to_scan="$removable_devices_to_scan $nonremovable_devices_to_scan"
1576 for sysblock in $devices_to_scan
1578 devname=$(sys2dev "${sysblock}")
1579 [ -e "$devname" ] || continue
1580 fstype=$(get_fstype "${devname}")
1582 if /lib/udev/cdrom_id ${devname} > /dev/null
1583 then
1584 if check_dev "null" "${devname}"
1585 then
1586 return 0
1588 elif is_nice_device "${sysblock}"
1589 then
1590 for dev in $(subdevices "${sysblock}")
1592 if check_dev "${dev}"
1593 then
1594 return 0
1596 done
1597 elif [ "${fstype}" = "squashfs" -o \
1598 "${fstype}" = "ext2" -o \
1599 "${fstype}" = "ext3" -o \
1600 "${fstype}" = "ext4" -o \
1601 "${fstype}" = "jffs2" ]
1602 then
1603 # This is an ugly hack situation, the block device has
1604 # an image directly on it. It's hopefully
1605 # live-boot, so take it and run with it.
1606 ln -s "${devname}" "${devname}.${fstype}"
1607 echo "${devname}.${fstype}"
1608 return 0
1610 done
1612 return 1
1615 set_usplash_timeout ()
1617 if [ -x /sbin/usplash_write ]
1618 then
1619 /sbin/usplash_write "TIMEOUT 120"
1620 else if [ -x /sbin/splashy_update ] ; then
1621 /sbin/splashy_update "TIMEOUT 120"
1622 fi ; fi
1625 integrity_check ()
1627 media_mountpoint="${1}"
1629 log_begin_msg "Checking media integrity"
1631 cd ${media_mountpoint}
1632 /bin/md5sum -c md5sum.txt < /dev/tty8 > /dev/tty8
1633 RC="${?}"
1635 log_end_msg
1637 if [ "${RC}" -eq 0 ]
1638 then
1639 log_success_msg "Everything ok, will reboot in 10 seconds."
1640 sleep 10
1641 cd /
1642 umount ${media_mountpoint}
1643 sync
1644 echo u > /proc/sysrq-trigger
1645 echo b > /proc/sysrq-trigger
1646 else
1647 panic "Not ok, a media defect is likely, switch to VT8 for details."
1651 start_usplash_pulse ()
1653 if [ -x /sbin/usplash_write ]
1654 then
1655 /sbin/usplash_write "PULSELOGO"
1659 mountroot ()
1661 if [ -x /scripts/local-top/cryptroot ]; then
1662 /scripts/local-top/cryptroot
1665 exec 6>&1
1666 exec 7>&2
1667 exec > live.log
1668 exec 2>&1
1669 tail -f live.log >&7 &
1670 tailpid="${!}"
1672 # Ensure 'panic' function is overridden
1673 . /scripts/live-functions
1675 Arguments
1677 set_usplash_timeout
1678 start_usplash_pulse
1680 maybe_break live-premount
1681 log_begin_msg "Running /scripts/live-premount"
1682 run_scripts /scripts/live-premount
1683 log_end_msg
1685 # Needed here too because some things (*cough* udev *cough*)
1686 # changes the timeout
1688 set_usplash_timeout
1690 if [ ! -z "${NETBOOT}" ] || [ ! -z "${FETCH}" ] || [ ! -z "${HTTPFS}" ] || [ ! -z "${FTPFS}" ]
1691 then
1692 if do_netmount
1693 then
1694 livefs_root="${mountpoint}"
1695 else
1696 panic "Unable to find a live file system on the network"
1698 else
1699 if [ -n "${ISCSI_PORTAL}" ]
1700 then
1701 do_iscsi && livefs_root="${mountpoint}"
1702 elif [ -n "${PLAIN_ROOT}" ] && [ -n "${ROOT}" ]
1703 then
1704 # Do a local boot from hd
1705 livefs_root=${ROOT}
1706 else
1707 if [ -x /usr/bin/memdiskfind ]
1708 then
1709 MEMDISK=$(/usr/bin/memdiskfind)
1711 if [ $? -eq 0 ]
1712 then
1713 # We found a memdisk, set up phram
1714 modprobe phram phram=memdisk,${MEMDISK}
1716 # Load mtdblock, the memdisk will be /dev/mtdblock0
1717 modprobe mtdblock
1721 # Scan local devices for the image
1723 while [ "$i" -lt 60 ]
1725 livefs_root=$(find_livefs ${i})
1727 if [ -n "${livefs_root}" ]
1728 then
1729 break
1732 sleep 1
1733 i="$(($i + 1))"
1734 done
1738 if [ -z "${livefs_root}" ]
1739 then
1740 panic "Unable to find a medium containing a live file system"
1743 if [ "${INTEGRITY_CHECK}" ]
1744 then
1745 integrity_check "${livefs_root}"
1748 if [ "${TORAM}" ]
1749 then
1750 live_dest="ram"
1751 elif [ "${TODISK}" ]
1752 then
1753 live_dest="${TODISK}"
1756 if [ "${live_dest}" ]
1757 then
1758 log_begin_msg "Copying live media to ${live_dest}"
1759 copy_live_to "${livefs_root}" "${live_dest}"
1760 log_end_msg
1763 # if we do not unmount the ISO we can't run "fsck /dev/ice" later on
1764 # because the mountpoint is left behind in /proc/mounts, so let's get
1765 # rid of it when running from RAM
1766 if [ -n "$FROMISO" ] && [ "${TORAM}" ]
1767 then
1768 losetup -d /dev/loop0
1769 grep -q /isofrom /proc/mounts && umount /isofrom
1772 if [ -n "${MODULETORAMFILE}" ] || [ -n "${PLAIN_ROOT}" ]
1773 then
1774 setup_unionfs "${livefs_root}" "${rootmnt}"
1775 else
1776 mac="$(get_mac)"
1777 mac="$(echo ${mac} | sed 's/-//g')"
1778 mount_images_in_directory "${livefs_root}" "${rootmnt}" "${mac}"
1781 log_end_msg
1783 # unionfs-fuse needs /dev to be bind-mounted for the duration of
1784 # live-bottom; udev's init script will take care of things after that
1785 if [ "${UNIONTYPE}" = unionfs-fuse ]
1786 then
1787 mount -n -o bind /dev "${rootmnt}/dev"
1790 # Move to the new root filesystem so that programs there can get at it.
1791 if [ ! -d /root/live/image ]
1792 then
1793 mkdir -p /root/live/image
1794 mount --move /live/image /root/live/image
1797 maybe_break live-bottom
1798 log_begin_msg "Running /scripts/live-bottom\n"
1800 run_scripts /scripts/live-bottom
1801 log_end_msg
1803 if [ "${UNIONFS}" = unionfs-fuse ]
1804 then
1805 umount "${rootmnt}/dev"
1808 exec 1>&6 6>&-
1809 exec 2>&7 7>&-
1810 kill ${tailpid}
1811 [ -w "${rootmnt}/var/log/" ] && cp live.log "${rootmnt}/var/log/" 2>/dev/null