Whamcloud - gitweb
b=22281 refactor packaging and versioning
[fs/lustre-release.git] / build / lbuild
1 #!/bin/bash
2
3 # vim:expandtab:shiftwidth=4:softtabstop=4:tabstop=4:
4
5 # this is an alternative FD for stdout, to be used especially when we are
6 # taking stdout from a function as it's return value.  i.e. foo=$(bar)
7 # this is a workaround until a version of bash where we can put xtrace
8 # on a specific FD
9 exec 3>&1; STDOUT=3
10
11 #set -x
12 xtrace="+x"
13 if [[ $SHELLOPTS = *xtrace* ]]; then
14     xtrace="-x"
15 fi
16 shopt -s extdebug
17
18 # include the exit_traps library
19 . ${0%/lbuild}/exit_traps.sh
20
21 # our children should die when we do
22 push_exit_trap "kill -INT -$$ || true" kill_children
23
24 # increment this if you have made a change that should force a new kernel
25 # to build built
26 #BUILD_GEN=1
27 #BUILD_GEN=2    # bz19952: remove -lustre tag from kernel RPM names
28 #BUILD_GEN=3    # bz19975: enable the building of src.rpms by default
29 BUILD_GEN=4     # bz22281: use the git hash in the kernel extra version
30
31 TOPDIR=$PWD
32
33 # CVSROOT is inherited from the environment
34 KERNELDIR=
35 LINUX=
36 LUSTRE=
37 RELEASE=false
38 # XXX - some recent hacking has pretty much neutered this option.
39 #       search through this file (and lbuild.old_school -- but that will
40 #       be going away soon) for "-bb" and see how many places
41 #       simply don't account for this option
42 DO_SRC=true
43 DOWNLOAD=true
44 TAG=
45 CANONICAL_TARGET=
46 TARGET=
47 TARGET_ARCH=$(uname -m)
48 TARGET_ARCHS=
49 TARGET_ARCHS_ALL=$TARGET_ARCH
50 [ "$TARGET_ARCH" = "i686" ] && TARGET_ARCHS_ALL="i686 i586 i386"
51 CONFIGURE_FLAGS=
52 EXTERNAL_PATCHES=
53 EXTRA_VERSION=
54 STAGEDIR=
55 TMPDIR=${TMPDIR:-"/var/tmp"}
56 TIMESTAMP=
57 # this is a dir to try reuse old kernel RPMs in (although, it seems to be
58 # unused in any real manner
59 REUSERPM=
60 # this is the dir that should be used to store reuse products
61 REUSEBUILD=
62 # should cached products be used or force rebuilding?
63 USE_BUILD_CACHE=true
64 # what does this do exactly?  does it imply no kernel build?
65 NORPM=false
66 LDISKFSRPM=true
67 SKIPLDISKFSRPM="v1_4_* b1_4"
68 SMPTYPES="smp bigsmp default ''"
69 PATCHLESS=false
70 XEN=false
71 LINUXOBJ=
72 DISTRO=
73 KERNELTREE=
74 # default to not adding -lustre- into the kernel RPM package names
75 KERNEL_LUSTRE_NAMING=false
76
77 # patchless build
78 KERNELRPMSBASE=
79 RPMSMPTYPE=
80
81 # from target file
82 SERIES=
83 BASE_ARCHS=
84 BIGMEM_ARCHS=
85 BOOT_ARCHS=
86 JENSEN_ARCHS=
87 SMP_ARCHS=
88 BIGSMP_ARCHS=
89 PSERIES64_ARCHS=
90 UP_ARCHS=
91
92 # not in the target file any more
93 CONFIG=
94
95 # build the lustre-tests rpm?
96 LUSTRE_TESTS=true
97
98 DATE=$(date)
99
100 USE_DATESTAMP=1
101 RPMBUILD=
102
103 OLD_SCHOOL=false
104
105 export CC=${CC:-gcc}
106
107 # Readlink is not present on some older distributions: emulate it.
108 readlink() {
109     local path=$1 ll
110
111     if [ -L "$path" ]; then
112         ll="$(LC_ALL=C ls -l "$path" 2> /dev/null)" &&
113         echo "${ll/* -> }"
114     else
115         return 1
116     fi
117 }
118
119 cleanup() {
120
121     true
122 }
123
124 error() {
125     local msg="$1"
126
127     [ -n "$msg" ] && echo -e "\n${0##*/}: $msg" >&3
128
129 }
130
131 fatal() {
132
133     cleanup
134     error "$2"
135     exit $1
136
137 }
138
139 usage() {
140     cat <<EOF
141 Usage: ${0##*/} [OPTION]... [-- <lustre configure options>]
142
143   -d CVSROOT
144     Specifies the CVS Root to use when pulling files from CVS.  The
145     environment variable \$CVSROOT is used if this option is not
146     present.
147
148   --external-patches=EXTERNAL_PATCHES
149     Directory similar to lustre/lustre/kernel_patches/ that lbuild should
150     look for seres and config files in before looking in the lustre
151     tree.
152
153   --extraversion=EXTRAVERSION
154     Text to use for the rpm release and kernel extraversion.
155
156   --timestamp=TIMESTAMP
157     Date of building lustre in format YYYYMMDDhhmmss
158
159   --reuserpm=DIR
160     Try to reuse old kernel RPMs from DIR
161
162   --reusebuild=DIR
163     Try to reuse old kernel builds from DIR
164
165   --kernelrpm=DIR
166     Path to distro kernel RPM collection
167
168   --ccache
169     Use ccache
170
171   --norpm
172     Do not build RPMs (compile only mode)
173
174   --patchless
175     Build lustre client only
176
177   --distro=DISTRO
178     Which distro using. Autodetect by default
179
180   --kerneldir=KERNELDIR
181     Directory containing Linux source tarballs referenced by target
182     files.
183
184   --kerneltree=KERNELTREE
185     Directory containing dirs with Linux source tarballs referenced by target
186     files. Dir names in format kernel version ('2.6.9', etc.)
187
188   --linux=LINUX --with-linux=LINUX
189     Directory of Linux kernel sources.  When this option is used, only
190     Lustre modules and userspace are built.
191
192   --lustre=LUSTRE
193     Path to an existing lustre source tarball to use instead of
194     pulling from CVS.
195
196   --nodownload
197     Do not try to download a kernel from downloads.lustre.org
198
199   --nosrc
200     Do not build a .src.rpm, a full kernel patch, or a patched kernel
201     tarball.
202
203   --ldiskfs
204     Do ldiskfs RPM. Now true by default
205
206   --publish
207     Unused.
208
209   --release
210     Specifies that the files generated do not include timestamps, and
211     that this is an official release.
212
213   --src
214     Build a .src.rpm, a full kernel patch, and a patched kernel tarball.
215
216   --stage=DIR
217     Directory used to stage packages for release.  RPMs will be placed
218     more or less in DIR/<target>-<arch>, and the tarball will be
219     placed in DIR.
220
221   --tag=TAG
222     A CVS branch/tag name to build from when pulling from CVS.
223
224   --target=TARGET
225     The name of the target to build.  The available targets are listed
226     below.
227
228   --target-archs=TARGET_ARCHS
229     A (space delimited) list of architectures to build.  By default,
230     all of the archs supported by the TARGET will be built, in
231     addition to a .src.rpm.  This option can limit those, for machines
232     that can only build certain archs or if you only want a certain
233     arch built (for testing, or a one-off kernel).
234
235     Also note that by using a non-"base" arch (eg, i386) only kernels
236     will be built - there will be no lustre-lite-utils package.
237
238   --disable-datestamp
239     Prevents the datestamp flag (-D) from being passed to cvs for
240     checkouts. This is a workaround for a problem encountered when
241     using lbuild with tinderbox.
242
243   --xen
244     Builds a Xen domX kernel.
245
246   --set-value
247     Set's a variable to a given value.
248
249 EOF
250
251 #   list_targets
252
253     fatal "$1" "$2"
254 }
255
256 # canonicalize a relative path to a file
257 canon_filepath() {
258     local PATH="$1"
259
260     if [ ! -f "$PATH" ]; then
261         return 1
262     fi
263
264     local FILE=${PATH##*/}
265     local DIR=${PATH%/*}
266
267     echo $(canon_path "$DIR")/$FILE
268     return 0
269 }
270
271 # canonicalize a relative path to a dir
272 canon_path() {
273     local PATH="$1"
274
275     if [ ! -d "$PATH" ]; then
276         return 1
277     fi
278
279     pushd "$PATH" >/dev/null || return 1
280     local CANONPATH=$PWD
281     popd >/dev/null
282
283     echo "$CANONPATH"
284     return 0
285 }
286
287 check_options() {
288
289     if [ "$LUSTRE" ]; then
290         [ -r "$LUSTRE" ] || \
291             usage 1 "Could not find Lustre source tarball '$LUSTRE'."
292     else
293         [ "$CVSROOT" ] || \
294             usage 1 "Either specify a CVS Root with -d, or a Lustre source tarball with --lustre."
295         [ "$TAG" ] || \
296             usage 1 "A branch/tag name must be specified with --tag when not building from a tarball."
297     fi
298
299     if [ -z "$LINUX" ]; then
300         [ "$KERNELDIR" -o "$KERNELTREE" ] || \
301             usage 1 "A kernel directory must be specified with --kerneldir or --kerneltree."
302
303         [ -d "$KERNELDIR" -o -d "$KERNELTREE" ] || \
304             usage 1 "$KERNELDIR and $KERNELTREE are not a directory."
305
306         if ! $RELEASE; then
307             [ "$TAG" ] || \
308                 usage 1 "When building a snapshot, a tag name must be used."
309         fi
310
311         [ "$TARGET" ] || usage 1 "A target must be specified with --target."
312 #       TARGET_FILE="$TOPDIR/lustre/kernel_patches/targets/$TARGET.target"
313 #       [ -r "$TARGET_FILE" ] || \
314 #               usage 1 "Target '$TARGET' was not found."
315     fi
316
317     case $TARGET in
318         2.6-rhel5)
319             CANONICAL_TARGET="rhel5"
320             ;;
321         2.6-rhel4)
322             CANONICAL_TARGET="rhel-2.6"
323             ;;
324         2.6-suse)
325             CANONICAL_TARGET="sles-2.6"
326             ;;
327         2.6-sles10)
328             CANONICAL_TARGET="sles10-2.6"
329             ;;
330         2.6-sles11)
331             CANONICAL_TARGET="sles11"
332             ;;
333         2.6-oel5)
334             CANONICAL_TARGET="oel5"
335             ;;
336         hp_pnnl-2.4)
337             CANONICAL_TARGET="hp-pnnl-2.4"
338             ;;
339         2.6-vanilla \
340             | suse-2.4.21-2 \
341             | rh-2.4 \
342             | rhel-2.4 \
343             | sles-2.4 \
344             | 2.6-patchless)
345                 CANONICAL_TARGET="$TARGET"
346                 ;;
347     esac
348
349     local timestampnodig=$(echo $TIMESTAMP | sed -e s/[0-9]*//g)
350     [ "$timestampnodig" = "" ] || TIMESTAMP=$(date -d "$DATE" "+%Y%m%d%H%M%S")
351     local timestamplength="${#TIMESTAMP}"
352     if [ $timestamplength -eq 12 ]; then
353         TIMESTAMP="${TIMESTAMP}00"
354     elif [ $timestamplength -ne 14 ]; then
355         TIMESTAMP=$(date -d "$DATE" "+%Y%m%d%H%M%S")
356     fi
357
358     RPMBUILD=$(which rpmbuild 2>/dev/null | head -1)
359     if [ ! "$RPMBUILD" -o "$RPMBUILD" == "" ]; then
360         RPMBUILD=$(which rpm 2>/dev/null | head -1)
361         if [ ! "$RPMBUILD" -o "$RPMBUILD" == "" ]; then
362             usage 1 "Could not find binary for making rpms (tried rpmbuild and rpm)."
363         fi
364     fi
365
366     if [ -n "$CCACHE" ]; then
367         which "$DISTCC" &>/dev/null && export DISTCC RPM_BUILD_NCPUS
368
369         if which "$CCACHE" &>/dev/null; then
370             local ccache=$(which "$CCACHE")
371             local bindir="$TOPDIR/bin"
372
373             if [ ! -d $bindir ]; then
374                 mkdir -p $bindir || fatal 1 "error trying to create $bindir"
375             else
376                 rm ${bindir}/* > /dev/null 2>&1 || true
377             fi
378             ln -s "$ccache" ${bindir}/ccache
379             ln -s "$ccache" ${bindir}/cc
380             ln -s "$ccache" ${bindir}/$CC
381             export PATH=$bindir:$PATH
382             export CCACHE && export CC="ccache $CC"
383             # zero the cache so we can see how effective we are being with it
384             echo -n "ccache "
385             ccache -z
386
387             # get some ccache stats when we are done
388             push_exit_trap '[ -n "$CCACHE" ] && ccache -s' "ccache_summary"
389             # should remove the ccache trap if lbuild is interrupted
390             trap 'echo "Received an INT TERM or HUP signal, terminating."; delete_exit_trap "ccache_summary"; exit 1' INT TERM HUP
391         fi
392     fi
393
394     [ -z "$DISTRO" ] && DISTRO=$(autodetect_distro)
395
396     return 0
397
398 }
399
400 # autodetect used Distro
401 autodetect_distro() {
402
403     local name
404     local version
405
406     if [ -f /etc/SuSE-release ]; then
407         name=sles
408         version=$(grep ^VERSION /etc/SuSE-release)
409         version=${version#*= }
410     elif [ -f /etc/redhat-release ]; then
411         name=$(head -1 /etc/redhat-release)
412         version=$(echo "$distroname" |
413                   sed -e 's/^[^0-9.]*//g' | sed -e 's/[ \.].*//')
414     fi
415     if [ -z "$name" -o -z "$version" ]; then
416         fatal 1 "I don't know how to determine distro type/version.\nEither update autodetect_distro() or use the --distro argument"
417     fi
418
419     echo ${name}${version}
420     return 0
421
422 }
423
424 uniqify() {
425
426     echo $(echo "$*" | xargs -n 1 | sort -u)
427
428 }
429
430 download_srpm() {
431     local target=$1
432     local srpm=$2
433     local force="${3:-false}"
434
435     if $force || [ ! -r "$KERNELDIR/$srpm" ] ||
436        [ ! -s "$KERNELDIR/$srpm" ]; then
437         if $DOWNLOAD; then
438             local location="http://downloads.lustre.org/public/kernels/$target/old"
439             echo "Downloading $location/$srpm..."
440             if ! wget -nv "$location/$srpm" -O "$KERNELDIR/$srpm" 2>&1 ||
441                [ ! -s "$KERNELDIR/$srpm" ]; then
442                 rm -f $KERNELDIR/$srpm
443                 fatal 1 "Could not download target $target's kernel SRPM $srpm from $location."
444             fi
445         else
446             fatal 1 "$srpm not found in directory $KERNELDIR."
447         fi
448     fi
449
450 }
451
452 download_file() {
453     local from="$1"
454     local to="$2"
455     local force="$3"
456
457     local file=${from##*/}
458
459     if [ -d $to ]; then
460         to="$to/$file"
461     fi
462
463     local semaphore="$to-downloading"
464
465     is_downloading() {
466         if [ ! -f $semaphore ]; then
467             return 1
468         fi
469
470         # make sure the download has not been aborted
471         local now=$(date +%s)
472         local file_mtime=$(stat -c %Y "$to")
473         local staleness=$((now - file_mtime))
474         # let's assume an active download will write at least once a minute
475         if [ $staleness -gt 60 ]; then
476             return 1
477         fi
478
479         return 0
480     }
481
482     is_downloaded() {
483         # if the semaphore file exists, the file is either still downloading
484         # or a download was aborted and we cannot trust the target file
485         if [ -f $semaphore ]; then
486             return 1
487         fi
488
489         if ! is_downloading && [ -r "$to" ] && [ -s "$to" ]; then
490             return 0
491         fi
492
493         return 1
494     }
495
496     if $force || ! is_downloaded; then
497         if is_downloading; then
498             echo "Somebody else is downloading $from..."
499             while is_downloading; do
500                 echo "Waiting for $to to finish downloading"
501                 sleep 60
502             done
503             if is_downloaded; then
504                 return 0
505             else
506                 echo "The download we were waiting for seems to have been aborted"
507             fi
508
509         fi
510
511         if $DOWNLOAD; then
512             echo "Downloading $from..."
513             # flag others so they don't try to download also
514             push_exit_trap "rm -f $to $semaphore" "download"
515             touch $semaphore
516             if ! wget -nv "$from" -O "$to" || [ ! -s "$to" ]; then
517                 # the trap will remove the files via the fatal below
518                 fatal 1 "Could not download ${to##*/} from ${from%/*}/."
519             fi
520             rm -f $semaphore
521             delete_exit_trap "download"
522         else
523             fatal 1 "${to##*/} not found in directory ${to%/*}."
524         fi
525     fi
526
527     return 0
528
529 }
530
531 download_ofed() {
532     local force="${1:-false}"
533
534     if [ -z "$OFED_VERSION" -o "$OFED_VERSION" = "inkernel" ]; then
535         return 0
536     fi
537
538     local location="http://www.openfabrics.org/downloads/OFED/ofed-${OFED_VERSION}/"
539
540     if [[ $OFED_VERSION = daily-* ]]; then
541         local Mmv daily
542         OFED_VERSION=${OFED_VERSION/daily-/}
543         Mmv=${OFED_VERSION%%-*}
544         daily=${OFED_VERSION##$Mmv-}
545         location="http://www.openfabrics.org/downloads/OFED/ofed-${Mmv}-daily/"
546         # find the filename for the version for the date specified
547         OFED_VERSION=$(curl -s "$location" | sed -nre "/${daily}-/s/.*href=\"OFED-(${Mmv//./\\.}-${daily}-[0-9]{4,4}).tgz.*$/\1/p" | tail -1)
548         if [ -z "$OFED_VERSION" ]; then
549             fatal 1 "Could not determine the filename of the OFED snapshot for ${daily}"
550         fi
551     fi
552
553     local file="OFED-${OFED_VERSION}.tgz"
554     download_file "$location/$file" "$KERNELTREE" "$force"
555
556 }
557
558 load_target() {
559
560     EXTRA_VERSION_save="$EXTRA_VERSION"
561     for patchesdir in "$EXTERNAL_PATCHES" \
562                       "$TOPDIR/lustre/lustre/kernel_patches"; do
563         TARGET_FILE="$patchesdir/targets/$TARGET.target"
564         [ -r "$TARGET_FILE" ] && break
565     done
566     [ -r "$TARGET_FILE" ] || fatal 1 "Target $TARGET was not found."
567
568     echo "Loading target config file $TARGET.target..."
569
570     # if the caller specified an OFED_VERSION it should override whatever
571     # the target file specifies
572     local env_OFED_VERSION="$OFED_VERSION"
573
574     . "$TARGET_FILE"
575
576     if [ -n "$env_OFED_VERSION" ]; then
577         OFED_VERSION="$env_OFED_VERSION"
578     fi
579
580     # doesn't make any sense to build OFED for xen domX's
581     if $XEN; then
582         OFED_VERSION=""
583     fi
584
585     # XXX - set_rpm_smp_type is an ugly undeterministic hack.  it needs to
586     #       go away and the target just specify the $RPMSMPTYPE
587     [ -z "$RPMSMPTYPE" ] && set_rpm_smp_type
588
589     # CC might have been overwriten in TARGET_FILE
590     if [[ $CC != ccache\ * ]] && which "$CCACHE" &>/dev/null; then
591         export CCACHE && export CC="ccache $CC"
592     fi
593
594     if [ ! "$KERNELTREE" = "" ] && [ -d "$KERNELTREE" ]; then
595         KERNELDIR="$KERNELTREE/${lnxmaj}"
596         [ -d "$KERNELDIR" ] || mkdir "$KERNELDIR"
597     fi
598
599     # verify the series is available
600     if [ "$SERIES" ]; then
601         for series in $SERIES; do
602             for patchesdir in "$EXTERNAL_PATCHES" "$TOPDIR/lustre/lustre/kernel_patches"; do
603                 [ -r "$patchesdir/series/$series" ] && continue 2
604             done
605             fatal 1 "Target $TARGET's series $SERIES could not be found.\nSearched:\n\t$EXTERNAL_PATCHES/series\n\t$TOPDIR/lustre/lustre/kernel_patches/series."
606         done
607     fi
608
609     # set the location of the .config file
610     local XENPOSTFIX=""
611     if $XEN; then
612         XENPOSTFIX="-xen"
613     fi
614
615     if [ -f $TOPDIR/lustre/lustre/kernel_patches/kernel_configs/kernel-$lnxmaj-$TARGET-$TARGET_ARCH.config ]; then
616         CONFIG_FILE="$TOPDIR/lustre/lustre/kernel_patches/kernel_configs/kernel-$lnxmaj-$TARGET$XENPOSTFIX-$TARGET_ARCH${RPMSMPTYPE:+-}${RPMSMPTYPE}.config"
617     fi
618
619     local lnxrelnew=${lnxrel//-/_}
620
621     # remember the EXTRA_VERSION before we diddle it here
622     # XXX - we really should not diddle with any values read in from the
623     #       target file.  if we want to modify a value, we should create
624     #       a new variable.
625     PRISTINE_EXTRA_VERSION=$EXTRA_VERSION
626
627     if ! $PATCHLESS && [ ! -f "$CONFIG_FILE" ]; then
628         fatal 1 "Config file for target $TARGET missing from $TOPDIR/lustre/lustre/kernel_patches/kernel_configs/."
629     fi
630
631     if [ "$EXTRA_VERSION_save" ]; then
632         EXTRA_VERSION="$EXTRA_VERSION_save"
633     elif ! $RELEASE; then
634         # if there is no patch series, then this is not a lustre specific
635         # kernel.  don't make it look like one
636         if $PATCHLESS || [ -n "$SERIES" ]; then
637             EXTRA_VERSION=$(echo $EXTRA_VERSION | sed -e "s/\(.*_lustre\)\..*/\1/")
638 #            EXTRA_VERSION="${EXTRA_VERSION}-${TAG}.${TIMESTAMP}"
639             if ! $PATCHLESS && [ -n "$BUILDID" ]; then
640                 EXTRA_VERSION="${EXTRA_VERSION}.${BUILDID}"
641             fi
642         fi
643     fi
644     # EXTRA_VERSION=${EXTRA_VERSION//-/_}
645
646     ALL_ARCHS="$BASE_ARCHS $BIGMEM_ARCHS $BOOT_ARCHS $JENSEN_ARCHS $SMP_ARCHS $BIGSMP_ARCHS $PSERIES64_ARCHS $UP_ARCHS"
647
648     BUILD_ARCHS=
649     for arch in $(uniqify "$ALL_ARCHS"); do
650         if [ -z "$TARGET_ARCHS" ] ||
651            [[ \ $TARGET_ARCHS\  = *\ $arch\ * ]]; then
652             BUILD_ARCHS="$BUILD_ARCHS $arch"
653         fi
654     done
655     [ "$BUILD_ARCHS" ] || usage 1 "No available target archs to build."
656     echo "Building for: $BUILD_ARCHS"
657 }
658
659 tarflags() {
660     local file="$1"
661
662     case "$file" in
663         '')
664             fatal 1 "tarflags(): File name argument missing."
665             ;;
666         *.tar.gz | *.tgz)
667             echo 'zxf'
668             ;;
669         *.tar.bz2)
670             echo 'jxf'
671             ;;
672         *.tar)
673             echo 'xf'
674             ;;
675         *)
676             fatal 1 "tarflags(): Unrecognized tar extension in file: $1"
677             ;;
678     esac
679
680 }
681
682 untar() {
683     local tarfile="$1"
684     shift
685     local extractfile="$@"
686
687     echo "Untarring ${tarfile##*/}..."
688     tar $(tarflags "$tarfile") "$tarfile" $extractfile
689
690 }
691
692 unpack_ofed() {
693
694     if ! untar "$KERNELTREE/OFED-${OFED_VERSION}.tgz"; then
695         return 1
696     fi
697     [ -d OFED ] || ln -sf OFED-[0-9].[0-9]* OFED
698
699 }
700
701 unpack_lustre() {
702
703     if [ -z "$LUSTRE" ]; then
704         local DATESTAMP=""
705
706         if [ -n "$USE_DATESTAMP" ]; then
707             DATESTAMP="-D '$DATE'"
708         fi
709
710         local DIRNAME="lustre-$TAG-$TIMESTAMP"
711
712         cvs -d "$CVSROOT" -qz3 co $DATESTAMP -d "$DIRNAME" lustre || \
713             fatal 1 "There was an error checking out toplevel Lustre from CVS."
714         pushd "$DIRNAME" > /dev/null
715         ./lustrecvs "$TAG" || \
716             fatal 1 "There was an error checking out Lustre/Portals/Build from CVS."
717         echo "Creating lustre tarball..."
718         sh autogen.sh || fatal 1 "There was an error running autogen.sh."
719         ./configure --enable-dist || \
720             fatal 1 "There was an error running ./configure to create makefiles."
721         make dist || fatal 1 "There was an error running 'make dist'."
722         LUSTRE=$PWD/lustre-*.tar.gz
723         popd > /dev/null
724     fi
725
726     untar "$LUSTRE" || fatal 1 "Error unpacking Lustre tarball"
727     [ -d lustre ] || ln -sf lustre-[0-9].[0-9]* lustre
728
729 }
730
731 do_patch_linux() {
732
733     local do_patch=${1:-true}
734
735     FULL_PATCH="$PWD/lustre-kernel-${TARGET}-${EXTRA_VERSION}.patch"
736     [ -f "$FULL_PATCH" ] && rm -f "$FULL_PATCH"
737     $do_patch && pushd linux >/dev/null
738     for series in $SERIES; do
739         echo -n "Applying series $series:"
740         for patchesdir in "$EXTERNAL_PATCHES" "$TOPDIR/lustre/lustre/kernel_patches"; do
741             [ -r "$patchesdir/series/$series" ] || continue
742             SERIES_FILE="$patchesdir/series/$series"
743             for patch in $(<"$SERIES_FILE"); do
744                 echo -n " $patch"
745                 PATCH_FILE="$patchesdir/patches/$patch"
746                 [ -r "$PATCH_FILE" ] || \
747                     fatal 1 "Patch $patch does not exist in Lustre tree."
748                 cat "$PATCH_FILE" >> "$FULL_PATCH" || {
749                     rm -f $FULL_PATCH
750                     fatal 1 "Error adding patch $patch to full patch."
751                 }
752                 if $do_patch; then
753                     patch -s -p1 < "$PATCH_FILE" 2>&1 || {
754                         rm -f $FULL_PATCH
755                         fatal 1 "Error applying patch $patch."
756                     }
757                 fi
758             done
759             break
760         done
761         echo
762     done
763     $do_patch && popd >/dev/null
764     echo "Full patch has been saved in ${FULL_PATCH##*/}."
765
766 }
767
768 build_lustre() {
769     local linux="$1"
770     local linuxobj="$2"
771
772     cp "$LUSTRE" SOURCES
773
774     pushd lustre >/dev/null
775
776     echo "Building Lustre RPMs for: $BUILD_ARCHS..."
777     local targets arch
778     for arch in $BUILD_ARCHS; do
779         targets="--target $arch $targets"
780     done
781
782     local confoptions=""
783
784     if $PATCHLESS; then
785         confoptions="$confoptions --disable-server"
786     fi
787
788     local rpmbuildopt='-tb'
789     if $NORPM; then
790         rpmbuildopt='-tc'
791         echo NORPM mode. Only compiling.
792     fi
793
794     ( $(skeep_ldiskfs_rpm $TAG) ) || {
795
796         pushd ldiskfs > /dev/null || return 255
797
798         if !  ./configure --enable-dist; then
799             echo "failed to configure in ldiskfs"
800             popd >/dev/null # pushd ldiskfs
801             popd >/dev/null # pushd lustre
802             return 255
803         fi
804
805         if ! make dist 2>&1; then
806             popd >/dev/null # pushd ldiskfs
807             popd >/dev/null # pushd lustre
808             return 255
809         fi
810
811         #cp lustre-ldiskfs*.tar.gz $TOPDIR/SOURCES || \
812         #    fatal 1 "Could not copy lustre-ldiskfs*.tar.gz to $TOPDIR/SOURCES"
813
814         if ! $RPMBUILD $targets $rpmbuildopt lustre-ldiskfs*.tar.gz \
815             --define "configure_args $confoptions ${CONFIGURE_FLAGS}" \
816             --define "kdir $linux" \
817             ${linuxobj:+--define "kobjdir $linuxobj"} \
818             --define "_tmppath /var/tmp" \
819             --define "_topdir $TOPDIR" 2>&1; then
820             popd >/dev/null # pushd ldiskfs
821             popd >/dev/null # pushd lustre
822             return 255
823         fi
824
825         if $DO_SRC; then
826             if ! $RPMBUILD -ts lustre-ldiskfs*.tar.gz \
827                 --define "configure_args $confoptions ${CONFIGURE_FLAGS}" \
828                 --define "kdir $linux" \
829                 ${linuxobj:+--define "kobjdir $linuxobj"} \
830                 --define "_tmppath /var/tmp" \
831                 --define "_topdir $TOPDIR" 2>&1; then
832                 popd >/dev/null # pushd ldiskfs
833                 popd >/dev/null # pushd lustre
834                 return 255
835             fi
836         fi
837         popd >/dev/null # pushd ldiskfs
838
839         # tell lustre where ldiskfs is
840         # XXX - pointing to the RPM BUILD dir is a hack.  we need to flesh
841         #       out the ldiskfs RPM build so that it builds a
842         #       lustre-ldiskfs-devel RPM and install that and point lustre
843         #       to that instead
844         confoptions="$confoptions --with-ldiskfs=$(ls -d $TOPDIR/BUILD/lustre-ldiskfs-*)"
845     }
846
847     # convert the $PATCHLESS boolean to an empty/not-empty boolean
848     # as silly as this seems, it makes the syntax of the rpmbuild command
849     # simpler and not need an eval to deal with the quotes in the quotes
850     local is_patchless=""
851     if $PATCHLESS; then
852         is_patchless="yes"
853     fi
854
855     # ditto for the lustre-tests boolean
856     local lustre_tests=""
857     if ! $LUSTRE_TESTS; then
858         lustre_tests="no"
859     fi
860
861     $RPMBUILD $targets $rpmbuildopt "$LUSTRE" \
862         ${is_patchless:+--define "lustre_name lustre-client"} \
863         ${lustre_tests:+--define "build_lustre_tests 0"} \
864         ${FIND_REQUIRES:+--define "__find_requires $FIND_REQUIRES"} \
865         --define "configure_args $confoptions ${CONFIGURE_FLAGS}" \
866         --define "kdir $linux" \
867         ${linuxobj:+--define "kobjdir $linuxobj"} \
868         --define "_tmppath $TMPDIR" \
869         --define "_topdir $TOPDIR" 2>&1 || \
870         fatal 1 "Error building rpms for $BUILD_ARCHS."
871
872     popd >/dev/null
873
874 }
875
876 stage() {
877
878     [ "$STAGEDIR" ] || return 0
879
880     for arch in $BUILD_ARCHS; do
881         rpmdir="${STAGEDIR}/${CANONICAL_TARGET}-${arch}"
882         echo "${0##*/}: Copying RPMs into ${rpmdir}"
883         mkdir -p "${rpmdir}"
884         cp -v RPMS/${arch}/*.rpm "${rpmdir}"
885         if [ -d RPMS/noarch ]; then
886             cp -v RPMS/noarch/*.rpm "${rpmdir}"
887         fi
888     done
889
890     cp -v "$LUSTRE" "$STAGEDIR"
891
892 }
893
894 #check if we need to build separate ldiskfs RPM
895 skeep_ldiskfs_rpm() {
896     local tag="$1"
897
898     local skip=false
899
900     if ! $LDISKFSRPM; then
901         skip=true
902     elif $PATCHLESS; then
903         skip=true
904     else
905         for skiptag in $SKIPLDISKFSRPM; do
906             [[ $tag == $skiptag ]] && skip=true && break
907         done
908     fi
909
910     echo $skip
911
912 }
913
914 set_rpm_smp_type() {
915
916     local infact_arch="${TARGET_ARCH}"
917
918     RPMSMPTYPE=""
919     [ "$infact_arch" == "i586" ] && infact_arch="i686"
920
921     local smp_type
922     for smp_type in $SMP_ARCHS; do
923         [ $infact_arch == $smp_type ] && RPMSMPTYPE=smp && break
924     done
925
926     for smp_type in $BIGSMP_ARCHS; do
927         [ $infact_arch == $smp_type ] && RPMSMPTYPE=bigsmp && break
928     done
929
930     for smp_type in $PPC64_ARCHS; do
931         [ $infact_arch == $smp_type ] && RPMSMPTYPE=ppc64 && break
932     done
933
934     for smp_type in $DEFAULT_ARCHS; do
935         [ $infact_arch == $smp_type ] && RPMSMPTYPE=default && break
936     done
937
938 }
939
940 # This function takes a linux source pool and digs out the linux release
941 # from it
942 find_linux_release() {
943     local SRCDIR="$1"
944
945     local LINUXRELEASEHEADER=$SRCDIR/include/linux/version.h
946     if [ -s $SRCDIR/include/linux/utsrelease.h ]; then
947         LINUXRELEASEHEADER=$SRCDIR/include/linux/utsrelease.h
948     fi
949
950     sed -ne 's/#define UTS_RELEASE "\(.*\)"$/\1/p' $LINUXRELEASEHEADER
951
952 }
953
954 # XXX this needs to be re-written as a wrapper around find_rpm
955 #     or just gotten rid of.  :-)
956 find_linux_rpm() {
957     local prefix="$1"
958
959     local pathtorpms="${KERNELRPMSBASE}/${lnxmaj}/${DISTRO}"
960     [ -d $pathtorpms ] || return 255
961
962     local kernelbinaryrpm rpmfile
963     local wanted_kernel="${lnxmaj}${lnxmin}-${lnxrel}"
964
965     local arch ret=1
966     for arch in $TARGET_ARCHS_ALL; do
967         local found_rpm="" rpm
968         for rpm in ${pathtorpms}/${arch}/*.rpm; do
969             if rpm -q --provides -p "$rpm" 2>&3 | grep -q "kernel${prefix} = $wanted_kernel" 2>&3; then
970
971                 found_rpm="$rpm"
972                 ret=0
973                 break
974             fi
975         done
976         [ -f "$found_rpm" ] && break
977     done
978
979     echo "$found_rpm"
980     return $ret
981
982 }
983
984 # unpack kernel(/source/devel) RPM
985 #
986 # This function and it's setting of $LINUX and $LINUXOBJ is a total hack that
987 # needs to completely refactored.  It completely ingores that $BUILD_ARCHS may
988 # contain a list of arches for which rpmbuild commands (including the one for
989 # lustre itself)
990 unpack_linux_devel_rpm() {
991     local kernelrpm="${1}"
992
993     [ -f "$kernelrpm" ] || return 255
994     [ -d $TOPDIR/reused ] || mkdir $TOPDIR/reused || return 255
995
996     pushd $TOPDIR/reused &>/dev/null || return 255
997
998     if ! rpm2cpio < "$kernelrpm" | cpio -id > /dev/null 2>&1; then
999         return 255
1000     fi
1001
1002     # call a distro specific hook, if available
1003     if type -p unpack_linux_devel_rpm-$DISTRO; then
1004         if ! unpack_linux_devel_rpm-$DISTRO "$kernelrpm"; then
1005             return 255
1006         fi
1007     fi
1008
1009     popd &>/dev/null
1010
1011     find_linux_devel_paths $TOPDIR/reused
1012
1013     return 0
1014
1015 }
1016
1017 build_kernel_ib() {
1018     local linux="$1"
1019
1020     # build kernel-ib{,-devel}
1021     local K_SRC="K_SRC"
1022     # ofed 1.3 had a bug in the rpm spec
1023     if [ "$OFED_VERSION" = "1.3" ]; then
1024         K_SRC="KSRC"
1025     fi
1026
1027     local OFED_CORE="--with-core-mod --with-ipoib-mod --with-sdp-mod --with-user_mad-mod --with-user_access-mod --with-addr_trans-mod --with-rds-mod --with-qlgc_vnic-mod --with-madeye-mod"
1028     local OFED_HARDWARE="--with-mthca-mod --with-mlx4-mod --with-mlx4_en-mod --with-cxgb3-mod --with-nes-mod"
1029     # some I/B drivers are architecture dependent and kernel-ib's configure
1030     # does not figure it out for us ~sigh~
1031     case "$TARGET_ARCH" in
1032         ppc64)
1033             OFED_HARDWARE="$OFED_HARDWARE --with-ehca-mod"
1034             ;;
1035     esac
1036     # we're no longer shipping the OFED iSCSI
1037     #OFED_ISCSI="--with-srp-mod --with-srp-target-mod"
1038     ## ISER module has no backport support as of OFED 1.5 (i.e. only builds on
1039     ##kernels >= 2.6.30)
1040     #if [[ $OFED_VERSION = 1.[0-4]* ]]; then
1041     #   OFED_ISCSI="$OFED_ISCSI --with-iser-mod"
1042     #fi
1043
1044     # assume we are just rebuilding the SRPM
1045     local BUILD_TYPE=${BUILD_TYPE:-"--rebuild"}
1046     local SOURCE="${TOPDIR}/OFED/SRPMS/ofa_kernel-*.src.rpm"
1047
1048     # but switch to building from the SPEC if we need to apply patches
1049     if ls ${TOPDIR}/lustre/build/patches/ofed/* >/dev/null; then
1050         BUILD_TYPE="-bb"
1051         rpm --define "_topdir ${TOPDIR}" -ivh $SOURCE
1052         SOURCE="${TOPDIR}/SPECS/ofa_kernel.spec"
1053         local file ed_fragment1 ed_fragment2 n=1
1054         for file in $(ls ${TOPDIR}/lustre/build/patches/ofed/*); do
1055             ed_fragment1="$ed_fragment1
1056 Patch$n: ${file%%*/}"
1057             ed_fragment2="$ed_fragment2
1058 %patch$n -p0"
1059             cp $file ${TOPDIR}/SOURCES
1060             let n=$n+1
1061         done
1062
1063         if [ $n -gt 1 ]; then
1064             ed $SOURCE <<EOF
1065 /^Source: /a
1066 $ed_fragment1
1067 .
1068 /^%setup /a
1069 $ed_fragment2
1070 .
1071 wq
1072 EOF
1073         fi
1074     fi
1075
1076     local linuxrelease=$(find_linux_release "$linux")
1077     if ! $RPMBUILD $BUILD_TYPE --define 'build_kernel_ib 1' --define 'build_kernel_ib_devel 1' \
1078                   ${FIND_REQUIRES:+--define "__find_requires $FIND_REQUIRES"} \
1079                   --define "_topdir ${TOPDIR}" --target ${TARGET_ARCH} \
1080                   --define "KVERSION ${linuxrelease}" \
1081                   --define "$K_SRC ${linux}" \
1082                   --define "LIB_MOD_DIR /lib/modules/${linuxrelease}/updates" \
1083                   ${OFA_KERNEL_RELEASE:+--define "_release $OFA_KERNEL_RELEASE"} \
1084                   --define "configure_options --without-quilt $OFED_CORE $OFED_HARDWARE $OFED_ISCSI" \
1085                   ${SOURCE} 2>&1; then
1086         fatal 1 "Error building kernel-ib"
1087     fi
1088
1089 }
1090
1091 store_for_reuse() {
1092         local articles="$1"
1093         local module="$2"
1094         local location="$3"
1095         local signature="$4"
1096         local use_links="$5"
1097
1098         local linkflag=""
1099         if $use_links; then
1100             linkflag="l"
1101         fi
1102
1103         location="$location"/"$signature"/"$module"
1104         mkdir -p "$location"
1105         # the cleanup script removes any directory that doesn't have a
1106         # .lastused, so let's try to prevent that as soon as we can
1107         # this solution still slightly racy with the cleanup script
1108         # but the race is a lot tighter now
1109         touch -t 197001010000 "$location/.lastused"
1110         ## use eval/echo here to make sure shell expansions are performed
1111         #if ! cp -a${linkflag} $(eval echo $articles) "$location"; then
1112         local article
1113         for article in $(eval echo $articles); do
1114             if ! cp -a${linkflag} "$article" "$location"; then
1115                 error "Failed to copy \"$article\" to \"$location\" in store_for_reuse()"
1116                 # rename the cache location so that it's not cached
1117                 # product, but is around for analysis
1118                 mv "$location"{,-bad-$(date +%s)} ||
1119                     error "failed to clean up a failed cache attempt" \
1120                           "in \"$location\" -- manual cleanup will be" \
1121                           "necessary"
1122                 return 1
1123             fi
1124         done
1125
1126         # flag the cache as complete (i.e. in case lbuild was previously
1127         # interrupted while caching)
1128         touch "$location/.lastused"
1129
1130         return 0
1131
1132 }
1133
1134 reuse() {
1135     local module="$1"
1136     local dest="$2"
1137     local use_links="${3:-false}"
1138     local signature="$4"
1139
1140     if [ -n "$REUSEBUILD" ] && [ -d "$REUSEBUILD/$signature/$module" ]; then
1141         if [ ! -f "$REUSEBUILD/$signature/$module/.lastused" ]; then
1142             # the .lastused flag is populated at the end of the caching to
1143             # signal that the caching was completed.  if that flag is not
1144             # there, then the cache is invalid (and should be removed in fact)
1145             mv "$REUSEBUILD/$signature/$module"{,-bad-$(date +%s)} ||
1146                 fatal 1 "failed to clean up a bad cache in location $REUSEBUILD/$signature/$module\" -- manual cleanup will be necessary"
1147             return 1
1148         fi
1149
1150         # so that we know how stale this entry is
1151         touch $REUSEBUILD/$signature/$module/.lastused
1152
1153         if $use_links; then
1154             if ls $REUSEBUILD/$signature/$module/* >/dev/null 2>&1; then
1155                 cp -al $REUSEBUILD/$signature/$module/* $dest/
1156             fi
1157         else
1158             # copying is pretty heavy
1159             # cp -a $REUSEBUILD/$signature/$module/* $dest/
1160             # do some creative symlinking instead
1161             local dir
1162             for dir in BUILD SRPMS SPECS; do
1163                 if ls $REUSEBUILD/$signature/$module/$dir/* >/dev/null 2>&1; then
1164                     ln -s $REUSEBUILD/$signature/$module/$dir/* $dest/$dir
1165                 fi
1166             done
1167             # sources have to be copied by file because we need SOURCES to
1168             # be a dir we can write into
1169 # could overrun ls's arg list here
1170             #ls $REUSEBUILD/$signature/$module/SOURCES/* |
1171             find $REUSEBUILD/$signature/$module/SOURCES/ -type f |
1172                 xargs ln -t $dest/SOURCES -s
1173
1174             # same for RPMS/* dirs
1175 # could overrun ls's arg list here
1176             #ls $REUSEBUILD/$signature/$module/RPMS/$TARGET_ARCH/* |
1177             local dir
1178             for dir in $REUSEBUILD/$signature/$module/RPMS/*; do
1179                 mkdir -p $dest/RPMS/${dir##*/}
1180                 find $dir -type f |
1181                   xargs ln -t $dest/RPMS/${dir##*/} -s
1182             done
1183         fi
1184         return 0
1185     else
1186         return 1
1187     fi
1188 }
1189
1190 basearch() {
1191     local arch="$1"
1192
1193     if [[ $arch = i[3456]86 ]]; then
1194         echo "i386"
1195     else
1196         echo "$arch"
1197     fi
1198
1199 }
1200
1201 #
1202 # in a given directory, find the first rpm matching given requirements
1203 #
1204 find_rpm() {
1205     local dir="$1"
1206     local match_type="$2"
1207     local match="$3"
1208
1209     pushd "$dir" > /dev/null || \
1210         fatal 1 "Unable to chdir to directory \"$dir\" in find_rpm()"
1211
1212     local file
1213     for file in $(ls *.rpm); do
1214         if [ ! -f "$file" ]; then
1215             continue
1216         fi
1217         case "$match_type" in
1218             provides)
1219                 # match is any valid ERE (i.e. given to egrep) match
1220                 if rpm -q --provides -p "$file" 2>&3 | egrep -q "$match"; then
1221                     echo "$file"
1222                     popd >/dev/null
1223                     return 0
1224                 fi
1225                 ;;
1226             *)
1227                 popd >/dev/null
1228                 fatal 1 "Unknown match type \"$match_type\" given to find_rpm()"
1229                 ;;
1230         esac
1231     done
1232
1233     popd >/dev/null
1234     return 1
1235 }
1236
1237 build_kernel_with_srpm() {
1238     local outfd=$1
1239
1240     if [ -z "$outfd" ] || [ $outfd = 1 ]; then
1241         fatal 1 "You must supply a file descriptor to ${FUNCNAME[0]} and it cannot be 1"
1242     fi
1243
1244     # need to generate the patch for this target
1245     do_patch_linux false >&${outfd}    # sets global $FULL_PATCH (yeah, yuck)
1246
1247     # get an md5sum of the kernel patch + config for reuse check
1248     # XXX really, there needs to be a signature and a CONFIG_FILE per arch
1249     #     in BUILD_ARCHS
1250     local release_str
1251     if $RELEASE; then
1252         local release_str="RELEASE=$RELEASE\n"
1253     fi
1254
1255     if $USE_BUILD_CACHE && [ -n "$REUSEBUILD" ]; then
1256         local REUSE_SIGNATURE=$({ echo -en $release_str;
1257                                   echo $BUILD_GEN;
1258                                   cat $CONFIG_FILE $TARGET_FILE $FULL_PATCH; } |
1259                                 md5sum | cut -d" " -f1)
1260         # see if we can link to the reuse pool
1261         # XXX - hrm.  i'm not convinced this doesn't belong in the reuse
1262         #       "library"
1263         local CAN_LINK_FOR_REUSE=false
1264         touch $REUSEBUILD/$$
1265         if cp -al $REUSEBUILD/$$ $TOPDIR/ 2>/dev/null; then
1266             CAN_LINK_FOR_REUSE=true
1267         fi
1268         rm $REUSEBUILD/$$
1269     fi
1270
1271     # the extra version string to use for the kernel (which might be a reused
1272     # kernel, remember)
1273     local kernel_extra_version=""
1274     if ! $USE_BUILD_CACHE || ! reuse kernel "$TOPDIR" "$CAN_LINK_FOR_REUSE" \
1275                                    "$REUSE_SIGNATURE"; then
1276         # nothing cached, build from scratch
1277         if [ ! -r "$KERNELDIR/$KERNEL_SRPM" ]; then
1278             echo "Downloading kernel SRPM"
1279             download_srpm "$CANONICAL_TARGET" "$KERNEL_SRPM" >&${outfd}
1280         fi
1281
1282         if ! rpm -ivh $KERNELDIR/$KERNEL_SRPM \
1283                   --define "_topdir $TOPDIR" >&${outfd} 2>&1; then
1284             # should we clean this up or leave it for analysis?
1285             #rm -rf $RPMTOPDIR
1286             fatal 1 "Error installing kernel SRPM."
1287         fi
1288
1289         # put the Lustre kernel patch into the RPM build tree
1290         cp $FULL_PATCH $TOPDIR/SOURCES/linux-${lnxmaj}-lustre.patch
1291         prepare_and_build_srpm >&${outfd} ||
1292             fatal 1 "failed to prepare_and_build_srpm"
1293
1294         if [ -z "$REUSE_SIGNATURE" ]; then
1295             echo "No reuse signature was caculated so not storing the built kernel" >&${outfd}
1296         else
1297             # store the resulting kernel RPM build tree for future use
1298             echo "Storing the built kernel for future reuse" >&${outfd}
1299             if ! store_for_reuse "$TOPDIR/{SPECS,SOURCES,BUILD,SRPMS,RPMS}" \
1300                                  "kernel" "$REUSEBUILD" "$REUSE_SIGNATURE" \
1301                                  "$CAN_LINK_FOR_REUSE"; then
1302                 error "Failed to store kernel RPMS for reuse"
1303                 echo "unknown"
1304                 return 1
1305             fi
1306         fi
1307     fi  # build reuse
1308
1309     # figure out the EXTRA_VERSION of the kernel we built or are re-using
1310     local KERNEL_RPM
1311     if ! KERNEL_RPM=$(find_rpm "$TOPDIR/RPMS/$TARGET_ARCH/" provides "^kernel ="); then
1312         fatal 1 "Failed to find a kernel RPM in $TOPDIR/RPMS/$TARGET_ARCH/"
1313     fi
1314     kernel_extra_version=$(rpm -q --queryformat "%{RELEASE}" -p $TOPDIR/RPMS/$TARGET_ARCH/$KERNEL_RPM)
1315
1316     # should now have the following RPMs
1317     # $TOPDIR/RPMS/$arch/kernel-lustre-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1318     # $TOPDIR/RPMS/$arch/kernel-lustre-devel-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1319     # $TOPDIR/RPMS/$arch/kernel-lustre-headers-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1320     # $TOPDIR/RPMS/$arch/kernel-lustre-debuginfo-common-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1321     # $TOPDIR/RPMS/$arch/kernel-lustre-debuginfo-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1322
1323     echo $kernel_extra_version
1324     return 0
1325
1326 }
1327
1328 # build OFED
1329 # globals used:
1330 #    TOPDIR
1331 #    REUSEBUILD, USE_BUILD_CACHE
1332 #    CONFIGURE_FLAGS
1333
1334 build_ofed() {
1335     local linux="$1"
1336     local ofed_version="$2"
1337
1338     # if an ofed version is given, then it means use OFED proper,
1339     # not any vendor specific "inkernel" version
1340     if [ -z "$ofed_version" ]; then
1341         return 0
1342     fi
1343
1344     if [ "$ofed_version" = "inkernel" ]; then
1345         # see if there is a distro specific override for this and use
1346         # that if it exists
1347         # XXX we need to better integrate a distro specific override with
1348         #     the rest of this function so that all of the reuse cache
1349         #     stuff is leveraged given that 80% of this function is reuse
1350         if type -p build_ofed-${DISTRO}; then
1351             local ofed_location
1352             ofed_location=$(build_ofed-${DISTRO} ${STDOUT})
1353             local rc=${PIPESTATUS[0]}
1354             CONFIGURE_FLAGS="--with-o2ib=${ofed_location} ${CONFIGURE_FLAGS}"
1355             return $rc
1356         else
1357             return 0
1358         fi
1359     fi
1360
1361     # build kernel-ib
1362     if $USE_BUILD_CACHE && [ -n "$REUSEBUILD" ]; then
1363         local REUSE_SIGNATURE=$({ echo "$ofed_version";
1364                                   echo "$(find_linux_release ${linux})";
1365                                   cat "${linux}/include/linux/autoconf.h"; } |
1366                                 md5sum | cut -d" " -f1)
1367         # see if we can link to the reuse pool
1368         # XXX - hrm.  i'm not convinced this doesn't belong in the reuse
1369         #       "library"
1370         local CAN_LINK_FOR_REUSE=false
1371         touch $REUSEBUILD/$$
1372         if cp -al $REUSEBUILD/$$ $TOPDIR/; then
1373             CAN_LINK_FOR_REUSE=true
1374         fi
1375         rm $REUSEBUILD/$$
1376     fi
1377
1378     if ! $USE_BUILD_CACHE || ! reuse ofed "$TOPDIR" "$CAN_LINK_FOR_REUSE" \
1379                                    "$REUSE_SIGNATURE"; then
1380         if [ -n "$REUSE_SIGNATURE" ]; then
1381             # stash away the existing built articles for a moment
1382             mkdir bak
1383             mv {BUILD,{S,}RPMS,S{OURCE,PEC}S} bak
1384             function mv_back {
1385                 pushd bak
1386                 find . | cpio -pudlm ..
1387                 popd
1388                 rm -rf bak
1389             }
1390             create_rpmbuild_dirs
1391         fi
1392         # build it
1393         build_kernel_ib "${linux}"
1394
1395         if [ -z "$REUSE_SIGNATURE" ]; then
1396             echo "No reuse signature was caculated so not storing the built ofed"
1397         else
1398             # store the resulting RPM build tree for future use
1399             echo "Storing the built ofed for future reuse"
1400             if ! store_for_reuse "$TOPDIR/{SPECS,SOURCES,BUILD,SRPMS,RPMS}" \
1401                                  "ofed" "$REUSEBUILD" "$REUSE_SIGNATURE" \
1402                                  "$CAN_LINK_FOR_REUSE"; then
1403                 error "Failed to store OFED RPMS for reuse"
1404                 mv_back
1405                 return 1
1406             fi
1407             # put the stuff we stashed away back
1408             mv_back
1409         fi
1410     fi
1411
1412     pushd "$TOPDIR" >/dev/null
1413     rm -rf kernel-ib-devel
1414     mkdir kernel-ib-devel
1415     cd kernel-ib-devel
1416     # the actual ofed RPMs don't have the -rc$n or -$date string appened that
1417     # might be present on the file
1418     local linuxrelease=$(find_linux_release "$linux")
1419     ofed_version=$(echo $ofed_version |
1420                    sed -re 's/-(20[0-9]{6,6}-[0-9]{4,4}|rc[0-9]*)$//')
1421     local rpm=$(ls $TOPDIR/RPMS/*/kernel-ib-devel-${ofed_version}-${linuxrelease//-/_}.*.rpm)
1422     if ! rpm2cpio < $rpm | cpio -id; then
1423         fatal 1 "could not unpack the kernel-ib-devel rpm."
1424     fi
1425     CONFIGURE_FLAGS="--with-o2ib=$(pwd)/usr/src/ofa_kernel ${CONFIGURE_FLAGS}"
1426     popd >/dev/null
1427
1428 }
1429
1430 build_with_srpm() {
1431
1432     if ! $PATCHLESS; then
1433         local kernel_extra_version
1434         if ! kernel_extra_version=$(build_kernel_with_srpm ${STDOUT}); then
1435             fatal 1 "Failed to build the kernel from it's SRPM"
1436         fi
1437
1438         for arch in $BUILD_ARCHS; do
1439             local kernel_devel_rpm
1440             if ! kernel_devel_rpm=$(find_rpm "$TOPDIR/RPMS/$arch/" provides "^$(devel_kernel_name $KERNEL_LUSTRE_NAMING) ="); then
1441                 fatal 1 "Failed to find a kernel development RPM in $TOPDIR/RPMS/$arch/"
1442             fi
1443
1444             # install the -devel RPM in preparation for modules builds
1445             if ! lnxrel="$kernel_extra_version" unpack_linux_devel_rpm \
1446                            "$TOPDIR/RPMS/$arch/$kernel_devel_rpm"; then
1447                 fatal 1 "Could not find the Linux tree in $TOPDIR/RPMS/$arch/$kernel_devel_rpm"
1448             fi
1449         done
1450     else
1451         # need to find and unpack the vendor's own kernel-devel for patchless
1452         # client build
1453         local kernelrpm
1454         if ! kernelrpm=$(find_linux_rpm "-$DEVEL_KERNEL_TYPE"); then
1455             fatal 1 "Could not find the kernel-$DEVEL_KERNEL_TYPE RPM in ${KERNELRPMSBASE}/${lnxmaj}/${DISTRO}"
1456         fi
1457         if ! lnxrel="$lnxrel" unpack_linux_devel_rpm "$kernelrpm" "-"; then
1458             fatal 1 "Could not find the Linux tree in $kernelrpm"
1459         fi
1460     fi
1461
1462     # ~sigh~  have to make copies of and modify some of the rpm
1463     # infrastructure files so that find-requires can find our unpacked
1464     # kernel-devel artifacts
1465     cp $RPM_HELPERS_DIR/{symset-table,find-requires{,.ksyms}} .
1466     FIND_REQUIRES="$(pwd)/find-requires"
1467     chmod 755 {symset-table,find-requires{,.ksyms}}
1468     local tmp="$(pwd)"
1469     tmp="${tmp//\//\\/}"
1470     ed find-requires <<EOF
1471 1a
1472 set -x
1473 .
1474 /|.*find-requires.ksyms/s/|/| bash -x/
1475 g/ [^ ]*\/\(find-requires\.ksyms\)/s// $tmp\/\1/g
1476 wq
1477 EOF
1478     ed find-requires.ksyms <<EOF
1479 1a
1480 set -x
1481 .
1482 g/\/.*\/\(symset-table\)/s//$tmp\/\1/g
1483 wq
1484 EOF
1485     ed symset-table <<EOF
1486 1a
1487 set -x
1488 .
1489 g/\(\/boot\/\)/s//$tmp\/reused\1/g
1490 g/\(\/usr\/src\/kernels\/\)/s//$tmp\/reused\1/g
1491 wq
1492 EOF
1493
1494     build_ofed "${LINUXOBJ:-$LINUX}" "$OFED_VERSION" ||
1495         fatal 1 "error building OFED"
1496
1497     # now build Lustre
1498     if build_lustre "$LINUX" "$LINUXOBJ"; then
1499         # the build worked.  resolve any symlinked files (i.e. from reuse)
1500         # in RPMS/$arch to real files so that that that huge mess of
1501         # complication known as LTS can copy them yet somewhere else.
1502         # is it any wonder this whole process is so damn so?  anyone ever
1503         # heard of hardlinks?  it's this cool new thing that allows you save
1504         # tons of time and space by creating... well you can go read about
1505         # them if you have not heard about them yet.
1506         # can i say how much the implemenation of all of this really impedes
1507         # RPM reuse?
1508         local dir
1509         for dir in RPMS/*; do
1510             pushd $dir
1511             for file in $(ls); do
1512                 if [ -h $file ]; then
1513                     cp $file foo
1514                     mv foo $file
1515                 fi
1516             done
1517             popd
1518         done
1519         # also, for i?86, make sure all of the RPMs are in RPMS/$TARGET_ARCH
1520         # as that's where LTS expects to find them
1521         for dir in RPMS/*; do
1522             if [ $dir = RPMS/$TARGET_ARCH ]; then
1523                 continue
1524             fi
1525             pushd $dir
1526             local files=$(ls)
1527             if [ -n "$files" ]; then
1528                 cp -al $files ../$TARGET_ARCH
1529             fi
1530             popd
1531         done
1532     else
1533         return 1
1534     fi
1535
1536 }
1537
1538 create_rpmbuild_dirs() {
1539
1540     [ -d RPMS ] || mkdir RPMS
1541     for arch in $BUILD_ARCHS; do
1542         if [[ $arch = i?86 ]]; then
1543             # some stupidity in the sles11 kernel spec requires an RPMS/i386
1544             # even if the target arch is i686
1545             [ -d RPMS/i386 ] || mkdir RPMS/i386
1546         fi
1547         [ -d RPMS/$arch ] || mkdir RPMS/$arch
1548     done
1549     [ -d BUILD ] || mkdir BUILD
1550     [ -d SOURCES ] || mkdir SOURCES
1551     [ -d SPECS ] || mkdir SPECS
1552     [ -d SRPMS ] || mkdir SRPMS
1553
1554 }
1555
1556 new_list() {
1557
1558     echo ""
1559
1560 }
1561
1562 add_list() {
1563     local list="$1"
1564     local item="$2"
1565
1566     echo "$list $item"
1567
1568 }
1569
1570 is_list_member() {
1571     local list="$1"
1572     local item="$2"
1573
1574     [[ $list\  == *\ $item\ * ]]
1575
1576 }
1577
1578 #########################################################################
1579 # Generate a backtrace through the call stack.
1580 #
1581 # Input: None
1582 # Output: None
1583 #########################################################################
1584 backtrace() {
1585     local strip=${1:-1}
1586
1587     local funcname="" sourcefile="" lineno="" n
1588
1589     echo "Call stack: (most recent first)"
1590     for (( n = $strip ; n < ${#FUNCNAME[@]} ; ++n )) ; do
1591         funcname=${FUNCNAME[$n - 1]}
1592         sourcefile=$(basename ${BASH_SOURCE[$n]})
1593         lineno=${BASH_LINENO[$n - 1]}
1594         if [ $n = 1 ]; then
1595             let lineno-=11
1596         fi
1597         # Display function arguments
1598         if [[ ! -z "${BASH_ARGV[@]}" ]]; then
1599             local args newarg j p=0
1600             for (( j = ${BASH_ARGC[$n - 1]}; j > 0; j-- )); do
1601                 newarg=${BASH_ARGV[$j + $p - 1]}
1602                 args="${args:+${args} }'${newarg}'"
1603             done
1604             let p+=${BASH_ARGC[$n - 1]}
1605         fi
1606         echo "  ${funcname} ${args:+${args} }at ${sourcefile}:${lineno}"
1607     done
1608
1609     echo
1610     echo "BEGIN BACKTRACE"
1611
1612     #echo ${BASH_LINENO[*]}
1613     #echo ${BASH_SOURCE[*]}
1614     #echo ${FUNCNAME[*]}
1615     local i=$((${#FUNCNAME[@]} - 1))
1616     while [ $i -ge 0 ]; do
1617         local lineno=${BASH_LINENO[$i]}
1618         if [ $i = 0 ]; then
1619             let lineno-=11
1620         fi
1621         local SOURCELINE="${BASH_SOURCE[$i + 1]}:${lineno}"
1622         # Can't figure out how to get function args from other frames...
1623         local FUNCTION="${FUNCNAME[$i]}()"
1624         echo "$SOURCELINE:$FUNCTION"
1625         i=$((i - 1))
1626     done
1627
1628     echo "END BACKTRACE"
1629
1630     echo $BACKTRACE
1631
1632 }
1633
1634 seen_list=$(new_list)
1635 trap 'set +x;
1636 echo "An unexpected error has occurred at ${BASH_SOURCE[0]##*/}:$((LINENO-1)).
1637 Unfortunately the above line number in the message may or may not be correct,
1638 but details have been send to the lbuild maintainer.  Attempting to continue."; (echo "Untrapped error"
1639 echo
1640 # have we seen this one
1641 echo "checking seen list for ${BASH_SOURCE[0]}:${BASH_LINENO[0]}"
1642
1643 if is_list_member "$seen_list" "${BASH_SOURCE[0]}:${BASH_LINENO[0]}"; then
1644   echo "seen this one already"
1645 else
1646   seen_list=$(add_list "$seen_list" "${BASH_SOURCE[0]}:${BASH_LINENO[0]}")
1647 fi
1648 backtrace
1649 echo
1650 echo "Environment:"
1651 set
1652 ) | mail -s "Untrapped error at ${BASH_SOURCE[0]##*/}:$((LINENO-15)) on $HOSTNAME" brian@sun.com >&2; set $xtrace' ERR
1653 set -E
1654
1655 [ -r ~/.lbuildrc ] && . ~/.lbuildrc
1656
1657 options=$(getopt -o d:D:h -l kerneltree:,distro:,kernelrpm:,reusebuild:,patchless,ldiskfs,ccache,reuse:,norpm,disable-datestamp,external-patches:,timestamp:,extraversion:,kerneldir:,linux:,lustre:,nodownload,nosrc,ofed-version:,publish,release,set-value:,src,stage:,tag:,target:,target-archs:,with-linux:,xen -- "$@")
1658
1659 if [ $? != 0 ]; then
1660     usage 1
1661 fi
1662
1663 eval set -- "$options"
1664
1665 while [ "$1" ]; do
1666     case "$1" in
1667         '')
1668             usage 1
1669             ;;
1670         --ccache)
1671             CCACHE='ccache'
1672             shift
1673             ;;
1674         -d)
1675             CVSROOT=$2
1676             shift 2
1677             ;;
1678         -D)
1679             DATE=$2
1680             shift 2
1681             ;;
1682         --external-patches)
1683             EXTERNAL_PATCHES=$2
1684             shift 2
1685             ;;
1686         --extraversion)
1687             EXTRA_VERSION=$2
1688             shift 2
1689             ;;
1690         --help | -h)
1691             usage 0
1692             ;;
1693         --kerneldir)
1694             KERNELDIR=$2
1695             shift 2
1696             ;;
1697         --kerneltree)
1698             if ! KERNELTREE=$(canon_path "$2"); then
1699                 fatal 1 "Could not determine the canonical location of $2"
1700             fi
1701             shift 2
1702             ;;
1703         --linux | --with-linux)
1704             if ! LINUX=$(canon_path "$2"); then
1705                 fatal 1 "Could not determine the canonical location of $2"
1706             fi
1707             shift 2
1708             ;;
1709         --distro)
1710             DISTRO=$2
1711             shift 2
1712             ;;
1713         --reuserpm)
1714             REUSERPM=$2
1715             shift 2
1716             ;;
1717         --reusebuild)
1718             if ! REUSEBUILD=$(canon_path "$2"); then
1719                 fatal 1 "Could not determine the canonical location of $2"
1720             fi
1721             shift 2
1722             ;;
1723         --norpm)
1724             NORPM=true
1725             shift
1726             ;;
1727         --ldiskfs)
1728             LDISKFSRPM=true
1729             shift
1730             ;;
1731         --patchless)
1732             PATCHLESS=true
1733             shift
1734             ;;
1735         --kernelrpm)
1736             if ! KERNELRPMSBASE=$(canon_path "$2"); then
1737                 fatal 1 "Could not determine the canonical location of $2"
1738             fi
1739             shift 2
1740             ;;
1741         --timestamp)
1742             TIMESTAMP=$2
1743             shift 2
1744             ;;
1745         --lustre)
1746             if ! LUSTRE=$(canon_filepath "$2"); then
1747                 fatal 1 "Could not determine the canonical location of $2"
1748             fi
1749             shift 2
1750             ;;
1751         --nodownload)
1752             DOWNLOAD=false
1753             shift 1
1754             ;;
1755         --nosrc)
1756             DO_SRC=false
1757             shift 1
1758             ;;
1759         --ofed-version)
1760             OFED_VERSION="$2"
1761             shift 2
1762             ;;
1763         --publish)
1764             shift
1765             ;;
1766         --release)
1767             RELEASE=true
1768             shift
1769             ;;
1770         --src)
1771             DO_SRC=true
1772             shift 1
1773             ;;
1774         --stage)
1775             STAGEDIR=$2
1776             shift 2
1777             ;;
1778         --tag)
1779             TAG=$2
1780             shift 2
1781             ;;
1782         --target)
1783             TARGET=$2
1784             shift 2
1785             ;;
1786         --target-archs)
1787             TARGET_ARCHS=$2
1788             shift 2
1789             ;;
1790         --disable-datestamp)
1791             USE_DATESTAMP=
1792             shift
1793             ;;
1794         --xen)
1795             XEN=true
1796             shift
1797             ;;
1798         --set-value)
1799             eval $2
1800             shift 2
1801             ;;
1802         --)
1803             shift
1804             # there are actually some lustre configure flags that we need to
1805             # handle ourselves (but we still give them to configure)
1806             if [[ \ $@\  == *\ --disable-tests\ * ]]; then
1807                 LUSTRE_TESTS=false
1808             fi
1809             CONFIGURE_FLAGS=$@
1810             CONFIGURE_FLAGS="$CONFIGURE_FLAGS --enable-liblustre --enable-liblustre-tests"
1811             break
1812             ;;
1813         *)
1814             usage 1 "Unrecognized option: $1"
1815             ;;
1816     esac
1817 done
1818
1819 check_options
1820
1821 unpack_lustre
1822
1823 # XXX - should we _always_ get the buildid from the META file?  what are the
1824 # other (i.e. non-lustre-tarball use cases of lbuild)?
1825 BUILDID=$(sed -ne '/^BUILDID =/s/.*= *//p' lustre/META)
1826
1827 load_target
1828
1829 if [ -n "$OFED_VERSION" -a "$OFED_VERSION" != "inkernel" ]; then
1830     download_ofed
1831     unpack_ofed || fatal 1 "Error unpacking OFED tarball"
1832 fi
1833
1834 # make sure the RPM build environment is set up
1835 create_rpmbuild_dirs
1836
1837 # if an unpacked kernel source tree was given on the command line
1838 # just build lustre with it (nothing distro kernel specific here)
1839 if [ -n "$LINUX" ]; then
1840     build_ofed "${LINUXOBJ:-$LINUX}" "$OFED_VERSION" ||
1841         fatal 1 "error building OFED"
1842     build_lustre "$LINUX" "$LINUXOBJ"
1843 else
1844     if [ -f "${0%/*}/lbuild-$DISTRO" ]; then
1845         source ${0%/*}/lbuild-$DISTRO
1846
1847         build_with_srpm || fatal 1 "Failed to build_with_srpm"
1848     else
1849         EXTRA_VERSION_DELIMITER=${EXTRA_VERSION_DELIMITER:-"-"}
1850         source ${0%/*}/lbuild.old_school
1851
1852         old_school_download_kernel
1853
1854         build_success=false
1855         if $PATCHLESS; then
1856             patchless_build_sequence && build_success=true
1857         else
1858             [ "$DISTRO" = "sles9" ] && build_sequence_rpm_reuse && build_success=true
1859             if ! $build_success; then
1860                 build_sequence_reuse && build_success=true
1861                 if ! $build_success; then
1862                     build_sequence && build_success=true
1863                     if $build_success; then
1864                         store_for_reuse || echo "Cannot store for future reuse"
1865                     fi
1866                 fi
1867             fi
1868         fi
1869         ( $build_success ) || fatal 1 "Cannot build lustre"
1870     fi
1871 fi
1872
1873 stage