1 #!/bin/ksh -p
2 #
3 # CDDL HEADER START
4 #
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.
8 #
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.
13 #
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]
19 #
20 # CDDL HEADER END
21 #
22
23 #
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>
28 #
29 # Based on the nightly script from the integration folks,
30 # Mostly modified and owned by mike_s.
31 # Changes also by kjc, dmk.
32 #
33 # BRINGOVER_WS may be specified in the env file.
34 # The default is the old behavior of CLONE_WS
35 #
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.
39 #
40 # LINTDIRS can be set in the env file, format is a list of:
41 #
42 # /dirname-to-run-lint-on flag
43 #
44 # Where flag is: y - enable lint noise diff output
45 # n - disable lint noise diff output
46 #
47 # For example: LINTDIRS="$SRC/uts n $SRC/stand y $SRC/psm y"
48 #
49 # OPTHOME and TEAMWARE may be set in the environment to override /opt
50 # and /opt/teamware defaults.
51 #
52
53 #
54 # The CDPATH variable causes ksh's `cd' builtin to emit messages to stdout
55 # under certain circumstances, which can really screw things up; unset it.
56 #
57 unset CDPATH
58
59 # Get the absolute path of the nightly script that the user invoked. This
60 # may be a relative path, and we need to do this before changing directory.
61 nightly_path=`whence $0`
62
63 #
64 # Keep track of where we found nightly so we can invoke the matching
65 # which_scm script. If that doesn't work, don't go guessing, just rely
66 # on the $PATH settings, which will generally give us either /opt/onbld
67 # or the user's workspace.
68 #
69 WHICH_SCM=$(dirname $nightly_path)/which_scm
70 if [[ ! -x $WHICH_SCM ]]; then
71 WHICH_SCM=which_scm
72 fi
73
74 function fatal_error
75 {
76 print -u2 "nightly: $*"
77 exit 1
78 }
79
80 #
81 # Function to do a DEBUG and non-DEBUG build. Needed because we might
82 # need to do another for the source build, and since we only deliver DEBUG or
83 # non-DEBUG packages.
84 #
85 # usage: normal_build
86 #
87 function normal_build {
88
89 typeset orig_p_FLAG="$p_FLAG"
90 typeset crypto_signer="$CODESIGN_USER"
91
92 suffix=""
93
94 # non-DEBUG build begins
95
96 if [ "$F_FLAG" = "n" ]; then
97 set_non_debug_build_flags
98 CODESIGN_USER="$crypto_signer" \
99 build "non-DEBUG" "$suffix-nd" "-nd" "$MULTI_PROTO"
100 if [ "$build_ok" = "y" -a "$X_FLAG" = "y" -a \
101 "$p_FLAG" = "y" ]; then
102 copy_ihv_pkgs non-DEBUG -nd
103 fi
104 else
105 echo "\n==== No non-DEBUG $open_only build ====\n" >> "$LOGFILE"
106 fi
107
108 # non-DEBUG build ends
109
110 # DEBUG build begins
111
112 if [ "$D_FLAG" = "y" ]; then
113 set_debug_build_flags
114 CODESIGN_USER="$crypto_signer" \
115 build "DEBUG" "$suffix" "" "$MULTI_PROTO"
116 if [ "$build_ok" = "y" -a "$X_FLAG" = "y" -a \
117 "$p_FLAG" = "y" ]; then
118 copy_ihv_pkgs DEBUG ""
119 fi
120 else
121 echo "\n==== No DEBUG $open_only build ====\n" >> "$LOGFILE"
122 fi
123
124 # DEBUG build ends
125
126 p_FLAG="$orig_p_FLAG"
127 }
128
129 #
130 # usage: run_hook HOOKNAME ARGS...
131 #
132 # If variable "$HOOKNAME" is defined, insert a section header into
133 # our logs and then run the command with ARGS
134 #
135 function run_hook {
136 HOOKNAME=$1
137 eval HOOKCMD=\$$HOOKNAME
138 shift
139
140 if [ -n "$HOOKCMD" ]; then
141 (
142 echo "\n==== Running $HOOKNAME command: $HOOKCMD ====\n"
143 ( $HOOKCMD "$@" 2>&1 )
144 if [ "$?" -ne 0 ]; then
145 # Let exit status propagate up
146 touch $TMPDIR/abort
147 fi
148 ) | tee -a $mail_msg_file >> $LOGFILE
149
150 if [ -f $TMPDIR/abort ]; then
151 build_ok=n
152 echo "\nAborting at request of $HOOKNAME" |
153 tee -a $mail_msg_file >> $LOGFILE
154 exit 1
155 fi
156 fi
157 }
158
159 #
160 # usage: filelist DESTDIR PATTERN
161 #
162 function filelist {
163 DEST=$1
164 PATTERN=$2
165 cd ${DEST}
166 }
167
168 # function to save off binaries after a full build for later
169 # restoration
170 function save_binaries {
171 # save off list of binaries
172 echo "\n==== Saving binaries from build at `date` ====\n" | \
173 tee -a $mail_msg_file >> $LOGFILE
174 rm -f ${BINARCHIVE}
175 cd ${CODEMGR_WS}
176 filelist ${CODEMGR_WS} '^preserve:' >> $LOGFILE
177 filelist ${CODEMGR_WS} '^preserve:' | \
178 cpio -ocB 2>/dev/null | compress \
179 > ${BINARCHIVE}
180 }
181
182 # delete files
183 # usage: hybridize_files DESTDIR MAKE_TARGET
184 function hybridize_files {
185 DEST=$1
186 MAKETARG=$2
187
188 echo "\n==== Hybridizing files at `date` ====\n" | \
189 tee -a $mail_msg_file >> $LOGFILE
190 for i in `filelist ${DEST} '^delete:'`
191 do
192 echo "removing ${i}." | tee -a $mail_msg_file >> $LOGFILE
193 rm -rf "${i}"
194 done
195 for i in `filelist ${DEST} '^hybridize:' `
196 do
197 echo "hybridizing ${i}." | tee -a $mail_msg_file >> $LOGFILE
198 rm -f ${i}+
199 sed -e "/^# HYBRID DELETE START/,/^# HYBRID DELETE END/d" \
200 < ${i} > ${i}+
201 mv ${i}+ ${i}
202 done
203 }
204
205 # restore binaries into the proper source tree.
206 # usage: restore_binaries DESTDIR MAKE_TARGET
207 function restore_binaries {
208 DEST=$1
209 MAKETARG=$2
210
211 echo "\n==== Restoring binaries to ${MAKETARG} at `date` ====\n" | \
212 tee -a $mail_msg_file >> $LOGFILE
213 cd ${DEST}
214 zcat ${BINARCHIVE} | \
215 cpio -idmucvB 2>/dev/null | tee -a $mail_msg_file >> ${LOGFILE}
216 }
217
218 # rename files we save binaries of
219 # usage: rename_files DESTDIR MAKE_TARGET
220 function rename_files {
221 DEST=$1
222 MAKETARG=$2
223 echo "\n==== Renaming source files in ${MAKETARG} at `date` ====\n" | \
224 tee -a $mail_msg_file >> $LOGFILE
225 for i in `filelist ${DEST} '^rename:'`
226 do
227 echo ${i} | tee -a $mail_msg_file >> ${LOGFILE}
228 rm -f ${i}.export
229 mv ${i} ${i}.export
230 done
231 }
232
233 #
234 # Copy some or all of the source tree.
235 #
236 # Returns 0 for success, non-zero for failure.
237 #
238 # usage: copy_source CODEMGR_WS DESTDIR LABEL SRCROOT
239 #
240 function copy_source {
241 WS=$1
242 DEST=$2
243 label=$3
244 srcroot=$4
245
246 printf "\n==== Creating %s source from %s (%s) ====\n\n" \
247 "$DEST" "$WS" "$label" | tee -a $mail_msg_file >> $LOGFILE
248
249 printf "cleaning out %s\n" "$DEST." >> $LOGFILE
250 rm -rf "$DEST" >> $LOGFILE 2>&1
251
252 printf "creating %s\n" "$DEST." >> $LOGFILE
253 mkdir -p "$DEST" 2>> $LOGFILE
254
255 if (( $? != 0 )) ; then
256 printf "failed to create %s\n" "$DEST" |
257 tee -a $mail_msg_file >> $LOGFILE
258 build_ok=n
259 return 1
260 fi
261 cd "$WS"
262
263 printf "populating %s\n" "$DEST." >> $LOGFILE
264
265 case "$SCM_TYPE" in
266 teamware)
267 find $srcroot -name 's\.*' -a -type f -print | \
268 sed -e 's,SCCS\/s.,,' | \
269 grep -v '/\.del-*' | \
270 cpio -pd $DEST >>$LOGFILE 2>&1
271 if (( $? != 0 )) ; then
272 printf "cpio failed for %s\n" "$DEST" |
273 tee -a $mail_msg_file >> $LOGFILE
274 build_ok=n
275 return 1
276 fi
277 ;;
278 mercurial)
279 copy_source_mercurial $DEST $srcroot
280 if (( $? != 0 )) ; then
281 build_ok=n
282 return 1
283 fi
284 ;;
285 *)
286 build_ok=n
287 echo "Tree copy is not supported for workspace type" \
288 "$SCM_TYPE" | tee -a $mail_msg_file >> $LOGFILE
289 return 1
290 ;;
291 esac
292
293 return 0
294 }
295
296 #
297 # Mercurial-specific copy code for copy_source().
298 #
299 # Returns 0 for success, non-zero for failure.
300 #
301 # usage: copy_source_mercurial destdir srcroot
302 #
303 function copy_source_mercurial {
304 typeset dest=$1
305 typeset srcroot=$2
306
307 hg locate -I "$srcroot" | cpio -pd "$dest" >>$LOGFILE 2>&1
308 if (( $? != 0 )) ; then
309 printf "cpio failed for %s\n" "$dest" |
310 tee -a $mail_msg_file >> $LOGFILE
311 return 1
312 fi
313
314 return 0
315 }
316
317 #
318 # function to create (but not build) the export/crypt source tree.
319 # usage: set_up_source_build CODEMGR_WS DESTDIR MAKE_TARGET
320 # Sets SRC to the modified source tree, for use by the caller when it
321 # builds the tree.
322 #
323 function set_up_source_build {
324 WS=$1
325 DEST=$2
326 MAKETARG=$3
327
328 copy_source $WS $DEST $MAKETARG usr
329 if (( $? != 0 )); then
330 echo "\nCould not copy source tree for source build." |
331 tee -a $mail_msg_file >> $LOGFILE
332 build_ok=n
333 return
334 fi
335
336 SRC=${DEST}/usr/src
337
338 cd $SRC
339 rm -f ${MAKETARG}.out
340 echo "making ${MAKETARG} in ${SRC}." >> $LOGFILE
341 /bin/time $MAKE -e ${MAKETARG} 2>&1 | \
342 tee -a $SRC/${MAKETARG}.out >> $LOGFILE
343 echo "\n==== ${MAKETARG} build errors ====\n" >> $mail_msg_file
344 egrep ":" $SRC/${MAKETARG}.out | \
345 egrep -e "(^${MAKE}:|[ ]error[: \n])" | \
346 egrep -v "Ignoring unknown host" | \
347 egrep -v "warning" >> $mail_msg_file
348
349 echo "clearing state files." >> $LOGFILE
350 find . -name '.make*' -exec rm -f {} \;
351 }
352
353 # Return library search directive as function of given root.
354 function myldlibs {
355 echo "-L$1/lib -L$1/usr/lib"
356 }
357
358 # Return header search directive as function of given root.
359 function myheaders {
360 echo "-I$1/usr/include"
361 }
362
363 #
364 # Function to do the build, including package generation.
365 # usage: build LABEL SUFFIX ND MULTIPROTO
366 # - LABEL is used to tag build output.
367 # - SUFFIX is used to distinguish files (e.g., DEBUG vs non-DEBUG,
368 # open-only vs full tree).
369 # - ND is "-nd" (non-DEBUG builds) or "" (DEBUG builds).
370 # - If MULTIPROTO is "yes", it means to name the proto area according to
371 # SUFFIX. Otherwise ("no"), (re)use the standard proto area.
372 #
373 function build {
374 LABEL=$1
375 SUFFIX=$2
376 ND=$3
377 MULTIPROTO=$4
378 INSTALLOG=install${SUFFIX}-${MACH}
379 NOISE=noise${SUFFIX}-${MACH}
380 PKGARCHIVE=${PKGARCHIVE_ORIG}${SUFFIX}
381
382 ORIGROOT=$ROOT
383 [ $MULTIPROTO = no ] || export ROOT=$ROOT$SUFFIX
384
385 if [[ "$O_FLAG" = y ]]; then
386 echo "\nSetting CLOSEDROOT= ${ROOT}-closed\n" >> $LOGFILE
387 export CLOSEDROOT=${ROOT}-closed
388 fi
389
390 export ENVLDLIBS1=`myldlibs $ROOT`
391 export ENVCPPFLAGS1=`myheaders $ROOT`
392
393 this_build_ok=y
394 #
395 # Build OS-Networking source
396 #
397 echo "\n==== Building OS-Net source at `date` ($LABEL) ====\n" \
398 >> $LOGFILE
399
400 rm -f $SRC/${INSTALLOG}.out
401 cd $SRC
402 /bin/time $MAKE -e install 2>&1 | \
403 tee -a $SRC/${INSTALLOG}.out >> $LOGFILE
404
405 if [[ "$SCM_TYPE" = teamware ]]; then
406 echo "\n==== SCCS Noise ($LABEL) ====\n" >> $mail_msg_file
407 egrep 'sccs(check:| *get)' $SRC/${INSTALLOG}.out >> \
408 $mail_msg_file
409 fi
410
411 echo "\n==== Build errors ($LABEL) ====\n" >> $mail_msg_file
412 egrep ":" $SRC/${INSTALLOG}.out |
413 egrep -e "(^${MAKE}:|[ ]error[: \n])" | \
414 egrep -v "Ignoring unknown host" | \
415 egrep -v "cc .* -o error " | \
416 egrep -v "warning" >> $mail_msg_file
417 if [ "$?" = "0" ]; then
418 build_ok=n
419 this_build_ok=n
420 fi
421 grep "bootblock image is .* bytes too big" $SRC/${INSTALLOG}.out \
422 >> $mail_msg_file
423 if [ "$?" = "0" ]; then
424 build_ok=n
425 this_build_ok=n
426 fi
427
428 if [ "$W_FLAG" = "n" ]; then
429 echo "\n==== Build warnings ($LABEL) ====\n" >>$mail_msg_file
430 egrep -i warning: $SRC/${INSTALLOG}.out \
431 | egrep -v '^tic:' \
432 | egrep -v "symbol (\`|')timezone' has differing types:" \
433 | egrep -v "parameter <PSTAMP> set to" \
434 | egrep -v "Ignoring unknown host" \
435 | egrep -v "redefining segment flags attribute for" \
436 >> $mail_msg_file
437 fi
438
439 echo "\n==== Ended OS-Net source build at `date` ($LABEL) ====\n" \
440 >> $LOGFILE
441
442 echo "\n==== Elapsed build time ($LABEL) ====\n" >>$mail_msg_file
443 tail -3 $SRC/${INSTALLOG}.out >>$mail_msg_file
444
445 if [ "$i_FLAG" = "n" -a "$W_FLAG" = "n" ]; then
446 rm -f $SRC/${NOISE}.ref
447 if [ -f $SRC/${NOISE}.out ]; then
448 mv $SRC/${NOISE}.out $SRC/${NOISE}.ref
449 fi
450 grep : $SRC/${INSTALLOG}.out \
451 | egrep -v '^/' \
452 | egrep -v '^(Start|Finish|real|user|sys|./bld_awk)' \
453 | egrep -v '^tic:' \
454 | egrep -v '^mcs' \
455 | egrep -v '^LD_LIBRARY_PATH=' \
456 | egrep -v 'ar: creating' \
457 | egrep -v 'ar: writing' \
458 | egrep -v 'conflicts:' \
459 | egrep -v ':saved created' \
460 | egrep -v '^stty.*c:' \
461 | egrep -v '^mfgname.c:' \
462 | egrep -v '^uname-i.c:' \
463 | egrep -v '^volumes.c:' \
464 | egrep -v '^lint library construction:' \
465 | egrep -v 'tsort: INFORM:' \
466 | egrep -v 'stripalign:' \
467 | egrep -v 'chars, width' \
468 | egrep -v "symbol (\`|')timezone' has differing types:" \
469 | egrep -v 'PSTAMP' \
470 | egrep -v '|%WHOANDWHERE%|' \
471 | egrep -v '^Manifying' \
472 | egrep -v 'Ignoring unknown host' \
473 | egrep -v 'Processing method:' \
474 | egrep -v '^Writing' \
475 | egrep -v 'spellin1:' \
476 | egrep -v '^adding:' \
477 | egrep -v "^echo 'msgid" \
478 | egrep -v '^echo ' \
479 | egrep -v '\.c:$' \
480 | egrep -v '^Adding file:' \
481 | egrep -v 'CLASSPATH=' \
482 | egrep -v '\/var\/mail\/:saved' \
483 | egrep -v -- '-DUTS_VERSION=' \
484 | egrep -v '^Running Mkbootstrap' \
485 | egrep -v '^Applet length read:' \
486 | egrep -v 'bytes written:' \
487 | egrep -v '^File:SolarisAuthApplet.bin' \
488 | egrep -v -i 'jibversion' \
489 | egrep -v '^Output size:' \
490 | egrep -v '^Solo size statistics:' \
491 | egrep -v '^Using ROM API Version' \
492 | egrep -v '^Zero Signature length:' \
493 | egrep -v '^Note \(probably harmless\):' \
494 | egrep -v '::' \
495 | egrep -v -- '-xcache' \
496 | egrep -v '^\+' \
497 | egrep -v '^cc1: note: -fwritable-strings' \
498 | egrep -v 'svccfg-native -s svc:/' \
499 | sort | uniq >$SRC/${NOISE}.out
500 if [ ! -f $SRC/${NOISE}.ref ]; then
501 cp $SRC/${NOISE}.out $SRC/${NOISE}.ref
502 fi
503 echo "\n==== Build noise differences ($LABEL) ====\n" \
504 >>$mail_msg_file
505 diff $SRC/${NOISE}.ref $SRC/${NOISE}.out >>$mail_msg_file
506 fi
507
508 #
509 # Re-sign selected binaries using signing server
510 # (gatekeeper builds only)
511 #
512 if [ -n "$CODESIGN_USER" -a "$this_build_ok" = "y" ]; then
513 echo "\n==== Signing proto area at `date` ====\n" >> $LOGFILE
514 signing_file="${TMPDIR}/signing"
515 rm -f ${signing_file}
516 export CODESIGN_USER
517 signproto $SRC/tools/codesign/creds 2>&1 | \
518 tee -a ${signing_file} >> $LOGFILE
519 echo "\n==== Finished signing proto area at `date` ====\n" \
520 >> $LOGFILE
521 echo "\n==== Crypto module signing errors ($LABEL) ====\n" \
522 >> $mail_msg_file
523 egrep 'WARNING|ERROR' ${signing_file} >> $mail_msg_file
524 if (( $? == 0 )) ; then
525 build_ok=n
526 this_build_ok=n
527 fi
528 fi
529
530 #
531 # Building Packages
532 #
533 if [ "$p_FLAG" = "y" -a "$this_build_ok" = "y" ]; then
534 if [ -d $SRC/pkg -o -d $SRC/pkgdefs ]; then
535 echo "\n==== Creating $LABEL packages at `date` ====\n" \
536 >> $LOGFILE
537 echo "Clearing out $PKGARCHIVE ..." >> $LOGFILE
538 rm -rf $PKGARCHIVE >> "$LOGFILE" 2>&1
539 mkdir -p $PKGARCHIVE >> "$LOGFILE" 2>&1
540
541 for d in pkg pkgdefs; do
542 if [ ! -f "$SRC/$d/Makefile" ]; then
543 continue
544 fi
545 rm -f $SRC/$d/${INSTALLOG}.out
546 cd $SRC/$d
547 /bin/time $MAKE -e install 2>&1 | \
548 tee -a $SRC/$d/${INSTALLOG}.out >> $LOGFILE
549 done
550
551 echo "\n==== package build errors ($LABEL) ====\n" \
552 >> $mail_msg_file
553
554 for d in pkg pkgdefs; do
555 if [ ! -f "$SRC/$d/Makefile" ]; then
556 continue
557 fi
558
559 egrep "${MAKE}|ERROR|WARNING" $SRC/$d/${INSTALLOG}.out | \
560 grep ':' | \
561 grep -v PSTAMP | \
562 egrep -v "Ignoring unknown host" \
563 >> $mail_msg_file
564 done
565 else
566 #
567 # Handle it gracefully if -p was set but there are
568 # neither pkg nor pkgdefs directories.
569 #
570 echo "\n==== No $LABEL packages to build ====\n" \
571 >> $LOGFILE
572 fi
573 else
574 echo "\n==== Not creating $LABEL packages ====\n" >> $LOGFILE
575 fi
576
577 ROOT=$ORIGROOT
578 }
579
580 # Usage: dolint /dir y|n
581 # Arg. 2 is a flag to turn on/off the lint diff output
582 function dolint {
583 if [ ! -d "$1" ]; then
584 echo "dolint error: $1 is not a directory"
585 exit 1
586 fi
587
588 if [ "$2" != "y" -a "$2" != "n" ]; then
589 echo "dolint internal error: $2 should be 'y' or 'n'"
590 exit 1
591 fi
592
593 lintdir=$1
594 dodiff=$2
595 base=`basename $lintdir`
596 LINTOUT=$lintdir/lint-${MACH}.out
597 LINTNOISE=$lintdir/lint-noise-${MACH}
598 export ENVLDLIBS1=`myldlibs $ROOT`
599 export ENVCPPFLAGS1=`myheaders $ROOT`
600
601 set_debug_build_flags
602
603 #
604 # '$MAKE lint' in $lintdir
605 #
606 echo "\n==== Begin '$MAKE lint' of $base at `date` ====\n" >> $LOGFILE
607
608 # remove old lint.out
609 rm -f $lintdir/lint.out $lintdir/lint-noise.out
610 if [ -f $lintdir/lint-noise.ref ]; then
611 mv $lintdir/lint-noise.ref ${LINTNOISE}.ref
612 fi
613
614 rm -f $LINTOUT
615 cd $lintdir
616 #
617 # Remove all .ln files to ensure a full reference file
618 #
619 rm -f Nothing_to_remove \
620 `find . \( -name SCCS -o -name .hg -o -name .svn -o -name .git \) \
621 -prune -o -type f -name '*.ln' -print `
622
623 /bin/time $MAKE -ek lint 2>&1 | \
624 tee -a $LINTOUT >> $LOGFILE
625 echo "\n==== '$MAKE lint' of $base ERRORS ====\n" >> $mail_msg_file
626 grep "$MAKE:" $LINTOUT |
627 egrep -v "Ignoring unknown host" \
628 >> $mail_msg_file
629
630 echo "\n==== Ended '$MAKE lint' of $base at `date` ====\n" >> $LOGFILE
631
632 echo "\n==== Elapsed time of '$MAKE lint' of $base ====\n" \
633 >>$mail_msg_file
634 tail -3 $LINTOUT >>$mail_msg_file
635
636 rm -f ${LINTNOISE}.ref
637 if [ -f ${LINTNOISE}.out ]; then
638 mv ${LINTNOISE}.out ${LINTNOISE}.ref
639 fi
640 grep : $LINTOUT | \
641 egrep -v '^(real|user|sys)' |
642 egrep -v '(library construction)' | \
643 egrep -v ': global crosschecks' | \
644 egrep -v 'Ignoring unknown host' | \
645 egrep -v '\.c:$' | \
646 sort | uniq > ${LINTNOISE}.out
647 if [ ! -f ${LINTNOISE}.ref ]; then
648 cp ${LINTNOISE}.out ${LINTNOISE}.ref
649 fi
650 if [ "$dodiff" != "n" ]; then
651 echo "\n==== lint warnings $base ====\n" \
652 >>$mail_msg_file
653 # should be none, though there are a few that were filtered out
654 # above
655 egrep -i '(warning|lint):' ${LINTNOISE}.out \
656 | sort | uniq >> $mail_msg_file
657 echo "\n==== lint noise differences $base ====\n" \
658 >> $mail_msg_file
659 diff ${LINTNOISE}.ref ${LINTNOISE}.out \
660 >> $mail_msg_file
661 fi
662 }
663
664 # Install proto area from IHV build
665
666 function copy_ihv_proto {
667
668 echo "\n==== Installing IHV proto area ====\n" \
669 >> $LOGFILE
670 if [ -d "$IA32_IHV_ROOT" ]; then
671 if [ ! -d "$ROOT" ]; then
672 echo "mkdir -p $ROOT" >> $LOGFILE
673 mkdir -p $ROOT
674 fi
675 echo "copying $IA32_IHV_ROOT to $ROOT\n" >> $LOGFILE
676 cd $IA32_IHV_ROOT
677 tar cf - . | (cd $ROOT; umask 0; tar xpf - ) 2>&1 >> $LOGFILE
678 else
679 echo "$IA32_IHV_ROOT: not found" >> $LOGFILE
680 fi
681
682 if [ "$MULTI_PROTO" = yes ]; then
683 if [ ! -d "$ROOT-nd" ]; then
684 echo "mkdir -p $ROOT-nd" >> $LOGFILE
685 mkdir -p $ROOT-nd
686 fi
687 # If there's a non-DEBUG version of the IHV proto area,
688 # copy it, but copy something if there's not.
689 if [ -d "$IA32_IHV_ROOT-nd" ]; then
690 echo "copying $IA32_IHV_ROOT-nd to $ROOT-nd\n" >> $LOGFILE
691 cd $IA32_IHV_ROOT-nd
692 elif [ -d "$IA32_IHV_ROOT" ]; then
693 echo "copying $IA32_IHV_ROOT to $ROOT-nd\n" >> $LOGFILE
694 cd $IA32_IHV_ROOT
695 else
696 echo "$IA32_IHV_ROOT{-nd,}: not found" >> $LOGFILE
697 return
698 fi
699 tar cf - . | (cd $ROOT-nd; umask 0; tar xpf - ) 2>&1 >> $LOGFILE
700 fi
701 }
702
703 # Install IHV packages in PKGARCHIVE
704 # usage: copy_ihv_pkgs LABEL SUFFIX
705 function copy_ihv_pkgs {
706 LABEL=$1
707 SUFFIX=$2
708 # always use non-DEBUG IHV packages
709 IA32_IHV_PKGS=${IA32_IHV_PKGS_ORIG}-nd
710 PKGARCHIVE=${PKGARCHIVE_ORIG}${SUFFIX}
711
712 echo "\n==== Installing IHV packages from $IA32_IHV_PKGS ($LABEL) ====\n" \
713 >> $LOGFILE
714 if [ -d "$IA32_IHV_PKGS" ]; then
715 cd $IA32_IHV_PKGS
716 tar cf - * | \
717 (cd $PKGARCHIVE; umask 0; tar xpf - ) 2>&1 >> $LOGFILE
718 else
719 echo "$IA32_IHV_PKGS: not found" >> $LOGFILE
720 fi
721
722 echo "\n==== Installing IHV packages from $IA32_IHV_BINARY_PKGS ($LABEL) ====\n" \
723 >> $LOGFILE
724 if [ -d "$IA32_IHV_BINARY_PKGS" ]; then
725 cd $IA32_IHV_BINARY_PKGS
726 tar cf - * | \
727 (cd $PKGARCHIVE; umask 0; tar xpf - ) 2>&1 >> $LOGFILE
728 else
729 echo "$IA32_IHV_BINARY_PKGS: not found" >> $LOGFILE
730 fi
731 }
732
733 #
734 # Build and install the onbld tools.
735 #
736 # usage: build_tools DESTROOT
737 #
738 # returns non-zero status if the build was successful.
739 #
740 function build_tools {
741 DESTROOT=$1
742
743 INSTALLOG=install-${MACH}
744
745 echo "\n==== Building tools at `date` ====\n" \
746 >> $LOGFILE
747
748 rm -f ${TOOLS}/${INSTALLOG}.out
749 cd ${TOOLS}
750 /bin/time $MAKE TOOLS_PROTO=${DESTROOT} -e install 2>&1 | \
751 tee -a ${TOOLS}/${INSTALLOG}.out >> $LOGFILE
752
753 echo "\n==== Tools build errors ====\n" >> $mail_msg_file
754
755 egrep ":" ${TOOLS}/${INSTALLOG}.out |
756 egrep -e "(${MAKE}:|[ ]error[: \n])" | \
757 egrep -v "Ignoring unknown host" | \
758 egrep -v warning >> $mail_msg_file
759 return $?
760 }
761
762 #
763 # Set up to use locally installed tools.
764 #
765 # usage: use_tools TOOLSROOT
766 #
767 function use_tools {
768 TOOLSROOT=$1
769
770 #
771 # If we're not building ON workspace, then the TOOLSROOT
772 # settings here are clearly ignored by the workspace
773 # makefiles, prepending nonexistent directories to PATH is
774 # harmless, and we clearly do not wish to override
775 # ONBLD_TOOLS.
776 #
777 # If we're building an ON workspace, then the prepended PATH
778 # elements should supercede the preexisting ONBLD_TOOLS paths,
779 # and we want to override ONBLD_TOOLS to catch the tools that
780 # don't have specific path env vars here.
781 #
782 # So the only conditional behavior is overriding ONBLD_TOOLS,
783 # and we check for "an ON workspace" by looking for
784 # ${TOOLSROOT}/opt/onbld.
785 #
786
787 STABS=${TOOLSROOT}/opt/onbld/bin/${MACH}/stabs
788 export STABS
789 CTFSTABS=${TOOLSROOT}/opt/onbld/bin/${MACH}/ctfstabs
790 export CTFSTABS
791 GENOFFSETS=${TOOLSROOT}/opt/onbld/bin/genoffsets
792 export GENOFFSETS
793
794 CTFCONVERT=${TOOLSROOT}/opt/onbld/bin/${MACH}/ctfconvert
795 export CTFCONVERT
796 CTFMERGE=${TOOLSROOT}/opt/onbld/bin/${MACH}/ctfmerge
797 export CTFMERGE
798
799 CTFCVTPTBL=${TOOLSROOT}/opt/onbld/bin/ctfcvtptbl
800 export CTFCVTPTBL
801 CTFFINDMOD=${TOOLSROOT}/opt/onbld/bin/ctffindmod
802 export CTFFINDMOD
803
804 if [ "$VERIFY_ELFSIGN" = "y" ]; then
805 ELFSIGN=${TOOLSROOT}/opt/onbld/bin/elfsigncmp
806 else
807 ELFSIGN=${TOOLSROOT}/opt/onbld/bin/${MACH}/elfsign
808 fi
809 export ELFSIGN
810
811 PATH="${TOOLSROOT}/opt/onbld/bin/${MACH}:${PATH}"
812 PATH="${TOOLSROOT}/opt/onbld/bin:${PATH}"
813 export PATH
814
815 if [ -d "${TOOLSROOT}/opt/onbld" ]; then
816 ONBLD_TOOLS=${TOOLSROOT}/opt/onbld
817 export ONBLD_TOOLS
818 fi
819
820 echo "\n==== New environment settings. ====\n" >> $LOGFILE
821 echo "STABS=${STABS}" >> $LOGFILE
822 echo "CTFSTABS=${CTFSTABS}" >> $LOGFILE
823 echo "CTFCONVERT=${CTFCONVERT}" >> $LOGFILE
824 echo "CTFMERGE=${CTFMERGE}" >> $LOGFILE
825 echo "CTFCVTPTBL=${CTFCVTPTBL}" >> $LOGFILE
826 echo "CTFFINDMOD=${CTFFINDMOD}" >> $LOGFILE
827 echo "ELFSIGN=${ELFSIGN}" >> $LOGFILE
828 echo "PATH=${PATH}" >> $LOGFILE
829 echo "ONBLD_TOOLS=${ONBLD_TOOLS}" >> $LOGFILE
830 }
831
832 function staffer {
833 if [ $ISUSER -ne 0 ]; then
834 "$@"
835 else
836 arg="\"$1\""
837 shift
838 for i
839 do
840 arg="$arg \"$i\""
841 done
842 eval su $STAFFER -c \'$arg\'
843 fi
844 }
845
846 #
847 # Verify that the closed tree is present if it needs to be.
848 #
849 function check_closed_tree {
850 if [[ ! -d "$ON_CLOSED_BINS" ]]; then
851 echo "ON_CLOSED_BINS must point to the closed binaries tree."
852 build_ok=n
853 exit 1
854 fi
855 }
856
857 function obsolete_build {
858 echo "WARNING: Obsolete $1 build requested; request will be ignored"
859 }
860
861 #
862 # wrapper over wsdiff.
863 # usage: do_wsdiff LABEL OLDPROTO NEWPROTO
864 #
865 function do_wsdiff {
866 label=$1
867 oldproto=$2
868 newproto=$3
869
870 wsdiff="wsdiff"
871 [ "$t_FLAG" = y ] && wsdiff="wsdiff -t"
872
873 echo "\n==== Getting object changes since last build at `date`" \
874 "($label) ====\n" | tee -a $LOGFILE >> $mail_msg_file
875 $wsdiff -s -r ${TMPDIR}/wsdiff.results $oldproto $newproto 2>&1 | \
876 tee -a $LOGFILE >> $mail_msg_file
877 echo "\n==== Object changes determined at `date` ($label) ====\n" | \
878 tee -a $LOGFILE >> $mail_msg_file
879 }
880
881 #
882 # Functions for setting build flags (DEBUG/non-DEBUG). Keep them
883 # together.
884 #
885
886 function set_non_debug_build_flags {
887 export INTERNAL_RELEASE_BUILD ; INTERNAL_RELEASE_BUILD=
888 export RELEASE_BUILD ; RELEASE_BUILD=
889 unset EXTRA_OPTIONS
890 unset EXTRA_CFLAGS
891 }
892
893 function set_debug_build_flags {
894 export INTERNAL_RELEASE_BUILD ; INTERNAL_RELEASE_BUILD=
895 unset RELEASE_BUILD
896 unset EXTRA_OPTIONS
897 unset EXTRA_CFLAGS
898 }
899
900
901 MACH=`uname -p`
902
903 if [ "$OPTHOME" = "" ]; then
904 OPTHOME=/opt
905 export OPTHOME
906 fi
907 if [ "$TEAMWARE" = "" ]; then
908 TEAMWARE=$OPTHOME/teamware
909 export TEAMWARE
910 fi
911
912 USAGE='Usage: nightly [-in] [+t] [-V VERS ] [ -S E|D|H|O ] <env_file>
913
914 Where:
915 -i Fast incremental options (no clobber, lint, check)
916 -n Do not do a bringover
917 +t Use the build tools in $ONBLD_TOOLS/bin
918 -V VERS set the build version string to VERS
919 -S Build a variant of the source product
920 E - build exportable source
921 D - build domestic source (exportable + crypt)
922 H - build hybrid source (binaries + deleted source)
923 O - build (only) open source
924
925 <env_file> file in Bourne shell syntax that sets and exports
926 variables that configure the operation of this script and many of
927 the scripts this one calls. If <env_file> does not exist,
928 it will be looked for in $OPTHOME/onbld/env.
929
930 non-DEBUG is the default build type. Build options can be set in the
931 NIGHTLY_OPTIONS variable in the <env_file> as follows:
932
933 -A check for ABI differences in .so files
934 -C check for cstyle/hdrchk errors
935 -D do a build with DEBUG on
936 -F do _not_ do a non-DEBUG build
937 -G gate keeper default group of options (-au)
938 -I integration engineer default group of options (-ampu)
939 -M do not run pmodes (safe file permission checker)
940 -N do not run protocmp
941 -O generate OpenSolaris deliverables
942 -R default group of options for building a release (-mp)
943 -U update proto area in the parent
944 -V VERS set the build version string to VERS
945 -X copy x86 IHV proto area
946 -f find unreferenced files
947 -i do an incremental build (no "make clobber")
948 -l do "make lint" in $LINTDIRS (default: $SRC y)
949 -m send mail to $MAILTO at end of build
950 -n do not do a bringover
951 -o build using root privileges to set OWNER/GROUP (old style)
952 -p create packages
953 -r check ELF runtime attributes in the proto area
954 -t build and use the tools in $SRC/tools (default setting)
955 +t Use the build tools in $ONBLD_TOOLS/bin
956 -u update proto_list_$MACH and friends in the parent workspace;
957 when used with -f, also build an unrefmaster.out in the parent
958 -w report on differences between previous and current proto areas
959 -z compress cpio archives with gzip
960 -W Do not report warnings (freeware gate ONLY)
961 -S Build a variant of the source product
962 E - build exportable source
963 D - build domestic source (exportable + crypt)
964 H - build hybrid source (binaries + deleted source)
965 O - build (only) open source
966 '
967 #
968 # A log file will be generated under the name $LOGFILE
969 # for partially completed build and log.`date '+%F'`
970 # in the same directory for fully completed builds.
971 #
972
973 # default values for low-level FLAGS; G I R are group FLAGS
974 A_FLAG=n
975 C_FLAG=n
976 D_FLAG=n
977 F_FLAG=n
978 f_FLAG=n
979 i_FLAG=n; i_CMD_LINE_FLAG=n
980 l_FLAG=n
981 M_FLAG=n
982 m_FLAG=n
983 N_FLAG=n
984 n_FLAG=n
985 O_FLAG=n
986 o_FLAG=n
987 P_FLAG=n
988 p_FLAG=n
989 r_FLAG=n
990 T_FLAG=n
991 t_FLAG=y
992 U_FLAG=n
993 u_FLAG=n
994 V_FLAG=n
995 W_FLAG=n
996 w_FLAG=n
997 X_FLAG=n
998 SD_FLAG=n
999 SE_FLAG=n
1000 SH_FLAG=n
1001 SO_FLAG=n
1002 #
1003 XMOD_OPT=
1004 #
1005 build_ok=y
1006
1007 function is_source_build {
1008 [ "$SE_FLAG" = "y" -o "$SD_FLAG" = "y" -o \
1009 "$SH_FLAG" = "y" -o "$SO_FLAG" = "y" ]
1010 return $?
1011 }
1012
1013 #
1014 # examine arguments
1015 #
1016
1017 #
1018 # single function for setting -S flag and doing error checking.
1019 # usage: set_S_flag <type>
1020 # where <type> is the source build type ("E", "D", ...).
1021 #
1022 function set_S_flag {
1023 if is_source_build; then
1024 echo "Can only build one source variant at a time."
1025 exit 1
1026 fi
1027 if [ "$1" = "E" ]; then
1028 SE_FLAG=y
1029 elif [ "$1" = "D" ]; then
1030 SD_FLAG=y
1031 elif [ "$1" = "H" ]; then
1032 SH_FLAG=y
1033 elif [ "$1" = "O" ]; then
1034 SO_FLAG=y
1035 else
1036 echo "$USAGE"
1037 exit 1
1038 fi
1039 }
1040
1041 OPTIND=1
1042 while getopts +inS:tV: FLAG
1043 do
1044 case $FLAG in
1045 i ) i_FLAG=y; i_CMD_LINE_FLAG=y
1046 ;;
1047 n ) n_FLAG=y
1048 ;;
1049 S )
1050 set_S_flag $OPTARG
1051 ;;
1052 +t ) t_FLAG=n
1053 ;;
1054 V ) V_FLAG=y
1055 V_ARG="$OPTARG"
1056 ;;
1057 \? ) echo "$USAGE"
1058 exit 1
1059 ;;
1060 esac
1061 done
1062
1063 # correct argument count after options
1064 shift `expr $OPTIND - 1`
1065
1066 # test that the path to the environment-setting file was given
1067 if [ $# -ne 1 ]; then
1068 echo "$USAGE"
1069 exit 1
1070 fi
1071
1072 # check if user is running nightly as root
1073 # ISUSER is set non-zero if an ordinary user runs nightly, or is zero
1074 # when root invokes nightly.
1075 /usr/bin/id | grep '^uid=0(' >/dev/null 2>&1
1076 ISUSER=$?; export ISUSER
1077
1078 #
1079 # force locale to C
1080 LC_COLLATE=C; export LC_COLLATE
1081 LC_CTYPE=C; export LC_CTYPE
1082 LC_MESSAGES=C; export LC_MESSAGES
1083 LC_MONETARY=C; export LC_MONETARY
1084 LC_NUMERIC=C; export LC_NUMERIC
1085 LC_TIME=C; export LC_TIME
1086
1087 # clear environment variables we know to be bad for the build
1088 unset LD_OPTIONS
1089 unset LD_AUDIT LD_AUDIT_32 LD_AUDIT_64
1090 unset LD_BIND_NOW LD_BIND_NOW_32 LD_BIND_NOW_64
1091 unset LD_BREADTH LD_BREADTH_32 LD_BREADTH_64
1092 unset LD_CONFIG LD_CONFIG_32 LD_CONFIG_64
1093 unset LD_DEBUG LD_DEBUG_32 LD_DEBUG_64
1094 unset LD_DEMANGLE LD_DEMANGLE_32 LD_DEMANGLE_64
1095 unset LD_FLAGS LD_FLAGS_32 LD_FLAGS_64
1096 unset LD_LIBRARY_PATH LD_LIBRARY_PATH_32 LD_LIBRARY_PATH_64
1097 unset LD_LOADFLTR LD_LOADFLTR_32 LD_LOADFLTR_64
1098 unset LD_NOAUDIT LD_NOAUDIT_32 LD_NOAUDIT_64
1099 unset LD_NOAUXFLTR LD_NOAUXFLTR_32 LD_NOAUXFLTR_64
1100 unset LD_NOCONFIG LD_NOCONFIG_32 LD_NOCONFIG_64
1101 unset LD_NODIRCONFIG LD_NODIRCONFIG_32 LD_NODIRCONFIG_64
1102 unset LD_NODIRECT LD_NODIRECT_32 LD_NODIRECT_64
1103 unset LD_NOLAZYLOAD LD_NOLAZYLOAD_32 LD_NOLAZYLOAD_64
1104 unset LD_NOOBJALTER LD_NOOBJALTER_32 LD_NOOBJALTER_64
1105 unset LD_NOVERSION LD_NOVERSION_32 LD_NOVERSION_64
1106 unset LD_ORIGIN LD_ORIGIN_32 LD_ORIGIN_64
1107 unset LD_PRELOAD LD_PRELOAD_32 LD_PRELOAD_64
1108 unset LD_PROFILE LD_PROFILE_32 LD_PROFILE_64
1109
1110 unset CONFIG
1111 unset GROUP
1112 unset OWNER
1113 unset REMOTE
1114 unset ENV
1115 unset ARCH
1116 unset CLASSPATH
1117 unset NAME
1118
1119 #
1120 # To get ONBLD_TOOLS from the environment, it must come from the env file.
1121 # If it comes interactively, it is generally TOOLS_PROTO, which will be
1122 # clobbered before the compiler version checks, which will therefore fail.
1123 #
1124 unset ONBLD_TOOLS
1125
1126 #
1127 # Setup environmental variables
1128 #
1129 if [ -f /etc/nightly.conf ]; then
1130 . /etc/nightly.conf
1131 fi
1132
1133 if [ -f $1 ]; then
1134 if [[ $1 = */* ]]; then
1135 . $1
1136 else
1137 . ./$1
1138 fi
1139 else
1140 if [ -f $OPTHOME/onbld/env/$1 ]; then
1141 . $OPTHOME/onbld/env/$1
1142 else
1143 echo "Cannot find env file as either $1 or $OPTHOME/onbld/env/$1"
1144 exit 1
1145 fi
1146 fi
1147
1148 # contents of stdenv.sh inserted after next line:
1149 # STDENV_START
1150 # STDENV_END
1151
1152 # Check if we have sufficient data to continue...
1153 [[ -v CODEMGR_WS ]] || fatal_error "Error: Variable CODEMGR_WS not set."
1154 if [[ "${NIGHTLY_OPTIONS}" == ~(F)n ]] ; then
1155 # Check if the gate data are valid if we don't do a "bringover" below
1156 [[ -d "${CODEMGR_WS}" ]] || \
1157 fatal_error "Error: ${CODEMGR_WS} is not a directory."
1158 [[ -f "${CODEMGR_WS}/usr/src/Makefile" ]] || \
1159 fatal_error "Error: ${CODEMGR_WS}/usr/src/Makefile not found."
1160 fi
1161
1162 #
1163 # place ourselves in a new task, respecting BUILD_PROJECT if set.
1164 #
1165 if [ -z "$BUILD_PROJECT" ]; then
1166 /usr/bin/newtask -c $$
1167 else
1168 /usr/bin/newtask -c $$ -p $BUILD_PROJECT
1169 fi
1170
1171 ps -o taskid= -p $$ | read build_taskid
1172 ps -o project= -p $$ | read build_project
1173
1174 #
1175 # See if NIGHTLY_OPTIONS is set
1176 #
1177 if [ "$NIGHTLY_OPTIONS" = "" ]; then
1178 NIGHTLY_OPTIONS="-aBm"
1179 fi
1180
1181 #
1182 # If BRINGOVER_WS was not specified, let it default to CLONE_WS
1183 #
1184 if [ "$BRINGOVER_WS" = "" ]; then
1185 BRINGOVER_WS=$CLONE_WS
1186 fi
1187
1188 #
1189 # If CLOSED_BRINGOVER_WS was not specified, let it default to CLOSED_CLONE_WS
1190 #
1191 if [ "$CLOSED_BRINGOVER_WS" = "" ]; then
1192 CLOSED_BRINGOVER_WS=$CLOSED_CLONE_WS
1193 fi
1194
1195 #
1196 # If BRINGOVER_FILES was not specified, default to usr
1197 #
1198 if [ "$BRINGOVER_FILES" = "" ]; then
1199 BRINGOVER_FILES="usr"
1200 fi
1201
1202 check_closed_tree
1203
1204 #
1205 # Note: changes to the option letters here should also be applied to the
1206 # bldenv script. `d' is listed for backward compatibility.
1207 #
1208 NIGHTLY_OPTIONS=-${NIGHTLY_OPTIONS#-}
1209 OPTIND=1
1210 while getopts +ABCDdFfGIilMmNnOoPpRrS:TtUuWwXxz FLAG $NIGHTLY_OPTIONS
1211 do
1212 case $FLAG in
1213 A ) A_FLAG=y
1214 ;;
1215 B ) D_FLAG=y
1216 ;; # old version of D
1217 C ) C_FLAG=y
1218 ;;
1219 D ) D_FLAG=y
1220 ;;
1221 F ) F_FLAG=y
1222 ;;
1223 f ) f_FLAG=y
1224 ;;
1225 G ) u_FLAG=y
1226 ;;
1227 I ) m_FLAG=y
1228 p_FLAG=y
1229 u_FLAG=y
1230 ;;
1231 i ) i_FLAG=y
1232 ;;
1233 l ) l_FLAG=y
1234 ;;
1235 M ) M_FLAG=y
1236 ;;
1237 m ) m_FLAG=y
1238 ;;
1239 N ) N_FLAG=y
1240 ;;
1241 n ) n_FLAG=y
1242 ;;
1243 O ) O_FLAG=y
1244 ;;
1245 o ) o_FLAG=y
1246 ;;
1247 P ) P_FLAG=y
1248 ;; # obsolete
1249 p ) p_FLAG=y
1250 ;;
1251 R ) m_FLAG=y
1252 p_FLAG=y
1253 ;;
1254 r ) r_FLAG=y
1255 ;;
1256 S )
1257 set_S_flag $OPTARG
1258 ;;
1259 T ) T_FLAG=y
1260 ;; # obsolete
1261 +t ) t_FLAG=n
1262 ;;
1263 U ) if [ -z "${PARENT_ROOT}" ]; then
1264 echo "PARENT_ROOT must be set if the U flag is" \
1265 "present in NIGHTLY_OPTIONS."
1266 exit 1
1267 fi
1268 NIGHTLY_PARENT_ROOT=$PARENT_ROOT
1269 if [ -n "${PARENT_TOOLS_ROOT}" ]; then
1270 NIGHTLY_PARENT_TOOLS_ROOT=$PARENT_TOOLS_ROOT
1271 fi
1272 U_FLAG=y
1273 ;;
1274 u ) u_FLAG=y
1275 ;;
1276 W ) W_FLAG=y
1277 ;;
1278
1279 w ) w_FLAG=y
1280 ;;
1281 X ) # now that we no longer need realmode builds, just
1282 # copy IHV packages. only meaningful on x86.
1283 if [ "$MACH" = "i386" ]; then
1284 X_FLAG=y
1285 fi
1286 ;;
1287 x ) XMOD_OPT="-x"
1288 ;;
1289 \? ) echo "$USAGE"
1290 exit 1
1291 ;;
1292 esac
1293 done
1294
1295 if [ $ISUSER -ne 0 ]; then
1296 if [ "$o_FLAG" = "y" ]; then
1297 echo "Old-style build requires root permission."
1298 exit 1
1299 fi
1300
1301 # Set default value for STAFFER, if needed.
1302 if [ -z "$STAFFER" -o "$STAFFER" = "nobody" ]; then
1303 STAFFER=`/usr/xpg4/bin/id -un`
1304 export STAFFER
1305 fi
1306 fi
1307
1308 if [ -z "$MAILTO" -o "$MAILTO" = "nobody" ]; then
1309 MAILTO=$STAFFER
1310 export MAILTO
1311 fi
1312
1313 PATH="$OPTHOME/onbld/bin:$OPTHOME/onbld/bin/${MACH}:/usr/ccs/bin"
1314 PATH="$PATH:$OPTHOME/SUNWspro/bin:$TEAMWARE/bin:/usr/bin:/usr/sbin:/usr/ucb"
1315 PATH="$PATH:/usr/openwin/bin:/usr/sfw/bin:/opt/sfw/bin:."
1316 export PATH
1317
1318 # roots of source trees, both relative to $SRC and absolute.
1319 relsrcdirs="."
1320 abssrcdirs="$SRC"
1321
1322 unset CH
1323 if [ "$o_FLAG" = "y" ]; then
1324 # root invoked old-style build -- make sure it works as it always has
1325 # by exporting 'CH'. The current Makefile.master doesn't use this, but
1326 # the old ones still do.
1327 PROTOCMPTERSE="protocmp.terse"
1328 CH=
1329 export CH
1330 else
1331 PROTOCMPTERSE="protocmp.terse -gu"
1332 fi
1333 POUND_SIGN="#"
1334 # have we set RELEASE_DATE in our env file?
1335 if [ -z "$RELEASE_DATE" ]; then
1336 RELEASE_DATE=$(LC_ALL=C date +"%B %Y")
1337 fi
1338 BUILD_DATE=$(LC_ALL=C date +%Y-%b-%d)
1339 BASEWSDIR=$(basename $CODEMGR_WS)
1340 DEV_CM="\"@(#)SunOS Internal Development: $LOGNAME $BUILD_DATE [$BASEWSDIR]\""
1341
1342 # we export POUND_SIGN, RELEASE_DATE and DEV_CM to speed up the build process
1343 # by avoiding repeated shell invocations to evaluate Makefile.master definitions.
1344 # we export o_FLAG and X_FLAG for use by makebfu, and by usr/src/pkg/Makefile
1345 export o_FLAG X_FLAG POUND_SIGN RELEASE_DATE DEV_CM
1346
1347 maketype="distributed"
1348 MAKE=dmake
1349 # get the dmake version string alone
1350 DMAKE_VERSION=$( $MAKE -v )
1351 DMAKE_VERSION=${DMAKE_VERSION#*: }
1352 # focus in on just the dotted version number alone
1353 DMAKE_MAJOR=$( echo $DMAKE_VERSION | \
1354 sed -e 's/.*\<\([^.]*\.[^ ]*\).*$/\1/' )
1355 # extract the second (or final) integer
1356 DMAKE_MINOR=${DMAKE_MAJOR#*.}
1357 DMAKE_MINOR=${DMAKE_MINOR%%.*}
1358 # extract the first integer
1359 DMAKE_MAJOR=${DMAKE_MAJOR%%.*}
1360 CHECK_DMAKE=${CHECK_DMAKE:-y}
1361 # x86 was built on the 12th, sparc on the 13th.
1362 if [ "$CHECK_DMAKE" = "y" -a \
1363 "$DMAKE_VERSION" != "Sun Distributed Make 7.3 2003/03/12" -a \
1364 "$DMAKE_VERSION" != "Sun Distributed Make 7.3 2003/03/13" -a \( \
1365 "$DMAKE_MAJOR" -lt 7 -o \
1366 "$DMAKE_MAJOR" -eq 7 -a "$DMAKE_MINOR" -lt 4 \) ]; then
1367 if [ -z "$DMAKE_VERSION" ]; then
1368 echo "$MAKE is missing."
1369 exit 1
1370 fi
1371 echo `whence $MAKE`" version is:"
1372 echo " ${DMAKE_VERSION}"
1373 cat <<EOF
1374
1375 This version may not be safe for use. Either set TEAMWARE to a better
1376 path or (if you really want to use this version of dmake anyway), add
1377 the following to your environment to disable this check:
1378
1379 CHECK_DMAKE=n
1380 EOF
1381 exit 1
1382 fi
1383 export PATH
1384 export MAKE
1385
1386 if [ "${SUNWSPRO}" != "" ]; then
1387 PATH="${SUNWSPRO}/bin:$PATH"
1388 export PATH
1389 fi
1390
1391 hostname=$(uname -n)
1392 if [[ $DMAKE_MAX_JOBS != +([0-9]) || $DMAKE_MAX_JOBS -eq 0 ]]
1393 then
1394 maxjobs=
1395 if [[ -f $HOME/.make.machines ]]
1396 then
1397 # Note: there is a hard tab and space character in the []s
1398 # below.
1399 egrep -i "^[ ]*$hostname[ \.]" \
1400 $HOME/.make.machines | read host jobs
1401 maxjobs=${jobs##*=}
1402 fi
1403
1404 if [[ $maxjobs != +([0-9]) || $maxjobs -eq 0 ]]
1405 then
1406 # default
1407 maxjobs=4
1408 fi
1409
1410 export DMAKE_MAX_JOBS=$maxjobs
1411 fi
1412
1413 DMAKE_MODE=parallel;
1414 export DMAKE_MODE
1415
1416 if [ -z "${ROOT}" ]; then
1417 echo "ROOT must be set."
1418 exit 1
1419 fi
1420
1421 #
1422 # if -V flag was given, reset VERSION to V_ARG
1423 #
1424 if [ "$V_FLAG" = "y" ]; then
1425 VERSION=$V_ARG
1426 fi
1427
1428 #
1429 # Check for IHV root for copying ihv proto area
1430 #
1431 if [ "$X_FLAG" = "y" ]; then
1432 if [ "$IA32_IHV_ROOT" = "" ]; then
1433 echo "IA32_IHV_ROOT: must be set for copying ihv proto"
1434 args_ok=n
1435 fi
1436 if [ ! -d "$IA32_IHV_ROOT" ]; then
1437 echo "$IA32_IHV_ROOT: not found"
1438 args_ok=n
1439 fi
1440 if [ "$IA32_IHV_WS" = "" ]; then
1441 echo "IA32_IHV_WS: must be set for copying ihv proto"
1442 args_ok=n
1443 fi
1444 if [ ! -d "$IA32_IHV_WS" ]; then
1445 echo "$IA32_IHV_WS: not found"
1446 args_ok=n
1447 fi
1448 fi
1449
1450 # Append source version
1451 if [ "$SE_FLAG" = "y" ]; then
1452 VERSION="${VERSION}:EXPORT"
1453 fi
1454
1455 if [ "$SD_FLAG" = "y" ]; then
1456 VERSION="${VERSION}:DOMESTIC"
1457 fi
1458
1459 if [ "$SH_FLAG" = "y" ]; then
1460 VERSION="${VERSION}:MODIFIED_SOURCE_PRODUCT"
1461 fi
1462
1463 if [ "$SO_FLAG" = "y" ]; then
1464 VERSION="${VERSION}:OPEN_ONLY"
1465 fi
1466
1467 TMPDIR="/tmp/nightly.tmpdir.$$"
1468 export TMPDIR
1469 rm -rf ${TMPDIR}
1470 mkdir -p $TMPDIR || exit 1
1471 chmod 777 $TMPDIR
1472
1473 #
1474 # Keep elfsign's use of pkcs11_softtoken from looking in the user home
1475 # directory, which doesn't always work. Needed until all build machines
1476 # have the fix for 6271754
1477 #
1478 SOFTTOKEN_DIR=$TMPDIR
1479 export SOFTTOKEN_DIR
1480
1481 #
1482 # Tools should only be built non-DEBUG. Keep track of the tools proto
1483 # area path relative to $TOOLS, because the latter changes in an
1484 # export build.
1485 #
1486 # TOOLS_PROTO is included below for builds other than usr/src/tools
1487 # that look for this location. For usr/src/tools, this will be
1488 # overridden on the $MAKE command line in build_tools().
1489 #
1490 TOOLS=${SRC}/tools
1491 TOOLS_PROTO_REL=proto/root_${MACH}-nd
1492 TOOLS_PROTO=${TOOLS}/${TOOLS_PROTO_REL}; export TOOLS_PROTO
1493
1494 unset CFLAGS LD_LIBRARY_PATH LDFLAGS
1495
1496 # create directories that are automatically removed if the nightly script
1497 # fails to start correctly
1498 function newdir {
1499 dir=$1
1500 toadd=
1501 while [ ! -d $dir ]; do
1502 toadd="$dir $toadd"
1503 dir=`dirname $dir`
1504 done
1505 torm=
1506 newlist=
1507 for dir in $toadd; do
1508 if staffer mkdir $dir; then
1509 newlist="$ISUSER $dir $newlist"
1510 torm="$dir $torm"
1511 else
1512 [ -z "$torm" ] || staffer rmdir $torm
1513 return 1
1514 fi
1515 done
1516 newdirlist="$newlist $newdirlist"
1517 return 0
1518 }
1519 newdirlist=
1520
1521 [ -d $CODEMGR_WS ] || newdir $CODEMGR_WS || exit 1
1522
1523 # since this script assumes the build is from full source, it nullifies
1524 # variables likely to have been set by a "ws" script; nullification
1525 # confines the search space for headers and libraries to the proto area
1526 # built from this immediate source.
1527 ENVLDLIBS1=
1528 ENVLDLIBS2=
1529 ENVLDLIBS3=
1530 ENVCPPFLAGS1=
1531 ENVCPPFLAGS2=
1532 ENVCPPFLAGS3=
1533 ENVCPPFLAGS4=
1534 PARENT_ROOT=
1535
1536 export ENVLDLIBS3 ENVCPPFLAGS1 ENVCPPFLAGS2 ENVCPPFLAGS3 ENVCPPFLAGS4 \
1537 ENVLDLIBS1 ENVLDLIBS2 PARENT_ROOT
1538
1539 PKGARCHIVE_ORIG=$PKGARCHIVE
1540 IA32_IHV_PKGS_ORIG=$IA32_IHV_PKGS
1541
1542 #
1543 # Juggle the logs and optionally send mail on completion.
1544 #
1545
1546 function logshuffle {
1547 LLOG="$ATLOG/log.`date '+%F.%H:%M'`"
1548 if [ -f $LLOG -o -d $LLOG ]; then
1549 LLOG=$LLOG.$$
1550 fi
1551 mkdir $LLOG
1552 export LLOG
1553
1554 if [ "$build_ok" = "y" ]; then
1555 mv $ATLOG/proto_list_${MACH} $LLOG
1556
1557 if [ -f $ATLOG/proto_list_tools_${MACH} ]; then
1558 mv $ATLOG/proto_list_tools_${MACH} $LLOG
1559 fi
1560
1561 if [ -f $TMPDIR/wsdiff.results ]; then
1562 mv $TMPDIR/wsdiff.results $LLOG
1563 fi
1564
1565 if [ -f $TMPDIR/wsdiff-nd.results ]; then
1566 mv $TMPDIR/wsdiff-nd.results $LLOG
1567 fi
1568 fi
1569
1570 #
1571 # Now that we're about to send mail, it's time to check the noise
1572 # file. In the event that an error occurs beyond this point, it will
1573 # be recorded in the nightly.log file, but nowhere else. This would
1574 # include only errors that cause the copying of the noise log to fail
1575 # or the mail itself not to be sent.
1576 #
1577
1578 exec >>$LOGFILE 2>&1
1579 if [ -s $build_noise_file ]; then
1580 echo "\n==== Nightly build noise ====\n" |
1581 tee -a $LOGFILE >>$mail_msg_file
1582 cat $build_noise_file >>$LOGFILE
1583 cat $build_noise_file >>$mail_msg_file
1584 echo | tee -a $LOGFILE >>$mail_msg_file
1585 fi
1586 rm -f $build_noise_file
1587
1588 case "$build_ok" in
1589 y)
1590 state=Completed
1591 ;;
1592 i)
1593 state=Interrupted
1594 ;;
1595 *)
1596 state=Failed
1597 ;;
1598 esac
1599 NIGHTLY_STATUS=$state
1600 export NIGHTLY_STATUS
1601
1602 run_hook POST_NIGHTLY $state
1603 run_hook SYS_POST_NIGHTLY $state
1604
1605 #
1606 # mailx(1) sets From: based on the -r flag
1607 # if it is given.
1608 #
1609 mailx_r=
1610 if [[ -n "${MAILFROM}" ]]; then
1611 mailx_r="-r ${MAILFROM}"
1612 fi
1613
1614 cat $build_time_file $build_environ_file $mail_msg_file \
1615 > ${LLOG}/mail_msg
1616 if [ "$m_FLAG" = "y" ]; then
1617 cat ${LLOG}/mail_msg | /usr/bin/mailx ${mailx_r} -s \
1618 "Nightly ${MACH} Build of `basename ${CODEMGR_WS}` ${state}." \
1619 ${MAILTO}
1620 fi
1621
1622 if [ "$u_FLAG" = "y" -a "$build_ok" = "y" ]; then
1623 staffer cp ${LLOG}/mail_msg $PARENT_WS/usr/src/mail_msg-${MACH}
1624 staffer cp $LOGFILE $PARENT_WS/usr/src/nightly-${MACH}.log
1625 fi
1626
1627 mv $LOGFILE $LLOG
1628 }
1629
1630 #
1631 # Remove the locks and temporary files on any exit
1632 #
1633 function cleanup {
1634 logshuffle
1635
1636 [ -z "$lockfile" ] || staffer rm -f $lockfile
1637 [ -z "$atloglockfile" ] || rm -f $atloglockfile
1638 [ -z "$ulockfile" ] || staffer rm -f $ulockfile
1639 [ -z "$Ulockfile" ] || rm -f $Ulockfile
1640
1641 set -- $newdirlist
1642 while [ $# -gt 0 ]; do
1643 ISUSER=$1 staffer rmdir $2
1644 shift; shift
1645 done
1646 rm -rf $TMPDIR
1647 }
1648
1649 function cleanup_signal {
1650 build_ok=i
1651 # this will trigger cleanup(), above.
1652 exit 1
1653 }
1654
1655 trap cleanup 0
1656 trap cleanup_signal 1 2 3 15
1657
1658 #
1659 # Generic lock file processing -- make sure that the lock file doesn't
1660 # exist. If it does, it should name the build host and PID. If it
1661 # doesn't, then make sure we can create it. Clean up locks that are
1662 # known to be stale (assumes host name is unique among build systems
1663 # for the workspace).
1664 #
1665 function create_lock {
1666 lockf=$1
1667 lockvar=$2
1668
1669 ldir=`dirname $lockf`
1670 [ -d $ldir ] || newdir $ldir || exit 1
1671 eval $lockvar=$lockf
1672
1673 while ! staffer ln -s $hostname.$STAFFER.$$ $lockf 2> /dev/null; do
1674 basews=`basename $CODEMGR_WS`
1675 ls -l $lockf | nawk '{print $NF}' | IFS=. read host user pid
1676 if [ "$host" != "$hostname" ]; then
1677 echo "$MACH build of $basews apparently" \
1678 "already started by $user on $host as $pid."
1679 exit 1
1680 elif kill -s 0 $pid 2>/dev/null; then
1681 echo "$MACH build of $basews already started" \
1682 "by $user as $pid."
1683 exit 1
1684 else
1685 # stale lock; clear it out and try again
1686 rm -f $lockf
1687 fi
1688 done
1689 }
1690
1691 #
1692 # Return the list of interesting proto areas, depending on the current
1693 # options.
1694 #
1695 function allprotos {
1696 typeset roots="$ROOT"
1697
1698 if [[ "$F_FLAG" = n && "$MULTI_PROTO" = yes ]]; then
1699 roots="$roots $ROOT-nd"
1700 fi
1701
1702 if [[ $O_FLAG = y ]]; then
1703 roots="$roots $ROOT-closed"
1704 [ $MULTI_PROTO = yes ] && roots="$roots $ROOT-nd-closed"
1705 fi
1706
1707 echo $roots
1708 }
1709
1710 # Ensure no other instance of this script is running on this host.
1711 # LOCKNAME can be set in <env_file>, and is by default, but is not
1712 # required due to the use of $ATLOG below.
1713 if [ -n "$LOCKNAME" ]; then
1714 create_lock /tmp/$LOCKNAME "lockfile"
1715 fi
1716 #
1717 # Create from one, two, or three other locks:
1718 # $ATLOG/nightly.lock
1719 # - protects against multiple builds in same workspace
1720 # $PARENT_WS/usr/src/nightly.$MACH.lock
1721 # - protects against multiple 'u' copy-backs
1722 # $NIGHTLY_PARENT_ROOT/nightly.lock
1723 # - protects against multiple 'U' copy-backs
1724 #
1725 # Overriding ISUSER to 1 causes the lock to be created as root if the
1726 # script is run as root. The default is to create it as $STAFFER.
1727 ISUSER=1 create_lock $ATLOG/nightly.lock "atloglockfile"
1728 if [ "$u_FLAG" = "y" ]; then
1729 create_lock $PARENT_WS/usr/src/nightly.$MACH.lock "ulockfile"
1730 fi
1731 if [ "$U_FLAG" = "y" ]; then
1732 # NIGHTLY_PARENT_ROOT is written as root if script invoked as root.
1733 ISUSER=1 create_lock $NIGHTLY_PARENT_ROOT/nightly.lock "Ulockfile"
1734 fi
1735
1736 # Locks have been taken, so we're doing a build and we're committed to
1737 # the directories we may have created so far.
1738 newdirlist=
1739
1740 #
1741 # Create mail_msg_file
1742 #
1743 mail_msg_file="${TMPDIR}/mail_msg"
1744 touch $mail_msg_file
1745 build_time_file="${TMPDIR}/build_time"
1746 build_environ_file="${TMPDIR}/build_environ"
1747 touch $build_environ_file
1748 #
1749 # Move old LOGFILE aside
1750 # ATLOG directory already made by 'create_lock' above
1751 #
1752 if [ -f $LOGFILE ]; then
1753 mv -f $LOGFILE ${LOGFILE}-
1754 fi
1755 #
1756 # Build OsNet source
1757 #
1758 START_DATE=`date`
1759 SECONDS=0
1760 echo "\n==== Nightly $maketype build started: $START_DATE ====" \
1761 | tee -a $LOGFILE > $build_time_file
1762
1763 echo "\nBuild project: $build_project\nBuild taskid: $build_taskid" | \
1764 tee -a $mail_msg_file >> $LOGFILE
1765
1766 # make sure we log only to the nightly build file
1767 build_noise_file="${TMPDIR}/build_noise"
1768 exec </dev/null >$build_noise_file 2>&1
1769
1770 run_hook SYS_PRE_NIGHTLY
1771 run_hook PRE_NIGHTLY
1772
1773 echo "\n==== list of environment variables ====\n" >> $LOGFILE
1774 env >> $LOGFILE
1775
1776 echo "\n==== Nightly argument issues ====\n" | tee -a $mail_msg_file >> $LOGFILE
1777
1778 if [ "$P_FLAG" = "y" ]; then
1779 obsolete_build GPROF | tee -a $mail_msg_file >> $LOGFILE
1780 fi
1781
1782 if [ "$T_FLAG" = "y" ]; then
1783 obsolete_build TRACE | tee -a $mail_msg_file >> $LOGFILE
1784 fi
1785
1786 if is_source_build; then
1787 if [ "$i_FLAG" = "y" -o "$i_CMD_LINE_FLAG" = "y" ]; then
1788 echo "WARNING: the -S flags do not support incremental" \
1789 "builds; forcing clobber\n" | tee -a $mail_msg_file >> $LOGFILE
1790 i_FLAG=n
1791 i_CMD_LINE_FLAG=n
1792 fi
1793 if [ "$N_FLAG" = "n" ]; then
1794 echo "WARNING: the -S flags do not support protocmp;" \
1795 "protocmp disabled\n" | \
1796 tee -a $mail_msg_file >> $LOGFILE
1797 N_FLAG=y
1798 fi
1799 if [ "$l_FLAG" = "y" ]; then
1800 echo "WARNING: the -S flags do not support lint;" \
1801 "lint disabled\n" | tee -a $mail_msg_file >> $LOGFILE
1802 l_FLAG=n
1803 fi
1804 if [ "$C_FLAG" = "y" ]; then
1805 echo "WARNING: the -S flags do not support cstyle;" \
1806 "cstyle check disabled\n" | tee -a $mail_msg_file >> $LOGFILE
1807 C_FLAG=n
1808 fi
1809 else
1810 if [ "$N_FLAG" = "y" ]; then
1811 if [ "$p_FLAG" = "y" ]; then
1812 cat <<EOF | tee -a $mail_msg_file >> $LOGFILE
1813 WARNING: the p option (create packages) is set, but so is the N option (do
1814 not run protocmp); this is dangerous; you should unset the N option
1815 EOF
1816 else
1817 cat <<EOF | tee -a $mail_msg_file >> $LOGFILE
1818 Warning: the N option (do not run protocmp) is set; it probably shouldn't be
1819 EOF
1820 fi
1821 echo "" | tee -a $mail_msg_file >> $LOGFILE
1822 fi
1823 fi
1824
1825 if [ "$D_FLAG" = "n" -a "$l_FLAG" = "y" ]; then
1826 #
1827 # In the past we just complained but went ahead with the lint
1828 # pass, even though the proto area was built non-DEBUG. It's
1829 # unlikely that non-DEBUG headers will make a difference, but
1830 # rather than assuming it's a safe combination, force the user
1831 # to specify a DEBUG build.
1832 #
1833 echo "WARNING: DEBUG build not requested; disabling lint.\n" \
1834 | tee -a $mail_msg_file >> $LOGFILE
1835 l_FLAG=n
1836 fi
1837
1838 if [ "$f_FLAG" = "y" ]; then
1839 if [ "$i_FLAG" = "y" ]; then
1840 echo "WARNING: the -f flag cannot be used during incremental" \
1841 "builds; ignoring -f\n" | tee -a $mail_msg_file >> $LOGFILE
1842 f_FLAG=n
1843 fi
1844 if [ "${l_FLAG}${p_FLAG}" != "yy" ]; then
1845 echo "WARNING: the -f flag requires -l, and -p;" \
1846 "ignoring -f\n" | tee -a $mail_msg_file >> $LOGFILE
1847 f_FLAG=n
1848 fi
1849 fi
1850
1851 if [ "$w_FLAG" = "y" -a ! -d $ROOT ]; then
1852 echo "WARNING: -w specified, but $ROOT does not exist;" \
1853 "ignoring -w\n" | tee -a $mail_msg_file >> $LOGFILE
1854 w_FLAG=n
1855 fi
1856
1857 if [ "$t_FLAG" = "n" ]; then
1858 #
1859 # We're not doing a tools build, so make sure elfsign(1) is
1860 # new enough to safely sign non-crypto binaries. We test
1861 # debugging output from elfsign to detect the old version.
1862 #
1863 newelfsigntest=`SUNW_CRYPTO_DEBUG=stderr /usr/bin/elfsign verify \
1864 -e /usr/lib/security/pkcs11_softtoken.so.1 2>&1 \
1865 | egrep algorithmOID`
1866 if [ -z "$newelfsigntest" ]; then
1867 echo "WARNING: /usr/bin/elfsign out of date;" \
1868 "will only sign crypto modules\n" | \
1869 tee -a $mail_msg_file >> $LOGFILE
1870 export ELFSIGN_OBJECT=true
1871 elif [ "$VERIFY_ELFSIGN" = "y" ]; then
1872 echo "WARNING: VERIFY_ELFSIGN=y requires" \
1873 "the -t flag; ignoring VERIFY_ELFSIGN\n" | \
1874 tee -a $mail_msg_file >> $LOGFILE
1875 fi
1876 fi
1877
1878 [ "$O_FLAG" = y ] && MULTI_PROTO=yes
1879
1880 case $MULTI_PROTO in
1881 yes|no) ;;
1882 *)
1883 echo "WARNING: MULTI_PROTO is \"$MULTI_PROTO\"; " \
1884 "should be \"yes\" or \"no\"." | tee -a $mail_msg_file >> $LOGFILE
1885 echo "Setting MULTI_PROTO to \"no\".\n" | \
1886 tee -a $mail_msg_file >> $LOGFILE
1887 export MULTI_PROTO=no
1888 ;;
1889 esac
1890
1891 echo "\n==== Build version ====\n" | tee -a $mail_msg_file >> $LOGFILE
1892 echo $VERSION | tee -a $mail_msg_file >> $LOGFILE
1893
1894 # Save the current proto area if we're comparing against the last build
1895 if [ "$w_FLAG" = "y" -a -d "$ROOT" ]; then
1896 if [ -d "$ROOT.prev" ]; then
1897 rm -rf $ROOT.prev
1898 fi
1899 mv $ROOT $ROOT.prev
1900 fi
1901
1902 # Same for non-DEBUG proto area
1903 if [ "$w_FLAG" = "y" -a "$MULTI_PROTO" = yes -a -d "$ROOT-nd" ]; then
1904 if [ -d "$ROOT-nd.prev" ]; then
1905 rm -rf $ROOT-nd.prev
1906 fi
1907 mv $ROOT-nd $ROOT-nd.prev
1908 fi
1909
1910 #
1911 # Echo the SCM type of the parent workspace, this can't just be which_scm
1912 # as that does not know how to identify various network repositories.
1913 #
1914 function parent_wstype {
1915 typeset scm_type junk
1916
1917 CODEMGR_WS="$BRINGOVER_WS" "$WHICH_SCM" 2>/dev/null \
1918 | read scm_type junk
1919 if [[ -z "$scm_type" || "$scm_type" == unknown ]]; then
1920 # Probe BRINGOVER_WS to determine its type
1921 if [[ $BRINGOVER_WS == svn*://* ]]; then
1922 scm_type="subversion"
1923 elif [[ $BRINGOVER_WS == file://* ]] &&
1924 egrep -s "This is a Subversion repository" \
1925 ${BRINGOVER_WS#file://}/README.txt 2> /dev/null; then
1926 scm_type="subversion"
1927 elif [[ $BRINGOVER_WS == ssh://* ]]; then
1928 scm_type="mercurial"
1929 elif [[ $BRINGOVER_WS == http://* ]] && \
1930 wget -q -O- --save-headers "$BRINGOVER_WS/?cmd=heads" | \
1931 egrep -s "application/mercurial" 2> /dev/null; then
1932 scm_type="mercurial"
1933 elif svn info $BRINGOVER_WS > /dev/null 2>&1; then
1934 scm_type="subversion"
1935 else
1936 scm_type="none"
1937 fi
1938 fi
1939
1940 # fold both unsupported and unrecognized results into "none"
1941 case "$scm_type" in
1942 none|subversion|teamware|mercurial)
1943 ;;
1944 *) scm_type=none
1945 ;;
1946 esac
1947
1948 echo $scm_type
1949 }
1950
1951 # Echo the SCM types of $CODEMGR_WS and $BRINGOVER_WS
1952 function child_wstype {
1953 typeset scm_type junk
1954
1955 # Probe CODEMGR_WS to determine its type
1956 if [[ -d $CODEMGR_WS ]]; then
1957 $WHICH_SCM | read scm_type junk || exit 1
1958 fi
1959
1960 case "$scm_type" in
1961 none|subversion|git|teamware|mercurial)
1962 ;;
1963 *) scm_type=none
1964 ;;
1965 esac
1966
1967 echo $scm_type
1968 }
1969
1970 SCM_TYPE=$(child_wstype)
1971
1972 #
1973 # Decide whether to clobber
1974 #
1975 if [ "$i_FLAG" = "n" -a -d "$SRC" ]; then
1976 echo "\n==== Make clobber at `date` ====\n" >> $LOGFILE
1977
1978 cd $SRC
1979 # remove old clobber file
1980 rm -f $SRC/clobber.out
1981 rm -f $SRC/clobber-${MACH}.out
1982
1983 # Remove all .make.state* files, just in case we are restarting
1984 # the build after having interrupted a previous 'make clobber'.
1985 find . \( -name SCCS -o -name .hg -o -name .svn -o -name .git \
1986 -o -name 'interfaces.*' \) -prune \
1987 -o -name '.make.*' -print | xargs rm -f
1988
1989 $MAKE -ek clobber 2>&1 | tee -a $SRC/clobber-${MACH}.out >> $LOGFILE
1990 echo "\n==== Make clobber ERRORS ====\n" >> $mail_msg_file
1991 grep "$MAKE:" $SRC/clobber-${MACH}.out |
1992 egrep -v "Ignoring unknown host" \
1993 >> $mail_msg_file
1994
1995 if [[ "$t_FLAG" = "y" || "$O_FLAG" = "y" ]]; then
1996 echo "\n==== Make tools clobber at `date` ====\n" >> $LOGFILE
1997 cd ${TOOLS}
1998 rm -f ${TOOLS}/clobber-${MACH}.out
1999 $MAKE TOOLS_PROTO=$TOOLS_PROTO -ek clobber 2>&1 | \
2000 tee -a ${TOOLS}/clobber-${MACH}.out >> $LOGFILE
2001 echo "\n==== Make tools clobber ERRORS ====\n" \
2002 >> $mail_msg_file
2003 grep "$MAKE:" ${TOOLS}/clobber-${MACH}.out \
2004 >> $mail_msg_file
2005 rm -rf ${TOOLS_PROTO}
2006 mkdir -p ${TOOLS_PROTO}
2007 fi
2008
2009 typeset roots=$(allprotos)
2010 echo "\n\nClearing $roots" >> "$LOGFILE"
2011 rm -rf $roots
2012
2013 # Get back to a clean workspace as much as possible to catch
2014 # problems that only occur on fresh workspaces.
2015 # Remove all .make.state* files, libraries, and .o's that may
2016 # have been omitted from clobber. A couple of libraries are
2017 # under source code control, so leave them alone.
2018 # We should probably blow away temporary directories too.
2019 cd $SRC
2020 find $relsrcdirs \( -name SCCS -o -name .hg -o -name .svn \
2021 -o -name .git -o -name 'interfaces.*' \) -prune -o \
2022 \( -name '.make.*' -o -name 'lib*.a' -o -name 'lib*.so*' -o \
2023 -name '*.o' \) -print | \
2024 grep -v 'tools/ctf/dwarf/.*/libdwarf' | xargs rm -f
2025 else
2026 echo "\n==== No clobber at `date` ====\n" >> $LOGFILE
2027 fi
2028
2029 type bringover_teamware > /dev/null 2>&1 || function bringover_teamware {
2030 # sleep on the parent workspace's lock
2031 while egrep -s write $BRINGOVER_WS/Codemgr_wsdata/locks
2032 do
2033 sleep 120
2034 done
2035
2036 if [[ -z $BRINGOVER ]]; then
2037 BRINGOVER=$TEAMWARE/bin/bringover
2038 fi
2039
2040 staffer $BRINGOVER -c "nightly update" -p $BRINGOVER_WS \
2041 -w $CODEMGR_WS $BRINGOVER_FILES < /dev/null 2>&1 ||
2042 touch $TMPDIR/bringover_failed
2043
2044 staffer bringovercheck $CODEMGR_WS >$TMPDIR/bringovercheck.out 2>&1
2045 if [ -s $TMPDIR/bringovercheck.out ]; then
2046 echo "\n==== POST-BRINGOVER CLEANUP NOISE ====\n"
2047 cat $TMPDIR/bringovercheck.out
2048 fi
2049 }
2050
2051 type bringover_mercurial > /dev/null 2>&1 || function bringover_mercurial {
2052 typeset -x PATH=$PATH
2053
2054 # If the repository doesn't exist yet, then we want to populate it.
2055 if [[ ! -d $CODEMGR_WS/.hg ]]; then
2056 staffer hg init $CODEMGR_WS
2057 staffer echo "[paths]" > $CODEMGR_WS/.hg/hgrc
2058 staffer echo "default=$BRINGOVER_WS" >> $CODEMGR_WS/.hg/hgrc
2059 touch $TMPDIR/new_repository
2060 fi
2061
2062 typeset -x HGMERGE="/bin/false"
2063
2064 #
2065 # If the user has changes, regardless of whether those changes are
2066 # committed, and regardless of whether those changes conflict, then
2067 # we'll attempt to merge them either implicitly (uncommitted) or
2068 # explicitly (committed).
2069 #
2070 # These are the messages we'll use to help clarify mercurial output
2071 # in those cases.
2072 #
2073 typeset mergefailmsg="\
2074 ***\n\
2075 *** nightly was unable to automatically merge your changes. You should\n\
2076 *** redo the full merge manually, following the steps outlined by mercurial\n\
2077 *** above, then restart nightly.\n\
2078 ***\n"
2079 typeset mergepassmsg="\
2080 ***\n\
2081 *** nightly successfully merged your changes. This means that your working\n\
2082 *** directory has been updated, but those changes are not yet committed.\n\
2083 *** After nightly completes, you should validate the results of the merge,\n\
2084 *** then use hg commit manually.\n\
2085 ***\n"
2086
2087 #
2088 # For each repository in turn:
2089 #
2090 # 1. Do the pull. If this fails, dump the output and bail out.
2091 #
2092 # 2. If the pull resulted in an extra head, do an explicit merge.
2093 # If this fails, dump the output and bail out.
2094 #
2095 # Because we can't rely on Mercurial to exit with a failure code
2096 # when a merge fails (Mercurial issue #186), we must grep the
2097 # output of pull/merge to check for attempted and/or failed merges.
2098 #
2099 # 3. If a merge failed, set the message and fail the bringover.
2100 #
2101 # 4. Otherwise, if a merge succeeded, set the message
2102 #
2103 # 5. Dump the output, and any message from step 3 or 4.
2104 #
2105
2106 typeset HG_SOURCE=$BRINGOVER_WS
2107 if [ ! -f $TMPDIR/new_repository ]; then
2108 HG_SOURCE=$TMPDIR/open_bundle.hg
2109 staffer hg --cwd $CODEMGR_WS incoming --bundle $HG_SOURCE \
2110 -v $BRINGOVER_WS > $TMPDIR/incoming_open.out
2111
2112 #
2113 # If there are no incoming changesets, then incoming will
2114 # fail, and there will be no bundle file. Reset the source,
2115 # to allow the remaining logic to complete with no false
2116 # negatives. (Unlike incoming, pull will return success
2117 # for the no-change case.)
2118 #
2119 if (( $? != 0 )); then
2120 HG_SOURCE=$BRINGOVER_WS
2121 fi
2122 fi
2123
2124 staffer hg --cwd $CODEMGR_WS pull -u $HG_SOURCE \
2125 > $TMPDIR/pull_open.out 2>&1
2126 if (( $? != 0 )); then
2127 printf "%s: pull failed as follows:\n\n" "$CODEMGR_WS"
2128 cat $TMPDIR/pull_open.out
2129 if grep "^merging.*failed" $TMPDIR/pull_open.out > /dev/null 2>&1; then
2130 printf "$mergefailmsg"
2131 fi
2132 touch $TMPDIR/bringover_failed
2133 return
2134 fi
2135
2136 if grep "not updating" $TMPDIR/pull_open.out > /dev/null 2>&1; then
2137 staffer hg --cwd $CODEMGR_WS merge \
2138 >> $TMPDIR/pull_open.out 2>&1
2139 if (( $? != 0 )); then
2140 printf "%s: merge failed as follows:\n\n" \
2141 "$CODEMGR_WS"
2142 cat $TMPDIR/pull_open.out
2143 if grep "^merging.*failed" $TMPDIR/pull_open.out \
2144 > /dev/null 2>&1; then
2145 printf "$mergefailmsg"
2146 fi
2147 touch $TMPDIR/bringover_failed
2148 return
2149 fi
2150 fi
2151
2152 printf "updated %s with the following results:\n" "$CODEMGR_WS"
2153 cat $TMPDIR/pull_open.out
2154 if grep "^merging" $TMPDIR/pull_open.out >/dev/null 2>&1; then
2155 printf "$mergepassmsg"
2156 fi
2157 printf "\n"
2158
2159 #
2160 # Per-changeset output is neither useful nor manageable for a
2161 # newly-created repository.
2162 #
2163 if [ -f $TMPDIR/new_repository ]; then
2164 return
2165 fi
2166
2167 printf "\nadded the following changesets to open repository:\n"
2168 cat $TMPDIR/incoming_open.out
2169
2170 #
2171 # The closed repository could have been newly created, even though
2172 # the open one previously existed...
2173 #
2174 if [ -f $TMPDIR/new_closed ]; then
2175 return
2176 fi
2177
2178 if [ -f $TMPDIR/incoming_closed.out ]; then
2179 printf "\nadded the following changesets to closed repository:\n"
2180 cat $TMPDIR/incoming_closed.out
2181 fi
2182 }
2183
2184 type bringover_subversion > /dev/null 2>&1 || function bringover_subversion {
2185 typeset -x PATH=$PATH
2186
2187 if [[ ! -d $CODEMGR_WS/.svn ]]; then
2188 staffer svn checkout $BRINGOVER_WS $CODEMGR_WS ||
2189 touch $TMPDIR/bringover_failed
2190 else
2191 typeset root
2192 root=$(staffer svn info $CODEMGR_WS |
2193 nawk '/^Repository Root:/ {print $NF}')
2194 if [[ $root != $BRINGOVER_WS ]]; then
2195 # We fail here because there's no way to update
2196 # from a named repo.
2197 cat <<-EOF
2198 \$BRINGOVER_WS doesn't match repository root:
2199 \$BRINGOVER_WS: $BRINGOVER_WS
2200 Repository root: $root
2201 EOF
2202 touch $TMPDIR/bringover_failed
2203 else
2204 # If a conflict happens, svn still exits 0.
2205 staffer svn update $CODEMGR_WS | tee $TMPDIR/pull.out ||
2206 touch $TMPDIR/bringover_failed
2207 if grep "^C" $TMPDIR/pull.out > /dev/null 2>&1; then
2208 touch $TMPDIR/bringover_failed
2209 fi
2210 fi
2211 fi
2212 }
2213
2214 type bringover_none > /dev/null 2>&1 || function bringover_none {
2215 echo "Couldn't figure out what kind of SCM to use for $BRINGOVER_WS."
2216 touch $TMPDIR/bringover_failed
2217 }
2218
2219 #
2220 # Decide whether to bringover to the codemgr workspace
2221 #
2222 if [ "$n_FLAG" = "n" ]; then
2223 PARENT_SCM_TYPE=$(parent_wstype)
2224
2225 if [[ $SCM_TYPE != none && $SCM_TYPE != $PARENT_SCM_TYPE ]]; then
2226 echo "cannot bringover from $PARENT_SCM_TYPE to $SCM_TYPE, " \
2227 "quitting at `date`." | tee -a $mail_msg_file >> $LOGFILE
2228 exit 1
2229 fi
2230
2231 run_hook PRE_BRINGOVER
2232
2233 echo "\n==== bringover to $CODEMGR_WS at `date` ====\n" >> $LOGFILE
2234 echo "\n==== BRINGOVER LOG ====\n" >> $mail_msg_file
2235
2236 eval "bringover_${PARENT_SCM_TYPE}" 2>&1 |
2237 tee -a $mail_msg_file >> $LOGFILE
2238
2239 if [ -f $TMPDIR/bringover_failed ]; then
2240 rm -f $TMPDIR/bringover_failed
2241 build_ok=n
2242 echo "trouble with bringover, quitting at `date`." |
2243 tee -a $mail_msg_file >> $LOGFILE
2244 exit 1
2245 fi
2246
2247 #
2248 # It's possible that we used the bringover above to create
2249 # $CODEMGR_WS. If so, then SCM_TYPE was previously "none,"
2250 # but should now be the same as $BRINGOVER_WS.
2251 #
2252 [[ $SCM_TYPE = none ]] && SCM_TYPE=$PARENT_SCM_TYPE
2253
2254 run_hook POST_BRINGOVER
2255
2256 check_closed_tree
2257
2258 else
2259 echo "\n==== No bringover to $CODEMGR_WS ====\n" >> $LOGFILE
2260 fi
2261
2262 if [[ "$O_FLAG" = y ]]; then
2263 build_ok=n
2264 echo "OpenSolaris binary deliverables need usr/closed." \
2265 | tee -a "$mail_msg_file" >> $LOGFILE
2266 exit 1
2267 fi
2268
2269 # Safeguards
2270 [[ -v CODEMGR_WS ]] || fatal_error "Error: Variable CODEMGR_WS not set."
2271 [[ -d "${CODEMGR_WS}" ]] || fatal_error "Error: ${CODEMGR_WS} is not a directory."
2272 [[ -f "${CODEMGR_WS}/usr/src/Makefile" ]] || fatal_error "Error: ${CODEMGR_WS}/usr/src/Makefile not found."
2273
2274 echo "\n==== Build environment ====\n" | tee -a $build_environ_file >> $LOGFILE
2275
2276 # System
2277 whence uname | tee -a $build_environ_file >> $LOGFILE
2278 uname -a 2>&1 | tee -a $build_environ_file >> $LOGFILE
2279 echo | tee -a $build_environ_file >> $LOGFILE
2280
2281 # make
2282 whence $MAKE | tee -a $build_environ_file >> $LOGFILE
2283 $MAKE -v | tee -a $build_environ_file >> $LOGFILE
2284 echo "number of concurrent jobs = $DMAKE_MAX_JOBS" |
2285 tee -a $build_environ_file >> $LOGFILE
2286
2287 #
2288 # Report the compiler versions.
2289 #
2290
2291 if [[ ! -f $SRC/Makefile ]]; then
2292 build_ok=n
2293 echo "\nUnable to find \"Makefile\" in $SRC." | \
2294 tee -a $build_environ_file >> $LOGFILE
2295 exit 1
2296 fi
2297
2298 ( cd $SRC
2299 for target in cc-version cc64-version java-version; do
2300 echo
2301 #
2302 # Put statefile somewhere we know we can write to rather than trip
2303 # over a read-only $srcroot.
2304 #
2305 rm -f $TMPDIR/make-state
2306 export SRC
2307 if $MAKE -K $TMPDIR/make-state -e $target 2>/dev/null; then
2308 continue
2309 fi
2310 touch $TMPDIR/nocompiler
2311 done
2312 echo
2313 ) | tee -a $build_environ_file >> $LOGFILE
2314
2315 if [ -f $TMPDIR/nocompiler ]; then
2316 rm -f $TMPDIR/nocompiler
2317 build_ok=n
2318 echo "Aborting due to missing compiler." |
2319 tee -a $build_environ_file >> $LOGFILE
2320 exit 1
2321 fi
2322
2323 # as
2324 whence as | tee -a $build_environ_file >> $LOGFILE
2325 as -V 2>&1 | head -1 | tee -a $build_environ_file >> $LOGFILE
2326 echo | tee -a $build_environ_file >> $LOGFILE
2327
2328 # Check that we're running a capable link-editor
2329 whence ld | tee -a $build_environ_file >> $LOGFILE
2330 LDVER=`ld -V 2>&1`
2331 echo $LDVER | tee -a $build_environ_file >> $LOGFILE
2332 LDVER=`echo $LDVER | sed -e "s/.*-1\.\([0-9]*\).*/\1/"`
2333 if [ `expr $LDVER \< 422` -eq 1 ]; then
2334 echo "The link-editor needs to be at version 422 or higher to build" | \
2335 tee -a $build_environ_file >> $LOGFILE
2336 echo "the latest stuff. Hope your build works." | \
2337 tee -a $build_environ_file >> $LOGFILE
2338 fi
2339
2340 #
2341 # Build and use the workspace's tools if requested
2342 #
2343 if [[ "$t_FLAG" = "y" || "$O_FLAG" = y ]]; then
2344 set_non_debug_build_flags
2345
2346 build_tools ${TOOLS_PROTO}
2347 if [[ $? != 0 && "$t_FLAG" = y ]]; then
2348 use_tools $TOOLS_PROTO
2349 fi
2350 fi
2351
2352 #
2353 # copy ihv proto area in addition to the build itself
2354 #
2355 if [ "$X_FLAG" = "y" ]; then
2356 copy_ihv_proto
2357 fi
2358
2359 if [ "$i_FLAG" = "y" -a "$SH_FLAG" = "y" ]; then
2360 echo "\n==== NOT Building base OS-Net source ====\n" | \
2361 tee -a $LOGFILE >> $mail_msg_file
2362 else
2363 # timestamp the start of the normal build; the findunref tool uses it.
2364 touch $SRC/.build.tstamp
2365
2366 normal_build
2367 fi
2368
2369 #
2370 # Generate the THIRDPARTYLICENSE files if needed. This is done after
2371 # the build, so that dynamically-created license files are there.
2372 # It's done before findunref to help identify license files that need
2373 # to be added to tools/opensolaris/license-list.
2374 #
2375 if [ "$O_FLAG" = y -a "$build_ok" = y ]; then
2376 echo "\n==== Generating THIRDPARTYLICENSE files ====\n" |
2377 tee -a "$mail_msg_file" >> "$LOGFILE"
2378
2379 if [ -d $ROOT/licenses/usr ]; then
2380 ( cd $ROOT/licenses ; \
2381 mktpl $SRC/pkg/license-list ) >> "$LOGFILE" 2>&1
2382 if (( $? != 0 )) ; then
2383 echo "Couldn't create THIRDPARTYLICENSE files" |
2384 tee -a "$mail_msg_file" >> "$LOGFILE"
2385 fi
2386 else
2387 echo "No licenses found under $ROOT/licenses" |
2388 tee -a "$mail_msg_file" >> "$LOGFILE"
2389 fi
2390 fi
2391
2392 ORIG_SRC=$SRC
2393 BINARCHIVE=${CODEMGR_WS}/bin-${MACH}.cpio.Z
2394
2395 if [ "$SE_FLAG" = "y" -o "$SD_FLAG" = "y" -o "$SH_FLAG" = "y" ]; then
2396 save_binaries
2397 fi
2398
2399
2400 # EXPORT_SRC comes after CRYPT_SRC since a domestic build will need
2401 # $SRC pointing to the export_source usr/src.
2402
2403 if [ "$SE_FLAG" = "y" -o "$SD_FLAG" = "y" -o "$SH_FLAG" = "y" ]; then
2404 if [ "$SD_FLAG" = "y" -a $build_ok = y ]; then
2405 set_up_source_build ${CODEMGR_WS} ${CRYPT_SRC} CRYPT_SRC
2406 fi
2407
2408 if [ $build_ok = y ]; then
2409 set_up_source_build ${CODEMGR_WS} ${EXPORT_SRC} EXPORT_SRC
2410 fi
2411 fi
2412
2413 if [ "$SD_FLAG" = "y" -a $build_ok = y ]; then
2414 # drop the crypt files in place.
2415 cd ${EXPORT_SRC}
2416 echo "\nextracting crypt_files.cpio.Z onto export_source.\n" \
2417 >> ${LOGFILE}
2418 zcat ${CODEMGR_WS}/crypt_files.cpio.Z | \
2419 cpio -idmucvB 2>/dev/null >> ${LOGFILE}
2420 if [ "$?" = "0" ]; then
2421 echo "\n==== DOMESTIC extraction succeeded ====\n" \
2422 >> $mail_msg_file
2423 else
2424 echo "\n==== DOMESTIC extraction failed ====\n" \
2425 >> $mail_msg_file
2426 fi
2427
2428 fi
2429
2430 if [ "$SO_FLAG" = "y" -a "$build_ok" = y ]; then
2431 #
2432 # Copy the open sources into their own tree.
2433 # If copy_source fails, it will have already generated an
2434 # error message and set build_ok=n, so we don't need to worry
2435 # about that here.
2436 #
2437 copy_source $CODEMGR_WS $OPEN_SRCDIR OPEN_SOURCE usr/src
2438 fi
2439
2440 if [ "$SO_FLAG" = "y" -a "$build_ok" = y ]; then
2441 SRC=$OPEN_SRCDIR/usr/src
2442 fi
2443
2444 if is_source_build && [ $build_ok = y ] ; then
2445 # remove proto area(s) here, since we don't clobber
2446 rm -rf `allprotos`
2447 if [ "$t_FLAG" = "y" ]; then
2448 set_non_debug_build_flags
2449 ORIG_TOOLS=$TOOLS
2450 #
2451 # SRC was set earlier to point to the source build
2452 # source tree (e.g., $EXPORT_SRC).
2453 #
2454 TOOLS=${SRC}/tools
2455 TOOLS_PROTO=${TOOLS}/${TOOLS_PROTO_REL}; export TOOLS_PROTO
2456 build_tools ${TOOLS_PROTO}
2457 if [[ $? != 0 ]]; then
2458 use_tools ${TOOLS_PROTO}
2459 fi
2460 fi
2461
2462 normal_build
2463 fi
2464
2465 #
2466 # There are several checks that need to look at the proto area, but
2467 # they only need to look at one, and they don't care whether it's
2468 # DEBUG or non-DEBUG.
2469 #
2470 if [[ "$MULTI_PROTO" = yes && "$D_FLAG" = n ]]; then
2471 checkroot=$ROOT-nd
2472 else
2473 checkroot=$ROOT
2474 fi
2475
2476 if [ "$build_ok" = "y" ]; then
2477 echo "\n==== Creating protolist system file at `date` ====" \
2478 >> $LOGFILE
2479 protolist $checkroot > $ATLOG/proto_list_${MACH}
2480 echo "==== protolist system file created at `date` ====\n" \
2481 >> $LOGFILE
2482
2483 if [ "$N_FLAG" != "y" ]; then
2484
2485 E1=
2486 f1=
2487 if [ -d "$SRC/pkgdefs" ]; then
2488 f1="$SRC/pkgdefs/etc/exception_list_$MACH"
2489 if [ "$X_FLAG" = "y" ]; then
2490 f1="$f1 $IA32_IHV_WS/usr/src/pkgdefs/etc/exception_list_$MACH"
2491 fi
2492 fi
2493
2494 for f in $f1; do
2495 if [ -f "$f" ]; then
2496 E1="$E1 -e $f"
2497 fi
2498 done
2499
2500 E2=
2501 f2=
2502 if [ -d "$SRC/pkg" ]; then
2503 f2="$f2 exceptions/packaging"
2504 fi
2505
2506 for f in $f2; do
2507 if [ -f "$f" ]; then
2508 E2="$E2 -e $f"
2509 fi
2510 done
2511
2512 if [ -f "$REF_PROTO_LIST" ]; then
2513 #
2514 # For builds that copy the IHV proto area (-X), add the
2515 # IHV proto list to the reference list if the reference
2516 # was built without -X.
2517 #
2518 # For builds that don't copy the IHV proto area, add the
2519 # IHV proto list to the build's proto list if the
2520 # reference was built with -X.
2521 #
2522 # Use the presence of the first file entry of the cached
2523 # IHV proto list in the reference list to determine
2524 # whether it was built with -X or not.
2525 #
2526 IHV_REF_PROTO_LIST=$SRC/pkg/proto_list_ihv_$MACH
2527 grepfor=$(nawk '$1 == "f" { print $2; exit }' \
2528 $IHV_REF_PROTO_LIST 2> /dev/null)
2529 if [ $? = 0 -a -n "$grepfor" ]; then
2530 if [ "$X_FLAG" = "y" ]; then
2531 grep -w "$grepfor" \
2532 $REF_PROTO_LIST > /dev/null
2533 if [ ! "$?" = "0" ]; then
2534 REF_IHV_PROTO="-d $IHV_REF_PROTO_LIST"
2535 fi
2536 else
2537 grep -w "$grepfor" \
2538 $REF_PROTO_LIST > /dev/null
2539 if [ "$?" = "0" ]; then
2540 IHV_PROTO_LIST="$IHV_REF_PROTO_LIST"
2541 fi
2542 fi
2543 fi
2544 fi
2545 fi
2546
2547 if [ "$N_FLAG" != "y" -a -f $SRC/pkgdefs/Makefile ]; then
2548 echo "\n==== Impact on SVr4 packages ====\n" >> $mail_msg_file
2549 #
2550 # Compare the build's proto list with current package
2551 # definitions to audit the quality of package
2552 # definitions and makefile install targets. Use the
2553 # current exception list.
2554 #
2555 PKGDEFS_LIST=""
2556 for d in $abssrcdirs; do
2557 if [ -d $d/pkgdefs ]; then
2558 PKGDEFS_LIST="$PKGDEFS_LIST -d $d/pkgdefs"
2559 fi
2560 done
2561 if [ "$X_FLAG" = "y" -a \
2562 -d $IA32_IHV_WS/usr/src/pkgdefs ]; then
2563 PKGDEFS_LIST="$PKGDEFS_LIST -d $IA32_IHV_WS/usr/src/pkgdefs"
2564 fi
2565 $PROTOCMPTERSE \
2566 "Files missing from the proto area:" \
2567 "Files missing from packages:" \
2568 "Inconsistencies between pkgdefs and proto area:" \
2569 ${E1} \
2570 ${PKGDEFS_LIST} \
2571 $ATLOG/proto_list_${MACH} \
2572 >> $mail_msg_file
2573 fi
2574
2575 if [ "$N_FLAG" != "y" -a -d $SRC/pkg ]; then
2576 echo "\n==== Validating manifests against proto area ====\n" \
2577 >> $mail_msg_file
2578 ( cd $SRC/pkg ; $MAKE -e protocmp ROOT="$checkroot" ) \
2579 >> $mail_msg_file
2580
2581 fi
2582
2583 if [ "$N_FLAG" != "y" -a -f "$REF_PROTO_LIST" ]; then
2584 echo "\n==== Impact on proto area ====\n" >> $mail_msg_file
2585 if [ -n "$E2" ]; then
2586 ELIST=$E2
2587 else
2588 ELIST=$E1
2589 fi
2590 $PROTOCMPTERSE \
2591 "Files in yesterday's proto area, but not today's:" \
2592 "Files in today's proto area, but not yesterday's:" \
2593 "Files that changed between yesterday and today:" \
2594 ${ELIST} \
2595 -d $REF_PROTO_LIST \
2596 $REF_IHV_PROTO \
2597 $ATLOG/proto_list_${MACH} \
2598 $IHV_PROTO_LIST \
2599 >> $mail_msg_file
2600 fi
2601 fi
2602
2603 if [ "$u_FLAG" = "y" -a "$build_ok" = "y" ]; then
2604 staffer cp $ATLOG/proto_list_${MACH} \
2605 $PARENT_WS/usr/src/proto_list_${MACH}
2606 fi
2607
2608 # Update parent proto area if necessary. This is done now
2609 # so that the proto area has either DEBUG or non-DEBUG kernels.
2610 # Note that this clears out the lock file, so we can dispense with
2611 # the variable now.
2612 if [ "$U_FLAG" = "y" -a "$build_ok" = "y" ]; then
2613 echo "\n==== Copying proto area to $NIGHTLY_PARENT_ROOT ====\n" | \
2614 tee -a $LOGFILE >> $mail_msg_file
2615 rm -rf $NIGHTLY_PARENT_ROOT/*
2616 unset Ulockfile
2617 mkdir -p $NIGHTLY_PARENT_ROOT
2618 if [[ "$MULTI_PROTO" = no || "$D_FLAG" = y ]]; then
2619 ( cd $ROOT; tar cf - . |
2620 ( cd $NIGHTLY_PARENT_ROOT; umask 0; tar xpf - ) ) 2>&1 |
2621 tee -a $mail_msg_file >> $LOGFILE
2622 fi
2623 if [[ "$MULTI_PROTO" = yes && "$F_FLAG" = n ]]; then
2624 rm -rf $NIGHTLY_PARENT_ROOT-nd/*
2625 mkdir -p $NIGHTLY_PARENT_ROOT-nd
2626 cd $ROOT-nd
2627 ( tar cf - . |
2628 ( cd $NIGHTLY_PARENT_ROOT-nd; umask 0; tar xpf - ) ) 2>&1 |
2629 tee -a $mail_msg_file >> $LOGFILE
2630 fi
2631 if [ -n "${NIGHTLY_PARENT_TOOLS_ROOT}" ]; then
2632 echo "\n==== Copying tools proto area to $NIGHTLY_PARENT_TOOLS_ROOT ====\n" | \
2633 tee -a $LOGFILE >> $mail_msg_file
2634 rm -rf $NIGHTLY_PARENT_TOOLS_ROOT/*
2635 mkdir -p $NIGHTLY_PARENT_TOOLS_ROOT
2636 if [[ "$MULTI_PROTO" = no || "$D_FLAG" = y ]]; then
2637 ( cd $TOOLS_PROTO; tar cf - . |
2638 ( cd $NIGHTLY_PARENT_TOOLS_ROOT;
2639 umask 0; tar xpf - ) ) 2>&1 |
2640 tee -a $mail_msg_file >> $LOGFILE
2641 fi
2642 fi
2643 fi
2644
2645 #
2646 # ELF verification: ABI (-A) and runtime (-r) checks
2647 #
2648 if [[ ($build_ok = y) && ( ($A_FLAG = y) || ($r_FLAG = y) ) ]]; then
2649 # Directory ELF-data.$MACH holds the files produced by these tests.
2650 elf_ddir=$SRC/ELF-data.$MACH
2651
2652 # If there is a previous ELF-data backup directory, remove it. Then,
2653 # rotate current ELF-data directory into its place and create a new
2654 # empty directory
2655 rm -rf $elf_ddir.ref
2656 if [[ -d $elf_ddir ]]; then
2657 mv $elf_ddir $elf_ddir.ref
2658 fi
2659 mkdir -p $elf_ddir
2660
2661 # Call find_elf to produce a list of the ELF objects in the proto area.
2662 # This list is passed to check_rtime and interface_check, preventing
2663 # them from separately calling find_elf to do the same work twice.
2664 find_elf -fr $checkroot > $elf_ddir/object_list
2665
2666 if [[ $A_FLAG = y ]]; then
2667 echo "\n==== Check versioning and ABI information ====\n" | \
2668 tee -a $LOGFILE >> $mail_msg_file
2669
2670 # Produce interface description for the proto. Report errors.
2671 interface_check -o -w $elf_ddir -f object_list \
2672 -i interface -E interface.err
2673 if [[ -s $elf_ddir/interface.err ]]; then
2674 tee -a $LOGFILE < $elf_ddir/interface.err \
2675 >> $mail_msg_file
2676 fi
2677
2678 # If ELF_DATA_BASELINE_DIR is defined, compare the new interface
2679 # description file to that from the baseline gate. Issue a
2680 # warning if the baseline is not present, and keep going.
2681 if [[ "$ELF_DATA_BASELINE_DIR" != '' ]]; then
2682 base_ifile="$ELF_DATA_BASELINE_DIR/interface"
2683
2684 echo "\n==== Compare versioning and ABI information" \
2685 "to baseline ====\n" | \
2686 tee -a $LOGFILE >> $mail_msg_file
2687 echo "Baseline: $base_ifile\n" >> $LOGFILE
2688
2689 if [[ -f $base_ifile ]]; then
2690 interface_cmp -d -o $base_ifile \
2691 $elf_ddir/interface > $elf_ddir/interface.cmp
2692 if [[ -s $elf_ddir/interface.cmp ]]; then
2693 echo | tee -a $LOGFILE >> $mail_msg_file
2694 tee -a $LOGFILE < \
2695 $elf_ddir/interface.cmp \
2696 >> $mail_msg_file
2697 fi
2698 else
2699 echo "baseline not available. comparison" \
2700 "skipped" | \
2701 tee -a $LOGFILE >> $mail_msg_file
2702 fi
2703
2704 fi
2705 fi
2706
2707 if [[ $r_FLAG = y ]]; then
2708 echo "\n==== Check ELF runtime attributes ====\n" | \
2709 tee -a $LOGFILE >> $mail_msg_file
2710
2711 # If we're doing a DEBUG build the proto area will be left
2712 # with debuggable objects, thus don't assert -s.
2713 if [[ $D_FLAG = y ]]; then
2714 rtime_sflag=""
2715 else
2716 rtime_sflag="-s"
2717 fi
2718 check_rtime -i -m -v $rtime_sflag -o -w $elf_ddir \
2719 -D object_list -f object_list -E runtime.err \
2720 -I runtime.attr.raw
2721
2722 # check_rtime -I output needs to be sorted in order to
2723 # compare it to that from previous builds.
2724 sort $elf_ddir/runtime.attr.raw > $elf_ddir/runtime.attr
2725 rm $elf_ddir/runtime.attr.raw
2726
2727 # Report errors
2728 if [[ -s $elf_ddir/runtime.err ]]; then
2729 tee -a $LOGFILE < $elf_ddir/runtime.err \
2730 >> $mail_msg_file
2731 fi
2732
2733 # If there is an ELF-data directory from a previous build,
2734 # then diff the attr files. These files contain information
2735 # about dependencies, versioning, and runpaths. There is some
2736 # overlap with the ABI checking done above, but this also
2737 # flushes out non-ABI interface differences along with the
2738 # other information.
2739 echo "\n==== Diff ELF runtime attributes" \
2740 "(since last build) ====\n" | \
2741 tee -a $LOGFILE >> $mail_msg_file >> $mail_msg_file
2742
2743 if [[ -f $elf_ddir.ref/runtime.attr ]]; then
2744 diff $elf_ddir.ref/runtime.attr \
2745 $elf_ddir/runtime.attr \
2746 >> $mail_msg_file
2747 fi
2748 fi
2749
2750 # If -u set, copy contents of ELF-data.$MACH to the parent workspace.
2751 if [[ "$u_FLAG" = "y" ]]; then
2752 p_elf_ddir=$PARENT_WS/usr/src/ELF-data.$MACH
2753
2754 # If parent lacks the ELF-data.$MACH directory, create it
2755 if [[ ! -d $p_elf_ddir ]]; then
2756 staffer mkdir -p $p_elf_ddir
2757 fi
2758
2759 # These files are used asynchronously by other builds for ABI
2760 # verification, as above for the -A option. As such, we require
2761 # the file replacement to be atomic. Copy the data to a temp
2762 # file in the same filesystem and then rename into place.
2763 (
2764 cd $elf_ddir
2765 for elf_dfile in *; do
2766 staffer cp $elf_dfile \
2767 ${p_elf_ddir}/${elf_dfile}.new
2768 staffer mv -f ${p_elf_ddir}/${elf_dfile}.new \
2769 ${p_elf_ddir}/${elf_dfile}
2770 done
2771 )
2772 fi
2773 fi
2774
2775 # DEBUG lint of kernel begins
2776
2777 if [ "$i_CMD_LINE_FLAG" = "n" -a "$l_FLAG" = "y" ]; then
2778 if [ "$LINTDIRS" = "" ]; then
2779 # LINTDIRS="$SRC/uts y $SRC/stand y $SRC/psm y"
2780 LINTDIRS="$SRC y"
2781 fi
2782 set $LINTDIRS
2783 while [ $# -gt 0 ]; do
2784 dolint $1 $2; shift; shift
2785 done
2786 else
2787 echo "\n==== No '$MAKE lint' ====\n" >> $LOGFILE
2788 fi
2789
2790 # "make check" begins
2791
2792 if [ "$i_CMD_LINE_FLAG" = "n" -a "$C_FLAG" = "y" ]; then
2793 # remove old check.out
2794 rm -f $SRC/check.out
2795
2796 rm -f $SRC/check-${MACH}.out
2797 cd $SRC
2798 $MAKE -ek check ROOT="$checkroot" 2>&1 | tee -a $SRC/check-${MACH}.out \
2799 >> $LOGFILE
2800 echo "\n==== cstyle/hdrchk errors ====\n" >> $mail_msg_file
2801
2802 grep ":" $SRC/check-${MACH}.out |
2803 egrep -v "Ignoring unknown host" | \
2804 sort | uniq >> $mail_msg_file
2805 else
2806 echo "\n==== No '$MAKE check' ====\n" >> $LOGFILE
2807 fi
2808
2809 echo "\n==== Find core files ====\n" | \
2810 tee -a $LOGFILE >> $mail_msg_file
2811
2812 find $abssrcdirs -name core -a -type f -exec file {} \; | \
2813 tee -a $LOGFILE >> $mail_msg_file
2814
2815 if [ "$f_FLAG" = "y" -a "$build_ok" = "y" ]; then
2816 echo "\n==== Diff unreferenced files (since last build) ====\n" \
2817 | tee -a $LOGFILE >>$mail_msg_file
2818 rm -f $SRC/unref-${MACH}.ref
2819 if [ -f $SRC/unref-${MACH}.out ]; then
2820 mv $SRC/unref-${MACH}.out $SRC/unref-${MACH}.ref
2821 fi
2822
2823 findunref -S $SCM_TYPE -t $SRC/.build.tstamp -s usr $CODEMGR_WS \
2824 ${TOOLS}/findunref/exception_list 2>> $mail_msg_file | \
2825 sort > $SRC/unref-${MACH}.out
2826
2827 if [ ! -f $SRC/unref-${MACH}.ref ]; then
2828 cp $SRC/unref-${MACH}.out $SRC/unref-${MACH}.ref
2829 fi
2830
2831 diff $SRC/unref-${MACH}.ref $SRC/unref-${MACH}.out >>$mail_msg_file
2832 fi
2833
2834 #
2835 # Generate the OpenSolaris deliverables if requested. Some of these
2836 # steps need to come after findunref and are commented below.
2837 #
2838
2839 # If we are doing an OpenSolaris _source_ build (-S O) then we do
2840 # not have usr/closed available to us to generate closedbins from,
2841 # so skip this part.
2842 if [ "$SO_FLAG" = n -a "$O_FLAG" = y -a "$build_ok" = y ]; then
2843 echo "\n==== Generating OpenSolaris tarballs ====\n" | \
2844 tee -a $mail_msg_file >> $LOGFILE
2845
2846 cd $CODEMGR_WS
2847
2848 #
2849 # This step grovels through the package manifests, so it
2850 # must come after findunref.
2851 #
2852 # We assume no DEBUG vs non-DEBUG package content variation
2853 # here; if that changes, then the "make all" in $SRC/pkg will
2854 # need to be moved into the conditionals and repeated for each
2855 # different build.
2856 #
2857 echo "Generating closed binaries tarball(s)..." >> $LOGFILE
2858 closed_basename=on-closed-bins
2859 if [ "$D_FLAG" = y ]; then
2860 bindrop "$closed_basename" >>"$LOGFILE" 2>&1
2861 if (( $? != 0 )) ; then
2862 echo "Couldn't create DEBUG closed binaries." |
2863 tee -a $mail_msg_file >> $LOGFILE
2864 build_ok=n
2865 fi
2866 fi
2867 if [ "$F_FLAG" = n ]; then
2868 bindrop -n "$closed_basename-nd" >>"$LOGFILE" 2>&1
2869 if (( $? != 0 )) ; then
2870 echo "Couldn't create non-DEBUG closed binaries." |
2871 tee -a $mail_msg_file >> $LOGFILE
2872 build_ok=n
2873 fi
2874 fi
2875
2876 echo "Generating README.opensolaris..." >> $LOGFILE
2877 cat $SRC/tools/opensolaris/README.opensolaris.tmpl | \
2878 mkreadme_osol $CODEMGR_WS/README.opensolaris >> $LOGFILE 2>&1
2879 if (( $? != 0 )) ; then
2880 echo "Couldn't create README.opensolaris." |
2881 tee -a $mail_msg_file >> $LOGFILE
2882 build_ok=n
2883 fi
2884 fi
2885
2886 # Verify that the usual lists of files, such as exception lists,
2887 # contain only valid references to files. If the build has failed,
2888 # then don't check the proto area.
2889 CHECK_PATHS=${CHECK_PATHS:-y}
2890 if [ "$CHECK_PATHS" = y -a "$N_FLAG" != y ]; then
2891 echo "\n==== Check lists of files ====\n" | tee -a $LOGFILE \
2892 >>$mail_msg_file
2893 arg=-b
2894 [ "$build_ok" = y ] && arg=
2895 checkpaths $arg $checkroot 2>&1 | tee -a $LOGFILE >>$mail_msg_file
2896 fi
2897
2898 if [ "$M_FLAG" != "y" -a "$build_ok" = y ]; then
2899 echo "\n==== Impact on file permissions ====\n" \
2900 >> $mail_msg_file
2901
2902 abspkgdefs=
2903 abspkg=
2904 for d in $abssrcdirs; do
2905 if [ -d "$d/pkgdefs" ]; then
2906 abspkgdefs="$abspkgdefs $d"
2907 fi
2908 if [ -d "$d/pkg" ]; then
2909 abspkg="$abspkg $d"
2910 fi
2911 done
2912
2913 if [ -n "$abspkgdefs" ]; then
2914 pmodes -qvdP \
2915 `find $abspkgdefs -name pkginfo.tmpl -print -o \
2916 -name .del\* -prune | sed -e 's:/pkginfo.tmpl$::' | \
2917 sort -u` >> $mail_msg_file
2918 fi
2919
2920 if [ -n "$abspkg" ]; then
2921 for d in "$abspkg"; do
2922 ( cd $d/pkg ; $MAKE -e pmodes ) >> $mail_msg_file
2923 done
2924 fi
2925 fi
2926
2927 if [ "$w_FLAG" = "y" -a "$build_ok" = "y" ]; then
2928 if [[ "$MULTI_PROTO" = no || "$D_FLAG" = y ]]; then
2929 do_wsdiff DEBUG $ROOT.prev $ROOT
2930 fi
2931
2932 if [[ "$MULTI_PROTO" = yes && "$F_FLAG" = n ]]; then
2933 do_wsdiff non-DEBUG $ROOT-nd.prev $ROOT-nd
2934 fi
2935 fi
2936
2937 END_DATE=`date`
2938 echo "==== Nightly $maketype build completed: $END_DATE ====" | \
2939 tee -a $LOGFILE >> $build_time_file
2940
2941 typeset -i10 hours
2942 typeset -Z2 minutes
2943 typeset -Z2 seconds
2944
2945 elapsed_time=$SECONDS
2946 ((hours = elapsed_time / 3600 ))
2947 ((minutes = elapsed_time / 60 % 60))
2948 ((seconds = elapsed_time % 60))
2949
2950 echo "\n==== Total build time ====" | \
2951 tee -a $LOGFILE >> $build_time_file
2952 echo "\nreal ${hours}:${minutes}:${seconds}" | \
2953 tee -a $LOGFILE >> $build_time_file
2954
2955 if [ "$u_FLAG" = "y" -a "$f_FLAG" = "y" -a "$build_ok" = "y" ]; then
2956 staffer cp ${SRC}/unref-${MACH}.out $PARENT_WS/usr/src/
2957
2958 #
2959 # Produce a master list of unreferenced files -- ideally, we'd
2960 # generate the master just once after all of the nightlies
2961 # have finished, but there's no simple way to know when that
2962 # will be. Instead, we assume that we're the last nightly to
2963 # finish and merge all of the unref-${MACH}.out files in
2964 # $PARENT_WS/usr/src/. If we are in fact the final ${MACH} to
2965 # finish, then this file will be the authoritative master
2966 # list. Otherwise, another ${MACH}'s nightly will eventually
2967 # overwrite ours with its own master, but in the meantime our
2968 # temporary "master" will be no worse than any older master
2969 # which was already on the parent.
2970 #
2971
2972 set -- $PARENT_WS/usr/src/unref-*.out
2973 cp "$1" ${TMPDIR}/unref.merge
2974 shift
2975
2976 for unreffile; do
2977 comm -12 ${TMPDIR}/unref.merge "$unreffile" > ${TMPDIR}/unref.$$
2978 mv ${TMPDIR}/unref.$$ ${TMPDIR}/unref.merge
2979 done
2980
2981 staffer cp ${TMPDIR}/unref.merge $PARENT_WS/usr/src/unrefmaster.out
2982 fi
2983
2984 #
2985 # All done save for the sweeping up.
2986 # (whichever exit we hit here will trigger the "cleanup" trap which
2987 # optionally sends mail on completion).
2988 #
2989 if [ "$build_ok" = "y" ]; then
2990 exit 0
2991 fi
2992 exit 1