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