Whamcloud - gitweb
LU-3337 build: add missing build files for sles11sp2 server
[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)
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=${LINUXOBJ:-$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 $TOPDIR/reused" \
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 include tree and digs out the linux release
1180 # from it. It is never called directly, only called from the distro
1181 # specific function find_linux_release() in lbuild-{rhel,sles}.
1182 _find_linux_release() {
1183     local SRC="$1"
1184     local LINUXRELEASEHEADER=""
1185
1186     LINUXRELEASEHEADER=$SRC/include/linux/version.h
1187     if [ -s $SRC/include/generated/utsrelease.h ]; then
1188         LINUXRELEASEHEADER=$SRC/include/generated/utsrelease.h
1189     elif [ -s $SRC/include/linux/utsrelease.h ]; then
1190         LINUXRELEASEHEADER=$SRC/include/linux/utsrelease.h
1191     fi
1192
1193     if [ ! -s $LINUXRELEASEHEADER ]; then
1194         fatal 1 "could not find UTS_RELEASE"
1195     fi
1196
1197     sed -ne 's/#define UTS_RELEASE "\(.*\)"$/\1/p' $LINUXRELEASEHEADER
1198 }
1199
1200 # unpack kernel(/source/devel) RPM
1201 #
1202 # This function and it's setting of $LINUX and $LINUXOBJ is a total hack that
1203 # needs to completely refactored.  It completely ingores that $BUILD_ARCHS may
1204 # contain a list of arches for which rpmbuild commands (including the one for
1205 # lustre itself)
1206 unpack_linux_devel_rpm() {
1207     local kernelrpm="${1}"
1208
1209     [ -f "$kernelrpm" ] || return 255
1210     [ -d $TOPDIR/reused ] || mkdir $TOPDIR/reused || return 255
1211
1212     pushd $TOPDIR/reused &>/dev/null || return 255
1213
1214     if ! rpm2cpio < "$kernelrpm" | cpio -id > /dev/null 2>&1; then
1215         return 255
1216     fi
1217
1218     # call a distro specific hook, if available
1219     if type -p unpack_linux_devel_rpm-$DISTRO; then
1220         if ! unpack_linux_devel_rpm-$DISTRO "$kernelrpm"; then
1221             return 255
1222         fi
1223     fi
1224
1225     popd &>/dev/null
1226
1227     find_linux_devel_paths $TOPDIR/reused
1228
1229     return 0
1230
1231 }
1232
1233 build_kernel_ib() {
1234     local linux="$1"
1235     local kib_prefix="$2"
1236     local kib_rpm="$3"
1237
1238     # build kernel-ib{,-devel}/compat-rdma{,-devel}
1239     local K_SRC="K_SRC"
1240     # ofed 1.3 had a bug in the rpm spec
1241     if [ "$OFED_VERSION" = "1.3" ]; then
1242         K_SRC="KSRC"
1243     fi
1244
1245     local OFED_CORE="--with-core-mod --with-ipoib-mod --with-sdp-mod --with-user_mad-mod --with-user_access-mod --with-addr_trans-mod"
1246     local OFED_HARDWARE="--with-mthca-mod --with-mlx4-mod --with-mlx4_en-mod --with-cxgb3-mod --with-nes-mod"
1247
1248     if compare_version $OFED_VERSION 3.0; then
1249         OFED_CORE="$OFED_CORE --with-madeye-mod --with-rds-mod"
1250     else
1251         OFED_HARDWARE="$OFED_HARDWARE --with-cxgb4-mod"
1252     fi
1253
1254     # some I/B drivers are architecture dependent and kernel-ib's configure
1255     # does not figure it out for us ~sigh~
1256     case "$TARGET_ARCH" in
1257         ppc64)
1258             OFED_HARDWARE="$OFED_HARDWARE --with-ehca-mod"
1259             ;;
1260     esac
1261     # we're no longer shipping the OFED iSCSI target
1262     #OFED_ISCSI="--with-srp-mod --with-srp-target-mod"
1263     OFED_ISCSI="--with-srp-mod"
1264     ## ISER module has no backport support as of OFED 1.5 (i.e. only builds on
1265     ##kernels >= 2.6.30)
1266     #if [[ $OFED_VERSION = 1.[0-4]* ]]; then
1267     #   OFED_ISCSI="$OFED_ISCSI --with-iser-mod"
1268     #fi
1269
1270     # assume we are just rebuilding the SRPM
1271     local BUILD_TYPE=${BUILD_TYPE:-"--rebuild"}
1272     local SOURCE="${TOPDIR}/OFED/SRPMS/${kib_prefix}-*.src.rpm"
1273
1274     # but switch to building from the SPEC if we need to apply patches
1275     if ls ${TOPDIR}/lustre/build/patches/ofed/* >/dev/null; then
1276         BUILD_TYPE="-bb"
1277         rpm --define "_topdir ${TOPDIR}" -ivh $SOURCE
1278         SOURCE="${TOPDIR}/SPECS/${kib_prefix}.spec"
1279         local file ed_fragment1 ed_fragment2 n=1
1280         for file in $(ls ${TOPDIR}/lustre/build/patches/ofed/*.patch); do
1281             ed_fragment1="$ed_fragment1
1282 Patch$n: ${file%%*/}"
1283             ed_fragment2="$ed_fragment2
1284 %patch$n -p0"
1285             cp $file ${TOPDIR}/SOURCES
1286             let n=$n+1
1287         done
1288         for file in $(ls ${TOPDIR}/lustre/build/patches/ofed/*.ed); do
1289             # Only apply the ed-scripts that should be used for the canonical target
1290             # ed-files in ${TOPDIR}/lustre/build/patches/ofed/ have to follow the naming
1291             # convention
1292             # <two-digits>-<descriptive-name>:<canonical_target_1>: ...:<canonical_target_N>.ed
1293             # To apply the same change to multiple canonical target simply specify
1294             # a list of colon separated canoncial target names in the file name.
1295             echo "$file" | grep -q -e ":${CANONICAL_TARGET}:" \
1296                                    -e ":${CANONICAL_TARGET}.ed$"
1297             if [ $? -eq 0 ] ; then
1298                 ed_fragment3="$ed_fragment3
1299 $(cat $file)"
1300                 let n=$n+1
1301             fi
1302         done
1303
1304         if [ $n -gt 1 ]; then
1305             ed $SOURCE <<EOF
1306 /^Source: /a
1307 $ed_fragment1
1308 .
1309 /^%setup /a
1310 $ed_fragment2
1311 .
1312 $ed_fragment3
1313 wq
1314 EOF
1315         fi
1316     fi
1317
1318     local linuxrelease=$(find_linux_release)
1319     if compare_version $OFED_VERSION 3.0; then
1320         local OFA_KERNEL_RELEASE=$(echo -n ${linuxrelease} | sed -e 's/-/_/g')
1321     fi
1322     if ! $RPMBUILD $BUILD_TYPE --define 'build_kernel_ib 1' --define 'build_kernel_ib_devel 1' \
1323                   ${FIND_REQUIRES:+--define "__find_requires $FIND_REQUIRES"} \
1324                   --define "_topdir ${TOPDIR}" --target ${TARGET_ARCH} \
1325                   --define "KVERSION ${linuxrelease}" \
1326                   --define "$K_SRC ${linux}" \
1327                   --define "LIB_MOD_DIR /lib/modules/${linuxrelease}/updates" \
1328                   ${OFA_KERNEL_RELEASE:+--define "_release $OFA_KERNEL_RELEASE"} \
1329                   --define "configure_options --without-quilt $OFED_CORE $OFED_HARDWARE $OFED_ISCSI" \
1330                   ${SOURCE} 2>&1; then
1331         fatal 1 "Error building ${kib_rpm}"
1332     fi
1333
1334 }
1335
1336 store_for_reuse() {
1337     local articles="$1"
1338     local module="$2"
1339     local location="$3"
1340     local signature="$4"
1341     local use_links="$5"
1342
1343     local linkflag=""
1344     if $use_links; then
1345         linkflag="l"
1346     fi
1347
1348     local default_iface=$(/sbin/ip route get 192.1.1.1 | sed -ne 's/.* dev \(.*\)  * src .*/\1/p')
1349     if [ -z "$default_iface" ]; then
1350         fatal 1 "Failed to determine the default route interface"
1351     fi
1352     local unique_id=$(/sbin/ip addr show dev $default_iface | sed -ne '/ inet /s/ *inet \(.*\)\/.*/\1/p' | head -1)
1353     if [ -z "$unique_id" ]; then
1354         fatal 1 "Failed to determine a unique id from interface $default_interface"
1355     fi
1356
1357     local finallocation="$location"/"$signature"/"$module"
1358     location="$location"/"$signature-${unique_id}"/"$module"
1359     mkdir -p "$location"
1360     # the cleanup script removes any directory that doesn't have a
1361     # .lastused, so let's try to prevent that as soon as we can
1362     # this solution still slightly racy with the cleanup script
1363     # but the race is a lot tighter now
1364     touch -t 197001010000 "$location/.lastused"
1365     ## use eval/echo here to make sure shell expansions are performed
1366     #if ! cp -a${linkflag} $(eval echo $articles) "$location"; then
1367     local article
1368     for article in $(eval echo $articles); do
1369         if ! cp -a${linkflag} "$article" "$location"; then
1370             error "Failed to copy \"$article\" to \"$location\" in store_for_reuse()"
1371             # rename the cache location so that it's not cached
1372             # product, but is around for analysis
1373             mv "$location"{,-bad-$(date +%s)} ||
1374                 error "failed to clean up a failed cache attempt" \
1375                       "in \"$location\" -- manual cleanup will be" \
1376                       "necessary"
1377             return 1
1378         fi
1379     done
1380
1381     # flag the cache as complete (i.e. in case lbuild was previously
1382     # interrupted while caching)
1383     touch "$location/.lastused"
1384
1385     # put the temporary location into the final location
1386     # (last one wins)
1387     mkdir -p "${finallocation%/*}"
1388     mv "$location" "$finallocation"
1389     rmdir "${location%/*}"
1390     return 0
1391
1392 }
1393
1394 reuse() {
1395     local module="$1"
1396     local dest="$2"
1397     local use_links="${3:-false}"
1398     local signature="$4"
1399
1400     if [ -n "$REUSEBUILD" ] && [ -d "$REUSEBUILD/$signature/$module" ]; then
1401         if [ ! -f "$REUSEBUILD/$signature/$module/.lastused" ]; then
1402             # the .lastused flag is populated at the end of the caching to
1403             # signal that the caching was completed.  if that flag is not
1404             # there, then the cache is invalid (and should be removed in fact)
1405             mv "$REUSEBUILD/$signature/$module"{,-bad-$(date +%s)} ||
1406                 fatal 1 "failed to clean up a bad cache in location $REUSEBUILD/$signature/$module\" -- manual cleanup will be necessary"
1407             return 1
1408         fi
1409
1410         # so that we know how stale this entry is
1411         touch $REUSEBUILD/$signature/$module/.lastused
1412
1413         if $use_links; then
1414             if ls $REUSEBUILD/$signature/$module/* >/dev/null 2>&1; then
1415                 cp -al $REUSEBUILD/$signature/$module/* $dest/
1416             fi
1417         else
1418             # copying is pretty heavy
1419             # cp -a $REUSEBUILD/$signature/$module/* $dest/
1420             # do some creative symlinking instead
1421             local dir
1422             for dir in BUILD SRPMS SPECS; do
1423                 if ls $REUSEBUILD/$signature/$module/$dir/* >/dev/null 2>&1; then
1424                     ln -s $REUSEBUILD/$signature/$module/$dir/* $dest/$dir
1425                 fi
1426             done
1427             # sources have to be copied by file because we need SOURCES to
1428             # be a dir we can write into
1429 # could overrun ls's arg list here
1430             #ls $REUSEBUILD/$signature/$module/SOURCES/* |
1431             find $REUSEBUILD/$signature/$module/SOURCES/ -type f |
1432                 xargs ln -t $dest/SOURCES -s
1433
1434             # same for RPMS/* dirs
1435 # could overrun ls's arg list here
1436             #ls $REUSEBUILD/$signature/$module/RPMS/$TARGET_ARCH/* |
1437             local dir
1438             for dir in $REUSEBUILD/$signature/$module/RPMS/*; do
1439                 mkdir -p $dest/RPMS/${dir##*/}
1440                 find $dir -type f |
1441                   xargs ln -t $dest/RPMS/${dir##*/} -s
1442             done
1443         fi
1444         return 0
1445     else
1446         return 1
1447     fi
1448 }
1449
1450 basearch() {
1451     local arch="$1"
1452
1453     if [[ $arch = i[3456]86 ]]; then
1454         echo "i386"
1455     else
1456         echo "$arch"
1457     fi
1458
1459 }
1460
1461 build_kernel_with_srpm() {
1462     local outfd=$1
1463
1464     if [ -z "$outfd" ] || [ $outfd = 1 ]; then
1465         fatal 1 "You must supply a file descriptor to ${FUNCNAME[0]} and it cannot be 1"
1466     fi
1467
1468     # need to generate the patch for this target
1469     do_patch_linux false >&${outfd}    # sets global $FULL_PATCH (yeah, yuck)
1470
1471     # get an md5sum of the kernel patch + config for reuse check
1472     # XXX really, there needs to be a signature and a CONFIG_FILE per arch
1473     #     in BUILD_ARCHS
1474     local release_str
1475     if $RELEASE; then
1476         local release_str="RELEASE=$RELEASE\n"
1477     fi
1478
1479     if $USE_BUILD_CACHE && [ -n "$REUSEBUILD" ]; then
1480         local REUSE_SIGNATURE=$({ echo -en $release_str;
1481                                   echo $BUILD_GEN;
1482                                   cat $CONFIG_FILE $TARGET_FILE $FULL_PATCH;
1483                                   cat ${0%/lbuild}/lbuild ${0%/lbuild}/lbuild-${DISTRO}; } |
1484                                 md5sum | cut -d" " -f1)
1485         # see if we can link to the reuse pool
1486         # XXX - hrm.  i'm not convinced this doesn't belong in the reuse
1487         #       "library"
1488         local CAN_LINK_FOR_REUSE=false
1489         touch $REUSEBUILD/$$
1490         if cp -al $REUSEBUILD/$$ $TOPDIR/ 2>/dev/null; then
1491             CAN_LINK_FOR_REUSE=true
1492         fi
1493         rm $REUSEBUILD/$$
1494     fi
1495
1496     # the extra version string to use for the kernel (which might be a reused
1497     # kernel, remember)
1498     local kernel_extra_version=""
1499     if ! $USE_BUILD_CACHE || ! reuse kernel "$TOPDIR" "$CAN_LINK_FOR_REUSE" \
1500                                    "$REUSE_SIGNATURE"; then
1501         # nothing cached, build from scratch
1502         if [ ! -r "$KERNELDIR/$KERNEL_SRPM" ]; then
1503             echo "Downloading kernel SRPM" >&${outfd}
1504             download_srpm "$CANONICAL_TARGET" "$KERNEL_SRPM" >&${outfd}
1505         fi
1506
1507         if ! rpm -ivh $KERNELDIR/$KERNEL_SRPM \
1508                   --define "_topdir $TOPDIR" >&${outfd} 2>&1; then
1509             # should we clean this up or leave it for analysis?
1510             #rm -rf $RPMTOPDIR
1511             fatal 1 "Error installing kernel SRPM."
1512         fi
1513
1514         # put the Lustre kernel patch into the RPM build tree
1515         cp $FULL_PATCH $TOPDIR/SOURCES/linux-${lnxmaj}-lustre.patch
1516         prepare_and_build_srpm >&${outfd} ||
1517             fatal 1 "failed to prepare_and_build_srpm"
1518
1519         if [ -z "$REUSE_SIGNATURE" ]; then
1520             echo "No reuse signature was caculated so not storing the built kernel" >&${outfd}
1521         else
1522             # store the resulting kernel RPM build tree for future use
1523             echo "Storing the built kernel for future reuse" >&${outfd}
1524             if ! store_for_reuse "$TOPDIR/{SPECS,SOURCES,SRPMS,RPMS}" \
1525                                  "kernel" "$REUSEBUILD" "$REUSE_SIGNATURE" \
1526                                  "$CAN_LINK_FOR_REUSE"; then
1527                 error "Failed to store kernel RPMS for reuse"
1528                 echo "unknown" >&${outfd}
1529                 return 1
1530             fi
1531         fi
1532     fi  # build reuse
1533
1534     # figure out the EXTRA_VERSION of the kernel we built or are re-using
1535     local KERNEL_RPM
1536     if ! KERNEL_RPM=$(find_rpm "$TOPDIR/RPMS/$TARGET_ARCH/" provides "^kernel(-default)? ="); then
1537         fatal 1 "Failed to find a kernel RPM in $TOPDIR/RPMS/$TARGET_ARCH/"
1538     fi
1539     kernel_extra_version=$(rpm -q --queryformat "%{RELEASE}" -p $TOPDIR/RPMS/$TARGET_ARCH/$KERNEL_RPM)
1540
1541     # should now have the following RPMs
1542     # $TOPDIR/RPMS/$arch/kernel-lustre-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1543     # $TOPDIR/RPMS/$arch/kernel-lustre-devel-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1544     # $TOPDIR/RPMS/$arch/kernel-lustre-headers-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1545     # $TOPDIR/RPMS/$arch/kernel-lustre-debuginfo-common-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1546     # $TOPDIR/RPMS/$arch/kernel-lustre-debuginfo-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1547
1548     echo $kernel_extra_version
1549     return 0
1550
1551 }
1552
1553 # build OFED
1554 # globals used:
1555 #    TOPDIR
1556 #    REUSEBUILD, USE_BUILD_CACHE
1557 #    CONFIGURE_FLAGS
1558
1559 build_ofed() {
1560     local linux="$1"
1561     local ofed_version="$2"
1562     local kib_prefix
1563     local kib_rpm
1564
1565     # if an ofed version is given, then it means use OFED proper,
1566     # not any vendor specific "inkernel" version
1567     if [ -z "$ofed_version" ]; then
1568         return 0
1569     fi
1570
1571     if [ "$ofed_version" = "inkernel" ]; then
1572         # see if there is a distro specific override for this and use
1573         # that if it exists
1574         # XXX we need to better integrate a distro specific override with
1575         #     the rest of this function so that all of the reuse cache
1576         #     stuff is leveraged given that 80% of this function is reuse
1577         if type -p build_ofed-${DISTRO}; then
1578             local ofed_location
1579             ofed_location=$(build_ofed-${DISTRO} ${STDOUT})
1580             local rc=${PIPESTATUS[0]}
1581             CONFIGURE_FLAGS="--with-o2ib=${ofed_location} ${CONFIGURE_FLAGS}"
1582             return $rc
1583         else
1584             return 0
1585         fi
1586     elif compare_version $OFED_VERSION 3.0; then
1587         kib_prefix="ofa_kernel"
1588         kib_rpm="kernel-ib"
1589     else
1590         kib_prefix="compat-rdma"
1591         kib_rpm="compat-rdma"
1592     fi
1593
1594     # build kernel-ib/compat-rdma
1595     if $USE_BUILD_CACHE && [ -n "$REUSEBUILD" ]; then
1596         local REUSE_SIGNATURE=$({ echo "$ofed_version";
1597                                   echo "$(find_linux_release;
1598                                   echo "$BUILD_GEN")";
1599                                   cat "${linux}/include/linux/autoconf.h";
1600                                   cat "${0%/lbuild}/lbuild" ;
1601                                   cat "${0%/lbuild}/lbuild-${DISTRO}"; } |
1602                                 md5sum | cut -d" " -f1)
1603         # see if we can link to the reuse pool
1604         # XXX - hrm.  i'm not convinced this doesn't belong in the reuse
1605         #       "library"
1606         local CAN_LINK_FOR_REUSE=false
1607         touch $REUSEBUILD/$$
1608         if cp -al $REUSEBUILD/$$ $TOPDIR/; then
1609             CAN_LINK_FOR_REUSE=true
1610         fi
1611         rm $REUSEBUILD/$$
1612     fi
1613
1614     if ! $USE_BUILD_CACHE || ! reuse ofed "$TOPDIR" "$CAN_LINK_FOR_REUSE" \
1615                                    "$REUSE_SIGNATURE"; then
1616         if [ -n "$REUSE_SIGNATURE" ]; then
1617             # stash away the existing built articles for a moment
1618             mkdir bak
1619             mv {BUILD,{S,}RPMS,S{OURCE,PEC}S} bak
1620             function mv_back {
1621                 pushd bak
1622                 find . | cpio -pudlm ..
1623                 popd
1624                 rm -rf bak
1625             }
1626             create_rpmbuild_dirs
1627         fi
1628         # build it
1629         build_kernel_ib "${linux}" "${kib_prefix}" "${kib_rpm}"
1630
1631         if [ -z "$REUSE_SIGNATURE" ]; then
1632             echo "No reuse signature was caculated so not storing the built ofed"
1633         else
1634             # store the resulting RPM build tree for future use
1635             echo "Storing the built ofed for future reuse"
1636             if ! store_for_reuse "$TOPDIR/{SPECS,SOURCES,BUILD,SRPMS,RPMS}" \
1637                                  "ofed" "$REUSEBUILD" "$REUSE_SIGNATURE" \
1638                                  "$CAN_LINK_FOR_REUSE"; then
1639                 error "Failed to store OFED RPMS for reuse"
1640                 mv_back
1641                 return 1
1642             fi
1643             # put the stuff we stashed away back
1644             mv_back
1645         fi
1646     fi
1647
1648     pushd "$TOPDIR" >/dev/null
1649     rm -rf ${kib_rpm}-devel
1650     mkdir ${kib_rpm}-devel
1651     cd ${kib_rpm}-devel
1652     # the actual ofed RPMs don't have the -rc$n or -$date string appened that
1653     # might be present on the file
1654     local linuxrelease=$(find_linux_release)
1655     ofed_version=$(echo $ofed_version |
1656                    sed -re 's/-(20[0-9]{6,6}-[0-9]{4,4}|rc[0-9]*)$//')
1657     local rpm=$(ls $TOPDIR/RPMS/*/${kib_rpm}-devel-${ofed_version}-${linuxrelease//-/_}.*.rpm)
1658     if ! rpm2cpio < $rpm | cpio -id; then
1659         fatal 1 "could not unpack the ${kib_rpm}-devel rpm."
1660     fi
1661     CONFIGURE_FLAGS="--with-o2ib=$(pwd)/usr/src/${kib_prefix} ${CONFIGURE_FLAGS}"
1662     popd >/dev/null
1663
1664 }
1665
1666 build_with_srpm() {
1667
1668     if ! $PATCHLESS; then
1669         local kernel_extra_version
1670         if ! kernel_extra_version=$(build_kernel_with_srpm ${STDOUT}); then
1671             fatal 1 "Failed to build the kernel from it's SRPM"
1672         fi
1673
1674         for arch in $BUILD_ARCHS; do
1675             local kernel_devel_rpm
1676             if ! kernel_devel_rpm=$(find_rpm "$TOPDIR/RPMS/$arch/" provides "^$(devel_kernel_name $KERNEL_LUSTRE_NAMING) ="); then
1677                 fatal 1 "Failed to find a kernel development RPM in $TOPDIR/RPMS/$arch/"
1678             fi
1679
1680             # install the -devel RPM in preparation for modules builds
1681             if ! lnxrel="$kernel_extra_version" unpack_linux_devel_rpm \
1682                            "$TOPDIR/RPMS/$arch/$kernel_devel_rpm"; then
1683                 fatal 1 "Could not find the Linux tree in $TOPDIR/RPMS/$arch/$kernel_devel_rpm"
1684             fi
1685         done
1686     else
1687         # need to find and unpack the vendor's own kernel-devel for patchless
1688         # client build
1689         local kernelrpm
1690         if ! kernelrpm=$(find_linux_rpm "-$DEVEL_KERNEL_TYPE"); then
1691             fatal 1 "Could not find the kernel-$DEVEL_KERNEL_TYPE RPM in ${KERNELRPMSBASE}/${lnxmaj}/${DISTRO}"
1692         fi
1693         if ! lnxrel="$lnxrel" unpack_linux_devel_rpm "$kernelrpm" "-"; then
1694             fatal 1 "Could not find the Linux tree in $kernelrpm"
1695         fi
1696     fi
1697
1698     # ~sigh~  have to make copies of and modify some of the rpm
1699     # infrastructure files so that find-requires can find our unpacked
1700     # kernel-devel artifacts
1701     cp $RPM_HELPERS_DIR/{symset-table,find-requires{,.ksyms}} .
1702     FIND_REQUIRES="$(pwd)/find-requires"
1703     chmod 755 {symset-table,find-requires{,.ksyms}}
1704     local tmp="$(pwd)"
1705     tmp="${tmp//\//\\/}"
1706     ed find-requires <<EOF
1707 1a
1708 set -x
1709 .
1710 /|.*find-requires.ksyms/s/|/| bash -x/
1711 g/ [^ ]*\/\(find-requires\.ksyms\)/s// $tmp\/\1/g
1712 wq
1713 EOF
1714     ed find-requires.ksyms <<EOF
1715 1a
1716 set -x
1717 .
1718 g/\/.*\/\(symset-table\)/s//$tmp\/\1/g
1719 wq
1720 EOF
1721     ed symset-table <<EOF
1722 1a
1723 set -x
1724 .
1725 g/\(\/boot\/\)/s//$tmp\/reused\1/g
1726 g/\(\/usr\/src\/kernels\/\)/s//$tmp\/reused\1/g
1727 wq
1728 EOF
1729
1730     build_ofed "${LINUXOBJ:-$LINUX}" "$OFED_VERSION" ||
1731         fatal 1 "error building OFED"
1732
1733     # now build Lustre
1734     if build_lustre "$LINUX" "$LINUXOBJ"; then
1735         # the build worked.  resolve any symlinked files (i.e. from reuse)
1736         # in RPMS/$arch to real files so that that that huge mess of
1737         # complication known as LTS can copy them yet somewhere else.
1738         # is it any wonder this whole process is so damn so?  anyone ever
1739         # heard of hardlinks?  it's this cool new thing that allows you save
1740         # tons of time and space by creating... well you can go read about
1741         # them if you have not heard about them yet.
1742         # can i say how much the implemenation of all of this really impedes
1743         # RPM reuse?
1744         local dir
1745         for dir in RPMS/*; do
1746             pushd $dir
1747             for file in $(ls); do
1748                 if [ -h $file ]; then
1749                     cp $file foo
1750                     mv foo $file
1751                 fi
1752             done
1753             popd
1754         done
1755         # also, for i?86, make sure all of the RPMs are in RPMS/$TARGET_ARCH
1756         # as that's where LTS expects to find them
1757         for dir in RPMS/*; do
1758             if [ $dir = RPMS/$TARGET_ARCH ]; then
1759                 continue
1760             fi
1761             pushd $dir
1762             local files=$(ls)
1763             if [ -n "$files" ]; then
1764                 cp -al $files ../$TARGET_ARCH
1765             fi
1766             popd
1767         done
1768     else
1769         return 1
1770     fi
1771
1772 }
1773
1774 create_rpmbuild_dirs() {
1775
1776     [ -d RPMS ] || mkdir RPMS
1777     for arch in $BUILD_ARCHS; do
1778         if [[ $arch = i?86 ]]; then
1779             # some stupidity in the sles11 kernel spec requires an RPMS/i386
1780             # even if the target arch is i686
1781             [ -d RPMS/i386 ] || mkdir RPMS/i386
1782         fi
1783         [ -d RPMS/$arch ] || mkdir RPMS/$arch
1784     done
1785     [ -d RPMS/noarch ] || mkdir RPMS/noarch
1786     [ -d BUILD ] || mkdir BUILD
1787     [ -d SOURCES ] || mkdir SOURCES
1788     [ -d SPECS ] || mkdir SPECS
1789     [ -d SRPMS ] || mkdir SRPMS
1790
1791 }
1792
1793 new_list() {
1794
1795     echo ""
1796
1797 }
1798
1799 add_list() {
1800     local list="$1"
1801     local item="$2"
1802
1803     echo "$list $item"
1804
1805 }
1806
1807 is_list_member() {
1808     local list="$1"
1809     local item="$2"
1810
1811     [[ $list\  == *\ $item\ * ]]
1812
1813 }
1814
1815 #########################################################################
1816 # Generate a backtrace through the call stack.
1817 #
1818 # Input: None
1819 # Output: None
1820 #########################################################################
1821 backtrace() {
1822     local strip=${1:-1}
1823
1824     local funcname="" sourcefile="" lineno="" n
1825
1826     echo "Call stack: (most recent first)"
1827     for (( n = $strip ; n < ${#FUNCNAME[@]} ; ++n )) ; do
1828         funcname=${FUNCNAME[$n - 1]}
1829         sourcefile=$(basename ${BASH_SOURCE[$n]})
1830         lineno=${BASH_LINENO[$n - 1]}
1831         if [ $n = 1 ]; then
1832             let lineno-=11
1833         fi
1834         # Display function arguments
1835         if [[ ! -z "${BASH_ARGV[@]}" ]]; then
1836             local args newarg j p=0
1837             for (( j = ${BASH_ARGC[$n - 1]}; j > 0; j-- )); do
1838                 newarg=${BASH_ARGV[$j + $p - 1]}
1839                 args="${args:+${args} }'${newarg}'"
1840             done
1841             let p+=${BASH_ARGC[$n - 1]}
1842         fi
1843         echo "  ${funcname} ${args:+${args} }at ${sourcefile}:${lineno}"
1844     done
1845
1846     echo
1847     echo "BEGIN BACKTRACE"
1848
1849     #echo ${BASH_LINENO[*]}
1850     #echo ${BASH_SOURCE[*]}
1851     #echo ${FUNCNAME[*]}
1852     local i=$((${#FUNCNAME[@]} - 1))
1853     while [ $i -ge 0 ]; do
1854         local lineno=${BASH_LINENO[$i]}
1855         if [ $i = 0 ]; then
1856             let lineno-=11
1857         fi
1858         local SOURCELINE="${BASH_SOURCE[$i + 1]}:${lineno}"
1859         # Can't figure out how to get function args from other frames...
1860         local FUNCTION="${FUNCNAME[$i]}()"
1861         echo "$SOURCELINE:$FUNCTION"
1862         i=$((i - 1))
1863     done
1864
1865     echo "END BACKTRACE"
1866
1867     echo $BACKTRACE
1868
1869 }
1870
1871 seen_list=$(new_list)
1872 trap 'set +x;
1873 echo "An unexpected error has occurred at ${BASH_SOURCE[0]##*/}:$((LINENO-1)).
1874 Unfortunately the above line number in the message may or may not be correct,
1875 but details have been send to the lbuild maintainer.  Attempting to continue."; (echo "Untrapped error"
1876 echo
1877 # have we seen this one
1878 echo "checking seen list for ${BASH_SOURCE[0]}:${BASH_LINENO[0]}"
1879
1880 if is_list_member "$seen_list" "${BASH_SOURCE[0]}:${BASH_LINENO[0]}"; then
1881   echo "seen this one already"
1882 else
1883   seen_list=$(add_list "$seen_list" "${BASH_SOURCE[0]}:${BASH_LINENO[0]}")
1884 fi
1885 backtrace
1886 ) ; set $xtrace' ERR
1887 set -E
1888
1889 [ -r ~/.lbuildrc ] && . ~/.lbuildrc
1890
1891 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 -- "$@")
1892
1893 if [ $? != 0 ]; then
1894     usage 1
1895 fi
1896
1897 eval set -- "$options"
1898
1899 while [ "$1" ]; do
1900     case "$1" in
1901         '')
1902             usage 1
1903             ;;
1904         --ccache)
1905             CCACHE='ccache'
1906             shift
1907             ;;
1908         -d)
1909             CVSROOT=$2
1910             shift 2
1911             ;;
1912         -D)
1913             DATE=$2
1914             shift 2
1915             ;;
1916         --external-patches)
1917             EXTERNAL_PATCHES=$2
1918             shift 2
1919             ;;
1920         --extraversion)
1921             EXTRA_VERSION=$2
1922             shift 2
1923             ;;
1924         --help | -h)
1925             usage 0
1926             ;;
1927         --kerneldir)
1928             KERNELDIR=$2
1929             shift 2
1930             ;;
1931         --kerneltree)
1932             if ! KERNELTREE=$(canon_path "$2"); then
1933                 fatal 1 "Could not determine the canonical location of $2"
1934             fi
1935             shift 2
1936             ;;
1937         --linux | --with-linux)
1938             if ! LINUX=$(canon_path "$2"); then
1939                 fatal 1 "Could not determine the canonical location of $2"
1940             fi
1941             shift 2
1942             ;;
1943         --distro)
1944             DISTRO=$2
1945             shift 2
1946             ;;
1947         --reuserpm)
1948             REUSERPM=$2
1949             shift 2
1950             ;;
1951         --reusebuild)
1952             if ! REUSEBUILD=$(canon_path "$2"); then
1953                 fatal 1 "Could not determine the canonical location of $2"
1954             fi
1955             shift 2
1956             ;;
1957         --norpm)
1958             NORPM=true
1959             shift
1960             ;;
1961         --ldiskfs)
1962             LDISKFSRPM=true
1963             shift
1964             ;;
1965         --noiokit)
1966             IOKITRPM=false
1967             shift
1968             ;;
1969         --patchless)
1970             PATCHLESS=true
1971             shift
1972             ;;
1973         --kernelrpm)
1974             if ! KERNELRPMSBASE=$(canon_path "$2"); then
1975                 fatal 1 "Could not determine the canonical location of $2"
1976             fi
1977             shift 2
1978             ;;
1979         --timestamp)
1980             TIMESTAMP=$2
1981             shift 2
1982             ;;
1983         --lustre)
1984             if ! LUSTRE=$(canon_filepath "$2"); then
1985                 fatal 1 "Could not determine the canonical location of $2"
1986             fi
1987             shift 2
1988             ;;
1989         --nodownload)
1990             DOWNLOAD=false
1991             shift 1
1992             ;;
1993         --nosrc)
1994             DO_SRC=false
1995             shift 1
1996             ;;
1997         --ofed-version)
1998             OFED_VERSION="$2"
1999             shift 2
2000             ;;
2001         --publish)
2002             shift
2003             ;;
2004         --release)
2005             RELEASE=true
2006             shift
2007             ;;
2008         --src)
2009             DO_SRC=true
2010             shift 1
2011             ;;
2012         --stage)
2013             STAGEDIR=$2
2014             shift 2
2015             ;;
2016         --tag)
2017             TAG=$2
2018             shift 2
2019             ;;
2020         --target)
2021             TARGET=$2
2022             shift 2
2023             ;;
2024         --target-archs)
2025             TARGET_ARCHS=$2
2026             shift 2
2027             ;;
2028         --disable-datestamp)
2029             USE_DATESTAMP=
2030             shift
2031             ;;
2032         --xen)
2033             XEN=true
2034             shift
2035             ;;
2036         --set-value)
2037             eval $2
2038             shift 2
2039             ;;
2040         --)
2041             shift
2042             # there are actually some lustre configure flags that we need to
2043             # handle ourselves (but we still give them to configure)
2044             if [[ \ $@\  == *\ --disable-tests\ * ]]; then
2045                 LUSTRE_TESTS=false
2046             fi
2047             CONFIGURE_FLAGS=$@
2048             CONFIGURE_FLAGS="$CONFIGURE_FLAGS --enable-liblustre --enable-liblustre-tests"
2049             break
2050             ;;
2051         *)
2052             usage 1 "Unrecognized option: $1"
2053             ;;
2054     esac
2055 done
2056
2057 check_options
2058
2059 unpack_lustre
2060
2061 # XXX - should we _always_ get the buildid from the META file?  what are the
2062 # other (i.e. non-lustre-tarball use cases of lbuild)?
2063 BUILDID=$(sed -ne '/^BUILDID =/s/.*= *//p' lustre/META)
2064
2065 load_target
2066
2067 if [ -n "$OFED_VERSION" -a "$OFED_VERSION" != "inkernel" ]; then
2068     download_ofed
2069     unpack_ofed || fatal 1 "Error unpacking OFED tarball"
2070 fi
2071
2072 # make sure the RPM build environment is set up
2073 create_rpmbuild_dirs
2074
2075 # if an unpacked kernel source tree was given on the command line
2076 # just build lustre with it (nothing distro kernel specific here)
2077 if [ -n "$LINUX" ]; then
2078     build_ofed "${LINUXOBJ:-$LINUX}" "$OFED_VERSION" ||
2079         fatal 1 "error building OFED"
2080     build_lustre "$LINUX" "$LINUXOBJ"
2081 else
2082     if [ ! -f "${LBUILD_DIR}/lbuild-$DISTRO" ]; then
2083         fatal 1 "${LBUILD_DIR}/lbuild-$DISTRO not found"
2084     fi
2085     source ${LBUILD_DIR}/lbuild-$DISTRO
2086     build_with_srpm || fatal 1 "Failed to build_with_srpm"
2087 fi
2088
2089 stage