3 # Declare rpmbuild --with/--without parameters
7 %bcond_without lustre_tests
8 %bcond_without lustre_utils
9 %bcond_without lustre_iokit
10 %bcond_without lustre_modules
13 %bcond_without manpages
18 %if %{without servers}
19 # --without servers overrides --with {ldiskfs|zfs}
20 # so undefine the internal variables set by bcond_*
21 %undefine with_ldiskfs
25 %{!?version: %global version @VERSION@}
26 %{!?kver: %global kver %(uname -r)}
27 %{!?kdir: %global kdir /lib/modules/%{kver}/source}
28 %{!?kobjdir: %global kobjdir %(if [ "%{kdir}" = "/lib/modules/%{kver}/source" ]; then echo "/lib/modules/%{kver}/build"; else echo "%{kdir}"; fi)}
30 # as an alternative to this implementation we could simply "make -C $kdir kernelversion"
31 %{!?kversion: %global kversion %(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)}
33 # We set this because kernel_module_package has its own method of identifying
34 # which kernel to build against, and it is unlikely that its decision will
35 # match with Lustre's method of selecting which kernel to build against.
36 # By setting this variable, we override kernel_module_package's kernel
37 # selection with our selection.
38 %{!?kernel_version: %global kernel_version %kversion}
40 # in order to get kernel symset and/or kernel module dependencies into
41 # the RPM, in order to support weak-modules, the internal dependency gen-
42 # erator needs to be disabled
43 # this is done with (reduce the double % down to a single %):
45 # %%global _use_internal_dependency_generator 0
47 # on SLES10, /usr/lib/rpm/macros already sets this, so no harm in also
48 # defining it here (until Suse changes their mind)
50 # on RHEL5, however, we do need to explicitly disable the internal dep-
51 # endency generator and allow the external one be used
52 # but since RedHat's kABI is only a subset of the total kernel ABI, it
53 # doesn't include all of the symbols we (or OFED for that matter) need
54 # until RedHat includes all of the symbols we need in their symsets we
55 # cannot support weak-modules
56 # we did e-mail the maintainer of all of this stuff @redhat but got no
58 #%%global _use_internal_dependency_generator 0
60 # Set the package name prefix
61 %if %{undefined lustre_name}
63 %global lustre_name lustre
65 %global lustre_name lustre-client
69 %if %{undefined kmoddir}
70 %if %{defined kernel_module_package_moddir}
71 %global kmoddir %{kernel_module_package_moddir}
73 %if %{defined suse_kernel_module_package}
74 %global kmoddir updates
81 %global modules_fs_path /lib/modules/%{kversion}/%{kmoddir}
83 %if %{_vendor}=="redhat" || %{_vendor}=="fedora"
84 %global requires_kmod_name kmod-%{lustre_name}
85 %if %{with lustre_tests}
86 %global requires_kmod_tests_name kmod-%{lustre_name}-tests
88 %global requires_kmod_version %{version}
90 %global requires_kmod_name %{lustre_name}-kmp
91 %if %{with lustre_tests}
92 %global requires_kmod_tests_name %{lustre_name}-tests-kmp
94 %define krequires %(echo %{kversion} | 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$//')
95 %if 0%{?suse_version} >= 1200
96 %global requires_kmod_version %{version}_k%(echo %{krequires} | sed -r 'y/-/_/; s/^(2\.6\.[0-9]+)_/\\1.0_/;')
98 %global requires_kmod_version %{version}_%(echo %{krequires} | sed -r 'y/-/_/; s/^(2\.6\.[0-9]+)_/\\1.0_/;')
102 # RHEL >= 7 comes with systemd
104 %define with_systemd 1
107 # Fedora >= 15 comes with systemd, but only >= 18 has
109 %if 0%{?fedora} >= 18
110 %define with_systemd 1
113 # opensuse >= 12.1 comes with systemd, but only >= 13.1
114 # has the proper macros
115 %if 0%{?suse_version} >= 1310
116 %define with_systemd 1
119 Summary: Lustre File System
124 Group: System Environment/Kernel
125 Source: lustre-%{version}.tar.gz
126 Source1: kmp-lustre.preamble
127 Source2: kmp-lustre.files
128 Source3: kmp-lustre-osd-ldiskfs.preamble
129 Source4: kmp-lustre-osd-ldiskfs.files
130 Source5: kmp-lustre-osd-zfs.preamble
131 Source6: kmp-lustre-osd-zfs.files
132 Source7: kmp-lustre-tests.files
133 URL: https://wiki.hpdd.intel.com/
134 BuildRoot: %{_tmppath}/lustre-%{version}-root
135 Requires: %{requires_kmod_name} = %{requires_kmod_version}
136 BuildRequires: libtool
139 Requires: lustre-osd-mount
140 Obsoletes: lustre-client < %{version}
141 Provides: lustre-client = %{version}-%{release}
143 # GSS requires this: BuildRequires: pkgconfig, libgssapi-devel >= 0.10
144 %if %{_vendor}=="redhat" || %{_vendor}=="fedora"
145 #suse don't support selinux
146 BuildRequires: libselinux-devel
149 %if %{with lustre_modules}
150 BuildRequires: %kernel_module_package_buildreqs
151 %if %{_vendor}=="redhat"
152 BuildRequires: redhat-rpm-config
157 Requires(post): systemd
158 Requires(preun): systemd
159 Requires(postun): systemd
160 BuildRequires: systemd
164 Userspace tools and files for the Lustre file system.
166 %if %{with lustre_modules}
167 %kernel_module_package -n %{name} -p %SOURCE1 -f %SOURCE2 default
170 %kernel_module_package -n %{name}-osd-ldiskfs -p %SOURCE3 -f %SOURCE4 default
171 %if %{with lustre_utils}
172 %package osd-ldiskfs-mount
173 Summary: osd-ldiskfs-mount contains mount's ldiskfs specific dso.
174 Provides: lustre-osd-mount = %{version}-%{fullrelease}
175 Group: System Environment/Kernel
177 %description osd-ldiskfs-mount
178 LDISKFS hooks for mount/mkfs into a dynamic library.
180 %endif # with lustre_utils
181 %endif # with ldiskfs
184 %kernel_module_package -n %{name}-osd-zfs -p %SOURCE5 -f %SOURCE6 default
185 %if %{with lustre_utils}
186 %package osd-zfs-mount
187 Summary: osd-zfs-mount contains mount's zfs specific dso.
188 Provides: lustre-osd-mount = %{version}-%{fullrelease}
189 Group: System Environment/Kernel
191 %description osd-zfs-mount
192 ZFS hooks for mount/mkfs into a dynamic library.
194 %endif # with lustre_utils
197 %endif # with lustre_modules
200 %package resource-agents
201 Summary: HA Resuable Cluster Resource Scripts for Lustre
202 Group: System Environment/Base
204 Requires: resource-agents
206 %description resource-agents
207 A set of scripts to operate Lustre resources in a High Availablity
208 environment for both Pacemaker and rgmanager.
211 %if %{with lustre_tests}
213 Summary: Lustre testing framework
214 Group: System Environment/Kernel
215 Provides: %{name}-tests = %{version}
216 %if %{with lustre_iokit}
217 Requires: %{name} = %{version}, lustre-iokit
219 Requires: %{name} = %{version}
221 Requires: %{requires_kmod_name} = %{requires_kmod_version}
222 Requires: %{requires_kmod_tests_name} = %{requires_kmod_version}
223 Requires: attr, rsync, perl, lsof, /usr/bin/getconf
226 This package contains a set of test binaries and scripts that are intended
227 to be used by the Lustre testing framework.
229 %if %{with lustre_modules}
230 %kernel_module_package -n %{name}-tests -f %SOURCE7 default
234 %if %{with lustre_iokit}
235 %package -n lustre-iokit
236 Summary: The Lustre IO-Kit is a collection of benchmark tools for a cluster with the Lustre file system.
237 Group: Applications/System
238 Requires: python > 2.2, sg3_utils
240 %description -n lustre-iokit
241 This package includes five tools:
243 A test of the 'bare metal' performance, bypassing as much of the kernel as we can. Uses the sgp_dd utility.
246 This survey can be run in 3 modes to test disk I/O including the filesystem,
247 network I/O, and disk I/O via the network. The script does sequential I/O
248 with varying numbers of threads and objects (files) by using lctl::test_brw
249 to drive the echo_client connected to local or remote obdfilter instances,
250 or remote obdecho instances.
253 This survey tests the client-to-disk performance of individual OSTs, and
254 ranks then for comparison.
257 This script will collect IO stats on a defined set of nodes.
260 A script to run the IOR benchmark. The latest version can be downloaded from
261 http://www.llnl.gov/asci/purple/benchmarks/limited/ior/
264 This survey tests the local metadata performance using the echo_client to drive
265 the MDD layer to perform operations. It is run with multiple threads (to
266 simulate MDT service threads) locally on the MDS node, and does not need Lustre
267 clients in order to run
270 %if 0%{?suse_version}
274 %setup -qn lustre-%{version}
275 ln lustre/ChangeLog ChangeLog-lustre
276 ln lnet/ChangeLog ChangeLog-lnet
279 # Set an explicit path to our Linux tree, if we can.
280 cd $RPM_BUILD_DIR/lustre-%{version}
281 # override %optflags so that the vendor's overzealous flags don't create
283 %define optflags -g -O2 -Werror
285 CONFIGURE_ARGS="%{?configure_args}"
286 if [ -n "$CONFIGURE_ARGS" ]; then
287 # make sure %%kdir and %%kobjdir are not in the configure arguments
288 CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux=[^ ][^ ]* \?//')
289 CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux-obj=[^ ][^ ]* \?//')
290 # remove --with-kmp-moddir from configure arguments,
291 # it will be set --with-kmp-moddir=%%kmoddir
292 CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-kmp-moddir=[^ ][^ ]* \?//')
295 # we need to eval "configure" because $CONFIGURE_ARGS could have a quoted
296 # string in it which we don't want word splitted by the shell
297 # also remove (build|host|target) options because they will be specified
298 # inside $CONFIGURE_ARGS
299 # kmod tools/scripts require %{name} directory with kernel modules
300 %define eval_configure %(echo '%configure' | sed -e 's#\./configure#eval ./configure#' -e 's/--\\(build\\|host\\|target\\)=[^ ][^ ]* //g')
302 %eval_configure $CONFIGURE_ARGS \
303 %{?with_lustre_tests:--enable-tests}%{!?with_lustre_tests:--disable-tests} \
304 %{?with_lustre_utils:--enable-utils}%{!?with_lustre_utils:--disable-utils} \
305 %{?with_lustre_modules:--enable-modules}%{!?with_lustre_modules:--disable-modules} \
306 %{!?with_shared:--disable-shared} \
307 %{!?with_static:--disable-static} \
308 %{!?with_lustre_iokit:--disable-iokit} \
309 %{!?with_ldiskfs:--disable-ldiskfs} \
310 %{!?with_servers:--disable-server} \
311 %{!?with_zfs:--without-zfs} \
312 %{!?with_lnet_dlc:--disable-dlc} \
313 %{!?with_snmp:--disable-snmp} \
314 %{!?with_manpages:--disable-manpages} \
315 %{!?with_systemd:--with-systemdsystemunitdir=no} \
316 %{?with_systemd:--with-systemdsystemunitdir=%{_unitdir}} \
317 --with-linux=%{kdir} \
318 --with-linux-obj=%{kobjdir} \
319 --with-kmp-moddir=%{kmoddir}/%{name}
321 make %{?_smp_mflags} -s %{?make_args}
324 make install DESTDIR=$RPM_BUILD_ROOT
326 # RHEL's kernel_module_path macro expects that all the modules
327 # in a kmod package will be in modules_fs_path/<sub packagename>
328 # but Lustre installs all of the modules in a single pass into
329 # a shared location. Since this is a restriction imposed by
330 # RHEL, we handle this here in the spec file rather than in
331 # Lustre's build system. This is not expected to bother SLES's
332 # kernel_module_path macro.
333 basemodpath=$RPM_BUILD_ROOT%{modules_fs_path}/%{lustre_name}
335 mkdir -p $basemodpath-osd-ldiskfs/fs
336 mv $basemodpath/fs/osd_ldiskfs.ko $basemodpath-osd-ldiskfs/fs/osd_ldiskfs.ko
337 mv $basemodpath/fs/ldiskfs.ko $basemodpath-osd-ldiskfs/fs/ldiskfs.ko
340 mkdir -p $basemodpath-osd-zfs/fs
341 mv $basemodpath/fs/osd_zfs.ko $basemodpath-osd-zfs/fs/osd_zfs.ko
343 %if %{with lustre_tests}
344 mkdir -p $basemodpath-tests/fs
345 mv $basemodpath/fs/llog_test.ko $basemodpath-tests/fs/llog_test.ko
346 mkdir -p $RPM_BUILD_ROOT%{_libdir}/lustre/tests/kernel/
347 mv $basemodpath/fs/kinode.ko $RPM_BUILD_ROOT%{_libdir}/lustre/tests/kernel/
352 %if %{with servers} && %{with lustre_utils}
353 # The .ha_v2 extension identifies the heartbeat resource agent as using
354 # legacy syntax. Install a compatibility symlink to avoid conflicts when
355 # newer-style agents are added.
356 ln -s Lustre.ha_v2 $RPM_BUILD_ROOT%{_sysconfdir}/ha.d/resource.d/Lustre
357 echo '%{_sysconfdir}/ha.d/resource.d/Lustre.ha_v2' >>lustre.files
358 echo '%{_sysconfdir}/ha.d/resource.d/Lustre' >>lustre.files
361 # systemd is on redhat, fedora, and suse
363 echo '%{_unitdir}/lnet.service' >>lustre.files
366 %if %{_vendor}=="redhat"
367 # The following scripts are Red Hat specific
369 echo '%{_sysconfdir}/sysconfig/lustre' >>lustre.files
370 echo '%{_sysconfdir}/sysconfig/lsvcgss' >>lustre.files
371 echo '%{_sysconfdir}/init.d/lustre' >>lustre.files
374 %if %{without systemd}
375 echo '%{_sysconfdir}/init.d/lnet' >>lustre.files
378 echo '%{_sysconfdir}/init.d/lsvcgss' >>lustre.files
382 mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/ocf/resource.d/lustre/
383 install -m 0755 contrib/scripts/pacemaker/* $RPM_BUILD_ROOT%{_prefix}/lib/ocf/resource.d/lustre/
386 # fc18 needs 'x' permission for library files
387 find $RPM_BUILD_ROOT -name \*.so -type f -exec chmod +x {} \;
390 rm -f $RPM_BUILD_ROOT%{_libdir}/liblnetconfig.la
392 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.a' >>lustre.files
395 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so' >>lustre.files
396 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so.*' >>lustre.files
401 echo '%{_libdir}/libiam.a' >>lustre.files
405 mkdir -p $RPM_BUILD_ROOT/%{_libdir}/lustre/snmp
406 echo '%{_libdir}/lustre/snmp' >>lustre.files
409 %if %{with lustre_utils}
410 mkdir -p $RPM_BUILD_ROOT/%{_datadir}/lustre
411 if [ -d $RPM_BUILD_ROOT%{_libdir}/lustre ] ; then
412 find $RPM_BUILD_ROOT%{_libdir}/@PACKAGE@ -name \*.la -type f -exec rm -f {} \;
416 %if %{with lustre_modules}
417 # mark modules executable for find-debuginfo.sh
418 find $RPM_BUILD_ROOT/lib/modules -name \*.ko -type f -exec chmod u+x {} \;
421 %if %{with lustre_tests}
422 :> lustre-tests.files
423 echo '%{_libdir}/lustre/tests/*' >>lustre-tests.files
424 echo '%{_bindir}/mcreate' >>lustre-tests.files
425 echo '%{_bindir}/munlink' >>lustre-tests.files
426 echo '%{_sbindir}/wirecheck' >>lustre-tests.files
427 echo '%{_sbindir}/wiretest' >>lustre-tests.files
430 %files -f lustre.files
431 %defattr(-,root,root)
433 %if %{with lustre_tests}
434 %exclude %{_sbindir}/wirecheck
435 %exclude %{_sbindir}/wiretest
438 %exclude %{_sbindir}/zfsobj2fid
440 %if %{with lustre_utils}
442 %{_libexecdir}/lustre/lc_common
443 %{_libexecdir}/lustre/haconfig
444 %{_bindir}/lustre_req_history
449 %{_bindir}/plot-llstat
452 %{_bindir}/lfs_migrate
454 %{_libdir}/liblustreapi.a
455 %{_libdir}/liblustreapi.so
460 %{_includedir}/lustre
461 %{_includedir}/linux/lnet
462 %{_includedir}/linux/lustre
464 %{_sysconfdir}/udev/rules.d/99-lustre.rules
465 %config(noreplace) %{_sysconfdir}/ldev.conf
467 %config(noreplace) %{_sysconfdir}/lnet.conf
469 %config(noreplace) %{_sysconfdir}/modprobe.d/ko2iblnd.conf
470 %if %{with lustre_utils}
471 %config(noreplace) %{_sysconfdir}/lnet_routes.conf
473 %if %{with lustre_modules}
477 %if %{with lustre_utils}
478 %files osd-ldiskfs-mount
479 %defattr(-,root,root)
480 %{_libdir}/@PACKAGE@/mount_osd_ldiskfs.so
487 %if %{with lustre_utils}
489 %defattr(-,root,root)
490 %{_libdir}/@PACKAGE@/mount_osd_zfs.so
495 %endif # with lustre_modules
498 %files resource-agents
499 %defattr(0755,root,root)
500 %{_prefix}/lib/ocf/resource.d/lustre/
503 %if %{with lustre_tests}
504 %files tests -f lustre-tests.files
505 %defattr(-,root,root)
508 %if %{with lustre_iokit}
509 %files -n lustre-iokit
510 %defattr(-, root, root)
511 %{_bindir}/iokit-config
512 %{_bindir}/iokit-gather-stats
513 %{_bindir}/iokit-libecho
514 %{_bindir}/iokit-lstats
515 %{_bindir}/iokit-parse-ior
516 %{_bindir}/iokit-plot-obdfilter
517 %{_bindir}/iokit-plot-ost
518 %{_bindir}/iokit-plot-sgpdd
519 %{_bindir}/ior-survey
520 %{_bindir}/mds-survey
521 %{_bindir}/obdfilter-survey
522 %{_bindir}/ost-survey
523 %{_bindir}/sgpdd-survey
524 %doc lustre-iokit/ior-survey/README.ior-survey
525 %doc lustre-iokit/mds-survey/README.mds-survey
526 %doc lustre-iokit/obdfilter-survey/README.obdfilter-survey
527 %doc lustre-iokit/ost-survey/README.ost-survey
528 %doc lustre-iokit/sgpdd-survey/README.sgpdd-survey
529 %doc lustre-iokit/stats-collect/README.iokit-lstats
534 %systemd_post lnet.service
539 %systemd_preun lnet.service
544 %systemd_postun_with_restart lnet.service
548 rm -rf $RPM_BUILD_ROOT
549 rm -rf %{_tmppath}/kmp