Whamcloud - gitweb
LU-6210 utils: Use C99 initializer for lfsck_types_names
[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 # RHEL >= 7 comes with systemd
98 %if 0%{?rhel} >= 7
99 %define with_systemd 1
100 %endif
101
102 # Fedora >= 15 comes with systemd, but only >= 18 has
103 # the proper macros
104 %if 0%{?fedora} >= 18
105 %define with_systemd 1
106 %endif
107
108 # opensuse >= 12.1 comes with systemd, but only >= 13.1
109 # has the proper macros
110 %if 0%{?suse_version} >= 1310
111 %define with_systemd 1
112 %endif
113
114 Summary: Lustre File System
115 Name: %{lustre_name}
116 Version: %{version}
117 Release: 1%{?dist}
118 License: GPL
119 Group: System Environment/Kernel
120 Source: lustre-%{version}.tar.gz
121 Source1: kmp-lustre.preamble
122 Source2: kmp-lustre.files
123 Source3: kmp-lustre-osd-ldiskfs.preamble
124 Source4: kmp-lustre-osd-ldiskfs.files
125 Source5: kmp-lustre-osd-zfs.preamble
126 Source6: kmp-lustre-osd-zfs.files
127 Source7: kmp-lustre-tests.files
128 URL: https://wiki.hpdd.intel.com/
129 BuildRoot: %{_tmppath}/lustre-%{version}-root
130 Requires: %{requires_kmod_name} = %{requires_kmod_version}
131 BuildRequires: libtool
132 %if %{with servers}
133 Requires: lustre-osd
134 Requires: lustre-osd-mount
135 Obsoletes: lustre-client <= %{version}
136 Provides: lustre-client = %{version}-%{release}
137 %endif
138 # GSS requires this: BuildRequires: pkgconfig, libgssapi-devel >= 0.10
139 %if %{_vendor}=="redhat" || %{_vendor}=="fedora"
140 #suse don't support selinux
141 BuildRequires: libselinux-devel
142 Requires: libselinux
143 %endif
144 %if %{with lustre_modules}
145 BuildRequires: %kernel_module_package_buildreqs
146 %if %{_vendor}=="redhat"
147 BuildRequires: redhat-rpm-config
148 %endif
149 %endif
150
151 %if %{with systemd}
152 Requires(post): systemd
153 Requires(preun): systemd
154 Requires(postun): systemd
155 BuildRequires: systemd
156 %endif
157
158 %description
159 Userspace tools and files for the Lustre file system.
160
161 %if %{with lustre_modules}
162 %kernel_module_package -n %{name} -p %SOURCE1 -f %SOURCE2 default
163
164 %if %{with ldiskfs}
165 %kernel_module_package -n %{name}-osd-ldiskfs -p %SOURCE3 -f %SOURCE4 default
166 %if %{with lustre_utils}
167 %package osd-ldiskfs-mount
168 Summary: osd-ldiskfs-mount contains mount's ldiskfs specific dso.
169 Provides: lustre-osd-mount = %{version}-%{fullrelease}
170 Group: System Environment/Kernel
171
172 %description osd-ldiskfs-mount
173 LDISKFS hooks for mount/mkfs into a dynamic library.
174
175 %endif  # with lustre_utils
176 %endif  # with ldiskfs
177
178 %if %{with zfs}
179 %kernel_module_package -n %{name}-osd-zfs -p %SOURCE5 -f %SOURCE6 default
180 %if %{with lustre_utils}
181 %package osd-zfs-mount
182 Summary: osd-zfs-mount contains mount's zfs specific dso.
183 Provides: lustre-osd-mount = %{version}-%{fullrelease}
184 Group: System Environment/Kernel
185
186 %description osd-zfs-mount
187 ZFS hooks for mount/mkfs into a dynamic library.
188
189 %endif  # with lustre_utils
190 %endif  # with zfs
191
192 %endif # with lustre_modules
193
194 %if %{with servers}
195 %package resource-agents
196 Summary: HA Resuable Cluster Resource Scripts for Lustre
197 Group: System Environment/Base
198 Requires: lustre
199 Requires: resource-agents
200
201 %description resource-agents
202 A set of scripts to operate Lustre resources in a High Availablity
203 environment for both Pacemaker and rgmanager.
204 %endif
205
206 %package tests
207 Summary: Lustre testing framework
208 Group: System Environment/Kernel
209 Provides: %{name}-tests = %{version}
210 Requires: %{name} = %{version}, lustre-iokit
211 Requires: %{requires_kmod_name} = %{requires_kmod_version}
212 Requires: %{requires_kmod_tests_name} = %{requires_kmod_version}
213 Requires: attr, rsync, perl, lsof, /usr/bin/getconf
214
215 %description tests
216 This package contains a set of test binaries and scripts that are intended
217 to be used by the Lustre testing framework.
218
219 %if %{with lustre_modules}
220 %kernel_module_package -n %{name}-tests -f %SOURCE7 default
221 %endif
222
223 %if %{with lustre_iokit}
224 %package -n lustre-iokit
225 Summary: The Lustre IO-Kit is a collection of benchmark tools for a cluster with the Lustre file system.
226 Group: Applications/System
227 Requires: python > 2.2, sg3_utils
228
229 %description -n lustre-iokit
230 This package includes five tools:
231 sgpdd-survey:
232 A test of the 'bare metal' performance, bypassing as much of the kernel as we can. Uses the sgp_dd utility.
233
234 obdfilter-survey
235 This survey can be run in 3 modes to test disk I/O including the filesystem,
236 network I/O, and disk I/O via the network.  The script does sequential I/O
237 with varying numbers of threads and objects (files) by using lctl::test_brw
238 to drive the echo_client connected to local or remote obdfilter instances,
239 or remote obdecho instances.
240
241 ost-survey
242 This survey tests the client-to-disk performance of individual OSTs, and
243 ranks then for comparison.
244
245 stats-collect
246 This script will collect IO stats on a defined set of nodes.
247
248 ior-survey:
249 A script to run the IOR benchmark. The latest version can be downloaded from
250 http://www.llnl.gov/asci/purple/benchmarks/limited/ior/
251
252 mds-survey:
253 This survey tests the local metadata performance using the echo_client to drive
254 the MDD layer to perform operations. It is run with multiple threads (to
255 simulate MDT service threads) locally on the MDS node, and does not need Lustre
256 clients in order to run
257 %endif
258
259 %if 0%{?suse_version}
260 %debug_package
261 %endif
262 %prep
263 %setup -qn lustre-%{version}
264 ln lustre/ChangeLog ChangeLog-lustre
265 ln lnet/ChangeLog ChangeLog-lnet
266
267 %build
268 # Set an explicit path to our Linux tree, if we can.
269 cd $RPM_BUILD_DIR/lustre-%{version}
270 # override %optflags so that the vendor's overzealous flags don't create
271 # build failures
272 %define optflags -g -O2 -Werror
273
274 CONFIGURE_ARGS="%{?configure_args}"
275 if [ -n "$CONFIGURE_ARGS" ]; then
276         # make sure %%kdir and %%kobjdir are not in the configure arguments
277         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux=[^ ][^ ]* \?//')
278         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux-obj=[^ ][^ ]* \?//')
279         # remove --with-kmp-moddir from configure arguments,
280         # it will be set --with-kmp-moddir=%%kmoddir
281         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-kmp-moddir=[^ ][^ ]* \?//')
282 fi
283
284 # we need to eval "configure" because $CONFIGURE_ARGS could have a quoted
285 # string in it which we don't want word splitted by the shell
286 # also remove (build|host|target) options because they will be specified
287 # inside $CONFIGURE_ARGS
288 # kmod tools/scripts require %{name} directory with kernel modules
289 %define eval_configure %(echo '%configure' | sed -e 's#\./configure#eval ./configure#' -e 's/--\\(build\\|host\\|target\\)=[^ ][^ ]* //g')
290
291 %eval_configure $CONFIGURE_ARGS \
292         %{?with_lustre_tests:--enable-tests}%{!?with_lustre_tests:--disable-tests} \
293         %{?with_lustre_utils:--enable-utils}%{!?with_lustre_utils:--disable-utils} \
294         %{?with_lustre_modules:--enable-modules}%{!?with_lustre_modules:--disable-modules} \
295         %{!?with_shared:--disable-shared} \
296         %{!?with_static:--disable-static} \
297         %{!?with_lustre_iokit:--disable-iokit} \
298         %{!?with_ldiskfs:--disable-ldiskfs} \
299         %{!?with_servers:--disable-server} \
300         %{!?with_zfs:--without-zfs} \
301         %{!?with_lnet_dlc:--disable-dlc} \
302         %{!?with_manpages:--disable-manpages} \
303         %{!?with_systemd:--with-systemdsystemunitdir=no} \
304         %{?with_systemd:--with-systemdsystemunitdir=%{_unitdir}} \
305         --with-linux=%{kdir} \
306         --with-linux-obj=%{kobjdir} \
307         --with-kmp-moddir=%{kmoddir}/%{name}
308
309 make %{?_smp_mflags} -s %{?make_args}
310
311 %install
312 make install DESTDIR=$RPM_BUILD_ROOT
313
314 # RHEL's kernel_module_path macro expects that all the modules
315 # in a kmod package will be in modules_fs_path/<sub packagename>
316 # but Lustre installs all of the modules in a single pass into
317 # a shared location.  Since this is a restriction imposed by
318 # RHEL, we handle this here in the spec file rather than in
319 # Lustre's build system.  This is not expected to bother SLES's
320 # kernel_module_path macro.
321 basemodpath=$RPM_BUILD_ROOT%{modules_fs_path}/%{lustre_name}
322 %if %{with ldiskfs}
323 mkdir -p $basemodpath-osd-ldiskfs/fs
324 mv $basemodpath/fs/osd_ldiskfs.ko $basemodpath-osd-ldiskfs/fs/osd_ldiskfs.ko
325 mv $basemodpath/fs/ldiskfs.ko $basemodpath-osd-ldiskfs/fs/ldiskfs.ko
326 %endif
327 %if %{with zfs}
328 mkdir -p $basemodpath-osd-zfs/fs
329 mv $basemodpath/fs/osd_zfs.ko $basemodpath-osd-zfs/fs/osd_zfs.ko
330 %endif
331 %if %{with lustre_tests}
332 mkdir -p $basemodpath-tests/fs
333 mv $basemodpath/fs/llog_test.ko $basemodpath-tests/fs/llog_test.ko
334 mkdir -p $RPM_BUILD_ROOT%{_libdir}/lustre/tests/kernel/
335 mv $basemodpath/fs/kinode.ko $RPM_BUILD_ROOT%{_libdir}/lustre/tests/kernel/
336 %endif
337
338 :> lustre.files
339
340 %if %{with servers} && %{with lustre_utils}
341 # The .ha_v2 extension identifies the heartbeat resource agent as using
342 # legacy syntax. Install a compatibility symlink to avoid conflicts when
343 # newer-style agents are added.
344 ln -s Lustre.ha_v2 $RPM_BUILD_ROOT%{_sysconfdir}/ha.d/resource.d/Lustre
345 echo '%{_sysconfdir}/ha.d/resource.d/Lustre.ha_v2' >>lustre.files
346 echo '%{_sysconfdir}/ha.d/resource.d/Lustre' >>lustre.files
347 %endif
348
349 # systemd is on redhat, fedora, and suse
350 %if %{with systemd}
351 echo '%{_unitdir}/lnet.service' >>lustre.files
352 %endif
353
354 %if %{_vendor}=="redhat"
355 # The following scripts are Red Hat specific
356 %if %{with servers}
357 echo '%{_sysconfdir}/sysconfig/lustre' >>lustre.files
358 echo '%{_sysconfdir}/sysconfig/lsvcgss' >>lustre.files
359 echo '%{_sysconfdir}/init.d/lustre' >>lustre.files
360 %endif
361
362 %if %{without systemd}
363 echo '%{_sysconfdir}/init.d/lnet' >>lustre.files
364 %endif
365
366 echo '%{_sysconfdir}/init.d/lsvcgss' >>lustre.files
367 %endif
368
369 %if %{with servers}
370 mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/ocf/resource.d/lustre/
371 install -m 0755 contrib/scripts/pacemaker/* $RPM_BUILD_ROOT%{_prefix}/lib/ocf/resource.d/lustre/
372 %endif
373
374 # fc18 needs 'x' permission for library files
375 find $RPM_BUILD_ROOT -name \*.so -type f -exec chmod +x {} \;
376
377 %if %{with lnet_dlc}
378 rm -f $RPM_BUILD_ROOT%{_libdir}/liblnetconfig.la
379 %if %{with static}
380 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.a' >>lustre.files
381 %endif
382 %if %{with shared}
383 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so' >>lustre.files
384 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so.*' >>lustre.files
385 %endif
386 %endif
387
388 %if %{with ldiskfs}
389 echo '%{_libdir}/libiam.a' >>lustre.files
390 %endif
391
392 if [ -d $RPM_BUILD_ROOT%{_libdir}/lustre/snmp ] ; then
393         echo '%{_libdir}/lustre/snmp' >>lustre.files
394 fi
395
396 %if %{with lustre_utils}
397 mkdir -p $RPM_BUILD_ROOT/%{_datadir}/lustre
398 find $RPM_BUILD_ROOT%{_libdir}/@PACKAGE@ -name \*.la -type f -exec rm -f {} \;
399 %endif
400
401 %if %{with lustre_modules}
402 # mark modules executable for find-debuginfo.sh
403 find $RPM_BUILD_ROOT/lib/modules -name \*.ko -type f -exec chmod u+x {} \;
404 %endif
405
406 %if %{with lustre_tests}
407 :> lustre-tests.files
408 echo '%{_libdir}/lustre/tests/*' >>lustre-tests.files
409 echo '%{_bindir}/mcreate' >>lustre-tests.files
410 echo '%{_bindir}/munlink' >>lustre-tests.files
411 echo '%{_sbindir}/wirecheck' >>lustre-tests.files
412 echo '%{_sbindir}/wiretest' >>lustre-tests.files
413 %endif
414
415 %files -f lustre.files
416 %defattr(-,root,root)
417 %{_sbindir}/*
418 %exclude %{_sbindir}/wirecheck
419 %exclude %{_sbindir}/wiretest
420 %if %{with zfs}
421 %exclude %{_sbindir}/zfsobj2fid
422 %endif
423 %if %{with lustre_utils}
424 %if %{with servers}
425 %{_libexecdir}/lustre/lc_common
426 %{_libexecdir}/lustre/haconfig
427 %{_bindir}/lustre_req_history
428 %endif
429
430 %{_bindir}/llobdstat
431 %{_bindir}/llstat
432 %{_bindir}/plot-llstat
433
434 %{_bindir}/lfs
435 %{_bindir}/lfs_migrate
436 /sbin/mount.lustre
437 %{_libdir}/libptlctl.a
438 %{_libdir}/libcfsutil.a
439 %{_libdir}/liblustreapi.a
440 %{_libdir}/liblustreapi.so
441 %if %{with manpages}
442 %{_mandir}/man?/*
443 %endif
444 %{_datadir}/lustre
445 %{_includedir}/lustre
446 %endif
447 %{_sysconfdir}/udev/rules.d/99-lustre.rules
448 %config(noreplace) %{_sysconfdir}/ldev.conf
449 %if %{with lnet_dlc}
450 %config(noreplace) %{_sysconfdir}/lnet.conf
451 %endif
452 %config(noreplace) %{_sysconfdir}/modprobe.d/ko2iblnd.conf
453 %if %{with lustre_utils}
454 %config(noreplace) %{_sysconfdir}/lnet_routes.conf
455 %endif
456 %if %{with lustre_modules}
457
458 %if %{with ldiskfs}
459 %if %{with lustre_utils}
460 %files osd-ldiskfs-mount
461 %defattr(-,root,root)
462 %{_libdir}/@PACKAGE@/mount_osd_ldiskfs.so
463 %endif
464 %endif
465
466 %if %{with zfs}
467 %if %{with lustre_utils}
468 %files osd-zfs-mount
469 %defattr(-,root,root)
470 %{_libdir}/@PACKAGE@/mount_osd_zfs.so
471 %endif
472 %endif
473
474 %endif # with lustre_modules
475
476 %if %{with servers}
477 %files resource-agents
478 %defattr(0755,root,root)
479 %{_prefix}/lib/ocf/resource.d/lustre/
480 %endif
481
482 %if %{with lustre_tests}
483 %files tests -f lustre-tests.files
484 %defattr(-,root,root)
485 %endif
486
487 %if %{with lustre_iokit}
488 %files -n lustre-iokit
489 %defattr(-, root, root)
490 %{_bindir}/iokit-config
491 %{_bindir}/iokit-gather-stats
492 %{_bindir}/iokit-libecho
493 %{_bindir}/iokit-lstats
494 %{_bindir}/iokit-parse-ior
495 %{_bindir}/iokit-plot-obdfilter
496 %{_bindir}/iokit-plot-ost
497 %{_bindir}/iokit-plot-sgpdd
498 %{_bindir}/ior-survey
499 %{_bindir}/mds-survey
500 %{_bindir}/obdfilter-survey
501 %{_bindir}/ost-survey
502 %{_bindir}/sgpdd-survey
503 %doc lustre-iokit/ior-survey/README.ior-survey
504 %doc lustre-iokit/mds-survey/README.mds-survey
505 %doc lustre-iokit/obdfilter-survey/README.obdfilter-survey
506 %doc lustre-iokit/ost-survey/README.ost-survey
507 %doc lustre-iokit/sgpdd-survey/README.sgpdd-survey
508 %doc lustre-iokit/stats-collect/README.iokit-lstats
509 %endif
510
511 %post
512 %if %{with systemd}
513 %systemd_post lnet.service
514 %endif
515
516 %preun
517 %if %{with systemd}
518 %systemd_preun lnet.service
519 %endif
520
521 %postun
522 %if %{with systemd}
523 %systemd_postun_with_restart lnet.service
524 %endif
525
526 %clean
527 rm -rf $RPM_BUILD_ROOT
528 rm -rf %{_tmppath}/kmp