Whamcloud - gitweb
65e9ad4d4a3193a82b9d9b7c9f358e42ee68fdf2
[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.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 %{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 %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 %if %{with lustre_tests}
212 %package 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
218 %else
219 Requires: %{name} = %{version}
220 %endif
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
224
225 %description tests
226 This package contains a set of test binaries and scripts that are intended
227 to be used by the Lustre testing framework.
228
229 %if %{with lustre_modules}
230 %kernel_module_package -n %{name}-tests -f %SOURCE7 default
231 %endif
232 %endif
233
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
239
240 %description -n lustre-iokit
241 This package includes five tools:
242 sgpdd-survey:
243 A test of the 'bare metal' performance, bypassing as much of the kernel as we can. Uses the sgp_dd utility.
244
245 obdfilter-survey
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.
251
252 ost-survey
253 This survey tests the client-to-disk performance of individual OSTs, and
254 ranks then for comparison.
255
256 stats-collect
257 This script will collect IO stats on a defined set of nodes.
258
259 ior-survey:
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/
262
263 mds-survey:
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
268 %endif
269
270 %if 0%{?suse_version}
271 %debug_package
272 %endif
273 %prep
274 %setup -qn lustre-%{version}
275 ln lustre/ChangeLog ChangeLog-lustre
276 ln lnet/ChangeLog ChangeLog-lnet
277
278 %build
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
282 # build failures
283 %define optflags -g -O2 -Werror
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_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}
320
321 make %{?_smp_mflags} -s %{?make_args}
322
323 %install
324 make install DESTDIR=$RPM_BUILD_ROOT
325
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}
334 %if %{with ldiskfs}
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
338 %endif
339 %if %{with zfs}
340 mkdir -p $basemodpath-osd-zfs/fs
341 mv $basemodpath/fs/osd_zfs.ko $basemodpath-osd-zfs/fs/osd_zfs.ko
342 %endif
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/
348 %endif
349
350 :> lustre.files
351
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
359 %endif
360
361 # systemd is on redhat, fedora, and suse
362 %if %{with systemd}
363 echo '%{_unitdir}/lnet.service' >>lustre.files
364 %endif
365
366 %if %{_vendor}=="redhat"
367 # The following scripts are Red Hat specific
368 %if %{with servers}
369 echo '%{_sysconfdir}/sysconfig/lustre' >>lustre.files
370 echo '%{_sysconfdir}/sysconfig/lsvcgss' >>lustre.files
371 echo '%{_sysconfdir}/init.d/lustre' >>lustre.files
372 %endif
373
374 %if %{without systemd}
375 echo '%{_sysconfdir}/init.d/lnet' >>lustre.files
376 %endif
377
378 echo '%{_sysconfdir}/init.d/lsvcgss' >>lustre.files
379 %endif
380
381 %if %{with servers}
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/
384 %endif
385
386 # fc18 needs 'x' permission for library files
387 find $RPM_BUILD_ROOT -name \*.so -type f -exec chmod +x {} \;
388
389 %if %{with lnet_dlc}
390 rm -f $RPM_BUILD_ROOT%{_libdir}/liblnetconfig.la
391 %if %{with static}
392 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.a' >>lustre.files
393 %endif
394 %if %{with shared}
395 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so' >>lustre.files
396 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so.*' >>lustre.files
397 %endif
398 %endif
399
400 %if %{with ldiskfs}
401 echo '%{_libdir}/libiam.a' >>lustre.files
402 %endif
403
404 %if %{with snmp}
405 mkdir -p $RPM_BUILD_ROOT/%{_libdir}/lustre/snmp
406 echo '%{_libdir}/lustre/snmp' >>lustre.files
407 %endif
408
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 {} \;
413 fi
414 %endif
415
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 {} \;
419 %endif
420
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
428 %endif
429
430 %files -f lustre.files
431 %defattr(-,root,root)
432 %{_sbindir}/*
433 %if %{with lustre_tests}
434 %exclude %{_sbindir}/wirecheck
435 %exclude %{_sbindir}/wiretest
436 %endif
437 %if %{with zfs}
438 %exclude %{_sbindir}/zfsobj2fid
439 %endif
440 %if %{with lustre_utils}
441 %if %{with servers}
442 %{_libexecdir}/lustre/lc_common
443 %{_libexecdir}/lustre/haconfig
444 %{_bindir}/lustre_req_history
445 %endif
446
447 %{_bindir}/llobdstat
448 %{_bindir}/llstat
449 %{_bindir}/plot-llstat
450
451 %{_bindir}/lfs
452 %{_bindir}/lfs_migrate
453 /sbin/mount.lustre
454 %{_libdir}/liblustreapi.a
455 %{_libdir}/liblustreapi.so
456 %if %{with manpages}
457 %{_mandir}/man?/*
458 %endif
459 %{_datadir}/lustre
460 %{_includedir}/lustre
461 %{_includedir}/linux/lnet
462 %{_includedir}/linux/lustre
463 %endif
464 %{_sysconfdir}/udev/rules.d/99-lustre.rules
465 %config(noreplace) %{_sysconfdir}/ldev.conf
466 %if %{with lnet_dlc}
467 %config(noreplace) %{_sysconfdir}/lnet.conf
468 %endif
469 %config(noreplace) %{_sysconfdir}/modprobe.d/ko2iblnd.conf
470 %if %{with lustre_utils}
471 %config(noreplace) %{_sysconfdir}/lnet_routes.conf
472 %endif
473 %if %{with lustre_modules}
474
475 %if %{with shared}
476 %if %{with ldiskfs}
477 %if %{with lustre_utils}
478 %files osd-ldiskfs-mount
479 %defattr(-,root,root)
480 %{_libdir}/@PACKAGE@/mount_osd_ldiskfs.so
481 %endif
482 %endif
483 %endif
484
485 %if %{with shared}
486 %if %{with zfs}
487 %if %{with lustre_utils}
488 %files osd-zfs-mount
489 %defattr(-,root,root)
490 %{_libdir}/@PACKAGE@/mount_osd_zfs.so
491 %endif
492 %endif
493 %endif
494
495 %endif # with lustre_modules
496
497 %if %{with servers}
498 %files resource-agents
499 %defattr(0755,root,root)
500 %{_prefix}/lib/ocf/resource.d/lustre/
501 %endif
502
503 %if %{with lustre_tests}
504 %files tests -f lustre-tests.files
505 %defattr(-,root,root)
506 %endif
507
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
530 %endif
531
532 %post
533 %if %{with systemd}
534 %systemd_post lnet.service
535 %endif
536
537 %preun
538 %if %{with systemd}
539 %systemd_preun lnet.service
540 %endif
541
542 %postun
543 %if %{with systemd}
544 %systemd_postun_with_restart lnet.service
545 %endif
546
547 %clean
548 rm -rf $RPM_BUILD_ROOT
549 rm -rf %{_tmppath}/kmp