Updating internal cmdline handling.
[debian-live-boot/hramrach.git] / scripts / boot.sh
blob6304c978e3b89ef2894703fbae505a3c6081763f
1 #!/bin/sh
3 # set -e
5 if [ -e /scripts/functions ]
6 then
7 # initramfs-tools specific (FIXME)
8 . /scripts/functions
9 fi
11 for _SCRIPT in /lib/live/boot/*
13 if [ -e "${_SCRIPT}" ]
14 then
15 . ${_SCRIPT}
17 done
19 export PATH="/root/usr/bin:/root/usr/sbin:/root/bin:/root/sbin:/usr/bin:/usr/sbin:/bin:/sbin"
21 echo "/root/lib" >> /etc/ld.so.conf
22 echo "/root/usr/lib" >> /etc/ld.so.conf
24 mountpoint="/live/image"
25 alt_mountpoint="/media"
26 LIVE_MEDIA_PATH="live"
28 HOSTNAME="host"
30 mkdir -p "${mountpoint}"
31 tried="/tmp/tried"
33 # Create /etc/mtab for debug purpose and future syncs
34 if [ ! -d /etc ]
35 then
36 mkdir /etc/
39 if [ ! -f /etc/mtab ]
40 then
41 touch /etc/mtab
44 if [ ! -x "/bin/fstype" ]
45 then
46 # klibc not in path -> not in initramfs
47 export PATH="${PATH}:/usr/lib/klibc/bin"
50 # handle upgrade path from old udev (using udevinfo) to
51 # recent versions of udev (using udevadm info)
52 if [ -x /sbin/udevadm ]
53 then
54 udevinfo='/sbin/udevadm info'
55 else
56 udevinfo='udevinfo'
59 old_root_overlay_label="live-rw"
60 old_home_overlay_label="home-rw"
61 custom_overlay_label="custom-ov"
62 root_snapshot_label="live-sn"
63 old_root_snapshot_label="live-sn"
64 home_snapshot_label="home-sn"
65 persistence_list="live-persistence.conf"
67 if [ ! -f /live.vars ]
68 then
69 touch /live.vars
72 is_live_path ()
74 DIRECTORY="${1}"
76 if [ -d "${DIRECTORY}"/"${LIVE_MEDIA_PATH}" ]
77 then
78 for FILESYSTEM in squashfs ext2 ext3 ext4 xfs dir jffs2
80 if [ "$(echo ${DIRECTORY}/${LIVE_MEDIA_PATH}/*.${FILESYSTEM})" != "${DIRECTORY}/${LIVE_MEDIA_PATH}/*.${FILESYSTEM}" ]
81 then
82 return 0
84 done
87 return 1
90 matches_uuid ()
92 if [ "${IGNORE_UUID}" ] || [ ! -e /conf/uuid.conf ]
93 then
94 return 0
97 path="${1}"
98 uuid="$(cat /conf/uuid.conf)"
100 for try_uuid_file in "${path}/.disk/live-uuid"*
102 [ -e "${try_uuid_file}" ] || continue
104 try_uuid="$(cat "${try_uuid_file}")"
106 if [ "${uuid}" = "${try_uuid}" ]
107 then
108 return 0
110 done
112 return 1
115 get_backing_device ()
117 case "${1}" in
118 *.squashfs|*.ext2|*.ext3|*.ext4|*.jffs2)
119 echo $(setup_loop "${1}" "loop" "/sys/block/loop*" '0' "${LIVE_MEDIA_ENCRYPTION}" "${2}")
122 *.dir)
123 echo "directory"
127 panic "Unrecognized live filesystem: ${1}"
129 esac
132 match_files_in_dir ()
134 # Does any files match pattern ${1} ?
135 local pattern="${1}"
137 if [ "$(echo ${pattern})" != "${pattern}" ]
138 then
139 return 0
142 return 1
145 mount_images_in_directory ()
147 directory="${1}"
148 rootmnt="${2}"
149 mac="${3}"
152 if match_files_in_dir "${directory}/${LIVE_MEDIA_PATH}/*.squashfs" ||
153 match_files_in_dir "${directory}/${LIVE_MEDIA_PATH}/*.ext2" ||
154 match_files_in_dir "${directory}/${LIVE_MEDIA_PATH}/*.ext3" ||
155 match_files_in_dir "${directory}/${LIVE_MEDIA_PATH}/*.ext4" ||
156 match_files_in_dir "${directory}/${LIVE_MEDIA_PATH}/*.jffs2" ||
157 match_files_in_dir "${directory}/${LIVE_MEDIA_PATH}/*.dir"
158 then
159 [ -n "${mac}" ] && adddirectory="${directory}/${LIVE_MEDIA_PATH}/${mac}"
160 setup_unionfs "${directory}/${LIVE_MEDIA_PATH}" "${rootmnt}" "${adddirectory}"
161 else
162 panic "No supported filesystem images found at /${LIVE_MEDIA_PATH}."
166 is_nice_device ()
168 sysfs_path="${1#/sys}"
170 if [ -e /lib/udev/path_id ]
171 then
172 # squeeze
173 PATH_ID="/lib/udev/path_id"
174 else
175 # wheezy/sid (udev >= 174)
176 PATH_ID="/sbin/udevadm test-builtin path_id"
179 if ${PATH_ID} "${sysfs_path}" | egrep -q "ID_PATH=(usb|pci-[^-]*-(ide|sas|scsi|usb|virtio)|platform-sata_mv|platform-orion-ehci|platform-mmc|platform-mxsdhci)"
180 then
181 return 0
182 elif echo "${sysfs_path}" | grep -q '^/block/vd[a-z]$'
183 then
184 return 0
185 elif echo ${sysfs_path} | grep -q "^/block/dm-"
186 then
187 return 0
188 elif echo ${sysfs_path} | grep -q "^/block/mtdblock"
189 then
190 return 0
193 return 1
196 check_dev ()
198 sysdev="${1}"
199 devname="${2}"
200 skip_uuid_check="${3}"
202 # support for fromiso=.../isofrom=....
203 if [ -n "$FROMISO" ]
204 then
205 ISO_DEVICE=$(dirname $FROMISO)
206 if ! [ -b $ISO_DEVICE ]
207 then
208 # to support unusual device names like /dev/cciss/c0d0p1
209 # as well we have to identify the block device name, let's
210 # do that for up to 15 levels
211 i=15
212 while [ -n "$ISO_DEVICE" ] && [ "$i" -gt 0 ]
214 ISO_DEVICE=$(dirname ${ISO_DEVICE})
215 [ -b "$ISO_DEVICE" ] && break
216 i=$(($i -1))
217 done
220 if [ "$ISO_DEVICE" = "/" ]
221 then
222 echo "Warning: device for bootoption fromiso= ($FROMISO) not found.">>/boot.log
223 else
224 fs_type=$(get_fstype "${ISO_DEVICE}")
225 if is_supported_fs ${fs_type}
226 then
227 mkdir /live/fromiso
228 mount -t $fs_type "$ISO_DEVICE" /live/fromiso
229 ISO_NAME="$(echo $FROMISO | sed "s|$ISO_DEVICE||")"
230 loopdevname=$(setup_loop "/live/fromiso/${ISO_NAME}" "loop" "/sys/block/loop*" "" '')
231 devname="${loopdevname}"
232 else
233 echo "Warning: unable to mount $ISO_DEVICE." >>/boot.log
238 if [ -z "${devname}" ]
239 then
240 devname=$(sys2dev "${sysdev}")
243 if [ -d "${devname}" ]
244 then
245 mount -o bind "${devname}" $mountpoint || continue
247 if is_live_path $mountpoint
248 then
249 echo $mountpoint
250 return 0
251 else
252 umount $mountpoint
256 IFS=","
257 for device in ${devname}
259 case "$device" in
260 *mapper*)
261 # Adding lvm support
262 if [ -x /scripts/local-top/lvm2 ]
263 then
264 ROOT="$device" resume="" /scripts/local-top/lvm2
268 /dev/md*)
269 # Adding raid support
270 if [ -x /scripts/local-top/mdadm ]
271 then
272 cp /conf/conf.d/md /conf/conf.d/md.orig
273 echo "MD_DEVS=$device " >> /conf/conf.d/md
274 /scripts/local-top/mdadm
275 mv /conf/conf.d/md.orig /conf/conf.d/md
278 esac
279 done
280 unset IFS
282 [ -n "$device" ] && devname="$device"
284 [ -e "$devname" ] || continue
286 if [ -n "${LIVE_MEDIA_OFFSET}" ]
287 then
288 loopdevname=$(setup_loop "${devname}" "loop" "/sys/block/loop*" "${LIVE_MEDIA_OFFSET}" '')
289 devname="${loopdevname}"
292 fstype=$(get_fstype "${devname}")
294 if is_supported_fs ${fstype}
295 then
296 devuid=$(blkid -o value -s UUID "$devname")
297 [ -n "$devuid" ] && grep -qs "\<$devuid\>" $tried && continue
298 mount -t ${fstype} -o ro,noatime "${devname}" ${mountpoint} || continue
299 [ -n "$devuid" ] && echo "$devuid" >> $tried
301 if [ -n "${FINDISO}" ]
302 then
303 if [ -f ${mountpoint}/${FINDISO} ]
304 then
305 umount ${mountpoint}
306 mkdir -p /live/findiso
307 mount -t ${fstype} -o ro,noatime "${devname}" /live/findiso
308 loopdevname=$(setup_loop "/live/findiso/${FINDISO}" "loop" "/sys/block/loop*" 0 "")
309 devname="${loopdevname}"
310 mount -t iso9660 -o ro,noatime "${devname}" ${mountpoint}
311 else
312 umount ${mountpoint}
316 if is_live_path ${mountpoint} && \
317 ([ "${skip_uuid_check}" ] || matches_uuid ${mountpoint})
318 then
319 echo ${mountpoint}
320 return 0
321 else
322 umount ${mountpoint} 2>/dev/null
326 if [ -n "${LIVE_MEDIA_OFFSET}" ]
327 then
328 losetup -d "${loopdevname}"
331 return 1
334 find_livefs ()
336 timeout="${1}"
338 # don't start autodetection before timeout has expired
339 if [ -n "${LIVE_MEDIA_TIMEOUT}" ]
340 then
341 if [ "${timeout}" -lt "${LIVE_MEDIA_TIMEOUT}" ]
342 then
343 return 1
347 # first look at the one specified in the command line
348 case "${LIVE_MEDIA}" in
349 removable-usb)
350 for sysblock in $(removable_usb_dev "sys")
352 for dev in $(subdevices "${sysblock}")
354 if check_dev "${dev}"
355 then
356 return 0
358 done
359 done
360 return 1
363 removable)
364 for sysblock in $(removable_dev "sys")
366 for dev in $(subdevices "${sysblock}")
368 if check_dev "${dev}"
369 then
370 return 0
372 done
373 done
374 return 1
378 if [ ! -z "${LIVE_MEDIA}" ]
379 then
380 if check_dev "null" "${LIVE_MEDIA}" "skip_uuid_check"
381 then
382 return 0
386 esac
388 # or do the scan of block devices
389 # prefer removable devices over non-removable devices, so scan them first
390 devices_to_scan="$(removable_dev 'sys') $(non_removable_dev 'sys')"
392 for sysblock in $devices_to_scan
394 devname=$(sys2dev "${sysblock}")
395 [ -e "$devname" ] || continue
396 fstype=$(get_fstype "${devname}")
398 if /lib/udev/cdrom_id ${devname} > /dev/null
399 then
400 if check_dev "null" "${devname}"
401 then
402 return 0
404 elif is_nice_device "${sysblock}"
405 then
406 for dev in $(subdevices "${sysblock}")
408 if check_dev "${dev}"
409 then
410 return 0
412 done
413 elif [ "${fstype}" = "squashfs" -o \
414 "${fstype}" = "btrfs" -o \
415 "${fstype}" = "ext2" -o \
416 "${fstype}" = "ext3" -o \
417 "${fstype}" = "ext4" -o \
418 "${fstype}" = "jffs2" ]
419 then
420 # This is an ugly hack situation, the block device has
421 # an image directly on it. It's hopefully
422 # live-boot, so take it and run with it.
423 ln -s "${devname}" "${devname}.${fstype}"
424 echo "${devname}.${fstype}"
425 return 0
427 done
429 return 1
432 mountroot ()
434 if [ -x /scripts/local-top/cryptroot ]; then
435 /scripts/local-top/cryptroot
438 exec 6>&1
439 exec 7>&2
440 exec > boot.log
441 exec 2>&1
442 tail -f boot.log >&7 &
443 tailpid="${!}"
445 . /live.vars
447 _CMDLINE="$(cat /proc/cmdline)"
448 Cmdline
450 case "${LIVE_DEBUG}" in
451 true)
452 set -x
454 esac
456 case "${LIVE_READ_ONLY}" in
457 true)
458 Read_only
460 esac
462 Select_eth_device
464 # Needed here too because some things (*cough* udev *cough*)
465 # changes the timeout
467 if [ ! -z "${NETBOOT}" ] || [ ! -z "${FETCH}" ] || [ ! -z "${HTTPFS}" ] || [ ! -z "${FTPFS}" ]
468 then
469 if do_netmount
470 then
471 livefs_root="${mountpoint}"
472 else
473 panic "Unable to find a live file system on the network"
475 else
476 if [ -n "${ISCSI_PORTAL}" ]
477 then
478 do_iscsi && livefs_root="${mountpoint}"
479 elif [ -n "${PLAIN_ROOT}" ] && [ -n "${ROOT}" ]
480 then
481 # Do a local boot from hd
482 livefs_root=${ROOT}
483 else
484 if [ -x /usr/bin/memdiskfind ]
485 then
486 MEMDISK=$(/usr/bin/memdiskfind)
488 if [ $? -eq 0 ]
489 then
490 # We found a memdisk, set up phram
491 modprobe phram phram=memdisk,${MEMDISK}
493 # Load mtdblock, the memdisk will be /dev/mtdblock0
494 modprobe mtdblock
498 # Scan local devices for the image
500 while [ "$i" -lt 60 ]
502 livefs_root=$(find_livefs ${i})
504 if [ -n "${livefs_root}" ]
505 then
506 break
509 sleep 1
510 i="$(($i + 1))"
511 done
515 if [ -z "${livefs_root}" ]
516 then
517 panic "Unable to find a medium containing a live file system"
520 case "${LIVE_VERIFY_CHECKSUMS}" in
521 true)
522 Verify_checksums "${livefs_root}"
524 esac
526 if [ "${TORAM}" ]
527 then
528 live_dest="ram"
529 elif [ "${TODISK}" ]
530 then
531 live_dest="${TODISK}"
534 if [ "${live_dest}" ]
535 then
536 log_begin_msg "Copying live media to ${live_dest}"
537 copy_live_to "${livefs_root}" "${live_dest}"
538 log_end_msg
541 # if we do not unmount the ISO we can't run "fsck /dev/ice" later on
542 # because the mountpoint is left behind in /proc/mounts, so let's get
543 # rid of it when running from RAM
544 if [ -n "$FROMISO" ] && [ "${TORAM}" ]
545 then
546 losetup -d /dev/loop0
548 if is_mountpoint /live/fromiso
549 then
550 umount /live/fromiso
551 rmdir --ignore-fail-on-non-empty /live/fromiso \
552 >/dev/null 2>&1 || true
556 if [ -n "${MODULETORAMFILE}" ] || [ -n "${PLAIN_ROOT}" ]
557 then
558 setup_unionfs "${livefs_root}" "${rootmnt}"
559 else
560 mac="$(get_mac)"
561 mac="$(echo ${mac} | sed 's/-//g')"
562 mount_images_in_directory "${livefs_root}" "${rootmnt}" "${mac}"
566 if [ -n "${ROOT_PID}" ] ; then
567 echo "${ROOT_PID}" > "${rootmnt}"/live/root.pid
570 log_end_msg
572 # unionfs-fuse needs /dev to be bind-mounted for the duration of
573 # live-bottom; udev's init script will take care of things after that
574 if [ "${UNIONTYPE}" = unionfs-fuse ]
575 then
576 mount -n -o bind /dev "${rootmnt}/dev"
579 # Move to the new root filesystem so that programs there can get at it.
580 if [ ! -d /root/live/image ]
581 then
582 mkdir -p /root/live/image
583 mount --move /live/image /root/live/image
586 # aufs2 in kernel versions around 2.6.33 has a regression:
587 # directories can't be accessed when read for the first the time,
588 # causing a failure for example when accessing /var/lib/fai
589 # when booting FAI, this simple workaround solves it
590 ls /root/* >/dev/null 2>&1
592 # Move findiso directory to the new root filesystem so that programs there can get at it.
593 if [ -d /live/findiso ] && [ ! -d /root/live/findiso ]
594 then
595 mkdir -p /root/live/findiso
596 mount -n --move /live/findiso /root/live/findiso
599 # if we do not unmount the ISO we can't run "fsck /dev/ice" later on
600 # because the mountpoint is left behind in /proc/mounts, so let's get
601 # rid of it when running from RAM
602 if [ -n "$FINDISO" ] && [ "${TORAM}" ]
603 then
604 losetup -d /dev/loop0
606 if is_mountpoint /root/live/findiso
607 then
608 umount /root/live/findiso
609 rmdir --ignore-fail-on-non-empty /root/live/findiso \
610 >/dev/null 2>&1 || true
614 # copy snapshot configuration if exists
615 if [ -f snapshot.conf ]
616 then
617 log_begin_msg "Copying snapshot.conf to ${rootmnt}/etc/live/boot.d"
618 if [ ! -d "${rootmnt}/etc/live/boot.d" ]
619 then
620 mkdir -p "${rootmnt}/etc/live/boot.d"
622 cp snapshot.conf "${rootmnt}/etc/live/boot.d/"
623 log_end_msg
626 if [ -f /etc/resolv.conf ] && [ ! -s ${rootmnt}/etc/resolv.conf ]
627 then
628 log_begin_msg "Copying /etc/resolv.conf to ${rootmnt}/etc/resolv.conf"
629 cp -v /etc/resolv.conf ${rootmnt}/etc/resolv.conf
630 log_end_msg
633 maybe_break live-bottom
634 log_begin_msg "Running /scripts/live-bottom\n"
636 run_scripts /scripts/live-bottom
637 log_end_msg
639 if [ "${UNIONFS}" = unionfs-fuse ]
640 then
641 umount "${rootmnt}/dev"
644 exec 1>&6 6>&-
645 exec 2>&7 7>&-
646 kill ${tailpid}
647 [ -w "${rootmnt}/var/log/" ] && mkdir -p /var/log/live && cp boot.log "${rootmnt}/var/log/live" 2>/dev/null