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