Whamcloud - gitweb
LU-9514 test: sanity 51f add to ALWAYS_EXCEPT
[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 lnet_dlc
12 %bcond_without manpages
13 %bcond_without shared
14 %bcond_without static
15 %bcond_with    systemd
16
17 %if %{without servers}
18     # --without servers overrides --with {ldiskfs|zfs}
19     # so undefine the internal variables set by bcond_*
20     %undefine with_ldiskfs
21     %undefine with_zfs
22 %endif
23
24 %{!?version: %global version @VERSION@}
25 %{!?kver:    %global kver    %(uname -r)}
26 %{!?kdir:    %global kdir    /lib/modules/%{kver}/source}
27 %{!?kobjdir: %global kobjdir %(if [ "%{kdir}" = "/lib/modules/%{kver}/source" ]; then echo "/lib/modules/%{kver}/build"; else echo "%{kdir}"; fi)}
28
29 # as an alternative to this implementation we could simply "make -C $kdir kernelversion"
30 %{!?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)}
31
32 # We set this because kernel_module_package has its own method of identifying
33 # which kernel to build against, and it is unlikely that its decision will
34 # match with Lustre's method of selecting which kernel to build against.
35 # By setting this variable, we override kernel_module_package's kernel
36 # selection with our selection.
37 %{!?kernel_version: %global kernel_version %kversion}
38
39 # in order to get kernel symset and/or kernel module dependencies into
40 # the RPM, in order to support weak-modules, the internal dependency gen-
41 # erator needs to be disabled
42 # this is done with (reduce the double % down to a single %):
43 #
44 # %%global _use_internal_dependency_generator 0
45 #
46 # on SLES10, /usr/lib/rpm/macros already sets this, so no harm in also
47 # defining it here (until Suse changes their mind)
48 #
49 # on RHEL5, however, we do need to explicitly disable the internal dep-
50 # endency generator and allow the external one be used
51 # but since RedHat's kABI is only a subset of the total kernel ABI, it
52 # doesn't include all of the symbols we (or OFED for that matter) need
53 # until RedHat includes all of the symbols we need in their symsets we
54 # cannot support weak-modules
55 # we did e-mail the maintainer of all of this stuff @redhat but got no
56 # response from them
57 #%%global _use_internal_dependency_generator 0
58
59 # Set the package name prefix
60 %if %{undefined lustre_name}
61     %if %{with servers}
62         %global lustre_name lustre
63     %else
64         %global lustre_name lustre-client
65     %endif
66 %endif
67
68 %if %{undefined kmoddir}
69     %if %{defined kernel_module_package_moddir}
70         %global kmoddir %{kernel_module_package_moddir}
71     %else
72         %if %{defined suse_kernel_module_package}
73             %global kmoddir updates
74         %else
75             %global kmoddir extra
76         %endif
77     %endif
78 %endif
79
80 %global modules_fs_path /lib/modules/%{kversion}/%{kmoddir}
81
82 %if %{_vendor}=="redhat" || %{_vendor}=="fedora"
83         %global requires_kmod_name kmod-%{lustre_name}
84         %global requires_kmod_tests_name kmod-%{lustre_name}-tests
85         %global requires_kmod_version %{version}
86 %else   #for Suse
87         %global requires_kmod_name %{lustre_name}-kmp
88         %global requires_kmod_tests_name %{lustre_name}-tests-kmp
89         %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$//')
90         %if 0%{?suse_version} >= 1200
91                 %global requires_kmod_version %{version}_k%(echo %{krequires} | sed -r 'y/-/_/; s/^(2\.6\.[0-9]+)_/\\1.0_/;')
92         %else
93                 %global requires_kmod_version %{version}_%(echo %{krequires} | sed -r 'y/-/_/; s/^(2\.6\.[0-9]+)_/\\1.0_/;')
94         %endif
95 %endif
96
97 # Generic enable switch for systemd
98 %if %{with systemd}
99 %define _systemd 1
100 %endif
101
102 # RHEL >= 7 comes with systemd
103 %if 0%{?rhel} >= 7
104 %define _systemd 1
105 %endif
106
107 # Fedora >= 15 comes with systemd, but only >= 18 has
108 # the proper macros
109 %if 0%{?fedora} >= 18
110 %define _systemd 1
111 %endif
112
113 # opensuse >= 12.1 comes with systemd, but only >= 13.1
114 # has the proper macros
115 %if 0%{?suse_version} >= 1310
116 %define _systemd 1
117 %endif
118
119 Summary: Lustre File System
120 Name: %{lustre_name}
121 Version: %{version}
122 Release: 1%{?dist}
123 License: GPL
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
137 %if %{with servers}
138 Requires: lustre-osd
139 Requires: lustre-osd-mount
140 Obsoletes: lustre-client <= %{version}
141 Provides: lustre-client = %{version}-%{release}
142 %endif
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
147 Requires: libselinux
148 %endif
149 %if %{with lustre_modules}
150 BuildRequires: %kernel_module_package_buildreqs
151 %if %{_vendor}=="redhat"
152 BuildRequires: redhat-rpm-config
153 %endif
154 %endif
155
156 %if 0%{?_systemd}
157 Requires(post): systemd
158 Requires(preun): systemd
159 Requires(postun): systemd
160 BuildRequires: systemd
161 %endif
162
163 %description
164 Userspace tools and files for the Lustre file system.
165
166 %if %{with lustre_modules}
167 %kernel_module_package -n %{name} -p %SOURCE1 -f %SOURCE2 default
168
169 %if %{with ldiskfs}
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
176
177 %description osd-ldiskfs-mount
178 LDISKFS hooks for mount/mkfs into a dynamic library.
179
180 %endif  # with lustre_utils
181 %endif  # with ldiskfs
182
183 %if %{with zfs}
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
190
191 %description osd-zfs-mount
192 ZFS hooks for mount/mkfs into a dynamic library.
193
194 %endif  # with lustre_utils
195 %endif  # with zfs
196
197 %endif # with lustre_modules
198
199 %if %{with servers}
200 %package resource-agents
201 Summary: HA Resuable Cluster Resource Scripts for Lustre
202 Group: System Environment/Base
203 Requires: lustre
204 Requires: resource-agents
205
206 %description resource-agents
207 A set of scripts to operate Lustre resources in a High Availablity
208 environment for both Pacemaker and rgmanager.
209 %endif
210
211 %package tests
212 Summary: Lustre testing framework
213 Group: System Environment/Kernel
214 Provides: %{name}-tests = %{version}
215 Requires: %{name} = %{version}, lustre-iokit
216 Requires: %{requires_kmod_name} = %{requires_kmod_version}
217 Requires: %{requires_kmod_tests_name} = %{requires_kmod_version}
218 Requires: attr, rsync, perl, lsof, /usr/bin/getconf
219
220 %description tests
221 This package contains a set of test binaries and scripts that are intended
222 to be used by the Lustre testing framework.
223
224 %if %{with lustre_modules}
225 %kernel_module_package -n %{name}-tests -f %SOURCE7 default
226 %endif
227
228 %if %{with lustre_iokit}
229 %package -n lustre-iokit
230 Summary: The Lustre IO-Kit is a collection of benchmark tools for a cluster with the Lustre file system.
231 Group: Applications/System
232 Requires: python > 2.2, sg3_utils
233
234 %description -n lustre-iokit
235 This package includes five tools:
236 sgpdd-survey:
237 A test of the 'bare metal' performance, bypassing as much of the kernel as we can. Uses the sgp_dd utility.
238
239 obdfilter-survey
240 This survey can be run in 3 modes to test disk I/O including the filesystem,
241 network I/O, and disk I/O via the network.  The script does sequential I/O
242 with varying numbers of threads and objects (files) by using lctl::test_brw
243 to drive the echo_client connected to local or remote obdfilter instances,
244 or remote obdecho instances.
245
246 ost-survey
247 This survey tests the client-to-disk performance of individual OSTs, and
248 ranks then for comparison.
249
250 stats-collect
251 This script will collect IO stats on a defined set of nodes.
252
253 ior-survey:
254 A script to run the IOR benchmark. The latest version can be downloaded from
255 http://www.llnl.gov/asci/purple/benchmarks/limited/ior/
256
257 mds-survey:
258 This survey tests the local metadata performance using the echo_client to drive
259 the MDD layer to perform operations. It is run with multiple threads (to
260 simulate MDT service threads) locally on the MDS node, and does not need Lustre
261 clients in order to run
262 %endif
263
264 %if 0%{?suse_version}
265 %debug_package
266 %endif
267 %prep
268 %setup -qn lustre-%{version}
269 ln lustre/ChangeLog ChangeLog-lustre
270 ln lnet/ChangeLog ChangeLog-lnet
271
272 %build
273 # Set an explicit path to our Linux tree, if we can.
274 cd $RPM_BUILD_DIR/lustre-%{version}
275 # override %optflags so that the vendor's overzealous flags don't create
276 # build failures
277 %define optflags -g -O2 -Werror
278
279 %if 0%{?_systemd}
280     %define systemd --with-systemdsystemunitdir=%{_unitdir}
281 %else
282     %define systemd --with-systemdsystemunitdir=no
283 %endif
284
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=[^ ][^ ]* \?//')
293 fi
294
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')
301
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_manpages:--disable-manpages} \
314         %{systemd} \
315         --with-linux=%{kdir} \
316         --with-linux-obj=%{kobjdir} \
317         --with-kmp-moddir=%{kmoddir}/%{name}
318
319 make %{?_smp_mflags} -s %{?make_args}
320
321 %install
322 make install DESTDIR=$RPM_BUILD_ROOT
323
324 # RHEL's kernel_module_path macro expects that all the modules
325 # in a kmod package will be in modules_fs_path/<sub packagename>
326 # but Lustre installs all of the modules in a single pass into
327 # a shared location.  Since this is a restriction imposed by
328 # RHEL, we handle this here in the spec file rather than in
329 # Lustre's build system.  This is not expected to bother SLES's
330 # kernel_module_path macro.
331 basemodpath=$RPM_BUILD_ROOT%{modules_fs_path}/%{lustre_name}
332 %if %{with ldiskfs}
333 mkdir -p $basemodpath-osd-ldiskfs/fs
334 mv $basemodpath/fs/osd_ldiskfs.ko $basemodpath-osd-ldiskfs/fs/osd_ldiskfs.ko
335 mv $basemodpath/fs/ldiskfs.ko $basemodpath-osd-ldiskfs/fs/ldiskfs.ko
336 %endif
337 %if %{with zfs}
338 mkdir -p $basemodpath-osd-zfs/fs
339 mv $basemodpath/fs/osd_zfs.ko $basemodpath-osd-zfs/fs/osd_zfs.ko
340 %endif
341 %if %{with lustre_tests}
342 mkdir -p $basemodpath-tests/fs
343 mv $basemodpath/fs/llog_test.ko $basemodpath-tests/fs/llog_test.ko
344 %endif
345
346 :> lustre.files
347
348 %if %{with servers} && %{with lustre_utils}
349 # The .ha_v2 extension identifies the heartbeat resource agent as using
350 # legacy syntax. Install a compatibility symlink to avoid conflicts when
351 # newer-style agents are added.
352 ln -s Lustre.ha_v2 $RPM_BUILD_ROOT%{_sysconfdir}/ha.d/resource.d/Lustre
353 echo '%{_sysconfdir}/ha.d/resource.d/Lustre.ha_v2' >>lustre.files
354 echo '%{_sysconfdir}/ha.d/resource.d/Lustre' >>lustre.files
355 %endif
356
357 # systemd is on redhat, fedora, and suse
358 %if 0%{?_systemd}
359 echo '%{_unitdir}/lnet.service' >>lustre.files
360 %endif
361
362 %if %{_vendor}=="redhat"
363 # The following scripts are Red Hat specific
364 %if %{with servers}
365 echo '%{_sysconfdir}/sysconfig/lustre' >>lustre.files
366 echo '%{_sysconfdir}/sysconfig/lsvcgss' >>lustre.files
367 echo '%{_sysconfdir}/init.d/lustre' >>lustre.files
368 %endif
369
370 %if 0%{!?_systemd:1}
371 echo '%{_sysconfdir}/init.d/lnet' >>lustre.files
372 %endif
373
374 echo '%{_sysconfdir}/init.d/lsvcgss' >>lustre.files
375 %endif
376
377 %if %{with servers}
378 mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/ocf/resource.d/lustre/
379 install -m 0755 contrib/scripts/pacemaker/* $RPM_BUILD_ROOT%{_prefix}/lib/ocf/resource.d/lustre/
380 %endif
381
382 # fc18 needs 'x' permission for library files
383 find $RPM_BUILD_ROOT -name \*.so -type f -exec chmod +x {} \;
384
385 %if %{with lnet_dlc}
386 rm -f $RPM_BUILD_ROOT%{_libdir}/liblnetconfig.la
387 %if %{with static}
388 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.a' >>lustre.files
389 %endif
390 %if %{with shared}
391 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so' >>lustre.files
392 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so.*' >>lustre.files
393 %endif
394 %endif
395
396 %if %{with ldiskfs}
397 echo '%{_libdir}/libiam.a' >>lustre.files
398 %endif
399
400 if [ -d $RPM_BUILD_ROOT%{_libdir}/lustre/snmp ] ; then
401         echo '%{_libdir}/lustre/snmp' >>lustre.files
402 fi
403
404 %if %{with lustre_utils}
405 find $RPM_BUILD_ROOT%{_libdir}/@PACKAGE@ -name \*.la -type f -exec rm -f {} \;
406 %endif
407
408 %if %{with lustre_modules}
409 # mark modules executable for find-debuginfo.sh
410 find $RPM_BUILD_ROOT/lib/modules -name \*.ko -type f -exec chmod u+x {} \;
411 %endif
412
413 %if %{with lustre_tests}
414 :> lustre-tests.files
415 echo '%{_libdir}/lustre/tests/*' >>lustre-tests.files
416 echo '%{_bindir}/mcreate' >>lustre-tests.files
417 echo '%{_bindir}/munlink' >>lustre-tests.files
418 echo '%{_sbindir}/wirecheck' >>lustre-tests.files
419 echo '%{_sbindir}/wiretest' >>lustre-tests.files
420 %endif
421
422 %files -f lustre.files
423 %defattr(-,root,root)
424 %{_sbindir}/*
425 %exclude %{_sbindir}/wirecheck
426 %exclude %{_sbindir}/wiretest
427 %if %{with zfs}
428 %exclude %{_sbindir}/zfsobj2fid
429 %endif
430 %if %{with lustre_utils}
431 %if %{with servers}
432 %{_libexecdir}/lustre/lc_common
433 %{_libexecdir}/lustre/haconfig
434 %{_bindir}/lustre_req_history
435 %endif
436
437 %{_bindir}/llobdstat
438 %{_bindir}/llstat
439 %{_bindir}/plot-llstat
440
441 %{_bindir}/lfs
442 %{_bindir}/lfs_migrate
443 /sbin/mount.lustre
444 %{_libdir}/libptlctl.a
445 %{_libdir}/libcfsutil.a
446 %{_libdir}/liblustreapi.a
447 %{_libdir}/liblustreapi.so
448 %if %{with manpages}
449 %{_mandir}/man?/*
450 %endif
451 %{_includedir}/lustre
452 %endif
453 %{_datadir}/lustre
454 %{_sysconfdir}/udev/rules.d/99-lustre.rules
455 %config(noreplace) %{_sysconfdir}/ldev.conf
456 %config(noreplace) %{_sysconfdir}/modprobe.d/ko2iblnd.conf
457 %if %{with lustre_utils}
458 %config(noreplace) %{_sysconfdir}/lnet_routes.conf
459 %endif
460 %if %{with lustre_modules}
461
462 %if %{with ldiskfs}
463 %if %{with lustre_utils}
464 %files osd-ldiskfs-mount
465 %defattr(-,root,root)
466 %{_libdir}/@PACKAGE@/mount_osd_ldiskfs.so
467 %endif
468 %endif
469
470 %if %{with zfs}
471 %if %{with lustre_utils}
472 %files osd-zfs-mount
473 %defattr(-,root,root)
474 %{_libdir}/@PACKAGE@/mount_osd_zfs.so
475 %endif
476 %endif
477
478 %endif # with lustre_modules
479
480 %if %{with servers}
481 %files resource-agents
482 %defattr(0755,root,root)
483 %{_prefix}/lib/ocf/resource.d/lustre/
484 %endif
485
486 %if %{with lustre_tests}
487 %files tests -f lustre-tests.files
488 %defattr(-,root,root)
489 %endif
490
491 %if %{with lustre_iokit}
492 %files -n lustre-iokit
493 %defattr(-, root, root)
494 %{_bindir}/iokit-config
495 %{_bindir}/iokit-gather-stats
496 %{_bindir}/iokit-libecho
497 %{_bindir}/iokit-lstats
498 %{_bindir}/iokit-parse-ior
499 %{_bindir}/iokit-plot-obdfilter
500 %{_bindir}/iokit-plot-ost
501 %{_bindir}/iokit-plot-sgpdd
502 %{_bindir}/ior-survey
503 %{_bindir}/mds-survey
504 %{_bindir}/obdfilter-survey
505 %{_bindir}/ost-survey
506 %{_bindir}/sgpdd-survey
507 %doc lustre-iokit/ior-survey/README.ior-survey
508 %doc lustre-iokit/mds-survey/README.mds-survey
509 %doc lustre-iokit/obdfilter-survey/README.obdfilter-survey
510 %doc lustre-iokit/ost-survey/README.ost-survey
511 %doc lustre-iokit/sgpdd-survey/README.sgpdd-survey
512 %doc lustre-iokit/stats-collect/README.iokit-lstats
513 %endif
514
515 %post
516 %if 0%{?_systemd}
517 %systemd_post lnet.service
518 %endif
519
520 %preun
521 %if 0%{?_systemd}
522 %systemd_preun lnet.service
523 %endif
524
525 %postun
526 %if 0%{?_systemd}
527 %systemd_postun_with_restart lnet.service
528 %endif
529
530 %clean
531 rm -rf $RPM_BUILD_ROOT
532 rm -rf %{_tmppath}/kmp