Whamcloud - gitweb
New RC 2.10.7-RC2
[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_with snmp
13 %bcond_without manpages
14 %bcond_without shared
15 %bcond_without static
16 %bcond_with    systemd
17
18 %if %{without servers}
19     # --without servers overrides --with {ldiskfs|zfs}
20     # so undefine the internal variables set by bcond_*
21     %undefine with_ldiskfs
22     %undefine with_zfs
23 %endif
24
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)}
29
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)}
32
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}
39
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 %):
44 #
45 # %%global _use_internal_dependency_generator 0
46 #
47 # on SLES10, /usr/lib/rpm/macros already sets this, so no harm in also
48 # defining it here (until Suse changes their mind)
49 #
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
57 # response from them
58 #%%global _use_internal_dependency_generator 0
59
60 # Set the package name prefix
61 %if %{undefined lustre_name}
62     %if %{with servers}
63         %global lustre_name lustre
64     %else
65         %global lustre_name lustre-client
66     %endif
67 %endif
68
69 %if %{undefined kmoddir}
70     %if %{defined kernel_module_package_moddir}
71         %global kmoddir %{kernel_module_package_moddir}
72     %else
73         %if %{defined suse_kernel_module_package}
74             %global kmoddir updates
75         %else
76             %global kmoddir extra
77         %endif
78     %endif
79 %endif
80
81 %global modules_fs_path /lib/modules/%{kversion}/%{kmoddir}
82
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
87         %endif
88         %global requires_kmod_version %{version}
89 %else   #for Suse
90         %global requires_kmod_name %{lustre_name}-kmp
91         %if %{with lustre_tests}
92                 %global requires_kmod_tests_name %{lustre_name}-tests-kmp
93         %endif
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_/;')
97         %else
98                 %global requires_kmod_version %{version}_%(echo %{krequires} | sed -r 'y/-/_/; s/^(2\.6\.[0-9]+)_/\\1.0_/;')
99         %endif
100 %endif
101
102 # RHEL >= 7 comes with systemd
103 %if 0%{?rhel} >= 7
104 %define with_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 with_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 with_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.whamcloud.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 %{with 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 %if 0%{?rhel} == 7
168 # until we have achieved full kABI compatibility we need to
169 # restrict the kernel range that can be used to the kernel
170 # version from the RHEL minor release
171 # this is supposed to be done for kmods automatically but
172 # RHBZ#1467319 seems to be getting in the way
173 # this is true for el7.0 through el7.4
174 %define preamble %{expand:%(
175 TMPFILE=`mktemp`
176 cat %{SOURCE1} > $TMPFILE
177 kver=%{kver}
178 linuxversion=${kver%%%%-*}
179 linuxrelease=${kver##*-}
180 kabiminor=${linuxrelease%%%%.*}
181 echo "Requires:       kernel < $linuxversion-$((kabiminor+1)), kernel >= $linuxversion-$((kabiminor))" >> $TMPFILE
182 echo $TMPFILE
183 )}
184 %else
185 %define preamble %{SOURCE1}
186 %endif
187 %kernel_module_package -n %{name} -p %preamble -f %SOURCE2 default
188
189 %if %{with ldiskfs}
190 %kernel_module_package -n %{name}-osd-ldiskfs -p %SOURCE3 -f %SOURCE4 default
191 %if %{with lustre_utils}
192 %package osd-ldiskfs-mount
193 Summary: osd-ldiskfs-mount contains mount's ldiskfs specific dso.
194 Provides: lustre-osd-mount = %{version}-%{fullrelease}
195 Group: System Environment/Kernel
196
197 %description osd-ldiskfs-mount
198 LDISKFS hooks for mount/mkfs into a dynamic library.
199
200 %endif  # with lustre_utils
201 %endif  # with ldiskfs
202
203 %if %{with zfs}
204 %kernel_module_package -n %{name}-osd-zfs -p %SOURCE5 -f %SOURCE6 default
205 %if %{with lustre_utils}
206 %package osd-zfs-mount
207 Summary: osd-zfs-mount contains mount's zfs specific dso.
208 Provides: lustre-osd-mount = %{version}-%{fullrelease}
209 Group: System Environment/Kernel
210
211 %description osd-zfs-mount
212 ZFS hooks for mount/mkfs into a dynamic library.
213
214 %endif  # with lustre_utils
215 %endif  # with zfs
216
217 %endif # with lustre_modules
218
219 %if %{with servers}
220 %package resource-agents
221 Summary: HA Resuable Cluster Resource Scripts for Lustre
222 Group: System Environment/Base
223 Requires: lustre
224 Requires: resource-agents
225
226 %description resource-agents
227 A set of scripts to operate Lustre resources in a High Availablity
228 environment for both Pacemaker and rgmanager.
229 %endif
230
231 %if %{with lustre_tests}
232 %package tests
233 Summary: Lustre testing framework
234 Group: System Environment/Kernel
235 Provides: %{name}-tests = %{version}
236 %if %{with lustre_iokit}
237 Requires: %{name} = %{version}, lustre-iokit
238 %else
239 Requires: %{name} = %{version}
240 %endif
241 Requires: %{requires_kmod_name} = %{requires_kmod_version}
242 Requires: %{requires_kmod_tests_name} = %{requires_kmod_version}
243 Requires: attr, rsync, perl, lsof, /usr/bin/getconf
244
245 %description tests
246 This package contains a set of test binaries and scripts that are intended
247 to be used by the Lustre testing framework.
248
249 %if %{with lustre_modules}
250 %kernel_module_package -n %{name}-tests -f %SOURCE7 default
251 %endif
252 %endif
253
254 %if %{with lustre_iokit}
255 %package -n lustre-iokit
256 Summary: The Lustre IO-Kit is a collection of benchmark tools for a cluster with the Lustre file system.
257 Group: Applications/System
258 Requires: python > 2.2, sg3_utils
259
260 %description -n lustre-iokit
261 This package includes five tools:
262 sgpdd-survey:
263 A test of the 'bare metal' performance, bypassing as much of the kernel as we can. Uses the sgp_dd utility.
264
265 obdfilter-survey
266 This survey can be run in 3 modes to test disk I/O including the filesystem,
267 network I/O, and disk I/O via the network.  The script does sequential I/O
268 with varying numbers of threads and objects (files) by using lctl::test_brw
269 to drive the echo_client connected to local or remote obdfilter instances,
270 or remote obdecho instances.
271
272 ost-survey
273 This survey tests the client-to-disk performance of individual OSTs, and
274 ranks then for comparison.
275
276 stats-collect
277 This script will collect IO stats on a defined set of nodes.
278
279 ior-survey:
280 A script to run the IOR benchmark. The latest version can be downloaded from
281 http://www.llnl.gov/asci/purple/benchmarks/limited/ior/
282
283 mds-survey:
284 This survey tests the local metadata performance using the echo_client to drive
285 the MDD layer to perform operations. It is run with multiple threads (to
286 simulate MDT service threads) locally on the MDS node, and does not need Lustre
287 clients in order to run
288 %endif
289
290 %if 0%{?suse_version}
291 %debug_package
292 %endif
293 %prep
294 %setup -qn lustre-%{version}
295 ln lustre/ChangeLog ChangeLog-lustre
296 ln lnet/ChangeLog ChangeLog-lnet
297
298 %build
299 # Set an explicit path to our Linux tree, if we can.
300 cd $RPM_BUILD_DIR/lustre-%{version}
301 # override %optflags so that the vendor's overzealous flags don't create
302 # build failures
303 %define optflags -g -O2 -Werror
304
305 CONFIGURE_ARGS="%{?configure_args}"
306 if [ -n "$CONFIGURE_ARGS" ]; then
307         # make sure %%kdir and %%kobjdir are not in the configure arguments
308         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux=[^ ][^ ]* \?//')
309         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux-obj=[^ ][^ ]* \?//')
310         # remove --with-kmp-moddir from configure arguments,
311         # it will be set --with-kmp-moddir=%%kmoddir
312         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-kmp-moddir=[^ ][^ ]* \?//')
313 fi
314
315 # we need to eval "configure" because $CONFIGURE_ARGS could have a quoted
316 # string in it which we don't want word splitted by the shell
317 # also remove (build|host|target) options because they will be specified
318 # inside $CONFIGURE_ARGS
319 # kmod tools/scripts require %{name} directory with kernel modules
320 %define eval_configure %(echo '%configure' | sed -e 's#\./configure#eval ./configure#' -e 's/--\\(build\\|host\\|target\\)=[^ ][^ ]* //g')
321
322 %eval_configure $CONFIGURE_ARGS \
323         %{?with_lustre_tests:--enable-tests}%{!?with_lustre_tests:--disable-tests} \
324         %{?with_lustre_utils:--enable-utils}%{!?with_lustre_utils:--disable-utils} \
325         %{?with_lustre_modules:--enable-modules}%{!?with_lustre_modules:--disable-modules} \
326         %{!?with_shared:--disable-shared} \
327         %{!?with_static:--disable-static} \
328         %{!?with_lustre_iokit:--disable-iokit} \
329         %{!?with_ldiskfs:--disable-ldiskfs} \
330         %{!?with_servers:--disable-server} \
331         %{!?with_zfs:--without-zfs} \
332         %{!?with_lnet_dlc:--disable-dlc} \
333         %{!?with_snmp:--disable-snmp} \
334         %{!?with_manpages:--disable-manpages} \
335         %{!?with_systemd:--with-systemdsystemunitdir=no} \
336         %{?with_systemd:--with-systemdsystemunitdir=%{_unitdir}} \
337         --with-linux=%{kdir} \
338         --with-linux-obj=%{kobjdir} \
339         --with-kmp-moddir=%{kmoddir}/%{name}
340
341 make %{?_smp_mflags} -s %{?make_args}
342
343 %install
344 make install DESTDIR=$RPM_BUILD_ROOT
345
346 # RHEL's kernel_module_path macro expects that all the modules
347 # in a kmod package will be in modules_fs_path/<sub packagename>
348 # but Lustre installs all of the modules in a single pass into
349 # a shared location.  Since this is a restriction imposed by
350 # RHEL, we handle this here in the spec file rather than in
351 # Lustre's build system.  This is not expected to bother SLES's
352 # kernel_module_path macro.
353 basemodpath=$RPM_BUILD_ROOT%{modules_fs_path}/%{lustre_name}
354 %if %{with ldiskfs}
355 mkdir -p $basemodpath-osd-ldiskfs/fs
356 mv $basemodpath/fs/osd_ldiskfs.ko $basemodpath-osd-ldiskfs/fs/osd_ldiskfs.ko
357 mv $basemodpath/fs/ldiskfs.ko $basemodpath-osd-ldiskfs/fs/ldiskfs.ko
358 %endif
359 %if %{with zfs}
360 mkdir -p $basemodpath-osd-zfs/fs
361 mv $basemodpath/fs/osd_zfs.ko $basemodpath-osd-zfs/fs/osd_zfs.ko
362 %endif
363 %if %{with lustre_tests}
364 mkdir -p $basemodpath-tests/fs
365 mv $basemodpath/fs/llog_test.ko $basemodpath-tests/fs/llog_test.ko
366 mkdir -p $RPM_BUILD_ROOT%{_libdir}/lustre/tests/kernel/
367 mv $basemodpath/fs/kinode.ko $RPM_BUILD_ROOT%{_libdir}/lustre/tests/kernel/
368 %endif
369
370 :> lustre.files
371
372 %if %{with servers} && %{with lustre_utils}
373 # The .ha_v2 extension identifies the heartbeat resource agent as using
374 # legacy syntax. Install a compatibility symlink to avoid conflicts when
375 # newer-style agents are added.
376 ln -s Lustre.ha_v2 $RPM_BUILD_ROOT%{_sysconfdir}/ha.d/resource.d/Lustre
377 echo '%{_sysconfdir}/ha.d/resource.d/Lustre.ha_v2' >>lustre.files
378 echo '%{_sysconfdir}/ha.d/resource.d/Lustre' >>lustre.files
379 %endif
380
381 # systemd is on redhat, fedora, and suse
382 %if %{with systemd}
383 echo '%{_unitdir}/lnet.service' >>lustre.files
384 %endif
385
386 %if %{_vendor}=="redhat"
387 # The following scripts are Red Hat specific
388 %if %{with servers}
389 echo '%{_sysconfdir}/sysconfig/lustre' >>lustre.files
390 echo '%{_sysconfdir}/sysconfig/lsvcgss' >>lustre.files
391 echo '%{_sysconfdir}/init.d/lustre' >>lustre.files
392 %endif
393
394 %if %{without systemd}
395 echo '%{_sysconfdir}/init.d/lnet' >>lustre.files
396 %endif
397
398 echo '%{_sysconfdir}/init.d/lsvcgss' >>lustre.files
399 %endif
400
401 %if %{with servers}
402 mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/ocf/resource.d/lustre/
403 install -m 0755 contrib/scripts/pacemaker/* $RPM_BUILD_ROOT%{_prefix}/lib/ocf/resource.d/lustre/
404 %endif
405
406 # fc18 needs 'x' permission for library files
407 find $RPM_BUILD_ROOT -name \*.so -type f -exec chmod +x {} \;
408
409 %if %{with lnet_dlc}
410 rm -f $RPM_BUILD_ROOT%{_libdir}/liblnetconfig.la
411 %if %{with static}
412 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.a' >>lustre.files
413 %endif
414 %if %{with shared}
415 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so' >>lustre.files
416 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so.*' >>lustre.files
417 %endif
418 %endif
419
420 %if %{with ldiskfs}
421 echo '%{_libdir}/libiam.a' >>lustre.files
422 %endif
423
424 %if %{with snmp}
425 mkdir -p $RPM_BUILD_ROOT/%{_libdir}/lustre/snmp
426 echo '%{_libdir}/lustre/snmp' >>lustre.files
427 %endif
428
429 %if %{with lustre_utils}
430 mkdir -p $RPM_BUILD_ROOT/%{_datadir}/lustre
431 if [ -d $RPM_BUILD_ROOT%{_libdir}/lustre ] ; then
432         find $RPM_BUILD_ROOT%{_libdir}/@PACKAGE@ -name \*.la -type f -exec rm -f {} \;
433 fi
434 %endif
435
436 %if %{with lustre_modules}
437 # mark modules executable for find-debuginfo.sh
438 find $RPM_BUILD_ROOT/lib/modules -name \*.ko -type f -exec chmod u+x {} \;
439 %endif
440
441 %if %{with lustre_tests}
442 :> lustre-tests.files
443 echo '%{_libdir}/lustre/tests/*' >>lustre-tests.files
444 echo '%{_bindir}/mcreate' >>lustre-tests.files
445 echo '%{_bindir}/munlink' >>lustre-tests.files
446 echo '%{_sbindir}/wirecheck' >>lustre-tests.files
447 echo '%{_sbindir}/wiretest' >>lustre-tests.files
448 %endif
449
450 %files -f lustre.files
451 %defattr(-,root,root)
452 %{_sbindir}/*
453 %if %{with lustre_tests}
454 %exclude %{_sbindir}/wirecheck
455 %exclude %{_sbindir}/wiretest
456 %endif
457 %if %{with zfs}
458 %exclude %{_sbindir}/zfsobj2fid
459 %endif
460 %if %{with lustre_utils}
461 %if %{with servers}
462 %{_libexecdir}/lustre/lc_common
463 %{_libexecdir}/lustre/haconfig
464 %{_bindir}/lustre_req_history
465 %endif
466
467 %{_bindir}/llobdstat
468 %{_bindir}/llstat
469 %{_bindir}/plot-llstat
470
471 %{_bindir}/lfs
472 %{_bindir}/lfs_migrate
473 /sbin/mount.lustre
474 %{_libdir}/libptlctl.a
475 %{_libdir}/libcfsutil.a
476 %{_libdir}/liblustreapi.a
477 %{_libdir}/liblustreapi.so
478 %if %{with manpages}
479 %{_mandir}/man?/*
480 %endif
481 %{_datadir}/lustre
482 %{_includedir}/lustre
483 %endif
484 %{_sysconfdir}/udev/rules.d/99-lustre.rules
485 %if %{with servers}
486 %{_sysconfdir}/udev/rules.d/99-lustre-server.rules
487 %endif
488 %config(noreplace) %{_sysconfdir}/ldev.conf
489 %if %{with lnet_dlc}
490 %config(noreplace) %{_sysconfdir}/lnet.conf
491 %endif
492 %config(noreplace) %{_sysconfdir}/modprobe.d/ko2iblnd.conf
493 %if %{with lustre_utils}
494 %config(noreplace) %{_sysconfdir}/lnet_routes.conf
495 %endif
496 %if %{with lustre_modules}
497
498 %if %{with ldiskfs}
499 %if %{with lustre_utils}
500 %files osd-ldiskfs-mount
501 %defattr(-,root,root)
502 %{_libdir}/@PACKAGE@/mount_osd_ldiskfs.so
503 %endif
504 %endif
505
506 %if %{with zfs}
507 %if %{with lustre_utils}
508 %files osd-zfs-mount
509 %defattr(-,root,root)
510 %{_libdir}/@PACKAGE@/mount_osd_zfs.so
511 %endif
512 %endif
513
514 %endif # with lustre_modules
515
516 %if %{with servers}
517 %files resource-agents
518 %defattr(0755,root,root)
519 %{_prefix}/lib/ocf/resource.d/lustre/
520 %endif
521
522 %if %{with lustre_tests}
523 %files tests -f lustre-tests.files
524 %defattr(-,root,root)
525 %endif
526
527 %if %{with lustre_iokit}
528 %files -n lustre-iokit
529 %defattr(-, root, root)
530 %{_bindir}/iokit-config
531 %{_bindir}/iokit-gather-stats
532 %{_bindir}/iokit-libecho
533 %{_bindir}/iokit-lstats
534 %{_bindir}/iokit-parse-ior
535 %{_bindir}/iokit-plot-obdfilter
536 %{_bindir}/iokit-plot-ost
537 %{_bindir}/iokit-plot-sgpdd
538 %{_bindir}/ior-survey
539 %{_bindir}/mds-survey
540 %{_bindir}/obdfilter-survey
541 %{_bindir}/ost-survey
542 %{_bindir}/sgpdd-survey
543 %doc lustre-iokit/ior-survey/README.ior-survey
544 %doc lustre-iokit/mds-survey/README.mds-survey
545 %doc lustre-iokit/obdfilter-survey/README.obdfilter-survey
546 %doc lustre-iokit/ost-survey/README.ost-survey
547 %doc lustre-iokit/sgpdd-survey/README.sgpdd-survey
548 %doc lustre-iokit/stats-collect/README.iokit-lstats
549 %endif
550
551 %post
552 %if %{with systemd}
553 %systemd_post lnet.service
554 %endif
555
556 %preun
557 %if %{with systemd}
558 %systemd_preun lnet.service
559 %endif
560
561 %postun
562 %if %{with systemd}
563 %systemd_postun_with_restart lnet.service
564 %endif
565
566 %clean
567 rm -rf $RPM_BUILD_ROOT
568 rm -rf %{_tmppath}/kmp