17c478bd9Sstevel@tonic-gate#!/sbin/sh 27c478bd9Sstevel@tonic-gate# 37c478bd9Sstevel@tonic-gate# CDDL HEADER START 47c478bd9Sstevel@tonic-gate# 57c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the 604cbdd1eSramat# Common Development and Distribution License (the "License"). 704cbdd1eSramat# You may not use this file except in compliance with the License. 87c478bd9Sstevel@tonic-gate# 97c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 107c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing. 117c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions 127c478bd9Sstevel@tonic-gate# and limitations under the License. 137c478bd9Sstevel@tonic-gate# 147c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each 157c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 167c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the 177c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying 187c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner] 197c478bd9Sstevel@tonic-gate# 207c478bd9Sstevel@tonic-gate# CDDL HEADER END 217c478bd9Sstevel@tonic-gate# 227c478bd9Sstevel@tonic-gate# 235a4c37c9Sqh201292# Copyright 2007 Sun Microsystems, Inc. All rights reserved. 247c478bd9Sstevel@tonic-gate# Use is subject to license terms. 257c478bd9Sstevel@tonic-gate# 267c478bd9Sstevel@tonic-gate#ident "%Z%%M% %I% %E% SMI" 277c478bd9Sstevel@tonic-gate 287c478bd9Sstevel@tonic-gate. /lib/svc/share/fs_include.sh 297c478bd9Sstevel@tonic-gate. /lib/svc/share/net_include.sh 307c478bd9Sstevel@tonic-gate 317c478bd9Sstevel@tonic-gate# Make sure that the essential libraries can be found. 327c478bd9Sstevel@tonic-gateLD_LIBRARY_PATH=/lib; export LD_LIBRARY_PATH 337c478bd9Sstevel@tonic-gateSTMSBOOTUTIL=/lib/mpxio/stmsboot_util 347c478bd9Sstevel@tonic-gateSAVEDIR=/etc/mpxio 357c478bd9Sstevel@tonic-gateRECOVERFILE=$SAVEDIR/recover_instructions 367c478bd9Sstevel@tonic-gateDEVFSADM=/usr/sbin/devfsadm 377c478bd9Sstevel@tonic-gateMETADEVADM=/usr/sbin/metadevadm 387c478bd9Sstevel@tonic-gateusrmounted=0 395a4c37c9Sqh201292MACH=`/usr/bin/uname -p` 4060fffc19Sjw149990EGREP=/usr/bin/egrep 41*c17d6d03SjmcpSED=/usr/bin/sed 427c478bd9Sstevel@tonic-gate 437c478bd9Sstevel@tonic-gate# map $special and $fsckdev 447c478bd9Sstevel@tonic-gatempxio_mapdev() 457c478bd9Sstevel@tonic-gate{ 467c478bd9Sstevel@tonic-gate new_special=`$STMSBOOTUTIL -m $special` 477c478bd9Sstevel@tonic-gate if [ $? -eq 0 ]; then 487c478bd9Sstevel@tonic-gate special=$new_special 497c478bd9Sstevel@tonic-gate fi 507c478bd9Sstevel@tonic-gate 517c478bd9Sstevel@tonic-gate new_fsckdev=`$STMSBOOTUTIL -m $fsckdev` 527c478bd9Sstevel@tonic-gate if [ $? -eq 0 ]; then 537c478bd9Sstevel@tonic-gate fsckdev=$new_fsckdev 547c478bd9Sstevel@tonic-gate fi 557c478bd9Sstevel@tonic-gate} 567c478bd9Sstevel@tonic-gate 577c478bd9Sstevel@tonic-gatempxio_error() 587c478bd9Sstevel@tonic-gate{ 597c478bd9Sstevel@tonic-gate cecho "\nERROR: stmsboot: $1" 607c478bd9Sstevel@tonic-gate # 617c478bd9Sstevel@tonic-gate # display recovery instructions - the first call logs to the service 627c478bd9Sstevel@tonic-gate # log and the second call displays on the console. 637c478bd9Sstevel@tonic-gate # 647c478bd9Sstevel@tonic-gate shcat $RECOVERFILE 657c478bd9Sstevel@tonic-gate shcat $RECOVERFILE >/dev/msglog 2>&1 667c478bd9Sstevel@tonic-gate cecho "These instructions were also logged to the file $RECOVERFILE\n" 677c478bd9Sstevel@tonic-gate} 687c478bd9Sstevel@tonic-gate 697c478bd9Sstevel@tonic-gate# 707c478bd9Sstevel@tonic-gate# root ("/") is already mounted read only by the kernel. 717c478bd9Sstevel@tonic-gate# Remount the root read-write. 727c478bd9Sstevel@tonic-gate# 737c478bd9Sstevel@tonic-gatempxio_mount_root() 747c478bd9Sstevel@tonic-gate{ 757c478bd9Sstevel@tonic-gate exec < $vfstab; readvfstab / 767c478bd9Sstevel@tonic-gate mpxio_mapdev 777c478bd9Sstevel@tonic-gate 787c478bd9Sstevel@tonic-gate checkopt "llock" $mntopts 797c478bd9Sstevel@tonic-gate mntopts='remount' 807c478bd9Sstevel@tonic-gate [ -n "$otherops" ] && mntopts="${mntopts},${otherops}" 817c478bd9Sstevel@tonic-gate /sbin/mount -m -F $fstype -o $mntopts $special $mountp \ 827c478bd9Sstevel@tonic-gate>/dev/msglog 2>&1 837c478bd9Sstevel@tonic-gate} 847c478bd9Sstevel@tonic-gate 857c478bd9Sstevel@tonic-gate# 867c478bd9Sstevel@tonic-gate# mount /usr read only 877c478bd9Sstevel@tonic-gate# 887c478bd9Sstevel@tonic-gatempxio_mount_usr() 897c478bd9Sstevel@tonic-gate{ 907c478bd9Sstevel@tonic-gate exec < $vfstab; readvfstab "/usr" 917c478bd9Sstevel@tonic-gate ret_val=0 927c478bd9Sstevel@tonic-gate if [ -n "$mountp" ]; then 937c478bd9Sstevel@tonic-gate mpxio_mapdev 947c478bd9Sstevel@tonic-gate if [ "$fstype" = cachefs ]; then 957c478bd9Sstevel@tonic-gate # Mount read-only without the cache. 967c478bd9Sstevel@tonic-gate case "$mntopts" in 977c478bd9Sstevel@tonic-gate *backfstype=nfs*) 987c478bd9Sstevel@tonic-gate cfsbacktype=nfs 997c478bd9Sstevel@tonic-gate ;; 1007c478bd9Sstevel@tonic-gate *backfstype=hsfs*) 1017c478bd9Sstevel@tonic-gate cfsbacktype=hsfs 1027c478bd9Sstevel@tonic-gate ;; 1037c478bd9Sstevel@tonic-gate *) 1047c478bd9Sstevel@tonic-gate cecho 'stmsboot: invalid vfstab entry for /usr' 1057c478bd9Sstevel@tonic-gate cfsbacktype=nfs 1067c478bd9Sstevel@tonic-gate ;; 1077c478bd9Sstevel@tonic-gate esac 1087c478bd9Sstevel@tonic-gate # see the comment below for /dev/null 1097c478bd9Sstevel@tonic-gate /sbin/mount -m -F $cfsbacktype -o ro $special $mountp \ 1107c478bd9Sstevel@tonic-gate>/dev/null 2>&1 1117c478bd9Sstevel@tonic-gate ret_val=$? 1127c478bd9Sstevel@tonic-gate else 1137c478bd9Sstevel@tonic-gate # 1147c478bd9Sstevel@tonic-gate # Must use -o largefiles here to ensure the read-only 1157c478bd9Sstevel@tonic-gate # mount does not fail as a result of having a large 1167c478bd9Sstevel@tonic-gate # file present on /usr. 1177c478bd9Sstevel@tonic-gate # 1187c478bd9Sstevel@tonic-gate if [ "x$mntopts" = x- ]; then 1197c478bd9Sstevel@tonic-gate mntopts='ro,largefiles' 1207c478bd9Sstevel@tonic-gate else 1217c478bd9Sstevel@tonic-gate checkopt largefiles $mntopts 1227c478bd9Sstevel@tonic-gate if [ "x$option" != xlargefiles ]; then 1237c478bd9Sstevel@tonic-gate mntopts="largefiles,$mntopts" 1247c478bd9Sstevel@tonic-gate fi 1257c478bd9Sstevel@tonic-gate 1267c478bd9Sstevel@tonic-gate checkopt ro $mntopts 1277c478bd9Sstevel@tonic-gate if [ "x$option" != xro ]; then 1287c478bd9Sstevel@tonic-gate mntopts="ro,$mntopts" 1297c478bd9Sstevel@tonic-gate fi 1307c478bd9Sstevel@tonic-gate 1317c478bd9Sstevel@tonic-gate # 1327c478bd9Sstevel@tonic-gate # Requesting logging on a read-only mount 1337c478bd9Sstevel@tonic-gate # causes errors to be displayed, so remove 1347c478bd9Sstevel@tonic-gate # "logging" from the list of options. 1357c478bd9Sstevel@tonic-gate # 1367c478bd9Sstevel@tonic-gate 1377c478bd9Sstevel@tonic-gate checkopt logging $mntopts 1387c478bd9Sstevel@tonic-gate if [ "x$option" = xlogging ]; then 1397c478bd9Sstevel@tonic-gate mntopts="$otherops" 1407c478bd9Sstevel@tonic-gate fi 1417c478bd9Sstevel@tonic-gate fi 1427c478bd9Sstevel@tonic-gate 1437c478bd9Sstevel@tonic-gate # 1447c478bd9Sstevel@tonic-gate # In case of a manual restart of the service, mount 1457c478bd9Sstevel@tonic-gate # will emit messages if /usr is already mounted. 1467c478bd9Sstevel@tonic-gate # So redirect the output to /dev/null. 1477c478bd9Sstevel@tonic-gate # 1487c478bd9Sstevel@tonic-gate /sbin/mount -m -F $fstype -o $mntopts $special /usr \ 1497c478bd9Sstevel@tonic-gate>/dev/null 2>&1 1507c478bd9Sstevel@tonic-gate ret_val=$? 1517c478bd9Sstevel@tonic-gate fi 1527c478bd9Sstevel@tonic-gate if [ $ret_val -eq 0 ]; then 1537c478bd9Sstevel@tonic-gate usrmounted=1 1547c478bd9Sstevel@tonic-gate fi 1557c478bd9Sstevel@tonic-gate fi 1567c478bd9Sstevel@tonic-gate 1577c478bd9Sstevel@tonic-gate return $ret_val 1587c478bd9Sstevel@tonic-gate} 1597c478bd9Sstevel@tonic-gate 1607c478bd9Sstevel@tonic-gate# update system dump configuration 1617c478bd9Sstevel@tonic-gateupdate_dumpconf() 1627c478bd9Sstevel@tonic-gate{ 16304cbdd1eSramat # 16404cbdd1eSramat # Disable device-in-use checking (done in libdiskmgt). 16504cbdd1eSramat # Without disabling this check, the configuration of dump device 16604cbdd1eSramat # would fail as the device-in-use code incorrectly concludes that 16704cbdd1eSramat # the device is in use and hence prevents configuration of the dump 16804cbdd1eSramat # device. 16904cbdd1eSramat # 17004cbdd1eSramat NOINUSE_CHECK=1 17104cbdd1eSramat export NOINUSE_CHECK 17204cbdd1eSramat 17360fffc19Sjw149990 set -- `dumpadm -u 2>&1 | $EGREP 'cannot use /dev.* as dump device'` 1747c478bd9Sstevel@tonic-gate if [ "x$4" != x ]; then 1757c478bd9Sstevel@tonic-gate newname=`$STMSBOOTUTIL -M $4` 1767c478bd9Sstevel@tonic-gate if [ $? -eq 0 ]; then 17760fffc19Sjw149990 if /usr/sbin/dumpadm -d $newname > /dev/msglog 2> /dev/console; then 1787c478bd9Sstevel@tonic-gate cecho "stmsboot: dump configuration has been \ 1797c478bd9Sstevel@tonic-gateupdated." 1807c478bd9Sstevel@tonic-gate else 1817c478bd9Sstevel@tonic-gate mpxio_error "failed to configure $newname as \ 1827c478bd9Sstevel@tonic-gatethe dump device.\nold dump device name: $4" 1837c478bd9Sstevel@tonic-gate return 1 1847c478bd9Sstevel@tonic-gate fi 1857c478bd9Sstevel@tonic-gate fi 1867c478bd9Sstevel@tonic-gate fi 1877c478bd9Sstevel@tonic-gate return 0 1887c478bd9Sstevel@tonic-gate} 1897c478bd9Sstevel@tonic-gate 1905a4c37c9Sqh201292# Update bootpath for x86 here when we are enabling mpxio on root 1915a4c37c9Sqh201292update_bootpath() 1925a4c37c9Sqh201292{ 19360fffc19Sjw149990 cur_bootpath=`/usr/sbin/eeprom bootpath | $SED 's/bootpath=[ ]*//g' | $SED 's/[ ].*//'` 1945a4c37c9Sqh201292 # only take care of phci-based path here 19560fffc19Sjw149990 PHCIOPT=`$STMSBOOTUTIL -D mpt -n` 19660fffc19Sjw149990 echo $cur_bootpath | $EGREP -s "/fp@.*/disk|$PHCIOPT" 1975a4c37c9Sqh201292 1985a4c37c9Sqh201292 if [ $? -eq 0 ]; then 1995a4c37c9Sqh201292 new_bootpath=`$STMSBOOTUTIL -m /devices$cur_bootpath` 2005a4c37c9Sqh201292 if [ $? -eq 0 -a "x$new_bootpath" != "x" ]; then 2015a4c37c9Sqh201292 # stmsboot_util -m phci-based path got mapped path back means 2025a4c37c9Sqh201292 # mpxio is enabled on bootpath 20360fffc19Sjw149990 new_bootpath=`echo $new_bootpath|$SED "s/.*\/devices//"` 2045a4c37c9Sqh201292 /usr/sbin/eeprom bootpath=$new_bootpath 2055a4c37c9Sqh201292 cecho "stmsboot: bootpath has been updated" 2065a4c37c9Sqh201292 2075a4c37c9Sqh201292 /sbin/bootadm update-archive 2085a4c37c9Sqh201292 fi 2095a4c37c9Sqh201292 fi 2105a4c37c9Sqh201292} 2115a4c37c9Sqh201292 2127c478bd9Sstevel@tonic-gate# 2137c478bd9Sstevel@tonic-gate# do the actual work 2147c478bd9Sstevel@tonic-gate# 2157c478bd9Sstevel@tonic-gatempxio_main() 2167c478bd9Sstevel@tonic-gate{ 2177c478bd9Sstevel@tonic-gate # 2187c478bd9Sstevel@tonic-gate # NOTE: If the first attempt to run the service has failed due to an 2197c478bd9Sstevel@tonic-gate # expected error, users should be able to manually rerun the service. 2207c478bd9Sstevel@tonic-gate # 2217c478bd9Sstevel@tonic-gate # First mount /usr read only. This must be done to run 2227c478bd9Sstevel@tonic-gate # utilities such as fsck and devfsadm. 2237c478bd9Sstevel@tonic-gate # In the case of a manual rerun of the service, mounting of /usr here 2247c478bd9Sstevel@tonic-gate # fails if /usr already happens to be mounted. It is better that we 2257c478bd9Sstevel@tonic-gate # do not mount /usr if already mounted, but there seems to be no 2267c478bd9Sstevel@tonic-gate # apparent way to check whether /usr is mounted or not as we mount 2277c478bd9Sstevel@tonic-gate # /usr without making an entry into /etc/mnttab. So instead of 2287c478bd9Sstevel@tonic-gate # explicitly checking for mount failures, we just do a sanity check 2297c478bd9Sstevel@tonic-gate # by looking for some file (in this case devfsadm) in /usr. 2307c478bd9Sstevel@tonic-gate # 2317c478bd9Sstevel@tonic-gate mpxio_mount_usr 2327c478bd9Sstevel@tonic-gate if [ ! -s $DEVFSADM ]; then 2337c478bd9Sstevel@tonic-gate mpxio_error "failed to mount the /usr filesystem." 2347c478bd9Sstevel@tonic-gate return 2357c478bd9Sstevel@tonic-gate fi 2367c478bd9Sstevel@tonic-gate 2377c478bd9Sstevel@tonic-gate if mpxio_mount_root; then 2387c478bd9Sstevel@tonic-gate # create /dev links 2397c478bd9Sstevel@tonic-gate cecho "stmsboot: configuring devices" 2407c478bd9Sstevel@tonic-gate $DEVFSADM 2417c478bd9Sstevel@tonic-gate 2427c478bd9Sstevel@tonic-gate # update /etc/vfstab to reflect device name changes 2437c478bd9Sstevel@tonic-gate if $STMSBOOTUTIL -u >/dev/msglog 2>&1; then 2447c478bd9Sstevel@tonic-gate if update_dumpconf; then 2457c478bd9Sstevel@tonic-gate # update svm configuration to reflect new names 2467c478bd9Sstevel@tonic-gate if [ -s /kernel/drv/md.conf ] && \ 2477c478bd9Sstevel@tonic-gate [ -x $METADEVADM ]; then 2487c478bd9Sstevel@tonic-gate $METADEVADM -r >/dev/msglog 2>&1 2497c478bd9Sstevel@tonic-gate fi 2507c478bd9Sstevel@tonic-gate fi 2515a4c37c9Sqh201292 if [ "x$MACH" = "xi386" ]; then 2525a4c37c9Sqh201292 # only update bootpath here for x86 2535a4c37c9Sqh201292 update_bootpath 2545a4c37c9Sqh201292 fi 2557c478bd9Sstevel@tonic-gate else 2567c478bd9Sstevel@tonic-gate mpxio_error "failed to update /etc/vfstab." 2577c478bd9Sstevel@tonic-gate fi 2587c478bd9Sstevel@tonic-gate 2595a4c37c9Sqh201292 /usr/sbin/svcadm disable system/device/mpxio-upgrade 2607c478bd9Sstevel@tonic-gate 2617c478bd9Sstevel@tonic-gate /usr/sbin/reboot 2627c478bd9Sstevel@tonic-gate else 2637c478bd9Sstevel@tonic-gate mpxio_error "failed to mount the root filesystem." 2647c478bd9Sstevel@tonic-gate if [ $usrmounted -eq 1 ]; then 2657c478bd9Sstevel@tonic-gate /sbin/umount /usr 2667c478bd9Sstevel@tonic-gate fi 2677c478bd9Sstevel@tonic-gate fi 2687c478bd9Sstevel@tonic-gate} 2697c478bd9Sstevel@tonic-gate 2707c478bd9Sstevel@tonic-gatempxio_main 271