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