5 # The contents of this file are subject to the terms of the
6 # Common Development and Distribution License (the "License").
7 # You may not use this file except in compliance with the License.
9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 # or http://www.opensolaris.org/os/licensing.
11 # See the License for the specific language governing permissions
12 # and limitations under the License.
14 # When distributing Covered Code, include this CDDL HEADER in each
15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 # If applicable, add the following below this CDDL HEADER, with the
17 # fields enclosed by brackets "[]" replaced with your own identifying
18 # information: Portions Copyright [yyyy] [name of copyright owner]
24 # Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
25 # Copyright 2008, 2010, Richard Lowe
26 # Copyright 2011 Nexenta Systems, Inc. All rights reserved.
27 # Copyright 2012 Joshua M. Clulow <josh@sysmgr.org>
29 # Based on the nightly script from the integration folks,
30 # Mostly modified and owned by mike_s.
31 # Changes also by kjc, dmk.
33 # BRINGOVER_WS may be specified in the env file.
34 # The default is the old behavior of CLONE_WS
36 # -i on the command line, means fast options, so when it's on the
37 # command line (only), lint and check builds are skipped no matter what
38 # the setting of their individual flags are in NIGHTLY_OPTIONS.
40 # LINTDIRS can be set in the env file, format is a list of:
42 # /dirname-to-run-lint-on flag
44 # Where flag is: y - enable lint noise diff output
45 # n - disable lint noise diff output
47 # For example: LINTDIRS="$SRC/uts n $SRC/stand y $SRC/psm y"
49 # OPTHOME may be set in the environment to override /opt
53 # The CDPATH variable causes ksh's `cd' builtin to emit messages to stdout
54 # under certain circumstances, which can really screw things up; unset it.
58 # Get the absolute path of the nightly script that the user invoked. This
59 # may be a relative path, and we need to do this before changing directory.
60 nightly_path
=`whence $0`
63 # Keep track of where we found nightly so we can invoke the matching
64 # which_scm script. If that doesn't work, don't go guessing, just rely
65 # on the $PATH settings, which will generally give us either /opt/onbld
66 # or the user's workspace.
68 WHICH_SCM
=$
(dirname $nightly_path)/which_scm
69 if [[ ! -x $WHICH_SCM ]]; then
75 print
-u2 "nightly: $*"
80 # Function to do a DEBUG and non-DEBUG build. Needed because we might
81 # need to do another for the source build, and since we only deliver DEBUG or
86 function normal_build
{
88 typeset orig_p_FLAG
="$p_FLAG"
89 typeset crypto_signer
="$CODESIGN_USER"
93 # non-DEBUG build begins
95 if [ "$F_FLAG" = "n" ]; then
96 set_non_debug_build_flags
97 CODESIGN_USER
="$crypto_signer" \
98 build
"non-DEBUG" "$suffix-nd" "-nd" "$MULTI_PROTO"
100 echo "\n==== No non-DEBUG $open_only build ====\n" >> "$LOGFILE"
103 # non-DEBUG build ends
107 if [ "$D_FLAG" = "y" ]; then
108 set_debug_build_flags
109 CODESIGN_USER
="$crypto_signer" \
110 build
"DEBUG" "$suffix" "" "$MULTI_PROTO"
112 echo "\n==== No DEBUG $open_only build ====\n" >> "$LOGFILE"
117 p_FLAG
="$orig_p_FLAG"
121 # usage: run_hook HOOKNAME ARGS...
123 # If variable "$HOOKNAME" is defined, insert a section header into
124 # our logs and then run the command with ARGS
128 eval HOOKCMD
=\$
$HOOKNAME
131 if [ -n "$HOOKCMD" ]; then
133 echo "\n==== Running $HOOKNAME command: $HOOKCMD ====\n"
134 ( $HOOKCMD "$@" 2>&1 )
135 if [ "$?" -ne 0 ]; then
136 # Let exit status propagate up
139 ) |
tee -a $mail_msg_file >> $LOGFILE
141 if [ -f $TMPDIR/abort
]; then
143 echo "\nAborting at request of $HOOKNAME" |
144 tee -a $mail_msg_file >> $LOGFILE
150 # Return library search directive as function of given root.
152 echo "-L$1/lib -L$1/usr/lib"
155 # Return header search directive as function of given root.
157 echo "-I$1/usr/include"
161 # Function to do the build, including package generation.
162 # usage: build LABEL SUFFIX ND MULTIPROTO
163 # - LABEL is used to tag build output.
164 # - SUFFIX is used to distinguish files (e.g., DEBUG vs non-DEBUG,
165 # open-only vs full tree).
166 # - ND is "-nd" (non-DEBUG builds) or "" (DEBUG builds).
167 # - If MULTIPROTO is "yes", it means to name the proto area according to
168 # SUFFIX. Otherwise ("no"), (re)use the standard proto area.
175 INSTALLOG
=install${SUFFIX}-${MACH}
176 NOISE
=noise
${SUFFIX}-${MACH}
177 PKGARCHIVE
=${PKGARCHIVE_ORIG}${SUFFIX}
180 [ $MULTIPROTO = no
] ||
export ROOT
=$ROOT$SUFFIX
182 export ENVLDLIBS1
=`myldlibs $ROOT`
183 export ENVCPPFLAGS1
=`myheaders $ROOT`
187 # Build OS-Networking source
189 echo "\n==== Building OS-Net source at `date` ($LABEL) ====\n" \
192 rm -f $SRC/${INSTALLOG}.out
194 /bin
/time $MAKE -e install 2>&1 | \
195 tee -a $SRC/${INSTALLOG}.out
>> $LOGFILE
197 echo "\n==== Build errors ($LABEL) ====\n" >> $mail_msg_file
198 egrep ":" $SRC/${INSTALLOG}.out |
199 egrep -e "(^${MAKE}:|[ ]error[: \n])" | \
200 egrep -v "Ignoring unknown host" | \
201 egrep -v "cc .* -o error " | \
202 egrep -v "warning" >> $mail_msg_file
203 if [ "$?" = "0" ]; then
207 grep "bootblock image is .* bytes too big" $SRC/${INSTALLOG}.out \
209 if [ "$?" = "0" ]; then
214 echo "\n==== Build warnings ($LABEL) ====\n" >>$mail_msg_file
215 egrep -i warning
: $SRC/${INSTALLOG}.out \
217 |
egrep -v "symbol (\`|')timezone' has differing types:" \
218 |
egrep -v "parameter <PSTAMP> set to" \
219 |
egrep -v "Ignoring unknown host" \
220 |
egrep -v "redefining segment flags attribute for" \
223 echo "\n==== Ended OS-Net source build at `date` ($LABEL) ====\n" \
226 echo "\n==== Elapsed build time ($LABEL) ====\n" >>$mail_msg_file
227 tail -3 $SRC/${INSTALLOG}.out
>>$mail_msg_file
229 if [ "$i_FLAG" = "n" ]; then
230 rm -f $SRC/${NOISE}.ref
231 if [ -f $SRC/${NOISE}.out
]; then
232 mv $SRC/${NOISE}.out
$SRC/${NOISE}.ref
234 grep : $SRC/${INSTALLOG}.out \
236 |
egrep -v '^(Start|Finish|real|user|sys|./bld_awk)' \
239 |
egrep -v '^LD_LIBRARY_PATH=' \
240 |
egrep -v 'ar: creating' \
241 |
egrep -v 'ar: writing' \
242 |
egrep -v 'conflicts:' \
243 |
egrep -v ':saved created' \
244 |
egrep -v '^stty.*c:' \
245 |
egrep -v '^mfgname.c:' \
246 |
egrep -v '^uname-i.c:' \
247 |
egrep -v '^volumes.c:' \
248 |
egrep -v '^lint library construction:' \
249 |
egrep -v 'tsort: INFORM:' \
250 |
egrep -v 'stripalign:' \
251 |
egrep -v 'chars, width' \
252 |
egrep -v "symbol (\`|')timezone' has differing types:" \
253 |
egrep -v 'PSTAMP' \
254 |
egrep -v '|%WHOANDWHERE%|' \
255 |
egrep -v '^Manifying' \
256 |
egrep -v 'Ignoring unknown host' \
257 |
egrep -v 'Processing method:' \
258 |
egrep -v '^Writing' \
259 |
egrep -v 'spellin1:' \
260 |
egrep -v '^adding:' \
261 |
egrep -v "^echo 'msgid" \
262 |
egrep -v '^echo ' \
264 |
egrep -v '^Adding file:' \
265 |
egrep -v 'CLASSPATH=' \
266 |
egrep -v '\/var\/mail\/:saved' \
267 |
egrep -v -- '-DUTS_VERSION=' \
268 |
egrep -v '^Running Mkbootstrap' \
269 |
egrep -v '^Applet length read:' \
270 |
egrep -v 'bytes written:' \
271 |
egrep -v '^File:SolarisAuthApplet.bin' \
272 |
egrep -v -i 'jibversion' \
273 |
egrep -v '^Output size:' \
274 |
egrep -v '^Solo size statistics:' \
275 |
egrep -v '^Using ROM API Version' \
276 |
egrep -v '^Zero Signature length:' \
277 |
egrep -v '^Note \(probably harmless\):' \
279 |
egrep -v -- '-xcache' \
281 |
egrep -v '^cc1: note: -fwritable-strings' \
282 |
egrep -v 'svccfg-native -s svc:/' \
283 |
sort |
uniq >$SRC/${NOISE}.out
284 if [ ! -f $SRC/${NOISE}.ref
]; then
285 cp $SRC/${NOISE}.out
$SRC/${NOISE}.ref
287 echo "\n==== Build noise differences ($LABEL) ====\n" \
289 diff $SRC/${NOISE}.ref
$SRC/${NOISE}.out
>>$mail_msg_file
293 # Re-sign selected binaries using signing server
294 # (gatekeeper builds only)
296 if [ -n "$CODESIGN_USER" -a "$this_build_ok" = "y" ]; then
297 echo "\n==== Signing proto area at `date` ====\n" >> $LOGFILE
298 signing_file
="${TMPDIR}/signing"
299 rm -f ${signing_file}
301 signproto
$SRC/tools
/codesign
/creds
2>&1 | \
302 tee -a ${signing_file} >> $LOGFILE
303 echo "\n==== Finished signing proto area at `date` ====\n" \
305 echo "\n==== Crypto module signing errors ($LABEL) ====\n" \
307 egrep 'WARNING|ERROR' ${signing_file} >> $mail_msg_file
308 if (( $?
== 0 )) ; then
317 if [ "$p_FLAG" = "y" -a "$this_build_ok" = "y" ]; then
318 if [ -d $SRC/pkg
]; then
319 echo "\n==== Creating $LABEL packages at `date` ====\n" \
321 echo "Clearing out $PKGARCHIVE ..." >> $LOGFILE
322 rm -rf $PKGARCHIVE >> "$LOGFILE" 2>&1
323 mkdir
-p $PKGARCHIVE >> "$LOGFILE" 2>&1
325 rm -f $SRC/pkg
/${INSTALLOG}.out
327 /bin
/time $MAKE -e install 2>&1 | \
328 tee -a $SRC/pkg
/${INSTALLOG}.out
>> $LOGFILE
330 echo "\n==== package build errors ($LABEL) ====\n" \
333 egrep "${MAKE}|ERROR|WARNING" $SRC/pkg
/${INSTALLOG}.out | \
336 egrep -v "Ignoring unknown host" \
340 # Handle it gracefully if -p was set but there so
343 echo "\n==== No $LABEL packages to build ====\n" \
347 echo "\n==== Not creating $LABEL packages ====\n" >> $LOGFILE
353 # Usage: dolint /dir y|n
354 # Arg. 2 is a flag to turn on/off the lint diff output
356 if [ ! -d "$1" ]; then
357 echo "dolint error: $1 is not a directory"
361 if [ "$2" != "y" -a "$2" != "n" ]; then
362 echo "dolint internal error: $2 should be 'y' or 'n'"
368 base
=`basename $lintdir`
369 LINTOUT
=$lintdir/lint-
${MACH}.out
370 LINTNOISE
=$lintdir/lint-noise-
${MACH}
371 export ENVLDLIBS1
=`myldlibs $ROOT`
372 export ENVCPPFLAGS1
=`myheaders $ROOT`
374 set_debug_build_flags
377 # '$MAKE lint' in $lintdir
379 echo "\n==== Begin '$MAKE lint' of $base at `date` ====\n" >> $LOGFILE
381 # remove old lint.out
382 rm -f $lintdir/lint.out
$lintdir/lint-noise.out
383 if [ -f $lintdir/lint-noise.ref
]; then
384 mv $lintdir/lint-noise.ref
${LINTNOISE}.ref
390 # Remove all .ln files to ensure a full reference file
392 rm -f Nothing_to_remove \
393 `find . \( -name SCCS -o -name .hg -o -name .svn -o -name .git \) \
394 -prune -o -type f -name '*.ln' -print `
396 /bin
/time $MAKE -ek lint
2>&1 | \
397 tee -a $LINTOUT >> $LOGFILE
398 echo "\n==== '$MAKE lint' of $base ERRORS ====\n" >> $mail_msg_file
399 grep "$MAKE:" $LINTOUT |
400 egrep -v "Ignoring unknown host" \
403 echo "\n==== Ended '$MAKE lint' of $base at `date` ====\n" >> $LOGFILE
405 echo "\n==== Elapsed time of '$MAKE lint' of $base ====\n" \
407 tail -3 $LINTOUT >>$mail_msg_file
409 rm -f ${LINTNOISE}.ref
410 if [ -f ${LINTNOISE}.out
]; then
411 mv ${LINTNOISE}.out
${LINTNOISE}.ref
414 egrep -v '^(real|user|sys)' |
415 egrep -v '(library construction)' | \
416 egrep -v ': global crosschecks' | \
417 egrep -v 'Ignoring unknown host' | \
419 sort |
uniq > ${LINTNOISE}.out
420 if [ ! -f ${LINTNOISE}.ref
]; then
421 cp ${LINTNOISE}.out
${LINTNOISE}.ref
423 if [ "$dodiff" != "n" ]; then
424 echo "\n==== lint warnings $base ====\n" \
426 # should be none, though there are a few that were filtered out
428 egrep -i '(warning|lint):' ${LINTNOISE}.out \
429 |
sort |
uniq >> $mail_msg_file
430 echo "\n==== lint noise differences $base ====\n" \
432 diff ${LINTNOISE}.ref
${LINTNOISE}.out \
438 # Build and install the onbld tools.
440 # usage: build_tools DESTROOT
442 # returns non-zero status if the build was successful.
444 function build_tools
{
447 INSTALLOG
=install-
${MACH}
449 echo "\n==== Building tools at `date` ====\n" \
452 rm -f ${TOOLS}/${INSTALLOG}.out
454 /bin
/time $MAKE TOOLS_PROTO
=${DESTROOT} -e install 2>&1 | \
455 tee -a ${TOOLS}/${INSTALLOG}.out
>> $LOGFILE
457 echo "\n==== Tools build errors ====\n" >> $mail_msg_file
459 egrep ":" ${TOOLS}/${INSTALLOG}.out |
460 egrep -e "(${MAKE}:|[ ]error[: \n])" | \
461 egrep -v "Ignoring unknown host" | \
462 egrep -v warning
>> $mail_msg_file
467 # Set up to use locally installed tools.
469 # usage: use_tools TOOLSROOT
475 # If we're not building ON workspace, then the TOOLSROOT
476 # settings here are clearly ignored by the workspace
477 # makefiles, prepending nonexistent directories to PATH is
478 # harmless, and we clearly do not wish to override
481 # If we're building an ON workspace, then the prepended PATH
482 # elements should supercede the preexisting ONBLD_TOOLS paths,
483 # and we want to override ONBLD_TOOLS to catch the tools that
484 # don't have specific path env vars here.
486 # So the only conditional behavior is overriding ONBLD_TOOLS,
487 # and we check for "an ON workspace" by looking for
488 # ${TOOLSROOT}/opt/onbld.
491 STABS
=${TOOLSROOT}/opt
/onbld
/bin
/${MACH}/stabs
493 CTFSTABS
=${TOOLSROOT}/opt
/onbld
/bin
/${MACH}/ctfstabs
495 GENOFFSETS
=${TOOLSROOT}/opt
/onbld
/bin
/genoffsets
498 CTFCONVERT
=${TOOLSROOT}/opt
/onbld
/bin
/${MACH}/ctfconvert
500 CTFMERGE
=${TOOLSROOT}/opt
/onbld
/bin
/${MACH}/ctfmerge
503 CTFCVTPTBL
=${TOOLSROOT}/opt
/onbld
/bin
/ctfcvtptbl
505 CTFFINDMOD
=${TOOLSROOT}/opt
/onbld
/bin
/ctffindmod
508 if [ "$VERIFY_ELFSIGN" = "y" ]; then
509 ELFSIGN
=${TOOLSROOT}/opt
/onbld
/bin
/elfsigncmp
511 ELFSIGN
=${TOOLSROOT}/opt
/onbld
/bin
/${MACH}/elfsign
515 PATH
="${TOOLSROOT}/opt/onbld/bin/${MACH}:${PATH}"
516 PATH
="${TOOLSROOT}/opt/onbld/bin:${PATH}"
519 if [ -d "${TOOLSROOT}/opt/onbld" ]; then
520 ONBLD_TOOLS
=${TOOLSROOT}/opt
/onbld
524 echo "\n==== New environment settings. ====\n" >> $LOGFILE
525 echo "STABS=${STABS}" >> $LOGFILE
526 echo "CTFSTABS=${CTFSTABS}" >> $LOGFILE
527 echo "CTFCONVERT=${CTFCONVERT}" >> $LOGFILE
528 echo "CTFMERGE=${CTFMERGE}" >> $LOGFILE
529 echo "CTFCVTPTBL=${CTFCVTPTBL}" >> $LOGFILE
530 echo "CTFFINDMOD=${CTFFINDMOD}" >> $LOGFILE
531 echo "ELFSIGN=${ELFSIGN}" >> $LOGFILE
532 echo "PATH=${PATH}" >> $LOGFILE
533 echo "ONBLD_TOOLS=${ONBLD_TOOLS}" >> $LOGFILE
537 if [ $ISUSER -ne 0 ]; then
546 eval su
$STAFFER -c \'$arg\'
551 # Verify that the closed bins are present
553 function check_closed_bins
{
554 if [[ ! -d "$ON_CLOSED_BINS" ]]; then
555 echo "ON_CLOSED_BINS must point to the closed binaries tree."
562 # wrapper over wsdiff.
563 # usage: do_wsdiff LABEL OLDPROTO NEWPROTO
571 [ "$t_FLAG" = y
] && wsdiff
="wsdiff -t"
573 echo "\n==== Getting object changes since last build at `date`" \
574 "($label) ====\n" |
tee -a $LOGFILE >> $mail_msg_file
575 $wsdiff -s -r ${TMPDIR}/wsdiff.results
$oldproto $newproto 2>&1 | \
576 tee -a $LOGFILE >> $mail_msg_file
577 echo "\n==== Object changes determined at `date` ($label) ====\n" | \
578 tee -a $LOGFILE >> $mail_msg_file
582 # Functions for setting build flags (DEBUG/non-DEBUG). Keep them
586 function set_non_debug_build_flags
{
587 export RELEASE_BUILD
; RELEASE_BUILD
=
592 function set_debug_build_flags
{
601 if [ "$OPTHOME" = "" ]; then
606 USAGE
='Usage: nightly [-in] [+t] [-V VERS ] <env_file>
609 -i Fast incremental options (no clobber, lint, check)
610 -n Do not do a bringover
611 +t Use the build tools in $ONBLD_TOOLS/bin
612 -V VERS set the build version string to VERS
614 <env_file> file in Bourne shell syntax that sets and exports
615 variables that configure the operation of this script and many of
616 the scripts this one calls. If <env_file> does not exist,
617 it will be looked for in $OPTHOME/onbld/env.
619 non-DEBUG is the default build type. Build options can be set in the
620 NIGHTLY_OPTIONS variable in the <env_file> as follows:
622 -A check for ABI differences in .so files
623 -C check for cstyle/hdrchk errors
624 -D do a build with DEBUG on
625 -F do _not_ do a non-DEBUG build
626 -G gate keeper default group of options (-au)
627 -I integration engineer default group of options (-ampu)
628 -M do not run pmodes (safe file permission checker)
629 -N do not run protocmp
630 -R default group of options for building a release (-mp)
631 -U update proto area in the parent
632 -V VERS set the build version string to VERS
633 -f find unreferenced files
634 -i do an incremental build (no "make clobber")
635 -l do "make lint" in $LINTDIRS (default: $SRC y)
636 -m send mail to $MAILTO at end of build
637 -n do not do a bringover
639 -r check ELF runtime attributes in the proto area
640 -t build and use the tools in $SRC/tools (default setting)
641 +t Use the build tools in $ONBLD_TOOLS/bin
642 -u update proto_list_$MACH and friends in the parent workspace;
643 when used with -f, also build an unrefmaster.out in the parent
644 -w report on differences between previous and current proto areas
647 # A log file will be generated under the name $LOGFILE
648 # for partially completed build and log.`date '+%F'`
649 # in the same directory for fully completed builds.
652 # default values for low-level FLAGS; G I R are group FLAGS
658 i_FLAG
=n
; i_CMD_LINE_FLAG
=n
679 while getopts +intV
: FLAG
682 i
) i_FLAG
=y
; i_CMD_LINE_FLAG
=y
697 # correct argument count after options
698 shift `expr $OPTIND - 1`
700 # test that the path to the environment-setting file was given
701 if [ $# -ne 1 ]; then
706 # check if user is running nightly as root
707 # ISUSER is set non-zero if an ordinary user runs nightly, or is zero
708 # when root invokes nightly.
709 /usr
/bin
/id |
grep '^uid=0(' >/dev
/null
2>&1
710 ISUSER
=$?
; export ISUSER
714 LC_COLLATE
=C
; export LC_COLLATE
715 LC_CTYPE
=C
; export LC_CTYPE
716 LC_MESSAGES
=C
; export LC_MESSAGES
717 LC_MONETARY
=C
; export LC_MONETARY
718 LC_NUMERIC
=C
; export LC_NUMERIC
719 LC_TIME
=C
; export LC_TIME
721 # clear environment variables we know to be bad for the build
723 unset LD_AUDIT LD_AUDIT_32 LD_AUDIT_64
724 unset LD_BIND_NOW LD_BIND_NOW_32 LD_BIND_NOW_64
725 unset LD_BREADTH LD_BREADTH_32 LD_BREADTH_64
726 unset LD_CONFIG LD_CONFIG_32 LD_CONFIG_64
727 unset LD_DEBUG LD_DEBUG_32 LD_DEBUG_64
728 unset LD_DEMANGLE LD_DEMANGLE_32 LD_DEMANGLE_64
729 unset LD_FLAGS LD_FLAGS_32 LD_FLAGS_64
730 unset LD_LIBRARY_PATH LD_LIBRARY_PATH_32 LD_LIBRARY_PATH_64
731 unset LD_LOADFLTR LD_LOADFLTR_32 LD_LOADFLTR_64
732 unset LD_NOAUDIT LD_NOAUDIT_32 LD_NOAUDIT_64
733 unset LD_NOAUXFLTR LD_NOAUXFLTR_32 LD_NOAUXFLTR_64
734 unset LD_NOCONFIG LD_NOCONFIG_32 LD_NOCONFIG_64
735 unset LD_NODIRCONFIG LD_NODIRCONFIG_32 LD_NODIRCONFIG_64
736 unset LD_NODIRECT LD_NODIRECT_32 LD_NODIRECT_64
737 unset LD_NOLAZYLOAD LD_NOLAZYLOAD_32 LD_NOLAZYLOAD_64
738 unset LD_NOOBJALTER LD_NOOBJALTER_32 LD_NOOBJALTER_64
739 unset LD_NOVERSION LD_NOVERSION_32 LD_NOVERSION_64
740 unset LD_ORIGIN LD_ORIGIN_32 LD_ORIGIN_64
741 unset LD_PRELOAD LD_PRELOAD_32 LD_PRELOAD_64
742 unset LD_PROFILE LD_PROFILE_32 LD_PROFILE_64
754 # To get ONBLD_TOOLS from the environment, it must come from the env file.
755 # If it comes interactively, it is generally TOOLS_PROTO, which will be
756 # clobbered before the compiler version checks, which will therefore fail.
761 # Setup environmental variables
763 if [ -f /etc
/nightly.conf
]; then
768 if [[ $1 = */* ]]; then
774 if [ -f $OPTHOME/onbld
/env
/$1 ]; then
775 .
$OPTHOME/onbld
/env
/$1
777 echo "Cannot find env file as either $1 or $OPTHOME/onbld/env/$1"
782 # contents of stdenv.sh inserted after next line:
786 # Check if we have sufficient data to continue...
787 [[ -v CODEMGR_WS
]] || fatal_error
"Error: Variable CODEMGR_WS not set."
788 if [[ "${NIGHTLY_OPTIONS}" == ~
(F
)n
]] ; then
789 # Check if the gate data are valid if we don't do a "bringover" below
790 [[ -d "${CODEMGR_WS}" ]] || \
791 fatal_error
"Error: ${CODEMGR_WS} is not a directory."
792 [[ -f "${CODEMGR_WS}/usr/src/Makefile" ]] || \
793 fatal_error
"Error: ${CODEMGR_WS}/usr/src/Makefile not found."
797 # place ourselves in a new task, respecting BUILD_PROJECT if set.
799 if [ -z "$BUILD_PROJECT" ]; then
800 /usr
/bin
/newtask
-c $$
802 /usr
/bin
/newtask
-c $$
-p $BUILD_PROJECT
805 ps
-o taskid
= -p $$ |
read build_taskid
806 ps
-o project
= -p $$ |
read build_project
809 # See if NIGHTLY_OPTIONS is set
811 if [ "$NIGHTLY_OPTIONS" = "" ]; then
812 NIGHTLY_OPTIONS
="-aBm"
816 # If BRINGOVER_WS was not specified, let it default to CLONE_WS
818 if [ "$BRINGOVER_WS" = "" ]; then
819 BRINGOVER_WS
=$CLONE_WS
823 # If BRINGOVER_FILES was not specified, default to usr
825 if [ "$BRINGOVER_FILES" = "" ]; then
826 BRINGOVER_FILES
="usr"
832 # Note: changes to the option letters here should also be applied to the
833 # bldenv script. `d' is listed for backward compatibility.
835 NIGHTLY_OPTIONS
=-${NIGHTLY_OPTIONS#-}
837 while getopts +ABCDdFfGIilMmNnpRrtUuw FLAG
$NIGHTLY_OPTIONS
843 ;; # old version of D
879 U
) if [ -z "${PARENT_ROOT}" ]; then
880 echo "PARENT_ROOT must be set if the U flag is" \
881 "present in NIGHTLY_OPTIONS."
884 NIGHTLY_PARENT_ROOT
=$PARENT_ROOT
885 if [ -n "${PARENT_TOOLS_ROOT}" ]; then
886 NIGHTLY_PARENT_TOOLS_ROOT
=$PARENT_TOOLS_ROOT
900 if [ $ISUSER -ne 0 ]; then
901 # Set default value for STAFFER, if needed.
902 if [ -z "$STAFFER" -o "$STAFFER" = "nobody" ]; then
903 STAFFER
=`/usr/xpg4/bin/id -un`
908 if [ -z "$MAILTO" -o "$MAILTO" = "nobody" ]; then
913 PATH
="$OPTHOME/onbld/bin:$OPTHOME/onbld/bin/${MACH}:/usr/ccs/bin"
914 PATH
="$PATH:$OPTHOME/SUNWspro/bin:/usr/bin:/usr/sbin:/usr/ucb"
915 PATH
="$PATH:/usr/openwin/bin:/usr/sfw/bin:/opt/sfw/bin:."
918 # roots of source trees, both relative to $SRC and absolute.
922 PROTOCMPTERSE
="protocmp.terse -gu"
924 # have we set RELEASE_DATE in our env file?
925 if [ -z "$RELEASE_DATE" ]; then
926 RELEASE_DATE
=$
(LC_ALL
=C
date +"%B %Y")
928 BUILD_DATE
=$
(LC_ALL
=C
date +%Y-
%b-
%d
)
929 BASEWSDIR
=$
(basename $CODEMGR_WS)
930 DEV_CM
="\"@(#)SunOS Internal Development: $LOGNAME $BUILD_DATE [$BASEWSDIR]\""
932 # we export POUND_SIGN, RELEASE_DATE and DEV_CM to speed up the build process
933 # by avoiding repeated shell invocations to evaluate Makefile.master
935 export POUND_SIGN RELEASE_DATE DEV_CM
937 maketype
="distributed"
938 if [[ -z "$MAKE" ]]; then
940 elif [[ ! -x "$MAKE" ]]; then
941 echo "\$MAKE is set to garbage in the environment"
944 # get the dmake version string alone
945 DMAKE_VERSION
=$
( $MAKE -v )
946 DMAKE_VERSION
=${DMAKE_VERSION#*: }
947 # focus in on just the dotted version number alone
948 DMAKE_MAJOR
=$
( echo $DMAKE_VERSION | \
949 sed -e 's/.*\<\([^.]*\.[^ ]*\).*$/\1/' )
950 # extract the second (or final) integer
951 DMAKE_MINOR
=${DMAKE_MAJOR#*.}
952 DMAKE_MINOR
=${DMAKE_MINOR%%.*}
953 # extract the first integer
954 DMAKE_MAJOR
=${DMAKE_MAJOR%%.*}
955 CHECK_DMAKE
=${CHECK_DMAKE:-y}
956 # x86 was built on the 12th, sparc on the 13th.
957 if [ "$CHECK_DMAKE" = "y" -a \
958 "$DMAKE_VERSION" != "Sun Distributed Make 7.3 2003/03/12" -a \
959 "$DMAKE_VERSION" != "Sun Distributed Make 7.3 2003/03/13" -a \
( \
960 "$DMAKE_MAJOR" -lt 7 -o \
961 "$DMAKE_MAJOR" -eq 7 -a "$DMAKE_MINOR" -lt 4 \
) ]; then
962 if [ -z "$DMAKE_VERSION" ]; then
963 echo "$MAKE is missing."
966 echo `whence $MAKE`" version is:"
967 echo " ${DMAKE_VERSION}"
970 This version may not be safe for use, if you really want to use this version
971 anyway add the following to your environment to disable this check:
980 if [ "${SUNWSPRO}" != "" ]; then
981 PATH
="${SUNWSPRO}/bin:$PATH"
986 if [[ $DMAKE_MAX_JOBS != +([0-9]) ||
$DMAKE_MAX_JOBS -eq 0 ]]
989 if [[ -f $HOME/.
make.machines
]]
991 # Note: there is a hard tab and space character in the []s
993 egrep -i "^[ ]*$hostname[ \.]" \
994 $HOME/.
make.machines |
read host jobs
998 if [[ $maxjobs != +([0-9]) ||
$maxjobs -eq 0 ]]
1004 export DMAKE_MAX_JOBS
=$maxjobs
1007 DMAKE_MODE
=parallel
;
1010 if [ -z "${ROOT}" ]; then
1011 echo "ROOT must be set."
1016 # if -V flag was given, reset VERSION to V_ARG
1018 if [ "$V_FLAG" = "y" ]; then
1022 TMPDIR
="/tmp/nightly.tmpdir.$$"
1025 mkdir
-p $TMPDIR ||
exit 1
1029 # Keep elfsign's use of pkcs11_softtoken from looking in the user home
1030 # directory, which doesn't always work. Needed until all build machines
1031 # have the fix for 6271754
1033 SOFTTOKEN_DIR
=$TMPDIR
1034 export SOFTTOKEN_DIR
1037 # Tools should only be built non-DEBUG. Keep track of the tools proto
1038 # area path relative to $TOOLS, because the latter changes in an
1041 # TOOLS_PROTO is included below for builds other than usr/src/tools
1042 # that look for this location. For usr/src/tools, this will be
1043 # overridden on the $MAKE command line in build_tools().
1046 TOOLS_PROTO_REL
=proto
/root_
${MACH}-nd
1047 TOOLS_PROTO
=${TOOLS}/${TOOLS_PROTO_REL}; export TOOLS_PROTO
1049 unset CFLAGS LD_LIBRARY_PATH LDFLAGS
1051 # create directories that are automatically removed if the nightly script
1052 # fails to start correctly
1056 while [ ! -d $dir ]; do
1062 for dir
in $toadd; do
1063 if staffer mkdir
$dir; then
1064 newlist
="$ISUSER $dir $newlist"
1067 [ -z "$torm" ] || staffer
rmdir $torm
1071 newdirlist
="$newlist $newdirlist"
1076 [ -d $CODEMGR_WS ] || newdir
$CODEMGR_WS ||
exit 1
1078 # since this script assumes the build is from full source, it nullifies
1079 # variables likely to have been set by a "ws" script; nullification
1080 # confines the search space for headers and libraries to the proto area
1081 # built from this immediate source.
1091 export ENVLDLIBS3 ENVCPPFLAGS1 ENVCPPFLAGS2 ENVCPPFLAGS3 ENVCPPFLAGS4 \
1092 ENVLDLIBS1 ENVLDLIBS2 PARENT_ROOT
1094 PKGARCHIVE_ORIG
=$PKGARCHIVE
1097 # Juggle the logs and optionally send mail on completion.
1100 function logshuffle
{
1101 LLOG
="$ATLOG/log.`date '+%F.%H:%M'`"
1102 if [ -f $LLOG -o -d $LLOG ]; then
1108 if [ "$build_ok" = "y" ]; then
1109 mv $ATLOG/proto_list_
${MACH} $LLOG
1111 if [ -f $ATLOG/proto_list_tools_
${MACH} ]; then
1112 mv $ATLOG/proto_list_tools_
${MACH} $LLOG
1115 if [ -f $TMPDIR/wsdiff.results
]; then
1116 mv $TMPDIR/wsdiff.results
$LLOG
1119 if [ -f $TMPDIR/wsdiff-nd.results
]; then
1120 mv $TMPDIR/wsdiff-nd.results
$LLOG
1125 # Now that we're about to send mail, it's time to check the noise
1126 # file. In the event that an error occurs beyond this point, it will
1127 # be recorded in the nightly.log file, but nowhere else. This would
1128 # include only errors that cause the copying of the noise log to fail
1129 # or the mail itself not to be sent.
1132 exec >>$LOGFILE 2>&1
1133 if [ -s $build_noise_file ]; then
1134 echo "\n==== Nightly build noise ====\n" |
1135 tee -a $LOGFILE >>$mail_msg_file
1136 cat $build_noise_file >>$LOGFILE
1137 cat $build_noise_file >>$mail_msg_file
1138 echo |
tee -a $LOGFILE >>$mail_msg_file
1140 rm -f $build_noise_file
1153 NIGHTLY_STATUS
=$state
1154 export NIGHTLY_STATUS
1156 run_hook POST_NIGHTLY
$state
1157 run_hook SYS_POST_NIGHTLY
$state
1160 # mailx(1) sets From: based on the -r flag
1164 if [[ -n "${MAILFROM}" ]]; then
1165 mailx_r
="-r ${MAILFROM}"
1168 cat $build_time_file $build_environ_file $mail_msg_file \
1170 if [ "$m_FLAG" = "y" ]; then
1171 cat ${LLOG}/mail_msg |
/usr
/bin
/mailx
${mailx_r} -s \
1172 "Nightly ${MACH} Build of `basename ${CODEMGR_WS}` ${state}." \
1176 if [ "$u_FLAG" = "y" -a "$build_ok" = "y" ]; then
1177 staffer
cp ${LLOG}/mail_msg
$PARENT_WS/usr
/src
/mail_msg-
${MACH}
1178 staffer
cp $LOGFILE $PARENT_WS/usr
/src
/nightly-
${MACH}.log
1185 # Remove the locks and temporary files on any exit
1190 [ -z "$lockfile" ] || staffer
rm -f $lockfile
1191 [ -z "$atloglockfile" ] ||
rm -f $atloglockfile
1192 [ -z "$ulockfile" ] || staffer
rm -f $ulockfile
1193 [ -z "$Ulockfile" ] ||
rm -f $Ulockfile
1196 while [ $# -gt 0 ]; do
1197 ISUSER
=$1 staffer
rmdir $2
1203 function cleanup_signal
{
1205 # this will trigger cleanup(), above.
1210 trap cleanup_signal
1 2 3 15
1213 # Generic lock file processing -- make sure that the lock file doesn't
1214 # exist. If it does, it should name the build host and PID. If it
1215 # doesn't, then make sure we can create it. Clean up locks that are
1216 # known to be stale (assumes host name is unique among build systems
1217 # for the workspace).
1219 function create_lock
{
1223 ldir
=`dirname $lockf`
1224 [ -d $ldir ] || newdir
$ldir ||
exit 1
1225 eval $lockvar=$lockf
1227 while ! staffer
ln -s $hostname.
$STAFFER.$$
$lockf 2> /dev
/null
; do
1228 basews
=`basename $CODEMGR_WS`
1229 ls -l $lockf | nawk
'{print $NF}' | IFS
=.
read host user pid
1230 if [ "$host" != "$hostname" ]; then
1231 echo "$MACH build of $basews apparently" \
1232 "already started by $user on $host as $pid."
1234 elif kill -s 0 $pid 2>/dev
/null
; then
1235 echo "$MACH build of $basews already started" \
1239 # stale lock; clear it out and try again
1246 # Return the list of interesting proto areas, depending on the current
1249 function allprotos
{
1250 typeset roots
="$ROOT"
1252 if [[ "$F_FLAG" = n
&& "$MULTI_PROTO" = yes ]]; then
1253 roots
="$roots $ROOT-nd"
1259 # Ensure no other instance of this script is running on this host.
1260 # LOCKNAME can be set in <env_file>, and is by default, but is not
1261 # required due to the use of $ATLOG below.
1262 if [ -n "$LOCKNAME" ]; then
1263 create_lock
/tmp
/$LOCKNAME "lockfile"
1266 # Create from one, two, or three other locks:
1267 # $ATLOG/nightly.lock
1268 # - protects against multiple builds in same workspace
1269 # $PARENT_WS/usr/src/nightly.$MACH.lock
1270 # - protects against multiple 'u' copy-backs
1271 # $NIGHTLY_PARENT_ROOT/nightly.lock
1272 # - protects against multiple 'U' copy-backs
1274 # Overriding ISUSER to 1 causes the lock to be created as root if the
1275 # script is run as root. The default is to create it as $STAFFER.
1276 ISUSER
=1 create_lock
$ATLOG/nightly.lock
"atloglockfile"
1277 if [ "$u_FLAG" = "y" ]; then
1278 create_lock
$PARENT_WS/usr
/src
/nightly.
$MACH.lock
"ulockfile"
1280 if [ "$U_FLAG" = "y" ]; then
1281 # NIGHTLY_PARENT_ROOT is written as root if script invoked as root.
1282 ISUSER
=1 create_lock
$NIGHTLY_PARENT_ROOT/nightly.lock
"Ulockfile"
1285 # Locks have been taken, so we're doing a build and we're committed to
1286 # the directories we may have created so far.
1290 # Create mail_msg_file
1292 mail_msg_file
="${TMPDIR}/mail_msg"
1293 touch $mail_msg_file
1294 build_time_file
="${TMPDIR}/build_time"
1295 build_environ_file
="${TMPDIR}/build_environ"
1296 touch $build_environ_file
1298 # Move old LOGFILE aside
1299 # ATLOG directory already made by 'create_lock' above
1301 if [ -f $LOGFILE ]; then
1302 mv -f $LOGFILE ${LOGFILE}-
1305 # Build OsNet source
1309 echo "\n==== Nightly $maketype build started: $START_DATE ====" \
1310 |
tee -a $LOGFILE > $build_time_file
1312 echo "\nBuild project: $build_project\nBuild taskid: $build_taskid" | \
1313 tee -a $mail_msg_file >> $LOGFILE
1315 # make sure we log only to the nightly build file
1316 build_noise_file
="${TMPDIR}/build_noise"
1317 exec </dev
/null
>$build_noise_file 2>&1
1319 run_hook SYS_PRE_NIGHTLY
1320 run_hook PRE_NIGHTLY
1322 echo "\n==== list of environment variables ====\n" >> $LOGFILE
1325 echo "\n==== Nightly argument issues ====\n" |
tee -a $mail_msg_file >> $LOGFILE
1327 if [ "$N_FLAG" = "y" ]; then
1328 if [ "$p_FLAG" = "y" ]; then
1329 cat <<EOF | tee -a $mail_msg_file >> $LOGFILE
1330 WARNING: the p option (create packages) is set, but so is the N option (do
1331 not run protocmp); this is dangerous; you should unset the N option
1334 cat <<EOF | tee -a $mail_msg_file >> $LOGFILE
1335 Warning: the N option (do not run protocmp) is set; it probably shouldn't be
1338 echo "" |
tee -a $mail_msg_file >> $LOGFILE
1341 if [ "$D_FLAG" = "n" -a "$l_FLAG" = "y" ]; then
1343 # In the past we just complained but went ahead with the lint
1344 # pass, even though the proto area was built non-DEBUG. It's
1345 # unlikely that non-DEBUG headers will make a difference, but
1346 # rather than assuming it's a safe combination, force the user
1347 # to specify a DEBUG build.
1349 echo "WARNING: DEBUG build not requested; disabling lint.\n" \
1350 |
tee -a $mail_msg_file >> $LOGFILE
1354 if [ "$f_FLAG" = "y" ]; then
1355 if [ "$i_FLAG" = "y" ]; then
1356 echo "WARNING: the -f flag cannot be used during incremental" \
1357 "builds; ignoring -f\n" |
tee -a $mail_msg_file >> $LOGFILE
1360 if [ "${l_FLAG}${p_FLAG}" != "yy" ]; then
1361 echo "WARNING: the -f flag requires -l, and -p;" \
1362 "ignoring -f\n" |
tee -a $mail_msg_file >> $LOGFILE
1367 if [ "$w_FLAG" = "y" -a ! -d $ROOT ]; then
1368 echo "WARNING: -w specified, but $ROOT does not exist;" \
1369 "ignoring -w\n" |
tee -a $mail_msg_file >> $LOGFILE
1373 if [ "$t_FLAG" = "n" ]; then
1375 # We're not doing a tools build, so make sure elfsign(1) is
1376 # new enough to safely sign non-crypto binaries. We test
1377 # debugging output from elfsign to detect the old version.
1379 newelfsigntest
=`SUNW_CRYPTO_DEBUG=stderr /usr/bin/elfsign verify \
1380 -e /usr/lib/security/pkcs11_softtoken.so.1 2>&1 \
1381 | egrep algorithmOID`
1382 if [ -z "$newelfsigntest" ]; then
1383 echo "WARNING: /usr/bin/elfsign out of date;" \
1384 "will only sign crypto modules\n" | \
1385 tee -a $mail_msg_file >> $LOGFILE
1386 export ELFSIGN_OBJECT
=true
1387 elif [ "$VERIFY_ELFSIGN" = "y" ]; then
1388 echo "WARNING: VERIFY_ELFSIGN=y requires" \
1389 "the -t flag; ignoring VERIFY_ELFSIGN\n" | \
1390 tee -a $mail_msg_file >> $LOGFILE
1394 case $MULTI_PROTO in
1397 echo "WARNING: MULTI_PROTO is \"$MULTI_PROTO\"; " \
1398 "should be \"yes\" or \"no\"." |
tee -a $mail_msg_file >> $LOGFILE
1399 echo "Setting MULTI_PROTO to \"no\".\n" | \
1400 tee -a $mail_msg_file >> $LOGFILE
1401 export MULTI_PROTO
=no
1405 echo "\n==== Build version ====\n" |
tee -a $mail_msg_file >> $LOGFILE
1406 echo $VERSION |
tee -a $mail_msg_file >> $LOGFILE
1408 # Save the current proto area if we're comparing against the last build
1409 if [ "$w_FLAG" = "y" -a -d "$ROOT" ]; then
1410 if [ -d "$ROOT.prev" ]; then
1416 # Same for non-DEBUG proto area
1417 if [ "$w_FLAG" = "y" -a "$MULTI_PROTO" = yes -a -d "$ROOT-nd" ]; then
1418 if [ -d "$ROOT-nd.prev" ]; then
1419 rm -rf $ROOT-nd.prev
1421 mv $ROOT-nd $ROOT-nd.prev
1425 # Echo the SCM type of the parent workspace, this can't just be which_scm
1426 # as that does not know how to identify various network repositories.
1428 function parent_wstype
{
1429 typeset scm_type junk
1431 CODEMGR_WS
="$BRINGOVER_WS" "$WHICH_SCM" 2>/dev
/null \
1432 |
read scm_type junk
1433 if [[ -z "$scm_type" ||
"$scm_type" == unknown
]]; then
1434 # Probe BRINGOVER_WS to determine its type
1435 if [[ $BRINGOVER_WS == ssh://* ]]; then
1436 scm_type
="mercurial"
1437 elif [[ $BRINGOVER_WS == http
://* ]] && \
1438 wget
-q -O- --save-headers "$BRINGOVER_WS/?cmd=heads" | \
1439 egrep -s "application/mercurial" 2> /dev
/null
; then
1440 scm_type
="mercurial"
1446 # fold both unsupported and unrecognized results into "none"
1457 # Echo the SCM types of $CODEMGR_WS and $BRINGOVER_WS
1458 function child_wstype
{
1459 typeset scm_type junk
1461 # Probe CODEMGR_WS to determine its type
1462 if [[ -d $CODEMGR_WS ]]; then
1463 $WHICH_SCM |
read scm_type junk ||
exit 1
1476 SCM_TYPE
=$
(child_wstype
)
1479 # Decide whether to clobber
1481 if [ "$i_FLAG" = "n" -a -d "$SRC" ]; then
1482 echo "\n==== Make clobber at `date` ====\n" >> $LOGFILE
1485 # remove old clobber file
1486 rm -f $SRC/clobber.out
1487 rm -f $SRC/clobber-
${MACH}.out
1489 # Remove all .make.state* files, just in case we are restarting
1490 # the build after having interrupted a previous 'make clobber'.
1491 find . \
( -name SCCS
-o -name .hg
-o -name .svn
-o -name .git \
1492 -o -name 'interfaces.*' \
) -prune \
1493 -o -name '.make.*' -print |
xargs rm -f
1495 $MAKE -ek clobber
2>&1 |
tee -a $SRC/clobber-
${MACH}.out
>> $LOGFILE
1496 echo "\n==== Make clobber ERRORS ====\n" >> $mail_msg_file
1497 grep "$MAKE:" $SRC/clobber-
${MACH}.out |
1498 egrep -v "Ignoring unknown host" \
1501 if [[ "$t_FLAG" = "y" ]]; then
1502 echo "\n==== Make tools clobber at `date` ====\n" >> $LOGFILE
1504 rm -f ${TOOLS}/clobber-
${MACH}.out
1505 $MAKE TOOLS_PROTO
=$TOOLS_PROTO -ek clobber
2>&1 | \
1506 tee -a ${TOOLS}/clobber-
${MACH}.out
>> $LOGFILE
1507 echo "\n==== Make tools clobber ERRORS ====\n" \
1509 grep "$MAKE:" ${TOOLS}/clobber-
${MACH}.out \
1511 rm -rf ${TOOLS_PROTO}
1512 mkdir
-p ${TOOLS_PROTO}
1515 typeset roots
=$
(allprotos
)
1516 echo "\n\nClearing $roots" >> "$LOGFILE"
1519 # Get back to a clean workspace as much as possible to catch
1520 # problems that only occur on fresh workspaces.
1521 # Remove all .make.state* files, libraries, and .o's that may
1522 # have been omitted from clobber. A couple of libraries are
1523 # under source code control, so leave them alone.
1524 # We should probably blow away temporary directories too.
1526 find $relsrcdirs \
( -name SCCS
-o -name .hg
-o -name .svn \
1527 -o -name .git
-o -name 'interfaces.*' \
) -prune -o \
1528 \
( -name '.make.*' -o -name 'lib*.a' -o -name 'lib*.so*' -o \
1529 -name '*.o' \
) -print | \
1530 grep -v 'tools/ctf/dwarf/.*/libdwarf' |
xargs rm -f
1532 echo "\n==== No clobber at `date` ====\n" >> $LOGFILE
1535 type bringover_mercurial
> /dev
/null
2>&1 ||
function bringover_mercurial
{
1536 typeset
-x PATH
=$PATH
1538 # If the repository doesn't exist yet, then we want to populate it.
1539 if [[ ! -d $CODEMGR_WS/.hg
]]; then
1540 staffer hg init
$CODEMGR_WS
1541 staffer
echo "[paths]" > $CODEMGR_WS/.hg
/hgrc
1542 staffer
echo "default=$BRINGOVER_WS" >> $CODEMGR_WS/.hg
/hgrc
1543 touch $TMPDIR/new_repository
1546 typeset
-x HGMERGE
="/bin/false"
1549 # If the user has changes, regardless of whether those changes are
1550 # committed, and regardless of whether those changes conflict, then
1551 # we'll attempt to merge them either implicitly (uncommitted) or
1552 # explicitly (committed).
1554 # These are the messages we'll use to help clarify mercurial output
1557 typeset mergefailmsg
="\
1559 *** nightly was unable to automatically merge your changes. You should\n\
1560 *** redo the full merge manually, following the steps outlined by mercurial\n\
1561 *** above, then restart nightly.\n\
1563 typeset mergepassmsg
="\
1565 *** nightly successfully merged your changes. This means that your working\n\
1566 *** directory has been updated, but those changes are not yet committed.\n\
1567 *** After nightly completes, you should validate the results of the merge,\n\
1568 *** then use hg commit manually.\n\
1572 # For each repository in turn:
1574 # 1. Do the pull. If this fails, dump the output and bail out.
1576 # 2. If the pull resulted in an extra head, do an explicit merge.
1577 # If this fails, dump the output and bail out.
1579 # Because we can't rely on Mercurial to exit with a failure code
1580 # when a merge fails (Mercurial issue #186), we must grep the
1581 # output of pull/merge to check for attempted and/or failed merges.
1583 # 3. If a merge failed, set the message and fail the bringover.
1585 # 4. Otherwise, if a merge succeeded, set the message
1587 # 5. Dump the output, and any message from step 3 or 4.
1590 typeset HG_SOURCE
=$BRINGOVER_WS
1591 if [ ! -f $TMPDIR/new_repository
]; then
1592 HG_SOURCE
=$TMPDIR/open_bundle.hg
1593 staffer hg
--cwd $CODEMGR_WS incoming
--bundle $HG_SOURCE \
1594 -v $BRINGOVER_WS > $TMPDIR/incoming_open.out
1597 # If there are no incoming changesets, then incoming will
1598 # fail, and there will be no bundle file. Reset the source,
1599 # to allow the remaining logic to complete with no false
1600 # negatives. (Unlike incoming, pull will return success
1601 # for the no-change case.)
1603 if (( $?
!= 0 )); then
1604 HG_SOURCE
=$BRINGOVER_WS
1608 staffer hg
--cwd $CODEMGR_WS pull
-u $HG_SOURCE \
1609 > $TMPDIR/pull_open.out
2>&1
1610 if (( $?
!= 0 )); then
1611 printf "%s: pull failed as follows:\n\n" "$CODEMGR_WS"
1612 cat $TMPDIR/pull_open.out
1613 if grep "^merging.*failed" $TMPDIR/pull_open.out
> /dev
/null
2>&1; then
1614 printf "$mergefailmsg"
1616 touch $TMPDIR/bringover_failed
1620 if grep "not updating" $TMPDIR/pull_open.out
> /dev
/null
2>&1; then
1621 staffer hg
--cwd $CODEMGR_WS merge \
1622 >> $TMPDIR/pull_open.out
2>&1
1623 if (( $?
!= 0 )); then
1624 printf "%s: merge failed as follows:\n\n" \
1626 cat $TMPDIR/pull_open.out
1627 if grep "^merging.*failed" $TMPDIR/pull_open.out \
1628 > /dev
/null
2>&1; then
1629 printf "$mergefailmsg"
1631 touch $TMPDIR/bringover_failed
1636 printf "updated %s with the following results:\n" "$CODEMGR_WS"
1637 cat $TMPDIR/pull_open.out
1638 if grep "^merging" $TMPDIR/pull_open.out
>/dev
/null
2>&1; then
1639 printf "$mergepassmsg"
1644 # Per-changeset output is neither useful nor manageable for a
1645 # newly-created repository.
1647 if [ -f $TMPDIR/new_repository
]; then
1651 printf "\nadded the following changesets to open repository:\n"
1652 cat $TMPDIR/incoming_open.out
1655 type bringover_none
> /dev
/null
2>&1 ||
function bringover_none
{
1656 echo "Couldn't figure out what kind of SCM to use for $BRINGOVER_WS."
1657 touch $TMPDIR/bringover_failed
1661 # Decide whether to bringover to the codemgr workspace
1663 if [ "$n_FLAG" = "n" ]; then
1664 PARENT_SCM_TYPE
=$
(parent_wstype
)
1666 if [[ $SCM_TYPE != none
&& $SCM_TYPE != $PARENT_SCM_TYPE ]]; then
1667 echo "cannot bringover from $PARENT_SCM_TYPE to $SCM_TYPE, " \
1668 "quitting at `date`." |
tee -a $mail_msg_file >> $LOGFILE
1672 run_hook PRE_BRINGOVER
1674 echo "\n==== bringover to $CODEMGR_WS at `date` ====\n" >> $LOGFILE
1675 echo "\n==== BRINGOVER LOG ====\n" >> $mail_msg_file
1677 eval "bringover_${PARENT_SCM_TYPE}" 2>&1 |
1678 tee -a $mail_msg_file >> $LOGFILE
1680 if [ -f $TMPDIR/bringover_failed
]; then
1681 rm -f $TMPDIR/bringover_failed
1683 echo "trouble with bringover, quitting at `date`." |
1684 tee -a $mail_msg_file >> $LOGFILE
1689 # It's possible that we used the bringover above to create
1690 # $CODEMGR_WS. If so, then SCM_TYPE was previously "none,"
1691 # but should now be the same as $BRINGOVER_WS.
1693 [[ $SCM_TYPE = none
]] && SCM_TYPE
=$PARENT_SCM_TYPE
1695 run_hook POST_BRINGOVER
1700 echo "\n==== No bringover to $CODEMGR_WS ====\n" >> $LOGFILE
1704 [[ -v CODEMGR_WS
]] || fatal_error
"Error: Variable CODEMGR_WS not set."
1705 [[ -d "${CODEMGR_WS}" ]] || fatal_error
"Error: ${CODEMGR_WS} is not a directory."
1706 [[ -f "${CODEMGR_WS}/usr/src/Makefile" ]] || fatal_error
"Error: ${CODEMGR_WS}/usr/src/Makefile not found."
1708 echo "\n==== Build environment ====\n" |
tee -a $build_environ_file >> $LOGFILE
1711 whence uname |
tee -a $build_environ_file >> $LOGFILE
1712 uname
-a 2>&1 |
tee -a $build_environ_file >> $LOGFILE
1713 echo |
tee -a $build_environ_file >> $LOGFILE
1716 whence
$MAKE |
tee -a $build_environ_file >> $LOGFILE
1717 $MAKE -v |
tee -a $build_environ_file >> $LOGFILE
1718 echo "number of concurrent jobs = $DMAKE_MAX_JOBS" |
1719 tee -a $build_environ_file >> $LOGFILE
1722 # Report the compiler versions.
1725 if [[ ! -f $SRC/Makefile
]]; then
1727 echo "\nUnable to find \"Makefile\" in $SRC." | \
1728 tee -a $build_environ_file >> $LOGFILE
1733 for target
in cc-version cc64-version java-version
; do
1736 # Put statefile somewhere we know we can write to rather than trip
1737 # over a read-only $srcroot.
1739 rm -f $TMPDIR/make-state
1741 if $MAKE -K $TMPDIR/make-state
-e $target 2>/dev
/null
; then
1744 touch $TMPDIR/nocompiler
1747 ) |
tee -a $build_environ_file >> $LOGFILE
1749 if [ -f $TMPDIR/nocompiler
]; then
1750 rm -f $TMPDIR/nocompiler
1752 echo "Aborting due to missing compiler." |
1753 tee -a $build_environ_file >> $LOGFILE
1758 whence as |
tee -a $build_environ_file >> $LOGFILE
1759 as
-V 2>&1 |
head -1 |
tee -a $build_environ_file >> $LOGFILE
1760 echo |
tee -a $build_environ_file >> $LOGFILE
1762 # Check that we're running a capable link-editor
1763 whence ld |
tee -a $build_environ_file >> $LOGFILE
1765 echo $LDVER |
tee -a $build_environ_file >> $LOGFILE
1766 LDVER
=`echo $LDVER | sed -e "s/.*-1\.\([0-9]*\).*/\1/"`
1767 if [ `expr $LDVER \< 422` -eq 1 ]; then
1768 echo "The link-editor needs to be at version 422 or higher to build" | \
1769 tee -a $build_environ_file >> $LOGFILE
1770 echo "the latest stuff. Hope your build works." | \
1771 tee -a $build_environ_file >> $LOGFILE
1775 # Build and use the workspace's tools if requested
1777 if [[ "$t_FLAG" = "y" ]]; then
1778 set_non_debug_build_flags
1780 build_tools
${TOOLS_PROTO}
1781 if [[ $?
!= 0 && "$t_FLAG" = y
]]; then
1782 use_tools
$TOOLS_PROTO
1786 # timestamp the start of the normal build; the findunref tool uses it.
1787 touch $SRC/.build.tstamp
1792 BINARCHIVE
=${CODEMGR_WS}/bin-
${MACH}.
cpio.Z
1796 # There are several checks that need to look at the proto area, but
1797 # they only need to look at one, and they don't care whether it's
1798 # DEBUG or non-DEBUG.
1800 if [[ "$MULTI_PROTO" = yes && "$D_FLAG" = n
]]; then
1806 if [ "$build_ok" = "y" ]; then
1807 echo "\n==== Creating protolist system file at `date` ====" \
1809 protolist
$checkroot > $ATLOG/proto_list_
${MACH}
1810 echo "==== protolist system file created at `date` ====\n" \
1813 if [ "$N_FLAG" != "y" ]; then
1818 if [ -f "$f" ]; then
1825 if [ -d "$SRC/pkg" ]; then
1826 f2
="$f2 exceptions/packaging"
1830 if [ -f "$f" ]; then
1836 if [ "$N_FLAG" != "y" -a -d $SRC/pkg
]; then
1837 echo "\n==== Validating manifests against proto area ====\n" \
1839 ( cd $SRC/pkg
; $MAKE -e protocmp ROOT
="$checkroot" ) \
1844 if [ "$N_FLAG" != "y" -a -f "$REF_PROTO_LIST" ]; then
1845 echo "\n==== Impact on proto area ====\n" >> $mail_msg_file
1846 if [ -n "$E2" ]; then
1852 "Files in yesterday's proto area, but not today's:" \
1853 "Files in today's proto area, but not yesterday's:" \
1854 "Files that changed between yesterday and today:" \
1856 -d $REF_PROTO_LIST \
1857 $ATLOG/proto_list_
${MACH} \
1862 if [ "$u_FLAG" = "y" -a "$build_ok" = "y" ]; then
1863 staffer
cp $ATLOG/proto_list_
${MACH} \
1864 $PARENT_WS/usr
/src
/proto_list_
${MACH}
1867 # Update parent proto area if necessary. This is done now
1868 # so that the proto area has either DEBUG or non-DEBUG kernels.
1869 # Note that this clears out the lock file, so we can dispense with
1871 if [ "$U_FLAG" = "y" -a "$build_ok" = "y" ]; then
1872 echo "\n==== Copying proto area to $NIGHTLY_PARENT_ROOT ====\n" | \
1873 tee -a $LOGFILE >> $mail_msg_file
1874 rm -rf $NIGHTLY_PARENT_ROOT/*
1876 mkdir
-p $NIGHTLY_PARENT_ROOT
1877 if [[ "$MULTI_PROTO" = no ||
"$D_FLAG" = y
]]; then
1878 ( cd $ROOT; tar cf
- . |
1879 ( cd $NIGHTLY_PARENT_ROOT; umask 0; tar xpf
- ) ) 2>&1 |
1880 tee -a $mail_msg_file >> $LOGFILE
1882 if [[ "$MULTI_PROTO" = yes && "$F_FLAG" = n
]]; then
1883 rm -rf $NIGHTLY_PARENT_ROOT-nd/*
1884 mkdir
-p $NIGHTLY_PARENT_ROOT-nd
1887 ( cd $NIGHTLY_PARENT_ROOT-nd; umask 0; tar xpf
- ) ) 2>&1 |
1888 tee -a $mail_msg_file >> $LOGFILE
1890 if [ -n "${NIGHTLY_PARENT_TOOLS_ROOT}" ]; then
1891 echo "\n==== Copying tools proto area to $NIGHTLY_PARENT_TOOLS_ROOT ====\n" | \
1892 tee -a $LOGFILE >> $mail_msg_file
1893 rm -rf $NIGHTLY_PARENT_TOOLS_ROOT/*
1894 mkdir
-p $NIGHTLY_PARENT_TOOLS_ROOT
1895 if [[ "$MULTI_PROTO" = no ||
"$D_FLAG" = y
]]; then
1896 ( cd $TOOLS_PROTO; tar cf
- . |
1897 ( cd $NIGHTLY_PARENT_TOOLS_ROOT;
1898 umask 0; tar xpf
- ) ) 2>&1 |
1899 tee -a $mail_msg_file >> $LOGFILE
1905 # ELF verification: ABI (-A) and runtime (-r) checks
1907 if [[ ($build_ok = y
) && ( ($A_FLAG = y
) ||
($r_FLAG = y
) ) ]]; then
1908 # Directory ELF-data.$MACH holds the files produced by these tests.
1909 elf_ddir
=$SRC/ELF-data.
$MACH
1911 # If there is a previous ELF-data backup directory, remove it. Then,
1912 # rotate current ELF-data directory into its place and create a new
1914 rm -rf $elf_ddir.ref
1915 if [[ -d $elf_ddir ]]; then
1916 mv $elf_ddir $elf_ddir.ref
1920 # Call find_elf to produce a list of the ELF objects in the proto area.
1921 # This list is passed to check_rtime and interface_check, preventing
1922 # them from separately calling find_elf to do the same work twice.
1923 find_elf
-fr $checkroot > $elf_ddir/object_list
1925 if [[ $A_FLAG = y
]]; then
1926 echo "\n==== Check versioning and ABI information ====\n" | \
1927 tee -a $LOGFILE >> $mail_msg_file
1929 # Produce interface description for the proto. Report errors.
1930 interface_check
-o -w $elf_ddir -f object_list \
1931 -i interface
-E interface.err
1932 if [[ -s $elf_ddir/interface.err
]]; then
1933 tee -a $LOGFILE < $elf_ddir/interface.err \
1937 # If ELF_DATA_BASELINE_DIR is defined, compare the new interface
1938 # description file to that from the baseline gate. Issue a
1939 # warning if the baseline is not present, and keep going.
1940 if [[ "$ELF_DATA_BASELINE_DIR" != '' ]]; then
1941 base_ifile
="$ELF_DATA_BASELINE_DIR/interface"
1943 echo "\n==== Compare versioning and ABI information" \
1944 "to baseline ====\n" | \
1945 tee -a $LOGFILE >> $mail_msg_file
1946 echo "Baseline: $base_ifile\n" >> $LOGFILE
1948 if [[ -f $base_ifile ]]; then
1949 interface_cmp
-d -o $base_ifile \
1950 $elf_ddir/interface
> $elf_ddir/interface.
cmp
1951 if [[ -s $elf_ddir/interface.
cmp ]]; then
1952 echo |
tee -a $LOGFILE >> $mail_msg_file
1954 $elf_ddir/interface.
cmp \
1958 echo "baseline not available. comparison" \
1960 tee -a $LOGFILE >> $mail_msg_file
1966 if [[ $r_FLAG = y
]]; then
1967 echo "\n==== Check ELF runtime attributes ====\n" | \
1968 tee -a $LOGFILE >> $mail_msg_file
1970 # If we're doing a DEBUG build the proto area will be left
1971 # with debuggable objects, thus don't assert -s.
1972 if [[ $D_FLAG = y
]]; then
1977 check_rtime
-i -m -v $rtime_sflag -o -w $elf_ddir \
1978 -D object_list
-f object_list
-E runtime.err \
1981 # check_rtime -I output needs to be sorted in order to
1982 # compare it to that from previous builds.
1983 sort $elf_ddir/runtime.attr.raw
> $elf_ddir/runtime.attr
1984 rm $elf_ddir/runtime.attr.raw
1987 if [[ -s $elf_ddir/runtime.err
]]; then
1988 tee -a $LOGFILE < $elf_ddir/runtime.err \
1992 # If there is an ELF-data directory from a previous build,
1993 # then diff the attr files. These files contain information
1994 # about dependencies, versioning, and runpaths. There is some
1995 # overlap with the ABI checking done above, but this also
1996 # flushes out non-ABI interface differences along with the
1997 # other information.
1998 echo "\n==== Diff ELF runtime attributes" \
1999 "(since last build) ====\n" | \
2000 tee -a $LOGFILE >> $mail_msg_file >> $mail_msg_file
2002 if [[ -f $elf_ddir.ref
/runtime.attr
]]; then
2003 diff $elf_ddir.ref
/runtime.attr \
2004 $elf_ddir/runtime.attr \
2009 # If -u set, copy contents of ELF-data.$MACH to the parent workspace.
2010 if [[ "$u_FLAG" = "y" ]]; then
2011 p_elf_ddir
=$PARENT_WS/usr
/src
/ELF-data.
$MACH
2013 # If parent lacks the ELF-data.$MACH directory, create it
2014 if [[ ! -d $p_elf_ddir ]]; then
2015 staffer mkdir
-p $p_elf_ddir
2018 # These files are used asynchronously by other builds for ABI
2019 # verification, as above for the -A option. As such, we require
2020 # the file replacement to be atomic. Copy the data to a temp
2021 # file in the same filesystem and then rename into place.
2024 for elf_dfile
in *; do
2025 staffer
cp $elf_dfile \
2026 ${p_elf_ddir}/${elf_dfile}.new
2027 staffer
mv -f ${p_elf_ddir}/${elf_dfile}.new \
2028 ${p_elf_ddir}/${elf_dfile}
2034 # DEBUG lint of kernel begins
2036 if [ "$i_CMD_LINE_FLAG" = "n" -a "$l_FLAG" = "y" ]; then
2037 if [ "$LINTDIRS" = "" ]; then
2038 # LINTDIRS="$SRC/uts y $SRC/stand y $SRC/psm y"
2042 while [ $# -gt 0 ]; do
2043 dolint
$1 $2; shift; shift
2046 echo "\n==== No '$MAKE lint' ====\n" >> $LOGFILE
2049 # "make check" begins
2051 if [ "$i_CMD_LINE_FLAG" = "n" -a "$C_FLAG" = "y" ]; then
2052 # remove old check.out
2053 rm -f $SRC/check.out
2055 rm -f $SRC/check-
${MACH}.out
2057 $MAKE -ek check ROOT
="$checkroot" 2>&1 |
tee -a $SRC/check-
${MACH}.out \
2059 echo "\n==== cstyle/hdrchk errors ====\n" >> $mail_msg_file
2061 grep ":" $SRC/check-
${MACH}.out |
2062 egrep -v "Ignoring unknown host" | \
2063 sort |
uniq >> $mail_msg_file
2065 echo "\n==== No '$MAKE check' ====\n" >> $LOGFILE
2068 echo "\n==== Find core files ====\n" | \
2069 tee -a $LOGFILE >> $mail_msg_file
2071 find $abssrcdirs -name core
-a -type f
-exec file {} \
; | \
2072 tee -a $LOGFILE >> $mail_msg_file
2074 if [ "$f_FLAG" = "y" -a "$build_ok" = "y" ]; then
2075 echo "\n==== Diff unreferenced files (since last build) ====\n" \
2076 |
tee -a $LOGFILE >>$mail_msg_file
2077 rm -f $SRC/unref-
${MACH}.ref
2078 if [ -f $SRC/unref-
${MACH}.out
]; then
2079 mv $SRC/unref-
${MACH}.out
$SRC/unref-
${MACH}.ref
2082 findunref
-S $SCM_TYPE -t $SRC/.build.tstamp
-s usr
$CODEMGR_WS \
2083 ${TOOLS}/findunref
/exception_list
2>> $mail_msg_file | \
2084 sort > $SRC/unref-
${MACH}.out
2086 if [ ! -f $SRC/unref-
${MACH}.ref
]; then
2087 cp $SRC/unref-
${MACH}.out
$SRC/unref-
${MACH}.ref
2090 diff $SRC/unref-
${MACH}.ref
$SRC/unref-
${MACH}.out
>>$mail_msg_file
2093 # Verify that the usual lists of files, such as exception lists,
2094 # contain only valid references to files. If the build has failed,
2095 # then don't check the proto area.
2096 CHECK_PATHS
=${CHECK_PATHS:-y}
2097 if [ "$CHECK_PATHS" = y
-a "$N_FLAG" != y
]; then
2098 echo "\n==== Check lists of files ====\n" |
tee -a $LOGFILE \
2101 [ "$build_ok" = y
] && arg
=
2102 checkpaths
$arg $checkroot 2>&1 |
tee -a $LOGFILE >>$mail_msg_file
2105 if [ "$M_FLAG" != "y" -a "$build_ok" = y
]; then
2106 echo "\n==== Impact on file permissions ====\n" \
2110 for d
in $abssrcdirs; do
2111 if [ -d "$d/pkg" ]; then
2116 if [ -n "$abspkg" ]; then
2117 for d
in "$abspkg"; do
2118 ( cd $d/pkg
; $MAKE -e pmodes
) >> $mail_msg_file
2123 if [ "$w_FLAG" = "y" -a "$build_ok" = "y" ]; then
2124 if [[ "$MULTI_PROTO" = no ||
"$D_FLAG" = y
]]; then
2125 do_wsdiff DEBUG
$ROOT.prev
$ROOT
2128 if [[ "$MULTI_PROTO" = yes && "$F_FLAG" = n
]]; then
2129 do_wsdiff non-DEBUG
$ROOT-nd.prev
$ROOT-nd
2134 echo "==== Nightly $maketype build completed: $END_DATE ====" | \
2135 tee -a $LOGFILE >> $build_time_file
2141 elapsed_time
=$SECONDS
2142 ((hours
= elapsed_time
/ 3600 ))
2143 ((minutes
= elapsed_time
/ 60 % 60))
2144 ((seconds
= elapsed_time
% 60))
2146 echo "\n==== Total build time ====" | \
2147 tee -a $LOGFILE >> $build_time_file
2148 echo "\nreal ${hours}:${minutes}:${seconds}" | \
2149 tee -a $LOGFILE >> $build_time_file
2151 if [ "$u_FLAG" = "y" -a "$f_FLAG" = "y" -a "$build_ok" = "y" ]; then
2152 staffer
cp ${SRC}/unref-
${MACH}.out
$PARENT_WS/usr
/src
/
2155 # Produce a master list of unreferenced files -- ideally, we'd
2156 # generate the master just once after all of the nightlies
2157 # have finished, but there's no simple way to know when that
2158 # will be. Instead, we assume that we're the last nightly to
2159 # finish and merge all of the unref-${MACH}.out files in
2160 # $PARENT_WS/usr/src/. If we are in fact the final ${MACH} to
2161 # finish, then this file will be the authoritative master
2162 # list. Otherwise, another ${MACH}'s nightly will eventually
2163 # overwrite ours with its own master, but in the meantime our
2164 # temporary "master" will be no worse than any older master
2165 # which was already on the parent.
2168 set -- $PARENT_WS/usr
/src
/unref-
*.out
2169 cp "$1" ${TMPDIR}/unref.merge
2173 comm -12 ${TMPDIR}/unref.merge
"$unreffile" > ${TMPDIR}/unref.$$
2174 mv ${TMPDIR}/unref.$$
${TMPDIR}/unref.merge
2177 staffer
cp ${TMPDIR}/unref.merge
$PARENT_WS/usr
/src
/unrefmaster.out
2181 # All done save for the sweeping up.
2182 # (whichever exit we hit here will trigger the "cleanup" trap which
2183 # optionally sends mail on completion).
2185 if [ "$build_ok" = "y" ]; then