Whamcloud - gitweb
LU-17416 utils: option for lctl get_param to skip links
[fs/lustre-release.git] / lustre.spec.in
1 # SPDX-License-Identifier: GPL-2.0
2
3 #
4 # This file is part of Lustre, http://www.lustre.org/
5 #
6 # lustre.spec.in
7 #
8 # spec file template for RHEL package builds
9 #
10
11 # Declare rpmbuild --with/--without parameters
12 %bcond_without servers
13 %bcond_without ldiskfs
14 %bcond_with zfs
15 %bcond_without lustre_tests
16 %bcond_without lustre_utils
17 %bcond_without lustre_iokit
18 %bcond_without lustre_modules
19 %bcond_with gss
20 %bcond_with gss_keyring
21 %bcond_without manpages
22 %bcond_without shared
23 %bcond_without static
24 %bcond_with systemd
25 %bcond_without mpi
26 %bcond_with kabi
27 %bcond_with multiple_lnds
28 %bcond_with mofed
29 %bcond_without o2ib
30 %bcond_with kfi
31 %bcond_with gni
32 %bcond_without l_getsepol
33
34 %if %{with multiple_lnds}
35 %global enable_multi_lnds 1
36 %endif
37
38 # LUTF Turn off brp-python-precompile script as we don't want the python files
39 # to be compiled on installation
40 %global __os_install_post %(echo '%{__os_install_post}' | sed -e 's!/usr/lib[^[:space:]]*/brp-python-bytecompile[[:space:]].*$!!g')
41
42 # By default both gss and gss keyring are disabled.
43 # gss keyring requires the gss core. If the builder
44 # request gss_keyring we must enable gss core even if
45 # the builder attempts to disable gss.
46 %if %{with gss_keyring}
47     %define with_gss 1
48 %endif
49
50 %if %{without servers}
51     # --without servers overrides --with {ldiskfs|zfs}
52     # so undefine the internal variables set by bcond_*
53     %undefine with_ldiskfs
54     %undefine with_zfs
55 %endif
56
57 %if %{without shared} && %{without static}
58 # need exit to stop build because error only displays a message
59 %{error: you can't disable both library types}
60 %{exit 1}
61 %endif
62
63 # lustre_tests depends on lustre_utils
64 %if %{without lustre_utils}
65 %undefine with_lustre_tests
66 %endif
67
68 %{!?version: %global version @VERSION@}
69 # if you want a custom kernel version set it variable with $ver.$arch
70 %{!?kver:    %global kver    @LINUXRELEASE@}
71 # cut epoch for kmodtool
72 %define _kver %(echo %{kver} | sed -e 's/^[0-9]*://')
73 # trust version from kdir - but it can lost 'epoch'
74 %if %{defined kdir}
75         %define _take_kver 1
76 %endif
77 %if %{defined kobjdir}
78         %define _take_kobj 1
79 %endif
80 %{!?kdir:    %global kdir    /lib/modules/%{_kver}/source}
81 %{!?kobjdir: %global kobjdir %(if [ "%{kdir}" = "/lib/modules/%{_kver}/source" ]; then echo "/lib/modules/%{_kver}/build"; else echo "%{kdir}"; fi)}
82
83 %if %{defined _take_kver}
84 # as an alternative to this implementation we could simply "make -C $kdir kernelversion"
85 %global kver %(files="include/generated/utsrelease.h include/linux/utsrelease.h include/linux/version.h"; for f in $files; do if test -r %{kobjdir}/$f && grep UTS_RELEASE %{kobjdir}/$f >/dev/null; then sed -ne '/^#define UTS_RELEASE/s/.*"\\(.*\\)"$/\\1/p' %{kobjdir}/$f; break; fi; done)
86 %define _kver %kver
87 %endif
88
89 %if %{undefined _flavor}
90 %if 0%{?suse_version} >= 1310 && %{defined _take_kobj}
91         %global _flavor %(echo %{_kver} | sed -e 's/^.*-//')
92 %else
93         %global _flavor default
94 %endif
95 %endif
96
97 # We set this because kernel_module_package has its own method of identifying
98 # which kernel to build against, and it is unlikely that its decision will
99 # match with Lustre's method of selecting which kernel to build against.
100 # By setting this variable, we override kernel_module_package's kernel
101 # selection with our selection.
102 # kmodtool failed to take a version if epoch set
103 %global kernel_version %_kver
104
105 # in order to get kernel symset and/or kernel module dependencies into
106 # the RPM, in order to support weak-modules, the internal dependency gen-
107 # erator needs to be disabled
108 # this is done with (reduce the double % down to a single %):
109 #
110 # %%global _use_internal_dependency_generator 0
111 #
112 # on SLES10, /usr/lib/rpm/macros already sets this, so no harm in also
113 # defining it here (until Suse changes their mind)
114 #
115 # on RHEL5, however, we do need to explicitly disable the internal dep-
116 # endency generator and allow the external one be used
117 # but since RedHat's kABI is only a subset of the total kernel ABI, it
118 # doesn't include all of the symbols we (or OFED for that matter) need
119 # until RedHat includes all of the symbols we need in their symsets we
120 # cannot support weak-modules
121 # we did e-mail the maintainer of all of this stuff @redhat but got no
122 # response from them
123 #%%global _use_internal_dependency_generator 0
124
125 %if 0%{?rhel} > 7 || 0%{?fedora} > 33
126 ## SUSE uses another tool for provides:
127 ## https://github.com/openSUSE/kernel-source/blob/master/patches.rpmify/Add-ksym-provides-tool.patch
128 %global __find_provides   %{_sourcedir}/find-provides
129 %endif
130
131 # Set the package name prefix
132 %if %{undefined lustre_name}
133     %if %{with servers}
134         %global lustre_name lustre
135     %else
136         %global lustre_name lustre-client
137     %endif
138 %endif
139
140 %if %{with lustre_modules}
141 %if %{undefined kmoddir}
142     %if %{defined kernel_module_package_moddir}
143         %global kmoddir %{kernel_module_package_moddir}
144     %else
145         %if %{defined suse_kernel_module_package}
146             %global kmoddir updates
147         %else
148             %global kmoddir extra
149         %endif
150     %endif
151 %endif
152
153 %global modules_fs_path /lib/modules/%{_kver}/%{kmoddir}
154 # requires want to set a version including epoch
155 %global krequires %(echo %{kver} | sed -e 's/\.x86_64$//' -e 's/\.i[3456]86$//' -e 's/-smp$//' -e 's/-bigsmp$//' -e 's/[-.]ppc64$//' -e 's/\.aarch64$//' -e 's/-default$//' -e 's/-%{_flavor}//')
156
157 %if "%{_vendor}" == "redhat" || "%{_vendor}" == "fedora" || 0%{?openEuler}
158         %global requires_kmod_name kmod-%{lustre_name}
159         %global requires_kmod_osd_zfs_name kmod-%{lustre_name}-osd-zfs
160         %if %{with lustre_tests}
161                 %global requires_kmod_tests_name kmod-%{lustre_name}-tests
162         %endif
163         %global requires_kmod_version %{version}
164 #for Suse
165 %else
166         %global requires_kmod_name %{lustre_name}-kmp
167         %global requires_kmod_osd_zfs_name %{lustre_name}-osd-zfs-kmp
168         %if %{with lustre_tests}
169                 %global requires_kmod_tests_name %{lustre_name}-tests-kmp
170         %endif
171         %if 0%{?suse_version} >= 1200
172                 %global requires_kmod_version %{version}_k%(echo %{krequires} | sed -r 'y/-/_/; s/^(2\.6\.[0-9]+)_/\\1.0_/;')
173         %else
174                 %global requires_kmod_version %{version}_%(echo %{krequires} | sed -r 'y/-/_/; s/^(2\.6\.[0-9]+)_/\\1.0_/;')
175         %endif
176 %endif
177 %endif
178
179 # RHEL >= 7 comes with systemd
180 %if 0%{?rhel} >= 7
181 %define with_systemd 1
182 %endif
183
184 # Fedora >= 15 comes with systemd, but only >= 18 has
185 # the proper macros
186 %if 0%{?fedora} >= 18
187 %define with_systemd 1
188 %endif
189
190 # opensuse >= 12.1 comes with systemd, but only >= 13.1
191 # has the proper macros
192 %if 0%{?suse_version} >= 1310
193 %define with_systemd 1
194 %endif
195
196 # openEuler comes with systemd
197 %if 0%{?openEuler}
198 %define with_systemd 1
199 %endif
200
201 # Detect when mlnx-ofa_kernel-devel contents exist and mofed_source to 0
202 %define mofed_src_path  $(echo %{?configure_args} | tr ' ' '\\n' | grep -- '--with-o2ib=' | cut -c 13-)
203 %define mofed_source    %(test -f %mofed_src_path/Module.symvers; echo $?)
204 # Update the search path for mofed_scripts
205 %if 0%{?mofed_source} > 0
206 %define mofed_default_path      /usr/src/ofa_kernel/
207 %else
208 %define mofed_default_path      %{mofed_src_path}
209 %endif
210
211 %{!?mpi_name: %global mpi_name openmpi}
212
213 Summary: Lustre File System
214 Name: %{lustre_name}
215 Version: %{version}
216 Release: 1%{?dist}
217 License: GPL-2.0-only AND LGPL-2.1-or-later
218 %if 0%{?suse_version} >= 1310
219 # SUSE needs Group for the kernel_module_package macro
220 Group: System/Kernel
221 %endif
222 Source: lustre-%{version}.tar.gz
223 Source1: kmp-lustre.preamble
224 Source2: kmp-lustre.files
225 Source3: kmp-lustre-osd-ldiskfs.preamble
226 Source4: kmp-lustre-osd-ldiskfs.files
227 Source5: kmp-lustre-osd-zfs.preamble
228 Source6: kmp-lustre-osd-zfs.files
229 Source7: kmp-lustre-tests.preamble
230 Source8: kmp-lustre-tests.files
231 Source9: find-provides
232 Source10: find-provides.ksyms
233 Source11: kmp-lnet-socklnd.preamble
234 Source12: kmp-lnet-socklnd.files
235 Source13: kmp-lnet-o2iblnd.preamble
236 Source14: kmp-lnet-o2iblnd.files
237 Source15: kmp-lnet-gnilnd.preamble
238 Source16: kmp-lnet-gnilnd.files
239 Source17: kmp-lnet-kfilnd.preamble
240 Source18: kmp-lnet-kfilnd.files
241 Source19: kmp-lnet-in-kernel-o2iblnd.preamble
242 Source20: kmp-lnet-in-kernel-o2iblnd.files
243 URL: https://wiki.whamcloud.com/
244 BuildRoot: %{_tmppath}/lustre-%{version}-root
245 %if %{with lustre_modules}
246 Requires: %{requires_kmod_name} = %{requires_kmod_version}
247 %endif
248 %if %{with lustre_tests_lutf}
249 Requires: python3 >= 3.6.0
250 BuildRequires: python3-devel >= 3.6.0, swig
251 %endif
252 BuildRequires: libtool pkgconfig(yaml-0.1) pkgconfig(zlib) pkgconfig(libnl-3.0) flex bison
253 %if "%{_vendor}" == "redhat"
254 BuildRequires: redhat-rpm-config
255 BuildRequires: pkgconfig
256 %if 0%{?rhel} > 7 || 0%{?fedora} > 33 || 0%{?rhel} < 1
257 Suggests: bash-completion
258 %endif
259 %else
260 %if 0%{?openEuler}
261 BuildRequires: openEuler-rpm-config
262 %if %{with ldiskfs}
263 BuildRequires: kernel-debugsource
264 %endif
265 %endif
266 BuildRequires: pkg-config
267 %endif
268 %if %{with gss}
269 BuildRequires: krb5-devel openssl-devel
270 %endif
271 %if %{with lustre_modules}
272 # abuild (auto-build) used by SUSE Open Build Service needs kernel-source as
273 # a build requirement, but the code which extracts these requirements does not
274 # understand the percent-open-close-paren construct aka %%()
275 #  [NOTE: a percent abovie is doubled to avoid yet another rpmbuild warning]
276 # such occurances as failures.  So the following dance allows the requirements
277 # to be seen by abuild, but ignored by lbuild.
278 %if "%(echo $USER)" != "abuild"
279 %else
280 BuildRequires: kernel-source
281 %endif
282 %endif
283 %if %{with servers}
284 Requires: %{name}-osd
285 Requires: %{name}-osd-mount
286 Obsoletes: lustre-server < %{version}
287 Provides: lustre-server = %{version}-%{release}
288 %endif
289 Obsoletes: lustre-client < %{version}
290 Provides: lustre-client = %{version}-%{release}
291 %if "%{_vendor}" == "redhat" || "%{_vendor}" == "fedora" || 0%{?openEuler}
292 #suse don't support selinux
293 BuildRequires: pkgconfig(libselinux)
294 %endif
295 %if %{with l_getsepol}
296 BuildRequires: pkgconfig(libselinux) openssl-devel
297 %endif
298 %if %{with lustre_modules}
299 %if %{with mofed}
300 %if 0%{?mofed_source} > 0
301 BuildRequires: mlnx-ofa_kernel-devel
302 %endif
303 %if %{with multiple_lnds}
304 %if "%{_vendor}" == "redhat" || 0%{?openEuler}
305 Requires: kmod-mlnx-ofa_kernel
306 %else
307 Requires: mlnx-ofa_kernel-kmp
308 %endif
309 %endif
310 %endif
311 %if 0%{?rhel} >= 8 || 0%{?openEuler}
312 BuildRequires: kernel-rpm-macros
313 %endif
314 %if 0%{?suse_version} >= 1530
315 BuildRequires: rpm-build >= 4.14.3
316 %endif
317 BuildRequires: %kernel_module_package_buildreqs
318 # need to provide a /usr/lib/${uname -r)/build dir
319 BuildRequires: kernel >= 3.10
320 %if "%{_vendor}" == "redhat"
321 %if %{with kabi}
322 BuildRequires: kernel-abi-whitelists
323 %endif
324 %endif
325 %endif
326
327 %if %{with systemd}
328 Requires(post): systemd
329 Requires(preun): systemd
330 Requires(postun): systemd
331 BuildRequires: pkgconfig(systemd)
332 %endif
333
334 %description
335 Userspace tools and files for the Lustre file system.
336
337 %if %{with lustre_modules}
338 %if 0%{?rhel} == 7
339 # until we have achieved full kABI compatibility we need to
340 # restrict the kernel range that can be used to the kernel
341 # version from the RHEL minor release
342 # this is supposed to be done for kmods automatically but
343 # RHBZ#1467319 seems to be getting in the way
344 # this is true for el7.0 through el7.4
345 %define preamble %{expand:%(
346 TMPFILE=`mktemp`
347 cat %{SOURCE1} > $TMPFILE
348 kver=%{kernel_version}
349 linuxversion=${kver%%%%-*}
350 linuxrelease=${kver##*-}
351 kabiminor=${linuxrelease%%%%.*}
352 echo "Requires:       kernel < $linuxversion-$((kabiminor+1)), kernel >= $linuxversion-$((kabiminor))" >> $TMPFILE
353 echo $TMPFILE
354 )}
355 %else
356 %define preamble %{SOURCE1}
357 %endif
358 %kernel_module_package -n %{name} -p %preamble -f %SOURCE2 %{_flavor}
359
360 %if %{with ldiskfs}
361 %kernel_module_package -n %{name}-osd-ldiskfs -p %SOURCE3 -f %SOURCE4 %{_flavor}
362 %if %{with lustre_utils}
363 %package osd-ldiskfs-mount
364 Summary: Lustre mount's ldiskfs-specific helper library
365 BuildRequires: e2fsprogs-devel >= 1.44.3 pkgconfig(mount)
366 Requires: ldiskfsprogs > 1.45.6
367 Provides: lustre-osd-mount = %{version}
368 Provides: %{name}-osd-mount = %{version}
369 Obsoletes: %{name}-osd-mount < %{version}
370 Obsoletes: lustre-osd-mount < %{version}
371
372 %description osd-ldiskfs-mount
373 Provide a shared library (dso) that can be loaded into various
374 lustre tools (mount/mkfs) to provide support for ldisfs
375
376 # with lustre_utils
377 %endif
378 # with ldiskfs
379 %endif
380
381 %if %{with zfs}
382 %global confzfsdobjpath %(echo '%configure_args' | grep -q -- --with-zfs-obj= ; echo $?)
383 %kernel_module_package -n %{name}-osd-zfs -p %SOURCE5 -f %SOURCE6 %{_flavor}
384 %if %{with lustre_utils}
385 %package osd-zfs-mount
386 Summary: Lustre mount's zfs-specific helper library
387 BuildRequires: pkgconfig(mount)
388 Provides: %{name}-osd-mount = %{version}
389 Obsoletes: lustre-osd-mount < %{version}
390 %if 0%{confzfsdobjpath} != 0
391 BuildRequires: (libzfs-devel or libzfs4-devel or libzfs5-devel)
392 %endif
393 # end confzfsdobjpath
394 # Tests also require zpool from zfs package:
395 Requires: zfs
396 Requires: %{requires_kmod_osd_zfs_name}
397 Provides: %{name}-osd-mount = %{version}
398 Provides: %{name}-osd-zfs-mount = %{version}
399 Requires: %{name}-osd-zfs = %{version}
400
401 %description osd-zfs-mount
402 Provide a shared library (dso) that can be loaded into various
403 lustre tools (mount/mkfs) to provide support for ZFS.
404
405 # with lustre_utils
406 %endif
407 # with zfs
408 %endif
409 # with lustre_modules
410 %endif
411
412 %if %{with servers}
413 %package resource-agents
414 Summary: HA Resuable Cluster Resource Scripts for Lustre
415 Requires: %{name}
416 Requires: resource-agents
417
418 %description resource-agents
419 A set of scripts to operate Lustre resources in a High Availablity
420 environment for both Pacemaker and rgmanager.
421 %endif
422
423 %package devel
424 Summary: Lustre include headers
425 Provides: lustre-devel = %{version}
426 Requires: %{lustre_name} = %{version}
427 %if %{with lustre_modules}
428 Requires: %{requires_kmod_name} = %{requires_kmod_version}
429 %endif
430
431 %description devel
432 This package contains the header files needed for building additional
433 applications against the Lustre / LNet utilities libraries.
434
435 :> lustre-devel.files
436
437 %if %{with lustre_tests}
438 %package tests
439 Summary: Lustre testing framework
440 Provides: %{name}-tests = %{version}
441 %if %{with lustre_iokit}
442 Requires: %{name} = %{version}, lustre-iokit
443 %else
444 Requires: %{name} = %{version}
445 %endif
446 Requires: lustre-devel = %{version}
447 %if 0%{?rhel} >= 8 || 0%{?suse_version} >= 1500 || 0%{?openEuler}
448 Requires: python3 >= 3.6.0, python3-PyYAML
449 %endif
450 %if %{with lustre_modules}
451 Requires: %{requires_kmod_name} = %{requires_kmod_version}
452 Requires: %{requires_kmod_tests_name} = %{requires_kmod_version}
453 %endif
454 %if %{with lustre_tests_lutf}
455 Requires: python3 >= 3.6.0
456 %endif
457 Requires: attr, rsync, lsof, /usr/bin/getconf
458 Requires: /usr/sbin/getenforce, acl, /usr/bin/killall, /usr/bin/ping, bc
459 # Of the supported targets, only rhel7 doesn't support Recommends.
460 %if 0%{?rhel} > 7 || 0%{?fedora} > 33 || 0%{?rhel} < 1
461 Recommends: perl, dbench, iozone
462 # Either of these is sufficient
463 Suggests: pdsh, clush
464 %endif
465 %if %{with mpi}
466 %if "%{mpi_name}" == "mpich"
467 BuildRequires: mpich-devel
468 %endif
469 %if "%{mpi_name}" == "openmpi"
470 %if "%{_vendor}" == "redhat" || 0%{?openEuler} || 0%{?suse_version} < 1500
471 BuildRequires: openmpi-devel
472 %else
473 BuildRequires: openmpi2-devel
474 %endif
475 # openmpi
476 %endif
477 # mpi
478 %endif
479
480 %description tests
481 This package contains a set of test binaries and scripts that are intended
482 to be used by the Lustre testing framework.
483
484 %if %{with lustre_modules}
485 %kernel_module_package -n %{name}-tests -p %SOURCE7 -f %SOURCE8 %{_flavor}
486 %endif
487 %endif
488
489 %if %{with multiple_lnds}
490 # begin multiple_lnds
491 %kernel_module_package -n %{name}-lnet-socklnd -p %SOURCE11 -f %SOURCE12 %{_flavor}
492 %if %{with o2ib}
493 ## re-write post/preun generated by kmodtool [ls -s and rm -f]
494 %define inkernmod %{modules_fs_path}/%{lustre_name}/net/in-kernel-ko2iblnd.ko
495 %define inkernsym %{modules_fs_path}/%{lustre_name}/net/ko2iblnd.ko
496 %define ofed_module_package %{expand:%(
497 TMPFILE=`mktemp`
498 cat <<EOF > $TMPFILE
499 %kernel_module_package -n %{name}-lnet-in-kernel-o2iblnd -p %SOURCE19 -f %SOURCE20 %{_flavor}
500 EOF
501 sed -i -e '/^%%post.*/a ln -sf %{inkernmod} %{inkernsym}' -e '/^%%preun.*/a rm -f %{inkernsym}' $TMPFILE
502 echo $TMPFILE
503 )}
504 %{expand:%(cat '%{ofed_module_package}')}
505 %endif
506 %if %{with mofed}
507 %kernel_module_package -n %{name}-lnet-o2iblnd -p %SOURCE13 -f %SOURCE14 %{_flavor}
508 %endif
509 %if %{with gni}
510 %kernel_module_package -n %{name}-lnet-gnilnd -p %SOURCE15 -f %SOURCE16 %{_flavor}
511 %endif
512 %if %{with kfi}
513 %kernel_module_package -n %{name}-lnet-kfilnd -p %SOURCE17 -f %SOURCE18 %{_flavor}
514 %endif
515 # end multiple_lnds
516 %endif
517
518 %if %{with lustre_iokit}
519 %package -n lustre-iokit
520 Summary: Collection of benchmark tools for a cluster with the Lustre file system
521 Requires: sg3_utils
522 %if 0%{?rhel} > 7 || 0%{?fedora} > 33 || 0%{?rhel} < 1
523 Recommends: perl
524 %endif
525
526 %description -n lustre-iokit
527 This package includes five tools:
528 sgpdd-survey:
529 A test of the 'bare metal' performance, bypassing as much of the kernel as we can. Uses the sgp_dd utility.
530
531 obdfilter-survey
532 This survey can be run in 3 modes to test disk I/O including the filesystem,
533 network I/O, and disk I/O via the network.  The script does sequential I/O
534 with varying numbers of threads and objects (files) by using lctl::test_brw
535 to drive the echo_client connected to local or remote obdfilter instances,
536 or remote obdecho instances.
537
538 ost-survey
539 This survey tests the client-to-disk performance of individual OSTs, and
540 ranks then for comparison.
541
542 stats-collect
543 This script will collect IO stats on a defined set of nodes.
544
545 ior-survey:
546 A script to run the IOR benchmark. The latest version can be downloaded from
547 https://github.com/hpc/ior/
548
549 mds-survey:
550 This survey tests the local metadata performance using the echo_client to drive
551 the MDD layer to perform operations. It is run with multiple threads (to
552 simulate MDT service threads) locally on the MDS node, and does not need Lustre
553 clients in order to run
554
555 lst-survey:
556 This survey tests LNet performance between a group of clients and servers.
557 %endif
558
559 %if 0%{?suse_version}
560 %debug_package
561 %endif
562 %prep
563 %setup -qn lustre-%{version}
564 ln lustre/ChangeLog ChangeLog-lustre
565 ln lnet/ChangeLog ChangeLog-lnet
566
567 %build
568 # Set an explicit path to our Linux tree, if we can.
569 cd $RPM_BUILD_DIR/lustre-%{version}
570
571 # Store the CFLAGS and LDFLAGS that would normally be used in the UTILS_CFLAGS
572 # and UTILS_LDFLAGS environment variables so that we use can them when compiling
573 # the user-space code in lustre/utils and lnet/utils. As of RHEL 8.0, the
574 # __global_* variants are deprecated in favour of build_cflags, etc. If neither
575 # style is available (e.g. on SLES), then these just end up as empty strings.
576 export UTILS_CFLAGS="%{?build_cflags:%{build_cflags}}%{!?build_cflags:%{?__global_cflags:%{__global_cflags}}}"
577 export UTILS_LDFLAGS="%{?build_ldflags:%{build_ldflags}}%{!?build_ldflags:%{?__global_ldflags:%{__global_ldflags}}}"
578
579 # RHEL7 on PPC64 needs __SANE_USERSPACE_TYPES__ defined so that __s64 and __u64
580 # are presented to user-land as long long instead of long long. Without this it
581 # will fail the format check whenever such a variable is printed.
582 %if 0%{?rhel}
583 %ifarch ppc64
584 export UTILS_CFLAGS="${UTILS_CFLAGS} -D__SANE_USERSPACE_TYPES__=1"
585 %endif
586 %endif
587
588 # Disable any hardening or annotation since this doesn't make sense for
589 # kernel code, and reset "optflags" so that the vendor's overzealous flags don't
590 # create build failures.
591 %define optflags -g -O2 -Werror
592 %undefine _annotated_build
593 %undefine _hardened_build
594
595 CONFIGURE_ARGS="%{?configure_args}"
596 if [ -n "$CONFIGURE_ARGS" ]; then
597         # make sure %%kdir and %%kobjdir are not in the configure arguments
598         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux=[^ ][^ ]* \?//')
599         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux-obj=[^ ][^ ]* \?//')
600         # remove --with-kmp-moddir from configure arguments,
601         # it will be set --with-kmp-moddir=%%kmoddir
602         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-kmp-moddir=[^ ][^ ]* \?//')
603         # remove env variables from config cache built by initial configure,
604         # and create dedicated cache in temporary build directory
605         if [ -f "$CONFIG_CACHE_FILE" ]; then
606                 TMP_CONFIG_CACHE="$(mktemp --tmpdir newconfig-XXXXXXXX.cache)"
607                 sed -e "/ac_cv_env/d" \
608                     -e "/am_cv_CC_dependencies_compiler_type/d" \
609                     -e "/lb_cv_mpi_tests/d" \
610                        "$CONFIG_CACHE_FILE" > $TMP_CONFIG_CACHE
611                 CONFIGURE_ARGS="$CONFIGURE_ARGS --cache-file=$TMP_CONFIG_CACHE"
612         fi
613 fi
614
615 # we need to eval "configure" because $CONFIGURE_ARGS could have a quoted
616 # string in it which we don't want word splitted by the shell
617 # also remove (build|host|target) options because they will be specified
618 # inside $CONFIGURE_ARGS
619 # kmod tools/scripts require "name" directory with kernel modules
620
621 %if 0%{?rhel} >= 9
622 %define _configure eval ./configure
623 %define eval_configure %configure
624 %else
625 %define eval_configure %(echo -n '%configure' | sed -e 's#\./configure#eval ./configure#' -e 's/--\\(build\\|host\\|target\\)=[^ ][^ ]* //g')
626 %endif
627
628 %if %{with mpi}
629 %if "%{mpi_name}" == "mpich"
630 %{?_mpich_load}
631 %endif
632 %if "%{mpi_name}" == "openmpi"
633 %{?_openmpi_load}
634 %endif
635 # mpi
636 %endif
637
638 # kfabric can be either cray-kfabric or kfabric
639 WITH_KFI=""
640 %if %{with kfi}
641         for kfabric in cray-kfabric kfabric
642         do
643                 path=/usr/src/${kfabric}/default/Module.symvers
644                 if [ -f $path ]; then
645                         WITH_KFI="--with-kfi=$(dirname $path)"
646                         break;
647                 fi
648         done
649 %endif
650
651 WITH_O2IB=""
652 %if %{with mofed}
653         o2ib_path=$(find -H %{mofed_default_path} -type d -name ofed_scripts | xargs dirname)
654         if [ -z "$o2ib_path" ]; then
655                 echo "ERROR: could not find OFED devel headers"
656                 exit 1
657         fi
658         if [ $(echo $o2ib_path | wc -w) -ge 2 ]; then
659                 echo "ERROR: multiple OFED versions installed"
660                 exit 1
661         fi
662         WITH_O2IB="--with-o2ib=${o2ib_path}"
663 %else
664 %if %{without o2ib}
665         WITH_O2IB="--with-o2ib=no"
666 %endif
667 %endif
668
669 %eval_configure $CONFIGURE_ARGS \
670         %{?with_lustre_tests:--enable-tests}%{!?with_lustre_tests:--disable-tests} \
671         %{?with_lustre_utils:--enable-utils}%{!?with_lustre_utils:--disable-utils} \
672         %{?with_lustre_modules:--enable-modules}%{!?with_lustre_modules:--disable-modules} \
673         %{!?with_shared:--disable-shared} \
674         %{!?with_static:--disable-static} \
675         %{!?with_lustre_iokit:--disable-iokit} \
676         %{!?with_ldiskfs:--disable-ldiskfs} \
677         %{!?with_servers:--disable-server} \
678         %{!?with_zfs:--without-zfs} \
679         %{!?with_gss:--disable-gss} \
680         %{!?with_gss_keyring:--disable-gss-keyring} \
681         %{!?with_manpages:--disable-manpages} \
682         %{!?with_systemd:--with-systemdsystemunitdir=no} \
683         %{?with_systemd:--with-systemdsystemunitdir=%{_unitdir}} \
684         %{?with_multiple_lnds:--enable-multiple-lnds} \
685         ${WITH_KFI} \
686         %{?with_gni:--enable-gni} \
687         ${WITH_O2IB} \
688         %{!?with_l_getsepol:--disable-l_getsepol} \
689         --with-linux=%{kdir} \
690         --with-linux-obj=%{kobjdir} \
691         --with-kmp-moddir=%{kmoddir}/%{name}
692
693 %if %{with servers}
694 if ! grep -q define[[:space:]]*HAVE_SERVER_SUPPORT config.h 2> /dev/null; then
695         echo "Error: Server Support configured but not found"
696         false
697 fi
698 %endif
699
700 make %{?_smp_mflags} -s %{?make_args}
701
702 %if %{with mpi}
703 %if "%{mpi_name}" == "mpich"
704 %{?_mpich_unload}
705 %endif
706 %if "%{mpi_name}" == "openmpi"
707 %{?_openmpi_unload}
708 %endif
709 # mpi
710 %endif
711
712 %install
713
714 %if %{with mpi}
715 %if "%{mpi_name}" == "mpich"
716 %{?_mpich_load}
717 %endif
718 %if "%{mpi_name}" == "openmpi"
719 %{?_openmpi_load}
720 %endif
721 # mpi
722 %endif
723
724 make install DESTDIR=$RPM_BUILD_ROOT
725
726 %if %{with lustre_modules}
727 # RHEL's kernel_module_path macro expects that all the modules
728 # in a kmod package will be in modules_fs_path/<sub packagename>
729 # but Lustre installs all of the modules in a single pass into
730 # a shared location.  Since this is a restriction imposed by
731 # RHEL, we handle this here in the spec file rather than in
732 # Lustre's build system.  This is not expected to bother SLES's
733 # kernel_module_path macro.
734 basemodpath=$RPM_BUILD_ROOT%{modules_fs_path}/%{name}
735 %{__install} -D -m 0644 ${PWD}/Module.symvers %{buildroot}/Module.symvers
736 %if %{with ldiskfs}
737 mkdir -p $basemodpath-osd-ldiskfs/fs
738 mv $basemodpath/fs/osd_ldiskfs.ko $basemodpath-osd-ldiskfs/fs/osd_ldiskfs.ko
739 mv $basemodpath/fs/ldiskfs.ko $basemodpath-osd-ldiskfs/fs/ldiskfs.ko
740 %endif
741 %if %{with zfs}
742 mkdir -p $basemodpath-osd-zfs/fs
743 mv $basemodpath/fs/osd_zfs.ko $basemodpath-osd-zfs/fs/osd_zfs.ko
744 %endif
745 %if %{with lustre_tests}
746 mkdir -p $basemodpath-tests/fs
747 mv $basemodpath/fs/llog_test.ko $basemodpath-tests/fs/llog_test.ko
748 mv $basemodpath/fs/obd_test.ko $basemodpath-tests/fs/obd_test.ko
749 mv $basemodpath/fs/kinode.ko $basemodpath-tests/fs/kinode.ko
750 [ -f $basemodpath/fs/ldlm_extent.ko ] && mv $basemodpath/fs/ldlm_extent.ko $basemodpath-tests/fs/ldlm_extent.ko
751 %endif
752 %endif
753
754 %if %{without mpi}
755 if [ -d $RPM_BUILD_ROOT%{_libdir}/openmpi ] ; then
756         rm -fr $RPM_BUILD_ROOT%{_libdir}/openmpi
757 fi
758 if [ -d $RPM_BUILD_ROOT%{_libdir}/mpich ] ; then
759         rm -fr $RPM_BUILD_ROOT%{_libdir}/mpich
760 fi
761 %endif
762
763 :> lustre.files
764
765 %if %{with servers} && %{with lustre_utils}
766 # The .ha_v2 extension identifies the heartbeat resource agent as using
767 # legacy syntax. Install a compatibility symlink to avoid conflicts when
768 # newer-style agents are added.
769 ln -s Lustre.ha_v2 $RPM_BUILD_ROOT%{_sysconfdir}/ha.d/resource.d/Lustre
770 echo '%dir %{_sysconfdir}/ha.d' >>lustre.files
771 echo '%dir %{_sysconfdir}/ha.d/resource.d' >>lustre.files
772 echo '%{_sysconfdir}/ha.d/resource.d/Lustre.ha_v2' >>lustre.files
773 echo '%{_sysconfdir}/ha.d/resource.d/Lustre' >>lustre.files
774 %endif
775
776 # systemd is on redhat, fedora, and suse
777 %if %{with systemd}
778 echo '%{_unitdir}/lnet.service' >>lustre.files
779 echo '%{_unitdir}/lsvcgss.service' >>lustre.files
780 %endif
781
782 %if "%{_vendor}" == "redhat" || 0%{?openEuler}
783 # The following scripts are Red Hat specific
784 %if %{with servers}
785 echo '%{_sysconfdir}/init.d/lustre' >>lustre.files
786 echo '%{_sysconfdir}/sysconfig/lustre' >>lustre.files
787 %if %{with gss_keyring}
788 echo '%{_sysconfdir}/init.d/lsvcgss' >>lustre.files
789 echo '%config(noreplace) %{_sysconfdir}/sysconfig/lsvcgss' >>lustre.files
790 %endif
791 %endif
792
793 %if %{without systemd}
794 echo '%{_sysconfdir}/init.d/lnet' >>lustre.files
795 %endif
796 %endif
797 %if %{with gss_keyring}
798 echo '%config(noreplace) %{_sysconfdir}/request-key.d/lgssc.conf' >>lustre.files
799 %endif
800
801 # fc18 needs 'x' permission for library files
802 find $RPM_BUILD_ROOT -name \*.so -type f -exec chmod +x {} \;
803
804 rm -f $RPM_BUILD_ROOT%{_libdir}/liblnetconfig.la
805 %if %{with static}
806 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.a' >>lustre.files
807 %endif
808 %if %{with shared}
809 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so' >>lustre-devel.files
810 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so.*' >>lustre.files
811 %endif
812
813 %if %{with ldiskfs}
814 echo '%{_libdir}/libiam.a' >>lustre.files
815 %endif
816
817 %if %{with lustre_utils}
818 mkdir -p $RPM_BUILD_ROOT/%{_datadir}/lustre
819 if [ -d $RPM_BUILD_ROOT%{_libdir}/lustre ] ; then
820         find $RPM_BUILD_ROOT%{_libdir}/@PACKAGE@ -name \*.la -type f -exec rm -f {} \;
821 fi
822 %endif
823
824 echo '%{_prefix}/lib/firewalld/services/*.xml' >>lustre.files
825 %if %{with lustre_modules}
826 # mark modules executable for find-debuginfo.sh
827 find $RPM_BUILD_ROOT/lib/modules -name \*.ko -type f -exec chmod u+x {} \;
828 %endif
829
830 rm -f $RPM_BUILD_ROOT%{_libdir}/liblustreapi.la
831
832 %if %{with lustre_tests}
833 :> lustre-tests.files
834 %if %{with mpi}
835 %if "%{mpi_name}" == "mpich"
836 %{?_mpich_load}
837 %endif
838 %if "%{mpi_name}" == "openmpi"
839 %{?_openmpi_load}
840 %endif
841 # mpi
842 %endif
843 echo '%dir %{_libdir}/lustre' >>lustre-tests.files
844 echo '%dir %{_libdir}/lustre/tests' >>lustre-tests.files
845 echo '%{_libdir}/lustre/tests/*' >>lustre-tests.files
846 echo '%{_bindir}/mcreate' >>lustre-tests.files
847 echo '%{_bindir}/statx' >>lustre-tests.files
848 echo '%{_sbindir}/wirecheck' >>lustre-tests.files
849 echo '%{_sbindir}/wiretest' >>lustre-tests.files
850 if [ -n "$MPI_BIN" ]; then
851         echo "$MPI_BIN/*" >>lustre-tests.files
852 fi
853 %if %{with lustre_tests_lutf}
854 echo '%{_libdir}/lustre/tests/lutf/*' >>lustre-tests.files
855 %endif
856 %endif
857
858 %if %{with lustre_tests_lutf}
859 echo '%{_libdir}/lustre/tests/lutf/*' >>lustre-tests.files
860 %endif
861
862 %files devel -f lustre-devel.files
863 %defattr(-,root,root)
864 %{_libdir}/pkgconfig/lustre.pc
865 %if %{with static}
866 %{_libdir}/liblustreapi.a
867 %endif
868 %if %{with shared}
869 %{_libdir}/liblustreapi.so
870 %endif
871 %{_includedir}/lustre
872 %if %{with lustre_modules}
873 %{_includedir}/linux/lnet
874 %{_includedir}/linux/lustre
875 %else
876 %exclude %{_includedir}/linux/lnet
877 %exclude %{_includedir}/linux/lustre
878 %endif
879
880 %files -f lustre.files
881 %defattr(-,root,root)
882 %{_sbindir}/*
883 %if %{with lustre_tests}
884 %exclude %{_sbindir}/wirecheck
885 %exclude %{_sbindir}/wiretest
886 %endif
887 %if %{with zfs}
888 %exclude %{_sbindir}/zfsobj2fid
889 %endif
890 %if %{with lustre_utils}
891 %if %{with servers}
892 %dir %{_libexecdir}/lustre
893 %{_libexecdir}/lustre/lc_common
894 %{_libexecdir}/lustre/haconfig
895 %{_bindir}/lustre_req_history
896 %{_bindir}/remove_changelog
897 %{_bindir}/remove_updatelog
898 %{_bindir}/lsvcgss_sysd
899 %endif
900
901 %{_bindir}/llobdstat
902 %{_bindir}/lljobstat
903 %{_bindir}/llstat
904 %{_bindir}/plot-llstat
905 %{_datadir}/lustre
906
907 %{_bindir}/lfs
908 %{_bindir}/lfs_migrate
909 /sbin/mount.lustre
910 %if %{with servers}
911 /sbin/mount.lustre_tgt
912 %endif
913 @BASH_COMPLETION_DIR@
914 %endif
915
916 %if %{with manpages}
917 %{_mandir}/man?/*
918 %endif
919
920 %if %{with shared}
921 %{_libdir}/liblustreapi.so.*
922 %endif
923 %{_udevrulesdir}/99-lustre.rules
924 %if %{with servers}
925 %{_udevrulesdir}/99-lustre-server.rules
926 %endif
927 %if %{with zfs}
928 %config(noreplace) %{_sysconfdir}/ldev.conf
929 %endif
930 %config(noreplace) %{_sysconfdir}/lnet.conf
931 %config(noreplace) %{_sysconfdir}/modprobe.d/ko2iblnd.conf
932 %if %{with lustre_utils}
933 %config(noreplace) %{_sysconfdir}/lnet_routes.conf
934 %endif
935 %if %{with lustre_modules}
936 %exclude /Module.symvers
937 %if %{with shared}
938 %if %{with ldiskfs}
939 %if %{with lustre_utils}
940 %files osd-ldiskfs-mount
941 %defattr(-,root,root)
942 %dir %{_libdir}/@PACKAGE@
943 %{_libdir}/@PACKAGE@/mount_osd_ldiskfs.so
944 %endif
945 %endif
946 %endif
947
948 %if %{with shared}
949 %if %{with zfs}
950 %if %{with lustre_utils}
951 %files osd-zfs-mount
952 %defattr(-,root,root)
953 %dir %{_libdir}/@PACKAGE@
954 %{_libdir}/@PACKAGE@/mount_osd_zfs.so
955 %{_sysconfdir}/zfs/zed.d/*
956 %endif
957 %endif
958 %endif
959
960 # with lustre_modules
961 %endif
962
963 %if %{with servers}
964 %files resource-agents
965 %defattr(0755,root,root)
966 %dir %{_prefix}/lib/ocf
967 %dir %{_prefix}/lib/ocf/resource.d
968 %{_prefix}/lib/ocf/resource.d/lustre/
969 %endif
970
971 %if %{with lustre_tests}
972 %files tests -f lustre-tests.files
973 %defattr(-,root,root)
974 %endif
975
976 %if %{with lustre_iokit}
977 %files -n lustre-iokit
978 %defattr(-, root, root)
979 %{_bindir}/iokit-config
980 %{_bindir}/iokit-gather-stats
981
982 %{_bindir}/iokit-libecho
983 %{_bindir}/iokit-lstats
984 %{_bindir}/iokit-parse-ior
985 %{_bindir}/iokit-plot-obdfilter
986 %{_bindir}/iokit-plot-ost
987 %{_bindir}/iokit-plot-sgpdd
988 %{_bindir}/ior-survey
989 %{_bindir}/mds-survey
990 %{_bindir}/obdfilter-survey
991 %{_bindir}/ost-survey
992 %{_bindir}/sgpdd-survey
993 %{_bindir}/lst-survey
994 %{_bindir}/lst.sh
995 %doc lustre-iokit/ior-survey/README.ior-survey
996 %doc lustre-iokit/mds-survey/README.mds-survey
997 %doc lustre-iokit/obdfilter-survey/README.obdfilter-survey
998 %doc lustre-iokit/ost-survey/README.ost-survey
999 %doc lustre-iokit/sgpdd-survey/README.sgpdd-survey
1000 %doc lustre-iokit/stats-collect/README.iokit-lstats
1001 %doc lustre-iokit/lst-survey/README.lst-survey
1002 %endif
1003
1004 %post
1005 %if %{with systemd}
1006 %systemd_post lnet.service
1007 %systemd_post lsvcgss.service
1008 %endif
1009
1010 %preun
1011 %if %{with systemd}
1012 %systemd_preun lnet.service
1013 %systemd_preun lsvcgss.service
1014 %endif
1015
1016 %postun
1017 %if %{with systemd}
1018 %systemd_postun_with_restart lnet.service
1019 %systemd_postun_with_restart lsvcgss.service
1020 %endif
1021
1022 %clean
1023 rm -rf $RPM_BUILD_ROOT
1024 rm -rf %{_tmppath}/kmp