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