xref: /illumos-gate/usr/src/cmd/stmsboot/mpxio-upgrade (revision 7fc66be0e007780898c439e8aa5cffb3fdaa08ea)
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#
23*7fc66be0Sjianfei wang - Sun Microsystems - Beijing China# Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
247c478bd9Sstevel@tonic-gate#
257c478bd9Sstevel@tonic-gate
267c478bd9Sstevel@tonic-gate. /lib/svc/share/fs_include.sh
277c478bd9Sstevel@tonic-gate. /lib/svc/share/net_include.sh
287c478bd9Sstevel@tonic-gate
297c478bd9Sstevel@tonic-gate# Make sure that the essential libraries can be found.
307c478bd9Sstevel@tonic-gateLD_LIBRARY_PATH=/lib; export LD_LIBRARY_PATH
317c478bd9Sstevel@tonic-gateSTMSBOOTUTIL=/lib/mpxio/stmsboot_util
327c478bd9Sstevel@tonic-gateSAVEDIR=/etc/mpxio
33789c9c8fSJames C. McPhersonBOOTDEVICES=$SAVEDIR/boot-devices
347c478bd9Sstevel@tonic-gateRECOVERFILE=$SAVEDIR/recover_instructions
357c478bd9Sstevel@tonic-gateDEVFSADM=/usr/sbin/devfsadm
36a0261a43SJames C. McPhersonDUMPADM=/usr/sbin/dumpadm
377c478bd9Sstevel@tonic-gateMETADEVADM=/usr/sbin/metadevadm
38789c9c8fSJames C. McPhersonISROOTDEV=""
39*7fc66be0Sjianfei wang - Sun Microsystems - Beijing ChinaISROOTDEVPATH=""
407c478bd9Sstevel@tonic-gateusrmounted=0
41fa30e7bdSjianfei wang - Sun Microsystems - Beijing ChinaUNAME=/usr/bin/uname
42789c9c8fSJames C. McPhersonECHO=/usr/bin/echo
43789c9c8fSJames C. McPhersonCAT=/usr/bin/cat
44a0261a43SJames C. McPhersonCP=/usr/bin/cp
45a0261a43SJames C. McPhersonDF=/usr/bin/df
46a0261a43SJames C. McPhersonLS=/usr/bin/ls
47a0261a43SJames C. McPhersonRM=/usr/bin/rm
4860fffc19Sjw149990EGREP=/usr/bin/egrep
49c17d6d03SjmcpSED=/usr/bin/sed
50a0261a43SJames C. McPhersonZPOOL=/usr/sbin/zpool
51a0261a43SJames C. McPhersonAWK=/usr/bin/awk
52a0261a43SJames C. McPhersonMOUNT=/sbin/mount
53a0261a43SJames C. McPhersonUMOUNT=/sbin/mount
54a0261a43SJames C. McPhersonEEPROM=/usr/sbin/eeprom
55a0261a43SJames C. McPhersonBOOTADM=/usr/sbin/bootadm
56a0261a43SJames C. McPhersonSVCADM=/usr/sbin/svcadm
57fa30e7bdSjianfei wang - Sun Microsystems - Beijing ChinaREBOOT=/usr/sbin/reboot
587c478bd9Sstevel@tonic-gate
597c478bd9Sstevel@tonic-gatempxio_error()
607c478bd9Sstevel@tonic-gate{
617c478bd9Sstevel@tonic-gate	cecho "\nERROR: stmsboot: $1"
627c478bd9Sstevel@tonic-gate	#
637c478bd9Sstevel@tonic-gate	# display recovery instructions - the first call logs to the service
647c478bd9Sstevel@tonic-gate	# log and the second call displays on the console.
657c478bd9Sstevel@tonic-gate	#
667c478bd9Sstevel@tonic-gate	shcat $RECOVERFILE
677c478bd9Sstevel@tonic-gate	shcat $RECOVERFILE >/dev/msglog 2>&1
687c478bd9Sstevel@tonic-gate	cecho "These instructions were also logged to the file $RECOVERFILE\n"
697c478bd9Sstevel@tonic-gate}
707c478bd9Sstevel@tonic-gate
717c478bd9Sstevel@tonic-gate#
727c478bd9Sstevel@tonic-gate# root ("/") is already mounted read only by the kernel.
737c478bd9Sstevel@tonic-gate# Remount the root read-write.
747c478bd9Sstevel@tonic-gate#
757c478bd9Sstevel@tonic-gatempxio_mount_root()
767c478bd9Sstevel@tonic-gate{
77a0261a43SJames C. McPherson	HASZFSROOT=`$DF -g / |grep zfs`
78789c9c8fSJames C. McPherson	RVAL=""
797c478bd9Sstevel@tonic-gate
80a0261a43SJames C. McPherson	# In single-user maintenance mode, we don't have a writable
81a0261a43SJames C. McPherson	# root partition, so we _cannot_ use devlinks. Therefore we
82a0261a43SJames C. McPherson	# have to do some dancing - first mount the physical path
83a0261a43SJames C. McPherson	# read-write, then re-run $STMSBOOTUTIL to get the real
84a0261a43SJames C. McPherson	# devlink mapping, and then re-mount the root slice. Of course,
85a0261a43SJames C. McPherson	# if we all used ZFS this wouldn't be such a pain!
86a0261a43SJames C. McPherson	exec < $vfstab; readvfstab /
87a0261a43SJames C. McPherson	# ZFS root environments should _not_ have an entry for /
88a0261a43SJames C. McPherson	# in their /etc/vfstab.
89789c9c8fSJames C. McPherson	if [ -n "$special" ]; then
90a0261a43SJames C. McPherson		# sanity check for ZFSRoot _and_ / in /etc/vfstab
91789c9c8fSJames C. McPherson		if [ -n "$HASZFSROOT" ]; then
92a0261a43SJames C. McPherson			# ERROR - this would cause a failure later
93a0261a43SJames C. McPherson			# so let root know about it now and provide
94a0261a43SJames C. McPherson			# a chance to handle it before filesystem/usr
95a0261a43SJames C. McPherson			cecho "stmsboot: System has ZFS Root *and* an entry for / in /etc/vfstab\nstmsboot: Please remove the / entry from /etc/vfstab and then run\n# svcadm clear mpxio-upgrade"
96a0261a43SJames C. McPherson			exit 1
97a0261a43SJames C. McPherson		fi
98a0261a43SJames C. McPherson		ISPHYS=`echo $special |$AWK '/^\/dev\/dsk/ {print}'`;
99789c9c8fSJames C. McPherson		if [ -z "$ISPHYS" ]; then
100789c9c8fSJames C. McPherson			# a metadevice, either /dev/md or /dev/vx
101789c9c8fSJames C. McPherson			new_special=$special
102789c9c8fSJames C. McPherson			$MOUNT -o remount,rw $new_special / >/dev/msglog 2>&1
103789c9c8fSJames C. McPherson		else
104a0261a43SJames C. McPherson			new_special=`$STMSBOOTUTIL -m $special`
105fa30e7bdSjianfei wang - Sun Microsystems - Beijing China			if [ "$new_special" = "NOT_MAPPED" ]; then
106a0261a43SJames C. McPherson				# this is a bad state to be in, exit
107a0261a43SJames C. McPherson				cecho "Error: Your root device is not mapped."
108a0261a43SJames C. McPherson				exit 1
109a0261a43SJames C. McPherson			fi
1107c478bd9Sstevel@tonic-gate	       		checkopt "llock" $mntopts
1117c478bd9Sstevel@tonic-gate			mntopts='remount'
1127c478bd9Sstevel@tonic-gate			[ -n "$otherops" ] && mntopts="${mntopts},${otherops}"
113789c9c8fSJames C. McPherson			RVAL=`$MOUNT -m -F $fstype -o $mntopts $new_special \
114789c9c8fSJames C. McPherson				$mountp >/dev/msglog 2>&1`
115789c9c8fSJames C. McPherson			# if we've got active-active paths to our rootvp and
116789c9c8fSJames C. McPherson			# the first path returned by $STMSBOOTUTIL is not the
117789c9c8fSJames C. McPherson			# same as the one we booted from, then we need some
118789c9c8fSJames C. McPherson			# handwaving due to restrictions in the ufs module
119789c9c8fSJames C. McPherson			# (see the remountfs() function in
120789c9c8fSJames C. McPherson			# $SRC/uts/common/fs/ufs/ufs_vfsops.c)
121789c9c8fSJames C. McPherson			if [ $? -eq 0 ]; then
122789c9c8fSJames C. McPherson				# now re-run $STMSBOOTUTIL to get the real
123789c9c8fSJames C. McPherson				# mapping for this device
124a0261a43SJames C. McPherson				new_special=`$STMSBOOTUTIL -m $special`
125a0261a43SJames C. McPherson				# mount root for real
126789c9c8fSJames C. McPherson				$MOUNT -o remount,rw $new_special / \
127789c9c8fSJames C. McPherson				    >/dev/msglog 2>&1
128a0261a43SJames C. McPherson			else
129789c9c8fSJames C. McPherson				for device in `$CAT $BOOTDEVICES`; do
130*7fc66be0Sjianfei wang - Sun Microsystems - Beijing China					new_special="/devices${device}"
131789c9c8fSJames C. McPherson					$MOUNT -m -F $fstype -o $mntopts \
132789c9c8fSJames C. McPherson					    $new_special $mountp >/dev/msglog 2>&1
133789c9c8fSJames C. McPherson					if [ $? -eq 0 ]; then
134789c9c8fSJames C. McPherson						# success, break out
135*7fc66be0Sjianfei wang - Sun Microsystems - Beijing China						ISROOTDEVPATH=`$ECHO $device | \
136*7fc66be0Sjianfei wang - Sun Microsystems - Beijing China						$AWK -F":" '{print $1}'`
137789c9c8fSJames C. McPherson					    break;
138789c9c8fSJames C. McPherson					fi
139789c9c8fSJames C. McPherson				done
140789c9c8fSJames C. McPherson				if [ -n "$RVAL" ]; then
141789c9c8fSJames C. McPherson					cecho "Error: Unable to remount your root device"
142789c9c8fSJames C. McPherson					exit 1;
143789c9c8fSJames C. McPherson				fi
144789c9c8fSJames C. McPherson			fi
145789c9c8fSJames C. McPherson		fi
146789c9c8fSJames C. McPherson	else
147789c9c8fSJames C. McPherson		if [ -z "$HASZFSROOT" ]; then
148a0261a43SJames C. McPherson			cecho "stmsboot: Error: your root slice is invalid"
149a0261a43SJames C. McPherson			exit 1
150a0261a43SJames C. McPherson		else
151a0261a43SJames C. McPherson			cecho "stmsboot: Root is on ZFS"
152a0261a43SJames C. McPherson		fi
153a0261a43SJames C. McPherson	fi
1547c478bd9Sstevel@tonic-gate}
1557c478bd9Sstevel@tonic-gate
1567c478bd9Sstevel@tonic-gate#
1577c478bd9Sstevel@tonic-gate# mount /usr read only
1587c478bd9Sstevel@tonic-gate#
1597c478bd9Sstevel@tonic-gatempxio_mount_usr()
1607c478bd9Sstevel@tonic-gate{
1617c478bd9Sstevel@tonic-gate	exec < $vfstab; readvfstab "/usr"
1627c478bd9Sstevel@tonic-gate	ret_val=0
1637c478bd9Sstevel@tonic-gate	if [ -n "$mountp" ]; then
164c0e23f97SRaghuram Prahlada		case "$special" in
165c0e23f97SRaghuram Prahlada		/dev/md/*)
166c0e23f97SRaghuram Prahlada			new_special=$special
167c0e23f97SRaghuram Prahlada			;;
168c0e23f97SRaghuram Prahlada		/dev/vx/*)
169c0e23f97SRaghuram Prahlada			new_special=$special
170c0e23f97SRaghuram Prahlada			;;
171c0e23f97SRaghuram Prahlada		*)
172a0261a43SJames C. McPherson			new_special=`$STMSBOOTUTIL -m $special`
173c0e23f97SRaghuram Prahlada			;;
174c0e23f97SRaghuram Prahlada		esac
175a0261a43SJames C. McPherson
176fa30e7bdSjianfei wang - Sun Microsystems - Beijing China		if [ "$fstype" = "cachefs" ]; then
1777c478bd9Sstevel@tonic-gate			# Mount read-only without the cache.
1787c478bd9Sstevel@tonic-gate			case "$mntopts" in
1797c478bd9Sstevel@tonic-gate			*backfstype=nfs*)
1807c478bd9Sstevel@tonic-gate				cfsbacktype=nfs
1817c478bd9Sstevel@tonic-gate				;;
1827c478bd9Sstevel@tonic-gate			*backfstype=hsfs*)
1837c478bd9Sstevel@tonic-gate				cfsbacktype=hsfs
1847c478bd9Sstevel@tonic-gate				;;
1857c478bd9Sstevel@tonic-gate			*)
1867c478bd9Sstevel@tonic-gate				cecho 'stmsboot: invalid vfstab entry for /usr'
1877c478bd9Sstevel@tonic-gate				cfsbacktype=nfs
1887c478bd9Sstevel@tonic-gate				;;
1897c478bd9Sstevel@tonic-gate			esac
1907c478bd9Sstevel@tonic-gate			# see the comment below for /dev/null
191a0261a43SJames C. McPherson			$MOUNT -m -F $cfsbacktype -o ro $new_special $mountp \
1927c478bd9Sstevel@tonic-gate>/dev/null 2>&1
1937c478bd9Sstevel@tonic-gate			ret_val=$?
1947c478bd9Sstevel@tonic-gate		else
1957c478bd9Sstevel@tonic-gate			#
1967c478bd9Sstevel@tonic-gate			# Must use -o largefiles here to ensure the read-only
1977c478bd9Sstevel@tonic-gate			# mount does not fail as a result of having a large
1987c478bd9Sstevel@tonic-gate			# file present on /usr.
1997c478bd9Sstevel@tonic-gate			#
200fa30e7bdSjianfei wang - Sun Microsystems - Beijing China			if [ "$mntopts" = "-" ]; then
2017c478bd9Sstevel@tonic-gate				mntopts='ro,largefiles'
2027c478bd9Sstevel@tonic-gate			else
2037c478bd9Sstevel@tonic-gate				checkopt largefiles $mntopts
204fa30e7bdSjianfei wang - Sun Microsystems - Beijing China				if [ "$option" != "largefiles" ]; then
2057c478bd9Sstevel@tonic-gate					mntopts="largefiles,$mntopts"
2067c478bd9Sstevel@tonic-gate				fi
2077c478bd9Sstevel@tonic-gate
2087c478bd9Sstevel@tonic-gate				checkopt ro $mntopts
209fa30e7bdSjianfei wang - Sun Microsystems - Beijing China				if [ "$option" != "ro" ]; then
2107c478bd9Sstevel@tonic-gate					mntopts="ro,$mntopts"
2117c478bd9Sstevel@tonic-gate				fi
2127c478bd9Sstevel@tonic-gate
2137c478bd9Sstevel@tonic-gate				# Requesting logging on a read-only mount
2147c478bd9Sstevel@tonic-gate				# causes errors to be displayed, so remove
2157c478bd9Sstevel@tonic-gate				# "logging" from the list of options.
2167c478bd9Sstevel@tonic-gate				checkopt logging $mntopts
217fa30e7bdSjianfei wang - Sun Microsystems - Beijing China				if [ "$option" = "logging" ]; then
2187c478bd9Sstevel@tonic-gate					mntopts="$otherops"
2197c478bd9Sstevel@tonic-gate				fi
2207c478bd9Sstevel@tonic-gate			fi
2217c478bd9Sstevel@tonic-gate
2227c478bd9Sstevel@tonic-gate			# In case of a manual restart of the service, mount
2237c478bd9Sstevel@tonic-gate			# will emit messages if /usr is already mounted.
2247c478bd9Sstevel@tonic-gate			# So redirect the output to /dev/null.
225a0261a43SJames C. McPherson			$MOUNT -m -F $fstype -o $mntopts $new_special /usr \
2267c478bd9Sstevel@tonic-gate>/dev/null 2>&1
2277c478bd9Sstevel@tonic-gate			ret_val=$?
2287c478bd9Sstevel@tonic-gate		fi
2297c478bd9Sstevel@tonic-gate		if [ $ret_val -eq 0 ]; then
2307c478bd9Sstevel@tonic-gate			usrmounted=1
2317c478bd9Sstevel@tonic-gate		fi
2327c478bd9Sstevel@tonic-gate	fi
2337c478bd9Sstevel@tonic-gate
2347c478bd9Sstevel@tonic-gate	return $ret_val
2357c478bd9Sstevel@tonic-gate}
2367c478bd9Sstevel@tonic-gate
2377c478bd9Sstevel@tonic-gate# update system dump configuration
2387c478bd9Sstevel@tonic-gateupdate_dumpconf()
2397c478bd9Sstevel@tonic-gate{
24004cbdd1eSramat	# Disable device-in-use checking (done in libdiskmgt).
24104cbdd1eSramat	# Without disabling this check, the configuration of dump device
24204cbdd1eSramat	# would fail as the device-in-use code incorrectly concludes that
24304cbdd1eSramat	# the device is in use and hence prevents configuration of the dump
24404cbdd1eSramat	# device.
24504cbdd1eSramat	NOINUSE_CHECK=1
24604cbdd1eSramat	export NOINUSE_CHECK
24704cbdd1eSramat
248a0261a43SJames C. McPherson	DUMPISZFS=`$AWK -F"=" '/DUMPADM_DEVICE/ {print $2}' /etc/dumpadm.conf|$EGREP zvol`
249fa30e7bdSjianfei wang - Sun Microsystems - Beijing China	if [ -z "$DUMPISZFS" ]; then
250a0261a43SJames C. McPherson		set -- `$DUMPADM -u 2>&1 | $EGREP 'cannot use /dev.* as dump device'`
251fa30e7bdSjianfei wang - Sun Microsystems - Beijing China		if [ -n "$4" ]; then
252a0261a43SJames C. McPherson			newname=`$STMSBOOTUTIL -m $4`
2537c478bd9Sstevel@tonic-gate			if [ $? -eq 0 ]; then
254a0261a43SJames C. McPherson				if $DUMPADM -d $newname > /dev/msglog 2> /dev/console; then
255a0261a43SJames C. McPherson					cecho "stmsboot: dump configuration \
256a0261a43SJames C. McPherson					has been updated."
2577c478bd9Sstevel@tonic-gate				else
258a0261a43SJames C. McPherson					mpxio_error "failed to configure \
259a0261a43SJames C. McPherson					the dump device.\nold \
260a0261a43SJames C. McPherson					dump device name: $4"
2617c478bd9Sstevel@tonic-gate					return 1
2627c478bd9Sstevel@tonic-gate				fi
2637c478bd9Sstevel@tonic-gate			fi
2647c478bd9Sstevel@tonic-gate		fi
265a0261a43SJames C. McPherson	else
266a0261a43SJames C. McPherson		# make sure we can get to it, force zfs to load fully
267a0261a43SJames C. McPherson		$LS $DUMPISZFS >>/dev/null 2>&1
268a0261a43SJames C. McPherson		cecho "stmsboot: dump on ZFS, no dumpadm update required"
269a0261a43SJames C. McPherson	fi
2707c478bd9Sstevel@tonic-gate	return 0
2717c478bd9Sstevel@tonic-gate}
2727c478bd9Sstevel@tonic-gate
2735a4c37c9Sqh201292# Update bootpath for x86 here when we are enabling mpxio on root
2745a4c37c9Sqh201292update_bootpath()
2755a4c37c9Sqh201292{
276a0261a43SJames C. McPherson	cur_bootpath=`$STMSBOOTUTIL -b`
277fa30e7bdSjianfei wang - Sun Microsystems - Beijing China	if [ $? -ne 0 ]; then
278a0261a43SJames C. McPherson		cecho "stmsboot: ERROR! Unable to retrieve bootpath property\n"
279a0261a43SJames C. McPherson		exit 1
280a0261a43SJames C. McPherson	fi
2815a4c37c9Sqh201292
282fa30e7bdSjianfei wang - Sun Microsystems - Beijing China	# Since on x64 platforms the eeprom command doesn't update the
283fa30e7bdSjianfei wang - Sun Microsystems - Beijing China	# kernel, the file /boot/solaris/bootenv.rc and the kernel's
284fa30e7bdSjianfei wang - Sun Microsystems - Beijing China	# bootpath variable have a good chance of differing. We do some
285fa30e7bdSjianfei wang - Sun Microsystems - Beijing China	# extra handwaving to get the correct bootpath variable setting.
286fa30e7bdSjianfei wang - Sun Microsystems - Beijing China
287fa30e7bdSjianfei wang - Sun Microsystems - Beijing China	ONDISKVER=`$AWK '/bootpath/ {print $3}' /boot/solaris/bootenv.rc|\
288fa30e7bdSjianfei wang - Sun Microsystems - Beijing China		$SED -e"s,',,g"`
289fa30e7bdSjianfei wang - Sun Microsystems - Beijing China	if [ "$ONDISKVER" != "$cur_bootpath" ]; then
290fa30e7bdSjianfei wang - Sun Microsystems - Beijing China		cur_bootpath="$ONDISKVER"
291fa30e7bdSjianfei wang - Sun Microsystems - Beijing China	fi
292fa30e7bdSjianfei wang - Sun Microsystems - Beijing China
293a0261a43SJames C. McPherson	NEWBOOTPATH=""
294a0261a43SJames C. McPherson	for path in $cur_bootpath; do
295a0261a43SJames C. McPherson		mapped=`$STMSBOOTUTIL -p $path`
296a0261a43SJames C. McPherson		if [ "$mapped" != "NOT_MAPPED" ]; then
297fa30e7bdSjianfei wang - Sun Microsystems - Beijing China			if [ "$mapped" != "$path" ]; then
298a0261a43SJames C. McPherson				NEWBOOTPATH=`echo "$path " | \
299a0261a43SJames C. McPherson				    $SED -e"s|$path|$mapped|"`" $NEWBOOTPATH"
300a0261a43SJames C. McPherson			else
301a0261a43SJames C. McPherson				NEWBOOTPATH="$NEWBOOTPATH $path"
3025a4c37c9Sqh201292			fi
3035a4c37c9Sqh201292		fi
304a0261a43SJames C. McPherson	done
305a0261a43SJames C. McPherson	# now strip off leading and trailing space chars
306a0261a43SJames C. McPherson	new_bootpath=`echo $NEWBOOTPATH`
307a0261a43SJames C. McPherson	$EEPROM bootpath="$new_bootpath"
308e6f838bcSjianfei wang - Sun Microsystems - Beijing China	cecho "stmsboot: bootpath has been updated"
309a0261a43SJames C. McPherson	cecho ""
3105a4c37c9Sqh201292}
3115a4c37c9Sqh201292
312a0261a43SJames C. McPherson# Now do the actual work
3137c478bd9Sstevel@tonic-gatempxio_main()
3147c478bd9Sstevel@tonic-gate{
3157c478bd9Sstevel@tonic-gate	# NOTE: If the first attempt to run the service has failed due to an
3167c478bd9Sstevel@tonic-gate	# expected error, users should be able to manually rerun the service.
3177c478bd9Sstevel@tonic-gate	#
3187c478bd9Sstevel@tonic-gate	# First mount /usr read only. This must be done to run
3197c478bd9Sstevel@tonic-gate	# utilities such as fsck and devfsadm.
3207c478bd9Sstevel@tonic-gate	# In the case of a manual rerun of the service, mounting of /usr here
3217c478bd9Sstevel@tonic-gate	# fails if /usr already happens to be mounted. It is better that we
3227c478bd9Sstevel@tonic-gate	# do not mount /usr if already mounted, but there seems to be no
3237c478bd9Sstevel@tonic-gate	# apparent way to check whether /usr is mounted or not as we mount
3247c478bd9Sstevel@tonic-gate	# /usr without making an entry into /etc/mnttab. So instead of
3257c478bd9Sstevel@tonic-gate	# explicitly checking for mount failures, we just do a sanity check
3267c478bd9Sstevel@tonic-gate	# by looking for some file (in this case devfsadm) in /usr.
3277c478bd9Sstevel@tonic-gate	#
3287c478bd9Sstevel@tonic-gate	mpxio_mount_usr
3297c478bd9Sstevel@tonic-gate	if [ ! -s $DEVFSADM ]; then
3307c478bd9Sstevel@tonic-gate		mpxio_error "failed to mount the /usr filesystem."
3317c478bd9Sstevel@tonic-gate		return
3327c478bd9Sstevel@tonic-gate	fi
3337c478bd9Sstevel@tonic-gate
3347c478bd9Sstevel@tonic-gate	if mpxio_mount_root; then
3357c478bd9Sstevel@tonic-gate		# create /dev links
3367c478bd9Sstevel@tonic-gate		cecho "stmsboot: configuring devices"
3377c478bd9Sstevel@tonic-gate		$DEVFSADM
3387c478bd9Sstevel@tonic-gate
339*7fc66be0Sjianfei wang - Sun Microsystems - Beijing China		if [ -n "$ISROOTDEVPATH" ]; then
340*7fc66be0Sjianfei wang - Sun Microsystems - Beijing China			ISROOTDEV=`$STMSBOOTUTIL -o $ISROOTDEVPATH`
341*7fc66be0Sjianfei wang - Sun Microsystems - Beijing China		fi
342*7fc66be0Sjianfei wang - Sun Microsystems - Beijing China
3437c478bd9Sstevel@tonic-gate		# update /etc/vfstab to reflect device name changes
344a0261a43SJames C. McPherson		$STMSBOOTUTIL -u >/dev/msglog 2>&1
345a0261a43SJames C. McPherson		if [ $? -eq 0 ]; then
346a0261a43SJames C. McPherson			$CP /etc/vfstab /etc/vfstab.old
347789c9c8fSJames C. McPherson			# handle active-active paths, where the probe order
348789c9c8fSJames C. McPherson			# for the hba reports a different path to what the
349789c9c8fSJames C. McPherson			# boot-device variable gives us
350789c9c8fSJames C. McPherson			if [ -n "$ISROOTDEV" ]; then
351789c9c8fSJames C. McPherson				ROOTDEVCHK=`grep $ISROOTDEV /etc/vfstab`
352fa30e7bdSjianfei wang - Sun Microsystems - Beijing China				if [ $? -ne 0 ]; then
353789c9c8fSJames C. McPherson					# we got a different path for root
354789c9c8fSJames C. McPherson					exec < $SAVEDIR/vfstab.new; readvfstab /
355789c9c8fSJames C. McPherson					FILEDEV=`$ECHO $special | \
356*7fc66be0Sjianfei wang - Sun Microsystems - Beijing China					    $SED -e"s,/dev/dsk/,," -e"s,s[0-9]*,,"`
357789c9c8fSJames C. McPherson					$SED -e"s,$FILEDEV,$ISROOTDEV,g" < \
358789c9c8fSJames C. McPherson					    $SAVEDIR/vfstab.new > /etc/vfstab
359789c9c8fSJames C. McPherson				fi
360789c9c8fSJames C. McPherson			else
361a0261a43SJames C. McPherson				$CP $SAVEDIR/vfstab.new /etc/vfstab
362789c9c8fSJames C. McPherson			fi
363a0261a43SJames C. McPherson			$RM $SAVEDIR/vfstab.new
364a0261a43SJames C. McPherson			cecho ""
365a0261a43SJames C. McPherson			cecho "stmsboot: vfstab has been updated"
366fa30e7bdSjianfei wang - Sun Microsystems - Beijing China
367c0e23f97SRaghuram Prahlada			if update_dumpconf; then
368c0e23f97SRaghuram Prahlada				# update svm configuration to reflect new names
369c0e23f97SRaghuram Prahlada				if [ -s /kernel/drv/md.conf ] && \
370c0e23f97SRaghuram Prahlada				    [ -x $METADEVADM ]; then
371c0e23f97SRaghuram Prahlada					$METADEVADM -r >/dev/msglog 2>&1
372c0e23f97SRaghuram Prahlada				fi
373c0e23f97SRaghuram Prahlada			fi
374fa30e7bdSjianfei wang - Sun Microsystems - Beijing China
375fa30e7bdSjianfei wang - Sun Microsystems - Beijing China			MACH=`$UNAME -p`
376fa30e7bdSjianfei wang - Sun Microsystems - Beijing China			if [ "$MACH" = "i386" ]; then
3775a4c37c9Sqh201292				# only update bootpath here for x86
3785a4c37c9Sqh201292				update_bootpath
3795a4c37c9Sqh201292			fi
380e6f838bcSjianfei wang - Sun Microsystems - Beijing China			cecho "stmsboot: now regenerating boot archive"
381e6f838bcSjianfei wang - Sun Microsystems - Beijing China			$BOOTADM update-archive
3827c478bd9Sstevel@tonic-gate		else
3837c478bd9Sstevel@tonic-gate			mpxio_error "failed to update /etc/vfstab."
3847c478bd9Sstevel@tonic-gate		fi
3857c478bd9Sstevel@tonic-gate
386a0261a43SJames C. McPherson		$SVCADM disable system/device/mpxio-upgrade
387fa30e7bdSjianfei wang - Sun Microsystems - Beijing China
388fa30e7bdSjianfei wang - Sun Microsystems - Beijing China		if [ $usrmounted -eq 1 ]; then
389fa30e7bdSjianfei wang - Sun Microsystems - Beijing China			cecho "stmsboot: rebooting the system now."
390fa30e7bdSjianfei wang - Sun Microsystems - Beijing China			$REBOOT
391fa30e7bdSjianfei wang - Sun Microsystems - Beijing China		fi
3927c478bd9Sstevel@tonic-gate	else
3937c478bd9Sstevel@tonic-gate		mpxio_error "failed to mount the root filesystem."
3947c478bd9Sstevel@tonic-gate	fi
3957c478bd9Sstevel@tonic-gate}
3967c478bd9Sstevel@tonic-gate
3977c478bd9Sstevel@tonic-gatempxio_main
398