blob: 0509c306d27d2dccaf7dd1359089ffd797b1391c [file] [log] [blame]
Damien Miller4fefe242004-03-11 14:20:10 +11001#
2# Copyright (c) 1999-2004 Damien Miller
3#
4# Permission to use, copy, modify, and distribute this software for any
5# purpose with or without fee is hereby granted, provided that the above
6# copyright notice and this permission notice appear in all copies.
7#
8# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Damien Millere9cf3572001-02-09 12:55:35 +110015
Tim Rice648f8762011-01-26 12:38:57 -080016AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org])
Damien Miller3d673d12014-08-27 06:32:01 +100017AC_REVISION($Revision: 1.583 $)
Tim Rice13aae5e2001-10-21 17:53:58 -070018AC_CONFIG_SRCDIR([ssh.c])
Tim Rice648f8762011-01-26 12:38:57 -080019AC_LANG([C])
Damien Miller7f6ea021999-10-28 13:25:17 +100020
Tim Rice648f8762011-01-26 12:38:57 -080021AC_CONFIG_HEADER([config.h])
Darren Tuckerc90a7922019-01-21 09:22:36 +110022AC_PROG_CC([cc gcc])
Damien Miller76112de1999-12-21 11:18:08 +110023AC_CANONICAL_HOST
Damien Miller4df5c762001-02-28 08:14:22 +110024AC_C_BIGENDIAN
Damien Miller7f6ea021999-10-28 13:25:17 +100025
Damien Millera22ba012000-03-02 23:09:20 +110026# Checks for programs.
Darren Tucker167bd9c2003-09-07 12:34:54 +100027AC_PROG_AWK
Damien Millerab18c411999-11-11 10:40:23 +110028AC_PROG_CPP
Damien Miller7f6ea021999-10-28 13:25:17 +100029AC_PROG_RANLIB
Damien Millerd8087f61999-11-25 12:31:26 +110030AC_PROG_INSTALL
Tim Ricefd80ddc2006-02-02 19:11:56 -080031AC_PROG_EGREP
Darren Tucker6c8a2462017-12-01 17:11:47 +110032AC_PROG_MKDIR_P
Darren Tucker408f4c22015-04-17 09:39:58 +100033AC_CHECK_TOOLS([AR], [ar])
Tim Rice648f8762011-01-26 12:38:57 -080034AC_PATH_PROG([CAT], [cat])
35AC_PATH_PROG([KILL], [kill])
Tim Rice648f8762011-01-26 12:38:57 -080036AC_PATH_PROG([SED], [sed])
Tim Rice648f8762011-01-26 12:38:57 -080037AC_PATH_PROG([ENT], [ent])
38AC_SUBST([ENT])
39AC_PATH_PROG([TEST_MINUS_S_SH], [bash])
40AC_PATH_PROG([TEST_MINUS_S_SH], [ksh])
41AC_PATH_PROG([TEST_MINUS_S_SH], [sh])
42AC_PATH_PROG([SH], [sh])
43AC_PATH_PROG([GROFF], [groff])
44AC_PATH_PROG([NROFF], [nroff])
45AC_PATH_PROG([MANDOC], [mandoc])
46AC_SUBST([TEST_SHELL], [sh])
Damien Miller2e1b0821999-12-25 10:11:29 +110047
Damien Miller30a69e72011-01-04 08:16:27 +110048dnl select manpage formatter
49if test "x$MANDOC" != "x" ; then
50 MANFMT="$MANDOC"
51elif test "x$NROFF" != "x" ; then
52 MANFMT="$NROFF -mandoc"
53elif test "x$GROFF" != "x" ; then
54 MANFMT="$GROFF -mandoc -Tascii"
55else
56 AC_MSG_WARN([no manpage formatted found])
57 MANFMT="false"
58fi
Tim Rice648f8762011-01-26 12:38:57 -080059AC_SUBST([MANFMT])
Damien Miller30a69e72011-01-04 08:16:27 +110060
Tim Rice6f1f7582004-05-30 21:38:51 -070061dnl for buildpkg.sh
Tim Rice648f8762011-01-26 12:38:57 -080062AC_PATH_PROG([PATH_GROUPADD_PROG], [groupadd], [groupadd],
Tim Rice6f1f7582004-05-30 21:38:51 -070063 [/usr/sbin${PATH_SEPARATOR}/etc])
Tim Rice648f8762011-01-26 12:38:57 -080064AC_PATH_PROG([PATH_USERADD_PROG], [useradd], [useradd],
Tim Rice6f1f7582004-05-30 21:38:51 -070065 [/usr/sbin${PATH_SEPARATOR}/etc])
Tim Rice648f8762011-01-26 12:38:57 -080066AC_CHECK_PROG([MAKE_PACKAGE_SUPPORTED], [pkgmk], [yes], [no])
Darren Tuckerfbea7642006-01-30 00:22:39 +110067if test -x /sbin/sh; then
Tim Rice648f8762011-01-26 12:38:57 -080068 AC_SUBST([STARTUP_SCRIPT_SHELL], [/sbin/sh])
Darren Tuckerfbea7642006-01-30 00:22:39 +110069else
Tim Rice648f8762011-01-26 12:38:57 -080070 AC_SUBST([STARTUP_SCRIPT_SHELL], [/bin/sh])
Darren Tuckerfbea7642006-01-30 00:22:39 +110071fi
Tim Rice6f1f7582004-05-30 21:38:51 -070072
Damien Millere8bb4502001-09-25 16:39:35 +100073# System features
74AC_SYS_LARGEFILE
75
Damien Miller3f62aba2000-11-29 11:56:35 +110076if test -z "$AR" ; then
77 AC_MSG_ERROR([*** 'ar' missing, please install or fix your \$PATH ***])
78fi
79
Tim Rice648f8762011-01-26 12:38:57 -080080AC_PATH_PROG([PATH_PASSWD_PROG], [passwd])
Darren Tucker23bc8d02004-02-06 16:24:31 +110081if test ! -z "$PATH_PASSWD_PROG" ; then
Tim Rice648f8762011-01-26 12:38:57 -080082 AC_DEFINE_UNQUOTED([_PATH_PASSWD_PROG], ["$PATH_PASSWD_PROG"],
Tim Rice7df8d392005-09-19 09:33:39 -070083 [Full path of your "passwd" program])
Darren Tucker23bc8d02004-02-06 16:24:31 +110084fi
85
Darren Tuckerf2c06ab2018-06-08 17:43:36 +100086dnl Since autoconf doesn't support it very well, we no longer allow users to
87dnl override LD, however keeping the hook here for now in case there's a use
88dnl use case we overlooked and someone needs to re-enable it. Unless a good
89dnl reason is found we'll be removing this in future.
90LD="$CC"
Tim Rice648f8762011-01-26 12:38:57 -080091AC_SUBST([LD])
Tim Riceeae17cc2005-03-17 16:52:20 -080092
Damien Miller166bd442000-03-16 10:48:25 +110093AC_C_INLINE
Darren Tucker67b37032005-06-03 17:58:31 +100094
Tim Rice648f8762011-01-26 12:38:57 -080095AC_CHECK_DECL([LLONG_MAX], [have_llong_max=1], , [#include <limits.h>])
Damien Miller69ff1df2011-06-23 08:30:03 +100096AC_CHECK_DECL([SYSTR_POLICY_KILL], [have_systr_policy_kill=1], , [
97 #include <sys/types.h>
98 #include <sys/param.h>
99 #include <dev/systrace.h>
100])
101AC_CHECK_DECL([RLIMIT_NPROC],
102 [AC_DEFINE([HAVE_RLIMIT_NPROC], [], [sys/resource.h has RLIMIT_NPROC])], , [
103 #include <sys/types.h>
104 #include <sys/resource.h>
105])
Damien Millere0956e32012-04-04 11:27:54 +1000106AC_CHECK_DECL([PR_SET_NO_NEW_PRIVS], [have_linux_no_new_privs=1], , [
107 #include <sys/types.h>
108 #include <linux/prctl.h>
109])
Damien Miller868ea1e2014-01-17 16:47:04 +1100110
Damien Miller72ef7c12015-01-15 02:21:31 +1100111openssl=yes
Damien Miller72ef7c12015-01-15 02:21:31 +1100112AC_ARG_WITH([openssl],
113 [ --without-openssl Disable use of OpenSSL; use only limited internal crypto **EXPERIMENTAL** ],
Damien Miller76c04802015-01-13 19:38:18 +1100114 [ if test "x$withval" = "xno" ; then
Damien Miller72ef7c12015-01-15 02:21:31 +1100115 openssl=no
Damien Miller76c04802015-01-13 19:38:18 +1100116 fi
117 ]
118)
Damien Miller72ef7c12015-01-15 02:21:31 +1100119AC_MSG_CHECKING([whether OpenSSL will be used for cryptography])
120if test "x$openssl" = "xyes" ; then
121 AC_MSG_RESULT([yes])
122 AC_DEFINE_UNQUOTED([WITH_OPENSSL], [1], [use libcrypto for cryptography])
123else
124 AC_MSG_RESULT([no])
125fi
126
Darren Tuckerb7918af2008-03-09 11:34:23 +1100127use_stack_protector=1
Darren Tuckerfd994372014-01-17 09:53:24 +1100128use_toolchain_hardening=1
Tim Rice648f8762011-01-26 12:38:57 -0800129AC_ARG_WITH([stackprotect],
Damien Millerda3155e2008-03-27 12:30:18 +1100130 [ --without-stackprotect Don't use compiler's stack protection], [
Darren Tuckerb7918af2008-03-09 11:34:23 +1100131 if test "x$withval" = "xno"; then
132 use_stack_protector=0
133 fi ])
Darren Tuckerfd994372014-01-17 09:53:24 +1100134AC_ARG_WITH([hardening],
135 [ --without-hardening Don't use toolchain hardening flags], [
136 if test "x$withval" = "xno"; then
Darren Tuckerfd994372014-01-17 09:53:24 +1100137 use_toolchain_hardening=0
138 fi ])
Darren Tuckerb7918af2008-03-09 11:34:23 +1100139
Darren Tuckerfd994372014-01-17 09:53:24 +1100140# We use -Werror for the tests only so that we catch warnings like "this is
141# on by default" for things like -fPIE.
142AC_MSG_CHECKING([if $CC supports -Werror])
143saved_CFLAGS="$CFLAGS"
144CFLAGS="$CFLAGS -Werror"
145AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int main(void) { return 0; }]])],
146 [ AC_MSG_RESULT([yes])
147 WERROR="-Werror"],
148 [ AC_MSG_RESULT([no])
149 WERROR="" ]
150)
151CFLAGS="$saved_CFLAGS"
Damien Miller134d02a2011-01-12 16:00:37 +1100152
Damien Millera8e06ce2003-11-21 23:48:55 +1100153if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
Darren Tuckerd9048862017-03-31 11:04:43 +1100154 OSSH_CHECK_CFLAG_COMPILE([-pipe])
Darren Tuckerfd994372014-01-17 09:53:24 +1100155 OSSH_CHECK_CFLAG_COMPILE([-Qunused-arguments])
156 OSSH_CHECK_CFLAG_COMPILE([-Wunknown-warning-option])
Damien Millerb1763622011-05-20 11:45:25 +1000157 OSSH_CHECK_CFLAG_COMPILE([-Wall])
158 OSSH_CHECK_CFLAG_COMPILE([-Wpointer-arith])
159 OSSH_CHECK_CFLAG_COMPILE([-Wuninitialized])
160 OSSH_CHECK_CFLAG_COMPILE([-Wsign-compare])
161 OSSH_CHECK_CFLAG_COMPILE([-Wformat-security])
Darren Tuckerabbc7a72013-05-10 13:54:23 +1000162 OSSH_CHECK_CFLAG_COMPILE([-Wsizeof-pointer-memaccess])
Damien Millerb1763622011-05-20 11:45:25 +1000163 OSSH_CHECK_CFLAG_COMPILE([-Wpointer-sign], [-Wno-pointer-sign])
164 OSSH_CHECK_CFLAG_COMPILE([-Wunused-result], [-Wno-unused-result])
165 OSSH_CHECK_CFLAG_COMPILE([-fno-strict-aliasing])
Darren Tuckerfd994372014-01-17 09:53:24 +1100166 if test "x$use_toolchain_hardening" = "x1"; then
Darren Tucker3377df02018-02-11 09:32:37 +1100167 OSSH_CHECK_CFLAG_COMPILE([-mretpoline]) # clang
Darren Tucker174bed62018-02-13 18:12:47 +1100168 OSSH_CHECK_LDFLAG_LINK([-Wl,-z,retpolineplt])
Damien Miller161af8f2017-09-19 10:18:56 +1000169 OSSH_CHECK_CFLAG_COMPILE([-D_FORTIFY_SOURCE=2])
Darren Tuckerfd994372014-01-17 09:53:24 +1100170 OSSH_CHECK_LDFLAG_LINK([-Wl,-z,relro])
171 OSSH_CHECK_LDFLAG_LINK([-Wl,-z,now])
172 OSSH_CHECK_LDFLAG_LINK([-Wl,-z,noexecstack])
Damien Miller5c2ff5e2014-01-22 21:30:12 +1100173 # NB. -ftrapv expects certain support functions to be present in
174 # the compiler library (libgcc or similar) to detect integer operations
175 # that can overflow. We must check that the result of enabling it
176 # actually links. The test program compiled/linked includes a number
177 # of integer operations that should exercise this.
178 OSSH_CHECK_CFLAG_LINK([-ftrapv])
Darren Tuckerfd994372014-01-17 09:53:24 +1100179 fi
Tim Rice648f8762011-01-26 12:38:57 -0800180 AC_MSG_CHECKING([gcc version])
Darren Tucker3f9545e2005-11-12 15:20:52 +1100181 GCC_VER=`$CC -v 2>&1 | $AWK '/gcc version /{print $3}'`
Tim Rice3db1e3f2005-08-23 17:11:26 -0700182 case $GCC_VER in
Darren Tucker391de5c2007-04-29 14:49:21 +1000183 1.*) no_attrib_nonnull=1 ;;
184 2.8* | 2.9*)
Darren Tucker391de5c2007-04-29 14:49:21 +1000185 no_attrib_nonnull=1
186 ;;
187 2.*) no_attrib_nonnull=1 ;;
Darren Tuckerf0324352005-11-10 21:30:36 +1100188 *) ;;
Tim Rice3db1e3f2005-08-23 17:11:26 -0700189 esac
Tim Rice648f8762011-01-26 12:38:57 -0800190 AC_MSG_RESULT([$GCC_VER])
Damien Millerde3cb0a2005-05-26 20:48:25 +1000191
Tim Rice648f8762011-01-26 12:38:57 -0800192 AC_MSG_CHECKING([if $CC accepts -fno-builtin-memset])
Darren Tucker330c93f2008-06-16 02:27:48 +1000193 saved_CFLAGS="$CFLAGS"
194 CFLAGS="$CFLAGS -fno-builtin-memset"
Tim Rice648f8762011-01-26 12:38:57 -0800195 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <string.h> ]],
196 [[ char b[10]; memset(b, 0, sizeof(b)); ]])],
197 [ AC_MSG_RESULT([yes]) ],
198 [ AC_MSG_RESULT([no])
Darren Tucker330c93f2008-06-16 02:27:48 +1000199 CFLAGS="$saved_CFLAGS" ]
Tim Rice648f8762011-01-26 12:38:57 -0800200 )
Darren Tucker330c93f2008-06-16 02:27:48 +1000201
Darren Tuckerb7918af2008-03-09 11:34:23 +1100202 # -fstack-protector-all doesn't always work for some GCC versions
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100203 # and/or platforms, so we test if we can. If it's not supported
Damien Miller7df2e402008-12-08 09:35:36 +1100204 # on a given platform gcc will emit a warning so we use -Werror.
Darren Tuckerb7918af2008-03-09 11:34:23 +1100205 if test "x$use_stack_protector" = "x1"; then
Darren Tuckerfd994372014-01-17 09:53:24 +1100206 for t in -fstack-protector-strong -fstack-protector-all \
207 -fstack-protector; do
Tim Rice648f8762011-01-26 12:38:57 -0800208 AC_MSG_CHECKING([if $CC supports $t])
Darren Tuckerb7918af2008-03-09 11:34:23 +1100209 saved_CFLAGS="$CFLAGS"
210 saved_LDFLAGS="$LDFLAGS"
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100211 CFLAGS="$CFLAGS $t -Werror"
212 LDFLAGS="$LDFLAGS $t -Werror"
213 AC_LINK_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -0800214 [AC_LANG_PROGRAM([[ #include <stdio.h> ]],
215 [[
216 char x[256];
217 snprintf(x, sizeof(x), "XXX");
218 ]])],
219 [ AC_MSG_RESULT([yes])
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100220 CFLAGS="$saved_CFLAGS $t"
221 LDFLAGS="$saved_LDFLAGS $t"
Tim Rice648f8762011-01-26 12:38:57 -0800222 AC_MSG_CHECKING([if $t works])
Darren Tuckerb7918af2008-03-09 11:34:23 +1100223 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -0800224 [AC_LANG_PROGRAM([[ #include <stdio.h> ]],
225 [[
226 char x[256];
227 snprintf(x, sizeof(x), "XXX");
228 ]])],
229 [ AC_MSG_RESULT([yes])
Darren Tuckerb7918af2008-03-09 11:34:23 +1100230 break ],
Tim Rice648f8762011-01-26 12:38:57 -0800231 [ AC_MSG_RESULT([no]) ],
Darren Tuckerb7918af2008-03-09 11:34:23 +1100232 [ AC_MSG_WARN([cross compiling: cannot test])
233 break ]
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100234 )
Darren Tuckerb7918af2008-03-09 11:34:23 +1100235 ],
Tim Rice648f8762011-01-26 12:38:57 -0800236 [ AC_MSG_RESULT([no]) ]
Darren Tuckerb7918af2008-03-09 11:34:23 +1100237 )
238 CFLAGS="$saved_CFLAGS"
239 LDFLAGS="$saved_LDFLAGS"
240 done
241 fi
Darren Tucker319b3d92007-12-02 21:02:22 +1100242
Darren Tucker67b37032005-06-03 17:58:31 +1000243 if test -z "$have_llong_max"; then
244 # retry LLONG_MAX with -std=gnu99, needed on some Linuxes
245 unset ac_cv_have_decl_LLONG_MAX
246 saved_CFLAGS="$CFLAGS"
247 CFLAGS="$CFLAGS -std=gnu99"
Tim Rice648f8762011-01-26 12:38:57 -0800248 AC_CHECK_DECL([LLONG_MAX],
Darren Tucker67b37032005-06-03 17:58:31 +1000249 [have_llong_max=1],
250 [CFLAGS="$saved_CFLAGS"],
251 [#include <limits.h>]
252 )
253 fi
Damien Miller166bd442000-03-16 10:48:25 +1100254fi
255
Darren Tucker951b53b2013-02-08 11:50:09 +1100256AC_MSG_CHECKING([if compiler allows __attribute__ on return types])
257AC_COMPILE_IFELSE(
258 [AC_LANG_PROGRAM([[
259#include <stdlib.h>
260__attribute__((__unused__)) static void foo(void){return;}]],
261 [[ exit(0); ]])],
262 [ AC_MSG_RESULT([yes]) ],
263 [ AC_MSG_RESULT([no])
264 AC_DEFINE(NO_ATTRIBUTE_ON_RETURN_TYPE, 1,
265 [compiler does not accept __attribute__ on return types]) ]
266)
267
Darren Tucker1323f122018-02-27 08:41:25 +1100268AC_MSG_CHECKING([if compiler allows __attribute__ prototype args])
269AC_COMPILE_IFELSE(
270 [AC_LANG_PROGRAM([[
271#include <stdlib.h>
272typedef void foo(const char *, ...) __attribute__((format(printf, 1, 2)));]],
273 [[ exit(0); ]])],
274 [ AC_MSG_RESULT([yes]) ],
275 [ AC_MSG_RESULT([no])
276 AC_DEFINE(NO_ATTRIBUTE_ON_PROTOTYPE_ARGS, 1,
Damien Miller10479cc2018-04-10 10:19:02 +1000277 [compiler does not accept __attribute__ on prototype args]) ]
Darren Tucker1323f122018-02-27 08:41:25 +1100278)
279
Darren Tucker391de5c2007-04-29 14:49:21 +1000280if test "x$no_attrib_nonnull" != "x1" ; then
Tim Rice648f8762011-01-26 12:38:57 -0800281 AC_DEFINE([HAVE_ATTRIBUTE__NONNULL__], [1], [Have attribute nonnull])
Darren Tucker391de5c2007-04-29 14:49:21 +1000282fi
283
Tim Rice648f8762011-01-26 12:38:57 -0800284AC_ARG_WITH([rpath],
Tim Rice88368a32003-12-08 12:35:59 -0800285 [ --without-rpath Disable auto-added -R linker paths],
286 [
Tim Riceeae17cc2005-03-17 16:52:20 -0800287 if test "x$withval" = "xno" ; then
Tim Rice88368a32003-12-08 12:35:59 -0800288 need_dash_r=""
289 fi
290 if test "x$withval" = "xyes" ; then
291 need_dash_r=1
292 fi
293 ]
294)
295
Tim Rice1cfab232006-10-03 09:34:35 -0700296# Allow user to specify flags
Tim Rice648f8762011-01-26 12:38:57 -0800297AC_ARG_WITH([cflags],
Tim Rice1cfab232006-10-03 09:34:35 -0700298 [ --with-cflags Specify additional flags to pass to compiler],
299 [
300 if test -n "$withval" && test "x$withval" != "xno" && \
301 test "x${withval}" != "xyes"; then
302 CFLAGS="$CFLAGS $withval"
303 fi
304 ]
305)
Damien Millerde35c382017-09-08 12:38:31 +1000306
307AC_ARG_WITH([cflags-after],
308 [ --with-cflags-after Specify additional flags to pass to compiler after configure],
309 [
310 if test -n "$withval" && test "x$withval" != "xno" && \
311 test "x${withval}" != "xyes"; then
312 CFLAGS_AFTER="$withval"
313 fi
314 ]
315)
Tim Rice648f8762011-01-26 12:38:57 -0800316AC_ARG_WITH([cppflags],
Tim Rice1cfab232006-10-03 09:34:35 -0700317 [ --with-cppflags Specify additional flags to pass to preprocessor] ,
318 [
319 if test -n "$withval" && test "x$withval" != "xno" && \
320 test "x${withval}" != "xyes"; then
321 CPPFLAGS="$CPPFLAGS $withval"
322 fi
323 ]
324)
Tim Rice648f8762011-01-26 12:38:57 -0800325AC_ARG_WITH([ldflags],
Tim Rice1cfab232006-10-03 09:34:35 -0700326 [ --with-ldflags Specify additional flags to pass to linker],
327 [
328 if test -n "$withval" && test "x$withval" != "xno" && \
329 test "x${withval}" != "xyes"; then
330 LDFLAGS="$LDFLAGS $withval"
331 fi
332 ]
333)
Damien Millerde35c382017-09-08 12:38:31 +1000334AC_ARG_WITH([ldflags-after],
335 [ --with-ldflags-after Specify additional flags to pass to linker after configure],
336 [
337 if test -n "$withval" && test "x$withval" != "xno" && \
338 test "x${withval}" != "xyes"; then
339 LDFLAGS_AFTER="$withval"
340 fi
341 ]
342)
Tim Rice648f8762011-01-26 12:38:57 -0800343AC_ARG_WITH([libs],
Tim Rice1cfab232006-10-03 09:34:35 -0700344 [ --with-libs Specify additional libraries to link with],
345 [
346 if test -n "$withval" && test "x$withval" != "xno" && \
347 test "x${withval}" != "xyes"; then
348 LIBS="$LIBS $withval"
349 fi
350 ]
351)
Tim Rice648f8762011-01-26 12:38:57 -0800352AC_ARG_WITH([Werror],
Tim Rice1cfab232006-10-03 09:34:35 -0700353 [ --with-Werror Build main code with -Werror],
354 [
355 if test -n "$withval" && test "x$withval" != "xno"; then
356 werror_flags="-Werror"
357 if test "x${withval}" != "xyes"; then
358 werror_flags="$withval"
359 fi
360 fi
361 ]
362)
363
Tim Rice648f8762011-01-26 12:38:57 -0800364AC_CHECK_HEADERS([ \
Damien Miller1ff130d2013-12-07 11:51:51 +1100365 blf.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700366 bstring.h \
367 crypt.h \
368 crypto/sha2.h \
369 dirent.h \
370 endian.h \
Damien Miller91f40d82013-02-22 11:37:00 +1100371 elf.h \
Darren Tucker6310ef22016-07-13 14:42:35 +1000372 err.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700373 features.h \
374 fcntl.h \
375 floatingpoint.h \
376 getopt.h \
377 glob.h \
378 ia.h \
379 iaf.h \
Darren Tuckerb59162d2018-02-23 15:20:42 +1100380 ifaddrs.h \
Darren Tucker6d725682014-01-17 19:17:34 +1100381 inttypes.h \
Darren Tuckerf3f2cc82016-07-11 17:23:38 +1000382 langinfo.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700383 limits.h \
Darren Tuckerae133d42013-06-06 08:30:20 +1000384 locale.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700385 login.h \
386 maillock.h \
387 ndir.h \
388 net/if_tun.h \
389 netdb.h \
390 netgroup.h \
391 pam/pam_appl.h \
392 paths.h \
Darren Tuckerfebf0f52007-06-25 22:15:12 +1000393 poll.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700394 pty.h \
395 readpassphrase.h \
396 rpc/types.h \
397 security/pam_appl.h \
398 sha2.h \
399 shadow.h \
400 stddef.h \
401 stdint.h \
402 string.h \
403 strings.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700404 sys/bitypes.h \
405 sys/bsdtty.h \
406 sys/cdefs.h \
407 sys/dir.h \
Damien Millerf8854742018-02-26 12:18:14 +1100408 sys/file.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700409 sys/mman.h \
Darren Tuckerce066f62018-02-22 20:45:09 +1100410 sys/label.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700411 sys/ndir.h \
Darren Tucker7c92a652007-09-27 07:00:09 +1000412 sys/poll.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700413 sys/prctl.h \
414 sys/pstat.h \
Darren Tucker5ee3fb52016-11-01 08:12:33 +1100415 sys/ptrace.h \
Damien Millerafa6e792018-04-13 13:31:42 +1000416 sys/random.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700417 sys/select.h \
418 sys/stat.h \
419 sys/stream.h \
420 sys/stropts.h \
421 sys/strtio.h \
Darren Tucker5b2e2ba2008-06-08 09:25:28 +1000422 sys/statvfs.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700423 sys/sysmacros.h \
424 sys/time.h \
425 sys/timers.h \
Darren Tucker11057562018-02-25 11:22:57 +1100426 sys/vfs.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700427 time.h \
428 tmpdir.h \
429 ttyent.h \
Tim Riceaa8954f2007-05-09 15:57:43 -0700430 ucred.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700431 unistd.h \
432 usersec.h \
433 util.h \
434 utime.h \
435 utmp.h \
436 utmpx.h \
437 vis.h \
Darren Tuckerf3f2cc82016-07-11 17:23:38 +1000438 wchar.h \
Tim Rice648f8762011-01-26 12:38:57 -0800439])
Tim Rice1cfab232006-10-03 09:34:35 -0700440
Darren Tuckerce066f62018-02-22 20:45:09 +1100441# On some platforms (eg SunOS4) sys/audit.h requires sys/[time|types|label.h]
442# to be included first.
443AC_CHECK_HEADERS([sys/audit.h], [], [], [
444#ifdef HAVE_SYS_TIME_H
445# include <sys/time.h>
446#endif
447#ifdef HAVE_SYS_TYPES_H
448# include <sys/types.h>
449#endif
450#ifdef HAVE_SYS_LABEL_H
451# include <sys/label.h>
452#endif
453])
454
Darren Tuckerdd9d9b32017-08-28 16:48:27 +1000455# sys/capsicum.h requires sys/types.h
456AC_CHECK_HEADERS([sys/capsicum.h], [], [], [
457#ifdef HAVE_SYS_TYPES_H
458# include <sys/types.h>
459#endif
460])
461
Darren Tuckerfa1b8342017-11-03 14:09:45 +1100462# net/route.h requires sys/socket.h and sys/types.h.
463# sys/sysctl.h also requires sys/param.h
464AC_CHECK_HEADERS([net/route.h sys/sysctl.h], [], [], [
465#ifdef HAVE_SYS_TYPES_H
466# include <sys/types.h>
467#endif
468#include <sys/param.h>
Damien Miller32354732017-10-25 11:25:43 +1100469#include <sys/socket.h>
470])
471
Tim Rice1cfab232006-10-03 09:34:35 -0700472# lastlog.h requires sys/time.h to be included first on Solaris
Tim Rice648f8762011-01-26 12:38:57 -0800473AC_CHECK_HEADERS([lastlog.h], [], [], [
Tim Rice1cfab232006-10-03 09:34:35 -0700474#ifdef HAVE_SYS_TIME_H
475# include <sys/time.h>
476#endif
477])
478
479# sys/ptms.h requires sys/stream.h to be included first on Solaris
Tim Rice648f8762011-01-26 12:38:57 -0800480AC_CHECK_HEADERS([sys/ptms.h], [], [], [
Tim Rice1cfab232006-10-03 09:34:35 -0700481#ifdef HAVE_SYS_STREAM_H
482# include <sys/stream.h>
483#endif
484])
485
486# login_cap.h requires sys/types.h on NetBSD
Tim Rice648f8762011-01-26 12:38:57 -0800487AC_CHECK_HEADERS([login_cap.h], [], [], [
Tim Rice1cfab232006-10-03 09:34:35 -0700488#include <sys/types.h>
489])
490
Darren Tuckerc4b22ca2009-07-12 21:56:29 +1000491# older BSDs need sys/param.h before sys/mount.h
Tim Rice648f8762011-01-26 12:38:57 -0800492AC_CHECK_HEADERS([sys/mount.h], [], [], [
Darren Tuckerc4b22ca2009-07-12 21:56:29 +1000493#include <sys/param.h>
494])
495
Darren Tuckeref4901c2013-06-03 01:59:13 +1000496# Android requires sys/socket.h to be included before sys/un.h
497AC_CHECK_HEADERS([sys/un.h], [], [], [
Darren Tucker0b43ffe2013-06-03 09:30:44 +1000498#include <sys/types.h>
Darren Tucker16cac192013-06-04 12:55:24 +1000499#include <sys/socket.h>
Darren Tuckeref4901c2013-06-03 01:59:13 +1000500])
501
Damien Miller1b06dc32006-08-31 03:24:41 +1000502# Messages for features tested for in target-specific section
503SIA_MSG="no"
504SPC_MSG="no"
Darren Tucker97528352010-11-05 12:03:05 +1100505SP_MSG="no"
Damien Miller4626cba2016-01-08 14:24:56 +1100506SPP_MSG="no"
507
508# Support for Solaris/Illumos privileges (this test is used by both
509# the --with-solaris-privs option and --with-sandbox=solaris).
510SOLARIS_PRIVS="no"
Damien Miller1b06dc32006-08-31 03:24:41 +1000511
Damien Millera22ba012000-03-02 23:09:20 +1100512# Check for some target-specific stuff
Damien Miller76112de1999-12-21 11:18:08 +1100513case "$host" in
Damien Miller75b1d102000-01-07 14:01:41 +1100514*-*-aix*)
Darren Tucker9216c372006-09-18 23:17:40 +1000515 # Some versions of VAC won't allow macro redefinitions at
516 # -qlanglevel=ansi, and autoconf 2.60 sometimes insists on using that
517 # particularly with older versions of vac or xlc.
Damien Miller10479cc2018-04-10 10:19:02 +1000518 # It also throws errors about null macro arguments, but these are
Darren Tucker9216c372006-09-18 23:17:40 +1000519 # not fatal.
Tim Rice648f8762011-01-26 12:38:57 -0800520 AC_MSG_CHECKING([if compiler allows macro redefinitions])
Darren Tucker9216c372006-09-18 23:17:40 +1000521 AC_COMPILE_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -0800522 [AC_LANG_PROGRAM([[
Darren Tucker9216c372006-09-18 23:17:40 +1000523#define testmacro foo
Tim Rice648f8762011-01-26 12:38:57 -0800524#define testmacro bar]],
525 [[ exit(0); ]])],
526 [ AC_MSG_RESULT([yes]) ],
527 [ AC_MSG_RESULT([no])
Darren Tucker9216c372006-09-18 23:17:40 +1000528 CC="`echo $CC | sed 's/-qlanglvl\=ansi//g'`"
Darren Tucker9216c372006-09-18 23:17:40 +1000529 CFLAGS="`echo $CFLAGS | sed 's/-qlanglvl\=ansi//g'`"
530 CPPFLAGS="`echo $CPPFLAGS | sed 's/-qlanglvl\=ansi//g'`"
531 ]
532 )
533
Damien Millera8e06ce2003-11-21 23:48:55 +1100534 AC_MSG_CHECKING([how to specify blibpath for linker ($LD)])
Damien Millereab4bae2003-04-29 23:22:40 +1000535 if (test -z "$blibpath"); then
Tim Ricefcb62202004-01-23 18:35:16 -0800536 blibpath="/usr/lib:/lib"
Damien Miller29ea30d2000-03-17 10:54:15 +1100537 fi
Damien Millereab4bae2003-04-29 23:22:40 +1000538 saved_LDFLAGS="$LDFLAGS"
Darren Tuckerbdc12122006-07-06 11:56:25 +1000539 if test "$GCC" = "yes"; then
540 flags="-Wl,-blibpath: -Wl,-rpath, -blibpath:"
541 else
542 flags="-blibpath: -Wl,-blibpath: -Wl,-rpath,"
543 fi
544 for tryflags in $flags ;do
Damien Millereab4bae2003-04-29 23:22:40 +1000545 if (test -z "$blibflags"); then
546 LDFLAGS="$saved_LDFLAGS $tryflags$blibpath"
Tim Rice648f8762011-01-26 12:38:57 -0800547 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
548 [blibflags=$tryflags], [])
Damien Millereab4bae2003-04-29 23:22:40 +1000549 fi
550 done
551 if (test -z "$blibflags"); then
Tim Rice648f8762011-01-26 12:38:57 -0800552 AC_MSG_RESULT([not found])
Damien Millereab4bae2003-04-29 23:22:40 +1000553 AC_MSG_ERROR([*** must be able to specify blibpath on AIX - check config.log])
554 else
Tim Rice648f8762011-01-26 12:38:57 -0800555 AC_MSG_RESULT([$blibflags])
Damien Millereab4bae2003-04-29 23:22:40 +1000556 fi
557 LDFLAGS="$saved_LDFLAGS"
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000558 dnl Check for authenticate. Might be in libs.a on older AIXes
Tim Rice648f8762011-01-26 12:38:57 -0800559 AC_CHECK_FUNC([authenticate], [AC_DEFINE([WITH_AIXAUTHENTICATE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700560 [Define if you want to enable AIX4's authenticate function])],
Tim Rice648f8762011-01-26 12:38:57 -0800561 [AC_CHECK_LIB([s], [authenticate],
562 [ AC_DEFINE([WITH_AIXAUTHENTICATE])
Tim Ricee958ed32002-07-05 07:12:33 -0700563 LIBS="$LIBS -ls"
564 ])
565 ])
Darren Tucker3c774c52005-02-16 22:49:31 +1100566 dnl Check for various auth function declarations in headers.
Darren Tucker04cfbe02005-02-20 23:27:11 +1100567 AC_CHECK_DECLS([authenticate, loginrestrictions, loginsuccess,
Darren Tuckere66519d2005-03-21 22:46:34 +1100568 passwdexpired, setauthdb], , , [#include <usersec.h>])
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000569 dnl Check if loginfailed is declared and takes 4 arguments (AIX >= 5.2)
Tim Rice648f8762011-01-26 12:38:57 -0800570 AC_CHECK_DECLS([loginfailed],
571 [AC_MSG_CHECKING([if loginfailed takes 4 arguments])
572 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <usersec.h> ]],
573 [[ (void)loginfailed("user","host","tty",0); ]])],
574 [AC_MSG_RESULT([yes])
575 AC_DEFINE([AIX_LOGINFAILED_4ARG], [1],
576 [Define if your AIX loginfailed() function
577 takes 4 arguments (AIX >= 5.2)])], [AC_MSG_RESULT([no])
578 ])],
579 [],
580 [#include <usersec.h>]
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000581 )
Tim Rice648f8762011-01-26 12:38:57 -0800582 AC_CHECK_FUNCS([getgrset setauthdb])
583 AC_CHECK_DECL([F_CLOSEM],
584 AC_DEFINE([HAVE_FCNTL_CLOSEM], [1], [Use F_CLOSEM fcntl for closefrom]),
Darren Tucker3083bc22006-08-17 19:35:49 +1000585 [],
586 [ #include <limits.h>
587 #include <fcntl.h> ]
588 )
Darren Tucker691d5232005-02-15 21:45:57 +1100589 check_for_aix_broken_getaddrinfo=1
Tim Rice648f8762011-01-26 12:38:57 -0800590 AC_DEFINE([BROKEN_REALPATH], [1], [Define if you have a broken realpath.])
591 AC_DEFINE([SETEUID_BREAKS_SETUID], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700592 [Define if your platform breaks doing a seteuid before a setuid])
Tim Rice648f8762011-01-26 12:38:57 -0800593 AC_DEFINE([BROKEN_SETREUID], [1], [Define if your setreuid() is broken])
594 AC_DEFINE([BROKEN_SETREGID], [1], [Define if your setregid() is broken])
andre60f3c982000-06-03 16:18:19 +0000595 dnl AIX handles lastlog as part of its login message
Tim Rice648f8762011-01-26 12:38:57 -0800596 AC_DEFINE([DISABLE_LASTLOG], [1], [Define if you don't want to use lastlog])
597 AC_DEFINE([LOGIN_NEEDS_UTMPX], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700598 [Some systems need a utmpx entry for /bin/login to work])
Tim Rice648f8762011-01-26 12:38:57 -0800599 AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV],
Tim Rice7df8d392005-09-19 09:33:39 -0700600 [Define to a Set Process Title type if your system is
601 supported by bsd-setproctitle.c])
Tim Rice648f8762011-01-26 12:38:57 -0800602 AC_DEFINE([SSHPAM_CHAUTHTOK_NEEDS_RUID], [1],
Darren Tucker91d25a02005-11-26 22:24:09 +1100603 [AIX 5.2 and 5.3 (and presumably newer) require this])
Tim Rice648f8762011-01-26 12:38:57 -0800604 AC_DEFINE([PTY_ZEROREAD], [1], [read(1) can return 0 for a non-closed fd])
Darren Tuckeraa97d132013-03-12 11:31:05 +1100605 AC_DEFINE([PLATFORM_SYS_DIR_UID], 2, [System dirs owned by bin (uid 2)])
Darren Tucker2c71ca12018-03-30 18:23:07 +1100606 AC_DEFINE([BROKEN_STRNDUP], 1, [strndup broken, see APAR IY61211])
607 AC_DEFINE([BROKEN_STRNLEN], 1, [strnlen broken, see APAR IY62551])
Damien Miller75b1d102000-01-07 14:01:41 +1100608 ;;
Darren Tucker898ac932013-06-03 02:03:25 +1000609*-*-android*)
610 AC_DEFINE([DISABLE_UTMP], [1], [Define if you don't want to use utmp])
611 AC_DEFINE([DISABLE_WTMP], [1], [Define if you don't want to use wtmp])
612 ;;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100613*-*-cygwin*)
Damien Millerc8936ac2003-02-11 10:04:03 +1100614 check_for_libcrypt_later=1
Darren Tucker573e3872007-03-02 17:50:03 +1100615 LIBS="$LIBS /usr/lib/textreadmode.o"
Tim Rice648f8762011-01-26 12:38:57 -0800616 AC_DEFINE([HAVE_CYGWIN], [1], [Define if you are on Cygwin])
617 AC_DEFINE([USE_PIPES], [1], [Use PIPES instead of a socketpair()])
Damien Miller4626cba2016-01-08 14:24:56 +1100618 AC_DEFINE([NO_UID_RESTORATION_TEST], [1],
619 [Define to disable UID restoration test])
Tim Rice648f8762011-01-26 12:38:57 -0800620 AC_DEFINE([DISABLE_SHADOW], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700621 [Define if you want to disable shadow passwords])
Tim Rice648f8762011-01-26 12:38:57 -0800622 AC_DEFINE([NO_X11_UNIX_SOCKETS], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700623 [Define if X11 doesn't support AF_UNIX sockets on that system])
Tim Rice648f8762011-01-26 12:38:57 -0800624 AC_DEFINE([DISABLE_FD_PASSING], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700625 [Define if your platform needs to skip post auth
626 file descriptor passing])
Tim Rice648f8762011-01-26 12:38:57 -0800627 AC_DEFINE([SSH_IOBUFSZ], [65535], [Windows is sensitive to read buffer size])
Darren Tuckerfdce3732014-01-18 21:12:42 +1100628 AC_DEFINE([FILESYSTEM_NO_BACKSLASH], [1], [File names may not contain backslash characters])
629 # Cygwin defines optargs, optargs as declspec(dllimport) for historical
630 # reasons which cause compile warnings, so we disable those warnings.
631 OSSH_CHECK_CFLAG_COMPILE([-Wno-attributes])
Damien Millerbac2d8a2000-09-05 16:13:06 +1100632 ;;
Ben Lindstrom58055132001-02-15 18:34:29 +0000633*-*-dgux*)
Tim Rice648f8762011-01-26 12:38:57 -0800634 AC_DEFINE([IP_TOS_IS_BROKEN], [1],
Tim Ricea74000e2009-03-18 11:25:02 -0700635 [Define if your system choked on IP TOS setting])
Tim Rice648f8762011-01-26 12:38:57 -0800636 AC_DEFINE([SETEUID_BREAKS_SETUID])
637 AC_DEFINE([BROKEN_SETREUID])
638 AC_DEFINE([BROKEN_SETREGID])
Ben Lindstrom58055132001-02-15 18:34:29 +0000639 ;;
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000640*-*-darwin*)
Damien Miller852472a2014-01-22 16:31:18 +1100641 use_pie=auto
Tim Rice648f8762011-01-26 12:38:57 -0800642 AC_MSG_CHECKING([if we have working getaddrinfo])
643 AC_RUN_IFELSE([AC_LANG_SOURCE([[ #include <mach-o/dyld.h>
Damien Millerfc93d4b2002-09-04 23:26:29 +1000644main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
645 exit(0);
646 else
647 exit(1);
Tim Rice648f8762011-01-26 12:38:57 -0800648}
649 ]])],
650 [AC_MSG_RESULT([working])],
651 [AC_MSG_RESULT([buggy])
652 AC_DEFINE([BROKEN_GETADDRINFO], [1],
653 [getaddrinfo is broken (if present)])
654 ],
655 [AC_MSG_RESULT([assume it is working])])
656 AC_DEFINE([SETEUID_BREAKS_SETUID])
657 AC_DEFINE([BROKEN_SETREUID])
658 AC_DEFINE([BROKEN_SETREGID])
659 AC_DEFINE([BROKEN_GLOB], [1], [OS X glob does not do what we expect])
660 AC_DEFINE_UNQUOTED([BIND_8_COMPAT], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700661 [Define if your resolver libs need this for getrrsetbyname])
Tim Rice648f8762011-01-26 12:38:57 -0800662 AC_DEFINE([SSH_TUN_FREEBSD], [1], [Open tunnel devices the FreeBSD way])
663 AC_DEFINE([SSH_TUN_COMPAT_AF], [1],
Darren Tucker3eb48342006-06-23 21:05:12 +1000664 [Use tunnel device compatibility to OpenBSD])
Tim Rice648f8762011-01-26 12:38:57 -0800665 AC_DEFINE([SSH_TUN_PREPEND_AF], [1],
Darren Tucker3eb48342006-06-23 21:05:12 +1000666 [Prepend the address family to IP tunnel traffic])
Tim Rice648f8762011-01-26 12:38:57 -0800667 m4_pattern_allow([AU_IPv])
Tim Ricee1d93702016-05-31 11:13:22 -0700668 AC_CHECK_DECL([AU_IPv4], [],
Tim Rice648f8762011-01-26 12:38:57 -0800669 AC_DEFINE([AU_IPv4], [0], [System only supports IPv4 audit records])
Darren Tuckeracada072008-02-25 21:05:04 +1100670 [#include <bsm/audit.h>]
Tim Rice648f8762011-01-26 12:38:57 -0800671 AC_DEFINE([LASTLOG_WRITE_PUTUTXLINE], [1],
Damien Miller20e231f2009-02-12 13:12:21 +1100672 [Define if pututxline updates lastlog too])
Darren Tuckeracada072008-02-25 21:05:04 +1100673 )
Damien Millerc09182f2011-06-03 12:11:38 +1000674 AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV],
675 [Define to a Set Process Title type if your system is
676 supported by bsd-setproctitle.c])
Damien Millercd5e52e2011-06-27 07:18:18 +1000677 AC_CHECK_FUNCS([sandbox_init])
678 AC_CHECK_HEADERS([sandbox.h])
Damien Miller39f303b2016-02-23 12:56:59 +1100679 AC_CHECK_LIB([sandbox], [sandbox_apply], [
680 SSHDLIBS="$SSHDLIBS -lsandbox"
681 ])
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000682 ;;
Darren Tucker57b29202006-09-10 20:25:51 +1000683*-*-dragonfly*)
684 SSHDLIBS="$SSHDLIBS -lcrypt"
Darren Tucker882abfd2013-11-09 00:17:41 +1100685 TEST_MALLOC_OPTIONS="AFGJPRX"
Darren Tucker57b29202006-09-10 20:25:51 +1000686 ;;
Tim Ricee1d93702016-05-31 11:13:22 -0700687*-*-haiku*)
Darren Tucker5faa52d2016-08-02 15:22:40 +1000688 LIBS="$LIBS -lbsd "
689 AC_CHECK_LIB([network], [socket])
690 AC_DEFINE([HAVE_U_INT64_T])
691 MANTYPE=man
692 ;;
Darren Tuckerfd333282005-05-28 18:31:42 +1000693*-*-hpux*)
694 # first we define all of the options common to all HP-UX releases
Kevin Steves315f8b72001-06-28 00:24:41 +0000695 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
Damien Miller9a947342000-08-30 10:03:33 +1100696 IPADDR_IN_DISPLAY=yes
Tim Rice648f8762011-01-26 12:38:57 -0800697 AC_DEFINE([USE_PIPES])
Tim Rice648f8762011-01-26 12:38:57 -0800698 AC_DEFINE([LOGIN_NEEDS_UTMPX])
699 AC_DEFINE([LOCKED_PASSWD_STRING], ["*"],
Tim Rice7df8d392005-09-19 09:33:39 -0700700 [String used in /etc/passwd to denote locked account])
Tim Rice648f8762011-01-26 12:38:57 -0800701 AC_DEFINE([SPT_TYPE], [SPT_PSTAT])
Darren Tuckeraa97d132013-03-12 11:31:05 +1100702 AC_DEFINE([PLATFORM_SYS_DIR_UID], 2, [System dirs owned by bin (uid 2)])
Tim Rice90f42b02011-06-02 18:17:49 -0700703 maildir="/var/mail"
Tim Ricef028f1e2002-07-19 12:41:10 -0700704 LIBS="$LIBS -lsec"
Tim Rice648f8762011-01-26 12:38:57 -0800705 AC_CHECK_LIB([xnet], [t_error], ,
706 [AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***])])
Darren Tuckerfd333282005-05-28 18:31:42 +1000707
708 # next, we define all of the options specific to major releases
709 case "$host" in
710 *-*-hpux10*)
711 if test -z "$GCC"; then
712 CFLAGS="$CFLAGS -Ae"
713 fi
714 ;;
715 *-*-hpux11*)
Tim Rice648f8762011-01-26 12:38:57 -0800716 AC_DEFINE([PAM_SUN_CODEBASE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700717 [Define if you are using Solaris-derived PAM which
718 passes pam_messages to the conversation function
719 with an extra level of indirection])
Tim Rice648f8762011-01-26 12:38:57 -0800720 AC_DEFINE([DISABLE_UTMP], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700721 [Define if you don't want to use utmp])
Tim Rice648f8762011-01-26 12:38:57 -0800722 AC_DEFINE([USE_BTMP], [1], [Use btmp to log bad logins])
Darren Tuckerfd333282005-05-28 18:31:42 +1000723 check_for_hpux_broken_getaddrinfo=1
724 check_for_conflicting_getspnam=1
725 ;;
726 esac
727
728 # lastly, we define options specific to minor releases
729 case "$host" in
730 *-*-hpux10.26)
Tim Rice648f8762011-01-26 12:38:57 -0800731 AC_DEFINE([HAVE_SECUREWARE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700732 [Define if you have SecureWare-based
733 protected password database])
Darren Tuckerfd333282005-05-28 18:31:42 +1000734 disable_ptmx_check=yes
735 LIBS="$LIBS -lsecpw"
736 ;;
737 esac
Damien Miller1bead332000-04-30 00:47:29 +1000738 ;;
Damien Millerbeb4ba51999-12-28 15:09:35 +1100739*-*-irix5*)
Damien Miller190d5a82000-09-30 09:43:19 +1100740 PATH="$PATH:/usr/etc"
Tim Rice648f8762011-01-26 12:38:57 -0800741 AC_DEFINE([BROKEN_INET_NTOA], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700742 [Define if you system's inet_ntoa is busted
743 (e.g. Irix gcc issue)])
Tim Rice648f8762011-01-26 12:38:57 -0800744 AC_DEFINE([SETEUID_BREAKS_SETUID])
745 AC_DEFINE([BROKEN_SETREUID])
746 AC_DEFINE([BROKEN_SETREGID])
747 AC_DEFINE([WITH_ABBREV_NO_TTY], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700748 [Define if you shouldn't strip 'tty' from your
749 ttyname in [uw]tmp])
Tim Rice648f8762011-01-26 12:38:57 -0800750 AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Damien Miller1808f382000-01-06 12:03:12 +1100751 ;;
752*-*-irix6*)
Damien Miller190d5a82000-09-30 09:43:19 +1100753 PATH="$PATH:/usr/etc"
Tim Rice648f8762011-01-26 12:38:57 -0800754 AC_DEFINE([WITH_IRIX_ARRAY], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700755 [Define if you have/want arrays
Damien Miller10479cc2018-04-10 10:19:02 +1000756 (cluster-wide session management, not C arrays)])
Tim Rice648f8762011-01-26 12:38:57 -0800757 AC_DEFINE([WITH_IRIX_PROJECT], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700758 [Define if you want IRIX project management])
Tim Rice648f8762011-01-26 12:38:57 -0800759 AC_DEFINE([WITH_IRIX_AUDIT], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700760 [Define if you want IRIX audit trails])
Tim Rice648f8762011-01-26 12:38:57 -0800761 AC_CHECK_FUNC([jlimit_startjob], [AC_DEFINE([WITH_IRIX_JOBS], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700762 [Define if you want IRIX kernel jobs])])
Tim Rice648f8762011-01-26 12:38:57 -0800763 AC_DEFINE([BROKEN_INET_NTOA])
764 AC_DEFINE([SETEUID_BREAKS_SETUID])
765 AC_DEFINE([BROKEN_SETREUID])
766 AC_DEFINE([BROKEN_SETREGID])
767 AC_DEFINE([BROKEN_UPDWTMPX], [1], [updwtmpx is broken (if present)])
768 AC_DEFINE([WITH_ABBREV_NO_TTY])
769 AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Damien Millerbeb4ba51999-12-28 15:09:35 +1100770 ;;
Damien Miller90551722009-02-16 15:37:03 +1100771*-*-k*bsd*-gnu | *-*-kopensolaris*-gnu)
772 check_for_libcrypt_later=1
Tim Rice648f8762011-01-26 12:38:57 -0800773 AC_DEFINE([PAM_TTY_KLUDGE])
774 AC_DEFINE([LOCKED_PASSWD_PREFIX], ["!"])
775 AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV])
776 AC_DEFINE([_PATH_BTMP], ["/var/log/btmp"], [log for bad login attempts])
777 AC_DEFINE([USE_BTMP], [1], [Use btmp to log bad logins])
Damien Miller90551722009-02-16 15:37:03 +1100778 ;;
Damien Millerb29ea912000-01-15 14:12:03 +1100779*-*-linux*)
780 no_dev_ptmx=1
Damien Miller852472a2014-01-22 16:31:18 +1100781 use_pie=auto
Damien Millera64b57a2001-01-17 10:44:13 +1100782 check_for_libcrypt_later=1
Darren Tucker70a3d552003-08-21 17:58:29 +1000783 check_for_openpty_ctty_bug=1
Darren Tuckerc61d5ec2017-02-03 14:10:34 +1100784 dnl Target SUSv3/POSIX.1-2001 plus BSD specifics.
785 dnl _DEFAULT_SOURCE is the new name for _BSD_SOURCE
786 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=600 -D_BSD_SOURCE -D_DEFAULT_SOURCE"
Tim Rice648f8762011-01-26 12:38:57 -0800787 AC_DEFINE([PAM_TTY_KLUDGE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700788 [Work around problematic Linux PAM modules handling of PAM_TTY])
Tim Rice648f8762011-01-26 12:38:57 -0800789 AC_DEFINE([LOCKED_PASSWD_PREFIX], ["!"],
Tim Rice7df8d392005-09-19 09:33:39 -0700790 [String used in /etc/passwd to denote locked account])
Tim Rice648f8762011-01-26 12:38:57 -0800791 AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV])
792 AC_DEFINE([LINK_OPNOTSUPP_ERRNO], [EPERM],
Tim Rice7df8d392005-09-19 09:33:39 -0700793 [Define to whatever link() returns for "not supported"
794 if it doesn't return EOPNOTSUPP.])
Tim Rice648f8762011-01-26 12:38:57 -0800795 AC_DEFINE([_PATH_BTMP], ["/var/log/btmp"], [log for bad login attempts])
796 AC_DEFINE([USE_BTMP])
797 AC_DEFINE([LINUX_OOM_ADJUST], [1], [Adjust Linux out-of-memory killer])
Damien Miller7bcb0892000-03-11 20:45:40 +1100798 inet6_default_4in6=yes
Darren Tucker3c016542003-05-02 20:48:21 +1000799 case `uname -r` in
Darren Tuckerc437cda2003-05-10 17:05:46 +1000800 1.*|2.0.*)
Tim Rice648f8762011-01-26 12:38:57 -0800801 AC_DEFINE([BROKEN_CMSG_TYPE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700802 [Define if cmsg_type is not passed correctly])
Darren Tucker3c016542003-05-02 20:48:21 +1000803 ;;
Darren Tucker3c016542003-05-02 20:48:21 +1000804 esac
Damien Miller89e03ba2005-12-31 16:42:03 +1100805 # tun(4) forwarding compat code
Tim Rice648f8762011-01-26 12:38:57 -0800806 AC_CHECK_HEADERS([linux/if_tun.h])
Damien Millerbd4e4102006-01-01 21:03:30 +1100807 if test "x$ac_cv_header_linux_if_tun_h" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -0800808 AC_DEFINE([SSH_TUN_LINUX], [1],
Damien Miller89e03ba2005-12-31 16:42:03 +1100809 [Open tunnel devices the Linux tun/tap way])
Tim Rice648f8762011-01-26 12:38:57 -0800810 AC_DEFINE([SSH_TUN_COMPAT_AF], [1],
Damien Miller89e03ba2005-12-31 16:42:03 +1100811 [Use tunnel device compatibility to OpenBSD])
Tim Rice648f8762011-01-26 12:38:57 -0800812 AC_DEFINE([SSH_TUN_PREPEND_AF], [1],
Damien Miller89e03ba2005-12-31 16:42:03 +1100813 [Prepend the address family to IP tunnel traffic])
814 fi
Darren Tucker81c9ccd2017-11-03 14:52:51 +1100815 AC_CHECK_HEADER([linux/if.h],
816 AC_DEFINE([SYS_RDOMAIN_LINUX], [1],
Darren Tucker24d2a332018-02-11 21:20:39 +1300817 [Support routing domains using Linux VRF]), [], [
818#ifdef HAVE_SYS_TYPES_H
819# include <sys/types.H>
820#endif
821 ])
Darren Tucker60395f92012-07-03 14:31:18 +1000822 AC_CHECK_HEADERS([linux/seccomp.h linux/filter.h linux/audit.h], [],
823 [], [#include <linux/types.h>])
Vicente Olivert Riera58008672017-06-20 16:42:11 +0100824 # Obtain MIPS ABI
825 case "$host" in
826 mips*)
Darren Tuckerfbd733a2018-03-12 19:17:26 +1100827 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Vicente Olivert Riera58008672017-06-20 16:42:11 +0100828#if _MIPS_SIM != _ABIO32
829#error
830#endif
Darren Tuckerfbd733a2018-03-12 19:17:26 +1100831 ]])],[mips_abi="o32"],[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Vicente Olivert Riera58008672017-06-20 16:42:11 +0100832#if _MIPS_SIM != _ABIN32
833#error
834#endif
Darren Tuckerfbd733a2018-03-12 19:17:26 +1100835 ]])],[mips_abi="n32"],[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Vicente Olivert Riera58008672017-06-20 16:42:11 +0100836#if _MIPS_SIM != _ABI64
837#error
838#endif
Darren Tuckerfbd733a2018-03-12 19:17:26 +1100839 ]])],[mips_abi="n64"],[AC_MSG_ERROR([unknown MIPS ABI])
Vicente Olivert Riera58008672017-06-20 16:42:11 +0100840 ])
841 ])
842 ])
843 ;;
844 esac
Damien Miller91f40d82013-02-22 11:37:00 +1100845 AC_MSG_CHECKING([for seccomp architecture])
846 seccomp_audit_arch=
Damien Millere0956e32012-04-04 11:27:54 +1000847 case "$host" in
848 x86_64-*)
Damien Miller91f40d82013-02-22 11:37:00 +1100849 seccomp_audit_arch=AUDIT_ARCH_X86_64
Damien Millere0956e32012-04-04 11:27:54 +1000850 ;;
851 i*86-*)
Damien Miller91f40d82013-02-22 11:37:00 +1100852 seccomp_audit_arch=AUDIT_ARCH_I386
Damien Millere0956e32012-04-04 11:27:54 +1000853 ;;
Damien Miller99f33d72015-06-17 10:50:51 +1000854 arm*-*)
Damien Miller91f40d82013-02-22 11:37:00 +1100855 seccomp_audit_arch=AUDIT_ARCH_ARM
Damien Miller99f33d72015-06-17 10:50:51 +1000856 ;;
857 aarch64*-*)
858 seccomp_audit_arch=AUDIT_ARCH_AARCH64
Damien Miller5c15e222015-06-18 15:07:56 +1000859 ;;
Damien Millerb9c50612016-07-08 13:59:13 +1000860 s390x-*)
861 seccomp_audit_arch=AUDIT_ARCH_S390X
862 ;;
863 s390-*)
864 seccomp_audit_arch=AUDIT_ARCH_S390
865 ;;
866 powerpc64-*)
867 seccomp_audit_arch=AUDIT_ARCH_PPC64
868 ;;
869 powerpc64le-*)
870 seccomp_audit_arch=AUDIT_ARCH_PPC64LE
871 ;;
872 mips-*)
873 seccomp_audit_arch=AUDIT_ARCH_MIPS
874 ;;
875 mipsel-*)
876 seccomp_audit_arch=AUDIT_ARCH_MIPSEL
877 ;;
878 mips64-*)
Vicente Olivert Riera45011512017-06-20 16:42:28 +0100879 case "$mips_abi" in
880 "n32")
881 seccomp_audit_arch=AUDIT_ARCH_MIPS64N32
882 ;;
883 "n64")
884 seccomp_audit_arch=AUDIT_ARCH_MIPS64
885 ;;
886 esac
Damien Millerb9c50612016-07-08 13:59:13 +1000887 ;;
888 mips64el-*)
Vicente Olivert Riera45011512017-06-20 16:42:28 +0100889 case "$mips_abi" in
890 "n32")
891 seccomp_audit_arch=AUDIT_ARCH_MIPSEL64N32
892 ;;
893 "n64")
894 seccomp_audit_arch=AUDIT_ARCH_MIPSEL64
895 ;;
896 esac
Damien Millerb9c50612016-07-08 13:59:13 +1000897 ;;
Damien Millere0956e32012-04-04 11:27:54 +1000898 esac
Damien Miller91f40d82013-02-22 11:37:00 +1100899 if test "x$seccomp_audit_arch" != "x" ; then
900 AC_MSG_RESULT(["$seccomp_audit_arch"])
Damien Miller99f33d72015-06-17 10:50:51 +1000901 AC_DEFINE_UNQUOTED([SECCOMP_AUDIT_ARCH], [$seccomp_audit_arch],
902 [Specify the system call convention in use])
Damien Miller91f40d82013-02-22 11:37:00 +1100903 else
904 AC_MSG_RESULT([architecture not supported])
905 fi
Damien Millerb29ea912000-01-15 14:12:03 +1100906 ;;
Ben Lindstromb5628642000-10-18 00:02:25 +0000907mips-sony-bsd|mips-sony-newsos4)
Tim Rice648f8762011-01-26 12:38:57 -0800908 AC_DEFINE([NEED_SETPGRP], [1], [Need setpgrp to acquire controlling tty])
Ben Lindstromb5628642000-10-18 00:02:25 +0000909 SONY=1
Ben Lindstromb5628642000-10-18 00:02:25 +0000910 ;;
Damien Milleree1c0b32000-01-21 00:18:15 +1100911*-*-netbsd*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000912 check_for_libcrypt_before=1
Tim Riceeae17cc2005-03-17 16:52:20 -0800913 if test "x$withval" != "xno" ; then
Tim Rice88368a32003-12-08 12:35:59 -0800914 need_dash_r=1
915 fi
Damien Miller99522ba2016-07-28 08:54:27 +1000916 CPPFLAGS="$CPPFLAGS -D_OPENBSD_SOURCE"
Tim Rice648f8762011-01-26 12:38:57 -0800917 AC_DEFINE([SSH_TUN_FREEBSD], [1], [Open tunnel devices the FreeBSD way])
Damien Miller2dcddbf2006-01-01 19:47:05 +1100918 AC_CHECK_HEADER([net/if_tap.h], ,
Tim Rice648f8762011-01-26 12:38:57 -0800919 AC_DEFINE([SSH_TUN_NO_L2], [1], [No layer 2 tunnel support]))
920 AC_DEFINE([SSH_TUN_PREPEND_AF], [1],
Damien Miller2dcddbf2006-01-01 19:47:05 +1100921 [Prepend the address family to IP tunnel traffic])
Darren Tucker882abfd2013-11-09 00:17:41 +1100922 TEST_MALLOC_OPTIONS="AJRX"
Damien Millerf5bbd3b2014-01-30 11:26:46 +1100923 AC_DEFINE([BROKEN_READ_COMPARISON], [1],
924 [NetBSD read function is sometimes redirected, breaking atomicio comparisons against it])
Damien Milleree1c0b32000-01-21 00:18:15 +1100925 ;;
Damien Millerfbd884a2001-02-27 08:39:07 +1100926*-*-freebsd*)
927 check_for_libcrypt_later=1
Tim Rice648f8762011-01-26 12:38:57 -0800928 AC_DEFINE([LOCKED_PASSWD_PREFIX], ["*LOCKED*"], [Account locked with pw(1)])
929 AC_DEFINE([SSH_TUN_FREEBSD], [1], [Open tunnel devices the FreeBSD way])
Damien Miller2dcddbf2006-01-01 19:47:05 +1100930 AC_CHECK_HEADER([net/if_tap.h], ,
Tim Rice648f8762011-01-26 12:38:57 -0800931 AC_DEFINE([SSH_TUN_NO_L2], [1], [No layer 2 tunnel support]))
932 AC_DEFINE([BROKEN_GLOB], [1], [FreeBSD glob does not do what we need])
Darren Tucker882abfd2013-11-09 00:17:41 +1100933 TEST_MALLOC_OPTIONS="AJRX"
Damien Miller2035b222014-01-26 09:39:53 +1100934 # Preauth crypto occasionally uses file descriptors for crypto offload
935 # and will crash if they cannot be opened.
Damien Miller5b447c02014-01-26 09:46:53 +1100936 AC_DEFINE([SANDBOX_SKIP_RLIMIT_NOFILE], [1],
Tim Rice03ae0812014-02-21 09:09:34 -0800937 [define if setrlimit RLIMIT_NOFILE breaks things])
Damien Millerfbd884a2001-02-27 08:39:07 +1100938 ;;
Darren Tuckered9eb022003-09-22 11:18:47 +1000939*-*-bsdi*)
Tim Rice648f8762011-01-26 12:38:57 -0800940 AC_DEFINE([SETEUID_BREAKS_SETUID])
941 AC_DEFINE([BROKEN_SETREUID])
942 AC_DEFINE([BROKEN_SETREGID])
Darren Tuckered9eb022003-09-22 11:18:47 +1000943 ;;
Damien Miller0f91b4e2000-06-18 15:43:25 +1000944*-next-*)
Damien Miller0f91b4e2000-06-18 15:43:25 +1000945 conf_lastlog_location="/usr/adm/lastlog"
Damien Millere5192fa2000-08-29 14:30:37 +1100946 conf_utmp_location=/etc/utmp
947 conf_wtmp_location=/usr/adm/wtmp
Tim Rice90f42b02011-06-02 18:17:49 -0700948 maildir=/usr/spool/mail
Tim Rice648f8762011-01-26 12:38:57 -0800949 AC_DEFINE([HAVE_NEXT], [1], [Define if you are on NeXT])
950 AC_DEFINE([BROKEN_REALPATH])
951 AC_DEFINE([USE_PIPES])
952 AC_DEFINE([BROKEN_SAVED_UIDS], [1], [Needed for NeXT])
Damien Miller0f91b4e2000-06-18 15:43:25 +1000953 ;;
Darren Tucker4a422572005-07-14 17:22:11 +1000954*-*-openbsd*)
Damien Miller852472a2014-01-22 16:31:18 +1100955 use_pie=auto
Tim Rice648f8762011-01-26 12:38:57 -0800956 AC_DEFINE([HAVE_ATTRIBUTE__SENTINEL__], [1], [OpenBSD's gcc has sentinel])
957 AC_DEFINE([HAVE_ATTRIBUTE__BOUNDED__], [1], [OpenBSD's gcc has bounded])
958 AC_DEFINE([SSH_TUN_OPENBSD], [1], [Open tunnel devices the OpenBSD way])
959 AC_DEFINE([SYSLOG_R_SAFE_IN_SIGHAND], [1],
Damien Millerbb598142006-08-19 08:38:23 +1000960 [syslog_r function is safe to use in in a signal handler])
Darren Tucker882abfd2013-11-09 00:17:41 +1100961 TEST_MALLOC_OPTIONS="AFGJPRX"
Darren Tucker4a422572005-07-14 17:22:11 +1000962 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100963*-*-solaris*)
Tim Riceeae17cc2005-03-17 16:52:20 -0800964 if test "x$withval" != "xno" ; then
Tim Ricead4a1882004-02-29 15:53:37 -0800965 need_dash_r=1
966 fi
Tim Rice648f8762011-01-26 12:38:57 -0800967 AC_DEFINE([PAM_SUN_CODEBASE])
968 AC_DEFINE([LOGIN_NEEDS_UTMPX])
Tim Rice648f8762011-01-26 12:38:57 -0800969 AC_DEFINE([PAM_TTY_KLUDGE])
970 AC_DEFINE([SSHPAM_CHAUTHTOK_NEEDS_RUID], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700971 [Define if pam_chauthtok wants real uid set
972 to the unpriv'ed user])
Tim Rice648f8762011-01-26 12:38:57 -0800973 AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Darren Tuckerc437cda2003-05-10 17:05:46 +1000974 # Pushing STREAMS modules will cause sshd to acquire a controlling tty.
Tim Rice648f8762011-01-26 12:38:57 -0800975 AC_DEFINE([SSHD_ACQUIRES_CTTY], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700976 [Define if sshd somehow reacquires a controlling TTY
977 after setsid()])
Tim Rice648f8762011-01-26 12:38:57 -0800978 AC_DEFINE([PASSWD_NEEDS_USERNAME], [1], [must supply username to passwd
Darren Tucker0249f932006-06-24 12:10:07 +1000979 in case the name is longer than 8 chars])
Tim Rice648f8762011-01-26 12:38:57 -0800980 AC_DEFINE([BROKEN_TCGETATTR_ICANON], [1], [tcgetattr with ICANON may hang])
Darren Tuckere1a790d2003-09-16 11:52:19 +1000981 external_path_file=/etc/default/login
andre2ff7b5d2000-06-03 14:57:40 +0000982 # hardwire lastlog location (can't detect it on some versions)
983 conf_lastlog_location="/var/adm/lastlog"
Tim Rice648f8762011-01-26 12:38:57 -0800984 AC_MSG_CHECKING([for obsolete utmp and wtmp in solaris2.x])
Damien Millera1cb6442000-06-09 11:58:35 +1000985 sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'`
986 if test "$sol2ver" -ge 8; then
Tim Rice648f8762011-01-26 12:38:57 -0800987 AC_MSG_RESULT([yes])
988 AC_DEFINE([DISABLE_UTMP])
989 AC_DEFINE([DISABLE_WTMP], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700990 [Define if you don't want to use wtmp])
Damien Millera1cb6442000-06-09 11:58:35 +1000991 else
Tim Rice648f8762011-01-26 12:38:57 -0800992 AC_MSG_RESULT([no])
Damien Millera1cb6442000-06-09 11:58:35 +1000993 fi
Darren Tuckera86ec4d2016-06-14 10:48:27 +1000994 AC_CHECK_FUNCS([setpflags])
Darren Tucker907091a2016-02-19 09:05:39 +1100995 AC_CHECK_FUNCS([setppriv])
996 AC_CHECK_FUNCS([priv_basicset])
997 AC_CHECK_HEADERS([priv.h])
Tim Rice648f8762011-01-26 12:38:57 -0800998 AC_ARG_WITH([solaris-contracts],
Damien Miller1b06dc32006-08-31 03:24:41 +1000999 [ --with-solaris-contracts Enable Solaris process contracts (experimental)],
1000 [
Tim Rice648f8762011-01-26 12:38:57 -08001001 AC_CHECK_LIB([contract], [ct_tmpl_activate],
1002 [ AC_DEFINE([USE_SOLARIS_PROCESS_CONTRACTS], [1],
Damien Miller1b06dc32006-08-31 03:24:41 +10001003 [Define if you have Solaris process contracts])
Damien Miller4626cba2016-01-08 14:24:56 +11001004 LIBS="$LIBS -lcontract"
Damien Miller1b06dc32006-08-31 03:24:41 +10001005 SPC_MSG="yes" ], )
1006 ],
1007 )
Tim Rice648f8762011-01-26 12:38:57 -08001008 AC_ARG_WITH([solaris-projects],
Darren Tucker97528352010-11-05 12:03:05 +11001009 [ --with-solaris-projects Enable Solaris projects (experimental)],
1010 [
Tim Rice648f8762011-01-26 12:38:57 -08001011 AC_CHECK_LIB([project], [setproject],
1012 [ AC_DEFINE([USE_SOLARIS_PROJECTS], [1],
Darren Tucker97528352010-11-05 12:03:05 +11001013 [Define if you have Solaris projects])
Damien Miller4626cba2016-01-08 14:24:56 +11001014 LIBS="$LIBS -lproject"
Darren Tucker97528352010-11-05 12:03:05 +11001015 SP_MSG="yes" ], )
1016 ],
1017 )
Damien Miller4626cba2016-01-08 14:24:56 +11001018 AC_ARG_WITH([solaris-privs],
1019 [ --with-solaris-privs Enable Solaris/Illumos privileges (experimental)],
1020 [
1021 AC_MSG_CHECKING([for Solaris/Illumos privilege support])
Darren Tucker907091a2016-02-19 09:05:39 +11001022 if test "x$ac_cv_func_setppriv" = "xyes" -a \
1023 "x$ac_cv_header_priv_h" = "xyes" ; then
1024 SOLARIS_PRIVS=yes
Damien Miller4626cba2016-01-08 14:24:56 +11001025 AC_MSG_RESULT([found])
1026 AC_DEFINE([NO_UID_RESTORATION_TEST], [1],
1027 [Define to disable UID restoration test])
1028 AC_DEFINE([USE_SOLARIS_PRIVS], [1],
1029 [Define if you have Solaris privileges])
1030 SPP_MSG="yes"
1031 else
1032 AC_MSG_RESULT([not found])
1033 AC_MSG_ERROR([*** must have support for Solaris privileges to use --with-solaris-privs])
1034 fi
1035 ],
1036 )
Tim Rice5ab9b632013-06-02 14:05:48 -07001037 TEST_SHELL=$SHELL # let configure find us a capable shell
Damien Miller75b1d102000-01-07 14:01:41 +11001038 ;;
Damien Millerdfc83f42000-05-20 15:02:59 +10001039*-*-sunos4*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00001040 CPPFLAGS="$CPPFLAGS -DSUNOS4"
Tim Rice648f8762011-01-26 12:38:57 -08001041 AC_CHECK_FUNCS([getpwanam])
1042 AC_DEFINE([PAM_SUN_CODEBASE])
Damien Miller36ccb5c2000-08-09 16:34:27 +10001043 conf_utmp_location=/etc/utmp
1044 conf_wtmp_location=/var/adm/wtmp
1045 conf_lastlog_location=/var/adm/lastlog
Tim Rice648f8762011-01-26 12:38:57 -08001046 AC_DEFINE([USE_PIPES])
Darren Tuckerc0a0c3f2018-03-05 20:03:07 +11001047 AC_DEFINE([DISABLE_UTMPX], [1], [no utmpx])
Damien Millerdfc83f42000-05-20 15:02:59 +10001048 ;;
Ben Lindstrom603bdfd2001-02-12 07:29:45 +00001049*-ncr-sysv*)
Tim Rice13aae5e2001-10-21 17:53:58 -07001050 LIBS="$LIBS -lc89"
Tim Rice648f8762011-01-26 12:38:57 -08001051 AC_DEFINE([USE_PIPES])
1052 AC_DEFINE([SSHD_ACQUIRES_CTTY])
1053 AC_DEFINE([SETEUID_BREAKS_SETUID])
1054 AC_DEFINE([BROKEN_SETREUID])
1055 AC_DEFINE([BROKEN_SETREGID])
Ben Lindstrom603bdfd2001-02-12 07:29:45 +00001056 ;;
Damien Miller2ae714f2000-07-11 09:29:50 +10001057*-sni-sysv*)
Tim Riceffdf4aa2001-10-27 10:45:36 -07001058 # /usr/ucblib MUST NOT be searched on ReliantUNIX
Tim Rice648f8762011-01-26 12:38:57 -08001059 AC_CHECK_LIB([dl], [dlsym], ,)
Darren Tucker79d09fa2005-11-24 22:34:54 +11001060 # -lresolv needs to be at the end of LIBS or DNS lookups break
Tim Rice648f8762011-01-26 12:38:57 -08001061 AC_CHECK_LIB([resolv], [res_query], [ LIBS="$LIBS -lresolv" ])
Damien Millerfd9885e2001-01-10 08:16:53 +11001062 IPADDR_IN_DISPLAY=yes
Tim Rice648f8762011-01-26 12:38:57 -08001063 AC_DEFINE([USE_PIPES])
1064 AC_DEFINE([IP_TOS_IS_BROKEN])
1065 AC_DEFINE([SETEUID_BREAKS_SETUID])
1066 AC_DEFINE([BROKEN_SETREUID])
1067 AC_DEFINE([BROKEN_SETREGID])
1068 AC_DEFINE([SSHD_ACQUIRES_CTTY])
Darren Tuckere1a790d2003-09-16 11:52:19 +10001069 external_path_file=/etc/default/login
Tim Riceffdf4aa2001-10-27 10:45:36 -07001070 # /usr/ucblib/libucb.a no longer needed on ReliantUNIX
1071 # Attention: always take care to bind libsocket and libnsl before libc,
1072 # otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
Damien Miller2ae714f2000-07-11 09:29:50 +10001073 ;;
Tim Rice0f83d292004-12-08 18:29:58 -08001074# UnixWare 1.x, UnixWare 2.x, and others based on code from Univel.
Damien Miller78315eb2000-09-29 23:01:36 +11001075*-*-sysv4.2*)
Tim Rice648f8762011-01-26 12:38:57 -08001076 AC_DEFINE([USE_PIPES])
1077 AC_DEFINE([SETEUID_BREAKS_SETUID])
1078 AC_DEFINE([BROKEN_SETREUID])
1079 AC_DEFINE([BROKEN_SETREGID])
1080 AC_DEFINE([PASSWD_NEEDS_USERNAME], [1], [must supply username to passwd])
1081 AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Tim Rice5ab9b632013-06-02 14:05:48 -07001082 TEST_SHELL=$SHELL # let configure find us a capable shell
Damien Miller78315eb2000-09-29 23:01:36 +11001083 ;;
Tim Rice0f83d292004-12-08 18:29:58 -08001084# UnixWare 7.x, OpenUNIX 8
Damien Miller78315eb2000-09-29 23:01:36 +11001085*-*-sysv5*)
Tim Rice641ebf12010-01-17 17:05:39 -08001086 CPPFLAGS="$CPPFLAGS -Dvsnprintf=_xvsnprintf -Dsnprintf=_xsnprintf"
Tim Rice648f8762011-01-26 12:38:57 -08001087 AC_DEFINE([UNIXWARE_LONG_PASSWORDS], [1], [Support passwords > 8 chars])
1088 AC_DEFINE([USE_PIPES])
1089 AC_DEFINE([SETEUID_BREAKS_SETUID])
1090 AC_DEFINE([BROKEN_GETADDRINFO])
1091 AC_DEFINE([BROKEN_SETREUID])
1092 AC_DEFINE([BROKEN_SETREGID])
1093 AC_DEFINE([PASSWD_NEEDS_USERNAME])
Tim Rice8433d512017-07-11 18:47:56 -07001094 AC_DEFINE([BROKEN_TCGETATTR_ICANON])
Tim Rice5ab9b632013-06-02 14:05:48 -07001095 TEST_SHELL=$SHELL # let configure find us a capable shell
Tim Rice4afeaf32018-03-25 10:00:21 -07001096 check_for_libcrypt_later=1
Tim Rice4dbacff2005-06-01 20:09:28 -07001097 case "$host" in
1098 *-*-sysv5SCO_SV*) # SCO OpenServer 6.x
Tim Rice90f42b02011-06-02 18:17:49 -07001099 maildir=/var/spool/mail
Tim Rice648f8762011-01-26 12:38:57 -08001100 AC_DEFINE([BROKEN_UPDWTMPX])
1101 AC_CHECK_LIB([prot], [getluid], [ LIBS="$LIBS -lprot"
1102 AC_CHECK_FUNCS([getluid setluid], , , [-lprot])
Tim Rice648f8762011-01-26 12:38:57 -08001103 ], , )
Tim Rice4dbacff2005-06-01 20:09:28 -07001104 ;;
Tim Rice648f8762011-01-26 12:38:57 -08001105 *) AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Tim Rice46259d82005-11-28 18:40:34 -08001106 ;;
Tim Rice4dbacff2005-06-01 20:09:28 -07001107 esac
Damien Miller78315eb2000-09-29 23:01:36 +11001108 ;;
Damien Miller75b1d102000-01-07 14:01:41 +11001109*-*-sysv*)
Damien Miller75b1d102000-01-07 14:01:41 +11001110 ;;
Tim Rice0f83d292004-12-08 18:29:58 -08001111# SCO UNIX and OEM versions of SCO UNIX
Damien Miller78315eb2000-09-29 23:01:36 +11001112*-*-sco3.2v4*)
Tim Ricec390c8d2005-03-07 01:21:37 -08001113 AC_MSG_ERROR("This Platform is no longer supported.")
Damien Miller78315eb2000-09-29 23:01:36 +11001114 ;;
Tim Rice0f83d292004-12-08 18:29:58 -08001115# SCO OpenServer 5.x
Damien Miller78315eb2000-09-29 23:01:36 +11001116*-*-sco3.2v5*)
Tim Rice89fe3f32003-01-19 20:20:24 -08001117 if test -z "$GCC"; then
1118 CFLAGS="$CFLAGS -belf"
1119 fi
Damien Miller5dfe9762001-02-16 12:05:39 +11001120 LIBS="$LIBS -lprot -lx -ltinfo -lm"
Damien Millera66626b2000-06-13 18:57:53 +10001121 no_dev_ptmx=1
Tim Rice648f8762011-01-26 12:38:57 -08001122 AC_DEFINE([USE_PIPES])
1123 AC_DEFINE([HAVE_SECUREWARE])
1124 AC_DEFINE([DISABLE_SHADOW])
1125 AC_DEFINE([DISABLE_FD_PASSING])
1126 AC_DEFINE([SETEUID_BREAKS_SETUID])
1127 AC_DEFINE([BROKEN_GETADDRINFO])
1128 AC_DEFINE([BROKEN_SETREUID])
1129 AC_DEFINE([BROKEN_SETREGID])
1130 AC_DEFINE([WITH_ABBREV_NO_TTY])
1131 AC_DEFINE([BROKEN_UPDWTMPX])
1132 AC_DEFINE([PASSWD_NEEDS_USERNAME])
1133 AC_CHECK_FUNCS([getluid setluid])
Tim Rice07183b82001-04-25 21:40:28 -07001134 MANTYPE=man
Tim Rice5ab9b632013-06-02 14:05:48 -07001135 TEST_SHELL=$SHELL # let configure find us a capable shell
Tim Riceaa86c392013-03-16 20:55:46 -07001136 SKIP_DISABLE_LASTLOG_DEFINE=yes
Damien Millera66626b2000-06-13 18:57:53 +10001137 ;;
Damien Millerb8c656e2000-06-28 15:22:41 +10001138*-dec-osf*)
Tim Rice648f8762011-01-26 12:38:57 -08001139 AC_MSG_CHECKING([for Digital Unix SIA])
Ben Lindstrom72af2ef2001-05-08 20:42:28 +00001140 no_osfsia=""
Tim Rice648f8762011-01-26 12:38:57 -08001141 AC_ARG_WITH([osfsia],
Ben Lindstrom72af2ef2001-05-08 20:42:28 +00001142 [ --with-osfsia Enable Digital Unix SIA],
1143 [
1144 if test "x$withval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08001145 AC_MSG_RESULT([disabled])
Ben Lindstrom72af2ef2001-05-08 20:42:28 +00001146 no_osfsia=1
1147 fi
1148 ],
1149 )
1150 if test -z "$no_osfsia" ; then
Damien Millerb8c656e2000-06-28 15:22:41 +10001151 if test -f /etc/sia/matrix.conf; then
Tim Rice648f8762011-01-26 12:38:57 -08001152 AC_MSG_RESULT([yes])
1153 AC_DEFINE([HAVE_OSF_SIA], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001154 [Define if you have Digital Unix Security
1155 Integration Architecture])
Tim Rice648f8762011-01-26 12:38:57 -08001156 AC_DEFINE([DISABLE_LOGIN], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001157 [Define if you don't want to use your
1158 system's login() call])
Tim Rice648f8762011-01-26 12:38:57 -08001159 AC_DEFINE([DISABLE_FD_PASSING])
Damien Millerb8c656e2000-06-28 15:22:41 +10001160 LIBS="$LIBS -lsecurity -ldb -lm -laud"
Damien Miller1b06dc32006-08-31 03:24:41 +10001161 SIA_MSG="yes"
Damien Millerb8c656e2000-06-28 15:22:41 +10001162 else
Tim Rice648f8762011-01-26 12:38:57 -08001163 AC_MSG_RESULT([no])
1164 AC_DEFINE([LOCKED_PASSWD_SUBSTR], ["Nologin"],
Tim Rice7df8d392005-09-19 09:33:39 -07001165 [String used in /etc/passwd to denote locked account])
Damien Millerb8c656e2000-06-28 15:22:41 +10001166 fi
1167 fi
Tim Rice648f8762011-01-26 12:38:57 -08001168 AC_DEFINE([BROKEN_GETADDRINFO])
1169 AC_DEFINE([SETEUID_BREAKS_SETUID])
1170 AC_DEFINE([BROKEN_SETREUID])
1171 AC_DEFINE([BROKEN_SETREGID])
1172 AC_DEFINE([BROKEN_READV_COMPARISON], [1], [Can't do comparisons on readv])
Damien Millerb8c656e2000-06-28 15:22:41 +10001173 ;;
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001174
Tim Rice70335a62006-02-04 17:42:58 -08001175*-*-nto-qnx*)
Tim Rice648f8762011-01-26 12:38:57 -08001176 AC_DEFINE([USE_PIPES])
1177 AC_DEFINE([NO_X11_UNIX_SOCKETS])
Tim Rice648f8762011-01-26 12:38:57 -08001178 AC_DEFINE([DISABLE_LASTLOG])
1179 AC_DEFINE([SSHD_ACQUIRES_CTTY])
1180 AC_DEFINE([BROKEN_SHADOW_EXPIRE], [1], [QNX shadow support is broken])
Tim Rice2f993462006-02-11 18:37:48 -08001181 enable_etc_default_login=no # has incompatible /etc/default/login
Darren Tucker8acb3b62007-08-10 14:36:12 +10001182 case "$host" in
1183 *-*-nto-qnx6*)
Tim Rice648f8762011-01-26 12:38:57 -08001184 AC_DEFINE([DISABLE_FD_PASSING])
Darren Tucker8acb3b62007-08-10 14:36:12 +10001185 ;;
1186 esac
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001187 ;;
Darren Tucker2be1cbb2005-05-27 21:13:40 +10001188
1189*-*-ultrix*)
Tim Rice648f8762011-01-26 12:38:57 -08001190 AC_DEFINE([BROKEN_GETGROUPS], [1], [getgroups(0,NULL) will return -1])
Tim Rice648f8762011-01-26 12:38:57 -08001191 AC_DEFINE([NEED_SETPGRP])
1192 AC_DEFINE([HAVE_SYS_SYSLOG_H], [1], [Force use of sys/syslog.h on Ultrix])
Tim Ricefcc7ff12005-06-02 20:28:29 -07001193 ;;
Darren Tucker93e7e8f2005-08-23 08:06:55 +10001194
1195*-*-lynxos)
Darren Tucker5faa52d2016-08-02 15:22:40 +10001196 CFLAGS="$CFLAGS -D__NO_INCLUDE_WARN__"
1197 AC_DEFINE([BROKEN_SETVBUF], [1],
1198 [LynxOS has broken setvbuf() implementation])
1199 ;;
Damien Miller76112de1999-12-21 11:18:08 +11001200esac
1201
Tim Rice648f8762011-01-26 12:38:57 -08001202AC_MSG_CHECKING([compiler and flags for sanity])
1203AC_RUN_IFELSE([AC_LANG_PROGRAM([[ #include <stdio.h> ]], [[ exit(0); ]])],
1204 [ AC_MSG_RESULT([yes]) ],
Darren Tucker6eb93042003-06-29 21:30:41 +10001205 [
Tim Rice648f8762011-01-26 12:38:57 -08001206 AC_MSG_RESULT([no])
Darren Tucker6eb93042003-06-29 21:30:41 +10001207 AC_MSG_ERROR([*** compiler cannot create working executables, check config.log ***])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001208 ],
1209 [ AC_MSG_WARN([cross compiling: not checking compiler sanity]) ]
Darren Tucker6eb93042003-06-29 21:30:41 +10001210)
1211
Darren Tucker0c9653f2005-05-28 15:58:14 +10001212dnl Checks for header files.
Damien Millera22ba012000-03-02 23:09:20 +11001213# Checks for libraries.
Tim Rice648f8762011-01-26 12:38:57 -08001214AC_CHECK_FUNC([setsockopt], , [AC_CHECK_LIB([socket], [setsockopt])])
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001215
Tim Rice1e1ef642003-09-11 22:19:31 -07001216dnl IRIX and Solaris 2.5.1 have dirname() in libgen
Tim Rice648f8762011-01-26 12:38:57 -08001217AC_CHECK_FUNCS([dirname], [AC_CHECK_HEADERS([libgen.h])] , [
1218 AC_CHECK_LIB([gen], [dirname], [
Tim Rice1e1ef642003-09-11 22:19:31 -07001219 AC_CACHE_CHECK([for broken dirname],
1220 ac_cv_have_broken_dirname, [
1221 save_LIBS="$LIBS"
1222 LIBS="$LIBS -lgen"
Darren Tucker314d89e2005-10-17 23:29:23 +10001223 AC_RUN_IFELSE(
1224 [AC_LANG_SOURCE([[
Tim Rice1e1ef642003-09-11 22:19:31 -07001225#include <libgen.h>
1226#include <string.h>
1227
1228int main(int argc, char **argv) {
1229 char *s, buf[32];
1230
1231 strncpy(buf,"/etc", 32);
1232 s = dirname(buf);
1233 if (!s || strncmp(s, "/", 32) != 0) {
1234 exit(1);
1235 } else {
1236 exit(0);
1237 }
1238}
Darren Tucker314d89e2005-10-17 23:29:23 +10001239 ]])],
Tim Rice1e1ef642003-09-11 22:19:31 -07001240 [ ac_cv_have_broken_dirname="no" ],
Darren Tucker314d89e2005-10-17 23:29:23 +10001241 [ ac_cv_have_broken_dirname="yes" ],
1242 [ ac_cv_have_broken_dirname="no" ],
Tim Rice1e1ef642003-09-11 22:19:31 -07001243 )
1244 LIBS="$save_LIBS"
1245 ])
1246 if test "x$ac_cv_have_broken_dirname" = "xno" ; then
1247 LIBS="$LIBS -lgen"
Tim Rice648f8762011-01-26 12:38:57 -08001248 AC_DEFINE([HAVE_DIRNAME])
1249 AC_CHECK_HEADERS([libgen.h])
Tim Rice1e1ef642003-09-11 22:19:31 -07001250 fi
1251 ])
1252])
1253
Tim Rice648f8762011-01-26 12:38:57 -08001254AC_CHECK_FUNC([getspnam], ,
1255 [AC_CHECK_LIB([gen], [getspnam], [LIBS="$LIBS -lgen"])])
1256AC_SEARCH_LIBS([basename], [gen], [AC_DEFINE([HAVE_BASENAME], [1],
1257 [Define if you have the basename function.])])
Tim Rice1e1ef642003-09-11 22:19:31 -07001258
Tim Rice13aae5e2001-10-21 17:53:58 -07001259dnl zlib is required
Tim Rice648f8762011-01-26 12:38:57 -08001260AC_ARG_WITH([zlib],
Tim Rice13aae5e2001-10-21 17:53:58 -07001261 [ --with-zlib=PATH Use zlib in PATH],
Darren Tucker86a5f8d2005-03-21 09:55:17 +11001262 [ if test "x$withval" = "xno" ; then
1263 AC_MSG_ERROR([*** zlib is required ***])
1264 elif test "x$withval" != "xyes"; then
Tim Rice13aae5e2001-10-21 17:53:58 -07001265 if test -d "$withval/lib"; then
1266 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001267 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001268 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001269 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001270 fi
1271 else
1272 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001273 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001274 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001275 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001276 fi
1277 fi
1278 if test -d "$withval/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001279 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001280 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001281 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001282 fi
Darren Tucker86a5f8d2005-03-21 09:55:17 +11001283 fi ]
Tim Rice13aae5e2001-10-21 17:53:58 -07001284)
1285
Tim Rice648f8762011-01-26 12:38:57 -08001286AC_CHECK_HEADER([zlib.h], ,[AC_MSG_ERROR([*** zlib.h missing - please install first or check config.log ***])])
1287AC_CHECK_LIB([z], [deflate], ,
Tim Ricefcb62202004-01-23 18:35:16 -08001288 [
1289 saved_CPPFLAGS="$CPPFLAGS"
1290 saved_LDFLAGS="$LDFLAGS"
1291 save_LIBS="$LIBS"
1292 dnl Check default zlib install dir
1293 if test -n "${need_dash_r}"; then
1294 LDFLAGS="-L/usr/local/lib -R/usr/local/lib ${saved_LDFLAGS}"
1295 else
1296 LDFLAGS="-L/usr/local/lib ${saved_LDFLAGS}"
1297 fi
1298 CPPFLAGS="-I/usr/local/include ${saved_CPPFLAGS}"
1299 LIBS="$LIBS -lz"
Tim Rice648f8762011-01-26 12:38:57 -08001300 AC_TRY_LINK_FUNC([deflate], [AC_DEFINE([HAVE_LIBZ])],
Tim Ricefcb62202004-01-23 18:35:16 -08001301 [
1302 AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***])
1303 ]
1304 )
1305 ]
1306)
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001307
Tim Rice648f8762011-01-26 12:38:57 -08001308AC_ARG_WITH([zlib-version-check],
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001309 [ --without-zlib-version-check Disable zlib version check],
1310 [ if test "x$withval" = "xno" ; then
1311 zlib_check_nonfatal=1
1312 fi
1313 ]
1314)
1315
Tim Rice648f8762011-01-26 12:38:57 -08001316AC_MSG_CHECKING([for possibly buggy zlib])
1317AC_RUN_IFELSE([AC_LANG_PROGRAM([[
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001318#include <stdio.h>
Darren Tuckerc8a0f272013-03-22 12:49:14 +11001319#include <stdlib.h>
Darren Tucker2dcd2392004-01-23 17:13:33 +11001320#include <zlib.h>
Tim Rice648f8762011-01-26 12:38:57 -08001321 ]],
1322 [[
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001323 int a=0, b=0, c=0, d=0, n, v;
1324 n = sscanf(ZLIB_VERSION, "%d.%d.%d.%d", &a, &b, &c, &d);
1325 if (n != 3 && n != 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +11001326 exit(1);
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001327 v = a*1000000 + b*10000 + c*100 + d;
1328 fprintf(stderr, "found zlib version %s (%d)\n", ZLIB_VERSION, v);
1329
1330 /* 1.1.4 is OK */
1331 if (a == 1 && b == 1 && c >= 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +11001332 exit(0);
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001333
Darren Tucker41097ed2005-07-25 15:24:21 +10001334 /* 1.2.3 and up are OK */
1335 if (v >= 1020300)
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001336 exit(0);
1337
Darren Tucker2dcd2392004-01-23 17:13:33 +11001338 exit(2);
Darren Tucker623d92f2004-09-12 22:36:15 +10001339 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08001340 AC_MSG_RESULT([no]),
1341 [ AC_MSG_RESULT([yes])
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001342 if test -z "$zlib_check_nonfatal" ; then
1343 AC_MSG_ERROR([*** zlib too old - check config.log ***
1344Your reported zlib version has known security problems. It's possible your
1345vendor has fixed these problems without changing the version number. If you
1346are sure this is the case, you can disable the check by running
1347"./configure --without-zlib-version-check".
Darren Tuckerac1910f2005-07-26 12:00:42 +10001348If you are in doubt, upgrade zlib to version 1.2.3 or greater.
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001349See http://www.gzip.org/zlib/ for details.])
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001350 else
1351 AC_MSG_WARN([zlib version may have security problems])
1352 fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10001353 ],
1354 [ AC_MSG_WARN([cross compiling: not checking zlib version]) ]
Darren Tucker2dcd2392004-01-23 17:13:33 +11001355)
Damien Miller6f9c3372000-10-25 10:06:04 +11001356
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001357dnl UnixWare 2.x
Tim Rice648f8762011-01-26 12:38:57 -08001358AC_CHECK_FUNC([strcasecmp],
1359 [], [ AC_CHECK_LIB([resolv], [strcasecmp], [LIBS="$LIBS -lresolv"]) ]
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001360)
Tim Rice648f8762011-01-26 12:38:57 -08001361AC_CHECK_FUNCS([utimes],
1362 [], [ AC_CHECK_LIB([c89], [utimes], [AC_DEFINE([HAVE_UTIMES])
Tim Ricecbb90662002-07-08 19:17:10 -07001363 LIBS="$LIBS -lc89"]) ]
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001364)
Damien Millerab18c411999-11-11 10:40:23 +11001365
Tim Ricee589a292001-11-03 11:09:32 -08001366dnl Checks for libutil functions
Damien Millerb87f6b72013-02-23 09:12:23 +11001367AC_CHECK_HEADERS([bsd/libutil.h libutil.h])
Damien Miller398c0ff2012-04-19 21:46:35 +10001368AC_SEARCH_LIBS([fmt_scaled], [util bsd])
Darren Tuckere194ba42013-05-16 20:47:31 +10001369AC_SEARCH_LIBS([scan_scaled], [util bsd])
Damien Miller398c0ff2012-04-19 21:46:35 +10001370AC_SEARCH_LIBS([login], [util bsd])
1371AC_SEARCH_LIBS([logout], [util bsd])
1372AC_SEARCH_LIBS([logwtmp], [util bsd])
1373AC_SEARCH_LIBS([openpty], [util bsd])
1374AC_SEARCH_LIBS([updwtmp], [util bsd])
Darren Tuckere194ba42013-05-16 20:47:31 +10001375AC_CHECK_FUNCS([fmt_scaled scan_scaled login logout openpty updwtmp logwtmp])
Tim Ricee589a292001-11-03 11:09:32 -08001376
Darren Tucker2fee9092016-02-17 09:48:15 +11001377# On some platforms, inet_ntop and gethostbyname may be found in libresolv
1378# or libnsl.
Damien Millerab039492014-01-28 15:07:10 +11001379AC_SEARCH_LIBS([inet_ntop], [resolv nsl])
Darren Tucker2fee9092016-02-17 09:48:15 +11001380AC_SEARCH_LIBS([gethostbyname], [resolv nsl])
Damien Millerab039492014-01-28 15:07:10 +11001381
Darren Tucker74c1c362017-09-27 07:44:41 +10001382# "Particular Function Checks"
1383# see https://www.gnu.org/software/autoconf/manual/autoconf-2.69/html_node/Particular-Functions.html
Ben Lindstrom8697e082001-02-24 21:41:10 +00001384AC_FUNC_STRFTIME
Darren Tucker74c1c362017-09-27 07:44:41 +10001385AC_FUNC_MALLOC
1386AC_FUNC_REALLOC
1387# autoconf doesn't have AC_FUNC_CALLOC so fake it if malloc returns NULL;
Darren Tuckere9dede02018-02-25 10:20:31 +11001388AC_MSG_CHECKING([if calloc(0, N) returns non-null])
1389AC_RUN_IFELSE(
1390 [AC_LANG_PROGRAM(
1391 [[ #include <stdlib.h> ]],
1392 [[ void *p = calloc(0, 1); exit(p == NULL); ]]
1393 )],
1394 [ func_calloc_0_nonnull=yes ],
1395 [ func_calloc_0_nonnull=no ],
1396 [ AC_MSG_WARN([cross compiling: assuming same as malloc])
1397 func_calloc_0_nonnull="$ac_cv_func_malloc_0_nonnull"]
1398)
1399AC_MSG_RESULT([$func_calloc_0_nonnull])
1400
Darren Tuckerd97874c2018-04-13 13:43:55 +10001401if test "x$func_calloc_0_nonnull" = "xyes"; then
Darren Tuckere9dede02018-02-25 10:20:31 +11001402 AC_DEFINE(HAVE_CALLOC, 1, [calloc(0, x) returns non-null])
1403else
1404 AC_DEFINE(HAVE_CALLOC, 0, [calloc(0, x) returns NULL])
Darren Tucker74c1c362017-09-27 07:44:41 +10001405 AC_DEFINE(calloc, rpl_calloc,
1406 [Define to rpl_calloc if the replacement function should be used.])
1407fi
Ben Lindstrom8697e082001-02-24 21:41:10 +00001408
Damien Miller3c027682001-03-14 11:39:45 +11001409# Check for ALTDIRFUNC glob() extension
Tim Rice648f8762011-01-26 12:38:57 -08001410AC_MSG_CHECKING([for GLOB_ALTDIRFUNC support])
1411AC_EGREP_CPP([FOUNDIT],
Damien Miller3c027682001-03-14 11:39:45 +11001412 [
1413 #include <glob.h>
1414 #ifdef GLOB_ALTDIRFUNC
1415 FOUNDIT
1416 #endif
Damien Millera8e06ce2003-11-21 23:48:55 +11001417 ],
Damien Miller3c027682001-03-14 11:39:45 +11001418 [
Tim Rice648f8762011-01-26 12:38:57 -08001419 AC_DEFINE([GLOB_HAS_ALTDIRFUNC], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001420 [Define if your system glob() function has
1421 the GLOB_ALTDIRFUNC extension])
Tim Rice648f8762011-01-26 12:38:57 -08001422 AC_MSG_RESULT([yes])
Damien Miller3c027682001-03-14 11:39:45 +11001423 ],
1424 [
Tim Rice648f8762011-01-26 12:38:57 -08001425 AC_MSG_RESULT([no])
Damien Miller3c027682001-03-14 11:39:45 +11001426 ]
1427)
Damien Millerab18c411999-11-11 10:40:23 +11001428
Ben Lindstrom45b14db2001-03-17 01:15:38 +00001429# Check for g.gl_matchc glob() extension
Tim Rice648f8762011-01-26 12:38:57 -08001430AC_MSG_CHECKING([for gl_matchc field in glob_t])
1431AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <glob.h> ]],
1432 [[ glob_t g; g.gl_matchc = 1; ]])],
Damien Millera8e06ce2003-11-21 23:48:55 +11001433 [
Tim Rice648f8762011-01-26 12:38:57 -08001434 AC_DEFINE([GLOB_HAS_GL_MATCHC], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001435 [Define if your system glob() function has
1436 gl_matchc options in glob_t])
Tim Rice648f8762011-01-26 12:38:57 -08001437 AC_MSG_RESULT([yes])
1438 ], [
1439 AC_MSG_RESULT([no])
1440])
Ben Lindstrom45b14db2001-03-17 01:15:38 +00001441
Damien Millera6e121a2010-10-07 21:39:17 +11001442# Check for g.gl_statv glob() extension
Tim Rice648f8762011-01-26 12:38:57 -08001443AC_MSG_CHECKING([for gl_statv and GLOB_KEEPSTAT extensions for glob])
1444AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <glob.h> ]], [[
Damien Millera6e121a2010-10-07 21:39:17 +11001445#ifndef GLOB_KEEPSTAT
1446#error "glob does not support GLOB_KEEPSTAT extension"
1447#endif
1448glob_t g;
1449g.gl_statv = NULL;
Tim Rice648f8762011-01-26 12:38:57 -08001450]])],
Damien Millera6e121a2010-10-07 21:39:17 +11001451 [
Tim Rice648f8762011-01-26 12:38:57 -08001452 AC_DEFINE([GLOB_HAS_GL_STATV], [1],
Damien Millera6e121a2010-10-07 21:39:17 +11001453 [Define if your system glob() function has
1454 gl_statv options in glob_t])
Tim Rice648f8762011-01-26 12:38:57 -08001455 AC_MSG_RESULT([yes])
1456 ], [
1457 AC_MSG_RESULT([no])
Damien Miller72ef7c12015-01-15 02:21:31 +11001458
Tim Rice648f8762011-01-26 12:38:57 -08001459])
Damien Millera6e121a2010-10-07 21:39:17 +11001460
Tim Rice648f8762011-01-26 12:38:57 -08001461AC_CHECK_DECLS([GLOB_NOMATCH], , , [#include <glob.h>])
Darren Tucker096faec2006-09-01 20:29:10 +10001462
Darren Tucker7df91b02016-07-14 12:25:24 +10001463AC_CHECK_DECL([VIS_ALL], ,
1464 AC_DEFINE(BROKEN_STRNVIS, 1, [missing VIS_ALL]), [#include <vis.h>])
1465
Damien Miller18bb4732001-03-28 14:35:30 +10001466AC_MSG_CHECKING([whether struct dirent allocates space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001467AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08001468 [AC_LANG_PROGRAM([[
Damien Miller18bb4732001-03-28 14:35:30 +10001469#include <sys/types.h>
Tim Rice648f8762011-01-26 12:38:57 -08001470#include <dirent.h>]],
1471 [[
1472 struct dirent d;
1473 exit(sizeof(d.d_name)<=sizeof(char));
Darren Tucker623d92f2004-09-12 22:36:15 +10001474 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08001475 [AC_MSG_RESULT([yes])],
Damien Miller18bb4732001-03-28 14:35:30 +10001476 [
Tim Rice648f8762011-01-26 12:38:57 -08001477 AC_MSG_RESULT([no])
1478 AC_DEFINE([BROKEN_ONE_BYTE_DIRENT_D_NAME], [1],
Darren Tucker79d09fa2005-11-24 22:34:54 +11001479 [Define if your struct dirent expects you to
Tim Rice7df8d392005-09-19 09:33:39 -07001480 allocate extra space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001481 ],
Tim Riceeae17cc2005-03-17 16:52:20 -08001482 [
Darren Tuckera0c2b392004-09-11 23:26:37 +10001483 AC_MSG_WARN([cross compiling: assuming BROKEN_ONE_BYTE_DIRENT_D_NAME])
Tim Rice648f8762011-01-26 12:38:57 -08001484 AC_DEFINE([BROKEN_ONE_BYTE_DIRENT_D_NAME])
Damien Miller18bb4732001-03-28 14:35:30 +10001485 ]
1486)
1487
Damien Miller36f49652004-08-15 18:40:59 +10001488AC_MSG_CHECKING([for /proc/pid/fd directory])
1489if test -d "/proc/$$/fd" ; then
Tim Rice648f8762011-01-26 12:38:57 -08001490 AC_DEFINE([HAVE_PROC_PID], [1], [Define if you have /proc/$pid/fd])
1491 AC_MSG_RESULT([yes])
Damien Miller36f49652004-08-15 18:40:59 +10001492else
Tim Rice648f8762011-01-26 12:38:57 -08001493 AC_MSG_RESULT([no])
Damien Miller36f49652004-08-15 18:40:59 +10001494fi
1495
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001496# Check whether user wants to use ldns
1497LDNS_MSG="no"
1498AC_ARG_WITH(ldns,
1499 [ --with-ldns[[=PATH]] Use ldns for DNSSEC support (optionally in PATH)],
Damien Miller523db852017-02-03 16:01:22 +11001500 [
1501 ldns=""
1502 if test "x$withval" = "xyes" ; then
1503 AC_PATH_TOOL([LDNSCONFIG], [ldns-config], [no])
Darren Tuckerf001de82017-12-11 13:42:51 +11001504 if test "x$LDNSCONFIG" = "xno"; then
Damien Miller523db852017-02-03 16:01:22 +11001505 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1506 LDFLAGS="$LDFLAGS -L${withval}/lib"
1507 LIBS="-lldns $LIBS"
1508 ldns=yes
1509 else
1510 LIBS="$LIBS `$LDNSCONFIG --libs`"
1511 CPPFLAGS="$CPPFLAGS `$LDNSCONFIG --cflags`"
Darren Tucker7af27bf2017-03-24 09:44:56 +11001512 ldns=yes
Damien Miller523db852017-02-03 16:01:22 +11001513 fi
1514 elif test "x$withval" != "xno" ; then
1515 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1516 LDFLAGS="$LDFLAGS -L${withval}/lib"
1517 LIBS="-lldns $LIBS"
1518 ldns=yes
1519 fi
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001520
Damien Miller523db852017-02-03 16:01:22 +11001521 # Verify that it works.
1522 if test "x$ldns" = "xyes" ; then
1523 AC_DEFINE(HAVE_LDNS, 1, [Define if you want ldns support])
1524 LDNS_MSG="yes"
1525 AC_MSG_CHECKING([for ldns support])
1526 AC_LINK_IFELSE(
1527 [AC_LANG_SOURCE([[
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001528#include <stdio.h>
1529#include <stdlib.h>
1530#include <stdint.h>
1531#include <ldns/ldns.h>
1532int main() { ldns_status status = ldns_verify_trusted(NULL, NULL, NULL, NULL); status=LDNS_STATUS_OK; exit(0); }
Damien Miller523db852017-02-03 16:01:22 +11001533 ]])
1534 ],
1535 [AC_MSG_RESULT(yes)],
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001536 [
1537 AC_MSG_RESULT(no)
1538 AC_MSG_ERROR([** Incomplete or missing ldns libraries.])
1539 ])
Damien Miller523db852017-02-03 16:01:22 +11001540 fi
1541])
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001542
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001543# Check whether user wants libedit support
1544LIBEDIT_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08001545AC_ARG_WITH([libedit],
Darren Tucker1b6f2292005-02-11 16:11:49 +11001546 [ --with-libedit[[=PATH]] Enable libedit support for sftp],
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001547 [ if test "x$withval" != "xno" ; then
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001548 if test "x$withval" = "xyes" ; then
Darren Tucker59353892012-05-19 15:24:37 +10001549 AC_PATH_TOOL([PKGCONFIG], [pkg-config], [no])
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001550 if test "x$PKGCONFIG" != "xno"; then
Tim Rice648f8762011-01-26 12:38:57 -08001551 AC_MSG_CHECKING([if $PKGCONFIG knows about libedit])
Tim Ricee1d93702016-05-31 11:13:22 -07001552 if "$PKGCONFIG" libedit; then
Tim Rice648f8762011-01-26 12:38:57 -08001553 AC_MSG_RESULT([yes])
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001554 use_pkgconfig_for_libedit=yes
1555 else
Tim Rice648f8762011-01-26 12:38:57 -08001556 AC_MSG_RESULT([no])
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001557 fi
1558 fi
1559 else
Darren Tuckerc373a562005-09-22 20:15:08 +10001560 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1561 if test -n "${need_dash_r}"; then
1562 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1563 else
1564 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1565 fi
Darren Tucker1df61452005-03-21 09:58:07 +11001566 fi
Damien Miller1f789802010-10-11 22:35:22 +11001567 if test "x$use_pkgconfig_for_libedit" = "xyes"; then
Darren Tucker8369c8e2013-12-05 11:00:16 +11001568 LIBEDIT=`$PKGCONFIG --libs libedit`
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001569 CPPFLAGS="$CPPFLAGS `$PKGCONFIG --cflags libedit`"
1570 else
1571 LIBEDIT="-ledit -lcurses"
1572 fi
1573 OTHERLIBS=`echo $LIBEDIT | sed 's/-ledit//'`
Tim Rice648f8762011-01-26 12:38:57 -08001574 AC_CHECK_LIB([edit], [el_init],
1575 [ AC_DEFINE([USE_LIBEDIT], [1], [Use libedit for sftp])
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001576 LIBEDIT_MSG="yes"
Tim Rice648f8762011-01-26 12:38:57 -08001577 AC_SUBST([LIBEDIT])
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001578 ],
Tim Rice648f8762011-01-26 12:38:57 -08001579 [ AC_MSG_ERROR([libedit not found]) ],
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001580 [ $OTHERLIBS ]
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001581 )
Tim Rice648f8762011-01-26 12:38:57 -08001582 AC_MSG_CHECKING([if libedit version is compatible])
Tim Ricec1819c82005-08-15 17:48:40 -07001583 AC_COMPILE_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08001584 [AC_LANG_PROGRAM([[ #include <histedit.h> ]],
1585 [[
Darren Tuckerc7572b22005-08-10 20:34:15 +10001586 int i = H_SETSIZE;
1587 el_init("", NULL, NULL, NULL);
1588 exit(0);
Tim Ricec1819c82005-08-15 17:48:40 -07001589 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08001590 [ AC_MSG_RESULT([yes]) ],
1591 [ AC_MSG_RESULT([no])
1592 AC_MSG_ERROR([libedit version is not compatible]) ]
Darren Tuckerc7572b22005-08-10 20:34:15 +10001593 )
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001594 fi ]
1595)
1596
Darren Tuckerd9f88912005-02-20 21:01:48 +11001597AUDIT_MODULE=none
Tim Rice648f8762011-01-26 12:38:57 -08001598AC_ARG_WITH([audit],
Darren Tuckerea52a822011-01-17 21:15:27 +11001599 [ --with-audit=module Enable audit support (modules=debug,bsm,linux)],
Darren Tuckerd9f88912005-02-20 21:01:48 +11001600 [
Tim Rice648f8762011-01-26 12:38:57 -08001601 AC_MSG_CHECKING([for supported audit module])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001602 case "$withval" in
1603 bsm)
Tim Rice648f8762011-01-26 12:38:57 -08001604 AC_MSG_RESULT([bsm])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001605 AUDIT_MODULE=bsm
1606 dnl Checks for headers, libs and functions
Tim Rice648f8762011-01-26 12:38:57 -08001607 AC_CHECK_HEADERS([bsm/audit.h], [],
1608 [AC_MSG_ERROR([BSM enabled and bsm/audit.h not found])],
Darren Tucker6d0d6fb2006-09-09 01:05:21 +10001609 [
1610#ifdef HAVE_TIME_H
1611# include <time.h>
1612#endif
1613 ]
1614)
Tim Rice648f8762011-01-26 12:38:57 -08001615 AC_CHECK_LIB([bsm], [getaudit], [],
1616 [AC_MSG_ERROR([BSM enabled and required library not found])])
1617 AC_CHECK_FUNCS([getaudit], [],
1618 [AC_MSG_ERROR([BSM enabled and required function not found])])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001619 # These are optional
Tim Rice648f8762011-01-26 12:38:57 -08001620 AC_CHECK_FUNCS([getaudit_addr aug_get_machine])
1621 AC_DEFINE([USE_BSM_AUDIT], [1], [Use BSM audit module])
Darren Tucker1fcec9d2013-12-19 11:00:12 +11001622 if test "$sol2ver" -ge 11; then
Tim Ricee1d93702016-05-31 11:13:22 -07001623 SSHDLIBS="$SSHDLIBS -lscf"
1624 AC_DEFINE([BROKEN_BSM_API], [1],
1625 [The system has incomplete BSM API])
Darren Tucker93a2d412012-02-24 10:40:41 +11001626 fi
Darren Tuckerd9f88912005-02-20 21:01:48 +11001627 ;;
Darren Tuckerea52a822011-01-17 21:15:27 +11001628 linux)
Tim Rice648f8762011-01-26 12:38:57 -08001629 AC_MSG_RESULT([linux])
Darren Tuckerea52a822011-01-17 21:15:27 +11001630 AUDIT_MODULE=linux
1631 dnl Checks for headers, libs and functions
Tim Rice648f8762011-01-26 12:38:57 -08001632 AC_CHECK_HEADERS([libaudit.h])
Darren Tuckerea52a822011-01-17 21:15:27 +11001633 SSHDLIBS="$SSHDLIBS -laudit"
Tim Rice648f8762011-01-26 12:38:57 -08001634 AC_DEFINE([USE_LINUX_AUDIT], [1], [Use Linux audit module])
Darren Tuckerea52a822011-01-17 21:15:27 +11001635 ;;
Darren Tuckerd9f88912005-02-20 21:01:48 +11001636 debug)
1637 AUDIT_MODULE=debug
Tim Rice648f8762011-01-26 12:38:57 -08001638 AC_MSG_RESULT([debug])
1639 AC_DEFINE([SSH_AUDIT_EVENTS], [1], [Use audit debugging module])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001640 ;;
Tim Rice8bc6b902005-08-09 10:09:53 -07001641 no)
Tim Rice648f8762011-01-26 12:38:57 -08001642 AC_MSG_RESULT([no])
Tim Rice8bc6b902005-08-09 10:09:53 -07001643 ;;
Darren Tuckerd9f88912005-02-20 21:01:48 +11001644 *)
1645 AC_MSG_ERROR([Unknown audit module $withval])
1646 ;;
1647 esac ]
1648)
1649
Darren Tucker096118d2014-01-21 12:48:51 +11001650AC_ARG_WITH([pie],
Damien Miller76c04802015-01-13 19:38:18 +11001651 [ --with-pie Build Position Independent Executables if possible], [
Darren Tucker096118d2014-01-21 12:48:51 +11001652 if test "x$withval" = "xno"; then
Damien Miller852472a2014-01-22 16:31:18 +11001653 use_pie=no
Darren Tucker096118d2014-01-21 12:48:51 +11001654 fi
1655 if test "x$withval" = "xyes"; then
Damien Miller852472a2014-01-22 16:31:18 +11001656 use_pie=yes
Darren Tucker096118d2014-01-21 12:48:51 +11001657 fi
1658 ]
1659)
Damien Miller852472a2014-01-22 16:31:18 +11001660if test "x$use_pie" = "x"; then
1661 use_pie=no
1662fi
1663if test "x$use_toolchain_hardening" != "x1" && test "x$use_pie" = "xauto"; then
1664 # Turn off automatic PIE when toolchain hardening is off.
1665 use_pie=no
1666fi
Damien Millerc161fc92014-01-29 21:01:33 +11001667if test "x$use_pie" = "xauto"; then
Damien Miller852472a2014-01-22 16:31:18 +11001668 # Automatic PIE requires gcc >= 4.x
1669 AC_MSG_CHECKING([for gcc >= 4.x])
1670 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
1671#if !defined(__GNUC__) || __GNUC__ < 4
1672#error gcc is too old
1673#endif
1674]])],
1675 [ AC_MSG_RESULT([yes]) ],
1676 [ AC_MSG_RESULT([no])
1677 use_pie=no ]
1678)
1679fi
1680if test "x$use_pie" != "xno"; then
Damien Miller5c2ff5e2014-01-22 21:30:12 +11001681 SAVED_CFLAGS="$CFLAGS"
1682 SAVED_LDFLAGS="$LDFLAGS"
Darren Tucker096118d2014-01-21 12:48:51 +11001683 OSSH_CHECK_CFLAG_COMPILE([-fPIE])
1684 OSSH_CHECK_LDFLAG_LINK([-pie])
Damien Miller5c2ff5e2014-01-22 21:30:12 +11001685 # We use both -fPIE and -pie or neither.
1686 AC_MSG_CHECKING([whether both -fPIE and -pie are supported])
1687 if echo "x $CFLAGS" | grep ' -fPIE' >/dev/null 2>&1 && \
1688 echo "x $LDFLAGS" | grep ' -pie' >/dev/null 2>&1 ; then
1689 AC_MSG_RESULT([yes])
1690 else
1691 AC_MSG_RESULT([no])
1692 CFLAGS="$SAVED_CFLAGS"
1693 LDFLAGS="$SAVED_LDFLAGS"
1694 fi
Darren Tucker096118d2014-01-21 12:48:51 +11001695fi
1696
Damien Millerfe1f1432003-02-24 15:45:42 +11001697dnl Checks for library functions. Please keep in alphabetical order
Tim Rice648f8762011-01-26 12:38:57 -08001698AC_CHECK_FUNCS([ \
Damien Miller1ff130d2013-12-07 11:51:51 +11001699 Blowfish_initstate \
1700 Blowfish_expandstate \
1701 Blowfish_expand0state \
1702 Blowfish_stream2word \
Damien Miller57f39152005-11-24 19:58:19 +11001703 asprintf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001704 b64_ntop \
1705 __b64_ntop \
1706 b64_pton \
1707 __b64_pton \
1708 bcopy \
Damien Millera9134422013-12-07 11:35:36 +11001709 bcrypt_pbkdf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001710 bindresvport_sa \
Damien Miller1ff130d2013-12-07 11:51:51 +11001711 blf_enc \
Darren Tuckera9004422018-02-24 20:25:22 +11001712 bzero \
Damien Millerc96d8532014-01-25 13:12:28 +11001713 cap_rights_limit \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001714 clock \
1715 closefrom \
1716 dirfd \
Darren Tuckerefdf5342013-05-30 08:29:08 +10001717 endgrent \
Darren Tucker6310ef22016-07-13 14:42:35 +10001718 err \
1719 errx \
Damien Miller1d2c4562014-02-04 11:18:20 +11001720 explicit_bzero \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001721 fchmod \
Darren Tuckera6258e52019-01-18 11:09:01 +11001722 fchmodat \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001723 fchown \
Darren Tuckera6258e52019-01-18 11:09:01 +11001724 fchownat \
Darren Tuckercd3ab572018-02-26 14:37:06 +11001725 flock \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001726 freeaddrinfo \
Damien Millerb7956912017-09-19 12:29:23 +10001727 freezero \
Darren Tuckera5cf1e22014-01-17 18:10:58 +11001728 fstatfs \
Darren Tucker598eaa62008-06-09 03:32:29 +10001729 fstatvfs \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001730 futimes \
1731 getaddrinfo \
1732 getcwd \
1733 getgrouplist \
Darren Tucker6301e6c2018-07-02 21:16:58 +10001734 getline \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001735 getnameinfo \
1736 getopt \
Damien Miller151c6e42017-06-01 15:25:13 +10001737 getpagesize \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001738 getpeereid \
Darren Tucker164aa302007-03-21 21:39:57 +11001739 getpeerucred \
Darren Tucker3c4a24c2013-02-15 11:41:35 +11001740 getpgid \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001741 _getpty \
1742 getrlimit \
Damien Millerafa6e792018-04-13 13:31:42 +10001743 getrandom \
Darren Tuckerb39593a2018-02-25 13:25:15 +11001744 getsid \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001745 getttyent \
1746 glob \
Darren Tucker909a3902010-01-15 12:38:30 +11001747 group_from_gid \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001748 inet_aton \
1749 inet_ntoa \
1750 inet_ntop \
1751 innetgr \
Darren Tuckerd38f05d2017-03-20 13:38:27 +11001752 llabs \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001753 login_getcapbool \
1754 md5_crypt \
1755 memmove \
Damien Miller3d673d12014-08-27 06:32:01 +10001756 memset_s \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001757 mkdtemp \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001758 ngetaddrinfo \
1759 nsleep \
1760 ogetaddrinfo \
1761 openlog_r \
Darren Tucker3ddd15e2015-11-30 07:23:53 +11001762 pledge \
Darren Tuckerfebf0f52007-06-25 22:15:12 +10001763 poll \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001764 prctl \
1765 pstat \
Darren Tucker6c8c9a62018-02-24 20:46:37 +11001766 raise \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001767 readpassphrase \
Darren Tucker642652d2014-12-10 01:32:23 +11001768 reallocarray \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001769 recvmsg \
Damien Miller151c6e42017-06-01 15:25:13 +10001770 recallocarray \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001771 rresvport_af \
1772 sendmsg \
1773 setdtablesize \
1774 setegid \
1775 setenv \
1776 seteuid \
Darren Tucker909a3902010-01-15 12:38:30 +11001777 setgroupent \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001778 setgroups \
Darren Tucker34f702a2012-07-04 08:50:09 +10001779 setlinebuf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001780 setlogin \
Darren Tucker909a3902010-01-15 12:38:30 +11001781 setpassent\
Darren Tucker0c9653f2005-05-28 15:58:14 +10001782 setpcred \
1783 setproctitle \
1784 setregid \
1785 setreuid \
1786 setrlimit \
1787 setsid \
1788 setvbuf \
1789 sigaction \
1790 sigvec \
1791 snprintf \
1792 socketpair \
Darren Tucker5b2e2ba2008-06-08 09:25:28 +10001793 statfs \
1794 statvfs \
Darren Tuckerafec0772016-12-13 10:23:03 +11001795 strcasestr \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001796 strdup \
1797 strerror \
1798 strlcat \
1799 strlcpy \
1800 strmode \
Darren Tucker33561e62018-03-03 14:56:09 +11001801 strndup \
Darren Tuckerb54f50e2011-09-29 23:17:18 +10001802 strnlen \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001803 strnvis \
Darren Tuckeraa74f672010-08-16 13:15:23 +10001804 strptime \
Darren Tucker44fc3342017-09-25 09:48:10 +10001805 strsignal \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001806 strtonum \
Darren Tucker81eb5d52005-06-01 21:39:33 +10001807 strtoll \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001808 strtoul \
Darren Tucker8e6fb782013-02-15 12:13:01 +11001809 strtoull \
Damien Miller34a17692007-06-11 14:15:42 +10001810 swap32 \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001811 sysconf \
1812 tcgetpgrp \
Damien Milleraa180632010-10-07 21:25:27 +11001813 timingsafe_bcmp \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001814 truncate \
1815 unsetenv \
1816 updwtmpx \
Darren Tucker091093d2019-01-18 12:11:42 +13001817 utimensat \
Darren Tucker909a3902010-01-15 12:38:30 +11001818 user_from_uid \
Damien Millerf4db77d2013-03-15 10:34:25 +11001819 usleep \
Damien Miller57f39152005-11-24 19:58:19 +11001820 vasprintf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001821 vsnprintf \
1822 waitpid \
Darren Tucker6310ef22016-07-13 14:42:35 +10001823 warn \
Tim Rice648f8762011-01-26 12:38:57 -08001824])
Tim Rice13aae5e2001-10-21 17:53:58 -07001825
Darren Tuckera9004422018-02-24 20:25:22 +11001826AC_CHECK_DECLS([bzero])
1827
Darren Tuckerc61d5ec2017-02-03 14:10:34 +11001828dnl Wide character support.
Darren Tuckera2333582016-07-14 10:59:09 +10001829AC_CHECK_FUNCS([mblen mbtowc nl_langinfo wcwidth])
Darren Tuckera2333582016-07-14 10:59:09 +10001830
Darren Tucker10e290e2016-12-13 13:51:32 +11001831TEST_SSH_UTF8=${TEST_SSH_UTF8:=yes}
Darren Tucker47b8c992016-12-08 15:48:34 +11001832AC_MSG_CHECKING([for utf8 locale support])
1833AC_RUN_IFELSE(
1834 [AC_LANG_PROGRAM([[
1835#include <locale.h>
Darren Tuckerc3599502016-12-09 12:52:02 +11001836#include <stdlib.h>
Darren Tucker47b8c992016-12-08 15:48:34 +11001837 ]], [[
1838 char *loc = setlocale(LC_CTYPE, "en_US.UTF-8");
1839 if (loc != NULL)
1840 exit(0);
1841 exit(1);
1842 ]])],
1843 AC_MSG_RESULT(yes),
1844 [AC_MSG_RESULT(no)
1845 TEST_SSH_UTF8=no],
1846 AC_MSG_WARN([cross compiling: assuming yes])
1847)
1848
Tim Ricec7a8af02010-11-08 14:26:23 -08001849AC_LINK_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08001850 [AC_LANG_PROGRAM(
1851 [[ #include <ctype.h> ]],
1852 [[ return (isblank('a')); ]])],
1853 [AC_DEFINE([HAVE_ISBLANK], [1], [Define if you have isblank(3C).])
Tim Ricec7a8af02010-11-08 14:26:23 -08001854])
1855
Damien Miller5fbe93f2016-07-15 13:54:31 +10001856disable_pkcs11=
1857AC_ARG_ENABLE([pkcs11],
1858 [ --disable-pkcs11 disable PKCS#11 support code [no]],
1859 [
1860 if test "x$enableval" = "xno" ; then
1861 disable_pkcs11=1
1862 fi
1863 ]
1864)
1865
Damien Miller72ef7c12015-01-15 02:21:31 +11001866# PKCS11 depends on OpenSSL.
Damien Miller5fbe93f2016-07-15 13:54:31 +10001867if test "x$openssl" = "xyes" && test "x$disable_pkcs11" = "x"; then
Damien Miller72ef7c12015-01-15 02:21:31 +11001868 # PKCS#11 support requires dlopen() and co
1869 AC_SEARCH_LIBS([dlopen], [dl],
Darren Tucker146c3bd2018-02-26 12:51:29 +11001870 AC_CHECK_DECL([RTLD_NOW],
1871 AC_DEFINE([ENABLE_PKCS11], [], [Enable for PKCS#11 support]),
1872 [], [#include <dlfcn.h>]
1873 )
Damien Miller72ef7c12015-01-15 02:21:31 +11001874 )
1875fi
Damien Millerb3c9f782010-02-12 10:11:34 +11001876
Darren Tuckerd5e082f2003-09-22 12:08:23 +10001877# IRIX has a const char return value for gai_strerror()
Tim Rice648f8762011-01-26 12:38:57 -08001878AC_CHECK_FUNCS([gai_strerror], [
1879 AC_DEFINE([HAVE_GAI_STRERROR])
1880 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckerd5e082f2003-09-22 12:08:23 +10001881#include <sys/types.h>
1882#include <sys/socket.h>
1883#include <netdb.h>
1884
Tim Rice648f8762011-01-26 12:38:57 -08001885const char *gai_strerror(int);
1886 ]], [[
1887 char *str;
1888 str = gai_strerror(0);
1889 ]])], [
1890 AC_DEFINE([HAVE_CONST_GAI_STRERROR_PROTO], [1],
1891 [Define if gai_strerror() returns const char *])], [])])
Darren Tuckerd5e082f2003-09-22 12:08:23 +10001892
Tim Rice648f8762011-01-26 12:38:57 -08001893AC_SEARCH_LIBS([nanosleep], [rt posix4], [AC_DEFINE([HAVE_NANOSLEEP], [1],
1894 [Some systems put nanosleep outside of libc])])
Damien Millercd6853c2003-01-28 11:33:42 +11001895
Darren Tuckera7108912013-06-02 08:18:31 +10001896AC_SEARCH_LIBS([clock_gettime], [rt],
1897 [AC_DEFINE([HAVE_CLOCK_GETTIME], [1], [Have clock_gettime])])
1898
Darren Tuckerf1159b52003-07-07 19:44:01 +10001899dnl Make sure prototypes are defined for these before using them.
Tim Rice648f8762011-01-26 12:38:57 -08001900AC_CHECK_DECL([strsep],
1901 [AC_CHECK_FUNCS([strsep])],
Darren Tucker390b6d52005-05-28 16:54:36 +10001902 [],
1903 [
1904#ifdef HAVE_STRING_H
1905# include <string.h>
1906#endif
1907 ])
Ben Lindstrom3e006472002-10-16 00:24:03 +00001908
Darren Tuckerb2427c82003-09-10 15:22:44 +10001909dnl tcsendbreak might be a macro
Tim Rice648f8762011-01-26 12:38:57 -08001910AC_CHECK_DECL([tcsendbreak],
1911 [AC_DEFINE([HAVE_TCSENDBREAK])],
1912 [AC_CHECK_FUNCS([tcsendbreak])],
Darren Tuckerb2427c82003-09-10 15:22:44 +10001913 [#include <termios.h>]
1914)
1915
Tim Rice648f8762011-01-26 12:38:57 -08001916AC_CHECK_DECLS([h_errno], , ,[#include <netdb.h>])
Darren Tucker5bb14002004-04-23 18:53:10 +10001917
Tim Rice648f8762011-01-26 12:38:57 -08001918AC_CHECK_DECLS([SHUT_RD], , ,
Darren Tucker128a0892006-07-12 19:02:56 +10001919 [
1920#include <sys/types.h>
1921#include <sys/socket.h>
1922 ])
Darren Tucker248469b2006-07-12 14:14:31 +10001923
Tim Rice648f8762011-01-26 12:38:57 -08001924AC_CHECK_DECLS([O_NONBLOCK], , ,
Darren Tucker248469b2006-07-12 14:14:31 +10001925 [
1926#include <sys/types.h>
1927#ifdef HAVE_SYS_STAT_H
1928# include <sys/stat.h>
1929#endif
1930#ifdef HAVE_FCNTL_H
1931# include <fcntl.h>
1932#endif
1933 ])
1934
Darren Tucker2eb40412018-02-24 21:06:48 +11001935AC_CHECK_DECLS([readv, writev], , , [
Darren Tuckered0b5922006-09-03 22:44:49 +10001936#include <sys/types.h>
1937#include <sys/uio.h>
1938#include <unistd.h>
1939 ])
1940
Tim Rice648f8762011-01-26 12:38:57 -08001941AC_CHECK_DECLS([MAXSYMLINKS], , , [
Darren Tucker6d862a52007-04-29 14:39:02 +10001942#include <sys/param.h>
1943 ])
1944
Tim Rice648f8762011-01-26 12:38:57 -08001945AC_CHECK_DECLS([offsetof], , , [
Darren Tuckerdca0edf2007-04-29 15:06:44 +10001946#include <stddef.h>
1947 ])
1948
Darren Tuckerc7aad002013-06-02 07:18:47 +10001949# extra bits for select(2)
1950AC_CHECK_DECLS([howmany, NFDBITS], [], [], [[
1951#include <sys/param.h>
1952#include <sys/types.h>
1953#ifdef HAVE_SYS_SYSMACROS_H
1954#include <sys/sysmacros.h>
1955#endif
1956#ifdef HAVE_SYS_SELECT_H
1957#include <sys/select.h>
1958#endif
1959#ifdef HAVE_SYS_TIME_H
1960#include <sys/time.h>
1961#endif
1962#ifdef HAVE_UNISTD_H
1963#include <unistd.h>
1964#endif
1965 ]])
1966AC_CHECK_TYPES([fd_mask], [], [], [[
1967#include <sys/param.h>
1968#include <sys/types.h>
1969#ifdef HAVE_SYS_SELECT_H
1970#include <sys/select.h>
1971#endif
1972#ifdef HAVE_SYS_TIME_H
1973#include <sys/time.h>
1974#endif
1975#ifdef HAVE_UNISTD_H
1976#include <unistd.h>
1977#endif
1978 ]])
1979
Tim Rice648f8762011-01-26 12:38:57 -08001980AC_CHECK_FUNCS([setresuid], [
Darren Tucker2a6b0292003-12-31 14:59:17 +11001981 dnl Some platorms have setresuid that isn't implemented, test for this
Tim Rice648f8762011-01-26 12:38:57 -08001982 AC_MSG_CHECKING([if setresuid seems to work])
Darren Tucker623d92f2004-09-12 22:36:15 +10001983 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08001984 [AC_LANG_PROGRAM([[
Darren Tuckere937be32003-12-17 18:53:26 +11001985#include <stdlib.h>
1986#include <errno.h>
Tim Rice648f8762011-01-26 12:38:57 -08001987 ]], [[
1988 errno=0;
1989 setresuid(0,0,0);
1990 if (errno==ENOSYS)
1991 exit(1);
1992 else
1993 exit(0);
Darren Tucker623d92f2004-09-12 22:36:15 +10001994 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08001995 [AC_MSG_RESULT([yes])],
1996 [AC_DEFINE([BROKEN_SETRESUID], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001997 [Define if your setresuid() is broken])
Tim Rice648f8762011-01-26 12:38:57 -08001998 AC_MSG_RESULT([not implemented])],
Darren Tuckera0c2b392004-09-11 23:26:37 +10001999 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11002000 )
2001])
Darren Tuckere937be32003-12-17 18:53:26 +11002002
Tim Rice648f8762011-01-26 12:38:57 -08002003AC_CHECK_FUNCS([setresgid], [
Darren Tucker2a6b0292003-12-31 14:59:17 +11002004 dnl Some platorms have setresgid that isn't implemented, test for this
Tim Rice648f8762011-01-26 12:38:57 -08002005 AC_MSG_CHECKING([if setresgid seems to work])
Darren Tucker623d92f2004-09-12 22:36:15 +10002006 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002007 [AC_LANG_PROGRAM([[
Darren Tuckere937be32003-12-17 18:53:26 +11002008#include <stdlib.h>
2009#include <errno.h>
Tim Rice648f8762011-01-26 12:38:57 -08002010 ]], [[
2011 errno=0;
2012 setresgid(0,0,0);
2013 if (errno==ENOSYS)
2014 exit(1);
2015 else
2016 exit(0);
Darren Tucker623d92f2004-09-12 22:36:15 +10002017 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08002018 [AC_MSG_RESULT([yes])],
2019 [AC_DEFINE([BROKEN_SETRESGID], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07002020 [Define if your setresgid() is broken])
Tim Rice648f8762011-01-26 12:38:57 -08002021 AC_MSG_RESULT([not implemented])],
Darren Tuckera0c2b392004-09-11 23:26:37 +10002022 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11002023 )
2024])
Darren Tuckere937be32003-12-17 18:53:26 +11002025
Darren Tuckerd3e2aee2015-07-17 12:52:34 +10002026AC_CHECK_FUNCS([realpath], [
2027 dnl the sftp v3 spec says SSH_FXP_REALPATH will "canonicalize any given
2028 dnl path name", however some implementations of realpath (and some
2029 dnl versions of the POSIX spec) do not work on non-existent files,
2030 dnl so we use the OpenBSD implementation on those platforms.
2031 AC_MSG_CHECKING([if realpath works with non-existent files])
2032 AC_RUN_IFELSE(
2033 [AC_LANG_PROGRAM([[
2034#include <limits.h>
2035#include <stdlib.h>
2036#include <errno.h>
2037 ]], [[
2038 char buf[PATH_MAX];
2039 if (realpath("/opensshnonexistentfilename1234", buf) == NULL)
2040 if (errno == ENOENT)
2041 exit(1);
2042 exit(0);
2043 ]])],
2044 [AC_MSG_RESULT([yes])],
2045 [AC_DEFINE([BROKEN_REALPATH], [1],
2046 [realpath does not work with nonexistent files])
2047 AC_MSG_RESULT([no])],
2048 [AC_MSG_WARN([cross compiling: assuming working])]
2049 )
2050])
2051
Darren Tucker58fd4c52018-03-05 19:28:08 +11002052AC_MSG_CHECKING([for working fflush(NULL)])
2053AC_RUN_IFELSE(
2054 [AC_LANG_PROGRAM([[#include <stdio.h>]], [[fflush(NULL); exit(0);]])],
2055 AC_MSG_RESULT([yes]),
2056 [AC_MSG_RESULT([no])
2057 AC_DEFINE([FFLUSH_NULL_BUG], [1],
2058 [define if fflush(NULL) does not work])],
2059 AC_MSG_WARN([cross compiling: assuming working])
2060)
2061
Damien Millerad833b32000-08-23 10:46:23 +10002062dnl Checks for time functions
Tim Rice648f8762011-01-26 12:38:57 -08002063AC_CHECK_FUNCS([gettimeofday time])
Damien Millerad833b32000-08-23 10:46:23 +10002064dnl Checks for utmp functions
Tim Rice648f8762011-01-26 12:38:57 -08002065AC_CHECK_FUNCS([endutent getutent getutid getutline pututline setutent])
2066AC_CHECK_FUNCS([utmpname])
Damien Millerad833b32000-08-23 10:46:23 +10002067dnl Checks for utmpx functions
Tim Rice648f8762011-01-26 12:38:57 -08002068AC_CHECK_FUNCS([endutxent getutxent getutxid getutxline getutxuser pututxline])
2069AC_CHECK_FUNCS([setutxdb setutxent utmpxname])
Damien Miller20e231f2009-02-12 13:12:21 +11002070dnl Checks for lastlog functions
Tim Rice648f8762011-01-26 12:38:57 -08002071AC_CHECK_FUNCS([getlastlogxbyname])
Damien Millercedfecc1999-11-15 14:36:53 +11002072
Tim Rice648f8762011-01-26 12:38:57 -08002073AC_CHECK_FUNC([daemon],
2074 [AC_DEFINE([HAVE_DAEMON], [1], [Define if your libraries define daemon()])],
2075 [AC_CHECK_LIB([bsd], [daemon],
2076 [LIBS="$LIBS -lbsd"; AC_DEFINE([HAVE_DAEMON])])]
Damien Miller04f80141999-11-19 15:32:34 +11002077)
2078
Tim Rice648f8762011-01-26 12:38:57 -08002079AC_CHECK_FUNC([getpagesize],
2080 [AC_DEFINE([HAVE_GETPAGESIZE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07002081 [Define if your libraries define getpagesize()])],
Tim Rice648f8762011-01-26 12:38:57 -08002082 [AC_CHECK_LIB([ucb], [getpagesize],
2083 [LIBS="$LIBS -lucb"; AC_DEFINE([HAVE_GETPAGESIZE])])]
Damien Miller9fb07e42000-03-05 16:22:59 +11002084)
2085
Damien Millercb170cb2000-07-01 16:52:55 +10002086# Check for broken snprintf
2087if test "x$ac_cv_func_snprintf" = "xyes" ; then
2088 AC_MSG_CHECKING([whether snprintf correctly terminates long strings])
Darren Tuckera0c2b392004-09-11 23:26:37 +10002089 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002090 [AC_LANG_PROGRAM([[ #include <stdio.h> ]],
2091 [[
2092 char b[5];
2093 snprintf(b,5,"123456789");
Tim Ricee1d93702016-05-31 11:13:22 -07002094 exit(b[4]!='\0');
Darren Tucker623d92f2004-09-12 22:36:15 +10002095 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08002096 [AC_MSG_RESULT([yes])],
Damien Millercb170cb2000-07-01 16:52:55 +10002097 [
Tim Rice648f8762011-01-26 12:38:57 -08002098 AC_MSG_RESULT([no])
2099 AC_DEFINE([BROKEN_SNPRINTF], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07002100 [Define if your snprintf is busted])
Damien Millercb170cb2000-07-01 16:52:55 +10002101 AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
Darren Tuckera0c2b392004-09-11 23:26:37 +10002102 ],
2103 [ AC_MSG_WARN([cross compiling: Assuming working snprintf()]) ]
Damien Millercb170cb2000-07-01 16:52:55 +10002104 )
2105fi
2106
Darren Tuckere5261272018-10-12 16:43:35 +11002107if test "x$ac_cv_func_snprintf" = "xyes" ; then
2108 AC_MSG_CHECKING([whether snprintf understands %zu])
2109 AC_RUN_IFELSE(
2110 [AC_LANG_PROGRAM([[
2111#include <sys/types.h>
2112#include <stdio.h>
2113 ]],
2114 [[
2115 size_t a = 1, b = 2;
2116 char z[128];
2117 snprintf(z, sizeof z, "%zu%zu", a, b);
2118 exit(strcmp(z, "12"));
2119 ]])],
2120 [AC_MSG_RESULT([yes])],
2121 [
2122 AC_MSG_RESULT([no])
2123 AC_DEFINE([BROKEN_SNPRINTF], [1],
2124 [snprintf does not understand %zu])
2125 ],
2126 [ AC_MSG_WARN([cross compiling: Assuming working snprintf()]) ]
2127 )
2128fi
2129
Damien Millerd244a582014-08-23 17:06:49 +10002130# We depend on vsnprintf returning the right thing on overflow: the
2131# number of characters it tried to create (as per SUSv3)
2132if test "x$ac_cv_func_vsnprintf" = "xyes" ; then
Damien Miller57f39152005-11-24 19:58:19 +11002133 AC_MSG_CHECKING([whether vsnprintf returns correct values on overflow])
2134 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002135 [AC_LANG_PROGRAM([[
Damien Miller57f39152005-11-24 19:58:19 +11002136#include <sys/types.h>
2137#include <stdio.h>
2138#include <stdarg.h>
2139
Damien Millerd244a582014-08-23 17:06:49 +10002140int x_snprintf(char *str, size_t count, const char *fmt, ...)
Damien Miller57f39152005-11-24 19:58:19 +11002141{
Damien Millerd244a582014-08-23 17:06:49 +10002142 size_t ret;
2143 va_list ap;
2144
2145 va_start(ap, fmt);
2146 ret = vsnprintf(str, count, fmt, ap);
2147 va_end(ap);
Damien Miller57f39152005-11-24 19:58:19 +11002148 return ret;
2149}
Tim Rice648f8762011-01-26 12:38:57 -08002150 ]], [[
Damien Millerd244a582014-08-23 17:06:49 +10002151char x[1];
2152if (x_snprintf(x, 1, "%s %d", "hello", 12345) != 11)
2153 return 1;
2154if (x_snprintf(NULL, 0, "%s %d", "hello", 12345) != 11)
2155 return 1;
2156return 0;
Tim Rice648f8762011-01-26 12:38:57 -08002157 ]])],
2158 [AC_MSG_RESULT([yes])],
Damien Miller57f39152005-11-24 19:58:19 +11002159 [
Tim Rice648f8762011-01-26 12:38:57 -08002160 AC_MSG_RESULT([no])
2161 AC_DEFINE([BROKEN_SNPRINTF], [1],
Damien Miller57f39152005-11-24 19:58:19 +11002162 [Define if your snprintf is busted])
2163 AC_MSG_WARN([****** Your vsnprintf() function is broken, complain to your vendor])
2164 ],
2165 [ AC_MSG_WARN([cross compiling: Assuming working vsnprintf()]) ]
2166 )
2167fi
2168
Darren Tuckerd40c66c2005-12-17 22:32:03 +11002169# On systems where [v]snprintf is broken, but is declared in stdio,
2170# check that the fmt argument is const char * or just char *.
2171# This is only useful for when BROKEN_SNPRINTF
2172AC_MSG_CHECKING([whether snprintf can declare const char *fmt])
Tim Rice648f8762011-01-26 12:38:57 -08002173AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
2174#include <stdio.h>
2175int snprintf(char *a, size_t b, const char *c, ...) { return 0; }
2176 ]], [[
2177 snprintf(0, 0, 0);
2178 ]])],
2179 [AC_MSG_RESULT([yes])
2180 AC_DEFINE([SNPRINTF_CONST], [const],
Darren Tuckerd40c66c2005-12-17 22:32:03 +11002181 [Define as const if snprintf() can declare const char *fmt])],
Tim Rice648f8762011-01-26 12:38:57 -08002182 [AC_MSG_RESULT([no])
2183 AC_DEFINE([SNPRINTF_CONST], [/* not const */])])
Darren Tuckerd40c66c2005-12-17 22:32:03 +11002184
Damien Millerb4097182004-05-23 14:09:40 +10002185# Check for missing getpeereid (or equiv) support
2186NO_PEERCHECK=""
Darren Tucker164aa302007-03-21 21:39:57 +11002187if test "x$ac_cv_func_getpeereid" != "xyes" -a "x$ac_cv_func_getpeerucred" != "xyes"; then
Damien Millerb4097182004-05-23 14:09:40 +10002188 AC_MSG_CHECKING([whether system supports SO_PEERCRED getsockopt])
Tim Rice648f8762011-01-26 12:38:57 -08002189 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
2190#include <sys/types.h>
2191#include <sys/socket.h>]], [[int i = SO_PEERCRED;]])],
2192 [ AC_MSG_RESULT([yes])
2193 AC_DEFINE([HAVE_SO_PEERCRED], [1], [Have PEERCRED socket option])
2194 ], [AC_MSG_RESULT([no])
2195 NO_PEERCHECK=1
2196 ])
Damien Millerb4097182004-05-23 14:09:40 +10002197fi
2198
Damien Millere8328192003-01-07 15:18:32 +11002199dnl see whether mkstemp() requires XXXXXX
2200if test "x$ac_cv_func_mkdtemp" = "xyes" ; then
2201AC_MSG_CHECKING([for (overly) strict mkstemp])
Darren Tucker314d89e2005-10-17 23:29:23 +10002202AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002203 [AC_LANG_PROGRAM([[
Damien Millere8328192003-01-07 15:18:32 +11002204#include <stdlib.h>
Tim Rice648f8762011-01-26 12:38:57 -08002205 ]], [[
2206 char template[]="conftest.mkstemp-test";
2207 if (mkstemp(template) == -1)
2208 exit(1);
2209 unlink(template);
2210 exit(0);
Darren Tucker314d89e2005-10-17 23:29:23 +10002211 ]])],
Damien Millere8328192003-01-07 15:18:32 +11002212 [
Tim Rice648f8762011-01-26 12:38:57 -08002213 AC_MSG_RESULT([no])
Damien Millere8328192003-01-07 15:18:32 +11002214 ],
Damien Millera8e06ce2003-11-21 23:48:55 +11002215 [
Tim Rice648f8762011-01-26 12:38:57 -08002216 AC_MSG_RESULT([yes])
2217 AC_DEFINE([HAVE_STRICT_MKSTEMP], [1], [Silly mkstemp()])
Damien Millere8328192003-01-07 15:18:32 +11002218 ],
2219 [
Tim Rice648f8762011-01-26 12:38:57 -08002220 AC_MSG_RESULT([yes])
2221 AC_DEFINE([HAVE_STRICT_MKSTEMP])
Damien Millera8e06ce2003-11-21 23:48:55 +11002222 ]
Damien Millere8328192003-01-07 15:18:32 +11002223)
2224fi
2225
Darren Tucker70a3d552003-08-21 17:58:29 +10002226dnl make sure that openpty does not reacquire controlling terminal
2227if test ! -z "$check_for_openpty_ctty_bug"; then
Tim Rice648f8762011-01-26 12:38:57 -08002228 AC_MSG_CHECKING([if openpty correctly handles controlling tty])
Darren Tucker314d89e2005-10-17 23:29:23 +10002229 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002230 [AC_LANG_PROGRAM([[
Darren Tucker70a3d552003-08-21 17:58:29 +10002231#include <stdio.h>
2232#include <sys/fcntl.h>
2233#include <sys/types.h>
2234#include <sys/wait.h>
Tim Rice648f8762011-01-26 12:38:57 -08002235 ]], [[
Darren Tucker70a3d552003-08-21 17:58:29 +10002236 pid_t pid;
2237 int fd, ptyfd, ttyfd, status;
2238
2239 pid = fork();
2240 if (pid < 0) { /* failed */
2241 exit(1);
2242 } else if (pid > 0) { /* parent */
2243 waitpid(pid, &status, 0);
Damien Millera8e06ce2003-11-21 23:48:55 +11002244 if (WIFEXITED(status))
Darren Tucker70a3d552003-08-21 17:58:29 +10002245 exit(WEXITSTATUS(status));
2246 else
2247 exit(2);
2248 } else { /* child */
2249 close(0); close(1); close(2);
2250 setsid();
2251 openpty(&ptyfd, &ttyfd, NULL, NULL, NULL);
2252 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
2253 if (fd >= 0)
2254 exit(3); /* Acquired ctty: broken */
2255 else
2256 exit(0); /* Did not acquire ctty: OK */
2257 }
Darren Tucker314d89e2005-10-17 23:29:23 +10002258 ]])],
Darren Tucker70a3d552003-08-21 17:58:29 +10002259 [
Tim Rice648f8762011-01-26 12:38:57 -08002260 AC_MSG_RESULT([yes])
Darren Tucker70a3d552003-08-21 17:58:29 +10002261 ],
2262 [
Tim Rice648f8762011-01-26 12:38:57 -08002263 AC_MSG_RESULT([no])
2264 AC_DEFINE([SSHD_ACQUIRES_CTTY])
Darren Tucker314d89e2005-10-17 23:29:23 +10002265 ],
2266 [
Tim Rice648f8762011-01-26 12:38:57 -08002267 AC_MSG_RESULT([cross-compiling, assuming yes])
Darren Tucker70a3d552003-08-21 17:58:29 +10002268 ]
2269 )
2270fi
2271
Tim Rice8bb561b2005-03-17 16:23:19 -08002272if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
2273 test "x$check_for_hpux_broken_getaddrinfo" = "x1"; then
Tim Rice648f8762011-01-26 12:38:57 -08002274 AC_MSG_CHECKING([if getaddrinfo seems to work])
Darren Tucker314d89e2005-10-17 23:29:23 +10002275 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002276 [AC_LANG_PROGRAM([[
Darren Tucker4398cf52004-04-06 21:39:02 +10002277#include <stdio.h>
2278#include <sys/socket.h>
2279#include <netdb.h>
2280#include <errno.h>
2281#include <netinet/in.h>
2282
2283#define TEST_PORT "2222"
Tim Rice648f8762011-01-26 12:38:57 -08002284 ]], [[
Darren Tucker4398cf52004-04-06 21:39:02 +10002285 int err, sock;
2286 struct addrinfo *gai_ai, *ai, hints;
2287 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
2288
2289 memset(&hints, 0, sizeof(hints));
2290 hints.ai_family = PF_UNSPEC;
2291 hints.ai_socktype = SOCK_STREAM;
2292 hints.ai_flags = AI_PASSIVE;
2293
2294 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
2295 if (err != 0) {
2296 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
2297 exit(1);
2298 }
2299
2300 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
2301 if (ai->ai_family != AF_INET6)
2302 continue;
2303
2304 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
2305 sizeof(ntop), strport, sizeof(strport),
2306 NI_NUMERICHOST|NI_NUMERICSERV);
2307
2308 if (err != 0) {
2309 if (err == EAI_SYSTEM)
2310 perror("getnameinfo EAI_SYSTEM");
2311 else
2312 fprintf(stderr, "getnameinfo failed: %s\n",
2313 gai_strerror(err));
2314 exit(2);
2315 }
2316
2317 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
2318 if (sock < 0)
2319 perror("socket");
2320 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2321 if (errno == EBADF)
2322 exit(3);
2323 }
2324 }
2325 exit(0);
Darren Tucker314d89e2005-10-17 23:29:23 +10002326 ]])],
Darren Tucker4398cf52004-04-06 21:39:02 +10002327 [
Tim Rice648f8762011-01-26 12:38:57 -08002328 AC_MSG_RESULT([yes])
Darren Tucker4398cf52004-04-06 21:39:02 +10002329 ],
2330 [
Tim Rice648f8762011-01-26 12:38:57 -08002331 AC_MSG_RESULT([no])
2332 AC_DEFINE([BROKEN_GETADDRINFO])
Darren Tucker314d89e2005-10-17 23:29:23 +10002333 ],
2334 [
Tim Rice648f8762011-01-26 12:38:57 -08002335 AC_MSG_RESULT([cross-compiling, assuming yes])
Darren Tucker4398cf52004-04-06 21:39:02 +10002336 ]
2337 )
2338fi
2339
Tim Rice8bb561b2005-03-17 16:23:19 -08002340if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
2341 test "x$check_for_aix_broken_getaddrinfo" = "x1"; then
Tim Rice648f8762011-01-26 12:38:57 -08002342 AC_MSG_CHECKING([if getaddrinfo seems to work])
Darren Tucker314d89e2005-10-17 23:29:23 +10002343 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002344 [AC_LANG_PROGRAM([[
Darren Tucker691d5232005-02-15 21:45:57 +11002345#include <stdio.h>
2346#include <sys/socket.h>
2347#include <netdb.h>
2348#include <errno.h>
2349#include <netinet/in.h>
2350
2351#define TEST_PORT "2222"
Tim Rice648f8762011-01-26 12:38:57 -08002352 ]], [[
Darren Tucker691d5232005-02-15 21:45:57 +11002353 int err, sock;
2354 struct addrinfo *gai_ai, *ai, hints;
2355 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
2356
2357 memset(&hints, 0, sizeof(hints));
2358 hints.ai_family = PF_UNSPEC;
2359 hints.ai_socktype = SOCK_STREAM;
2360 hints.ai_flags = AI_PASSIVE;
2361
2362 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
2363 if (err != 0) {
2364 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
2365 exit(1);
2366 }
2367
2368 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
2369 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2370 continue;
2371
2372 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
2373 sizeof(ntop), strport, sizeof(strport),
2374 NI_NUMERICHOST|NI_NUMERICSERV);
2375
2376 if (ai->ai_family == AF_INET && err != 0) {
2377 perror("getnameinfo");
2378 exit(2);
2379 }
2380 }
2381 exit(0);
Darren Tucker314d89e2005-10-17 23:29:23 +10002382 ]])],
Darren Tucker691d5232005-02-15 21:45:57 +11002383 [
Tim Rice648f8762011-01-26 12:38:57 -08002384 AC_MSG_RESULT([yes])
2385 AC_DEFINE([AIX_GETNAMEINFO_HACK], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07002386 [Define if you have a getaddrinfo that fails
2387 for the all-zeros IPv6 address])
Darren Tucker691d5232005-02-15 21:45:57 +11002388 ],
2389 [
Tim Rice648f8762011-01-26 12:38:57 -08002390 AC_MSG_RESULT([no])
2391 AC_DEFINE([BROKEN_GETADDRINFO])
Darren Tucker314d89e2005-10-17 23:29:23 +10002392 ],
Darren Tucker8b272ab2006-06-27 11:20:28 +10002393 [
Tim Rice648f8762011-01-26 12:38:57 -08002394 AC_MSG_RESULT([cross-compiling, assuming no])
Darren Tucker691d5232005-02-15 21:45:57 +11002395 ]
2396 )
2397fi
2398
Darren Tuckere50e8c92015-02-21 15:10:33 +11002399if test "x$ac_cv_func_getaddrinfo" = "xyes"; then
2400 AC_CHECK_DECLS(AI_NUMERICSERV, , ,
2401 [#include <sys/types.h>
2402 #include <sys/socket.h>
2403 #include <netdb.h>])
2404fi
2405
Darren Tuckera56f1912004-11-02 20:30:54 +11002406if test "x$check_for_conflicting_getspnam" = "x1"; then
Tim Rice648f8762011-01-26 12:38:57 -08002407 AC_MSG_CHECKING([for conflicting getspnam in shadow.h])
2408 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <shadow.h> ]],
2409 [[ exit(0); ]])],
Darren Tuckera56f1912004-11-02 20:30:54 +11002410 [
Tim Rice648f8762011-01-26 12:38:57 -08002411 AC_MSG_RESULT([no])
Darren Tuckera56f1912004-11-02 20:30:54 +11002412 ],
2413 [
Tim Rice648f8762011-01-26 12:38:57 -08002414 AC_MSG_RESULT([yes])
2415 AC_DEFINE([GETSPNAM_CONFLICTING_DEFS], [1],
Darren Tuckera56f1912004-11-02 20:30:54 +11002416 [Conflicting defs for getspnam])
2417 ]
2418 )
2419fi
2420
Darren Tucker20e5e8b2016-08-02 12:16:34 +10002421dnl NetBSD added an strnvis and unfortunately made it incompatible with the
2422dnl existing one in OpenBSD and Linux's libbsd (the former having existed
2423dnl for over ten years). Despite this incompatibility being reported during
2424dnl development (see http://gnats.netbsd.org/44977) they still shipped it.
2425dnl Even more unfortunately FreeBSD and later MacOS picked up this incompatible
2426dnl implementation. Try to detect this mess, and assume the only safe option
2427dnl if we're cross compiling.
2428dnl
2429dnl OpenBSD, 2001: strnvis(char *dst, const char *src, size_t dlen, int flag);
2430dnl NetBSD: 2012, strnvis(char *dst, size_t dlen, const char *src, int flag);
2431if test "x$ac_cv_func_strnvis" = "xyes"; then
2432 AC_MSG_CHECKING([for working strnvis])
2433 AC_RUN_IFELSE(
2434 [AC_LANG_PROGRAM([[
2435#include <signal.h>
2436#include <stdlib.h>
2437#include <string.h>
2438#include <vis.h>
2439static void sighandler(int sig) { _exit(1); }
2440 ]], [[
2441 char dst[16];
2442
2443 signal(SIGSEGV, sighandler);
2444 if (strnvis(dst, "src", 4, 0) && strcmp(dst, "src") == 0)
2445 exit(0);
2446 exit(1)
2447 ]])],
2448 [AC_MSG_RESULT([yes])],
2449 [AC_MSG_RESULT([no])
2450 AC_DEFINE([BROKEN_STRNVIS], [1], [strnvis detected broken])],
2451 [AC_MSG_WARN([cross compiling: assuming broken])
2452 AC_DEFINE([BROKEN_STRNVIS], [1], [strnvis assumed broken])]
2453 )
2454fi
2455
Darren Tuckerc7b5a472018-02-25 23:55:41 +11002456AC_CHECK_FUNCS([getpgrp],[
2457 AC_MSG_CHECKING([if getpgrp accepts zero args])
2458 AC_COMPILE_IFELSE(
2459 [AC_LANG_PROGRAM([[$ac_includes_default]], [[ getpgrp(); ]])],
2460 [ AC_MSG_RESULT([yes])
2461 AC_DEFINE([GETPGRP_VOID], [1], [getpgrp takes zero args])],
2462 [ AC_MSG_RESULT([no])
2463 AC_DEFINE([GETPGRP_VOID], [0], [getpgrp takes one arg])]
2464 )
2465])
Damien Miller606f8802000-09-16 15:39:56 +11002466
Tim Riceaef73712002-05-11 13:17:42 -07002467# Search for OpenSSL
2468saved_CPPFLAGS="$CPPFLAGS"
2469saved_LDFLAGS="$LDFLAGS"
Tim Rice648f8762011-01-26 12:38:57 -08002470AC_ARG_WITH([ssl-dir],
Damien Millera22ba012000-03-02 23:09:20 +11002471 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
2472 [
Damien Miller72ef7c12015-01-15 02:21:31 +11002473 if test "x$openssl" = "xno" ; then
2474 AC_MSG_ERROR([cannot use --with-ssl-dir when OpenSSL disabled])
2475 fi
Ben Lindstrom23e13712000-10-29 22:49:19 +00002476 if test "x$withval" != "xno" ; then
Darren Tuckerc7e38d52005-02-09 22:12:30 +11002477 case "$withval" in
2478 # Relative paths
2479 ./*|../*) withval="`pwd`/$withval"
2480 esac
Tim Riceaef73712002-05-11 13:17:42 -07002481 if test -d "$withval/lib"; then
2482 if test -n "${need_dash_r}"; then
2483 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
2484 else
2485 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
2486 fi
Darren Tucker9f8703b2010-04-23 11:12:06 +10002487 elif test -d "$withval/lib64"; then
2488 if test -n "${need_dash_r}"; then
2489 LDFLAGS="-L${withval}/lib64 -R${withval}/lib64 ${LDFLAGS}"
2490 else
2491 LDFLAGS="-L${withval}/lib64 ${LDFLAGS}"
2492 fi
Tim Riceaef73712002-05-11 13:17:42 -07002493 else
2494 if test -n "${need_dash_r}"; then
2495 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
2496 else
2497 LDFLAGS="-L${withval} ${LDFLAGS}"
2498 fi
2499 fi
2500 if test -d "$withval/include"; then
2501 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
2502 else
2503 CPPFLAGS="-I${withval} ${CPPFLAGS}"
2504 fi
Damien Millera22ba012000-03-02 23:09:20 +11002505 fi
2506 ]
2507)
Damien Millerb9c56672014-05-15 14:43:37 +10002508
Tim Rice648f8762011-01-26 12:38:57 -08002509AC_ARG_WITH([openssl-header-check],
Damien Miller9975e482007-03-05 11:51:27 +11002510 [ --without-openssl-header-check Disable OpenSSL version consistency check],
Damien Millerec932372002-01-22 22:16:03 +11002511 [
Damien Miller72ef7c12015-01-15 02:21:31 +11002512 if test "x$withval" = "xno" ; then
2513 openssl_check_nonfatal=1
Damien Miller9975e482007-03-05 11:51:27 +11002514 fi
Damien Millerec932372002-01-22 22:16:03 +11002515 ]
2516)
2517
Damien Miller72ef7c12015-01-15 02:21:31 +11002518openssl_engine=no
Tim Rice648f8762011-01-26 12:38:57 -08002519AC_ARG_WITH([ssl-engine],
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11002520 [ --with-ssl-engine Enable OpenSSL (hardware) ENGINE support ],
Damien Miller72ef7c12015-01-15 02:21:31 +11002521 [
Damien Miller72ef7c12015-01-15 02:21:31 +11002522 if test "x$withval" != "xno" ; then
Darren Tuckerb5fa0cd2015-12-15 15:10:32 +11002523 if test "x$openssl" = "xno" ; then
2524 AC_MSG_ERROR([cannot use --with-ssl-engine when OpenSSL disabled])
2525 fi
Damien Miller72ef7c12015-01-15 02:21:31 +11002526 openssl_engine=yes
2527 fi
2528 ]
2529)
2530
2531if test "x$openssl" = "xyes" ; then
2532 LIBS="-lcrypto $LIBS"
Darren Tucker8d8340e2018-11-16 13:32:13 +11002533 AC_TRY_LINK_FUNC([RAND_add], ,
2534 [AC_MSG_ERROR([*** working libcrypto not found, check config.log])])
2535 AC_CHECK_HEADER([openssl/opensslv.h], ,
2536 [AC_MSG_ERROR([*** OpenSSL headers missing - please install first or check config.log ***])])
Damien Miller72ef7c12015-01-15 02:21:31 +11002537
2538 # Determine OpenSSL header version
2539 AC_MSG_CHECKING([OpenSSL header version])
2540 AC_RUN_IFELSE(
2541 [AC_LANG_PROGRAM([[
Darren Tucker15605962015-11-10 11:14:47 +11002542 #include <stdlib.h>
Damien Miller72ef7c12015-01-15 02:21:31 +11002543 #include <stdio.h>
2544 #include <string.h>
2545 #include <openssl/opensslv.h>
2546 #define DATA "conftest.sslincver"
2547 ]], [[
2548 FILE *fd;
2549 int rc;
2550
2551 fd = fopen(DATA,"w");
2552 if(fd == NULL)
2553 exit(1);
2554
Darren Tuckerb3413532016-04-04 11:09:21 +10002555 if ((rc = fprintf(fd, "%08lx (%s)\n",
2556 (unsigned long)OPENSSL_VERSION_NUMBER,
2557 OPENSSL_VERSION_TEXT)) < 0)
Damien Miller72ef7c12015-01-15 02:21:31 +11002558 exit(1);
2559
2560 exit(0);
2561 ]])],
2562 [
2563 ssl_header_ver=`cat conftest.sslincver`
2564 AC_MSG_RESULT([$ssl_header_ver])
2565 ],
2566 [
2567 AC_MSG_RESULT([not found])
2568 AC_MSG_ERROR([OpenSSL version header not found.])
2569 ],
2570 [
2571 AC_MSG_WARN([cross compiling: not checking])
2572 ]
2573 )
2574
Darren Tucker262d81a2018-10-27 16:45:59 +11002575 # Determining OpenSSL library version is version dependent.
2576 AC_CHECK_FUNCS([OpenSSL_version OpenSSL_version_num])
2577
Damien Miller72ef7c12015-01-15 02:21:31 +11002578 # Determine OpenSSL library version
2579 AC_MSG_CHECKING([OpenSSL library version])
2580 AC_RUN_IFELSE(
2581 [AC_LANG_PROGRAM([[
2582 #include <stdio.h>
2583 #include <string.h>
2584 #include <openssl/opensslv.h>
2585 #include <openssl/crypto.h>
2586 #define DATA "conftest.ssllibver"
2587 ]], [[
2588 FILE *fd;
2589 int rc;
2590
2591 fd = fopen(DATA,"w");
2592 if(fd == NULL)
2593 exit(1);
Darren Tucker262d81a2018-10-27 16:45:59 +11002594#ifndef OPENSSL_VERSION
2595# define OPENSSL_VERSION SSLEAY_VERSION
2596#endif
2597#ifndef HAVE_OPENSSL_VERSION
Damien Miller406a24b2018-10-26 13:43:28 +11002598# define OpenSSL_version SSLeay_version
Darren Tucker262d81a2018-10-27 16:45:59 +11002599#endif
2600#ifndef HAVE_OPENSSL_VERSION_NUM
2601# define OpenSSL_version_num SSLeay
Damien Miller406a24b2018-10-26 13:43:28 +11002602#endif
Damien Miller859754b2018-10-23 17:10:41 +11002603 if ((rc = fprintf(fd, "%08lx (%s)\n",
2604 (unsigned long)OpenSSL_version_num(),
2605 OpenSSL_version(OPENSSL_VERSION))) < 0)
Damien Miller72ef7c12015-01-15 02:21:31 +11002606 exit(1);
2607
2608 exit(0);
2609 ]])],
2610 [
2611 ssl_library_ver=`cat conftest.ssllibver`
2612 # Check version is supported.
2613 case "$ssl_library_ver" in
Damien Milleraede1c32018-10-17 11:01:20 +11002614 10000*|0*)
2615 AC_MSG_ERROR([OpenSSL >= 1.0.1 required (have "$ssl_library_ver")])
2616 ;;
2617 100*) ;; # 1.0.x
Damien Miller28c7b2c2018-11-23 10:45:20 +11002618 101000[[0123456]]*)
Damien Milleraede1c32018-10-17 11:01:20 +11002619 # https://github.com/openssl/openssl/pull/4613
2620 AC_MSG_ERROR([OpenSSL 1.1.x versions prior to 1.1.0g have a bug that breaks their use with OpenSSH (have "$ssl_library_ver")])
2621 ;;
2622 101*) ;; # 1.1.x
2623 200*) ;; # LibreSSL
2624 *)
2625 AC_MSG_ERROR([OpenSSL > 1.1.x is not yet supported (have "$ssl_library_ver")])
2626 ;;
Damien Miller72ef7c12015-01-15 02:21:31 +11002627 esac
2628 AC_MSG_RESULT([$ssl_library_ver])
2629 ],
2630 [
2631 AC_MSG_RESULT([not found])
2632 AC_MSG_ERROR([OpenSSL library not found.])
2633 ],
2634 [
2635 AC_MSG_WARN([cross compiling: not checking])
2636 ]
2637 )
2638
2639 # Sanity check OpenSSL headers
2640 AC_MSG_CHECKING([whether OpenSSL's headers match the library])
2641 AC_RUN_IFELSE(
2642 [AC_LANG_PROGRAM([[
2643 #include <string.h>
2644 #include <openssl/opensslv.h>
Darren Tuckerc1d7e542015-12-15 14:27:09 +11002645 #include <openssl/crypto.h>
Damien Miller72ef7c12015-01-15 02:21:31 +11002646 ]], [[
Darren Tucker262d81a2018-10-27 16:45:59 +11002647#ifndef HAVE_OPENSSL_VERSION_NUM
2648# define OpenSSL_version_num SSLeay
Damien Miller406a24b2018-10-26 13:43:28 +11002649#endif
Damien Miller859754b2018-10-23 17:10:41 +11002650 exit(OpenSSL_version_num() == OPENSSL_VERSION_NUMBER ? 0 : 1);
Damien Miller72ef7c12015-01-15 02:21:31 +11002651 ]])],
2652 [
2653 AC_MSG_RESULT([yes])
2654 ],
2655 [
2656 AC_MSG_RESULT([no])
2657 if test "x$openssl_check_nonfatal" = "x"; then
2658 AC_MSG_ERROR([Your OpenSSL headers do not match your
2659 library. Check config.log for details.
2660 If you are sure your installation is consistent, you can disable the check
2661 by running "./configure --without-openssl-header-check".
2662 Also see contrib/findssl.sh for help identifying header/library mismatches.
2663 ])
2664 else
2665 AC_MSG_WARN([Your OpenSSL headers do not match your
2666 library. Check config.log for details.
2667 Also see contrib/findssl.sh for help identifying header/library mismatches.])
2668 fi
2669 ],
2670 [
2671 AC_MSG_WARN([cross compiling: not checking])
2672 ]
2673 )
2674
2675 AC_MSG_CHECKING([if programs using OpenSSL functions will link])
2676 AC_LINK_IFELSE(
Damien Miller42c5ec42018-11-23 10:40:06 +11002677 [AC_LANG_PROGRAM([[ #include <openssl/err.h> ]],
2678 [[ ERR_load_crypto_strings(); ]])],
Damien Miller72ef7c12015-01-15 02:21:31 +11002679 [
2680 AC_MSG_RESULT([yes])
2681 ],
2682 [
2683 AC_MSG_RESULT([no])
2684 saved_LIBS="$LIBS"
2685 LIBS="$LIBS -ldl"
2686 AC_MSG_CHECKING([if programs using OpenSSL need -ldl])
2687 AC_LINK_IFELSE(
Damien Miller42c5ec42018-11-23 10:40:06 +11002688 [AC_LANG_PROGRAM([[ #include <openssl/err.h> ]],
2689 [[ ERR_load_crypto_strings(); ]])],
Damien Miller72ef7c12015-01-15 02:21:31 +11002690 [
2691 AC_MSG_RESULT([yes])
2692 ],
2693 [
2694 AC_MSG_RESULT([no])
2695 LIBS="$saved_LIBS"
2696 ]
2697 )
2698 ]
2699 )
2700
2701 AC_CHECK_FUNCS([ \
2702 BN_is_prime_ex \
2703 DSA_generate_parameters_ex \
Damien Miller42c5ec42018-11-23 10:40:06 +11002704 EVP_CIPHER_CTX_ctrl \
Damien Miller72ef7c12015-01-15 02:21:31 +11002705 EVP_DigestFinal_ex \
Damien Miller42c5ec42018-11-23 10:40:06 +11002706 EVP_DigestInit_ex \
Damien Miller72ef7c12015-01-15 02:21:31 +11002707 EVP_MD_CTX_cleanup \
2708 EVP_MD_CTX_copy_ex \
Damien Miller42c5ec42018-11-23 10:40:06 +11002709 EVP_MD_CTX_init \
Damien Miller72ef7c12015-01-15 02:21:31 +11002710 HMAC_CTX_init \
2711 RSA_generate_key_ex \
2712 RSA_get_default_method \
Darren Tucker1801cd12018-11-08 15:03:11 +11002713 ])
Darren Tucker98f878d2018-11-25 14:05:08 +11002714
2715 # OpenSSL_add_all_algorithms may be a macro.
2716 AC_CHECK_FUNC(OpenSSL_add_all_algorithms,
2717 AC_DEFINE(HAVE_OPENSSL_ADD_ALL_ALGORITHMS, 1, [as a function]),
2718 AC_CHECK_DECL(OpenSSL_add_all_algorithms,
2719 AC_DEFINE(HAVE_OPENSSL_ADD_ALL_ALGORITHMS, 1, [as a macro]), ,
2720 [[#include <openssl/evp.h>]]
2721 )
2722 )
2723
Darren Tucker1801cd12018-11-08 15:03:11 +11002724 # LibreSSL/OpenSSL 1.1x API
2725 AC_CHECK_FUNCS([ \
Darren Tuckerd0d1dfa2018-11-16 14:11:44 +11002726 OPENSSL_init_crypto \
Darren Tucker1801cd12018-11-08 15:03:11 +11002727 DH_get0_key \
2728 DH_get0_pqg \
2729 DH_set0_key \
2730 DH_set_length \
2731 DH_set0_pqg \
2732 DSA_get0_key \
2733 DSA_get0_pqg \
2734 DSA_set0_key \
2735 DSA_set0_pqg \
2736 DSA_SIG_get0 \
2737 DSA_SIG_set0 \
2738 ECDSA_SIG_get0 \
2739 ECDSA_SIG_set0 \
2740 EVP_CIPHER_CTX_iv \
2741 EVP_CIPHER_CTX_iv_noconst \
2742 EVP_CIPHER_CTX_get_iv \
2743 EVP_CIPHER_CTX_set_iv \
2744 RSA_get0_crt_params \
2745 RSA_get0_factors \
2746 RSA_get0_key \
2747 RSA_set0_crt_params \
2748 RSA_set0_factors \
2749 RSA_set0_key \
2750 RSA_meth_free \
2751 RSA_meth_dup \
2752 RSA_meth_set1_name \
2753 RSA_meth_get_finish \
2754 RSA_meth_set_priv_enc \
2755 RSA_meth_set_priv_dec \
2756 RSA_meth_set_finish \
2757 EVP_PKEY_get0_RSA \
2758 EVP_MD_CTX_new \
2759 EVP_MD_CTX_free \
Damien Miller72ef7c12015-01-15 02:21:31 +11002760 ])
2761
2762 if test "x$openssl_engine" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08002763 AC_MSG_CHECKING([for OpenSSL ENGINE support])
2764 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller72ef7c12015-01-15 02:21:31 +11002765 #include <openssl/engine.h>
Tim Rice648f8762011-01-26 12:38:57 -08002766 ]], [[
Damien Miller72ef7c12015-01-15 02:21:31 +11002767 ENGINE_load_builtin_engines();
2768 ENGINE_register_all_complete();
Tim Rice648f8762011-01-26 12:38:57 -08002769 ]])],
2770 [ AC_MSG_RESULT([yes])
2771 AC_DEFINE([USE_OPENSSL_ENGINE], [1],
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11002772 [Enable OpenSSL engine support])
Tim Rice648f8762011-01-26 12:38:57 -08002773 ], [ AC_MSG_ERROR([OpenSSL ENGINE support not found])
2774 ])
Damien Miller72ef7c12015-01-15 02:21:31 +11002775 fi
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11002776
Damien Miller72ef7c12015-01-15 02:21:31 +11002777 # Check for OpenSSL without EVP_aes_{192,256}_cbc
2778 AC_MSG_CHECKING([whether OpenSSL has crippled AES support])
2779 AC_LINK_IFELSE(
Darren Tucker37bcef52013-11-09 18:39:25 +11002780 [AC_LANG_PROGRAM([[
Damien Miller72ef7c12015-01-15 02:21:31 +11002781 #include <string.h>
2782 #include <openssl/evp.h>
2783 ]], [[
2784 exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL);
2785 ]])],
2786 [
2787 AC_MSG_RESULT([no])
2788 ],
2789 [
2790 AC_MSG_RESULT([yes])
2791 AC_DEFINE([OPENSSL_LOBOTOMISED_AES], [1],
2792 [libcrypto is missing AES 192 and 256 bit functions])
2793 ]
2794 )
2795
2796 # Check for OpenSSL with EVP_aes_*ctr
2797 AC_MSG_CHECKING([whether OpenSSL has AES CTR via EVP])
2798 AC_LINK_IFELSE(
2799 [AC_LANG_PROGRAM([[
2800 #include <string.h>
2801 #include <openssl/evp.h>
2802 ]], [[
2803 exit(EVP_aes_128_ctr() == NULL ||
2804 EVP_aes_192_cbc() == NULL ||
2805 EVP_aes_256_cbc() == NULL);
2806 ]])],
2807 [
2808 AC_MSG_RESULT([yes])
2809 AC_DEFINE([OPENSSL_HAVE_EVPCTR], [1],
2810 [libcrypto has EVP AES CTR])
2811 ],
2812 [
2813 AC_MSG_RESULT([no])
2814 ]
2815 )
2816
2817 # Check for OpenSSL with EVP_aes_*gcm
2818 AC_MSG_CHECKING([whether OpenSSL has AES GCM via EVP])
2819 AC_LINK_IFELSE(
2820 [AC_LANG_PROGRAM([[
2821 #include <string.h>
2822 #include <openssl/evp.h>
2823 ]], [[
2824 exit(EVP_aes_128_gcm() == NULL ||
2825 EVP_aes_256_gcm() == NULL ||
2826 EVP_CTRL_GCM_SET_IV_FIXED == 0 ||
2827 EVP_CTRL_GCM_IV_GEN == 0 ||
2828 EVP_CTRL_GCM_SET_TAG == 0 ||
2829 EVP_CTRL_GCM_GET_TAG == 0 ||
2830 EVP_CIPHER_CTX_ctrl(NULL, 0, 0, NULL) == 0);
2831 ]])],
2832 [
2833 AC_MSG_RESULT([yes])
2834 AC_DEFINE([OPENSSL_HAVE_EVPGCM], [1],
2835 [libcrypto has EVP AES GCM])
2836 ],
2837 [
2838 AC_MSG_RESULT([no])
2839 unsupported_algorithms="$unsupported_cipers \
Damien Miller679ce882016-07-15 13:44:38 +10002840 aes128-gcm@openssh.com \
2841 aes256-gcm@openssh.com"
Damien Miller72ef7c12015-01-15 02:21:31 +11002842 ]
2843 )
2844
Damien Miller72ef7c12015-01-15 02:21:31 +11002845 AC_MSG_CHECKING([if EVP_DigestUpdate returns an int])
2846 AC_LINK_IFELSE(
2847 [AC_LANG_PROGRAM([[
2848 #include <string.h>
2849 #include <openssl/evp.h>
2850 ]], [[
2851 if(EVP_DigestUpdate(NULL, NULL,0))
2852 exit(0);
2853 ]])],
2854 [
2855 AC_MSG_RESULT([yes])
2856 ],
2857 [
2858 AC_MSG_RESULT([no])
2859 AC_DEFINE([OPENSSL_EVP_DIGESTUPDATE_VOID], [1],
2860 [Define if EVP_DigestUpdate returns void])
2861 ]
2862 )
2863
2864 # Some systems want crypt() from libcrypt, *not* the version in OpenSSL,
2865 # because the system crypt() is more featureful.
2866 if test "x$check_for_libcrypt_before" = "x1"; then
2867 AC_CHECK_LIB([crypt], [crypt])
2868 fi
2869
2870 # Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
2871 # version in OpenSSL.
2872 if test "x$check_for_libcrypt_later" = "x1"; then
2873 AC_CHECK_LIB([crypt], [crypt], [LIBS="$LIBS -lcrypt"])
2874 fi
Damien Miller00797e82015-03-04 05:02:45 +11002875 AC_CHECK_FUNCS([crypt DES_crypt])
Damien Miller72ef7c12015-01-15 02:21:31 +11002876
2877 # Search for SHA256 support in libc and/or OpenSSL
2878 AC_CHECK_FUNCS([SHA256_Update EVP_sha256], ,
2879 [unsupported_algorithms="$unsupported_algorithms \
Damien Miller679ce882016-07-15 13:44:38 +10002880 hmac-sha2-256 \
2881 hmac-sha2-512 \
Damien Miller72ef7c12015-01-15 02:21:31 +11002882 diffie-hellman-group-exchange-sha256 \
Damien Miller679ce882016-07-15 13:44:38 +10002883 hmac-sha2-256-etm@openssh.com \
2884 hmac-sha2-512-etm@openssh.com"
Damien Miller72ef7c12015-01-15 02:21:31 +11002885 ]
2886 )
2887 # Search for RIPE-MD support in OpenSSL
2888 AC_CHECK_FUNCS([EVP_ripemd160], ,
2889 [unsupported_algorithms="$unsupported_algorithms \
Damien Miller679ce882016-07-15 13:44:38 +10002890 hmac-ripemd160 \
2891 hmac-ripemd160@openssh.com \
Damien Miller72ef7c12015-01-15 02:21:31 +11002892 hmac-ripemd160-etm@openssh.com"
2893 ]
2894 )
2895
2896 # Check complete ECC support in OpenSSL
2897 AC_MSG_CHECKING([whether OpenSSL has NID_X9_62_prime256v1])
2898 AC_LINK_IFELSE(
2899 [AC_LANG_PROGRAM([[
2900 #include <openssl/ec.h>
2901 #include <openssl/ecdh.h>
2902 #include <openssl/ecdsa.h>
2903 #include <openssl/evp.h>
2904 #include <openssl/objects.h>
2905 #include <openssl/opensslv.h>
Damien Miller72ef7c12015-01-15 02:21:31 +11002906 ]], [[
2907 EC_KEY *e = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1);
2908 const EVP_MD *m = EVP_sha256(); /* We need this too */
Darren Tucker37bcef52013-11-09 18:39:25 +11002909 ]])],
2910 [ AC_MSG_RESULT([yes])
Damien Miller72ef7c12015-01-15 02:21:31 +11002911 enable_nistp256=1 ],
2912 [ AC_MSG_RESULT([no]) ]
2913 )
Darren Tucker37bcef52013-11-09 18:39:25 +11002914
Damien Miller72ef7c12015-01-15 02:21:31 +11002915 AC_MSG_CHECKING([whether OpenSSL has NID_secp384r1])
2916 AC_LINK_IFELSE(
2917 [AC_LANG_PROGRAM([[
2918 #include <openssl/ec.h>
2919 #include <openssl/ecdh.h>
2920 #include <openssl/ecdsa.h>
2921 #include <openssl/evp.h>
2922 #include <openssl/objects.h>
2923 #include <openssl/opensslv.h>
Damien Miller72ef7c12015-01-15 02:21:31 +11002924 ]], [[
2925 EC_KEY *e = EC_KEY_new_by_curve_name(NID_secp384r1);
2926 const EVP_MD *m = EVP_sha384(); /* We need this too */
2927 ]])],
2928 [ AC_MSG_RESULT([yes])
2929 enable_nistp384=1 ],
2930 [ AC_MSG_RESULT([no]) ]
2931 )
Darren Tucker37bcef52013-11-09 18:39:25 +11002932
Damien Miller72ef7c12015-01-15 02:21:31 +11002933 AC_MSG_CHECKING([whether OpenSSL has NID_secp521r1])
2934 AC_LINK_IFELSE(
2935 [AC_LANG_PROGRAM([[
2936 #include <openssl/ec.h>
2937 #include <openssl/ecdh.h>
2938 #include <openssl/ecdsa.h>
2939 #include <openssl/evp.h>
2940 #include <openssl/objects.h>
2941 #include <openssl/opensslv.h>
Damien Miller72ef7c12015-01-15 02:21:31 +11002942 ]], [[
2943 EC_KEY *e = EC_KEY_new_by_curve_name(NID_secp521r1);
2944 const EVP_MD *m = EVP_sha512(); /* We need this too */
2945 ]])],
2946 [ AC_MSG_RESULT([yes])
2947 AC_MSG_CHECKING([if OpenSSL's NID_secp521r1 is functional])
2948 AC_RUN_IFELSE(
2949 [AC_LANG_PROGRAM([[
2950 #include <openssl/ec.h>
2951 #include <openssl/ecdh.h>
2952 #include <openssl/ecdsa.h>
2953 #include <openssl/evp.h>
2954 #include <openssl/objects.h>
2955 #include <openssl/opensslv.h>
2956 ]],[[
2957 EC_KEY *e = EC_KEY_new_by_curve_name(NID_secp521r1);
2958 const EVP_MD *m = EVP_sha512(); /* We need this too */
2959 exit(e == NULL || m == NULL);
2960 ]])],
2961 [ AC_MSG_RESULT([yes])
2962 enable_nistp521=1 ],
2963 [ AC_MSG_RESULT([no]) ],
2964 [ AC_MSG_WARN([cross-compiling: assuming yes])
2965 enable_nistp521=1 ]
2966 )],
2967 AC_MSG_RESULT([no])
2968 )
Darren Tucker37bcef52013-11-09 18:39:25 +11002969
Damien Miller72ef7c12015-01-15 02:21:31 +11002970 COMMENT_OUT_ECC="#no ecc#"
2971 TEST_SSH_ECC=no
2972
2973 if test x$enable_nistp256 = x1 || test x$enable_nistp384 = x1 || \
2974 test x$enable_nistp521 = x1; then
2975 AC_DEFINE(OPENSSL_HAS_ECC, [1], [OpenSSL has ECC])
2976 fi
2977 if test x$enable_nistp256 = x1; then
2978 AC_DEFINE([OPENSSL_HAS_NISTP256], [1],
2979 [libcrypto has NID_X9_62_prime256v1])
2980 TEST_SSH_ECC=yes
2981 COMMENT_OUT_ECC=""
2982 else
Damien Miller679ce882016-07-15 13:44:38 +10002983 unsupported_algorithms="$unsupported_algorithms \
2984 ecdsa-sha2-nistp256 \
2985 ecdh-sha2-nistp256 \
2986 ecdsa-sha2-nistp256-cert-v01@openssh.com"
Damien Miller72ef7c12015-01-15 02:21:31 +11002987 fi
2988 if test x$enable_nistp384 = x1; then
2989 AC_DEFINE([OPENSSL_HAS_NISTP384], [1], [libcrypto has NID_secp384r1])
2990 TEST_SSH_ECC=yes
2991 COMMENT_OUT_ECC=""
2992 else
Damien Miller679ce882016-07-15 13:44:38 +10002993 unsupported_algorithms="$unsupported_algorithms \
2994 ecdsa-sha2-nistp384 \
2995 ecdh-sha2-nistp384 \
2996 ecdsa-sha2-nistp384-cert-v01@openssh.com"
Damien Miller72ef7c12015-01-15 02:21:31 +11002997 fi
2998 if test x$enable_nistp521 = x1; then
2999 AC_DEFINE([OPENSSL_HAS_NISTP521], [1], [libcrypto has NID_secp521r1])
3000 TEST_SSH_ECC=yes
3001 COMMENT_OUT_ECC=""
3002 else
Damien Miller679ce882016-07-15 13:44:38 +10003003 unsupported_algorithms="$unsupported_algorithms \
3004 ecdh-sha2-nistp521 \
3005 ecdsa-sha2-nistp521 \
3006 ecdsa-sha2-nistp521-cert-v01@openssh.com"
Damien Miller72ef7c12015-01-15 02:21:31 +11003007 fi
3008
3009 AC_SUBST([TEST_SSH_ECC])
3010 AC_SUBST([COMMENT_OUT_ECC])
3011else
3012 AC_CHECK_LIB([crypt], [crypt], [LIBS="$LIBS -lcrypt"])
Damien Miller00797e82015-03-04 05:02:45 +11003013 AC_CHECK_FUNCS([crypt])
Damien Miller72ef7c12015-01-15 02:21:31 +11003014fi
Damien Miller6af914a2010-09-10 11:39:26 +10003015
Damien Miller00f9cd22014-07-15 10:41:38 +10003016AC_CHECK_FUNCS([ \
3017 arc4random \
3018 arc4random_buf \
3019 arc4random_stir \
3020 arc4random_uniform \
3021])
3022
Tim Rice99203ec2007-03-26 09:35:28 -07003023saved_LIBS="$LIBS"
Tim Rice648f8762011-01-26 12:38:57 -08003024AC_CHECK_LIB([iaf], [ia_openinfo], [
Tim Rice99203ec2007-03-26 09:35:28 -07003025 LIBS="$LIBS -liaf"
Tim Rice648f8762011-01-26 12:38:57 -08003026 AC_CHECK_FUNCS([set_id], [SSHDLIBS="$SSHDLIBS -liaf"
3027 AC_DEFINE([HAVE_LIBIAF], [1],
Tim Ricee1d93702016-05-31 11:13:22 -07003028 [Define if system has libiaf that supports set_id])
Tim Rice0eeaf122007-09-10 16:24:17 -07003029 ])
Tim Rice99203ec2007-03-26 09:35:28 -07003030])
3031LIBS="$saved_LIBS"
Damien Miller6c21c512002-01-22 21:57:53 +11003032
3033### Configure cryptographic random number support
3034
Damien Miller10479cc2018-04-10 10:19:02 +10003035# Check whether OpenSSL seeds itself
Damien Miller72ef7c12015-01-15 02:21:31 +11003036if test "x$openssl" = "xyes" ; then
3037 AC_MSG_CHECKING([whether OpenSSL's PRNG is internally seeded])
3038 AC_RUN_IFELSE(
3039 [AC_LANG_PROGRAM([[
3040 #include <string.h>
3041 #include <openssl/rand.h>
3042 ]], [[
3043 exit(RAND_status() == 1 ? 0 : 1);
3044 ]])],
3045 [
3046 OPENSSL_SEEDS_ITSELF=yes
3047 AC_MSG_RESULT([yes])
3048 ],
3049 [
3050 AC_MSG_RESULT([no])
3051 ],
3052 [
3053 AC_MSG_WARN([cross compiling: assuming yes])
3054 # This is safe, since we will fatal() at runtime if
3055 # OpenSSL is not seeded correctly.
3056 OPENSSL_SEEDS_ITSELF=yes
3057 ]
3058 )
3059fi
Damien Miller6c21c512002-01-22 21:57:53 +11003060
Damien Millerf22019b2011-05-05 13:48:37 +10003061# PRNGD TCP socket
3062AC_ARG_WITH([prngd-port],
3063 [ --with-prngd-port=PORT read entropy from PRNGD/EGD TCP localhost:PORT],
3064 [
3065 case "$withval" in
3066 no)
3067 withval=""
3068 ;;
3069 [[0-9]]*)
3070 ;;
3071 *)
3072 AC_MSG_ERROR([You must specify a numeric port number for --with-prngd-port])
3073 ;;
3074 esac
3075 if test ! -z "$withval" ; then
3076 PRNGD_PORT="$withval"
3077 AC_DEFINE_UNQUOTED([PRNGD_PORT], [$PRNGD_PORT],
3078 [Port number of PRNGD/EGD random number socket])
3079 fi
3080 ]
3081)
3082
3083# PRNGD Unix domain socket
3084AC_ARG_WITH([prngd-socket],
3085 [ --with-prngd-socket=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
3086 [
3087 case "$withval" in
3088 yes)
3089 withval="/var/run/egd-pool"
3090 ;;
3091 no)
3092 withval=""
3093 ;;
3094 /*)
3095 ;;
3096 *)
3097 AC_MSG_ERROR([You must specify an absolute path to the entropy socket])
3098 ;;
3099 esac
3100
3101 if test ! -z "$withval" ; then
3102 if test ! -z "$PRNGD_PORT" ; then
3103 AC_MSG_ERROR([You may not specify both a PRNGD/EGD port and socket])
3104 fi
3105 if test ! -r "$withval" ; then
3106 AC_MSG_WARN([Entropy socket is not readable])
3107 fi
3108 PRNGD_SOCKET="$withval"
3109 AC_DEFINE_UNQUOTED([PRNGD_SOCKET], ["$PRNGD_SOCKET"],
3110 [Location of PRNGD/EGD random number socket])
3111 fi
3112 ],
3113 [
3114 # Check for existing socket only if we don't have a random device already
3115 if test "x$OPENSSL_SEEDS_ITSELF" != "xyes" ; then
3116 AC_MSG_CHECKING([for PRNGD/EGD socket])
3117 # Insert other locations here
3118 for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do
3119 if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then
3120 PRNGD_SOCKET="$sock"
3121 AC_DEFINE_UNQUOTED([PRNGD_SOCKET], ["$PRNGD_SOCKET"])
3122 break;
3123 fi
3124 done
3125 if test ! -z "$PRNGD_SOCKET" ; then
3126 AC_MSG_RESULT([$PRNGD_SOCKET])
3127 else
3128 AC_MSG_RESULT([not found])
3129 fi
3130 fi
3131 ]
3132)
3133
3134# Which randomness source do we use?
3135if test ! -z "$PRNGD_PORT" ; then
3136 RAND_MSG="PRNGd port $PRNGD_PORT"
3137elif test ! -z "$PRNGD_SOCKET" ; then
3138 RAND_MSG="PRNGd socket $PRNGD_SOCKET"
3139elif test ! -z "$OPENSSL_SEEDS_ITSELF" ; then
3140 AC_DEFINE([OPENSSL_PRNG_ONLY], [1],
Damien Miller72ef7c12015-01-15 02:21:31 +11003141 [Define if you want the OpenSSL internally seeded PRNG only])
Damien Millerf22019b2011-05-05 13:48:37 +10003142 RAND_MSG="OpenSSL internal ONLY"
Damien Miller72ef7c12015-01-15 02:21:31 +11003143elif test "x$openssl" = "xno" ; then
3144 AC_MSG_WARN([OpenSSH will use /dev/urandom as a source of random numbers. It will fail if this device is not supported or accessible])
Damien Millerf22019b2011-05-05 13:48:37 +10003145else
3146 AC_MSG_ERROR([OpenSSH has no source of random numbers. Please configure OpenSSL with an entropy source or re-run configure using one of the --with-prngd-port or --with-prngd-socket options])
3147fi
3148
Darren Tucker3e6bde42006-08-20 20:03:50 +10003149# Check for PAM libs
3150PAM_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08003151AC_ARG_WITH([pam],
Darren Tucker3e6bde42006-08-20 20:03:50 +10003152 [ --with-pam Enable PAM support ],
3153 [
3154 if test "x$withval" != "xno" ; then
3155 if test "x$ac_cv_header_security_pam_appl_h" != "xyes" && \
3156 test "x$ac_cv_header_pam_pam_appl_h" != "xyes" ; then
3157 AC_MSG_ERROR([PAM headers not found])
3158 fi
3159
3160 saved_LIBS="$LIBS"
Tim Rice648f8762011-01-26 12:38:57 -08003161 AC_CHECK_LIB([dl], [dlopen], , )
3162 AC_CHECK_LIB([pam], [pam_set_item], , [AC_MSG_ERROR([*** libpam missing])])
3163 AC_CHECK_FUNCS([pam_getenvlist])
3164 AC_CHECK_FUNCS([pam_putenv])
Darren Tucker3e6bde42006-08-20 20:03:50 +10003165 LIBS="$saved_LIBS"
3166
3167 PAM_MSG="yes"
3168
Darren Tucker20e9f972007-03-25 18:26:01 +10003169 SSHDLIBS="$SSHDLIBS -lpam"
Tim Rice648f8762011-01-26 12:38:57 -08003170 AC_DEFINE([USE_PAM], [1],
Darren Tucker3e6bde42006-08-20 20:03:50 +10003171 [Define if you want to enable PAM support])
Darren Tucker639bbe82006-08-20 20:17:53 +10003172
Darren Tucker3e6bde42006-08-20 20:03:50 +10003173 if test $ac_cv_lib_dl_dlopen = yes; then
Darren Tucker639bbe82006-08-20 20:17:53 +10003174 case "$LIBS" in
3175 *-ldl*)
3176 # libdl already in LIBS
3177 ;;
3178 *)
Darren Tucker20e9f972007-03-25 18:26:01 +10003179 SSHDLIBS="$SSHDLIBS -ldl"
Darren Tucker639bbe82006-08-20 20:17:53 +10003180 ;;
3181 esac
Darren Tucker3e6bde42006-08-20 20:03:50 +10003182 fi
Darren Tucker3e6bde42006-08-20 20:03:50 +10003183 fi
3184 ]
3185)
3186
Damien Miller8bd81e12016-08-16 13:30:56 +10003187AC_ARG_WITH([pam-service],
3188 [ --with-pam-service=name Specify PAM service name ],
3189 [
3190 if test "x$withval" != "xno" && \
3191 test "x$withval" != "xyes" ; then
3192 AC_DEFINE_UNQUOTED([SSHD_PAM_SERVICE],
3193 ["$withval"], [sshd PAM service name])
3194 fi
3195 ]
3196)
3197
Darren Tucker3e6bde42006-08-20 20:03:50 +10003198# Check for older PAM
3199if test "x$PAM_MSG" = "xyes" ; then
3200 # Check PAM strerror arguments (old PAM)
3201 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
Tim Rice648f8762011-01-26 12:38:57 -08003202 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tucker3e6bde42006-08-20 20:03:50 +10003203#include <stdlib.h>
3204#if defined(HAVE_SECURITY_PAM_APPL_H)
3205#include <security/pam_appl.h>
3206#elif defined (HAVE_PAM_PAM_APPL_H)
3207#include <pam/pam_appl.h>
3208#endif
Tim Rice648f8762011-01-26 12:38:57 -08003209 ]], [[
3210(void)pam_strerror((pam_handle_t *)NULL, -1);
3211 ]])], [AC_MSG_RESULT([no])], [
3212 AC_DEFINE([HAVE_OLD_PAM], [1],
Darren Tucker3e6bde42006-08-20 20:03:50 +10003213 [Define if you have an old version of PAM
3214 which takes only one argument to pam_strerror])
Tim Rice648f8762011-01-26 12:38:57 -08003215 AC_MSG_RESULT([yes])
Darren Tucker3e6bde42006-08-20 20:03:50 +10003216 PAM_MSG="yes (old library)"
Damien Miller72ef7c12015-01-15 02:21:31 +11003217
Tim Rice648f8762011-01-26 12:38:57 -08003218 ])
Darren Tucker3e6bde42006-08-20 20:03:50 +10003219fi
Damien Miller6c21c512002-01-22 21:57:53 +11003220
Damien Miller6482d902014-05-27 14:34:42 +10003221case "$host" in
3222*-*-cygwin*)
3223 SSH_PRIVSEP_USER=CYGWIN_SSH_PRIVSEP_USER
3224 ;;
3225*)
3226 SSH_PRIVSEP_USER=sshd
3227 ;;
3228esac
Tim Rice648f8762011-01-26 12:38:57 -08003229AC_ARG_WITH([privsep-user],
Kevin Stevesc81e1292002-05-13 03:51:40 +00003230 [ --with-privsep-user=user Specify non-privileged user for privilege separation],
Kevin Steves7ff91122002-04-07 19:22:54 +00003231 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003232 if test -n "$withval" && test "x$withval" != "xno" && \
3233 test "x${withval}" != "xyes"; then
Damien Millerd3f6ad22002-06-25 10:24:47 +10003234 SSH_PRIVSEP_USER=$withval
Kevin Steves7ff91122002-04-07 19:22:54 +00003235 fi
Tim Riceeae17cc2005-03-17 16:52:20 -08003236 ]
Kevin Steves7ff91122002-04-07 19:22:54 +00003237)
Damien Miller6482d902014-05-27 14:34:42 +10003238if test "x$SSH_PRIVSEP_USER" = "xCYGWIN_SSH_PRIVSEP_USER" ; then
3239 AC_DEFINE_UNQUOTED([SSH_PRIVSEP_USER], [CYGWIN_SSH_PRIVSEP_USER],
3240 [Cygwin function to fetch non-privileged user for privilege separation])
3241else
3242 AC_DEFINE_UNQUOTED([SSH_PRIVSEP_USER], ["$SSH_PRIVSEP_USER"],
3243 [non-privileged user for privilege separation])
3244fi
Tim Rice648f8762011-01-26 12:38:57 -08003245AC_SUBST([SSH_PRIVSEP_USER])
Kevin Steves7ff91122002-04-07 19:22:54 +00003246
Damien Miller91f40d82013-02-22 11:37:00 +11003247if test "x$have_linux_no_new_privs" = "x1" ; then
3248AC_CHECK_DECL([SECCOMP_MODE_FILTER], [have_seccomp_filter=1], , [
3249 #include <sys/types.h>
3250 #include <linux/seccomp.h>
3251])
3252fi
3253if test "x$have_seccomp_filter" = "x1" ; then
3254AC_MSG_CHECKING([kernel for seccomp_filter support])
3255AC_LINK_IFELSE([AC_LANG_PROGRAM([[
3256 #include <errno.h>
3257 #include <elf.h>
3258 #include <linux/audit.h>
3259 #include <linux/seccomp.h>
3260 #include <stdlib.h>
3261 #include <sys/prctl.h>
3262 ]],
3263 [[ int i = $seccomp_audit_arch;
3264 errno = 0;
3265 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, NULL, 0, 0);
3266 exit(errno == EFAULT ? 0 : 1); ]])],
3267 [ AC_MSG_RESULT([yes]) ], [
3268 AC_MSG_RESULT([no])
3269 # Disable seccomp filter as a target
3270 have_seccomp_filter=0
3271 ]
3272)
3273fi
3274
Damien Miller69ff1df2011-06-23 08:30:03 +10003275# Decide which sandbox style to use
3276sandbox_arg=""
3277AC_ARG_WITH([sandbox],
deraadt@openbsd.org2539dce2015-10-09 01:37:08 +00003278 [ --with-sandbox=style Specify privilege separation sandbox (no, capsicum, darwin, rlimit, seccomp_filter, systrace, pledge)],
Damien Miller69ff1df2011-06-23 08:30:03 +10003279 [
3280 if test "x$withval" = "xyes" ; then
3281 sandbox_arg=""
3282 else
3283 sandbox_arg="$withval"
3284 fi
3285 ]
3286)
Darren Tucker60395f92012-07-03 14:31:18 +10003287
3288# Some platforms (seems to be the ones that have a kernel poll(2)-type
3289# function with which they implement select(2)) use an extra file descriptor
3290# when calling select(2), which means we can't use the rlimit sandbox.
3291AC_MSG_CHECKING([if select works with descriptor rlimit])
3292AC_RUN_IFELSE(
3293 [AC_LANG_PROGRAM([[
3294#include <sys/types.h>
3295#ifdef HAVE_SYS_TIME_H
3296# include <sys/time.h>
3297#endif
3298#include <sys/resource.h>
3299#ifdef HAVE_SYS_SELECT_H
3300# include <sys/select.h>
3301#endif
3302#include <errno.h>
3303#include <fcntl.h>
3304#include <stdlib.h>
3305 ]],[[
3306 struct rlimit rl_zero;
3307 int fd, r;
3308 fd_set fds;
Damien Millere4f43472013-03-08 12:14:22 +11003309 struct timeval tv;
Darren Tucker60395f92012-07-03 14:31:18 +10003310
3311 fd = open("/dev/null", O_RDONLY);
3312 FD_ZERO(&fds);
3313 FD_SET(fd, &fds);
3314 rl_zero.rlim_cur = rl_zero.rlim_max = 0;
3315 setrlimit(RLIMIT_FSIZE, &rl_zero);
3316 setrlimit(RLIMIT_NOFILE, &rl_zero);
Damien Millere4f43472013-03-08 12:14:22 +11003317 tv.tv_sec = 1;
3318 tv.tv_usec = 0;
3319 r = select(fd+1, &fds, NULL, NULL, &tv);
Darren Tucker60395f92012-07-03 14:31:18 +10003320 exit (r == -1 ? 1 : 0);
3321 ]])],
3322 [AC_MSG_RESULT([yes])
3323 select_works_with_rlimit=yes],
3324 [AC_MSG_RESULT([no])
3325 select_works_with_rlimit=no],
Mike Frysingerdcc714c2017-05-24 23:21:19 -04003326 [AC_MSG_WARN([cross compiling: assuming yes])
3327 select_works_with_rlimit=yes]
Darren Tucker60395f92012-07-03 14:31:18 +10003328)
3329
Darren Tuckerff008de2013-03-06 17:48:48 +11003330AC_MSG_CHECKING([if setrlimit(RLIMIT_NOFILE,{0,0}) works])
3331AC_RUN_IFELSE(
3332 [AC_LANG_PROGRAM([[
3333#include <sys/types.h>
3334#ifdef HAVE_SYS_TIME_H
3335# include <sys/time.h>
3336#endif
3337#include <sys/resource.h>
3338#include <errno.h>
3339#include <stdlib.h>
3340 ]],[[
3341 struct rlimit rl_zero;
3342 int fd, r;
3343 fd_set fds;
3344
3345 rl_zero.rlim_cur = rl_zero.rlim_max = 0;
3346 r = setrlimit(RLIMIT_NOFILE, &rl_zero);
3347 exit (r == -1 ? 1 : 0);
3348 ]])],
3349 [AC_MSG_RESULT([yes])
3350 rlimit_nofile_zero_works=yes],
3351 [AC_MSG_RESULT([no])
3352 rlimit_nofile_zero_works=no],
Mike Frysingerdcc714c2017-05-24 23:21:19 -04003353 [AC_MSG_WARN([cross compiling: assuming yes])
3354 rlimit_nofile_zero_works=yes]
Darren Tuckerff008de2013-03-06 17:48:48 +11003355)
3356
Darren Tuckerd545a4b2012-07-03 22:48:31 +10003357AC_MSG_CHECKING([if setrlimit RLIMIT_FSIZE works])
3358AC_RUN_IFELSE(
3359 [AC_LANG_PROGRAM([[
3360#include <sys/types.h>
3361#include <sys/resource.h>
3362#include <stdlib.h>
3363 ]],[[
3364 struct rlimit rl_zero;
3365
3366 rl_zero.rlim_cur = rl_zero.rlim_max = 0;
3367 exit(setrlimit(RLIMIT_FSIZE, &rl_zero) != 0);
3368 ]])],
3369 [AC_MSG_RESULT([yes])],
3370 [AC_MSG_RESULT([no])
3371 AC_DEFINE(SANDBOX_SKIP_RLIMIT_FSIZE, 1,
3372 [setrlimit RLIMIT_FSIZE works])],
3373 [AC_MSG_WARN([cross compiling: assuming yes])]
3374)
3375
deraadt@openbsd.org2539dce2015-10-09 01:37:08 +00003376if test "x$sandbox_arg" = "xpledge" || \
3377 ( test -z "$sandbox_arg" && test "x$ac_cv_func_pledge" = "xyes" ) ; then
3378 test "x$ac_cv_func_pledge" != "xyes" && \
3379 AC_MSG_ERROR([pledge sandbox requires pledge(2) support])
3380 SANDBOX_STYLE="pledge"
Damien Millerfafe1d82015-10-14 09:22:15 -07003381 AC_DEFINE([SANDBOX_PLEDGE], [1], [Sandbox using pledge(2)])
Damien Miller9846a2f2015-10-08 04:30:48 +11003382elif test "x$sandbox_arg" = "xsystrace" || \
Damien Miller69ff1df2011-06-23 08:30:03 +10003383 ( test -z "$sandbox_arg" && test "x$have_systr_policy_kill" = "x1" ) ; then
Damien Miller1a91c0f2011-08-17 11:59:25 +10003384 test "x$have_systr_policy_kill" != "x1" && \
3385 AC_MSG_ERROR([systrace sandbox requires systrace headers and SYSTR_POLICY_KILL support])
Damien Miller69ff1df2011-06-23 08:30:03 +10003386 SANDBOX_STYLE="systrace"
3387 AC_DEFINE([SANDBOX_SYSTRACE], [1], [Sandbox using systrace(4)])
Damien Millercd5e52e2011-06-27 07:18:18 +10003388elif test "x$sandbox_arg" = "xdarwin" || \
3389 ( test -z "$sandbox_arg" && test "x$ac_cv_func_sandbox_init" = "xyes" && \
3390 test "x$ac_cv_header_sandbox_h" = "xyes") ; then
Damien Miller1a91c0f2011-08-17 11:59:25 +10003391 test "x$ac_cv_func_sandbox_init" != "xyes" -o \
3392 "x$ac_cv_header_sandbox_h" != "xyes" && \
3393 AC_MSG_ERROR([Darwin seatbelt sandbox requires sandbox.h and sandbox_init function])
Damien Millercd5e52e2011-06-27 07:18:18 +10003394 SANDBOX_STYLE="darwin"
3395 AC_DEFINE([SANDBOX_DARWIN], [1], [Sandbox using Darwin sandbox_init(3)])
Damien Millere0956e32012-04-04 11:27:54 +10003396elif test "x$sandbox_arg" = "xseccomp_filter" || \
3397 ( test -z "$sandbox_arg" && \
Darren Tuckerd0494fd2012-05-19 14:25:39 +10003398 test "x$have_seccomp_filter" = "x1" && \
Damien Miller91f40d82013-02-22 11:37:00 +11003399 test "x$ac_cv_header_elf_h" = "xyes" && \
Damien Millere0956e32012-04-04 11:27:54 +10003400 test "x$ac_cv_header_linux_audit_h" = "xyes" && \
Damien Miller91f40d82013-02-22 11:37:00 +11003401 test "x$ac_cv_header_linux_filter_h" = "xyes" && \
3402 test "x$seccomp_audit_arch" != "x" && \
Damien Millere0956e32012-04-04 11:27:54 +10003403 test "x$have_linux_no_new_privs" = "x1" && \
3404 test "x$ac_cv_func_prctl" = "xyes" ) ; then
Damien Miller91f40d82013-02-22 11:37:00 +11003405 test "x$seccomp_audit_arch" = "x" && \
Damien Millere0956e32012-04-04 11:27:54 +10003406 AC_MSG_ERROR([seccomp_filter sandbox not supported on $host])
3407 test "x$have_linux_no_new_privs" != "x1" && \
3408 AC_MSG_ERROR([seccomp_filter sandbox requires PR_SET_NO_NEW_PRIVS])
3409 test "x$have_seccomp_filter" != "x1" && \
3410 AC_MSG_ERROR([seccomp_filter sandbox requires seccomp headers])
3411 test "x$ac_cv_func_prctl" != "xyes" && \
3412 AC_MSG_ERROR([seccomp_filter sandbox requires prctl function])
3413 SANDBOX_STYLE="seccomp_filter"
3414 AC_DEFINE([SANDBOX_SECCOMP_FILTER], [1], [Sandbox using seccomp filter])
Damien Millerf62ecef2014-01-25 12:34:38 +11003415elif test "x$sandbox_arg" = "xcapsicum" || \
3416 ( test -z "$sandbox_arg" && \
Darren Tuckerdd9d9b32017-08-28 16:48:27 +10003417 test "x$ac_cv_header_sys_capsicum_h" = "xyes" && \
Damien Miller603b8f42014-01-25 13:16:59 +11003418 test "x$ac_cv_func_cap_rights_limit" = "xyes") ; then
Darren Tuckerdd9d9b32017-08-28 16:48:27 +10003419 test "x$ac_cv_header_sys_capsicum_h" != "xyes" && \
3420 AC_MSG_ERROR([capsicum sandbox requires sys/capsicum.h header])
Damien Miller603b8f42014-01-25 13:16:59 +11003421 test "x$ac_cv_func_cap_rights_limit" != "xyes" && \
Damien Millerc96d8532014-01-25 13:12:28 +11003422 AC_MSG_ERROR([capsicum sandbox requires cap_rights_limit function])
Damien Millerf62ecef2014-01-25 12:34:38 +11003423 SANDBOX_STYLE="capsicum"
3424 AC_DEFINE([SANDBOX_CAPSICUM], [1], [Sandbox using capsicum])
Damien Miller69ff1df2011-06-23 08:30:03 +10003425elif test "x$sandbox_arg" = "xrlimit" || \
Darren Tucker60395f92012-07-03 14:31:18 +10003426 ( test -z "$sandbox_arg" && test "x$ac_cv_func_setrlimit" = "xyes" && \
Darren Tuckerff008de2013-03-06 17:48:48 +11003427 test "x$select_works_with_rlimit" = "xyes" && \
3428 test "x$rlimit_nofile_zero_works" = "xyes" ) ; then
Damien Miller1a91c0f2011-08-17 11:59:25 +10003429 test "x$ac_cv_func_setrlimit" != "xyes" && \
3430 AC_MSG_ERROR([rlimit sandbox requires setrlimit function])
Darren Tucker60395f92012-07-03 14:31:18 +10003431 test "x$select_works_with_rlimit" != "xyes" && \
3432 AC_MSG_ERROR([rlimit sandbox requires select to work with rlimit])
Damien Miller69ff1df2011-06-23 08:30:03 +10003433 SANDBOX_STYLE="rlimit"
3434 AC_DEFINE([SANDBOX_RLIMIT], [1], [Sandbox using setrlimit(2)])
Damien Miller4626cba2016-01-08 14:24:56 +11003435elif test "x$sandbox_arg" = "xsolaris" || \
3436 ( test -z "$sandbox_arg" && test "x$SOLARIS_PRIVS" = "xyes" ) ; then
3437 SANDBOX_STYLE="solaris"
3438 AC_DEFINE([SANDBOX_SOLARIS], [1], [Sandbox using Solaris/Illumos privileges])
Damien Miller69ff1df2011-06-23 08:30:03 +10003439elif test -z "$sandbox_arg" || test "x$sandbox_arg" = "xno" || \
3440 test "x$sandbox_arg" = "xnone" || test "x$sandbox_arg" = "xnull" ; then
3441 SANDBOX_STYLE="none"
3442 AC_DEFINE([SANDBOX_NULL], [1], [no privsep sandboxing])
3443else
Tim Ricea6e60612011-08-17 21:48:22 -07003444 AC_MSG_ERROR([unsupported --with-sandbox])
Damien Miller69ff1df2011-06-23 08:30:03 +10003445fi
3446
Ben Lindstromb5628642000-10-18 00:02:25 +00003447# Cheap hack to ensure NEWS-OS libraries are arranged right.
3448if test ! -z "$SONY" ; then
3449 LIBS="$LIBS -liberty";
3450fi
3451
Damien Miller57f39152005-11-24 19:58:19 +11003452# Check for long long datatypes
3453AC_CHECK_TYPES([long long, unsigned long long, long double])
3454
3455# Check datatype sizes
Dag-Erling Smørgravd0153c72018-10-09 23:03:40 +02003456AC_CHECK_SIZEOF([short int])
3457AC_CHECK_SIZEOF([int])
3458AC_CHECK_SIZEOF([long int])
3459AC_CHECK_SIZEOF([long long int])
Damien Millerc6398ef1999-11-20 12:18:40 +11003460
Damien Millerfa2bb692002-04-23 23:22:25 +10003461# Sanity check long long for some platforms (AIX)
3462if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then
3463 ac_cv_sizeof_long_long_int=0
3464fi
3465
Darren Tucker537f1ed2005-10-25 18:38:33 +10003466# compute LLONG_MIN and LLONG_MAX if we don't know them.
3467if test -z "$have_llong_max"; then
3468 AC_MSG_CHECKING([for max value of long long])
3469 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08003470 [AC_LANG_PROGRAM([[
Darren Tucker537f1ed2005-10-25 18:38:33 +10003471#include <stdio.h>
3472/* Why is this so damn hard? */
3473#ifdef __GNUC__
3474# undef __GNUC__
3475#endif
3476#define __USE_ISOC99
3477#include <limits.h>
3478#define DATA "conftest.llminmax"
Darren Tuckerd1450db2006-03-13 19:06:51 +11003479#define my_abs(a) ((a) < 0 ? ((a) * -1) : (a))
3480
3481/*
3482 * printf in libc on some platforms (eg old Tru64) does not understand %lld so
3483 * we do this the hard way.
3484 */
3485static int
3486fprint_ll(FILE *f, long long n)
3487{
3488 unsigned int i;
3489 int l[sizeof(long long) * 8];
3490
3491 if (n < 0)
3492 if (fprintf(f, "-") < 0)
3493 return -1;
3494 for (i = 0; n != 0; i++) {
3495 l[i] = my_abs(n % 10);
3496 n /= 10;
3497 }
3498 do {
3499 if (fprintf(f, "%d", l[--i]) < 0)
3500 return -1;
3501 } while (i != 0);
3502 if (fprintf(f, " ") < 0)
3503 return -1;
3504 return 0;
3505}
Tim Rice648f8762011-01-26 12:38:57 -08003506 ]], [[
Darren Tucker537f1ed2005-10-25 18:38:33 +10003507 FILE *f;
3508 long long i, llmin, llmax = 0;
3509
3510 if((f = fopen(DATA,"w")) == NULL)
3511 exit(1);
3512
3513#if defined(LLONG_MIN) && defined(LLONG_MAX)
3514 fprintf(stderr, "Using system header for LLONG_MIN and LLONG_MAX\n");
3515 llmin = LLONG_MIN;
3516 llmax = LLONG_MAX;
3517#else
3518 fprintf(stderr, "Calculating LLONG_MIN and LLONG_MAX\n");
3519 /* This will work on one's complement and two's complement */
3520 for (i = 1; i > llmax; i <<= 1, i++)
3521 llmax = i;
3522 llmin = llmax + 1LL; /* wrap */
3523#endif
3524
3525 /* Sanity check */
3526 if (llmin + 1 < llmin || llmin - 1 < llmin || llmax + 1 > llmax
Darren Tuckerd1450db2006-03-13 19:06:51 +11003527 || llmax - 1 > llmax || llmin == llmax || llmin == 0
3528 || llmax == 0 || llmax < LONG_MAX || llmin > LONG_MIN) {
Darren Tucker537f1ed2005-10-25 18:38:33 +10003529 fprintf(f, "unknown unknown\n");
3530 exit(2);
3531 }
3532
Darren Tuckerd1450db2006-03-13 19:06:51 +11003533 if (fprint_ll(f, llmin) < 0)
Darren Tucker537f1ed2005-10-25 18:38:33 +10003534 exit(3);
Darren Tuckerd1450db2006-03-13 19:06:51 +11003535 if (fprint_ll(f, llmax) < 0)
3536 exit(4);
3537 if (fclose(f) < 0)
3538 exit(5);
Darren Tucker537f1ed2005-10-25 18:38:33 +10003539 exit(0);
Darren Tucker537f1ed2005-10-25 18:38:33 +10003540 ]])],
3541 [
3542 llong_min=`$AWK '{print $1}' conftest.llminmax`
3543 llong_max=`$AWK '{print $2}' conftest.llminmax`
3544
Tim Rice648f8762011-01-26 12:38:57 -08003545 AC_MSG_RESULT([$llong_max])
3546 AC_DEFINE_UNQUOTED([LLONG_MAX], [${llong_max}LL],
Darren Tucker537f1ed2005-10-25 18:38:33 +10003547 [max value of long long calculated by configure])
3548 AC_MSG_CHECKING([for min value of long long])
Tim Rice648f8762011-01-26 12:38:57 -08003549 AC_MSG_RESULT([$llong_min])
3550 AC_DEFINE_UNQUOTED([LLONG_MIN], [${llong_min}LL],
Darren Tucker537f1ed2005-10-25 18:38:33 +10003551 [min value of long long calculated by configure])
3552 ],
3553 [
Tim Rice648f8762011-01-26 12:38:57 -08003554 AC_MSG_RESULT([not found])
Darren Tucker537f1ed2005-10-25 18:38:33 +10003555 ],
3556 [
3557 AC_MSG_WARN([cross compiling: not checking])
3558 ]
3559 )
3560fi
3561
3562
Damien Millera22ba012000-03-02 23:09:20 +11003563# More checks for data types
Damien Millercaf6dd62000-08-29 11:33:50 +11003564AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
Tim Rice648f8762011-01-26 12:38:57 -08003565 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3566 [[ u_int a; a = 1;]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003567 [ ac_cv_have_u_int="yes" ], [ ac_cv_have_u_int="no"
Tim Rice648f8762011-01-26 12:38:57 -08003568 ])
Damien Millercaf6dd62000-08-29 11:33:50 +11003569])
3570if test "x$ac_cv_have_u_int" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003571 AC_DEFINE([HAVE_U_INT], [1], [define if you have u_int data type])
Damien Millercaf6dd62000-08-29 11:33:50 +11003572 have_u_int=1
3573fi
3574
Damien Miller61e50f12000-05-08 20:49:37 +10003575AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003576 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3577 [[ int8_t a; int16_t b; int32_t c; a = b = c = 1;]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003578 [ ac_cv_have_intxx_t="yes" ], [ ac_cv_have_intxx_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003579 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003580])
3581if test "x$ac_cv_have_intxx_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003582 AC_DEFINE([HAVE_INTXX_T], [1], [define if you have intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003583 have_intxx_t=1
3584fi
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003585
3586if (test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11003587 test "x$ac_cv_header_stdint_h" = "xyes")
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003588then
3589 AC_MSG_CHECKING([for intXX_t types in stdint.h])
Tim Rice648f8762011-01-26 12:38:57 -08003590 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <stdint.h> ]],
3591 [[ int8_t a; int16_t b; int32_t c; a = b = c = 1;]])],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003592 [
Tim Rice648f8762011-01-26 12:38:57 -08003593 AC_DEFINE([HAVE_INTXX_T])
3594 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003595 ], [ AC_MSG_RESULT([no])
Tim Rice648f8762011-01-26 12:38:57 -08003596 ])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003597fi
3598
Damien Miller578783e2000-09-23 14:12:24 +11003599AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003600 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Tim Rice907881e2002-07-18 11:44:50 -07003601#include <sys/types.h>
3602#ifdef HAVE_STDINT_H
3603# include <stdint.h>
3604#endif
3605#include <sys/socket.h>
3606#ifdef HAVE_SYS_BITYPES_H
3607# include <sys/bitypes.h>
3608#endif
Tim Rice648f8762011-01-26 12:38:57 -08003609 ]], [[
3610int64_t a; a = 1;
3611 ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003612 [ ac_cv_have_int64_t="yes" ], [ ac_cv_have_int64_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003613 ])
Damien Miller578783e2000-09-23 14:12:24 +11003614])
3615if test "x$ac_cv_have_int64_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003616 AC_DEFINE([HAVE_INT64_T], [1], [define if you have int64_t data type])
Tim Rice4cec93f2002-02-26 08:40:48 -08003617fi
3618
Damien Miller61e50f12000-05-08 20:49:37 +10003619AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003620 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3621 [[ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003622 [ ac_cv_have_u_intxx_t="yes" ], [ ac_cv_have_u_intxx_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003623 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003624])
3625if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003626 AC_DEFINE([HAVE_U_INTXX_T], [1], [define if you have u_intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003627 have_u_intxx_t=1
3628fi
Damien Millerc6398ef1999-11-20 12:18:40 +11003629
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003630if test -z "$have_u_intxx_t" ; then
3631 AC_MSG_CHECKING([for u_intXX_t types in sys/socket.h])
Tim Rice648f8762011-01-26 12:38:57 -08003632 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/socket.h> ]],
3633 [[ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;]])],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003634 [
Tim Rice648f8762011-01-26 12:38:57 -08003635 AC_DEFINE([HAVE_U_INTXX_T])
3636 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003637 ], [ AC_MSG_RESULT([no])
Tim Rice648f8762011-01-26 12:38:57 -08003638 ])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003639fi
3640
Damien Miller578783e2000-09-23 14:12:24 +11003641AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003642 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3643 [[ u_int64_t a; a = 1;]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003644 [ ac_cv_have_u_int64_t="yes" ], [ ac_cv_have_u_int64_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003645 ])
Damien Miller578783e2000-09-23 14:12:24 +11003646])
3647if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003648 AC_DEFINE([HAVE_U_INT64_T], [1], [define if you have u_int64_t data type])
Damien Miller578783e2000-09-23 14:12:24 +11003649 have_u_int64_t=1
3650fi
3651
Damien Millerc2868192014-01-30 10:21:19 +11003652if (test -z "$have_u_int64_t" && \
3653 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
3654then
Tim Rice4cec93f2002-02-26 08:40:48 -08003655 AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h])
Tim Rice648f8762011-01-26 12:38:57 -08003656 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/bitypes.h> ]],
3657 [[ u_int64_t a; a = 1]])],
Tim Rice4cec93f2002-02-26 08:40:48 -08003658 [
Tim Rice648f8762011-01-26 12:38:57 -08003659 AC_DEFINE([HAVE_U_INT64_T])
3660 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003661 ], [ AC_MSG_RESULT([no])
Tim Rice648f8762011-01-26 12:38:57 -08003662 ])
Tim Rice4cec93f2002-02-26 08:40:48 -08003663fi
3664
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003665if test -z "$have_u_intxx_t" ; then
3666 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003667 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003668#include <sys/types.h>
Tim Rice648f8762011-01-26 12:38:57 -08003669 ]], [[
3670 uint8_t a;
3671 uint16_t b;
3672 uint32_t c;
3673 a = b = c = 1;
3674 ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003675 [ ac_cv_have_uintxx_t="yes" ], [ ac_cv_have_uintxx_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003676 ])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003677 ])
3678 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003679 AC_DEFINE([HAVE_UINTXX_T], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003680 [define if you have uintxx_t data type])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003681 fi
3682fi
3683
Damien Millerc2868192014-01-30 10:21:19 +11003684if (test -z "$have_uintxx_t" && \
3685 test "x$ac_cv_header_stdint_h" = "xyes")
3686then
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003687 AC_MSG_CHECKING([for uintXX_t types in stdint.h])
Tim Rice648f8762011-01-26 12:38:57 -08003688 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <stdint.h> ]],
3689 [[ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;]])],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003690 [
Tim Rice648f8762011-01-26 12:38:57 -08003691 AC_DEFINE([HAVE_UINTXX_T])
3692 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003693 ], [ AC_MSG_RESULT([no])
Tim Rice648f8762011-01-26 12:38:57 -08003694 ])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003695fi
3696
Damien Millerc2868192014-01-30 10:21:19 +11003697if (test -z "$have_uintxx_t" && \
3698 test "x$ac_cv_header_inttypes_h" = "xyes")
3699then
Darren Tucker6d725682014-01-17 19:17:34 +11003700 AC_MSG_CHECKING([for uintXX_t types in inttypes.h])
3701 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <inttypes.h> ]],
3702 [[ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;]])],
3703 [
3704 AC_DEFINE([HAVE_UINTXX_T])
3705 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003706 ], [ AC_MSG_RESULT([no])
Darren Tucker6d725682014-01-17 19:17:34 +11003707 ])
3708fi
3709
Damien Milleredb82922000-06-20 13:25:52 +10003710if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11003711 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
Damien Millerb29ea912000-01-15 14:12:03 +11003712then
3713 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
Tim Rice648f8762011-01-26 12:38:57 -08003714 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller61e50f12000-05-08 20:49:37 +10003715#include <sys/bitypes.h>
Tim Rice648f8762011-01-26 12:38:57 -08003716 ]], [[
Damien Miller70494d12000-04-03 15:57:06 +10003717 int8_t a; int16_t b; int32_t c;
3718 u_int8_t e; u_int16_t f; u_int32_t g;
3719 a = b = c = e = f = g = 1;
Tim Rice648f8762011-01-26 12:38:57 -08003720 ]])],
Damien Millerb29ea912000-01-15 14:12:03 +11003721 [
Tim Rice648f8762011-01-26 12:38:57 -08003722 AC_DEFINE([HAVE_U_INTXX_T])
3723 AC_DEFINE([HAVE_INTXX_T])
3724 AC_MSG_RESULT([yes])
3725 ], [AC_MSG_RESULT([no])
3726 ])
Damien Millerb29ea912000-01-15 14:12:03 +11003727fi
3728
Damien Miller58be7382001-09-15 21:31:54 +10003729
3730AC_CACHE_CHECK([for u_char], ac_cv_have_u_char, [
Tim Rice648f8762011-01-26 12:38:57 -08003731 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3732 [[ u_char foo; foo = 125; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003733 [ ac_cv_have_u_char="yes" ], [ ac_cv_have_u_char="no"
Tim Rice648f8762011-01-26 12:38:57 -08003734 ])
Damien Miller58be7382001-09-15 21:31:54 +10003735])
3736if test "x$ac_cv_have_u_char" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003737 AC_DEFINE([HAVE_U_CHAR], [1], [define if you have u_char data type])
Damien Miller58be7382001-09-15 21:31:54 +10003738fi
3739
Darren Tucker007e3b32013-11-03 18:43:55 +11003740AC_CHECK_TYPES([intmax_t, uintmax_t], , , [
3741#include <sys/types.h>
3742#include <stdint.h>
3743])
3744
Tim Rice13aae5e2001-10-21 17:53:58 -07003745TYPE_SOCKLEN_T
Damien Miller74d0d4a1999-12-29 02:24:35 +11003746
Tim Rice648f8762011-01-26 12:38:57 -08003747AC_CHECK_TYPES([sig_atomic_t], , , [#include <signal.h>])
3748AC_CHECK_TYPES([fsblkcnt_t, fsfilcnt_t], , , [
Darren Tucker598eaa62008-06-09 03:32:29 +10003749#include <sys/types.h>
3750#ifdef HAVE_SYS_BITYPES_H
3751#include <sys/bitypes.h>
3752#endif
3753#ifdef HAVE_SYS_STATFS_H
3754#include <sys/statfs.h>
3755#endif
3756#ifdef HAVE_SYS_STATVFS_H
3757#include <sys/statvfs.h>
3758#endif
3759])
Tim Rice4cec93f2002-02-26 08:40:48 -08003760
Darren Tucker11057562018-02-25 11:22:57 +11003761AC_CHECK_MEMBERS([struct statfs.f_flags], [], [], [[
3762#include <sys/types.h>
3763#ifdef HAVE_SYS_BITYPES_H
3764#include <sys/bitypes.h>
3765#endif
3766#ifdef HAVE_SYS_STATFS_H
3767#include <sys/statfs.h>
3768#endif
3769#ifdef HAVE_SYS_STATVFS_H
3770#include <sys/statvfs.h>
3771#endif
3772#ifdef HAVE_SYS_VFS_H
3773#include <sys/vfs.h>
3774#endif
3775]])
3776
3777
Tim Rice648f8762011-01-26 12:38:57 -08003778AC_CHECK_TYPES([in_addr_t, in_port_t], , ,
Damien Miller848b9932005-02-24 12:12:34 +11003779[#include <sys/types.h>
3780#include <netinet/in.h>])
Darren Tuckerd9f88912005-02-20 21:01:48 +11003781
Damien Miller61e50f12000-05-08 20:49:37 +10003782AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003783 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3784 [[ size_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003785 [ ac_cv_have_size_t="yes" ], [ ac_cv_have_size_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003786 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003787])
3788if test "x$ac_cv_have_size_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003789 AC_DEFINE([HAVE_SIZE_T], [1], [define if you have size_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003790fi
Damien Miller95058511999-12-29 10:36:45 +11003791
Damien Miller615f9392000-05-17 22:53:33 +10003792AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003793 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3794 [[ ssize_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003795 [ ac_cv_have_ssize_t="yes" ], [ ac_cv_have_ssize_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003796 ])
Damien Miller615f9392000-05-17 22:53:33 +10003797])
3798if test "x$ac_cv_have_ssize_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003799 AC_DEFINE([HAVE_SSIZE_T], [1], [define if you have ssize_t data type])
Damien Miller615f9392000-05-17 22:53:33 +10003800fi
3801
Ben Lindstrom0d5af602001-01-09 00:50:29 +00003802AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003803 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <time.h> ]],
3804 [[ clock_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003805 [ ac_cv_have_clock_t="yes" ], [ ac_cv_have_clock_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003806 ])
Ben Lindstrom0d5af602001-01-09 00:50:29 +00003807])
3808if test "x$ac_cv_have_clock_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003809 AC_DEFINE([HAVE_CLOCK_T], [1], [define if you have clock_t data type])
Ben Lindstrom0d5af602001-01-09 00:50:29 +00003810fi
3811
Damien Millerb54b40e2000-06-23 08:23:34 +10003812AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003813 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Millerb54b40e2000-06-23 08:23:34 +10003814#include <sys/types.h>
3815#include <sys/socket.h>
Tim Rice648f8762011-01-26 12:38:57 -08003816 ]], [[ sa_family_t foo; foo = 1235; ]])],
3817 [ ac_cv_have_sa_family_t="yes" ],
3818 [ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller78315eb2000-09-29 23:01:36 +11003819#include <sys/types.h>
3820#include <sys/socket.h>
3821#include <netinet/in.h>
Tim Rice648f8762011-01-26 12:38:57 -08003822 ]], [[ sa_family_t foo; foo = 1235; ]])],
Damien Miller78315eb2000-09-29 23:01:36 +11003823 [ ac_cv_have_sa_family_t="yes" ],
Damien Millerb54b40e2000-06-23 08:23:34 +10003824 [ ac_cv_have_sa_family_t="no" ]
3825 )
Tim Rice648f8762011-01-26 12:38:57 -08003826 ])
Damien Millerb54b40e2000-06-23 08:23:34 +10003827])
3828if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003829 AC_DEFINE([HAVE_SA_FAMILY_T], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003830 [define if you have sa_family_t data type])
Damien Millerb54b40e2000-06-23 08:23:34 +10003831fi
3832
Damien Miller0f91b4e2000-06-18 15:43:25 +10003833AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003834 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3835 [[ pid_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003836 [ ac_cv_have_pid_t="yes" ], [ ac_cv_have_pid_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003837 ])
Damien Miller0f91b4e2000-06-18 15:43:25 +10003838])
3839if test "x$ac_cv_have_pid_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003840 AC_DEFINE([HAVE_PID_T], [1], [define if you have pid_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10003841fi
3842
3843AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003844 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3845 [[ mode_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003846 [ ac_cv_have_mode_t="yes" ], [ ac_cv_have_mode_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003847 ])
Damien Miller0f91b4e2000-06-18 15:43:25 +10003848])
3849if test "x$ac_cv_have_mode_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003850 AC_DEFINE([HAVE_MODE_T], [1], [define if you have mode_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10003851fi
3852
Damien Miller61e50f12000-05-08 20:49:37 +10003853
3854AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
Tim Rice648f8762011-01-26 12:38:57 -08003855 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller81171112000-04-23 11:14:01 +10003856#include <sys/types.h>
3857#include <sys/socket.h>
Tim Rice648f8762011-01-26 12:38:57 -08003858 ]], [[ struct sockaddr_storage s; ]])],
3859 [ ac_cv_have_struct_sockaddr_storage="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07003860 [ ac_cv_have_struct_sockaddr_storage="no"
Tim Rice648f8762011-01-26 12:38:57 -08003861 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003862])
3863if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003864 AC_DEFINE([HAVE_STRUCT_SOCKADDR_STORAGE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003865 [define if you have struct sockaddr_storage data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003866fi
Damien Miller34132e52000-01-14 15:45:46 +11003867
Damien Miller61e50f12000-05-08 20:49:37 +10003868AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
Tim Rice648f8762011-01-26 12:38:57 -08003869 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller7b22d652000-06-18 14:07:04 +10003870#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10003871#include <netinet/in.h>
Tim Rice648f8762011-01-26 12:38:57 -08003872 ]], [[ struct sockaddr_in6 s; s.sin6_family = 0; ]])],
3873 [ ac_cv_have_struct_sockaddr_in6="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07003874 [ ac_cv_have_struct_sockaddr_in6="no"
Tim Rice648f8762011-01-26 12:38:57 -08003875 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003876])
3877if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003878 AC_DEFINE([HAVE_STRUCT_SOCKADDR_IN6], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003879 [define if you have struct sockaddr_in6 data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003880fi
Damien Miller34132e52000-01-14 15:45:46 +11003881
Damien Miller61e50f12000-05-08 20:49:37 +10003882AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
Tim Rice648f8762011-01-26 12:38:57 -08003883 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller7b22d652000-06-18 14:07:04 +10003884#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10003885#include <netinet/in.h>
Tim Rice648f8762011-01-26 12:38:57 -08003886 ]], [[ struct in6_addr s; s.s6_addr[0] = 0; ]])],
3887 [ ac_cv_have_struct_in6_addr="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07003888 [ ac_cv_have_struct_in6_addr="no"
Tim Rice648f8762011-01-26 12:38:57 -08003889 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003890])
3891if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003892 AC_DEFINE([HAVE_STRUCT_IN6_ADDR], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003893 [define if you have struct in6_addr data type])
Tim Rice0f4d2c02008-11-18 21:26:41 -08003894
3895dnl Now check for sin6_scope_id
Tim Rice648f8762011-01-26 12:38:57 -08003896 AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id], , ,
Tim Rice0f4d2c02008-11-18 21:26:41 -08003897 [
3898#ifdef HAVE_SYS_TYPES_H
3899#include <sys/types.h>
3900#endif
3901#include <netinet/in.h>
3902 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003903fi
Damien Miller34132e52000-01-14 15:45:46 +11003904
Damien Miller61e50f12000-05-08 20:49:37 +10003905AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
Tim Rice648f8762011-01-26 12:38:57 -08003906 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller81171112000-04-23 11:14:01 +10003907#include <sys/types.h>
3908#include <sys/socket.h>
3909#include <netdb.h>
Tim Rice648f8762011-01-26 12:38:57 -08003910 ]], [[ struct addrinfo s; s.ai_flags = AI_PASSIVE; ]])],
3911 [ ac_cv_have_struct_addrinfo="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07003912 [ ac_cv_have_struct_addrinfo="no"
Tim Rice648f8762011-01-26 12:38:57 -08003913 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003914])
3915if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003916 AC_DEFINE([HAVE_STRUCT_ADDRINFO], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003917 [define if you have struct addrinfo data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003918fi
3919
Ben Lindstrom42202bc2001-01-15 02:34:37 +00003920AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
Tim Rice648f8762011-01-26 12:38:57 -08003921 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/time.h> ]],
3922 [[ struct timeval tv; tv.tv_sec = 1;]])],
3923 [ ac_cv_have_struct_timeval="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07003924 [ ac_cv_have_struct_timeval="no"
Tim Rice648f8762011-01-26 12:38:57 -08003925 ])
Ben Lindstrom42202bc2001-01-15 02:34:37 +00003926])
3927if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003928 AC_DEFINE([HAVE_STRUCT_TIMEVAL], [1], [define if you have struct timeval])
Ben Lindstrom42202bc2001-01-15 02:34:37 +00003929 have_struct_timeval=1
3930fi
3931
Tim Rice648f8762011-01-26 12:38:57 -08003932AC_CHECK_TYPES([struct timespec])
Tim Rice4e4dc562003-03-18 10:21:40 -08003933
Damien Miller10479cc2018-04-10 10:19:02 +10003934# We need int64_t or else certain parts of the compile will fail.
Tim Rice8bb561b2005-03-17 16:23:19 -08003935if test "x$ac_cv_have_int64_t" = "xno" && \
3936 test "x$ac_cv_sizeof_long_int" != "x8" && \
3937 test "x$ac_cv_sizeof_long_long_int" = "x0" ; then
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00003938 echo "OpenSSH requires int64_t support. Contact your vendor or install"
3939 echo "an alternative compiler (I.E., GCC) before continuing."
3940 echo ""
3941 exit 1;
Tim Ricebee3f222001-03-11 17:32:12 -08003942else
3943dnl test snprintf (broken on SCO w/gcc)
Darren Tuckera0c2b392004-09-11 23:26:37 +10003944 AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10003945 [AC_LANG_SOURCE([[
Tim Ricebee3f222001-03-11 17:32:12 -08003946#include <stdio.h>
3947#include <string.h>
3948#ifdef HAVE_SNPRINTF
3949main()
3950{
3951 char buf[50];
3952 char expected_out[50];
3953 int mazsize = 50 ;
3954#if (SIZEOF_LONG_INT == 8)
3955 long int num = 0x7fffffffffffffff;
3956#else
Kevin Steves6482ec82001-07-15 02:09:28 +00003957 long long num = 0x7fffffffffffffffll;
Tim Ricebee3f222001-03-11 17:32:12 -08003958#endif
3959 strcpy(expected_out, "9223372036854775807");
3960 snprintf(buf, mazsize, "%lld", num);
3961 if(strcmp(buf, expected_out) != 0)
Damien Millera8e06ce2003-11-21 23:48:55 +11003962 exit(1);
Tim Ricebee3f222001-03-11 17:32:12 -08003963 exit(0);
3964}
3965#else
3966main() { exit(0); }
3967#endif
Tim Rice648f8762011-01-26 12:38:57 -08003968 ]])], [ true ], [ AC_DEFINE([BROKEN_SNPRINTF]) ],
Darren Tuckera0c2b392004-09-11 23:26:37 +10003969 AC_MSG_WARN([cross compiling: Assuming working snprintf()])
Tim Ricebee3f222001-03-11 17:32:12 -08003970 )
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00003971fi
3972
Damien Miller78315eb2000-09-29 23:01:36 +11003973dnl Checks for structure members
Tim Rice648f8762011-01-26 12:38:57 -08003974OSSH_CHECK_HEADER_FOR_FIELD([ut_host], [utmp.h], [HAVE_HOST_IN_UTMP])
3975OSSH_CHECK_HEADER_FOR_FIELD([ut_host], [utmpx.h], [HAVE_HOST_IN_UTMPX])
3976OSSH_CHECK_HEADER_FOR_FIELD([syslen], [utmpx.h], [HAVE_SYSLEN_IN_UTMPX])
3977OSSH_CHECK_HEADER_FOR_FIELD([ut_pid], [utmp.h], [HAVE_PID_IN_UTMP])
3978OSSH_CHECK_HEADER_FOR_FIELD([ut_type], [utmp.h], [HAVE_TYPE_IN_UTMP])
3979OSSH_CHECK_HEADER_FOR_FIELD([ut_type], [utmpx.h], [HAVE_TYPE_IN_UTMPX])
3980OSSH_CHECK_HEADER_FOR_FIELD([ut_tv], [utmp.h], [HAVE_TV_IN_UTMP])
3981OSSH_CHECK_HEADER_FOR_FIELD([ut_id], [utmp.h], [HAVE_ID_IN_UTMP])
3982OSSH_CHECK_HEADER_FOR_FIELD([ut_id], [utmpx.h], [HAVE_ID_IN_UTMPX])
3983OSSH_CHECK_HEADER_FOR_FIELD([ut_addr], [utmp.h], [HAVE_ADDR_IN_UTMP])
3984OSSH_CHECK_HEADER_FOR_FIELD([ut_addr], [utmpx.h], [HAVE_ADDR_IN_UTMPX])
3985OSSH_CHECK_HEADER_FOR_FIELD([ut_addr_v6], [utmp.h], [HAVE_ADDR_V6_IN_UTMP])
3986OSSH_CHECK_HEADER_FOR_FIELD([ut_addr_v6], [utmpx.h], [HAVE_ADDR_V6_IN_UTMPX])
3987OSSH_CHECK_HEADER_FOR_FIELD([ut_exit], [utmp.h], [HAVE_EXIT_IN_UTMP])
3988OSSH_CHECK_HEADER_FOR_FIELD([ut_time], [utmp.h], [HAVE_TIME_IN_UTMP])
3989OSSH_CHECK_HEADER_FOR_FIELD([ut_time], [utmpx.h], [HAVE_TIME_IN_UTMPX])
3990OSSH_CHECK_HEADER_FOR_FIELD([ut_tv], [utmpx.h], [HAVE_TV_IN_UTMPX])
Tim Rice13aae5e2001-10-21 17:53:58 -07003991
3992AC_CHECK_MEMBERS([struct stat.st_blksize])
Damien Millerbcd14852017-06-10 23:41:25 +10003993AC_CHECK_MEMBERS([struct stat.st_mtim])
3994AC_CHECK_MEMBERS([struct stat.st_mtime])
Damien Miller6332da22013-04-23 14:25:52 +10003995AC_CHECK_MEMBERS([struct passwd.pw_gecos, struct passwd.pw_class,
3996struct passwd.pw_change, struct passwd.pw_expire],
3997[], [], [[
3998#include <sys/types.h>
3999#include <pwd.h>
4000]])
4001
Tim Rice648f8762011-01-26 12:38:57 -08004002AC_CHECK_MEMBER([struct __res_state.retrans], [], [AC_DEFINE([__res_state], [state],
Darren Tucker58e298d2005-11-25 13:14:58 +11004003 [Define if we don't have struct __res_state in resolv.h])],
Damien Miller6332da22013-04-23 14:25:52 +10004004[[
Darren Tucker58e298d2005-11-25 13:14:58 +11004005#include <stdio.h>
4006#if HAVE_SYS_TYPES_H
4007# include <sys/types.h>
4008#endif
4009#include <netinet/in.h>
4010#include <arpa/nameser.h>
4011#include <resolv.h>
Damien Miller6332da22013-04-23 14:25:52 +10004012]])
andre2ff7b5d2000-06-03 14:57:40 +00004013
Damien Miller61e50f12000-05-08 20:49:37 +10004014AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
4015 ac_cv_have_ss_family_in_struct_ss, [
Tim Rice648f8762011-01-26 12:38:57 -08004016 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller81171112000-04-23 11:14:01 +10004017#include <sys/types.h>
4018#include <sys/socket.h>
Tim Rice648f8762011-01-26 12:38:57 -08004019 ]], [[ struct sockaddr_storage s; s.ss_family = 1; ]])],
4020 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
4021 [ ac_cv_have_ss_family_in_struct_ss="no" ])
Damien Miller61e50f12000-05-08 20:49:37 +10004022])
4023if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004024 AC_DEFINE([HAVE_SS_FAMILY_IN_SS], [1], [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10004025fi
4026
Damien Miller61e50f12000-05-08 20:49:37 +10004027AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
4028 ac_cv_have___ss_family_in_struct_ss, [
Tim Rice648f8762011-01-26 12:38:57 -08004029 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller81171112000-04-23 11:14:01 +10004030#include <sys/types.h>
4031#include <sys/socket.h>
Tim Rice648f8762011-01-26 12:38:57 -08004032 ]], [[ struct sockaddr_storage s; s.__ss_family = 1; ]])],
4033 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004034 [ ac_cv_have___ss_family_in_struct_ss="no"
Tim Rice648f8762011-01-26 12:38:57 -08004035 ])
Damien Miller61e50f12000-05-08 20:49:37 +10004036])
4037if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004038 AC_DEFINE([HAVE___SS_FAMILY_IN_SS], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004039 [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10004040fi
Damien Millerbf1c9b21999-12-09 10:16:54 +11004041
Tim Rice28bbb0c2002-05-27 17:37:32 -07004042dnl make sure we're using the real structure members and not defines
Kevin Steves939c9db2002-03-22 17:23:25 +00004043AC_CACHE_CHECK([for msg_accrights field in struct msghdr],
4044 ac_cv_have_accrights_in_msghdr, [
Tim Rice648f8762011-01-26 12:38:57 -08004045 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Tim Riceae49fe62002-04-12 10:26:21 -07004046#include <sys/types.h>
Kevin Steves939c9db2002-03-22 17:23:25 +00004047#include <sys/socket.h>
4048#include <sys/uio.h>
Tim Rice648f8762011-01-26 12:38:57 -08004049 ]], [[
Tim Rice28bbb0c2002-05-27 17:37:32 -07004050#ifdef msg_accrights
Darren Tuckera0c2b392004-09-11 23:26:37 +10004051#error "msg_accrights is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07004052exit(1);
4053#endif
4054struct msghdr m;
4055m.msg_accrights = 0;
4056exit(0);
Tim Rice648f8762011-01-26 12:38:57 -08004057 ]])],
Kevin Steves939c9db2002-03-22 17:23:25 +00004058 [ ac_cv_have_accrights_in_msghdr="yes" ],
4059 [ ac_cv_have_accrights_in_msghdr="no" ]
4060 )
4061])
4062if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004063 AC_DEFINE([HAVE_ACCRIGHTS_IN_MSGHDR], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004064 [Define if your system uses access rights style
4065 file descriptor passing])
Kevin Steves939c9db2002-03-22 17:23:25 +00004066fi
4067
Tim Rice648f8762011-01-26 12:38:57 -08004068AC_MSG_CHECKING([if struct statvfs.f_fsid is integral type])
4069AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckere1a3ddf2012-05-04 11:05:45 +10004070#include <sys/param.h>
Darren Tucker32780622009-06-16 16:11:02 +10004071#include <sys/stat.h>
4072#ifdef HAVE_SYS_TIME_H
4073# include <sys/time.h>
4074#endif
4075#ifdef HAVE_SYS_MOUNT_H
4076#include <sys/mount.h>
4077#endif
4078#ifdef HAVE_SYS_STATVFS_H
4079#include <sys/statvfs.h>
4080#endif
Tim Rice648f8762011-01-26 12:38:57 -08004081 ]], [[ struct statvfs s; s.f_fsid = 0; ]])],
4082 [ AC_MSG_RESULT([yes]) ],
4083 [ AC_MSG_RESULT([no])
Darren Tucker32780622009-06-16 16:11:02 +10004084
Tim Rice648f8762011-01-26 12:38:57 -08004085 AC_MSG_CHECKING([if fsid_t has member val])
4086 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tucker32780622009-06-16 16:11:02 +10004087#include <sys/types.h>
Tim Rice648f8762011-01-26 12:38:57 -08004088#include <sys/statvfs.h>
4089 ]], [[ fsid_t t; t.val[0] = 0; ]])],
4090 [ AC_MSG_RESULT([yes])
4091 AC_DEFINE([FSID_HAS_VAL], [1], [fsid_t has member val]) ],
4092 [ AC_MSG_RESULT([no]) ])
Darren Tucker32780622009-06-16 16:11:02 +10004093
Tim Rice648f8762011-01-26 12:38:57 -08004094 AC_MSG_CHECKING([if f_fsid has member __val])
4095 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tucker32780622009-06-16 16:11:02 +10004096#include <sys/types.h>
Tim Rice648f8762011-01-26 12:38:57 -08004097#include <sys/statvfs.h>
4098 ]], [[ fsid_t t; t.__val[0] = 0; ]])],
4099 [ AC_MSG_RESULT([yes])
4100 AC_DEFINE([FSID_HAS___VAL], [1], [fsid_t has member __val]) ],
4101 [ AC_MSG_RESULT([no]) ])
Darren Tucker32780622009-06-16 16:11:02 +10004102])
Darren Tucker77001382008-06-09 06:17:53 +10004103
Kevin Stevesa44e0352002-04-07 16:18:03 +00004104AC_CACHE_CHECK([for msg_control field in struct msghdr],
4105 ac_cv_have_control_in_msghdr, [
Tim Rice648f8762011-01-26 12:38:57 -08004106 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Tim Riceae49fe62002-04-12 10:26:21 -07004107#include <sys/types.h>
Kevin Stevesa44e0352002-04-07 16:18:03 +00004108#include <sys/socket.h>
4109#include <sys/uio.h>
Tim Rice648f8762011-01-26 12:38:57 -08004110 ]], [[
Tim Rice28bbb0c2002-05-27 17:37:32 -07004111#ifdef msg_control
Darren Tuckera0c2b392004-09-11 23:26:37 +10004112#error "msg_control is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07004113exit(1);
4114#endif
4115struct msghdr m;
4116m.msg_control = 0;
4117exit(0);
Tim Rice648f8762011-01-26 12:38:57 -08004118 ]])],
Kevin Stevesa44e0352002-04-07 16:18:03 +00004119 [ ac_cv_have_control_in_msghdr="yes" ],
4120 [ ac_cv_have_control_in_msghdr="no" ]
4121 )
4122])
4123if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004124 AC_DEFINE([HAVE_CONTROL_IN_MSGHDR], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004125 [Define if your system uses ancillary data style
4126 file descriptor passing])
Kevin Stevesa44e0352002-04-07 16:18:03 +00004127fi
4128
Damien Miller61e50f12000-05-08 20:49:37 +10004129AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
Tim Rice648f8762011-01-26 12:38:57 -08004130 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
4131 [[ extern char *__progname; printf("%s", __progname); ]])],
4132 [ ac_cv_libc_defines___progname="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004133 [ ac_cv_libc_defines___progname="no"
Tim Rice648f8762011-01-26 12:38:57 -08004134 ])
Damien Miller61e50f12000-05-08 20:49:37 +10004135])
4136if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004137 AC_DEFINE([HAVE___PROGNAME], [1], [Define if libc defines __progname])
Damien Miller61e50f12000-05-08 20:49:37 +10004138fi
4139
Kevin Steves4846f4a2002-03-22 18:19:53 +00004140AC_CACHE_CHECK([whether $CC implements __FUNCTION__], ac_cv_cc_implements___FUNCTION__, [
Tim Rice648f8762011-01-26 12:38:57 -08004141 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <stdio.h> ]],
4142 [[ printf("%s", __FUNCTION__); ]])],
4143 [ ac_cv_cc_implements___FUNCTION__="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004144 [ ac_cv_cc_implements___FUNCTION__="no"
Tim Rice648f8762011-01-26 12:38:57 -08004145 ])
Kevin Steves4846f4a2002-03-22 18:19:53 +00004146])
4147if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004148 AC_DEFINE([HAVE___FUNCTION__], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004149 [Define if compiler implements __FUNCTION__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00004150fi
4151
4152AC_CACHE_CHECK([whether $CC implements __func__], ac_cv_cc_implements___func__, [
Tim Rice648f8762011-01-26 12:38:57 -08004153 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <stdio.h> ]],
4154 [[ printf("%s", __func__); ]])],
4155 [ ac_cv_cc_implements___func__="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004156 [ ac_cv_cc_implements___func__="no"
Tim Rice648f8762011-01-26 12:38:57 -08004157 ])
Kevin Steves4846f4a2002-03-22 18:19:53 +00004158])
4159if test "x$ac_cv_cc_implements___func__" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004160 AC_DEFINE([HAVE___func__], [1], [Define if compiler implements __func__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00004161fi
4162
Damien Miller57f39152005-11-24 19:58:19 +11004163AC_CACHE_CHECK([whether va_copy exists], ac_cv_have_va_copy, [
Tim Rice648f8762011-01-26 12:38:57 -08004164 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
4165#include <stdarg.h>
4166va_list x,y;
4167 ]], [[ va_copy(x,y); ]])],
4168 [ ac_cv_have_va_copy="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004169 [ ac_cv_have_va_copy="no"
Tim Rice648f8762011-01-26 12:38:57 -08004170 ])
Damien Miller57f39152005-11-24 19:58:19 +11004171])
4172if test "x$ac_cv_have_va_copy" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004173 AC_DEFINE([HAVE_VA_COPY], [1], [Define if va_copy exists])
Damien Miller57f39152005-11-24 19:58:19 +11004174fi
4175
4176AC_CACHE_CHECK([whether __va_copy exists], ac_cv_have___va_copy, [
Tim Rice648f8762011-01-26 12:38:57 -08004177 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
4178#include <stdarg.h>
4179va_list x,y;
4180 ]], [[ __va_copy(x,y); ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07004181 [ ac_cv_have___va_copy="yes" ], [ ac_cv_have___va_copy="no"
Tim Rice648f8762011-01-26 12:38:57 -08004182 ])
Damien Miller57f39152005-11-24 19:58:19 +11004183])
4184if test "x$ac_cv_have___va_copy" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004185 AC_DEFINE([HAVE___VA_COPY], [1], [Define if __va_copy exists])
Damien Miller57f39152005-11-24 19:58:19 +11004186fi
4187
Damien Miller4f8e6692001-07-14 13:22:53 +10004188AC_CACHE_CHECK([whether getopt has optreset support],
4189 ac_cv_have_getopt_optreset, [
Tim Rice648f8762011-01-26 12:38:57 -08004190 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <getopt.h> ]],
4191 [[ extern int optreset; optreset = 0; ]])],
4192 [ ac_cv_have_getopt_optreset="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004193 [ ac_cv_have_getopt_optreset="no"
Tim Rice648f8762011-01-26 12:38:57 -08004194 ])
Damien Miller4f8e6692001-07-14 13:22:53 +10004195])
4196if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004197 AC_DEFINE([HAVE_GETOPT_OPTRESET], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004198 [Define if your getopt(3) defines and uses optreset])
Damien Miller4f8e6692001-07-14 13:22:53 +10004199fi
Damien Millera22ba012000-03-02 23:09:20 +11004200
Damien Millerecbb26d2000-07-15 14:59:14 +10004201AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
Tim Rice648f8762011-01-26 12:38:57 -08004202 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
4203[[ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);]])],
4204 [ ac_cv_libc_defines_sys_errlist="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004205 [ ac_cv_libc_defines_sys_errlist="no"
Tim Rice648f8762011-01-26 12:38:57 -08004206 ])
Damien Millerecbb26d2000-07-15 14:59:14 +10004207])
4208if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004209 AC_DEFINE([HAVE_SYS_ERRLIST], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004210 [Define if your system defines sys_errlist[]])
Damien Millerecbb26d2000-07-15 14:59:14 +10004211fi
4212
4213
Damien Miller11fa2cc2000-08-16 10:35:58 +10004214AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
Tim Rice648f8762011-01-26 12:38:57 -08004215 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
4216[[ extern int sys_nerr; printf("%i", sys_nerr);]])],
4217 [ ac_cv_libc_defines_sys_nerr="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004218 [ ac_cv_libc_defines_sys_nerr="no"
Tim Rice648f8762011-01-26 12:38:57 -08004219 ])
Damien Miller11fa2cc2000-08-16 10:35:58 +10004220])
4221if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004222 AC_DEFINE([HAVE_SYS_NERR], [1], [Define if your system defines sys_nerr])
Damien Miller11fa2cc2000-08-16 10:35:58 +10004223fi
4224
Darren Tucker5f88d342003-10-15 16:57:57 +10004225# Check libraries needed by DNS fingerprint support
Tim Rice648f8762011-01-26 12:38:57 -08004226AC_SEARCH_LIBS([getrrsetbyname], [resolv],
4227 [AC_DEFINE([HAVE_GETRRSETBYNAME], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004228 [Define if getrrsetbyname() exists])],
Damien Miller7abe09b2003-05-15 10:53:49 +10004229 [
Darren Tucker5f88d342003-10-15 16:57:57 +10004230 # Needed by our getrrsetbyname()
Tim Rice648f8762011-01-26 12:38:57 -08004231 AC_SEARCH_LIBS([res_query], [resolv])
4232 AC_SEARCH_LIBS([dn_expand], [resolv])
4233 AC_MSG_CHECKING([if res_query will link])
4234 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckere02b49a2009-09-11 14:56:08 +10004235#include <sys/types.h>
4236#include <netinet/in.h>
4237#include <arpa/nameser.h>
4238#include <netdb.h>
4239#include <resolv.h>
Tim Rice648f8762011-01-26 12:38:57 -08004240 ]], [[
Darren Tuckere02b49a2009-09-11 14:56:08 +10004241 res_query (0, 0, 0, 0, 0);
Tim Rice648f8762011-01-26 12:38:57 -08004242 ]])],
4243 AC_MSG_RESULT([yes]),
4244 [AC_MSG_RESULT([no])
Darren Tucker8e968a52004-05-13 11:56:16 +10004245 saved_LIBS="$LIBS"
4246 LIBS="$LIBS -lresolv"
Tim Rice648f8762011-01-26 12:38:57 -08004247 AC_MSG_CHECKING([for res_query in -lresolv])
4248 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckere02b49a2009-09-11 14:56:08 +10004249#include <sys/types.h>
4250#include <netinet/in.h>
4251#include <arpa/nameser.h>
4252#include <netdb.h>
Darren Tucker8e968a52004-05-13 11:56:16 +10004253#include <resolv.h>
Tim Rice648f8762011-01-26 12:38:57 -08004254 ]], [[
Darren Tucker8e968a52004-05-13 11:56:16 +10004255 res_query (0, 0, 0, 0, 0);
Tim Rice648f8762011-01-26 12:38:57 -08004256 ]])],
4257 [AC_MSG_RESULT([yes])],
Darren Tucker8e968a52004-05-13 11:56:16 +10004258 [LIBS="$saved_LIBS"
Tim Rice648f8762011-01-26 12:38:57 -08004259 AC_MSG_RESULT([no])])
Darren Tucker8e968a52004-05-13 11:56:16 +10004260 ])
Tim Rice648f8762011-01-26 12:38:57 -08004261 AC_CHECK_FUNCS([_getshort _getlong])
Darren Tuckerd886e1c2005-06-01 18:57:45 +10004262 AC_CHECK_DECLS([_getshort, _getlong], , ,
Tim Ricefcc7ff12005-06-02 20:28:29 -07004263 [#include <sys/types.h>
4264 #include <arpa/nameser.h>])
Tim Rice648f8762011-01-26 12:38:57 -08004265 AC_CHECK_MEMBER([HEADER.ad],
4266 [AC_DEFINE([HAVE_HEADER_AD], [1],
4267 [Define if HEADER.ad exists in arpa/nameser.h])], ,
Darren Tucker5f88d342003-10-15 16:57:57 +10004268 [#include <arpa/nameser.h>])
4269 ])
Damien Miller7abe09b2003-05-15 10:53:49 +10004270
Tim Rice648f8762011-01-26 12:38:57 -08004271AC_MSG_CHECKING([if struct __res_state _res is an extern])
4272AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckercc40d5e2007-04-29 13:58:06 +10004273#include <stdio.h>
4274#if HAVE_SYS_TYPES_H
4275# include <sys/types.h>
4276#endif
4277#include <netinet/in.h>
4278#include <arpa/nameser.h>
4279#include <resolv.h>
4280extern struct __res_state _res;
Darren Tucker7ad8b282015-09-11 13:11:02 +10004281 ]], [[
4282struct __res_state *volatile p = &_res; /* force resolution of _res */
4283return 0;
4284 ]],)],
Tim Rice648f8762011-01-26 12:38:57 -08004285 [AC_MSG_RESULT([yes])
4286 AC_DEFINE([HAVE__RES_EXTERN], [1],
Darren Tuckercc40d5e2007-04-29 13:58:06 +10004287 [Define if you have struct __res_state _res as an extern])
4288 ],
Tim Rice648f8762011-01-26 12:38:57 -08004289 [ AC_MSG_RESULT([no]) ]
Darren Tuckercc40d5e2007-04-29 13:58:06 +10004290)
4291
Damien Miller73b42d22006-04-22 21:26:08 +10004292# Check whether user wants SELinux support
4293SELINUX_MSG="no"
4294LIBSELINUX=""
Tim Rice648f8762011-01-26 12:38:57 -08004295AC_ARG_WITH([selinux],
Damien Miller5b1c8b32008-03-27 12:33:07 +11004296 [ --with-selinux Enable SELinux support],
Damien Miller73b42d22006-04-22 21:26:08 +10004297 [ if test "x$withval" != "xno" ; then
Darren Tucker20e9f972007-03-25 18:26:01 +10004298 save_LIBS="$LIBS"
Tim Rice648f8762011-01-26 12:38:57 -08004299 AC_DEFINE([WITH_SELINUX], [1],
4300 [Define if you want SELinux support.])
Damien Miller73b42d22006-04-22 21:26:08 +10004301 SELINUX_MSG="yes"
4302 AC_CHECK_HEADER([selinux/selinux.h], ,
Tim Rice648f8762011-01-26 12:38:57 -08004303 AC_MSG_ERROR([SELinux support requires selinux.h header]))
4304 AC_CHECK_LIB([selinux], [setexeccon],
Damien Miller1d2bfc42010-02-10 10:19:29 +11004305 [ LIBSELINUX="-lselinux"
4306 LIBS="$LIBS -lselinux"
4307 ],
Tim Rice648f8762011-01-26 12:38:57 -08004308 AC_MSG_ERROR([SELinux support requires libselinux library]))
Damien Miller71adf122011-01-25 12:16:15 +11004309 SSHLIBS="$SSHLIBS $LIBSELINUX"
Darren Tucker20e9f972007-03-25 18:26:01 +10004310 SSHDLIBS="$SSHDLIBS $LIBSELINUX"
Tim Rice648f8762011-01-26 12:38:57 -08004311 AC_CHECK_FUNCS([getseuserbyname get_default_context_with_level])
Darren Tuckeradc947d2006-10-07 09:07:20 +10004312 LIBS="$save_LIBS"
Damien Miller73b42d22006-04-22 21:26:08 +10004313 fi ]
4314)
Tim Rice648f8762011-01-26 12:38:57 -08004315AC_SUBST([SSHLIBS])
4316AC_SUBST([SSHDLIBS])
Damien Miller73b42d22006-04-22 21:26:08 +10004317
Damien Millerfd4c9ee2002-04-13 11:04:40 +10004318# Check whether user wants Kerberos 5 support
Damien Millera8e06ce2003-11-21 23:48:55 +11004319KRB5_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08004320AC_ARG_WITH([kerberos5],
Damien Millera8e06ce2003-11-21 23:48:55 +11004321 [ --with-kerberos5=PATH Enable Kerberos 5 support],
Darren Tucker1d3ca582004-01-22 12:05:34 +11004322 [ if test "x$withval" != "xno" ; then
4323 if test "x$withval" = "xyes" ; then
4324 KRB5ROOT="/usr/local"
4325 else
4326 KRB5ROOT=${withval}
4327 fi
4328
Tim Rice648f8762011-01-26 12:38:57 -08004329 AC_DEFINE([KRB5], [1], [Define if you want Kerberos 5 support])
Darren Tucker1d3ca582004-01-22 12:05:34 +11004330 KRB5_MSG="yes"
4331
Darren Tucker4089fc12016-12-08 12:57:24 +11004332 AC_PATH_TOOL([KRB5CONF], [krb5-config],
Darren Tuckerdad48e72009-09-01 18:26:00 +10004333 [$KRB5ROOT/bin/krb5-config],
4334 [$KRB5ROOT/bin:$PATH])
4335 if test -x $KRB5CONF ; then
Darren Tucker964de182013-02-22 10:39:59 +11004336 K5CFLAGS="`$KRB5CONF --cflags`"
4337 K5LIBS="`$KRB5CONF --libs`"
4338 CPPFLAGS="$CPPFLAGS $K5CFLAGS"
Darren Tucker1d3ca582004-01-22 12:05:34 +11004339
Tim Rice648f8762011-01-26 12:38:57 -08004340 AC_MSG_CHECKING([for gssapi support])
Darren Tucker1d3ca582004-01-22 12:05:34 +11004341 if $KRB5CONF | grep gssapi >/dev/null ; then
Tim Rice648f8762011-01-26 12:38:57 -08004342 AC_MSG_RESULT([yes])
4343 AC_DEFINE([GSSAPI], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004344 [Define this if you want GSSAPI
4345 support in the version 2 protocol])
Darren Tucker964de182013-02-22 10:39:59 +11004346 GSSCFLAGS="`$KRB5CONF --cflags gssapi`"
4347 GSSLIBS="`$KRB5CONF --libs gssapi`"
4348 CPPFLAGS="$CPPFLAGS $GSSCFLAGS"
Damien Millera8e06ce2003-11-21 23:48:55 +11004349 else
Tim Rice648f8762011-01-26 12:38:57 -08004350 AC_MSG_RESULT([no])
Damien Millera8e06ce2003-11-21 23:48:55 +11004351 fi
Tim Rice648f8762011-01-26 12:38:57 -08004352 AC_MSG_CHECKING([whether we are using Heimdal])
4353 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <krb5.h>
4354 ]], [[ char *tmp = heimdal_version; ]])],
4355 [ AC_MSG_RESULT([yes])
4356 AC_DEFINE([HEIMDAL], [1],
4357 [Define this if you are using the Heimdal
4358 version of Kerberos V5]) ],
4359 [AC_MSG_RESULT([no])
4360 ])
Darren Tucker1d3ca582004-01-22 12:05:34 +11004361 else
Damien Millerfd4c9ee2002-04-13 11:04:40 +10004362 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include"
Damien Millera8e06ce2003-11-21 23:48:55 +11004363 LDFLAGS="$LDFLAGS -L${KRB5ROOT}/lib"
Tim Rice648f8762011-01-26 12:38:57 -08004364 AC_MSG_CHECKING([whether we are using Heimdal])
4365 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <krb5.h>
4366 ]], [[ char *tmp = heimdal_version; ]])],
4367 [ AC_MSG_RESULT([yes])
4368 AC_DEFINE([HEIMDAL])
Damien Miller41bccf72011-01-02 21:53:07 +11004369 K5LIBS="-lkrb5"
Damien Miller5561e0b2004-04-20 20:28:55 +10004370 K5LIBS="$K5LIBS -lcom_err -lasn1"
Tim Rice648f8762011-01-26 12:38:57 -08004371 AC_CHECK_LIB([roken], [net_write],
Damien Miller5561e0b2004-04-20 20:28:55 +10004372 [K5LIBS="$K5LIBS -lroken"])
Tim Rice648f8762011-01-26 12:38:57 -08004373 AC_CHECK_LIB([des], [des_cbc_encrypt],
Damien Miller41bccf72011-01-02 21:53:07 +11004374 [K5LIBS="$K5LIBS -ldes"])
Tim Rice648f8762011-01-26 12:38:57 -08004375 ], [ AC_MSG_RESULT([no])
Damien Millera8e06ce2003-11-21 23:48:55 +11004376 K5LIBS="-lkrb5 -lk5crypto -lcom_err"
Tim Rice648f8762011-01-26 12:38:57 -08004377 ])
4378 AC_SEARCH_LIBS([dn_expand], [resolv])
Damien Millerfd4c9ee2002-04-13 11:04:40 +10004379
Tim Rice648f8762011-01-26 12:38:57 -08004380 AC_CHECK_LIB([gssapi_krb5], [gss_init_sec_context],
4381 [ AC_DEFINE([GSSAPI])
Darren Tucker964de182013-02-22 10:39:59 +11004382 GSSLIBS="-lgssapi_krb5" ],
Tim Rice648f8762011-01-26 12:38:57 -08004383 [ AC_CHECK_LIB([gssapi], [gss_init_sec_context],
4384 [ AC_DEFINE([GSSAPI])
Darren Tucker964de182013-02-22 10:39:59 +11004385 GSSLIBS="-lgssapi" ],
Darren Tuckera2b5a4c2013-02-22 10:43:15 +11004386 [ AC_CHECK_LIB([gss], [gss_init_sec_context],
4387 [ AC_DEFINE([GSSAPI])
4388 GSSLIBS="-lgss" ],
4389 AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]))
4390 ])
Darren Tucker964de182013-02-22 10:39:59 +11004391 ])
Tim Riceeae17cc2005-03-17 16:52:20 -08004392
Tim Rice648f8762011-01-26 12:38:57 -08004393 AC_CHECK_HEADER([gssapi.h], ,
Darren Tucker49aaf4a2003-08-26 11:58:16 +10004394 [ unset ac_cv_header_gssapi_h
Damien Millera8e06ce2003-11-21 23:48:55 +11004395 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
Tim Rice648f8762011-01-26 12:38:57 -08004396 AC_CHECK_HEADERS([gssapi.h], ,
Darren Tucker49aaf4a2003-08-26 11:58:16 +10004397 AC_MSG_WARN([Cannot find any suitable gss-api header - build may fail])
Damien Millera8e06ce2003-11-21 23:48:55 +11004398 )
Darren Tucker49aaf4a2003-08-26 11:58:16 +10004399 ]
4400 )
4401
4402 oldCPP="$CPPFLAGS"
4403 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
Tim Rice648f8762011-01-26 12:38:57 -08004404 AC_CHECK_HEADER([gssapi_krb5.h], ,
Darren Tucker49aaf4a2003-08-26 11:58:16 +10004405 [ CPPFLAGS="$oldCPP" ])
4406
Damien Millera8e06ce2003-11-21 23:48:55 +11004407 fi
Darren Tucker1d3ca582004-01-22 12:05:34 +11004408 if test ! -z "$need_dash_r" ; then
4409 LDFLAGS="$LDFLAGS -R${KRB5ROOT}/lib"
4410 fi
4411 if test ! -z "$blibpath" ; then
4412 blibpath="$blibpath:${KRB5ROOT}/lib"
4413 fi
Tim Ricefd9e9e32005-09-12 17:36:10 -07004414
Tim Rice648f8762011-01-26 12:38:57 -08004415 AC_CHECK_HEADERS([gssapi.h gssapi/gssapi.h])
4416 AC_CHECK_HEADERS([gssapi_krb5.h gssapi/gssapi_krb5.h])
4417 AC_CHECK_HEADERS([gssapi_generic.h gssapi/gssapi_generic.h])
Tim Ricefd9e9e32005-09-12 17:36:10 -07004418
Tim Rice648f8762011-01-26 12:38:57 -08004419 AC_SEARCH_LIBS([k_hasafs], [kafs], [AC_DEFINE([USE_AFS], [1],
4420 [Define this if you want to use libkafs' AFS support])])
Darren Tucker03978c62013-02-25 11:24:44 +11004421
4422 AC_CHECK_DECLS([GSS_C_NT_HOSTBASED_SERVICE], [], [], [[
4423#ifdef HAVE_GSSAPI_H
4424# include <gssapi.h>
4425#elif defined(HAVE_GSSAPI_GSSAPI_H)
4426# include <gssapi/gssapi.h>
4427#endif
4428
4429#ifdef HAVE_GSSAPI_GENERIC_H
4430# include <gssapi_generic.h>
4431#elif defined(HAVE_GSSAPI_GSSAPI_GENERIC_H)
4432# include <gssapi/gssapi_generic.h>
4433#endif
4434 ]])
Darren Tuckerf3ab2c52013-08-04 21:48:41 +10004435 saved_LIBS="$LIBS"
4436 LIBS="$LIBS $K5LIBS"
4437 AC_CHECK_FUNCS([krb5_cc_new_unique krb5_get_error_message krb5_free_error_message])
4438 LIBS="$saved_LIBS"
4439
Darren Tucker0d27ed12004-02-24 10:37:33 +11004440 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11004441 ]
Damien Millerfd4c9ee2002-04-13 11:04:40 +10004442)
Darren Tucker964de182013-02-22 10:39:59 +11004443AC_SUBST([GSSLIBS])
4444AC_SUBST([K5LIBS])
Damien Millerc79bc0d2001-03-28 13:03:42 +10004445
Damien Millera22ba012000-03-02 23:09:20 +11004446# Looking for programs, paths and files
Damien Millera22ba012000-03-02 23:09:20 +11004447
Damien Millerf58c6722002-05-13 13:15:42 +10004448PRIVSEP_PATH=/var/empty
Tim Rice648f8762011-01-26 12:38:57 -08004449AC_ARG_WITH([privsep-path],
Tim Ricecbb90662002-07-08 19:17:10 -07004450 [ --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty)],
Damien Millerf58c6722002-05-13 13:15:42 +10004451 [
Tim Rice35cc69d2005-03-17 16:44:25 -08004452 if test -n "$withval" && test "x$withval" != "xno" && \
4453 test "x${withval}" != "xyes"; then
Damien Millerf58c6722002-05-13 13:15:42 +10004454 PRIVSEP_PATH=$withval
4455 fi
4456 ]
4457)
Tim Rice648f8762011-01-26 12:38:57 -08004458AC_SUBST([PRIVSEP_PATH])
Damien Millerf58c6722002-05-13 13:15:42 +10004459
Tim Rice648f8762011-01-26 12:38:57 -08004460AC_ARG_WITH([xauth],
Damien Millera22ba012000-03-02 23:09:20 +11004461 [ --with-xauth=PATH Specify path to xauth program ],
4462 [
Tim Rice35cc69d2005-03-17 16:44:25 -08004463 if test -n "$withval" && test "x$withval" != "xno" && \
4464 test "x${withval}" != "xyes"; then
Damien Miller7b22d652000-06-18 14:07:04 +10004465 xauth_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11004466 fi
4467 ],
4468 [
Tim Ricee22be3b2002-07-17 19:20:07 -07004469 TestPath="$PATH"
4470 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X/bin"
4471 TestPath="${TestPath}${PATH_SEPARATOR}/usr/bin/X11"
4472 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X11R6/bin"
4473 TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin"
Tim Rice648f8762011-01-26 12:38:57 -08004474 AC_PATH_PROG([xauth_path], [xauth], , [$TestPath])
Damien Milleredb82922000-06-20 13:25:52 +10004475 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
Damien Millera22ba012000-03-02 23:09:20 +11004476 xauth_path="/usr/openwin/bin/xauth"
4477 fi
4478 ]
4479)
4480
Damien Miller7d901272003-01-13 16:55:22 +11004481STRIP_OPT=-s
Tim Rice648f8762011-01-26 12:38:57 -08004482AC_ARG_ENABLE([strip],
Damien Miller7d901272003-01-13 16:55:22 +11004483 [ --disable-strip Disable calling strip(1) on install],
4484 [
4485 if test "x$enableval" = "xno" ; then
4486 STRIP_OPT=
4487 fi
4488 ]
4489)
Tim Rice648f8762011-01-26 12:38:57 -08004490AC_SUBST([STRIP_OPT])
Damien Miller7d901272003-01-13 16:55:22 +11004491
Damien Millera19cf472000-11-29 13:28:50 +11004492if test -z "$xauth_path" ; then
4493 XAUTH_PATH="undefined"
Tim Rice648f8762011-01-26 12:38:57 -08004494 AC_SUBST([XAUTH_PATH])
Damien Millera19cf472000-11-29 13:28:50 +11004495else
Tim Rice648f8762011-01-26 12:38:57 -08004496 AC_DEFINE_UNQUOTED([XAUTH_PATH], ["$xauth_path"],
Tim Rice7df8d392005-09-19 09:33:39 -07004497 [Define if xauth is found in your path])
Damien Millera19cf472000-11-29 13:28:50 +11004498 XAUTH_PATH=$xauth_path
Tim Rice648f8762011-01-26 12:38:57 -08004499 AC_SUBST([XAUTH_PATH])
Damien Millera22ba012000-03-02 23:09:20 +11004500fi
Damien Millera22ba012000-03-02 23:09:20 +11004501
Tim Rice90f42b02011-06-02 18:17:49 -07004502dnl # --with-maildir=/path/to/mail gets top priority.
4503dnl # if maildir is set in the platform case statement above we use that.
4504dnl # Otherwise we run a program to get the dir from system headers.
4505dnl # We first look for _PATH_MAILDIR then MAILDIR then _PATH_MAIL
4506dnl # If we find _PATH_MAILDIR we do nothing because that is what
4507dnl # session.c expects anyway. Otherwise we set to the value found
4508dnl # stripping any trailing slash. If for some strage reason our program
4509dnl # does not find what it needs, we default to /var/spool/mail.
4510# Check for mail directory
4511AC_ARG_WITH([maildir],
4512 [ --with-maildir=/path/to/mail Specify your system mail directory],
4513 [
4514 if test "X$withval" != X && test "x$withval" != xno && \
4515 test "x${withval}" != xyes; then
4516 AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["$withval"],
4517 [Set this to your mail directory if you do not have _PATH_MAILDIR])
4518 fi
4519 ],[
4520 if test "X$maildir" != "X"; then
4521 AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["$maildir"])
4522 else
4523 AC_MSG_CHECKING([Discovering system mail directory])
4524 AC_RUN_IFELSE(
4525 [AC_LANG_PROGRAM([[
4526#include <stdio.h>
4527#include <string.h>
4528#ifdef HAVE_PATHS_H
4529#include <paths.h>
4530#endif
4531#ifdef HAVE_MAILLOCK_H
4532#include <maillock.h>
4533#endif
4534#define DATA "conftest.maildir"
4535 ]], [[
4536 FILE *fd;
4537 int rc;
4538
4539 fd = fopen(DATA,"w");
4540 if(fd == NULL)
4541 exit(1);
4542
4543#if defined (_PATH_MAILDIR)
4544 if ((rc = fprintf(fd ,"_PATH_MAILDIR:%s\n", _PATH_MAILDIR)) <0)
4545 exit(1);
4546#elif defined (MAILDIR)
4547 if ((rc = fprintf(fd ,"MAILDIR:%s\n", MAILDIR)) <0)
4548 exit(1);
4549#elif defined (_PATH_MAIL)
4550 if ((rc = fprintf(fd ,"_PATH_MAIL:%s\n", _PATH_MAIL)) <0)
4551 exit(1);
4552#else
4553 exit (2);
4554#endif
4555
4556 exit(0);
4557 ]])],
4558 [
Tim Ricee1d93702016-05-31 11:13:22 -07004559 maildir_what=`awk -F: '{print $1}' conftest.maildir`
Tim Rice90f42b02011-06-02 18:17:49 -07004560 maildir=`awk -F: '{print $2}' conftest.maildir \
4561 | sed 's|/$||'`
4562 AC_MSG_RESULT([Using: $maildir from $maildir_what])
4563 if test "x$maildir_what" != "x_PATH_MAILDIR"; then
4564 AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["$maildir"])
4565 fi
4566 ],
4567 [
4568 if test "X$ac_status" = "X2";then
4569# our test program didn't find it. Default to /var/spool/mail
4570 AC_MSG_RESULT([Using: default value of /var/spool/mail])
4571 AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["/var/spool/mail"])
4572 else
4573 AC_MSG_RESULT([*** not found ***])
4574 fi
4575 ],
4576 [
4577 AC_MSG_WARN([cross compiling: use --with-maildir=/path/to/mail])
4578 ]
4579 )
4580 fi
4581 ]
4582) # maildir
Damien Millera22ba012000-03-02 23:09:20 +11004583
Darren Tucker623d92f2004-09-12 22:36:15 +10004584if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes"; then
Darren Tuckera0c2b392004-09-11 23:26:37 +10004585 AC_MSG_WARN([cross compiling: Disabling /dev/ptmx test])
4586 disable_ptmx_check=yes
4587fi
Damien Millera22ba012000-03-02 23:09:20 +11004588if test -z "$no_dev_ptmx" ; then
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00004589 if test "x$disable_ptmx_check" != "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004590 AC_CHECK_FILE(["/dev/ptmx"],
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00004591 [
Tim Rice648f8762011-01-26 12:38:57 -08004592 AC_DEFINE_UNQUOTED([HAVE_DEV_PTMX], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004593 [Define if you have /dev/ptmx])
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00004594 have_dev_ptmx=1
4595 ]
4596 )
4597 fi
Damien Millera22ba012000-03-02 23:09:20 +11004598fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10004599
Darren Tucker623d92f2004-09-12 22:36:15 +10004600if test ! -z "$cross_compiling" && test "x$cross_compiling" != "xyes"; then
Tim Rice648f8762011-01-26 12:38:57 -08004601 AC_CHECK_FILE(["/dev/ptc"],
Darren Tuckera0c2b392004-09-11 23:26:37 +10004602 [
Tim Rice648f8762011-01-26 12:38:57 -08004603 AC_DEFINE_UNQUOTED([HAVE_DEV_PTS_AND_PTC], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004604 [Define if you have /dev/ptc])
Darren Tuckera0c2b392004-09-11 23:26:37 +10004605 have_dev_ptc=1
4606 ]
4607 )
4608else
4609 AC_MSG_WARN([cross compiling: Disabling /dev/ptc test])
4610fi
Damien Miller204ad072000-03-02 23:56:12 +11004611
Damien Millera22ba012000-03-02 23:09:20 +11004612# Options from here on. Some of these are preset by platform above
Tim Rice648f8762011-01-26 12:38:57 -08004613AC_ARG_WITH([mantype],
Damien Miller897741e2001-04-16 10:41:46 +10004614 [ --with-mantype=man|cat|doc Set man page type],
Damien Miller670a4b82000-01-22 13:53:11 +11004615 [
Damien Miller897741e2001-04-16 10:41:46 +10004616 case "$withval" in
4617 man|cat|doc)
4618 MANTYPE=$withval
4619 ;;
4620 *)
Tim Rice648f8762011-01-26 12:38:57 -08004621 AC_MSG_ERROR([invalid man type: $withval])
Damien Miller897741e2001-04-16 10:41:46 +10004622 ;;
4623 esac
Damien Miller670a4b82000-01-22 13:53:11 +11004624 ]
4625)
Ben Lindstrombc709922001-04-18 18:04:21 +00004626if test -z "$MANTYPE"; then
Tim Ricee22be3b2002-07-17 19:20:07 -07004627 TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb"
Tim Rice648f8762011-01-26 12:38:57 -08004628 AC_PATH_PROGS([NROFF], [nroff awf], [/bin/false], [$TestPath])
Ben Lindstrombc709922001-04-18 18:04:21 +00004629 if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
4630 MANTYPE=doc
4631 elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
4632 MANTYPE=man
4633 else
4634 MANTYPE=cat
4635 fi
4636fi
Tim Rice648f8762011-01-26 12:38:57 -08004637AC_SUBST([MANTYPE])
Ben Lindstrombc709922001-04-18 18:04:21 +00004638if test "$MANTYPE" = "doc"; then
4639 mansubdir=man;
4640else
4641 mansubdir=$MANTYPE;
4642fi
Tim Rice648f8762011-01-26 12:38:57 -08004643AC_SUBST([mansubdir])
Damien Miller8bdeee21999-12-30 15:50:54 +11004644
Damien Millera22ba012000-03-02 23:09:20 +11004645# Check whether to enable MD5 passwords
Damien Millera8e06ce2003-11-21 23:48:55 +11004646MD5_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08004647AC_ARG_WITH([md5-passwords],
Damien Millerdd1c7ba1999-11-19 15:53:20 +11004648 [ --with-md5-passwords Enable use of MD5 passwords],
Damien Miller8bdeee21999-12-30 15:50:54 +11004649 [
Damien Millerb85dcad2000-03-11 11:37:00 +11004650 if test "x$withval" != "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004651 AC_DEFINE([HAVE_MD5_PASSWORDS], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004652 [Define if you want to allow MD5 passwords])
Damien Millera8e06ce2003-11-21 23:48:55 +11004653 MD5_MSG="yes"
Damien Miller8bdeee21999-12-30 15:50:54 +11004654 fi
4655 ]
Damien Millerdd1c7ba1999-11-19 15:53:20 +11004656)
4657
Damien Millera22ba012000-03-02 23:09:20 +11004658# Whether to disable shadow password support
Tim Rice648f8762011-01-26 12:38:57 -08004659AC_ARG_WITH([shadow],
Damien Miller76112de1999-12-21 11:18:08 +11004660 [ --without-shadow Disable shadow password support],
4661 [
Tim Riceeae17cc2005-03-17 16:52:20 -08004662 if test "x$withval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004663 AC_DEFINE([DISABLE_SHADOW])
Damien Miller1f335fb2000-06-26 11:31:33 +10004664 disable_shadow=yes
Damien Miller76112de1999-12-21 11:18:08 +11004665 fi
4666 ]
4667)
4668
Damien Miller1f335fb2000-06-26 11:31:33 +10004669if test -z "$disable_shadow" ; then
4670 AC_MSG_CHECKING([if the systems has expire shadow information])
Tim Rice648f8762011-01-26 12:38:57 -08004671 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller1f335fb2000-06-26 11:31:33 +10004672#include <sys/types.h>
4673#include <shadow.h>
Tim Rice648f8762011-01-26 12:38:57 -08004674struct spwd sp;
4675 ]], [[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ]])],
4676 [ sp_expire_available=yes ], [
4677 ])
Damien Miller1f335fb2000-06-26 11:31:33 +10004678
4679 if test "x$sp_expire_available" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004680 AC_MSG_RESULT([yes])
4681 AC_DEFINE([HAS_SHADOW_EXPIRE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004682 [Define if you want to use shadow password expire field])
Damien Miller1f335fb2000-06-26 11:31:33 +10004683 else
Tim Rice648f8762011-01-26 12:38:57 -08004684 AC_MSG_RESULT([no])
Damien Miller1f335fb2000-06-26 11:31:33 +10004685 fi
4686fi
4687
Damien Millera22ba012000-03-02 23:09:20 +11004688# Use ip address instead of hostname in $DISPLAY
Damien Miller9a947342000-08-30 10:03:33 +11004689if test ! -z "$IPADDR_IN_DISPLAY" ; then
4690 DISPLAY_HACK_MSG="yes"
Tim Rice648f8762011-01-26 12:38:57 -08004691 AC_DEFINE([IPADDR_IN_DISPLAY], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004692 [Define if you need to use IP address
4693 instead of hostname in $DISPLAY])
Damien Miller9a947342000-08-30 10:03:33 +11004694else
Damien Millera8e06ce2003-11-21 23:48:55 +11004695 DISPLAY_HACK_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08004696 AC_ARG_WITH([ipaddr-display],
Tim Rice6397eed2015-06-03 21:41:11 -07004697 [ --with-ipaddr-display Use ip address instead of hostname in $DISPLAY],
Damien Miller9a947342000-08-30 10:03:33 +11004698 [
Tim Riceeae17cc2005-03-17 16:52:20 -08004699 if test "x$withval" != "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004700 AC_DEFINE([IPADDR_IN_DISPLAY])
Damien Millera8e06ce2003-11-21 23:48:55 +11004701 DISPLAY_HACK_MSG="yes"
Damien Miller9a947342000-08-30 10:03:33 +11004702 fi
4703 ]
4704 )
4705fi
Damien Miller76112de1999-12-21 11:18:08 +11004706
Darren Tuckere1a790d2003-09-16 11:52:19 +10004707# check for /etc/default/login and use it if present.
Tim Rice648f8762011-01-26 12:38:57 -08004708AC_ARG_ENABLE([etc-default-login],
Darren Tucker1b6f2292005-02-11 16:11:49 +11004709 [ --disable-etc-default-login Disable using PATH from /etc/default/login [no]],
Darren Tucker2f9573d2005-02-10 22:28:54 +11004710 [ if test "x$enableval" = "xno"; then
4711 AC_MSG_NOTICE([/etc/default/login handling disabled])
4712 etc_default_login=no
4713 else
4714 etc_default_login=yes
4715 fi ],
Darren Tucker314d89e2005-10-17 23:29:23 +10004716 [ if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes";
4717 then
4718 AC_MSG_WARN([cross compiling: not checking /etc/default/login])
4719 etc_default_login=no
4720 else
4721 etc_default_login=yes
4722 fi ]
Darren Tucker2f9573d2005-02-10 22:28:54 +11004723)
Darren Tuckere1a790d2003-09-16 11:52:19 +10004724
Darren Tucker2f9573d2005-02-10 22:28:54 +11004725if test "x$etc_default_login" != "xno"; then
Tim Rice648f8762011-01-26 12:38:57 -08004726 AC_CHECK_FILE(["/etc/default/login"],
Darren Tucker2f9573d2005-02-10 22:28:54 +11004727 [ external_path_file=/etc/default/login ])
Darren Tucker314d89e2005-10-17 23:29:23 +10004728 if test "x$external_path_file" = "x/etc/default/login"; then
Tim Rice648f8762011-01-26 12:38:57 -08004729 AC_DEFINE([HAVE_ETC_DEFAULT_LOGIN], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004730 [Define if your system has /etc/default/login])
Darren Tuckera0c2b392004-09-11 23:26:37 +10004731 fi
Darren Tucker2f9573d2005-02-10 22:28:54 +11004732fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10004733
Tim Rice43a1c132002-04-17 21:19:14 -07004734dnl BSD systems use /etc/login.conf so --with-default-path= has no effect
Tim Rice8bb561b2005-03-17 16:23:19 -08004735if test $ac_cv_func_login_getcapbool = "yes" && \
4736 test $ac_cv_header_login_cap_h = "yes" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10004737 external_path_file=/etc/login.conf
Tim Rice43a1c132002-04-17 21:19:14 -07004738fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10004739
Damien Millera22ba012000-03-02 23:09:20 +11004740# Whether to mess with the default path
Damien Millera8e06ce2003-11-21 23:48:55 +11004741SERVER_PATH_MSG="(default)"
Tim Rice648f8762011-01-26 12:38:57 -08004742AC_ARG_WITH([default-path],
Tim Rice6397eed2015-06-03 21:41:11 -07004743 [ --with-default-path= Specify default $PATH environment for server],
Damien Miller5a3e6831999-12-27 09:48:56 +11004744 [
Darren Tuckere1a790d2003-09-16 11:52:19 +10004745 if test "x$external_path_file" = "x/etc/login.conf" ; then
Tim Rice43a1c132002-04-17 21:19:14 -07004746 AC_MSG_WARN([
4747--with-default-path=PATH has no effect on this system.
4748Edit /etc/login.conf instead.])
Tim Riceeae17cc2005-03-17 16:52:20 -08004749 elif test "x$withval" != "xno" ; then
Tim Riceb925b4b2003-09-15 22:40:49 -07004750 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10004751 AC_MSG_WARN([
4752--with-default-path=PATH will only be used if PATH is not defined in
4753$external_path_file .])
4754 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08004755 user_path="$withval"
Damien Millera8e06ce2003-11-21 23:48:55 +11004756 SERVER_PATH_MSG="$withval"
Damien Miller5a3e6831999-12-27 09:48:56 +11004757 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08004758 ],
Darren Tuckere1a790d2003-09-16 11:52:19 +10004759 [ if test "x$external_path_file" = "x/etc/login.conf" ; then
4760 AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf])
Tim Rice43a1c132002-04-17 21:19:14 -07004761 else
Tim Riceb925b4b2003-09-15 22:40:49 -07004762 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10004763 AC_MSG_WARN([
4764If PATH is defined in $external_path_file, ensure the path to scp is included,
4765otherwise scp will not work.])
4766 fi
Darren Tucker314d89e2005-10-17 23:29:23 +10004767 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08004768 [AC_LANG_PROGRAM([[
Tim Rice59ea0a02001-03-10 13:50:45 -08004769/* find out what STDPATH is */
4770#include <stdio.h>
Tim Rice59ea0a02001-03-10 13:50:45 -08004771#ifdef HAVE_PATHS_H
4772# include <paths.h>
4773#endif
4774#ifndef _PATH_STDPATH
Tim Rice1c9e6882002-11-22 13:29:01 -08004775# ifdef _PATH_USERPATH /* Irix */
4776# define _PATH_STDPATH _PATH_USERPATH
4777# else
4778# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
4779# endif
Tim Rice59ea0a02001-03-10 13:50:45 -08004780#endif
4781#include <sys/types.h>
4782#include <sys/stat.h>
4783#include <fcntl.h>
4784#define DATA "conftest.stdpath"
Tim Rice648f8762011-01-26 12:38:57 -08004785 ]], [[
Tim Rice59ea0a02001-03-10 13:50:45 -08004786 FILE *fd;
4787 int rc;
Tim Riceeae17cc2005-03-17 16:52:20 -08004788
Tim Rice59ea0a02001-03-10 13:50:45 -08004789 fd = fopen(DATA,"w");
4790 if(fd == NULL)
4791 exit(1);
Tim Riceeae17cc2005-03-17 16:52:20 -08004792
Tim Rice59ea0a02001-03-10 13:50:45 -08004793 if ((rc = fprintf(fd,"%s", _PATH_STDPATH)) < 0)
4794 exit(1);
4795
4796 exit(0);
Darren Tucker314d89e2005-10-17 23:29:23 +10004797 ]])],
4798 [ user_path=`cat conftest.stdpath` ],
Tim Rice59ea0a02001-03-10 13:50:45 -08004799 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ],
4800 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ]
4801 )
4802# make sure $bindir is in USER_PATH so scp will work
Damien Miller77eab7b2012-07-06 11:49:28 +10004803 t_bindir="${bindir}"
4804 while echo "${t_bindir}" | egrep '\$\{|NONE/' >/dev/null 2>&1; do
4805 t_bindir=`eval echo ${t_bindir}`
4806 case $t_bindir in
4807 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$prefix~"` ;;
4808 esac
4809 case $t_bindir in
4810 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$ac_default_prefix~"` ;;
4811 esac
4812 done
Tim Rice59ea0a02001-03-10 13:50:45 -08004813 echo $user_path | grep ":$t_bindir" > /dev/null 2>&1
4814 if test $? -ne 0 ; then
4815 echo $user_path | grep "^$t_bindir" > /dev/null 2>&1
4816 if test $? -ne 0 ; then
4817 user_path=$user_path:$t_bindir
Tim Rice648f8762011-01-26 12:38:57 -08004818 AC_MSG_RESULT([Adding $t_bindir to USER_PATH so scp will work])
Tim Rice59ea0a02001-03-10 13:50:45 -08004819 fi
4820 fi
Tim Rice43a1c132002-04-17 21:19:14 -07004821 fi ]
Damien Miller5a3e6831999-12-27 09:48:56 +11004822)
Darren Tuckere1a790d2003-09-16 11:52:19 +10004823if test "x$external_path_file" != "x/etc/login.conf" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004824 AC_DEFINE_UNQUOTED([USER_PATH], ["$user_path"], [Specify default $PATH])
4825 AC_SUBST([user_path])
Tim Rice43a1c132002-04-17 21:19:14 -07004826fi
Damien Miller5a3e6831999-12-27 09:48:56 +11004827
Damien Millera18bbd32002-05-13 10:48:57 +10004828# Set superuser path separately to user path
Tim Rice648f8762011-01-26 12:38:57 -08004829AC_ARG_WITH([superuser-path],
Damien Millera18bbd32002-05-13 10:48:57 +10004830 [ --with-superuser-path= Specify different path for super-user],
4831 [
Tim Rice35cc69d2005-03-17 16:44:25 -08004832 if test -n "$withval" && test "x$withval" != "xno" && \
4833 test "x${withval}" != "xyes"; then
Tim Rice648f8762011-01-26 12:38:57 -08004834 AC_DEFINE_UNQUOTED([SUPERUSER_PATH], ["$withval"],
Tim Rice7df8d392005-09-19 09:33:39 -07004835 [Define if you want a different $PATH
4836 for the superuser])
Damien Millera18bbd32002-05-13 10:48:57 +10004837 superuser_path=$withval
4838 fi
4839 ]
4840)
4841
4842
Damien Miller61e50f12000-05-08 20:49:37 +10004843AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
Damien Millera8e06ce2003-11-21 23:48:55 +11004844IPV4_IN6_HACK_MSG="no"
Damien Miller7bcb0892000-03-11 20:45:40 +11004845AC_ARG_WITH(4in6,
4846 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
4847 [
4848 if test "x$withval" != "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004849 AC_MSG_RESULT([yes])
4850 AC_DEFINE([IPV4_IN_IPV6], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004851 [Detect IPv4 in IPv6 mapped addresses
4852 and treat as IPv4])
Damien Millera8e06ce2003-11-21 23:48:55 +11004853 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11004854 else
Tim Rice648f8762011-01-26 12:38:57 -08004855 AC_MSG_RESULT([no])
Damien Miller7bcb0892000-03-11 20:45:40 +11004856 fi
Tim Rice648f8762011-01-26 12:38:57 -08004857 ], [
Damien Miller7bcb0892000-03-11 20:45:40 +11004858 if test "x$inet6_default_4in6" = "xyes"; then
4859 AC_MSG_RESULT([yes (default)])
Tim Rice648f8762011-01-26 12:38:57 -08004860 AC_DEFINE([IPV4_IN_IPV6])
Damien Millera8e06ce2003-11-21 23:48:55 +11004861 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11004862 else
4863 AC_MSG_RESULT([no (default)])
4864 fi
4865 ]
4866)
4867
Damien Miller60396b02001-02-18 17:01:00 +11004868# Whether to enable BSD auth support
Damien Miller6c21c512002-01-22 21:57:53 +11004869BSD_AUTH_MSG=no
Tim Rice648f8762011-01-26 12:38:57 -08004870AC_ARG_WITH([bsd-auth],
Damien Miller60396b02001-02-18 17:01:00 +11004871 [ --with-bsd-auth Enable BSD auth support],
4872 [
Tim Riceeae17cc2005-03-17 16:52:20 -08004873 if test "x$withval" != "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004874 AC_DEFINE([BSD_AUTH], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004875 [Define if you have BSD auth support])
Damien Miller6c21c512002-01-22 21:57:53 +11004876 BSD_AUTH_MSG=yes
Damien Miller60396b02001-02-18 17:01:00 +11004877 fi
4878 ]
4879)
4880
Damien Millera22ba012000-03-02 23:09:20 +11004881# Where to place sshd.pid
Damien Millerb13c73e2000-01-17 22:02:17 +11004882piddir=/var/run
Damien Miller78315eb2000-09-29 23:01:36 +11004883# make sure the directory exists
Tim Riceeae17cc2005-03-17 16:52:20 -08004884if test ! -d $piddir ; then
Damien Miller78315eb2000-09-29 23:01:36 +11004885 piddir=`eval echo ${sysconfdir}`
4886 case $piddir in
Damien Millera8e06ce2003-11-21 23:48:55 +11004887 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
Damien Miller78315eb2000-09-29 23:01:36 +11004888 esac
4889fi
4890
Tim Rice648f8762011-01-26 12:38:57 -08004891AC_ARG_WITH([pid-dir],
Darren Tucker075e2582018-02-13 17:36:43 +11004892 [ --with-pid-dir=PATH Specify location of sshd.pid file],
Tim Rice88f2ab52002-03-17 12:17:34 -08004893 [
Tim Rice35cc69d2005-03-17 16:44:25 -08004894 if test -n "$withval" && test "x$withval" != "xno" && \
4895 test "x${withval}" != "xyes"; then
Tim Rice88f2ab52002-03-17 12:17:34 -08004896 piddir=$withval
Tim Riceeae17cc2005-03-17 16:52:20 -08004897 if test ! -d $piddir ; then
Tim Rice88f2ab52002-03-17 12:17:34 -08004898 AC_MSG_WARN([** no $piddir directory on this system **])
4899 fi
4900 fi
4901 ]
4902)
4903
Tim Ricee1d93702016-05-31 11:13:22 -07004904AC_DEFINE_UNQUOTED([_PATH_SSH_PIDDIR], ["$piddir"],
Tim Rice648f8762011-01-26 12:38:57 -08004905 [Specify location of ssh.pid])
4906AC_SUBST([piddir])
Damien Miller5eed6a22000-01-16 12:05:18 +11004907
andre2ff7b5d2000-06-03 14:57:40 +00004908dnl allow user to disable some login recording features
Tim Rice648f8762011-01-26 12:38:57 -08004909AC_ARG_ENABLE([lastlog],
andre43ca7e22000-06-19 08:23:46 +00004910 [ --disable-lastlog disable use of lastlog even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004911 [
4912 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004913 AC_DEFINE([DISABLE_LASTLOG])
Darren Tuckera3020db2003-06-28 12:54:33 +10004914 fi
4915 ]
andre2ff7b5d2000-06-03 14:57:40 +00004916)
Tim Rice648f8762011-01-26 12:38:57 -08004917AC_ARG_ENABLE([utmp],
andre43ca7e22000-06-19 08:23:46 +00004918 [ --disable-utmp disable use of utmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004919 [
4920 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004921 AC_DEFINE([DISABLE_UTMP])
Darren Tuckera3020db2003-06-28 12:54:33 +10004922 fi
4923 ]
andre2ff7b5d2000-06-03 14:57:40 +00004924)
Tim Rice648f8762011-01-26 12:38:57 -08004925AC_ARG_ENABLE([utmpx],
andre43ca7e22000-06-19 08:23:46 +00004926 [ --disable-utmpx disable use of utmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004927 [
4928 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004929 AC_DEFINE([DISABLE_UTMPX], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004930 [Define if you don't want to use utmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10004931 fi
4932 ]
andre2ff7b5d2000-06-03 14:57:40 +00004933)
Tim Rice648f8762011-01-26 12:38:57 -08004934AC_ARG_ENABLE([wtmp],
andre43ca7e22000-06-19 08:23:46 +00004935 [ --disable-wtmp disable use of wtmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004936 [
4937 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004938 AC_DEFINE([DISABLE_WTMP])
Darren Tuckera3020db2003-06-28 12:54:33 +10004939 fi
4940 ]
andre2ff7b5d2000-06-03 14:57:40 +00004941)
Tim Rice648f8762011-01-26 12:38:57 -08004942AC_ARG_ENABLE([wtmpx],
andre43ca7e22000-06-19 08:23:46 +00004943 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004944 [
4945 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004946 AC_DEFINE([DISABLE_WTMPX], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004947 [Define if you don't want to use wtmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10004948 fi
4949 ]
andre2ff7b5d2000-06-03 14:57:40 +00004950)
Tim Rice648f8762011-01-26 12:38:57 -08004951AC_ARG_ENABLE([libutil],
andre43ca7e22000-06-19 08:23:46 +00004952 [ --disable-libutil disable use of libutil (login() etc.) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004953 [
4954 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004955 AC_DEFINE([DISABLE_LOGIN])
Darren Tuckera3020db2003-06-28 12:54:33 +10004956 fi
4957 ]
andre2ff7b5d2000-06-03 14:57:40 +00004958)
Tim Rice648f8762011-01-26 12:38:57 -08004959AC_ARG_ENABLE([pututline],
andre43ca7e22000-06-19 08:23:46 +00004960 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004961 [
4962 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004963 AC_DEFINE([DISABLE_PUTUTLINE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004964 [Define if you don't want to use pututline()
4965 etc. to write [uw]tmp])
Darren Tuckera3020db2003-06-28 12:54:33 +10004966 fi
4967 ]
andre2ff7b5d2000-06-03 14:57:40 +00004968)
Tim Rice648f8762011-01-26 12:38:57 -08004969AC_ARG_ENABLE([pututxline],
andre43ca7e22000-06-19 08:23:46 +00004970 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004971 [
4972 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004973 AC_DEFINE([DISABLE_PUTUTXLINE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004974 [Define if you don't want to use pututxline()
4975 etc. to write [uw]tmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10004976 fi
4977 ]
andre2ff7b5d2000-06-03 14:57:40 +00004978)
Tim Rice648f8762011-01-26 12:38:57 -08004979AC_ARG_WITH([lastlog],
andre43ca7e22000-06-19 08:23:46 +00004980 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
Damien Miller709528a2001-01-31 09:57:55 +11004981 [
Tim Riceeae17cc2005-03-17 16:52:20 -08004982 if test "x$withval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004983 AC_DEFINE([DISABLE_LASTLOG])
Tim Rice35cc69d2005-03-17 16:44:25 -08004984 elif test -n "$withval" && test "x${withval}" != "xyes"; then
Damien Miller709528a2001-01-31 09:57:55 +11004985 conf_lastlog_location=$withval
4986 fi
4987 ]
4988)
andre2ff7b5d2000-06-03 14:57:40 +00004989
4990dnl lastlog, [uw]tmpx? detection
4991dnl NOTE: set the paths in the platform section to avoid the
4992dnl need for command-line parameters
4993dnl lastlog and [uw]tmp are subject to a file search if all else fails
4994
4995dnl lastlog detection
4996dnl NOTE: the code itself will detect if lastlog is a directory
4997AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
Tim Rice648f8762011-01-26 12:38:57 -08004998AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
andre2ff7b5d2000-06-03 14:57:40 +00004999#include <sys/types.h>
5000#include <utmp.h>
5001#ifdef HAVE_LASTLOG_H
5002# include <lastlog.h>
5003#endif
Damien Miller2994e082000-06-04 15:51:47 +10005004#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00005005# include <paths.h>
5006#endif
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00005007#ifdef HAVE_LOGIN_H
5008# include <login.h>
5009#endif
Tim Rice648f8762011-01-26 12:38:57 -08005010 ]], [[ char *lastlog = LASTLOG_FILE; ]])],
5011 [ AC_MSG_RESULT([yes]) ],
5012 [
5013 AC_MSG_RESULT([no])
Damien Miller2994e082000-06-04 15:51:47 +10005014 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
Tim Rice648f8762011-01-26 12:38:57 -08005015 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller2994e082000-06-04 15:51:47 +10005016#include <sys/types.h>
5017#include <utmp.h>
5018#ifdef HAVE_LASTLOG_H
5019# include <lastlog.h>
5020#endif
5021#ifdef HAVE_PATHS_H
5022# include <paths.h>
5023#endif
Tim Rice648f8762011-01-26 12:38:57 -08005024 ]], [[ char *lastlog = _PATH_LASTLOG; ]])],
5025 [ AC_MSG_RESULT([yes]) ],
Damien Miller2994e082000-06-04 15:51:47 +10005026 [
Tim Rice648f8762011-01-26 12:38:57 -08005027 AC_MSG_RESULT([no])
Damien Miller2994e082000-06-04 15:51:47 +10005028 system_lastlog_path=no
5029 ])
Tim Rice648f8762011-01-26 12:38:57 -08005030])
Damien Miller2994e082000-06-04 15:51:47 +10005031
andre2ff7b5d2000-06-03 14:57:40 +00005032if test -z "$conf_lastlog_location"; then
5033 if test x"$system_lastlog_path" = x"no" ; then
5034 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
Damien Milleredb82922000-06-20 13:25:52 +10005035 if (test -d "$f" || test -f "$f") ; then
andre2ff7b5d2000-06-03 14:57:40 +00005036 conf_lastlog_location=$f
5037 fi
5038 done
5039 if test -z "$conf_lastlog_location"; then
andre45cad512000-06-12 23:27:31 +00005040 AC_MSG_WARN([** Cannot find lastlog **])
5041 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
andre2ff7b5d2000-06-03 14:57:40 +00005042 fi
5043 fi
5044fi
5045
5046if test -n "$conf_lastlog_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08005047 AC_DEFINE_UNQUOTED([CONF_LASTLOG_FILE], ["$conf_lastlog_location"],
Tim Rice7df8d392005-09-19 09:33:39 -07005048 [Define if you want to specify the path to your lastlog file])
Tim Riceeae17cc2005-03-17 16:52:20 -08005049fi
andre2ff7b5d2000-06-03 14:57:40 +00005050
5051dnl utmp detection
5052AC_MSG_CHECKING([if your system defines UTMP_FILE])
Tim Rice648f8762011-01-26 12:38:57 -08005053AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
andre2ff7b5d2000-06-03 14:57:40 +00005054#include <sys/types.h>
5055#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10005056#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00005057# include <paths.h>
5058#endif
Tim Rice648f8762011-01-26 12:38:57 -08005059 ]], [[ char *utmp = UTMP_FILE; ]])],
5060 [ AC_MSG_RESULT([yes]) ],
5061 [ AC_MSG_RESULT([no])
Tim Ricee1d93702016-05-31 11:13:22 -07005062 system_utmp_path=no
Tim Rice648f8762011-01-26 12:38:57 -08005063])
andre2ff7b5d2000-06-03 14:57:40 +00005064if test -z "$conf_utmp_location"; then
5065 if test x"$system_utmp_path" = x"no" ; then
5066 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
5067 if test -f $f ; then
5068 conf_utmp_location=$f
5069 fi
5070 done
5071 if test -z "$conf_utmp_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08005072 AC_DEFINE([DISABLE_UTMP])
andre2ff7b5d2000-06-03 14:57:40 +00005073 fi
5074 fi
5075fi
5076if test -n "$conf_utmp_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08005077 AC_DEFINE_UNQUOTED([CONF_UTMP_FILE], ["$conf_utmp_location"],
Tim Rice7df8d392005-09-19 09:33:39 -07005078 [Define if you want to specify the path to your utmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08005079fi
andre2ff7b5d2000-06-03 14:57:40 +00005080
5081dnl wtmp detection
5082AC_MSG_CHECKING([if your system defines WTMP_FILE])
Tim Rice648f8762011-01-26 12:38:57 -08005083AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
andre2ff7b5d2000-06-03 14:57:40 +00005084#include <sys/types.h>
5085#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10005086#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00005087# include <paths.h>
5088#endif
Tim Rice648f8762011-01-26 12:38:57 -08005089 ]], [[ char *wtmp = WTMP_FILE; ]])],
5090 [ AC_MSG_RESULT([yes]) ],
5091 [ AC_MSG_RESULT([no])
Tim Ricee1d93702016-05-31 11:13:22 -07005092 system_wtmp_path=no
Tim Rice648f8762011-01-26 12:38:57 -08005093])
andre2ff7b5d2000-06-03 14:57:40 +00005094if test -z "$conf_wtmp_location"; then
5095 if test x"$system_wtmp_path" = x"no" ; then
5096 for f in /usr/adm/wtmp /var/log/wtmp; do
5097 if test -f $f ; then
5098 conf_wtmp_location=$f
5099 fi
5100 done
5101 if test -z "$conf_wtmp_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08005102 AC_DEFINE([DISABLE_WTMP])
andre2ff7b5d2000-06-03 14:57:40 +00005103 fi
5104 fi
5105fi
5106if test -n "$conf_wtmp_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08005107 AC_DEFINE_UNQUOTED([CONF_WTMP_FILE], ["$conf_wtmp_location"],
Tim Rice7df8d392005-09-19 09:33:39 -07005108 [Define if you want to specify the path to your wtmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08005109fi
andre2ff7b5d2000-06-03 14:57:40 +00005110
andre2ff7b5d2000-06-03 14:57:40 +00005111dnl wtmpx detection
5112AC_MSG_CHECKING([if your system defines WTMPX_FILE])
Tim Rice648f8762011-01-26 12:38:57 -08005113AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
andre2ff7b5d2000-06-03 14:57:40 +00005114#include <sys/types.h>
5115#include <utmp.h>
5116#ifdef HAVE_UTMPX_H
5117#include <utmpx.h>
5118#endif
Damien Miller2994e082000-06-04 15:51:47 +10005119#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00005120# include <paths.h>
5121#endif
Tim Rice648f8762011-01-26 12:38:57 -08005122 ]], [[ char *wtmpx = WTMPX_FILE; ]])],
5123 [ AC_MSG_RESULT([yes]) ],
5124 [ AC_MSG_RESULT([no])
Tim Ricee1d93702016-05-31 11:13:22 -07005125 system_wtmpx_path=no
Tim Rice648f8762011-01-26 12:38:57 -08005126])
andre2ff7b5d2000-06-03 14:57:40 +00005127if test -z "$conf_wtmpx_location"; then
5128 if test x"$system_wtmpx_path" = x"no" ; then
Tim Rice648f8762011-01-26 12:38:57 -08005129 AC_DEFINE([DISABLE_WTMPX])
andre2ff7b5d2000-06-03 14:57:40 +00005130 fi
5131else
Tim Rice648f8762011-01-26 12:38:57 -08005132 AC_DEFINE_UNQUOTED([CONF_WTMPX_FILE], ["$conf_wtmpx_location"],
Tim Rice7df8d392005-09-19 09:33:39 -07005133 [Define if you want to specify the path to your wtmpx file])
Tim Riceeae17cc2005-03-17 16:52:20 -08005134fi
andre2ff7b5d2000-06-03 14:57:40 +00005135
Damien Miller4018c192000-04-30 09:30:44 +10005136
Damien Miller29ea30d2000-03-17 10:54:15 +11005137if test ! -z "$blibpath" ; then
Damien Millereab4bae2003-04-29 23:22:40 +10005138 LDFLAGS="$LDFLAGS $blibflags$blibpath"
5139 AC_MSG_WARN([Please check and edit blibpath in LDFLAGS in Makefile])
Damien Miller29ea30d2000-03-17 10:54:15 +11005140fi
5141
Damien Millera2438bb2013-03-15 10:23:07 +11005142AC_CHECK_MEMBER([struct lastlog.ll_line], [], [
Tim Riceaa86c392013-03-16 20:55:46 -07005143 if test x$SKIP_DISABLE_LASTLOG_DEFINE != "xyes" ; then
Damien Millera2438bb2013-03-15 10:23:07 +11005144 AC_DEFINE([DISABLE_LASTLOG])
Tim Riceaa86c392013-03-16 20:55:46 -07005145 fi
Damien Millera2438bb2013-03-15 10:23:07 +11005146 ], [
5147#ifdef HAVE_SYS_TYPES_H
5148#include <sys/types.h>
5149#endif
5150#ifdef HAVE_UTMP_H
5151#include <utmp.h>
5152#endif
5153#ifdef HAVE_UTMPX_H
5154#include <utmpx.h>
5155#endif
5156#ifdef HAVE_LASTLOG_H
5157#include <lastlog.h>
5158#endif
5159 ])
5160
5161AC_CHECK_MEMBER([struct utmp.ut_line], [], [
5162 AC_DEFINE([DISABLE_UTMP])
5163 AC_DEFINE([DISABLE_WTMP])
5164 ], [
5165#ifdef HAVE_SYS_TYPES_H
5166#include <sys/types.h>
5167#endif
5168#ifdef HAVE_UTMP_H
5169#include <utmp.h>
5170#endif
5171#ifdef HAVE_UTMPX_H
5172#include <utmpx.h>
5173#endif
5174#ifdef HAVE_LASTLOG_H
5175#include <lastlog.h>
5176#endif
5177 ])
5178
Darren Tucker7da23cb2005-08-03 00:20:15 +10005179dnl Adding -Werror to CFLAGS early prevents configure tests from running.
5180dnl Add now.
5181CFLAGS="$CFLAGS $werror_flags"
5182
Darren Tucker627337d2010-04-10 22:58:01 +10005183if test "x$ac_cv_func_getaddrinfo" != "xyes" ; then
5184 TEST_SSH_IPV6=no
5185else
5186 TEST_SSH_IPV6=yes
5187fi
Tim Rice648f8762011-01-26 12:38:57 -08005188AC_CHECK_DECL([BROKEN_GETADDRINFO], [TEST_SSH_IPV6=no])
5189AC_SUBST([TEST_SSH_IPV6], [$TEST_SSH_IPV6])
Darren Tucker47b8c992016-12-08 15:48:34 +11005190AC_SUBST([TEST_SSH_UTF8], [$TEST_SSH_UTF8])
Darren Tucker882abfd2013-11-09 00:17:41 +11005191AC_SUBST([TEST_MALLOC_OPTIONS], [$TEST_MALLOC_OPTIONS])
Darren Tucker6d8bd572013-06-11 11:26:10 +10005192AC_SUBST([UNSUPPORTED_ALGORITHMS], [$unsupported_algorithms])
Darren Tucker79c0e1d2017-12-11 14:38:33 +11005193AC_SUBST([DEPEND], [$(cat $srcdir/.depend)])
Darren Tucker5d376902008-06-11 04:15:05 +10005194
Damien Millerde35c382017-09-08 12:38:31 +10005195CFLAGS="${CFLAGS} ${CFLAGS_AFTER}"
5196LDFLAGS="${LDFLAGS} ${LDFLAGS_AFTER}"
5197
Damien Millerbac2d8a2000-09-05 16:13:06 +11005198AC_EXEEXT
Damien Miller223897a2006-09-12 21:54:10 +10005199AC_CONFIG_FILES([Makefile buildpkg.sh opensshd.init openssh.xml \
5200 openbsd-compat/Makefile openbsd-compat/regress/Makefile \
Damien Millerf22019b2011-05-05 13:48:37 +10005201 survey.sh])
Tim Rice13aae5e2001-10-21 17:53:58 -07005202AC_OUTPUT
Damien Miller0437b332000-05-02 09:56:41 +10005203
Damien Miller7b22d652000-06-18 14:07:04 +10005204# Print summary of options
5205
Damien Miller7b22d652000-06-18 14:07:04 +10005206# Someone please show me a better way :)
5207A=`eval echo ${prefix}` ; A=`eval echo ${A}`
5208B=`eval echo ${bindir}` ; B=`eval echo ${B}`
5209C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
5210D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
Kevin Stevese0f49142000-10-14 17:51:48 +00005211E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
Ben Lindstrombc709922001-04-18 18:04:21 +00005212F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
Damien Miller7b22d652000-06-18 14:07:04 +10005213G=`eval echo ${piddir}` ; G=`eval echo ${G}`
Damien Millerf58c6722002-05-13 13:15:42 +10005214H=`eval echo ${PRIVSEP_PATH}` ; H=`eval echo ${H}`
5215I=`eval echo ${user_path}` ; I=`eval echo ${I}`
5216J=`eval echo ${superuser_path}` ; J=`eval echo ${J}`
Damien Miller7b22d652000-06-18 14:07:04 +10005217
5218echo ""
Kevin Steves393d2f72001-04-08 22:50:43 +00005219echo "OpenSSH has been configured with the following options:"
Damien Millerf58c6722002-05-13 13:15:42 +10005220echo " User binaries: $B"
5221echo " System binaries: $C"
5222echo " Configuration files: $D"
5223echo " Askpass program: $E"
5224echo " Manual pages: $F"
5225echo " PID file: $G"
5226echo " Privilege separation chroot path: $H"
Darren Tuckere1a790d2003-09-16 11:52:19 +10005227if test "x$external_path_file" = "x/etc/login.conf" ; then
5228echo " At runtime, sshd will use the path defined in $external_path_file"
5229echo " Make sure the path to scp is present, otherwise scp will not work"
Tim Rice43a1c132002-04-17 21:19:14 -07005230else
Damien Millerf58c6722002-05-13 13:15:42 +10005231echo " sshd default user PATH: $I"
Tim Riceb925b4b2003-09-15 22:40:49 -07005232 if test ! -z "$external_path_file"; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10005233echo " (If PATH is set in $external_path_file it will be used instead. If"
5234echo " used, ensure the path to scp is present, otherwise scp will not work.)"
5235 fi
Tim Rice43a1c132002-04-17 21:19:14 -07005236fi
Damien Millera18bbd32002-05-13 10:48:57 +10005237if test ! -z "$superuser_path" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10005238echo " sshd superuser user PATH: $J"
Damien Millera18bbd32002-05-13 10:48:57 +10005239fi
Damien Millerf58c6722002-05-13 13:15:42 +10005240echo " Manpage format: $MANTYPE"
Damien Miller7abe09b2003-05-15 10:53:49 +10005241echo " PAM support: $PAM_MSG"
Damien Miller1b06dc32006-08-31 03:24:41 +10005242echo " OSF SIA support: $SIA_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10005243echo " KerberosV support: $KRB5_MSG"
Damien Miller73b42d22006-04-22 21:26:08 +10005244echo " SELinux support: $SELINUX_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10005245echo " MD5 password support: $MD5_MSG"
Darren Tucker16bcc1c2004-11-07 20:14:34 +11005246echo " libedit support: $LIBEDIT_MSG"
Damien Miller523db852017-02-03 16:01:22 +11005247echo " libldns support: $LDNS_MSG"
Damien Miller1b06dc32006-08-31 03:24:41 +10005248echo " Solaris process contract support: $SPC_MSG"
Darren Tucker97528352010-11-05 12:03:05 +11005249echo " Solaris project support: $SP_MSG"
Damien Miller4626cba2016-01-08 14:24:56 +11005250echo " Solaris privilege support: $SPP_MSG"
Damien Miller903e1152002-05-13 14:41:31 +10005251echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10005252echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
5253echo " BSD Auth support: $BSD_AUTH_MSG"
5254echo " Random number source: $RAND_MSG"
Damien Miller69ff1df2011-06-23 08:30:03 +10005255echo " Privsep sandbox style: $SANDBOX_STYLE"
Damien Miller60396b02001-02-18 17:01:00 +11005256
Damien Miller7b22d652000-06-18 14:07:04 +10005257echo ""
5258
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00005259echo " Host: ${host}"
5260echo " Compiler: ${CC}"
5261echo " Compiler flags: ${CFLAGS}"
5262echo "Preprocessor flags: ${CPPFLAGS}"
5263echo " Linker flags: ${LDFLAGS}"
Darren Tucker20e9f972007-03-25 18:26:01 +10005264echo " Libraries: ${LIBS}"
5265if test ! -z "${SSHDLIBS}"; then
5266echo " +for sshd: ${SSHDLIBS}"
5267fi
Damien Miller71adf122011-01-25 12:16:15 +11005268if test ! -z "${SSHLIBS}"; then
5269echo " +for ssh: ${SSHLIBS}"
5270fi
Damien Miller7b22d652000-06-18 14:07:04 +10005271
5272echo ""
5273
Tim Rice6f1f7582004-05-30 21:38:51 -07005274if test "x$MAKE_PACKAGE_SUPPORTED" = "xyes" ; then
Darren Tuckercf59d312004-08-29 21:18:09 +10005275 echo "SVR4 style packages are supported with \"make package\""
5276 echo ""
Tim Rice6f1f7582004-05-30 21:38:51 -07005277fi
5278
Damien Miller82cf0ce2000-12-20 13:34:48 +11005279if test "x$PAM_MSG" = "xyes" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11005280 echo "PAM is enabled. You may need to install a PAM control file "
5281 echo "for sshd, otherwise password authentication may fail. "
Damien Millera8e06ce2003-11-21 23:48:55 +11005282 echo "Example PAM control files can be found in the contrib/ "
Damien Miller6c21c512002-01-22 21:57:53 +11005283 echo "subdirectory"
Damien Miller6f9c3372000-10-25 10:06:04 +11005284 echo ""
5285fi
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00005286
Damien Millerb4097182004-05-23 14:09:40 +10005287if test ! -z "$NO_PEERCHECK" ; then
Darren Tucker164aa302007-03-21 21:39:57 +11005288 echo "WARNING: the operating system that you are using does not"
5289 echo "appear to support getpeereid(), getpeerucred() or the"
5290 echo "SO_PEERCRED getsockopt() option. These facilities are used to"
5291 echo "enforce security checks to prevent unauthorised connections to"
5292 echo "ssh-agent. Their absence increases the risk that a malicious"
5293 echo "user can connect to your agent."
Damien Millerb4097182004-05-23 14:09:40 +10005294 echo ""
5295fi
5296
Darren Tuckerd9f88912005-02-20 21:01:48 +11005297if test "$AUDIT_MODULE" = "bsm" ; then
5298 echo "WARNING: BSM audit support is currently considered EXPERIMENTAL."
5299 echo "See the Solaris section in README.platform for details."
5300fi