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_with gss_keyring
14 %bcond_without manpages
19 # By default both gss and gss keyring are disabled.
20 # gss keyring requires the gss core. If the builder
21 # request gss_keyring we must enable gss core even if
22 # the builder attempts to disable gss.
23 %if %{with gss_keyring}
27 %if %{without servers}
28 # --without servers overrides --with {ldiskfs|zfs}
29 # so undefine the internal variables set by bcond_*
30 %undefine with_ldiskfs
34 %{!?version: %global version @VERSION@}
35 %{!?kver: %global kver %(uname -r)}
36 %{!?kdir: %global kdir /lib/modules/%{kver}/source}
37 %{!?kobjdir: %global kobjdir %(if [ "%{kdir}" = "/lib/modules/%{kver}/source" ]; then echo "/lib/modules/%{kver}/build"; else echo "%{kdir}"; fi)}
39 # as an alternative to this implementation we could simply "make -C $kdir kernelversion"
40 %{!?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)}
42 # We set this because kernel_module_package has its own method of identifying
43 # which kernel to build against, and it is unlikely that its decision will
44 # match with Lustre's method of selecting which kernel to build against.
45 # By setting this variable, we override kernel_module_package's kernel
46 # selection with our selection.
47 %{!?kernel_version: %global kernel_version %kversion}
49 # in order to get kernel symset and/or kernel module dependencies into
50 # the RPM, in order to support weak-modules, the internal dependency gen-
51 # erator needs to be disabled
52 # this is done with (reduce the double % down to a single %):
54 # %%global _use_internal_dependency_generator 0
56 # on SLES10, /usr/lib/rpm/macros already sets this, so no harm in also
57 # defining it here (until Suse changes their mind)
59 # on RHEL5, however, we do need to explicitly disable the internal dep-
60 # endency generator and allow the external one be used
61 # but since RedHat's kABI is only a subset of the total kernel ABI, it
62 # doesn't include all of the symbols we (or OFED for that matter) need
63 # until RedHat includes all of the symbols we need in their symsets we
64 # cannot support weak-modules
65 # we did e-mail the maintainer of all of this stuff @redhat but got no
67 #%%global _use_internal_dependency_generator 0
69 # Set the package name prefix
70 %if %{undefined lustre_name}
72 %global lustre_name lustre
74 %global lustre_name lustre-client
78 %if %{undefined kmoddir}
79 %if %{defined kernel_module_package_moddir}
80 %global kmoddir %{kernel_module_package_moddir}
82 %if %{defined suse_kernel_module_package}
83 %global kmoddir updates
90 %global modules_fs_path /lib/modules/%{kversion}/%{kmoddir}
92 %if %{_vendor}=="redhat" || %{_vendor}=="fedora"
93 %global requires_yaml_name libyaml
94 %global requires_kmod_name kmod-%{lustre_name}
95 %if %{with lustre_tests}
96 %global requires_kmod_tests_name kmod-%{lustre_name}-tests
98 %global requires_kmod_version %{version}
100 %global requires_yaml_name libyaml-0-2
101 %global requires_kmod_name %{lustre_name}-kmp
102 %if %{with lustre_tests}
103 %global requires_kmod_tests_name %{lustre_name}-tests-kmp
105 %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$//')
106 %if 0%{?suse_version} >= 1200
107 %global requires_kmod_version %{version}_k%(echo %{krequires} | sed -r 'y/-/_/; s/^(2\.6\.[0-9]+)_/\\1.0_/;')
109 %global requires_kmod_version %{version}_%(echo %{krequires} | sed -r 'y/-/_/; s/^(2\.6\.[0-9]+)_/\\1.0_/;')
113 # RHEL >= 7 comes with systemd
115 %define with_systemd 1
118 # Fedora >= 15 comes with systemd, but only >= 18 has
120 %if 0%{?fedora} >= 18
121 %define with_systemd 1
124 # opensuse >= 12.1 comes with systemd, but only >= 13.1
125 # has the proper macros
126 %if 0%{?suse_version} >= 1310
127 %define with_systemd 1
130 Summary: Lustre File System
135 Group: System Environment/Kernel
136 Source: lustre-%{version}.tar.gz
137 Source1: kmp-lustre.preamble
138 Source2: kmp-lustre.files
139 Source3: kmp-lustre-osd-ldiskfs.preamble
140 Source4: kmp-lustre-osd-ldiskfs.files
141 Source5: kmp-lustre-osd-zfs.preamble
142 Source6: kmp-lustre-osd-zfs.files
143 Source7: kmp-lustre-tests.files
144 URL: https://wiki.whamcloud.com/
145 BuildRoot: %{_tmppath}/lustre-%{version}-root
146 Requires: %{requires_kmod_name} = %{requires_kmod_version} zlib
147 Requires: %{requires_yaml_name}
148 BuildRequires: libtool libyaml-devel zlib-devel
151 Requires: lustre-osd-mount
152 Obsoletes: lustre-client < %{version}
153 Provides: lustre-client = %{version}-%{release}
155 # GSS requires this: BuildRequires: pkgconfig, libgssapi-devel >= 0.10
156 %if %{_vendor}=="redhat" || %{_vendor}=="fedora"
157 #suse don't support selinux
158 BuildRequires: libselinux-devel
161 %if %{with lustre_modules}
162 BuildRequires: %kernel_module_package_buildreqs
163 %if %{_vendor}=="redhat"
164 BuildRequires: redhat-rpm-config
169 Requires(post): systemd
170 Requires(preun): systemd
171 Requires(postun): systemd
172 BuildRequires: systemd
176 Userspace tools and files for the Lustre file system.
178 %if %{with lustre_modules}
179 %kernel_module_package -n %{name} -p %SOURCE1 -f %SOURCE2 default
182 %kernel_module_package -n %{name}-osd-ldiskfs -p %SOURCE3 -f %SOURCE4 default
183 %if %{with lustre_utils}
184 %package osd-ldiskfs-mount
185 Summary: osd-ldiskfs-mount contains mount's ldiskfs specific dso.
186 Provides: lustre-osd-mount = %{version}-%{fullrelease}
187 Group: System Environment/Kernel
189 %description osd-ldiskfs-mount
190 LDISKFS hooks for mount/mkfs into a dynamic library.
192 %endif # with lustre_utils
193 %endif # with ldiskfs
196 %kernel_module_package -n %{name}-osd-zfs -p %SOURCE5 -f %SOURCE6 default
197 %if %{with lustre_utils}
198 %package osd-zfs-mount
199 Summary: osd-zfs-mount contains mount's zfs specific dso.
200 Provides: lustre-osd-mount = %{version}-%{fullrelease}
201 Group: System Environment/Kernel
203 %description osd-zfs-mount
204 ZFS hooks for mount/mkfs into a dynamic library.
206 %endif # with lustre_utils
209 %endif # with lustre_modules
212 %package resource-agents
213 Summary: HA Resuable Cluster Resource Scripts for Lustre
214 Group: System Environment/Base
216 Requires: resource-agents
218 %description resource-agents
219 A set of scripts to operate Lustre resources in a High Availablity
220 environment for both Pacemaker and rgmanager.
223 %if %{with lustre_tests}
225 Summary: Lustre testing framework
226 Group: System Environment/Kernel
227 Provides: %{name}-tests = %{version}
228 %if %{with lustre_iokit}
229 Requires: %{name} = %{version}, lustre-iokit
231 Requires: %{name} = %{version}
233 Requires: %{requires_kmod_name} = %{requires_kmod_version}
234 Requires: %{requires_kmod_tests_name} = %{requires_kmod_version}
235 Requires: attr, rsync, perl, lsof, /usr/bin/getconf
238 This package contains a set of test binaries and scripts that are intended
239 to be used by the Lustre testing framework.
241 %if %{with lustre_modules}
242 %kernel_module_package -n %{name}-tests -f %SOURCE7 default
246 %if %{with lustre_iokit}
247 %package -n lustre-iokit
248 Summary: The Lustre IO-Kit is a collection of benchmark tools for a cluster with the Lustre file system.
249 Group: Applications/System
250 Requires: python > 2.2, sg3_utils
252 %description -n lustre-iokit
253 This package includes five tools:
255 A test of the 'bare metal' performance, bypassing as much of the kernel as we can. Uses the sgp_dd utility.
258 This survey can be run in 3 modes to test disk I/O including the filesystem,
259 network I/O, and disk I/O via the network. The script does sequential I/O
260 with varying numbers of threads and objects (files) by using lctl::test_brw
261 to drive the echo_client connected to local or remote obdfilter instances,
262 or remote obdecho instances.
265 This survey tests the client-to-disk performance of individual OSTs, and
266 ranks then for comparison.
269 This script will collect IO stats on a defined set of nodes.
272 A script to run the IOR benchmark. The latest version can be downloaded from
273 http://www.llnl.gov/asci/purple/benchmarks/limited/ior/
276 This survey tests the local metadata performance using the echo_client to drive
277 the MDD layer to perform operations. It is run with multiple threads (to
278 simulate MDT service threads) locally on the MDS node, and does not need Lustre
279 clients in order to run
282 %if 0%{?suse_version}
286 %setup -qn lustre-%{version}
287 ln lustre/ChangeLog ChangeLog-lustre
288 ln lnet/ChangeLog ChangeLog-lnet
291 # Set an explicit path to our Linux tree, if we can.
292 cd $RPM_BUILD_DIR/lustre-%{version}
293 # override %optflags so that the vendor's overzealous flags don't create
295 %define optflags -g -O2 -Werror
297 CONFIGURE_ARGS="%{?configure_args}"
298 if [ -n "$CONFIGURE_ARGS" ]; then
299 # make sure %%kdir and %%kobjdir are not in the configure arguments
300 CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux=[^ ][^ ]* \?//')
301 CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux-obj=[^ ][^ ]* \?//')
302 # remove --with-kmp-moddir from configure arguments,
303 # it will be set --with-kmp-moddir=%%kmoddir
304 CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-kmp-moddir=[^ ][^ ]* \?//')
307 # we need to eval "configure" because $CONFIGURE_ARGS could have a quoted
308 # string in it which we don't want word splitted by the shell
309 # also remove (build|host|target) options because they will be specified
310 # inside $CONFIGURE_ARGS
311 # kmod tools/scripts require %{name} directory with kernel modules
312 %define eval_configure %(echo '%configure' | sed -e 's#\./configure#eval ./configure#' -e 's/--\\(build\\|host\\|target\\)=[^ ][^ ]* //g')
314 %eval_configure $CONFIGURE_ARGS \
315 %{?with_lustre_tests:--enable-tests}%{!?with_lustre_tests:--disable-tests} \
316 %{?with_lustre_utils:--enable-utils}%{!?with_lustre_utils:--disable-utils} \
317 %{?with_lustre_modules:--enable-modules}%{!?with_lustre_modules:--disable-modules} \
318 %{!?with_shared:--disable-shared} \
319 %{!?with_static:--disable-static} \
320 %{!?with_lustre_iokit:--disable-iokit} \
321 %{!?with_ldiskfs:--disable-ldiskfs} \
322 %{!?with_servers:--disable-server} \
323 %{!?with_zfs:--without-zfs} \
324 %{!?with_snmp:--disable-snmp} \
325 %{!?with_gss:--disable-gss} \
326 %{!?with_gss_keyring:--disable-gss-keyring} \
327 %{!?with_manpages:--disable-manpages} \
328 %{!?with_systemd:--with-systemdsystemunitdir=no} \
329 %{?with_systemd:--with-systemdsystemunitdir=%{_unitdir}} \
330 --with-linux=%{kdir} \
331 --with-linux-obj=%{kobjdir} \
332 --with-kmp-moddir=%{kmoddir}/%{name}
334 make %{?_smp_mflags} -s %{?make_args}
337 make install DESTDIR=$RPM_BUILD_ROOT
339 # RHEL's kernel_module_path macro expects that all the modules
340 # in a kmod package will be in modules_fs_path/<sub packagename>
341 # but Lustre installs all of the modules in a single pass into
342 # a shared location. Since this is a restriction imposed by
343 # RHEL, we handle this here in the spec file rather than in
344 # Lustre's build system. This is not expected to bother SLES's
345 # kernel_module_path macro.
346 basemodpath=$RPM_BUILD_ROOT%{modules_fs_path}/%{lustre_name}
348 mkdir -p $basemodpath-osd-ldiskfs/fs
349 mv $basemodpath/fs/osd_ldiskfs.ko $basemodpath-osd-ldiskfs/fs/osd_ldiskfs.ko
350 mv $basemodpath/fs/ldiskfs.ko $basemodpath-osd-ldiskfs/fs/ldiskfs.ko
353 mkdir -p $basemodpath-osd-zfs/fs
354 mv $basemodpath/fs/osd_zfs.ko $basemodpath-osd-zfs/fs/osd_zfs.ko
356 %if %{with lustre_tests}
357 mkdir -p $basemodpath-tests/fs
358 mv $basemodpath/fs/llog_test.ko $basemodpath-tests/fs/llog_test.ko
359 mkdir -p $RPM_BUILD_ROOT%{_libdir}/lustre/tests/kernel/
360 mv $basemodpath/fs/kinode.ko $RPM_BUILD_ROOT%{_libdir}/lustre/tests/kernel/
365 %if %{with servers} && %{with lustre_utils}
366 # The .ha_v2 extension identifies the heartbeat resource agent as using
367 # legacy syntax. Install a compatibility symlink to avoid conflicts when
368 # newer-style agents are added.
369 ln -s Lustre.ha_v2 $RPM_BUILD_ROOT%{_sysconfdir}/ha.d/resource.d/Lustre
370 echo '%{_sysconfdir}/ha.d/resource.d/Lustre.ha_v2' >>lustre.files
371 echo '%{_sysconfdir}/ha.d/resource.d/Lustre' >>lustre.files
374 # systemd is on redhat, fedora, and suse
376 echo '%{_unitdir}/lnet.service' >>lustre.files
379 %if %{_vendor}=="redhat"
380 # The following scripts are Red Hat specific
382 echo '%{_sysconfdir}/init.d/lustre' >>lustre.files
383 echo '%{_sysconfdir}/sysconfig/lustre' >>lustre.files
384 %if %{with gss_keyring}
385 echo '%{_sysconfdir}/init.d/lsvcgss' >>lustre.files
386 echo '%{_sysconfdir}/sysconfig/lsvcgss' >>lustre.files
387 echo '%config(noreplace) %{_sysconfdir}/request-key.d/lgssc.conf' >>lustre.files
391 %if %{without systemd}
392 echo '%{_sysconfdir}/init.d/lnet' >>lustre.files
396 # fc18 needs 'x' permission for library files
397 find $RPM_BUILD_ROOT -name \*.so -type f -exec chmod +x {} \;
399 rm -f $RPM_BUILD_ROOT%{_libdir}/liblnetconfig.la
401 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.a' >>lustre.files
404 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so' >>lustre.files
405 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so.*' >>lustre.files
409 echo '%{_libdir}/libiam.a' >>lustre.files
413 mkdir -p $RPM_BUILD_ROOT/%{_libdir}/lustre/snmp
414 echo '%{_libdir}/lustre/snmp' >>lustre.files
417 %if %{with lustre_utils}
418 mkdir -p $RPM_BUILD_ROOT/%{_datadir}/lustre
419 if [ -d $RPM_BUILD_ROOT%{_libdir}/lustre ] ; then
420 find $RPM_BUILD_ROOT%{_libdir}/@PACKAGE@ -name \*.la -type f -exec rm -f {} \;
424 %if %{with lustre_modules}
425 # mark modules executable for find-debuginfo.sh
426 find $RPM_BUILD_ROOT/lib/modules -name \*.ko -type f -exec chmod u+x {} \;
429 rm -f $RPM_BUILD_ROOT%{_libdir}/liblustreapi.la
431 %if %{with lustre_tests}
432 :> lustre-tests.files
433 echo '%{_libdir}/lustre/tests/*' >>lustre-tests.files
434 echo '%{_bindir}/mcreate' >>lustre-tests.files
435 echo '%{_bindir}/munlink' >>lustre-tests.files
436 echo '%{_sbindir}/wirecheck' >>lustre-tests.files
437 echo '%{_sbindir}/wiretest' >>lustre-tests.files
440 %files -f lustre.files
441 %defattr(-,root,root)
443 %if %{with lustre_tests}
444 %exclude %{_sbindir}/wirecheck
445 %exclude %{_sbindir}/wiretest
448 %exclude %{_sbindir}/zfsobj2fid
450 %if %{with lustre_utils}
452 %{_libexecdir}/lustre/lc_common
453 %{_libexecdir}/lustre/haconfig
454 %{_bindir}/lustre_req_history
459 %{_bindir}/plot-llstat
462 %{_bindir}/lfs_migrate
465 %{_libdir}/liblustreapi.a
468 %{_libdir}/liblustreapi.so*
474 %{_includedir}/lustre
475 %{_includedir}/linux/lnet
476 %{_includedir}/linux/lustre
478 %{_sysconfdir}/udev/rules.d/99-lustre.rules
480 %config(noreplace) %{_sysconfdir}/ldev.conf
482 %config(noreplace) %{_sysconfdir}/lnet.conf
483 %config(noreplace) %{_sysconfdir}/modprobe.d/ko2iblnd.conf
484 %if %{with lustre_utils}
485 %config(noreplace) %{_sysconfdir}/lnet_routes.conf
487 %if %{with lustre_modules}
491 %if %{with lustre_utils}
492 %files osd-ldiskfs-mount
493 %defattr(-,root,root)
494 %{_libdir}/@PACKAGE@/mount_osd_ldiskfs.so
501 %if %{with lustre_utils}
503 %defattr(-,root,root)
504 %{_libdir}/@PACKAGE@/mount_osd_zfs.so
505 %{_sysconfdir}/zfs/zed.d/*
510 %endif # with lustre_modules
513 %files resource-agents
514 %defattr(0755,root,root)
515 %{_prefix}/lib/ocf/resource.d/lustre/
518 %if %{with lustre_tests}
519 %files tests -f lustre-tests.files
520 %defattr(-,root,root)
523 %if %{with lustre_iokit}
524 %files -n lustre-iokit
525 %defattr(-, root, root)
526 %{_bindir}/iokit-config
527 %{_bindir}/iokit-gather-stats
528 %{_bindir}/iokit-libecho
529 %{_bindir}/iokit-lstats
530 %{_bindir}/iokit-parse-ior
531 %{_bindir}/iokit-plot-obdfilter
532 %{_bindir}/iokit-plot-ost
533 %{_bindir}/iokit-plot-sgpdd
534 %{_bindir}/ior-survey
535 %{_bindir}/mds-survey
536 %{_bindir}/obdfilter-survey
537 %{_bindir}/ost-survey
538 %{_bindir}/sgpdd-survey
539 %doc lustre-iokit/ior-survey/README.ior-survey
540 %doc lustre-iokit/mds-survey/README.mds-survey
541 %doc lustre-iokit/obdfilter-survey/README.obdfilter-survey
542 %doc lustre-iokit/ost-survey/README.ost-survey
543 %doc lustre-iokit/sgpdd-survey/README.sgpdd-survey
544 %doc lustre-iokit/stats-collect/README.iokit-lstats
549 %systemd_post lnet.service
554 %systemd_preun lnet.service
559 %systemd_postun_with_restart lnet.service
563 rm -rf $RPM_BUILD_ROOT
564 rm -rf %{_tmppath}/kmp