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