Whamcloud - gitweb
LU-16058 build: proc_ops check fails with SUBARCH undefined
[fs/lustre-release.git] / config / lustre-build-linux.m4
1 #
2 # LB_LINUX_VERSION
3 #
4 # Set things accordingly for a linux kernel
5 #
6 AC_DEFUN([LB_LINUX_VERSION], [
7 KMODEXT=".ko"
8 AC_SUBST(KMODEXT)
9
10 makerule="$PWD/build"
11 AC_CACHE_CHECK([for external module build target], lb_cv_module_target,
12 [
13         lb_cv_module_target=""
14         rm -f build/conftest.i
15         MODULE_TARGET="M"
16         makerule="$PWD/build"
17         LB_LINUX_TRY_MAKE([], [],
18                 [$makerule LUSTRE_KERNEL_TEST=conftest.i],
19                 [test -s build/conftest.i],
20                 [lb_cv_module_target="M54"], [
21         MODULE_TARGET="M"
22         makerule="_module_$PWD/build"
23         LB_LINUX_TRY_MAKE([], [],
24                 [$makerule LUSTRE_KERNEL_TEST=conftest.i],
25                 [test -s build/conftest.i],
26                 [lb_cv_module_target="M"], [
27         MODULE_TARGET="M"
28         makerule=""
29         LB_LINUX_TRY_MAKE([], [],
30                 [$makerule LUSTRE_KERNEL_TEST=conftest.i],
31                 [test -s build/conftest.i],
32                 [lb_cv_module_target="M58"], [
33                         AC_MSG_ERROR([kernel module make failed; check config.log for details])
34         ])])])
35 ])
36 AS_IF([test -z "$lb_cv_module_target"],
37         [AC_MSG_ERROR([unknown external module build target])],
38 [test "x$lb_cv_module_target" = "xM54"],
39         [makerule="$PWD/build"
40         lb_cv_module_target="M"],
41 [test "x$lb_cv_module_target" = "xM58"],
42         [makerule=""
43         lb_cv_module_target="M"],
44 [test "x$lb_cv_module_target" = "xM"],
45         [makerule="_module_$PWD/build"])
46 MODULE_TARGET=$lb_cv_module_target
47 AC_SUBST(MODULE_TARGET)
48 ])
49
50 #
51 # LB_LINUX_UTSRELEASE
52 #
53 # Determine the Linux kernel version string from the utsrelease
54 #
55 AC_DEFUN([LB_LINUX_UTSRELEASE], [
56 AC_CACHE_CHECK([for Linux kernel utsrelease], lb_cv_utsrelease, [
57 lb_cv_utsrelease=""
58 utsrelease1=$LINUX_OBJ/include/generated/utsrelease.h
59 utsrelease2=$LINUX_OBJ/include/linux/utsrelease.h
60 utsrelease3=$LINUX_OBJ/include/linux/version.h
61 AS_IF([test -r $utsrelease1 && fgrep -q UTS_RELEASE $utsrelease1],
62         [utsrelease=$utsrelease1],
63 [test -r $utsrelease2 && fgrep -q UTS_RELEASE $utsrelease2],
64         [utsrelease=$utsrelease2],
65 [test -r $utsrelease3 && fgrep -q UTS_RELEASE $utsrelease3],
66         [utsrelease=$utsrelease3])
67 AS_IF([test -n "$utsrelease"],
68         [lb_cv_utsrelease=$(awk -F \" '/ UTS_RELEASE / { print [$]2 }' $utsrelease)],
69         [AC_MSG_ERROR([
70
71 Cannot find UTS_RELEASE definition.
72
73 This is often provided by the kernel-devel package.
74 ])
75         ])
76 ])
77 AS_IF([test -z "$lb_cv_utsrelease"],
78         [AC_MSG_ERROR([Cannot determine Linux kernel version.])])
79 LINUXRELEASE=$lb_cv_utsrelease
80 AC_SUBST(LINUXRELEASE)
81 ])
82
83 #
84 # LB_LINUX_RELEASE
85 #
86 # get the release version of linux
87 #
88 AC_DEFUN([LB_LINUX_RELEASE], [
89         LB_LINUX_UTSRELEASE
90
91         # Define default states
92         RHEL_KERNEL="no"
93         SUSE_KERNEL="no"
94         UBUNTU_KERNEL="no"
95         # And if any of the above kernels has been detected yet
96         KERNEL_FOUND="no"
97
98         # Check for RedHat first (no need to check KERNEL_FOUND
99         AC_CACHE_CHECK([for RedHat kernel release number], lb_cv_rhel_kernel_version, [
100                 lb_cv_rhel_kernel_version=""
101                 AS_IF([fgrep -q RHEL_RELEASE $LINUX_OBJ/include/$VERSION_HDIR/version.h], [
102                         lb_cv_rhel_kernel_version=$(awk '/ RHEL_MAJOR / { print [$]3 }' \
103                                 $LINUX_OBJ/include/$VERSION_HDIR/version.h)$(awk \
104                                 '/ RHEL_MINOR / { print [$]3 }' \
105                                 $LINUX_OBJ/include/$VERSION_HDIR/version.h)
106                 ])
107         ])
108         AS_IF([test -n "$lb_cv_rhel_kernel_version"], [
109                 RHEL_KERNEL="yes"
110                 KERNEL_FOUND="yes"
111                 RHEL_RELEASE_NO=$lb_cv_rhel_kernel_version
112         ])
113
114         # Check for SuSE
115         AS_IF([test "x$KERNEL_FOUND" = "xno"], [
116                 LB_CHECK_CONFIG([SUSE_KERNEL], [
117                         SUSE_KERNEL="yes"
118                         KERNEL_FOUND="yes"
119                 ], [])
120         ])
121
122         # Check for Ubuntu
123         AS_IF([test "x$KERNEL_FOUND" = "xno"], [
124                 AC_CACHE_CHECK([for Ubuntu kernel signature], lb_cv_ubuntu_kernel_sig, [
125                         lb_cv_ubuntu_kernel_sig="no"
126                         AS_IF([fgrep -q "CONFIG_VERSION_SIGNATURE \"Ubuntu" $LINUX_OBJ/include/generated/autoconf.h], [
127                                 lb_cv_ubuntu_kernel_sig="yes"
128                         ])
129                 ])
130                 AS_IF([test "x$lb_cv_ubuntu_kernel_sig" = "xyes"], [
131                         UBUNTU_KERNEL="yes"
132                         KERNEL_FOUND="yes"
133                 ])
134         ])
135
136         # Check for a ELRepo -ml kernel on RHEL 7/8
137         AS_IF([test "x$KERNEL_FOUND" = "xno"], [
138                 AC_CACHE_CHECK([for ELRepo -ml kernel signature on CentOS],
139                                 lb_cv_mainline_kernel_sig, [
140                         lb_cv_mainline_kernel_sig="no"
141                         AS_IF([fgrep -q '.el7.' $LINUX_OBJ/include/generated/utsrelease.h], [
142                                 lb_cv_mainline_kernel_sig="yes"
143                         ])
144                         AS_IF([fgrep -q '.el8.' $LINUX_OBJ/include/generated/utsrelease.h], [
145                                 lb_cv_mainline_kernel_sig="yes"
146                         ])
147                 ])
148                 AS_IF([test "x$lb_cv_mainline_kernel_sig" = "xyes"], [
149                         RHEL_KERNEL="yes"
150                         KERNEL_FOUND="yes"
151                 ])
152         ])
153
154         # If still no kernel was found, a warning is issued
155         AS_IF([test "x$KERNEL_FOUND" = "xno"], [
156                 AC_MSG_WARN([Kernel Distro seems to be neither RedHat, SuSE nor Ubuntu])
157         ])
158
159         AC_MSG_CHECKING([for Linux kernel module package directory])
160         AC_ARG_WITH([kmp-moddir],
161                 AS_HELP_STRING([--with-kmp-moddir=string],
162                         [set the kmod updates or extra directory]),
163                 [KMP_MODDIR=$withval
164                  IN_KERNEL=''],[
165                 AS_IF([test x$RHEL_KERNEL = xyes], [KMP_MODDIR="extra/kernel"],
166                       [test x$SUSE_KERNEL = xyes], [KMP_MODDIR="updates/kernel"],
167                       [test x$UBUNTU_KERNEL = xyes], [KMP_MODDIR="updates/kernel"],
168                       [AC_MSG_WARN([Kernel Distro seems to be neither RedHat, SuSE nor Ubuntu])]
169                 )
170                 IN_KERNEL="${PACKAGE}"])
171         AC_MSG_RESULT($KMP_MODDIR)
172
173         moduledir="/lib/modules/${LINUXRELEASE}/${KMP_MODDIR}"
174
175         modulefsdir="${moduledir}/fs/${IN_KERNEL}"
176         AC_SUBST(modulefsdir)
177
178         modulenetdir="${moduledir}/net/${IN_KERNEL}"
179         AC_SUBST(modulenetdir)
180
181         AC_SUBST(KMP_MODDIR)
182 ])
183
184 #
185 # LB_LINUX_SYMVERFILE
186 #
187 # SLES 9 uses a different name for this file - unsure about vanilla kernels
188 # around this version, but it matters for servers only.
189 AC_DEFUN([LB_LINUX_SYMVERFILE], [
190 AC_CACHE_CHECK([for the name of module symbol version file], lb_cv_module_symvers, [
191 AS_IF([grep -q Modules.symvers $LINUX/scripts/Makefile.modpost],
192         [lb_cv_module_symvers=Modules.symvers],
193         [lb_cv_module_symvers=Module.symvers])
194 ])
195 SYMVERFILE=$lb_cv_module_symvers
196 AC_SUBST(SYMVERFILE)
197 ])
198
199 #
200 # LB_ARG_REPLACE_PATH(PACKAGE, PATH)
201 #
202 AC_DEFUN([LB_ARG_REPLACE_PATH], [
203 new_configure_args=
204 eval set -- $ac_configure_args
205 for arg; do
206         case $arg in
207                 --with-[$1]=*)
208                         arg=--with-[$1]=[$2] ;;
209                 *\'*)
210                         arg=$(printf %s\n ["$arg"] | sed "s/'/'\\\\\\\\''/g") ;;
211         esac
212         dnl AS_VAR_APPEND([new_configure_args], [" '$arg'"])
213         new_configure_args="$new_configure_args '$arg'"
214 done
215 ac_configure_args=$new_configure_args
216 ])
217
218 #
219 # __LB_ARG_CANON_PATH
220 #
221 # this is the work-horse of the next function
222 #
223 AC_DEFUN([__LB_ARG_CANON_PATH], [
224         [$3]=$(readlink -f $with_$2)
225         LB_ARG_REPLACE_PATH([$1], $[$3])
226 ])
227
228 #
229 # LB_ARG_CANON_PATH
230 #
231 # a front-end for the above function that transforms - and . in the
232 # PACKAGE portion of --with-PACKAGE into _ suitable for variable names
233 #
234 AC_DEFUN([LB_ARG_CANON_PATH], [
235         __LB_ARG_CANON_PATH([$1], m4_translit([$1], [-.], [__]), [$2])
236 ])
237
238 #
239 # LB_LINUX_PATH
240 #
241 # Find paths for linux, handling kernel-source rpms
242 #
243 AC_DEFUN([LB_LINUX_PATH], [
244 for DEFAULT_LINUX in /usr/src/linux-source-* /lib/modules/$(uname -r)/{source,build} /usr/src/linux* $(find /usr/src/kernels/ -maxdepth 1 -name @<:@0-9@:>@\* | xargs -r ls -d | tail -n 1); do
245         AS_IF([readlink -q -e $DEFAULT_LINUX >/dev/null], [break])
246 done
247 if test "$DEFAULT_LINUX" = "/lib/modules/$(uname -r)/source"; then
248         PATHS="/lib/modules/$(uname -r)/build"
249 else
250         PATHS="/usr/src/linux-headers-$(uname -r)"
251 fi
252 PATHS+=" $DEFAULT_LINUX"
253 for DEFAULT_LINUX_OBJ in $PATHS; do
254         AS_IF([readlink -q -e $DEFAULT_LINUX_OBJ >/dev/null], [break])
255 done
256
257 AC_MSG_CHECKING([for Linux sources])
258 AC_ARG_WITH([linux],
259         AS_HELP_STRING([--with-linux=path],
260                        [set path to Linux source (default=/lib/modules/$(uname -r)/{source,build},/usr/src/linux)]),
261         [LB_ARG_CANON_PATH([linux], [LINUX])
262         DEFAULT_LINUX_OBJ=$LINUX],
263         [LINUX=$DEFAULT_LINUX])
264 AC_MSG_RESULT([$LINUX])
265
266 # -------- check for linux --------
267 LB_CHECK_FILE([$LINUX], [],
268         [AC_MSG_ERROR([Kernel source $LINUX could not be found.])])
269
270 # -------- linux objects (for 2.6) --
271 AC_MSG_CHECKING([for Linux objects])
272 AC_ARG_WITH([linux-obj],
273         AS_HELP_STRING([--with-linux-obj=path],
274                         [set path to Linux objects (default=/lib/modules/$(uname -r)/build,/usr/src/linux)]),
275         [LB_ARG_CANON_PATH([linux-obj], [LINUX_OBJ])],
276         [LINUX_OBJ=$DEFAULT_LINUX_OBJ])
277 AC_MSG_RESULT([$LINUX_OBJ])
278
279 ## -------- with linux should point to <kernel>-common on Debian
280 AS_IF([test ${LINUX} == ${LINUX_OBJ} -a ${LINUX} == $(realpath ${LINUX})],[
281         this_arch=$(realpath ${LINUX} | sed 's/-/\n/g' | tail -1)
282         linux_headers_common=$(realpath ${LINUX}|sed "s/-${this_arch}\$/-common/g")
283         AS_IF([test "${this_arch}" != common],[
284                 _cah="${linux_headers_common}/include/linux/compiler_attributes.h"
285                 _cgh="${linux_headers_common}/include/linux/compiler-gcc.h"
286                 AS_IF([test -f "${_cah}" -o -f "${_cgh}"],[
287                         AC_MSG_WARN([Setting LINUX to ${linux_headers_common} was ${LINUX}])
288                         LINUX=${linux_headers_common}])
289                 ])
290         ])
291 AC_SUBST(LINUX)
292 AC_SUBST(LINUX_OBJ)
293 # -------- check for .config --------
294 AC_ARG_WITH([linux-config],
295         [AS_HELP_STRING([--with-linux-config=path],
296                         [set path to Linux .conf (default=$LINUX_OBJ/.config)])],
297         [LB_ARG_CANON_PATH([linux-config], [LINUX_CONFIG])],
298         [LINUX_CONFIG=$LINUX_OBJ/.config])
299
300 # -------- check if .config exists --
301 LB_CHECK_FILE([$LINUX_CONFIG], [],
302         [AC_MSG_ERROR([
303
304 Kernel config could not be found.
305 ])
306 ])
307 AC_SUBST(LINUX_CONFIG)
308
309 LB_CHECK_FILE([/boot/kernel.h],
310         [KERNEL_SOURCE_HEADER='/boot/kernel.h'],
311         [LB_CHECK_FILE([/var/adm/running-kernel.h],
312                 [KERNEL_SOURCE_HEADER='/var/adm/running-kernel.h'])])
313
314 AC_ARG_WITH([kernel-source-header],
315         AS_HELP_STRING([--with-kernel-source-header=path],
316                         [Use a different kernel version header.]),
317         [LB_ARG_CANON_PATH([kernel-source-header], [KERNEL_SOURCE_HEADER])])
318
319 # ----------- make dep run? ------------------
320 # at 2.6.19 # $LINUX/include/linux/config.h is removed
321 # and at more old has only one line include <autoconf.h>
322 #
323 LB_CHECK_FILE([$LINUX_OBJ/include/generated/autoconf.h],
324         [AUTOCONF_HDIR=generated],
325         [LB_CHECK_FILE([$LINUX_OBJ/include/linux/autoconf.h],
326                 [AUTOCONF_HDIR=linux],
327                 [AC_MSG_ERROR([Run make config in $LINUX.])])])
328 AC_SUBST(AUTOCONF_HDIR)
329
330 LB_CHECK_FILE([$LINUX_OBJ/include/linux/version.h],
331         [VERSION_HDIR=linux],
332         [LB_CHECK_FILE([$LINUX_OBJ/include/generated/uapi/linux/version.h],
333                 [VERSION_HDIR=generated/uapi/linux],
334                 [AC_MSG_ERROR([Run make config in $LINUX.])])])
335 AC_SUBST(VERSION_HDIR)
336
337 # ----------- kconfig.h exists ---------------
338 # kernel 3.1, $LINUX/include/linux/kconfig.h is added
339 # see kernel commit 2a11c8ea20bf850b3a2c60db8c2e7497d28aba99
340 #
341 LB_CHECK_FILE([$LINUX/include/linux/kconfig.h],
342               [CONFIG_INCLUDE=$LINUX/include/linux/kconfig.h],
343               [CONFIG_INCLUDE=include/$AUTOCONF_HDIR/autoconf.h])
344 AC_SUBST(CONFIG_INCLUDE)
345
346 # ------------ rhconfig.h includes runtime-generated bits --
347 # RedHat kernel-source checks
348
349 # we know this exists after the check above.  if the user
350 # tarred up the tree and ran make dep etc. in it, then
351 # version.h gets overwritten with a standard linux one.
352
353 AS_IF([grep rhconfig $LINUX_OBJ/include/$VERSION_HDIR/version.h >/dev/null], [
354         # This is a clean kernel-source tree, we need to
355         # enable extensive workarounds to get this to build modules
356         LB_CHECK_FILE([$KERNEL_SOURCE_HEADER], [
357                 AS_IF([test $KERNEL_SOURCE_HEADER = '/boot/kernel.h'],
358                         [AC_MSG_WARN([
359
360 Using /boot/kernel.h from RUNNING kernel.
361
362 If this is not what you want, use --with-kernel-source-header.
363 Consult build/README.kernel-source for details.
364 ])
365                 ])],
366                 [AC_MSG_ERROR([
367
368 $KERNEL_SOURCE_HEADER not found.
369
370 Consult build/README.kernel-source for details.
371 ])
372                 ])
373         EXTRA_KCFLAGS="-include $KERNEL_SOURCE_HEADER $EXTRA_KCFLAGS"
374 ])
375
376 # this is needed before we can build modules
377 LB_LINUX_VERSION
378
379 # --- check that we can build modules at all
380 LB_CHECK_COMPILE([that modules can be built at all], build_modules,
381         [], [], [], [
382         AC_MSG_ERROR([
383
384 Kernel modules cannot be built. Consult config.log for details.
385
386 If you are trying to build with a kernel-source rpm,
387 consult build/README.kernel-source
388 ])
389 ])
390
391 LB_LINUX_RELEASE
392 ]) # end of LB_LINUX_PATH
393
394 #
395 # LC_MODULE_LOADING
396 #
397 # after 2.6.28 CONFIG_KMOD is removed, and only CONFIG_MODULES remains
398 # so we test if request_module is implemented or not
399 AC_DEFUN([LC_MODULE_LOADING], [
400 AC_CACHE_CHECK([if Linux kernel module loading is possible], lb_cv_module_loading, [
401 LB_LINUX_TRY_MAKE([
402         #include <linux/kmod.h>
403 ], [
404         int myretval=ENOSYS ;
405         return myretval;
406 ], [
407         $makerule LUSTRE_KERNEL_TEST=conftest.i
408 ], [dnl
409         grep request_module build/conftest.i |dnl
410                 grep -v `grep "int myretval=" build/conftest.i |dnl
411                         cut -d= -f2 | cut -d" "  -f1`dnl
412                 >/dev/null dnl
413 ], [lb_cv_module_loading="yes"], [lb_cv_module_loading="no"])
414 ])
415 AS_IF([test "$lb_cv_module_loading" = yes],
416         [AC_DEFINE(HAVE_MODULE_LOADING_SUPPORT, 1,
417                 [kernel module loading is possible])],
418         [AC_MSG_WARN([
419
420 Kernel module loading support is highly recommended.
421
422 ])
423         ])
424 ])
425
426 #
427 # LB_PROG_LINUX
428 #
429 # linux tests
430 #
431 AC_DEFUN([LB_PROG_LINUX], [
432 LB_LINUX_PATH
433 LB_LINUX_SYMVERFILE
434
435 LB_CHECK_CONFIG([MODULES], [], [
436         AC_MSG_ERROR([
437
438 module support is required to build Lustre kernel modules.
439 ])
440         ])
441
442 LB_CHECK_CONFIG([MODVERSIONS])
443
444 # 2.6.28
445 LC_MODULE_LOADING
446 ])
447
448 #
449 # LB_USES_DPKG
450 #
451 # Determine if the target is a dpkg system or rpm
452 #
453 AC_DEFUN([LB_USES_DPKG], [
454 AC_CACHE_CHECK([if this distro uses dpkg], lb_cv_uses_dpkg, [
455 lb_cv_uses_dpkg="no"
456 AS_CASE([$(which dpkg 2>/dev/null)],[*/dpkg], [lb_cv_uses_dpkg="yes"])
457 ])
458 uses_dpkg=$lb_cv_uses_dpkg
459 ])
460
461 #
462 # LB_CHECK_EXPORT
463 #
464 # check symbol exported or not
465 # $1 - symbol
466 # $2 - file(s) for find.
467 # $3 - do 'yes'
468 # $4 - do 'no'
469 #
470 # 2.6 based kernels - put modversion info into $LINUX/Module.modvers or check
471 #
472 AC_DEFUN([LB_CHECK_EXPORT], [
473 AS_VAR_PUSHDEF([lb_export], [lb_cv_export_$1])dnl
474 AC_CACHE_CHECK([if Linux kernel exports '$1'], lb_export, [
475 AS_VAR_SET([lb_export], [no])
476 AS_IF([grep -q -E '[[[:space:]]]$1[[[:space:]]]' $LINUX_OBJ/$SYMVERFILE 2>/dev/null],
477         [AS_VAR_SET([lb_export], [yes])],
478         [for file in $2; do
479                 AS_IF([grep -q -E "EXPORT_SYMBOL.*\($1\)" "$LINUX/$file" 2>/dev/null], [
480                         AS_VAR_SET([lb_export], [yes])
481                         break
482                 ])
483         done])
484 ])
485 AS_VAR_IF([lb_export], [yes], [$3], [$4])[]dnl
486 AS_VAR_POPDEF([lb_export])dnl
487 ]) # LB_CHECK_EXPORT
488
489 #
490 # LB_CHECK_CONFIG
491 #
492 # check if a given config option is defined
493 # $1 - CONFIG_<name>
494 # $2 - do 'yes'
495 # $3 - do 'no'
496 #
497 AC_DEFUN([LB_CHECK_CONFIG], [
498 LB_CHECK_COMPILE([if Linux kernel was built with CONFIG_$1],
499 config_$1, [
500         #include <$AUTOCONF_HDIR/autoconf.h>
501 ], [
502         #ifndef CONFIG_$1
503         #error CONFIG_$1 not #defined
504         #endif
505 ], [$2], [$3])
506 ]) # LB_CHECK_CONFIG
507
508 #
509 # LB_CHECK_CONFIG_IM
510 #
511 # check if a given config option is builtin or as module
512 # $1 - CONFIG_<name> or CONFIG_<name>_MODULE
513 # $2 - do 'yes'
514 # $3 - do 'no'
515 #
516 AC_DEFUN([LB_CHECK_CONFIG_IM], [
517 LB_CHECK_COMPILE([if Linux kernel was built with CONFIG_$1 in or as module],
518 config_im_$1, [
519         #include <$AUTOCONF_HDIR/autoconf.h>
520 ], [
521         #if !(defined(CONFIG_$1) || defined(CONFIG_$1_MODULE))
522         #error CONFIG_$1 and CONFIG_$1_MODULE not #defined
523         #endif
524 ], [$2], [$3])
525 ]) # LB_CHECK_CONFIG_IM
526
527 #
528 # these are like AC_TRY_COMPILE, but try to build modules against the
529 # kernel, inside the build directory
530 #
531
532 #
533 # LB_LANG_PROGRAM(C)([PROLOGUE], [BODY])
534 # --------------------------------------
535 #
536 m4_define([LB_LANG_PROGRAM],
537 [
538 #include <linux/kernel.h>
539 #include <linux/module.h>
540
541 #if defined(NEED_LOCKDEP_IS_HELD_DISCARD_CONST) \
542  && defined(CONFIG_LOCKDEP) \
543  && defined(lockdep_is_held)
544 #undef lockdep_is_held
545         #define lockdep_is_held(lock) \
546                 lock_is_held((struct lockdep_map *)&(lock)->dep_map)
547 #endif
548
549 $1
550 int
551 main (void)
552 {
553 dnl Do *not* indent the following line: there may be CPP directives.
554 dnl Don't move the `;' right after for the same reason.
555 $2
556   ;
557   return 0;
558 };
559 MODULE_LICENSE("GPL");])
560
561 #
562 # LB_LINUX_COMPILE_IFELSE
563 #
564 # like AC_COMPILE_IFELSE
565 #
566 # $1 - AC_LANG_SOURCE()
567 # $2 - make target
568 # $3 - check command
569 # $4 - do 'yes'
570 # $5 - do 'no'
571 #
572 AC_DEFUN([LB_LINUX_COMPILE_IFELSE],
573 [m4_ifvaln([$1], [AC_LANG_CONFTEST([AC_LANG_SOURCE([$1])])])dnl
574 rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
575 AS_IF([AC_TRY_COMMAND(cp conftest.c build && make -d [$2] LDFLAGS= ${LD:+LD="$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_CHECK_INCLUDE -I$LINUX/arch/$SUBARCH/include -Iinclude -Iarch/$SUBARCH/include/generated -I$LINUX/include -Iinclude2 -I$LINUX/include/uapi -Iinclude/generated -I$LINUX/arch/$SUBARCH/include/uapi -Iarch/$SUBARCH/include/generated/uapi -I$LINUX/include/uapi -Iinclude/generated/uapi ${SPL_OBJ:+-include $SPL_OBJ/spl_config.h} ${ZFS_OBJ:+-include $ZFS_OBJ/zfs_config.h} ${SPL:+-I$SPL/include } ${ZFS:+-I$ZFS -I$ZFS/include -I$ZFS/include/os/linux/kernel -I$ZFS/include/os/linux/spl -I$ZFS/include/os/linux/zfs -I${SPL:-$ZFS/include/spl}} -include $CONFIG_INCLUDE" KBUILD_EXTRA_SYMBOLS="${ZFS_OBJ:+$ZFS_OBJ/Module.symvers} $KBUILD_EXTRA_SYMBOLS" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $MODULE_TARGET=$PWD/build) >/dev/null && AC_TRY_COMMAND([$3])],
576         [$4],
577         [_AC_MSG_LOG_CONFTEST
578 m4_ifvaln([$5],[$5])dnl])
579 rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko m4_ifval([$1], [build/conftest.c conftest.c])[]dnl
580 ])
581
582 #
583 # LB_LINUX_TRY_COMPILE
584 #
585 # like AC_TRY_COMPILE
586 #
587 AC_DEFUN([LB_LINUX_TRY_COMPILE], [
588 LB_LINUX_COMPILE_IFELSE(
589         [AC_LANG_SOURCE([LB_LANG_PROGRAM([[$1]], [[$2]])])],
590         [modules], [test -s build/conftest.o],
591         [$3], [$4])
592 ])
593
594 #
595 # LB_LINUX_TRY_MAKE
596 #
597 # like LB_LINUX_TRY_COMPILE, but with different arguments
598 #
599 AC_DEFUN([LB_LINUX_TRY_MAKE], [
600 LB_LINUX_COMPILE_IFELSE(
601         [AC_LANG_SOURCE([LB_LANG_PROGRAM([[$1]], [[$2]])])],
602         [$3], [$4], [$5], [$6])
603 ])
604
605 #
606 # LB_CHECK_COMPILE
607 # $1 - checking message
608 # $2 - variable name
609 # $3 - header
610 # $4 - body
611 # $5 - do 'yes'
612 # $6 - do 'no'
613 #
614 AC_DEFUN([LB_CHECK_COMPILE], [
615 AS_VAR_PUSHDEF([lb_compile], [lb_cv_compile_$2])dnl
616 AC_CACHE_CHECK([$1], lb_compile, [
617         LB_LINUX_TRY_COMPILE([$3], [$4],
618                 [AS_VAR_SET([lb_compile], [yes])],
619                 [AS_VAR_SET([lb_compile], [no])])
620 ])
621 AS_VAR_IF([lb_compile], [yes], [$5], [$6])[]dnl
622 AS_VAR_POPDEF([lb_compile])dnl
623 ]) # LB_CHECK_COMPILE
624
625 #
626 # LB_CHECK_LINUX_HEADER
627 #
628 # Like AC_CHECK_HEADER but checks for a kernel-space header
629 #
630 m4_define([LB_CHECK_LINUX_HEADER], [
631 AS_VAR_PUSHDEF([lb_header], [lb_cv_header_$1])dnl
632 AC_CACHE_CHECK([for $1], lb_header, [
633         LB_LINUX_COMPILE_IFELSE([LB_LANG_PROGRAM([@%:@include <$1>])],
634                 [modules], [test -s build/conftest.o],
635                 [AS_VAR_SET([lb_header], [yes])],
636                 [AS_VAR_SET([lb_header], [no])])
637 ])
638 AS_VAR_IF([lb_header], [yes], [$2], [$3])[]dnl
639 AS_VAR_POPDEF([lb_header])dnl
640 ]) # LB_CHECK_LINUX_HEADER
641
642 # ------------------------------------------------------------------------------
643 # Support 2 stage: parallel compile then checked test results
644 # Heavily inspired by OpenZFS
645
646 AC_DEFUN([LB2_LINUX_CONFTEST_C], [
647 test -d ${TEST_DIR}/$2 || mkdir -p ${TEST_DIR}/$2
648 cat confdefs.h - <<_EOF >${TEST_DIR}/$2/$2.c
649 $1
650 _EOF
651 ])
652
653 #
654 # LB2_LINUX_CONFTEST_MAKEFILE
655 #
656 # $1 - *unique* test case name
657 # $2 - additional build flags (ccflags)
658 # $3 - external kernel includes for lnet o2ib|gni
659 #
660 AC_DEFUN([LB2_LINUX_CONFTEST_MAKEFILE], [
661         test -d ${TEST_DIR} || mkdir -p ${TEST_DIR}
662         test -d ${TEST_DIR}/$1 || mkdir -p ${TEST_DIR}/$1
663
664         file=${TEST_DIR}/$1/Makefile
665         EXT_INCLUDE="$3"
666
667         cat - <<_EOF >$file
668 # Example command line to manually build source
669 # make modules -C $LINUX_OBJ $ARCH_UM M=${TEST_DIR}/$1
670
671 ${LD:+LD="$LD"}
672 CC=$CC
673 ZINC=${ZFS}
674 SINC=${SPL}
675 ZOBJ=${ZFS_OBJ}
676 SOBJ=${SPL_OBJ}
677
678 LINUXINCLUDE  = $EXT_INCLUDE
679 LINUXINCLUDE += -I$LINUX/arch/$SUBARCH/include
680 LINUXINCLUDE += -Iinclude -Iarch/$SUBARCH/include/generated
681 LINUXINCLUDE += -I$LINUX/include
682 LINUXINCLUDE += -Iinclude2
683 LINUXINCLUDE += -I$LINUX/include/uapi
684 LINUXINCLUDE += -Iinclude/generated
685 LINUXINCLUDE += -I$LINUX/arch/$SUBARCH/include/uapi
686 LINUXINCLUDE += -Iarch/$SUBARCH/include/generated/uapi
687 LINUXINCLUDE += -I$LINUX/include/uapi -Iinclude/generated/uapi
688 ifneq (\$(SOBJ),)
689 LINUXINCLUDE += -include \$(SOBJ)/spl_config.h
690 endif
691 ifneq (\$(ZOBJ),)
692 LINUXINCLUDE += -include \$(ZOBJ)/zfs_config.h
693 endif
694 ifneq (\$(SINC),)
695 LINUXINCLUDE += -I\$(SINC)/include
696 endif
697 ifneq (\$(ZINC),)
698 LINUXINCLUDE += -I\$(ZINC) -I\$(ZINC)/include
699 ifneq (\$(SINC),)
700 LINUXINCLUDE += -I\$(SINC)
701 else
702 LINUXINCLUDE += -I\$(ZINC)/include/spl
703 endif
704 endif
705 LINUXINCLUDE += -include $CONFIG_INCLUDE
706 KBUILD_EXTRA_SYMBOLS=${ZFS_OBJ:+$ZFS_OBJ/Module.symvers}
707
708 ccflags-y := -Werror-implicit-function-declaration
709 _EOF
710
711         # Additional custom CFLAGS as requested.
712         m4_ifval($2, [echo "ccflags-y += $2" >>$file], [])
713
714         # Test case source
715         echo "obj-m := $1.o" >>$file
716         echo "obj-m += $1/" >>${TEST_DIR}/Makefile
717 ])
718
719
720 #
721 # LB2_LINUX_COMPILE
722 #
723 # $1 - build dir
724 # $2 - test command
725 # $3 - pass command
726 # $4 - fail command
727 #
728 # Used internally by LB2_LINUX_TEST_COMPILE
729 #
730 AC_DEFUN([LB2_LINUX_COMPILE], [
731         AC_TRY_COMMAND([
732             KBUILD_MODPOST_NOFINAL="yes"
733             make modules -k -j$TEST_JOBS -C $LINUX_OBJ $ARCH_UM
734             M=$1 >$1/build.log 2>&1])
735         AS_IF([AC_TRY_COMMAND([$2])], [$3], [$4])
736 ])
737
738 #
739 # LB2_LINUX_TEST_COMPILE
740 #
741 # Perform a full compile excluding the final modpost phase.
742 # $1 - flavor
743 # $2 - dirname
744 #
745 AC_DEFUN([LB2_LINUX_TEST_COMPILE], [
746         LB2_LINUX_COMPILE([$2], [test -f $2/build.log], [
747                 mv $2/Makefile $2/Makefile.compile.$1
748                 mv $2/build.log $2/build.log.$1
749         ],[
750                 AC_MSG_ERROR([
751         *** Unable to compile test source to determine kernel interfaces.])
752         ])
753 ])
754
755 #
756 # Perform the compilation of the test cases in two phases.
757 #
758 # Phase 1) attempt to build the object files for all of the tests
759 #          defined by the LB2_LINUX_TEST_SRC macro.
760 #
761 # Phase 2) disable all tests which failed the initial compilation.
762 #
763 # This allows us efficiently build the test cases in parallel while
764 # remaining resilient to build failures which are expected when
765 # detecting the available kernel interfaces.
766 #
767 # The maximum allowed parallelism can be controlled by setting the
768 # TEST_JOBS environment variable which defaults to $(nproc).
769 #
770 AC_DEFUN([LB2_LINUX_TEST_COMPILE_ALL], [
771         # Phase 1 - Compilation only, final linking is skipped.
772         LB2_LINUX_TEST_COMPILE([$1], [${TEST_DIR}])
773
774         for dir in $(awk '/^obj-m/ { print [$]3 }' \
775             ${TEST_DIR}/Makefile.compile.$1); do
776                 name=${dir%/}
777                 AS_IF([test -f ${TEST_DIR}/$name/$name.o], [
778                         touch ${TEST_DIR}/$name/$name.ko
779                 ])
780         done
781 ])
782
783 #
784 # LB2_LINUX_TEST_SRC
785 #
786 # $1 - *unique* name
787 # $2 - global
788 # $3 - source
789 # $4 - extra cflags
790 # $5 - external include paths
791 #
792 # NOTICE as all of the test cases are compiled in parallel tests may not
793 # depend on the results other tests.
794 # Each test needs resolve any external dependencies at the time the program
795 # source is generated.
796 #
797 AC_DEFUN([LB2_LINUX_TEST_SRC], [
798         LB2_LINUX_CONFTEST_C([LB_LANG_PROGRAM([[$2]], [[$3]])], [$1_pc])
799         LB2_LINUX_CONFTEST_MAKEFILE([$1_pc], [$4], [$5])
800 ])
801
802 #
803 # LB2_LINUX_TEST_RESULT
804 #
805 # $1 - *unique* name matching the LB2_LINUX_TEST_SRC macro
806 # $2 - run on success (valid .ko generated)
807 # $3 - run on failure (unable to compile)
808 #
809 AC_DEFUN([LB2_LINUX_TEST_RESULT], [
810         AS_IF([test -d ${TEST_DIR}/$1_pc], [
811                 AS_IF([test -f ${TEST_DIR}/$1_pc/$1_pc.ko], [$2], [$3])
812         ], [
813                 AC_MSG_ERROR([
814         *** No matching source for the "$1" test, check that
815         *** both the test source and result macros refer to the same name.
816                 ])
817         ])
818 ])
819