blob: 9cba9542a8429e88742b85c0b1bee997690e3df1 [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])
Darren Tucker285546b2019-05-10 15:04:42 +100044AC_PATH_PROG([NROFF], [nroff awf])
Tim Rice648f8762011-01-26 12:38:57 -080045AC_PATH_PROG([MANDOC], [mandoc])
46AC_SUBST([TEST_SHELL], [sh])
Damien Miller2e1b0821999-12-25 10:11:29 +110047
Darren Tucker285546b2019-05-10 15:04:42 +100048dnl select manpage formatter to be used to build "cat" format pages.
Damien Miller30a69e72011-01-04 08:16:27 +110049if 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
Darren Tucker6fd4aa22019-05-15 16:19:14 +100056 AC_MSG_WARN([no manpage formatter found])
Damien Miller30a69e72011-01-04 08:16:27 +110057 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([-Wunknown-warning-option])
Damien Millere0e7e3d2019-08-30 14:26:19 +1000156 OSSH_CHECK_CFLAG_COMPILE([-Wno-error=format-truncation])
157 OSSH_CHECK_CFLAG_COMPILE([-Qunused-arguments])
Damien Millerb1763622011-05-20 11:45:25 +1000158 OSSH_CHECK_CFLAG_COMPILE([-Wall])
Damien Millere0e7e3d2019-08-30 14:26:19 +1000159 OSSH_CHECK_CFLAG_COMPILE([-Wextra])
Damien Millerb1763622011-05-20 11:45:25 +1000160 OSSH_CHECK_CFLAG_COMPILE([-Wpointer-arith])
161 OSSH_CHECK_CFLAG_COMPILE([-Wuninitialized])
162 OSSH_CHECK_CFLAG_COMPILE([-Wsign-compare])
163 OSSH_CHECK_CFLAG_COMPILE([-Wformat-security])
Darren Tuckerabbc7a72013-05-10 13:54:23 +1000164 OSSH_CHECK_CFLAG_COMPILE([-Wsizeof-pointer-memaccess])
Damien Millerb1763622011-05-20 11:45:25 +1000165 OSSH_CHECK_CFLAG_COMPILE([-Wpointer-sign], [-Wno-pointer-sign])
166 OSSH_CHECK_CFLAG_COMPILE([-Wunused-result], [-Wno-unused-result])
Darren Tucker6cf1c402019-11-18 14:14:18 +1100167 OSSH_CHECK_CFLAG_COMPILE([-Wimplicit-fallthrough])
Damien Millerb1763622011-05-20 11:45:25 +1000168 OSSH_CHECK_CFLAG_COMPILE([-fno-strict-aliasing])
Darren Tuckerfd994372014-01-17 09:53:24 +1100169 if test "x$use_toolchain_hardening" = "x1"; then
Darren Tucker3377df02018-02-11 09:32:37 +1100170 OSSH_CHECK_CFLAG_COMPILE([-mretpoline]) # clang
Darren Tucker174bed62018-02-13 18:12:47 +1100171 OSSH_CHECK_LDFLAG_LINK([-Wl,-z,retpolineplt])
Damien Miller161af8f2017-09-19 10:18:56 +1000172 OSSH_CHECK_CFLAG_COMPILE([-D_FORTIFY_SOURCE=2])
Darren Tuckerfd994372014-01-17 09:53:24 +1100173 OSSH_CHECK_LDFLAG_LINK([-Wl,-z,relro])
174 OSSH_CHECK_LDFLAG_LINK([-Wl,-z,now])
175 OSSH_CHECK_LDFLAG_LINK([-Wl,-z,noexecstack])
Damien Miller5c2ff5e2014-01-22 21:30:12 +1100176 # NB. -ftrapv expects certain support functions to be present in
177 # the compiler library (libgcc or similar) to detect integer operations
178 # that can overflow. We must check that the result of enabling it
179 # actually links. The test program compiled/linked includes a number
180 # of integer operations that should exercise this.
181 OSSH_CHECK_CFLAG_LINK([-ftrapv])
Darren Tuckerfd994372014-01-17 09:53:24 +1100182 fi
Tim Rice648f8762011-01-26 12:38:57 -0800183 AC_MSG_CHECKING([gcc version])
Darren Tucker3f9545e2005-11-12 15:20:52 +1100184 GCC_VER=`$CC -v 2>&1 | $AWK '/gcc version /{print $3}'`
Tim Rice3db1e3f2005-08-23 17:11:26 -0700185 case $GCC_VER in
Darren Tucker391de5c2007-04-29 14:49:21 +1000186 1.*) no_attrib_nonnull=1 ;;
187 2.8* | 2.9*)
Darren Tucker391de5c2007-04-29 14:49:21 +1000188 no_attrib_nonnull=1
189 ;;
190 2.*) no_attrib_nonnull=1 ;;
Darren Tuckerf0324352005-11-10 21:30:36 +1100191 *) ;;
Tim Rice3db1e3f2005-08-23 17:11:26 -0700192 esac
Tim Rice648f8762011-01-26 12:38:57 -0800193 AC_MSG_RESULT([$GCC_VER])
Damien Millerde3cb0a2005-05-26 20:48:25 +1000194
Tim Rice648f8762011-01-26 12:38:57 -0800195 AC_MSG_CHECKING([if $CC accepts -fno-builtin-memset])
Darren Tucker330c93f2008-06-16 02:27:48 +1000196 saved_CFLAGS="$CFLAGS"
197 CFLAGS="$CFLAGS -fno-builtin-memset"
Tim Rice648f8762011-01-26 12:38:57 -0800198 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <string.h> ]],
199 [[ char b[10]; memset(b, 0, sizeof(b)); ]])],
200 [ AC_MSG_RESULT([yes]) ],
201 [ AC_MSG_RESULT([no])
Darren Tucker330c93f2008-06-16 02:27:48 +1000202 CFLAGS="$saved_CFLAGS" ]
Tim Rice648f8762011-01-26 12:38:57 -0800203 )
Darren Tucker330c93f2008-06-16 02:27:48 +1000204
Darren Tuckerb7918af2008-03-09 11:34:23 +1100205 # -fstack-protector-all doesn't always work for some GCC versions
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100206 # and/or platforms, so we test if we can. If it's not supported
Damien Miller7df2e402008-12-08 09:35:36 +1100207 # on a given platform gcc will emit a warning so we use -Werror.
Darren Tuckerb7918af2008-03-09 11:34:23 +1100208 if test "x$use_stack_protector" = "x1"; then
Darren Tuckerfd994372014-01-17 09:53:24 +1100209 for t in -fstack-protector-strong -fstack-protector-all \
210 -fstack-protector; do
Tim Rice648f8762011-01-26 12:38:57 -0800211 AC_MSG_CHECKING([if $CC supports $t])
Darren Tuckerb7918af2008-03-09 11:34:23 +1100212 saved_CFLAGS="$CFLAGS"
213 saved_LDFLAGS="$LDFLAGS"
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100214 CFLAGS="$CFLAGS $t -Werror"
215 LDFLAGS="$LDFLAGS $t -Werror"
216 AC_LINK_IFELSE(
Darren Tucker9239a182019-10-24 14:39:49 +1100217 [AC_LANG_PROGRAM([[
218 #include <stdio.h>
219 int func (int t) {char b[100]; snprintf(b,sizeof b,"%d",t); return t;}
220 ]],
Tim Rice648f8762011-01-26 12:38:57 -0800221 [[
222 char x[256];
Darren Tucker9239a182019-10-24 14:39:49 +1100223 snprintf(x, sizeof(x), "XXX%d", func(1));
Tim Rice648f8762011-01-26 12:38:57 -0800224 ]])],
225 [ AC_MSG_RESULT([yes])
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100226 CFLAGS="$saved_CFLAGS $t"
227 LDFLAGS="$saved_LDFLAGS $t"
Tim Rice648f8762011-01-26 12:38:57 -0800228 AC_MSG_CHECKING([if $t works])
Darren Tuckerb7918af2008-03-09 11:34:23 +1100229 AC_RUN_IFELSE(
Darren Tucker9239a182019-10-24 14:39:49 +1100230 [AC_LANG_PROGRAM([[
231 #include <stdio.h>
232 int func (int t) {char b[100]; snprintf(b,sizeof b,"%d",t); return t;}
233 ]],
Tim Rice648f8762011-01-26 12:38:57 -0800234 [[
235 char x[256];
Darren Tucker9239a182019-10-24 14:39:49 +1100236 snprintf(x, sizeof(x), "XXX%d", func(1));
Tim Rice648f8762011-01-26 12:38:57 -0800237 ]])],
238 [ AC_MSG_RESULT([yes])
Darren Tuckerb7918af2008-03-09 11:34:23 +1100239 break ],
Tim Rice648f8762011-01-26 12:38:57 -0800240 [ AC_MSG_RESULT([no]) ],
Darren Tuckerb7918af2008-03-09 11:34:23 +1100241 [ AC_MSG_WARN([cross compiling: cannot test])
242 break ]
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100243 )
Darren Tuckerb7918af2008-03-09 11:34:23 +1100244 ],
Tim Rice648f8762011-01-26 12:38:57 -0800245 [ AC_MSG_RESULT([no]) ]
Darren Tuckerb7918af2008-03-09 11:34:23 +1100246 )
247 CFLAGS="$saved_CFLAGS"
248 LDFLAGS="$saved_LDFLAGS"
249 done
250 fi
Darren Tucker319b3d92007-12-02 21:02:22 +1100251
Darren Tucker67b37032005-06-03 17:58:31 +1000252 if test -z "$have_llong_max"; then
253 # retry LLONG_MAX with -std=gnu99, needed on some Linuxes
254 unset ac_cv_have_decl_LLONG_MAX
255 saved_CFLAGS="$CFLAGS"
256 CFLAGS="$CFLAGS -std=gnu99"
Tim Rice648f8762011-01-26 12:38:57 -0800257 AC_CHECK_DECL([LLONG_MAX],
Darren Tucker67b37032005-06-03 17:58:31 +1000258 [have_llong_max=1],
259 [CFLAGS="$saved_CFLAGS"],
260 [#include <limits.h>]
261 )
262 fi
Damien Miller166bd442000-03-16 10:48:25 +1100263fi
264
Darren Tucker951b53b2013-02-08 11:50:09 +1100265AC_MSG_CHECKING([if compiler allows __attribute__ on return types])
266AC_COMPILE_IFELSE(
267 [AC_LANG_PROGRAM([[
268#include <stdlib.h>
269__attribute__((__unused__)) static void foo(void){return;}]],
270 [[ exit(0); ]])],
271 [ AC_MSG_RESULT([yes]) ],
272 [ AC_MSG_RESULT([no])
273 AC_DEFINE(NO_ATTRIBUTE_ON_RETURN_TYPE, 1,
274 [compiler does not accept __attribute__ on return types]) ]
275)
276
Darren Tucker1323f122018-02-27 08:41:25 +1100277AC_MSG_CHECKING([if compiler allows __attribute__ prototype args])
278AC_COMPILE_IFELSE(
279 [AC_LANG_PROGRAM([[
280#include <stdlib.h>
281typedef void foo(const char *, ...) __attribute__((format(printf, 1, 2)));]],
282 [[ exit(0); ]])],
283 [ AC_MSG_RESULT([yes]) ],
284 [ AC_MSG_RESULT([no])
285 AC_DEFINE(NO_ATTRIBUTE_ON_PROTOTYPE_ARGS, 1,
Damien Miller10479cc2018-04-10 10:19:02 +1000286 [compiler does not accept __attribute__ on prototype args]) ]
Darren Tucker1323f122018-02-27 08:41:25 +1100287)
288
Darren Tucker391de5c2007-04-29 14:49:21 +1000289if test "x$no_attrib_nonnull" != "x1" ; then
Tim Rice648f8762011-01-26 12:38:57 -0800290 AC_DEFINE([HAVE_ATTRIBUTE__NONNULL__], [1], [Have attribute nonnull])
Darren Tucker391de5c2007-04-29 14:49:21 +1000291fi
292
Tim Rice648f8762011-01-26 12:38:57 -0800293AC_ARG_WITH([rpath],
Tim Rice88368a32003-12-08 12:35:59 -0800294 [ --without-rpath Disable auto-added -R linker paths],
295 [
Tim Riceeae17cc2005-03-17 16:52:20 -0800296 if test "x$withval" = "xno" ; then
Darren Tucker2f0bad22019-01-21 21:28:27 +1100297 rpath_opt=""
298 elif test "x$withval" = "xyes" ; then
299 rpath_opt="-R"
300 else
301 rpath_opt="$withval"
Tim Rice88368a32003-12-08 12:35:59 -0800302 fi
303 ]
304)
305
Tim Rice1cfab232006-10-03 09:34:35 -0700306# Allow user to specify flags
Tim Rice648f8762011-01-26 12:38:57 -0800307AC_ARG_WITH([cflags],
Tim Rice1cfab232006-10-03 09:34:35 -0700308 [ --with-cflags Specify additional flags to pass to compiler],
309 [
310 if test -n "$withval" && test "x$withval" != "xno" && \
311 test "x${withval}" != "xyes"; then
312 CFLAGS="$CFLAGS $withval"
313 fi
314 ]
315)
Damien Millerde35c382017-09-08 12:38:31 +1000316
317AC_ARG_WITH([cflags-after],
318 [ --with-cflags-after Specify additional flags to pass to compiler after configure],
319 [
320 if test -n "$withval" && test "x$withval" != "xno" && \
321 test "x${withval}" != "xyes"; then
322 CFLAGS_AFTER="$withval"
323 fi
324 ]
325)
Tim Rice648f8762011-01-26 12:38:57 -0800326AC_ARG_WITH([cppflags],
Tim Rice1cfab232006-10-03 09:34:35 -0700327 [ --with-cppflags Specify additional flags to pass to preprocessor] ,
328 [
329 if test -n "$withval" && test "x$withval" != "xno" && \
330 test "x${withval}" != "xyes"; then
331 CPPFLAGS="$CPPFLAGS $withval"
332 fi
333 ]
334)
Tim Rice648f8762011-01-26 12:38:57 -0800335AC_ARG_WITH([ldflags],
Tim Rice1cfab232006-10-03 09:34:35 -0700336 [ --with-ldflags Specify additional flags to pass to linker],
337 [
338 if test -n "$withval" && test "x$withval" != "xno" && \
339 test "x${withval}" != "xyes"; then
340 LDFLAGS="$LDFLAGS $withval"
341 fi
342 ]
343)
Damien Millerde35c382017-09-08 12:38:31 +1000344AC_ARG_WITH([ldflags-after],
345 [ --with-ldflags-after Specify additional flags to pass to linker after configure],
346 [
347 if test -n "$withval" && test "x$withval" != "xno" && \
348 test "x${withval}" != "xyes"; then
349 LDFLAGS_AFTER="$withval"
350 fi
351 ]
352)
Tim Rice648f8762011-01-26 12:38:57 -0800353AC_ARG_WITH([libs],
Tim Rice1cfab232006-10-03 09:34:35 -0700354 [ --with-libs Specify additional libraries to link with],
355 [
356 if test -n "$withval" && test "x$withval" != "xno" && \
357 test "x${withval}" != "xyes"; then
358 LIBS="$LIBS $withval"
359 fi
360 ]
361)
Tim Rice648f8762011-01-26 12:38:57 -0800362AC_ARG_WITH([Werror],
Tim Rice1cfab232006-10-03 09:34:35 -0700363 [ --with-Werror Build main code with -Werror],
364 [
365 if test -n "$withval" && test "x$withval" != "xno"; then
366 werror_flags="-Werror"
367 if test "x${withval}" != "xyes"; then
368 werror_flags="$withval"
369 fi
370 fi
371 ]
372)
373
Tim Rice648f8762011-01-26 12:38:57 -0800374AC_CHECK_HEADERS([ \
Damien Miller1ff130d2013-12-07 11:51:51 +1100375 blf.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700376 bstring.h \
377 crypt.h \
378 crypto/sha2.h \
379 dirent.h \
380 endian.h \
Damien Miller91f40d82013-02-22 11:37:00 +1100381 elf.h \
Darren Tucker6310ef22016-07-13 14:42:35 +1000382 err.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700383 features.h \
384 fcntl.h \
385 floatingpoint.h \
Darren Tucker0e3c5bc2019-11-01 18:24:29 +1100386 fnmatch.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700387 getopt.h \
388 glob.h \
389 ia.h \
390 iaf.h \
Darren Tuckerb59162d2018-02-23 15:20:42 +1100391 ifaddrs.h \
Darren Tucker6d725682014-01-17 19:17:34 +1100392 inttypes.h \
Darren Tuckerf3f2cc82016-07-11 17:23:38 +1000393 langinfo.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700394 limits.h \
Darren Tuckerae133d42013-06-06 08:30:20 +1000395 locale.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700396 login.h \
397 maillock.h \
398 ndir.h \
399 net/if_tun.h \
400 netdb.h \
401 netgroup.h \
402 pam/pam_appl.h \
403 paths.h \
Darren Tuckerfebf0f52007-06-25 22:15:12 +1000404 poll.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700405 pty.h \
406 readpassphrase.h \
407 rpc/types.h \
408 security/pam_appl.h \
409 sha2.h \
410 shadow.h \
411 stddef.h \
412 stdint.h \
413 string.h \
414 strings.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700415 sys/bitypes.h \
416 sys/bsdtty.h \
417 sys/cdefs.h \
418 sys/dir.h \
Damien Millerf8854742018-02-26 12:18:14 +1100419 sys/file.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700420 sys/mman.h \
Darren Tuckerce066f62018-02-22 20:45:09 +1100421 sys/label.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700422 sys/ndir.h \
Darren Tucker7c92a652007-09-27 07:00:09 +1000423 sys/poll.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700424 sys/prctl.h \
425 sys/pstat.h \
Darren Tucker5ee3fb52016-11-01 08:12:33 +1100426 sys/ptrace.h \
Damien Millerafa6e792018-04-13 13:31:42 +1000427 sys/random.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700428 sys/select.h \
429 sys/stat.h \
430 sys/stream.h \
431 sys/stropts.h \
432 sys/strtio.h \
Darren Tucker5b2e2ba2008-06-08 09:25:28 +1000433 sys/statvfs.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700434 sys/sysmacros.h \
435 sys/time.h \
436 sys/timers.h \
Darren Tucker11057562018-02-25 11:22:57 +1100437 sys/vfs.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700438 time.h \
439 tmpdir.h \
440 ttyent.h \
Tim Riceaa8954f2007-05-09 15:57:43 -0700441 ucred.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700442 unistd.h \
443 usersec.h \
444 util.h \
445 utime.h \
446 utmp.h \
447 utmpx.h \
448 vis.h \
Darren Tuckerf3f2cc82016-07-11 17:23:38 +1000449 wchar.h \
Tim Rice648f8762011-01-26 12:38:57 -0800450])
Tim Rice1cfab232006-10-03 09:34:35 -0700451
Darren Tuckerce066f62018-02-22 20:45:09 +1100452# On some platforms (eg SunOS4) sys/audit.h requires sys/[time|types|label.h]
453# to be included first.
454AC_CHECK_HEADERS([sys/audit.h], [], [], [
455#ifdef HAVE_SYS_TIME_H
456# include <sys/time.h>
457#endif
458#ifdef HAVE_SYS_TYPES_H
459# include <sys/types.h>
460#endif
461#ifdef HAVE_SYS_LABEL_H
462# include <sys/label.h>
463#endif
464])
465
Darren Tuckerdd9d9b32017-08-28 16:48:27 +1000466# sys/capsicum.h requires sys/types.h
467AC_CHECK_HEADERS([sys/capsicum.h], [], [], [
468#ifdef HAVE_SYS_TYPES_H
469# include <sys/types.h>
470#endif
471])
472
Darren Tuckerfa1b8342017-11-03 14:09:45 +1100473# net/route.h requires sys/socket.h and sys/types.h.
474# sys/sysctl.h also requires sys/param.h
475AC_CHECK_HEADERS([net/route.h sys/sysctl.h], [], [], [
476#ifdef HAVE_SYS_TYPES_H
477# include <sys/types.h>
478#endif
479#include <sys/param.h>
Damien Miller32354732017-10-25 11:25:43 +1100480#include <sys/socket.h>
481])
482
Tim Rice1cfab232006-10-03 09:34:35 -0700483# lastlog.h requires sys/time.h to be included first on Solaris
Tim Rice648f8762011-01-26 12:38:57 -0800484AC_CHECK_HEADERS([lastlog.h], [], [], [
Tim Rice1cfab232006-10-03 09:34:35 -0700485#ifdef HAVE_SYS_TIME_H
486# include <sys/time.h>
487#endif
488])
489
490# sys/ptms.h requires sys/stream.h to be included first on Solaris
Tim Rice648f8762011-01-26 12:38:57 -0800491AC_CHECK_HEADERS([sys/ptms.h], [], [], [
Tim Rice1cfab232006-10-03 09:34:35 -0700492#ifdef HAVE_SYS_STREAM_H
493# include <sys/stream.h>
494#endif
495])
496
497# login_cap.h requires sys/types.h on NetBSD
Tim Rice648f8762011-01-26 12:38:57 -0800498AC_CHECK_HEADERS([login_cap.h], [], [], [
Tim Rice1cfab232006-10-03 09:34:35 -0700499#include <sys/types.h>
500])
501
Darren Tuckerc4b22ca2009-07-12 21:56:29 +1000502# older BSDs need sys/param.h before sys/mount.h
Tim Rice648f8762011-01-26 12:38:57 -0800503AC_CHECK_HEADERS([sys/mount.h], [], [], [
Darren Tuckerc4b22ca2009-07-12 21:56:29 +1000504#include <sys/param.h>
505])
506
Darren Tuckeref4901c2013-06-03 01:59:13 +1000507# Android requires sys/socket.h to be included before sys/un.h
508AC_CHECK_HEADERS([sys/un.h], [], [], [
Darren Tucker0b43ffe2013-06-03 09:30:44 +1000509#include <sys/types.h>
Darren Tucker16cac192013-06-04 12:55:24 +1000510#include <sys/socket.h>
Darren Tuckeref4901c2013-06-03 01:59:13 +1000511])
512
Damien Miller1b06dc32006-08-31 03:24:41 +1000513# Messages for features tested for in target-specific section
514SIA_MSG="no"
515SPC_MSG="no"
Darren Tucker97528352010-11-05 12:03:05 +1100516SP_MSG="no"
Damien Miller4626cba2016-01-08 14:24:56 +1100517SPP_MSG="no"
518
519# Support for Solaris/Illumos privileges (this test is used by both
520# the --with-solaris-privs option and --with-sandbox=solaris).
521SOLARIS_PRIVS="no"
Damien Miller1b06dc32006-08-31 03:24:41 +1000522
Damien Millera22ba012000-03-02 23:09:20 +1100523# Check for some target-specific stuff
Damien Miller76112de1999-12-21 11:18:08 +1100524case "$host" in
Damien Miller75b1d102000-01-07 14:01:41 +1100525*-*-aix*)
Darren Tucker9216c372006-09-18 23:17:40 +1000526 # Some versions of VAC won't allow macro redefinitions at
527 # -qlanglevel=ansi, and autoconf 2.60 sometimes insists on using that
528 # particularly with older versions of vac or xlc.
Damien Miller10479cc2018-04-10 10:19:02 +1000529 # It also throws errors about null macro arguments, but these are
Darren Tucker9216c372006-09-18 23:17:40 +1000530 # not fatal.
Tim Rice648f8762011-01-26 12:38:57 -0800531 AC_MSG_CHECKING([if compiler allows macro redefinitions])
Darren Tucker9216c372006-09-18 23:17:40 +1000532 AC_COMPILE_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -0800533 [AC_LANG_PROGRAM([[
Darren Tucker9216c372006-09-18 23:17:40 +1000534#define testmacro foo
Tim Rice648f8762011-01-26 12:38:57 -0800535#define testmacro bar]],
536 [[ exit(0); ]])],
537 [ AC_MSG_RESULT([yes]) ],
538 [ AC_MSG_RESULT([no])
Darren Tucker9216c372006-09-18 23:17:40 +1000539 CC="`echo $CC | sed 's/-qlanglvl\=ansi//g'`"
Darren Tucker9216c372006-09-18 23:17:40 +1000540 CFLAGS="`echo $CFLAGS | sed 's/-qlanglvl\=ansi//g'`"
541 CPPFLAGS="`echo $CPPFLAGS | sed 's/-qlanglvl\=ansi//g'`"
542 ]
543 )
544
Damien Millera8e06ce2003-11-21 23:48:55 +1100545 AC_MSG_CHECKING([how to specify blibpath for linker ($LD)])
Damien Millereab4bae2003-04-29 23:22:40 +1000546 if (test -z "$blibpath"); then
Tim Ricefcb62202004-01-23 18:35:16 -0800547 blibpath="/usr/lib:/lib"
Damien Miller29ea30d2000-03-17 10:54:15 +1100548 fi
Damien Millereab4bae2003-04-29 23:22:40 +1000549 saved_LDFLAGS="$LDFLAGS"
Darren Tuckerbdc12122006-07-06 11:56:25 +1000550 if test "$GCC" = "yes"; then
551 flags="-Wl,-blibpath: -Wl,-rpath, -blibpath:"
552 else
553 flags="-blibpath: -Wl,-blibpath: -Wl,-rpath,"
554 fi
555 for tryflags in $flags ;do
Damien Millereab4bae2003-04-29 23:22:40 +1000556 if (test -z "$blibflags"); then
557 LDFLAGS="$saved_LDFLAGS $tryflags$blibpath"
Tim Rice648f8762011-01-26 12:38:57 -0800558 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
559 [blibflags=$tryflags], [])
Damien Millereab4bae2003-04-29 23:22:40 +1000560 fi
561 done
562 if (test -z "$blibflags"); then
Tim Rice648f8762011-01-26 12:38:57 -0800563 AC_MSG_RESULT([not found])
Damien Millereab4bae2003-04-29 23:22:40 +1000564 AC_MSG_ERROR([*** must be able to specify blibpath on AIX - check config.log])
565 else
Tim Rice648f8762011-01-26 12:38:57 -0800566 AC_MSG_RESULT([$blibflags])
Damien Millereab4bae2003-04-29 23:22:40 +1000567 fi
568 LDFLAGS="$saved_LDFLAGS"
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000569 dnl Check for authenticate. Might be in libs.a on older AIXes
Tim Rice648f8762011-01-26 12:38:57 -0800570 AC_CHECK_FUNC([authenticate], [AC_DEFINE([WITH_AIXAUTHENTICATE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700571 [Define if you want to enable AIX4's authenticate function])],
Tim Rice648f8762011-01-26 12:38:57 -0800572 [AC_CHECK_LIB([s], [authenticate],
573 [ AC_DEFINE([WITH_AIXAUTHENTICATE])
Tim Ricee958ed32002-07-05 07:12:33 -0700574 LIBS="$LIBS -ls"
575 ])
576 ])
Darren Tucker3c774c52005-02-16 22:49:31 +1100577 dnl Check for various auth function declarations in headers.
Darren Tucker04cfbe02005-02-20 23:27:11 +1100578 AC_CHECK_DECLS([authenticate, loginrestrictions, loginsuccess,
Darren Tuckere66519d2005-03-21 22:46:34 +1100579 passwdexpired, setauthdb], , , [#include <usersec.h>])
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000580 dnl Check if loginfailed is declared and takes 4 arguments (AIX >= 5.2)
Tim Rice648f8762011-01-26 12:38:57 -0800581 AC_CHECK_DECLS([loginfailed],
582 [AC_MSG_CHECKING([if loginfailed takes 4 arguments])
583 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <usersec.h> ]],
584 [[ (void)loginfailed("user","host","tty",0); ]])],
585 [AC_MSG_RESULT([yes])
586 AC_DEFINE([AIX_LOGINFAILED_4ARG], [1],
587 [Define if your AIX loginfailed() function
588 takes 4 arguments (AIX >= 5.2)])], [AC_MSG_RESULT([no])
589 ])],
590 [],
591 [#include <usersec.h>]
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000592 )
Tim Rice648f8762011-01-26 12:38:57 -0800593 AC_CHECK_FUNCS([getgrset setauthdb])
594 AC_CHECK_DECL([F_CLOSEM],
595 AC_DEFINE([HAVE_FCNTL_CLOSEM], [1], [Use F_CLOSEM fcntl for closefrom]),
Darren Tucker3083bc22006-08-17 19:35:49 +1000596 [],
597 [ #include <limits.h>
598 #include <fcntl.h> ]
599 )
Darren Tucker691d5232005-02-15 21:45:57 +1100600 check_for_aix_broken_getaddrinfo=1
Tim Rice648f8762011-01-26 12:38:57 -0800601 AC_DEFINE([SETEUID_BREAKS_SETUID], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700602 [Define if your platform breaks doing a seteuid before a setuid])
Tim Rice648f8762011-01-26 12:38:57 -0800603 AC_DEFINE([BROKEN_SETREUID], [1], [Define if your setreuid() is broken])
604 AC_DEFINE([BROKEN_SETREGID], [1], [Define if your setregid() is broken])
andre60f3c982000-06-03 16:18:19 +0000605 dnl AIX handles lastlog as part of its login message
Tim Rice648f8762011-01-26 12:38:57 -0800606 AC_DEFINE([DISABLE_LASTLOG], [1], [Define if you don't want to use lastlog])
607 AC_DEFINE([LOGIN_NEEDS_UTMPX], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700608 [Some systems need a utmpx entry for /bin/login to work])
Tim Rice648f8762011-01-26 12:38:57 -0800609 AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV],
Tim Rice7df8d392005-09-19 09:33:39 -0700610 [Define to a Set Process Title type if your system is
611 supported by bsd-setproctitle.c])
Tim Rice648f8762011-01-26 12:38:57 -0800612 AC_DEFINE([SSHPAM_CHAUTHTOK_NEEDS_RUID], [1],
Darren Tucker91d25a02005-11-26 22:24:09 +1100613 [AIX 5.2 and 5.3 (and presumably newer) require this])
Tim Rice648f8762011-01-26 12:38:57 -0800614 AC_DEFINE([PTY_ZEROREAD], [1], [read(1) can return 0 for a non-closed fd])
Darren Tuckeraa97d132013-03-12 11:31:05 +1100615 AC_DEFINE([PLATFORM_SYS_DIR_UID], 2, [System dirs owned by bin (uid 2)])
Darren Tucker2c71ca12018-03-30 18:23:07 +1100616 AC_DEFINE([BROKEN_STRNDUP], 1, [strndup broken, see APAR IY61211])
617 AC_DEFINE([BROKEN_STRNLEN], 1, [strnlen broken, see APAR IY62551])
Damien Miller75b1d102000-01-07 14:01:41 +1100618 ;;
Darren Tucker898ac932013-06-03 02:03:25 +1000619*-*-android*)
620 AC_DEFINE([DISABLE_UTMP], [1], [Define if you don't want to use utmp])
621 AC_DEFINE([DISABLE_WTMP], [1], [Define if you don't want to use wtmp])
622 ;;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100623*-*-cygwin*)
Damien Millerc8936ac2003-02-11 10:04:03 +1100624 check_for_libcrypt_later=1
Darren Tucker573e3872007-03-02 17:50:03 +1100625 LIBS="$LIBS /usr/lib/textreadmode.o"
Tim Rice648f8762011-01-26 12:38:57 -0800626 AC_DEFINE([HAVE_CYGWIN], [1], [Define if you are on Cygwin])
627 AC_DEFINE([USE_PIPES], [1], [Use PIPES instead of a socketpair()])
Damien Miller4626cba2016-01-08 14:24:56 +1100628 AC_DEFINE([NO_UID_RESTORATION_TEST], [1],
629 [Define to disable UID restoration test])
Tim Rice648f8762011-01-26 12:38:57 -0800630 AC_DEFINE([DISABLE_SHADOW], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700631 [Define if you want to disable shadow passwords])
Tim Rice648f8762011-01-26 12:38:57 -0800632 AC_DEFINE([NO_X11_UNIX_SOCKETS], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700633 [Define if X11 doesn't support AF_UNIX sockets on that system])
Tim Rice648f8762011-01-26 12:38:57 -0800634 AC_DEFINE([DISABLE_FD_PASSING], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700635 [Define if your platform needs to skip post auth
636 file descriptor passing])
Tim Rice648f8762011-01-26 12:38:57 -0800637 AC_DEFINE([SSH_IOBUFSZ], [65535], [Windows is sensitive to read buffer size])
Darren Tuckerfdce3732014-01-18 21:12:42 +1100638 AC_DEFINE([FILESYSTEM_NO_BACKSLASH], [1], [File names may not contain backslash characters])
639 # Cygwin defines optargs, optargs as declspec(dllimport) for historical
640 # reasons which cause compile warnings, so we disable those warnings.
641 OSSH_CHECK_CFLAG_COMPILE([-Wno-attributes])
Damien Millerbac2d8a2000-09-05 16:13:06 +1100642 ;;
Ben Lindstrom58055132001-02-15 18:34:29 +0000643*-*-dgux*)
Tim Rice648f8762011-01-26 12:38:57 -0800644 AC_DEFINE([IP_TOS_IS_BROKEN], [1],
Tim Ricea74000e2009-03-18 11:25:02 -0700645 [Define if your system choked on IP TOS setting])
Tim Rice648f8762011-01-26 12:38:57 -0800646 AC_DEFINE([SETEUID_BREAKS_SETUID])
647 AC_DEFINE([BROKEN_SETREUID])
648 AC_DEFINE([BROKEN_SETREGID])
Ben Lindstrom58055132001-02-15 18:34:29 +0000649 ;;
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000650*-*-darwin*)
Damien Miller852472a2014-01-22 16:31:18 +1100651 use_pie=auto
Tim Rice648f8762011-01-26 12:38:57 -0800652 AC_MSG_CHECKING([if we have working getaddrinfo])
653 AC_RUN_IFELSE([AC_LANG_SOURCE([[ #include <mach-o/dyld.h>
Damien Millerfc93d4b2002-09-04 23:26:29 +1000654main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
655 exit(0);
656 else
657 exit(1);
Tim Rice648f8762011-01-26 12:38:57 -0800658}
659 ]])],
660 [AC_MSG_RESULT([working])],
661 [AC_MSG_RESULT([buggy])
662 AC_DEFINE([BROKEN_GETADDRINFO], [1],
663 [getaddrinfo is broken (if present)])
664 ],
665 [AC_MSG_RESULT([assume it is working])])
666 AC_DEFINE([SETEUID_BREAKS_SETUID])
667 AC_DEFINE([BROKEN_SETREUID])
668 AC_DEFINE([BROKEN_SETREGID])
669 AC_DEFINE([BROKEN_GLOB], [1], [OS X glob does not do what we expect])
670 AC_DEFINE_UNQUOTED([BIND_8_COMPAT], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700671 [Define if your resolver libs need this for getrrsetbyname])
Tim Rice648f8762011-01-26 12:38:57 -0800672 AC_DEFINE([SSH_TUN_FREEBSD], [1], [Open tunnel devices the FreeBSD way])
673 AC_DEFINE([SSH_TUN_COMPAT_AF], [1],
Darren Tucker3eb48342006-06-23 21:05:12 +1000674 [Use tunnel device compatibility to OpenBSD])
Tim Rice648f8762011-01-26 12:38:57 -0800675 AC_DEFINE([SSH_TUN_PREPEND_AF], [1],
Darren Tucker3eb48342006-06-23 21:05:12 +1000676 [Prepend the address family to IP tunnel traffic])
Tim Rice648f8762011-01-26 12:38:57 -0800677 m4_pattern_allow([AU_IPv])
Tim Ricee1d93702016-05-31 11:13:22 -0700678 AC_CHECK_DECL([AU_IPv4], [],
Tim Rice648f8762011-01-26 12:38:57 -0800679 AC_DEFINE([AU_IPv4], [0], [System only supports IPv4 audit records])
Darren Tuckeracada072008-02-25 21:05:04 +1100680 [#include <bsm/audit.h>]
Tim Rice648f8762011-01-26 12:38:57 -0800681 AC_DEFINE([LASTLOG_WRITE_PUTUTXLINE], [1],
Damien Miller20e231f2009-02-12 13:12:21 +1100682 [Define if pututxline updates lastlog too])
Darren Tuckeracada072008-02-25 21:05:04 +1100683 )
Damien Millerc09182f2011-06-03 12:11:38 +1000684 AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV],
685 [Define to a Set Process Title type if your system is
686 supported by bsd-setproctitle.c])
Damien Millercd5e52e2011-06-27 07:18:18 +1000687 AC_CHECK_FUNCS([sandbox_init])
688 AC_CHECK_HEADERS([sandbox.h])
Damien Miller39f303b2016-02-23 12:56:59 +1100689 AC_CHECK_LIB([sandbox], [sandbox_apply], [
690 SSHDLIBS="$SSHDLIBS -lsandbox"
691 ])
Damien Miller28744182019-08-30 13:21:38 +1000692 # proc_pidinfo()-based closefrom() replacement.
693 AC_CHECK_HEADERS([libproc.h])
694 AC_CHECK_FUNCS([proc_pidinfo])
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000695 ;;
Darren Tucker57b29202006-09-10 20:25:51 +1000696*-*-dragonfly*)
697 SSHDLIBS="$SSHDLIBS -lcrypt"
Darren Tucker882abfd2013-11-09 00:17:41 +1100698 TEST_MALLOC_OPTIONS="AFGJPRX"
Darren Tucker57b29202006-09-10 20:25:51 +1000699 ;;
Tim Ricee1d93702016-05-31 11:13:22 -0700700*-*-haiku*)
Darren Tucker5faa52d2016-08-02 15:22:40 +1000701 LIBS="$LIBS -lbsd "
Darren Tuckerbb4f0032019-11-01 15:06:16 +1100702 CFLAGS="$CFLAGS -D_BSD_SOURCE"
Darren Tucker5faa52d2016-08-02 15:22:40 +1000703 AC_CHECK_LIB([network], [socket])
704 AC_DEFINE([HAVE_U_INT64_T])
Darren Tuckerbb4f0032019-11-01 15:06:16 +1100705 AC_DEFINE([DISABLE_UTMPX], [1], [no utmpx])
Darren Tucker5faa52d2016-08-02 15:22:40 +1000706 MANTYPE=man
707 ;;
Darren Tuckerfd333282005-05-28 18:31:42 +1000708*-*-hpux*)
709 # first we define all of the options common to all HP-UX releases
Kevin Steves315f8b72001-06-28 00:24:41 +0000710 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
Damien Miller9a947342000-08-30 10:03:33 +1100711 IPADDR_IN_DISPLAY=yes
Tim Rice648f8762011-01-26 12:38:57 -0800712 AC_DEFINE([USE_PIPES])
Tim Rice648f8762011-01-26 12:38:57 -0800713 AC_DEFINE([LOGIN_NEEDS_UTMPX])
714 AC_DEFINE([LOCKED_PASSWD_STRING], ["*"],
Tim Rice7df8d392005-09-19 09:33:39 -0700715 [String used in /etc/passwd to denote locked account])
Tim Rice648f8762011-01-26 12:38:57 -0800716 AC_DEFINE([SPT_TYPE], [SPT_PSTAT])
Darren Tuckeraa97d132013-03-12 11:31:05 +1100717 AC_DEFINE([PLATFORM_SYS_DIR_UID], 2, [System dirs owned by bin (uid 2)])
Tim Rice90f42b02011-06-02 18:17:49 -0700718 maildir="/var/mail"
Tim Ricef028f1e2002-07-19 12:41:10 -0700719 LIBS="$LIBS -lsec"
Tim Rice648f8762011-01-26 12:38:57 -0800720 AC_CHECK_LIB([xnet], [t_error], ,
721 [AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***])])
Darren Tuckerfd333282005-05-28 18:31:42 +1000722
723 # next, we define all of the options specific to major releases
724 case "$host" in
725 *-*-hpux10*)
726 if test -z "$GCC"; then
727 CFLAGS="$CFLAGS -Ae"
728 fi
729 ;;
730 *-*-hpux11*)
Tim Rice648f8762011-01-26 12:38:57 -0800731 AC_DEFINE([PAM_SUN_CODEBASE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700732 [Define if you are using Solaris-derived PAM which
733 passes pam_messages to the conversation function
734 with an extra level of indirection])
Tim Rice648f8762011-01-26 12:38:57 -0800735 AC_DEFINE([DISABLE_UTMP], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700736 [Define if you don't want to use utmp])
Tim Rice648f8762011-01-26 12:38:57 -0800737 AC_DEFINE([USE_BTMP], [1], [Use btmp to log bad logins])
Darren Tuckerfd333282005-05-28 18:31:42 +1000738 check_for_hpux_broken_getaddrinfo=1
739 check_for_conflicting_getspnam=1
740 ;;
741 esac
742
743 # lastly, we define options specific to minor releases
744 case "$host" in
745 *-*-hpux10.26)
Tim Rice648f8762011-01-26 12:38:57 -0800746 AC_DEFINE([HAVE_SECUREWARE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700747 [Define if you have SecureWare-based
748 protected password database])
Darren Tuckerfd333282005-05-28 18:31:42 +1000749 disable_ptmx_check=yes
750 LIBS="$LIBS -lsecpw"
751 ;;
752 esac
Damien Miller1bead332000-04-30 00:47:29 +1000753 ;;
Damien Millerbeb4ba51999-12-28 15:09:35 +1100754*-*-irix5*)
Damien Miller190d5a82000-09-30 09:43:19 +1100755 PATH="$PATH:/usr/etc"
Tim Rice648f8762011-01-26 12:38:57 -0800756 AC_DEFINE([BROKEN_INET_NTOA], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700757 [Define if you system's inet_ntoa is busted
758 (e.g. Irix gcc issue)])
Tim Rice648f8762011-01-26 12:38:57 -0800759 AC_DEFINE([SETEUID_BREAKS_SETUID])
760 AC_DEFINE([BROKEN_SETREUID])
761 AC_DEFINE([BROKEN_SETREGID])
762 AC_DEFINE([WITH_ABBREV_NO_TTY], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700763 [Define if you shouldn't strip 'tty' from your
764 ttyname in [uw]tmp])
Tim Rice648f8762011-01-26 12:38:57 -0800765 AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Damien Miller1808f382000-01-06 12:03:12 +1100766 ;;
767*-*-irix6*)
Damien Miller190d5a82000-09-30 09:43:19 +1100768 PATH="$PATH:/usr/etc"
Tim Rice648f8762011-01-26 12:38:57 -0800769 AC_DEFINE([WITH_IRIX_ARRAY], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700770 [Define if you have/want arrays
Damien Miller10479cc2018-04-10 10:19:02 +1000771 (cluster-wide session management, not C arrays)])
Tim Rice648f8762011-01-26 12:38:57 -0800772 AC_DEFINE([WITH_IRIX_PROJECT], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700773 [Define if you want IRIX project management])
Tim Rice648f8762011-01-26 12:38:57 -0800774 AC_DEFINE([WITH_IRIX_AUDIT], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700775 [Define if you want IRIX audit trails])
Tim Rice648f8762011-01-26 12:38:57 -0800776 AC_CHECK_FUNC([jlimit_startjob], [AC_DEFINE([WITH_IRIX_JOBS], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700777 [Define if you want IRIX kernel jobs])])
Tim Rice648f8762011-01-26 12:38:57 -0800778 AC_DEFINE([BROKEN_INET_NTOA])
779 AC_DEFINE([SETEUID_BREAKS_SETUID])
780 AC_DEFINE([BROKEN_SETREUID])
781 AC_DEFINE([BROKEN_SETREGID])
782 AC_DEFINE([BROKEN_UPDWTMPX], [1], [updwtmpx is broken (if present)])
783 AC_DEFINE([WITH_ABBREV_NO_TTY])
784 AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Damien Millerbeb4ba51999-12-28 15:09:35 +1100785 ;;
Damien Miller90551722009-02-16 15:37:03 +1100786*-*-k*bsd*-gnu | *-*-kopensolaris*-gnu)
787 check_for_libcrypt_later=1
Tim Rice648f8762011-01-26 12:38:57 -0800788 AC_DEFINE([PAM_TTY_KLUDGE])
789 AC_DEFINE([LOCKED_PASSWD_PREFIX], ["!"])
790 AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV])
791 AC_DEFINE([_PATH_BTMP], ["/var/log/btmp"], [log for bad login attempts])
792 AC_DEFINE([USE_BTMP], [1], [Use btmp to log bad logins])
Damien Miller90551722009-02-16 15:37:03 +1100793 ;;
Damien Millerb29ea912000-01-15 14:12:03 +1100794*-*-linux*)
795 no_dev_ptmx=1
Damien Miller852472a2014-01-22 16:31:18 +1100796 use_pie=auto
Damien Millera64b57a2001-01-17 10:44:13 +1100797 check_for_libcrypt_later=1
Darren Tucker70a3d552003-08-21 17:58:29 +1000798 check_for_openpty_ctty_bug=1
Darren Tuckerc61d5ec2017-02-03 14:10:34 +1100799 dnl Target SUSv3/POSIX.1-2001 plus BSD specifics.
800 dnl _DEFAULT_SOURCE is the new name for _BSD_SOURCE
801 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=600 -D_BSD_SOURCE -D_DEFAULT_SOURCE"
Tim Rice648f8762011-01-26 12:38:57 -0800802 AC_DEFINE([PAM_TTY_KLUDGE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700803 [Work around problematic Linux PAM modules handling of PAM_TTY])
Tim Rice648f8762011-01-26 12:38:57 -0800804 AC_DEFINE([LOCKED_PASSWD_PREFIX], ["!"],
Tim Rice7df8d392005-09-19 09:33:39 -0700805 [String used in /etc/passwd to denote locked account])
Tim Rice648f8762011-01-26 12:38:57 -0800806 AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV])
807 AC_DEFINE([LINK_OPNOTSUPP_ERRNO], [EPERM],
Tim Rice7df8d392005-09-19 09:33:39 -0700808 [Define to whatever link() returns for "not supported"
809 if it doesn't return EOPNOTSUPP.])
Tim Rice648f8762011-01-26 12:38:57 -0800810 AC_DEFINE([_PATH_BTMP], ["/var/log/btmp"], [log for bad login attempts])
811 AC_DEFINE([USE_BTMP])
812 AC_DEFINE([LINUX_OOM_ADJUST], [1], [Adjust Linux out-of-memory killer])
Damien Miller7bcb0892000-03-11 20:45:40 +1100813 inet6_default_4in6=yes
Darren Tucker3c016542003-05-02 20:48:21 +1000814 case `uname -r` in
Darren Tuckerc437cda2003-05-10 17:05:46 +1000815 1.*|2.0.*)
Tim Rice648f8762011-01-26 12:38:57 -0800816 AC_DEFINE([BROKEN_CMSG_TYPE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700817 [Define if cmsg_type is not passed correctly])
Darren Tucker3c016542003-05-02 20:48:21 +1000818 ;;
Darren Tucker3c016542003-05-02 20:48:21 +1000819 esac
Damien Miller89e03ba2005-12-31 16:42:03 +1100820 # tun(4) forwarding compat code
Tim Rice648f8762011-01-26 12:38:57 -0800821 AC_CHECK_HEADERS([linux/if_tun.h])
Damien Millerbd4e4102006-01-01 21:03:30 +1100822 if test "x$ac_cv_header_linux_if_tun_h" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -0800823 AC_DEFINE([SSH_TUN_LINUX], [1],
Damien Miller89e03ba2005-12-31 16:42:03 +1100824 [Open tunnel devices the Linux tun/tap way])
Tim Rice648f8762011-01-26 12:38:57 -0800825 AC_DEFINE([SSH_TUN_COMPAT_AF], [1],
Damien Miller89e03ba2005-12-31 16:42:03 +1100826 [Use tunnel device compatibility to OpenBSD])
Tim Rice648f8762011-01-26 12:38:57 -0800827 AC_DEFINE([SSH_TUN_PREPEND_AF], [1],
Damien Miller89e03ba2005-12-31 16:42:03 +1100828 [Prepend the address family to IP tunnel traffic])
829 fi
Darren Tucker81c9ccd2017-11-03 14:52:51 +1100830 AC_CHECK_HEADER([linux/if.h],
831 AC_DEFINE([SYS_RDOMAIN_LINUX], [1],
Darren Tucker24d2a332018-02-11 21:20:39 +1300832 [Support routing domains using Linux VRF]), [], [
833#ifdef HAVE_SYS_TYPES_H
Damien Miller87294982019-07-10 09:43:19 +1000834# include <sys/types.h>
Darren Tucker24d2a332018-02-11 21:20:39 +1300835#endif
836 ])
Darren Tucker60395f92012-07-03 14:31:18 +1000837 AC_CHECK_HEADERS([linux/seccomp.h linux/filter.h linux/audit.h], [],
838 [], [#include <linux/types.h>])
Vicente Olivert Riera58008672017-06-20 16:42:11 +0100839 # Obtain MIPS ABI
840 case "$host" in
841 mips*)
Darren Tuckerfbd733a2018-03-12 19:17:26 +1100842 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Vicente Olivert Riera58008672017-06-20 16:42:11 +0100843#if _MIPS_SIM != _ABIO32
844#error
845#endif
Darren Tuckerfbd733a2018-03-12 19:17:26 +1100846 ]])],[mips_abi="o32"],[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Vicente Olivert Riera58008672017-06-20 16:42:11 +0100847#if _MIPS_SIM != _ABIN32
848#error
849#endif
Darren Tuckerfbd733a2018-03-12 19:17:26 +1100850 ]])],[mips_abi="n32"],[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Vicente Olivert Riera58008672017-06-20 16:42:11 +0100851#if _MIPS_SIM != _ABI64
852#error
853#endif
Darren Tuckerfbd733a2018-03-12 19:17:26 +1100854 ]])],[mips_abi="n64"],[AC_MSG_ERROR([unknown MIPS ABI])
Vicente Olivert Riera58008672017-06-20 16:42:11 +0100855 ])
856 ])
857 ])
858 ;;
859 esac
Damien Miller91f40d82013-02-22 11:37:00 +1100860 AC_MSG_CHECKING([for seccomp architecture])
861 seccomp_audit_arch=
Damien Millere0956e32012-04-04 11:27:54 +1000862 case "$host" in
863 x86_64-*)
Damien Miller91f40d82013-02-22 11:37:00 +1100864 seccomp_audit_arch=AUDIT_ARCH_X86_64
Damien Millere0956e32012-04-04 11:27:54 +1000865 ;;
866 i*86-*)
Damien Miller91f40d82013-02-22 11:37:00 +1100867 seccomp_audit_arch=AUDIT_ARCH_I386
Damien Millere0956e32012-04-04 11:27:54 +1000868 ;;
Damien Miller99f33d72015-06-17 10:50:51 +1000869 arm*-*)
Damien Miller91f40d82013-02-22 11:37:00 +1100870 seccomp_audit_arch=AUDIT_ARCH_ARM
Damien Miller99f33d72015-06-17 10:50:51 +1000871 ;;
872 aarch64*-*)
873 seccomp_audit_arch=AUDIT_ARCH_AARCH64
Damien Miller5c15e222015-06-18 15:07:56 +1000874 ;;
Damien Millerb9c50612016-07-08 13:59:13 +1000875 s390x-*)
876 seccomp_audit_arch=AUDIT_ARCH_S390X
877 ;;
878 s390-*)
879 seccomp_audit_arch=AUDIT_ARCH_S390
880 ;;
881 powerpc64-*)
882 seccomp_audit_arch=AUDIT_ARCH_PPC64
883 ;;
884 powerpc64le-*)
885 seccomp_audit_arch=AUDIT_ARCH_PPC64LE
886 ;;
887 mips-*)
888 seccomp_audit_arch=AUDIT_ARCH_MIPS
889 ;;
890 mipsel-*)
891 seccomp_audit_arch=AUDIT_ARCH_MIPSEL
892 ;;
893 mips64-*)
Vicente Olivert Riera45011512017-06-20 16:42:28 +0100894 case "$mips_abi" in
895 "n32")
896 seccomp_audit_arch=AUDIT_ARCH_MIPS64N32
897 ;;
898 "n64")
899 seccomp_audit_arch=AUDIT_ARCH_MIPS64
900 ;;
901 esac
Damien Millerb9c50612016-07-08 13:59:13 +1000902 ;;
903 mips64el-*)
Vicente Olivert Riera45011512017-06-20 16:42:28 +0100904 case "$mips_abi" in
905 "n32")
906 seccomp_audit_arch=AUDIT_ARCH_MIPSEL64N32
907 ;;
908 "n64")
909 seccomp_audit_arch=AUDIT_ARCH_MIPSEL64
910 ;;
911 esac
Damien Millerb9c50612016-07-08 13:59:13 +1000912 ;;
Damien Millere0956e32012-04-04 11:27:54 +1000913 esac
Damien Miller91f40d82013-02-22 11:37:00 +1100914 if test "x$seccomp_audit_arch" != "x" ; then
915 AC_MSG_RESULT(["$seccomp_audit_arch"])
Damien Miller99f33d72015-06-17 10:50:51 +1000916 AC_DEFINE_UNQUOTED([SECCOMP_AUDIT_ARCH], [$seccomp_audit_arch],
917 [Specify the system call convention in use])
Damien Miller91f40d82013-02-22 11:37:00 +1100918 else
919 AC_MSG_RESULT([architecture not supported])
920 fi
Damien Millerb29ea912000-01-15 14:12:03 +1100921 ;;
Ben Lindstromb5628642000-10-18 00:02:25 +0000922mips-sony-bsd|mips-sony-newsos4)
Tim Rice648f8762011-01-26 12:38:57 -0800923 AC_DEFINE([NEED_SETPGRP], [1], [Need setpgrp to acquire controlling tty])
Ben Lindstromb5628642000-10-18 00:02:25 +0000924 SONY=1
Ben Lindstromb5628642000-10-18 00:02:25 +0000925 ;;
Damien Milleree1c0b32000-01-21 00:18:15 +1100926*-*-netbsd*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000927 check_for_libcrypt_before=1
Tim Riceeae17cc2005-03-17 16:52:20 -0800928 if test "x$withval" != "xno" ; then
Darren Tucker2f0bad22019-01-21 21:28:27 +1100929 rpath_opt="-R"
Tim Rice88368a32003-12-08 12:35:59 -0800930 fi
Damien Miller99522ba2016-07-28 08:54:27 +1000931 CPPFLAGS="$CPPFLAGS -D_OPENBSD_SOURCE"
Tim Rice648f8762011-01-26 12:38:57 -0800932 AC_DEFINE([SSH_TUN_FREEBSD], [1], [Open tunnel devices the FreeBSD way])
Damien Miller2dcddbf2006-01-01 19:47:05 +1100933 AC_CHECK_HEADER([net/if_tap.h], ,
Tim Rice648f8762011-01-26 12:38:57 -0800934 AC_DEFINE([SSH_TUN_NO_L2], [1], [No layer 2 tunnel support]))
935 AC_DEFINE([SSH_TUN_PREPEND_AF], [1],
Damien Miller2dcddbf2006-01-01 19:47:05 +1100936 [Prepend the address family to IP tunnel traffic])
Darren Tucker882abfd2013-11-09 00:17:41 +1100937 TEST_MALLOC_OPTIONS="AJRX"
Damien Millerf5bbd3b2014-01-30 11:26:46 +1100938 AC_DEFINE([BROKEN_READ_COMPARISON], [1],
939 [NetBSD read function is sometimes redirected, breaking atomicio comparisons against it])
Damien Milleree1c0b32000-01-21 00:18:15 +1100940 ;;
Damien Millerfbd884a2001-02-27 08:39:07 +1100941*-*-freebsd*)
942 check_for_libcrypt_later=1
Tim Rice648f8762011-01-26 12:38:57 -0800943 AC_DEFINE([LOCKED_PASSWD_PREFIX], ["*LOCKED*"], [Account locked with pw(1)])
944 AC_DEFINE([SSH_TUN_FREEBSD], [1], [Open tunnel devices the FreeBSD way])
Damien Miller2dcddbf2006-01-01 19:47:05 +1100945 AC_CHECK_HEADER([net/if_tap.h], ,
Tim Rice648f8762011-01-26 12:38:57 -0800946 AC_DEFINE([SSH_TUN_NO_L2], [1], [No layer 2 tunnel support]))
947 AC_DEFINE([BROKEN_GLOB], [1], [FreeBSD glob does not do what we need])
Darren Tucker882abfd2013-11-09 00:17:41 +1100948 TEST_MALLOC_OPTIONS="AJRX"
Damien Miller2035b222014-01-26 09:39:53 +1100949 # Preauth crypto occasionally uses file descriptors for crypto offload
950 # and will crash if they cannot be opened.
Damien Miller5b447c02014-01-26 09:46:53 +1100951 AC_DEFINE([SANDBOX_SKIP_RLIMIT_NOFILE], [1],
Tim Rice03ae0812014-02-21 09:09:34 -0800952 [define if setrlimit RLIMIT_NOFILE breaks things])
Damien Millerfbd884a2001-02-27 08:39:07 +1100953 ;;
Darren Tuckered9eb022003-09-22 11:18:47 +1000954*-*-bsdi*)
Tim Rice648f8762011-01-26 12:38:57 -0800955 AC_DEFINE([SETEUID_BREAKS_SETUID])
956 AC_DEFINE([BROKEN_SETREUID])
957 AC_DEFINE([BROKEN_SETREGID])
Darren Tuckered9eb022003-09-22 11:18:47 +1000958 ;;
Damien Miller0f91b4e2000-06-18 15:43:25 +1000959*-next-*)
Damien Miller0f91b4e2000-06-18 15:43:25 +1000960 conf_lastlog_location="/usr/adm/lastlog"
Damien Millere5192fa2000-08-29 14:30:37 +1100961 conf_utmp_location=/etc/utmp
962 conf_wtmp_location=/usr/adm/wtmp
Tim Rice90f42b02011-06-02 18:17:49 -0700963 maildir=/usr/spool/mail
Tim Rice648f8762011-01-26 12:38:57 -0800964 AC_DEFINE([HAVE_NEXT], [1], [Define if you are on NeXT])
Tim Rice648f8762011-01-26 12:38:57 -0800965 AC_DEFINE([USE_PIPES])
966 AC_DEFINE([BROKEN_SAVED_UIDS], [1], [Needed for NeXT])
Damien Miller0f91b4e2000-06-18 15:43:25 +1000967 ;;
Darren Tucker4a422572005-07-14 17:22:11 +1000968*-*-openbsd*)
Damien Miller852472a2014-01-22 16:31:18 +1100969 use_pie=auto
Tim Rice648f8762011-01-26 12:38:57 -0800970 AC_DEFINE([HAVE_ATTRIBUTE__SENTINEL__], [1], [OpenBSD's gcc has sentinel])
971 AC_DEFINE([HAVE_ATTRIBUTE__BOUNDED__], [1], [OpenBSD's gcc has bounded])
972 AC_DEFINE([SSH_TUN_OPENBSD], [1], [Open tunnel devices the OpenBSD way])
973 AC_DEFINE([SYSLOG_R_SAFE_IN_SIGHAND], [1],
Damien Millerbb598142006-08-19 08:38:23 +1000974 [syslog_r function is safe to use in in a signal handler])
Darren Tucker882abfd2013-11-09 00:17:41 +1100975 TEST_MALLOC_OPTIONS="AFGJPRX"
Darren Tucker4a422572005-07-14 17:22:11 +1000976 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100977*-*-solaris*)
Tim Riceeae17cc2005-03-17 16:52:20 -0800978 if test "x$withval" != "xno" ; then
Darren Tucker2f0bad22019-01-21 21:28:27 +1100979 rpath_opt="-R"
Tim Ricead4a1882004-02-29 15:53:37 -0800980 fi
Tim Rice648f8762011-01-26 12:38:57 -0800981 AC_DEFINE([PAM_SUN_CODEBASE])
982 AC_DEFINE([LOGIN_NEEDS_UTMPX])
Tim Rice648f8762011-01-26 12:38:57 -0800983 AC_DEFINE([PAM_TTY_KLUDGE])
984 AC_DEFINE([SSHPAM_CHAUTHTOK_NEEDS_RUID], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700985 [Define if pam_chauthtok wants real uid set
986 to the unpriv'ed user])
Tim Rice648f8762011-01-26 12:38:57 -0800987 AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Darren Tuckerc437cda2003-05-10 17:05:46 +1000988 # Pushing STREAMS modules will cause sshd to acquire a controlling tty.
Tim Rice648f8762011-01-26 12:38:57 -0800989 AC_DEFINE([SSHD_ACQUIRES_CTTY], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700990 [Define if sshd somehow reacquires a controlling TTY
991 after setsid()])
Tim Rice648f8762011-01-26 12:38:57 -0800992 AC_DEFINE([PASSWD_NEEDS_USERNAME], [1], [must supply username to passwd
Darren Tucker0249f932006-06-24 12:10:07 +1000993 in case the name is longer than 8 chars])
Tim Rice648f8762011-01-26 12:38:57 -0800994 AC_DEFINE([BROKEN_TCGETATTR_ICANON], [1], [tcgetattr with ICANON may hang])
Darren Tuckere1a790d2003-09-16 11:52:19 +1000995 external_path_file=/etc/default/login
andre2ff7b5d2000-06-03 14:57:40 +0000996 # hardwire lastlog location (can't detect it on some versions)
997 conf_lastlog_location="/var/adm/lastlog"
Tim Rice648f8762011-01-26 12:38:57 -0800998 AC_MSG_CHECKING([for obsolete utmp and wtmp in solaris2.x])
Damien Millera1cb6442000-06-09 11:58:35 +1000999 sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'`
1000 if test "$sol2ver" -ge 8; then
Tim Rice648f8762011-01-26 12:38:57 -08001001 AC_MSG_RESULT([yes])
1002 AC_DEFINE([DISABLE_UTMP])
1003 AC_DEFINE([DISABLE_WTMP], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001004 [Define if you don't want to use wtmp])
Damien Millera1cb6442000-06-09 11:58:35 +10001005 else
Tim Rice648f8762011-01-26 12:38:57 -08001006 AC_MSG_RESULT([no])
Damien Millera1cb6442000-06-09 11:58:35 +10001007 fi
Darren Tuckera86ec4d2016-06-14 10:48:27 +10001008 AC_CHECK_FUNCS([setpflags])
Darren Tucker907091a2016-02-19 09:05:39 +11001009 AC_CHECK_FUNCS([setppriv])
1010 AC_CHECK_FUNCS([priv_basicset])
1011 AC_CHECK_HEADERS([priv.h])
Tim Rice648f8762011-01-26 12:38:57 -08001012 AC_ARG_WITH([solaris-contracts],
Damien Miller1b06dc32006-08-31 03:24:41 +10001013 [ --with-solaris-contracts Enable Solaris process contracts (experimental)],
1014 [
Tim Rice648f8762011-01-26 12:38:57 -08001015 AC_CHECK_LIB([contract], [ct_tmpl_activate],
1016 [ AC_DEFINE([USE_SOLARIS_PROCESS_CONTRACTS], [1],
Damien Miller1b06dc32006-08-31 03:24:41 +10001017 [Define if you have Solaris process contracts])
Damien Miller4626cba2016-01-08 14:24:56 +11001018 LIBS="$LIBS -lcontract"
Damien Miller1b06dc32006-08-31 03:24:41 +10001019 SPC_MSG="yes" ], )
1020 ],
1021 )
Tim Rice648f8762011-01-26 12:38:57 -08001022 AC_ARG_WITH([solaris-projects],
Darren Tucker97528352010-11-05 12:03:05 +11001023 [ --with-solaris-projects Enable Solaris projects (experimental)],
1024 [
Tim Rice648f8762011-01-26 12:38:57 -08001025 AC_CHECK_LIB([project], [setproject],
1026 [ AC_DEFINE([USE_SOLARIS_PROJECTS], [1],
Darren Tucker97528352010-11-05 12:03:05 +11001027 [Define if you have Solaris projects])
Damien Miller4626cba2016-01-08 14:24:56 +11001028 LIBS="$LIBS -lproject"
Darren Tucker97528352010-11-05 12:03:05 +11001029 SP_MSG="yes" ], )
1030 ],
1031 )
Damien Miller4626cba2016-01-08 14:24:56 +11001032 AC_ARG_WITH([solaris-privs],
1033 [ --with-solaris-privs Enable Solaris/Illumos privileges (experimental)],
1034 [
1035 AC_MSG_CHECKING([for Solaris/Illumos privilege support])
Darren Tucker907091a2016-02-19 09:05:39 +11001036 if test "x$ac_cv_func_setppriv" = "xyes" -a \
1037 "x$ac_cv_header_priv_h" = "xyes" ; then
1038 SOLARIS_PRIVS=yes
Damien Miller4626cba2016-01-08 14:24:56 +11001039 AC_MSG_RESULT([found])
1040 AC_DEFINE([NO_UID_RESTORATION_TEST], [1],
1041 [Define to disable UID restoration test])
1042 AC_DEFINE([USE_SOLARIS_PRIVS], [1],
1043 [Define if you have Solaris privileges])
1044 SPP_MSG="yes"
1045 else
1046 AC_MSG_RESULT([not found])
1047 AC_MSG_ERROR([*** must have support for Solaris privileges to use --with-solaris-privs])
1048 fi
1049 ],
1050 )
Tim Rice5ab9b632013-06-02 14:05:48 -07001051 TEST_SHELL=$SHELL # let configure find us a capable shell
Damien Miller75b1d102000-01-07 14:01:41 +11001052 ;;
Damien Millerdfc83f42000-05-20 15:02:59 +10001053*-*-sunos4*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00001054 CPPFLAGS="$CPPFLAGS -DSUNOS4"
Tim Rice648f8762011-01-26 12:38:57 -08001055 AC_CHECK_FUNCS([getpwanam])
1056 AC_DEFINE([PAM_SUN_CODEBASE])
Damien Miller36ccb5c2000-08-09 16:34:27 +10001057 conf_utmp_location=/etc/utmp
1058 conf_wtmp_location=/var/adm/wtmp
1059 conf_lastlog_location=/var/adm/lastlog
Tim Rice648f8762011-01-26 12:38:57 -08001060 AC_DEFINE([USE_PIPES])
Darren Tuckerc0a0c3f2018-03-05 20:03:07 +11001061 AC_DEFINE([DISABLE_UTMPX], [1], [no utmpx])
Damien Millerdfc83f42000-05-20 15:02:59 +10001062 ;;
Ben Lindstrom603bdfd2001-02-12 07:29:45 +00001063*-ncr-sysv*)
Tim Rice13aae5e2001-10-21 17:53:58 -07001064 LIBS="$LIBS -lc89"
Tim Rice648f8762011-01-26 12:38:57 -08001065 AC_DEFINE([USE_PIPES])
1066 AC_DEFINE([SSHD_ACQUIRES_CTTY])
1067 AC_DEFINE([SETEUID_BREAKS_SETUID])
1068 AC_DEFINE([BROKEN_SETREUID])
1069 AC_DEFINE([BROKEN_SETREGID])
Ben Lindstrom603bdfd2001-02-12 07:29:45 +00001070 ;;
Damien Miller2ae714f2000-07-11 09:29:50 +10001071*-sni-sysv*)
Tim Riceffdf4aa2001-10-27 10:45:36 -07001072 # /usr/ucblib MUST NOT be searched on ReliantUNIX
Tim Rice648f8762011-01-26 12:38:57 -08001073 AC_CHECK_LIB([dl], [dlsym], ,)
Darren Tucker79d09fa2005-11-24 22:34:54 +11001074 # -lresolv needs to be at the end of LIBS or DNS lookups break
Tim Rice648f8762011-01-26 12:38:57 -08001075 AC_CHECK_LIB([resolv], [res_query], [ LIBS="$LIBS -lresolv" ])
Damien Millerfd9885e2001-01-10 08:16:53 +11001076 IPADDR_IN_DISPLAY=yes
Tim Rice648f8762011-01-26 12:38:57 -08001077 AC_DEFINE([USE_PIPES])
1078 AC_DEFINE([IP_TOS_IS_BROKEN])
1079 AC_DEFINE([SETEUID_BREAKS_SETUID])
1080 AC_DEFINE([BROKEN_SETREUID])
1081 AC_DEFINE([BROKEN_SETREGID])
1082 AC_DEFINE([SSHD_ACQUIRES_CTTY])
Darren Tuckere1a790d2003-09-16 11:52:19 +10001083 external_path_file=/etc/default/login
Tim Riceffdf4aa2001-10-27 10:45:36 -07001084 # /usr/ucblib/libucb.a no longer needed on ReliantUNIX
1085 # Attention: always take care to bind libsocket and libnsl before libc,
1086 # otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
Damien Miller2ae714f2000-07-11 09:29:50 +10001087 ;;
Tim Rice0f83d292004-12-08 18:29:58 -08001088# UnixWare 1.x, UnixWare 2.x, and others based on code from Univel.
Damien Miller78315eb2000-09-29 23:01:36 +11001089*-*-sysv4.2*)
Tim Rice648f8762011-01-26 12:38:57 -08001090 AC_DEFINE([USE_PIPES])
1091 AC_DEFINE([SETEUID_BREAKS_SETUID])
1092 AC_DEFINE([BROKEN_SETREUID])
1093 AC_DEFINE([BROKEN_SETREGID])
1094 AC_DEFINE([PASSWD_NEEDS_USERNAME], [1], [must supply username to passwd])
1095 AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Tim Rice5ab9b632013-06-02 14:05:48 -07001096 TEST_SHELL=$SHELL # let configure find us a capable shell
Damien Miller78315eb2000-09-29 23:01:36 +11001097 ;;
Tim Rice0f83d292004-12-08 18:29:58 -08001098# UnixWare 7.x, OpenUNIX 8
Damien Miller78315eb2000-09-29 23:01:36 +11001099*-*-sysv5*)
Tim Rice641ebf12010-01-17 17:05:39 -08001100 CPPFLAGS="$CPPFLAGS -Dvsnprintf=_xvsnprintf -Dsnprintf=_xsnprintf"
Tim Rice648f8762011-01-26 12:38:57 -08001101 AC_DEFINE([UNIXWARE_LONG_PASSWORDS], [1], [Support passwords > 8 chars])
1102 AC_DEFINE([USE_PIPES])
1103 AC_DEFINE([SETEUID_BREAKS_SETUID])
1104 AC_DEFINE([BROKEN_GETADDRINFO])
1105 AC_DEFINE([BROKEN_SETREUID])
1106 AC_DEFINE([BROKEN_SETREGID])
1107 AC_DEFINE([PASSWD_NEEDS_USERNAME])
Tim Rice8433d512017-07-11 18:47:56 -07001108 AC_DEFINE([BROKEN_TCGETATTR_ICANON])
Tim Rice5ab9b632013-06-02 14:05:48 -07001109 TEST_SHELL=$SHELL # let configure find us a capable shell
Tim Rice4afeaf32018-03-25 10:00:21 -07001110 check_for_libcrypt_later=1
Tim Rice4dbacff2005-06-01 20:09:28 -07001111 case "$host" in
1112 *-*-sysv5SCO_SV*) # SCO OpenServer 6.x
Tim Rice90f42b02011-06-02 18:17:49 -07001113 maildir=/var/spool/mail
Tim Rice648f8762011-01-26 12:38:57 -08001114 AC_DEFINE([BROKEN_UPDWTMPX])
1115 AC_CHECK_LIB([prot], [getluid], [ LIBS="$LIBS -lprot"
1116 AC_CHECK_FUNCS([getluid setluid], , , [-lprot])
Tim Rice648f8762011-01-26 12:38:57 -08001117 ], , )
Tim Rice4dbacff2005-06-01 20:09:28 -07001118 ;;
Tim Rice648f8762011-01-26 12:38:57 -08001119 *) AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Tim Rice46259d82005-11-28 18:40:34 -08001120 ;;
Tim Rice4dbacff2005-06-01 20:09:28 -07001121 esac
Damien Miller78315eb2000-09-29 23:01:36 +11001122 ;;
Damien Miller75b1d102000-01-07 14:01:41 +11001123*-*-sysv*)
Damien Miller75b1d102000-01-07 14:01:41 +11001124 ;;
Tim Rice0f83d292004-12-08 18:29:58 -08001125# SCO UNIX and OEM versions of SCO UNIX
Damien Miller78315eb2000-09-29 23:01:36 +11001126*-*-sco3.2v4*)
Tim Ricec390c8d2005-03-07 01:21:37 -08001127 AC_MSG_ERROR("This Platform is no longer supported.")
Damien Miller78315eb2000-09-29 23:01:36 +11001128 ;;
Tim Rice0f83d292004-12-08 18:29:58 -08001129# SCO OpenServer 5.x
Damien Miller78315eb2000-09-29 23:01:36 +11001130*-*-sco3.2v5*)
Tim Rice89fe3f32003-01-19 20:20:24 -08001131 if test -z "$GCC"; then
1132 CFLAGS="$CFLAGS -belf"
1133 fi
Damien Miller5dfe9762001-02-16 12:05:39 +11001134 LIBS="$LIBS -lprot -lx -ltinfo -lm"
Damien Millera66626b2000-06-13 18:57:53 +10001135 no_dev_ptmx=1
Tim Rice648f8762011-01-26 12:38:57 -08001136 AC_DEFINE([USE_PIPES])
1137 AC_DEFINE([HAVE_SECUREWARE])
1138 AC_DEFINE([DISABLE_SHADOW])
1139 AC_DEFINE([DISABLE_FD_PASSING])
1140 AC_DEFINE([SETEUID_BREAKS_SETUID])
1141 AC_DEFINE([BROKEN_GETADDRINFO])
1142 AC_DEFINE([BROKEN_SETREUID])
1143 AC_DEFINE([BROKEN_SETREGID])
1144 AC_DEFINE([WITH_ABBREV_NO_TTY])
1145 AC_DEFINE([BROKEN_UPDWTMPX])
1146 AC_DEFINE([PASSWD_NEEDS_USERNAME])
1147 AC_CHECK_FUNCS([getluid setluid])
Tim Rice07183b82001-04-25 21:40:28 -07001148 MANTYPE=man
Tim Rice5ab9b632013-06-02 14:05:48 -07001149 TEST_SHELL=$SHELL # let configure find us a capable shell
Tim Riceaa86c392013-03-16 20:55:46 -07001150 SKIP_DISABLE_LASTLOG_DEFINE=yes
Damien Millera66626b2000-06-13 18:57:53 +10001151 ;;
Damien Millerb8c656e2000-06-28 15:22:41 +10001152*-dec-osf*)
Tim Rice648f8762011-01-26 12:38:57 -08001153 AC_MSG_CHECKING([for Digital Unix SIA])
Ben Lindstrom72af2ef2001-05-08 20:42:28 +00001154 no_osfsia=""
Tim Rice648f8762011-01-26 12:38:57 -08001155 AC_ARG_WITH([osfsia],
Ben Lindstrom72af2ef2001-05-08 20:42:28 +00001156 [ --with-osfsia Enable Digital Unix SIA],
1157 [
1158 if test "x$withval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08001159 AC_MSG_RESULT([disabled])
Ben Lindstrom72af2ef2001-05-08 20:42:28 +00001160 no_osfsia=1
1161 fi
1162 ],
1163 )
1164 if test -z "$no_osfsia" ; then
Damien Millerb8c656e2000-06-28 15:22:41 +10001165 if test -f /etc/sia/matrix.conf; then
Tim Rice648f8762011-01-26 12:38:57 -08001166 AC_MSG_RESULT([yes])
1167 AC_DEFINE([HAVE_OSF_SIA], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001168 [Define if you have Digital Unix Security
1169 Integration Architecture])
Tim Rice648f8762011-01-26 12:38:57 -08001170 AC_DEFINE([DISABLE_LOGIN], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001171 [Define if you don't want to use your
1172 system's login() call])
Tim Rice648f8762011-01-26 12:38:57 -08001173 AC_DEFINE([DISABLE_FD_PASSING])
Damien Millerb8c656e2000-06-28 15:22:41 +10001174 LIBS="$LIBS -lsecurity -ldb -lm -laud"
Damien Miller1b06dc32006-08-31 03:24:41 +10001175 SIA_MSG="yes"
Damien Millerb8c656e2000-06-28 15:22:41 +10001176 else
Tim Rice648f8762011-01-26 12:38:57 -08001177 AC_MSG_RESULT([no])
1178 AC_DEFINE([LOCKED_PASSWD_SUBSTR], ["Nologin"],
Tim Rice7df8d392005-09-19 09:33:39 -07001179 [String used in /etc/passwd to denote locked account])
Damien Millerb8c656e2000-06-28 15:22:41 +10001180 fi
1181 fi
Tim Rice648f8762011-01-26 12:38:57 -08001182 AC_DEFINE([BROKEN_GETADDRINFO])
1183 AC_DEFINE([SETEUID_BREAKS_SETUID])
1184 AC_DEFINE([BROKEN_SETREUID])
1185 AC_DEFINE([BROKEN_SETREGID])
1186 AC_DEFINE([BROKEN_READV_COMPARISON], [1], [Can't do comparisons on readv])
Damien Millerb8c656e2000-06-28 15:22:41 +10001187 ;;
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001188
Tim Rice70335a62006-02-04 17:42:58 -08001189*-*-nto-qnx*)
Tim Rice648f8762011-01-26 12:38:57 -08001190 AC_DEFINE([USE_PIPES])
1191 AC_DEFINE([NO_X11_UNIX_SOCKETS])
Tim Rice648f8762011-01-26 12:38:57 -08001192 AC_DEFINE([DISABLE_LASTLOG])
1193 AC_DEFINE([SSHD_ACQUIRES_CTTY])
1194 AC_DEFINE([BROKEN_SHADOW_EXPIRE], [1], [QNX shadow support is broken])
Tim Rice2f993462006-02-11 18:37:48 -08001195 enable_etc_default_login=no # has incompatible /etc/default/login
Darren Tucker8acb3b62007-08-10 14:36:12 +10001196 case "$host" in
1197 *-*-nto-qnx6*)
Tim Rice648f8762011-01-26 12:38:57 -08001198 AC_DEFINE([DISABLE_FD_PASSING])
Darren Tucker8acb3b62007-08-10 14:36:12 +10001199 ;;
1200 esac
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001201 ;;
Darren Tucker2be1cbb2005-05-27 21:13:40 +10001202
1203*-*-ultrix*)
Tim Rice648f8762011-01-26 12:38:57 -08001204 AC_DEFINE([BROKEN_GETGROUPS], [1], [getgroups(0,NULL) will return -1])
Darren Tucker9cac1512019-11-01 18:26:07 +11001205 AC_DEFINE([NEED_SETPGRP], [1], [Need setpgrp to for controlling tty])
Tim Rice648f8762011-01-26 12:38:57 -08001206 AC_DEFINE([HAVE_SYS_SYSLOG_H], [1], [Force use of sys/syslog.h on Ultrix])
Darren Tucker9cac1512019-11-01 18:26:07 +11001207 AC_DEFINE([DISABLE_UTMPX], [1], [Disable utmpx])
1208 # DISABLE_FD_PASSING so that we call setpgrp as root, otherwise we
1209 # don't get a controlling tty.
1210 AC_DEFINE([DISABLE_FD_PASSING], [1], [Need to call setpgrp as root])
Darren Tucker39b87102019-11-15 18:56:54 +11001211 # On Ultrix some headers are not protected against multiple includes,
1212 # so we create wrappers and put it where the compiler will find it.
1213 AC_MSG_WARN([creating compat wrappers for headers])
Darren Tucker9cac1512019-11-01 18:26:07 +11001214 mkdir -p netinet
Darren Tucker39b87102019-11-15 18:56:54 +11001215 for header in netinet/ip.h netdb.h resolv.h; do
1216 name=`echo $header | tr 'a-z/.' 'A-Z__'`
1217 cat >$header <<EOD
1218#ifndef _SSH_COMPAT_${name}
1219#define _SSH_COMPAT_${name}
1220#include "/usr/include/${header}"
Darren Tucker9cac1512019-11-01 18:26:07 +11001221#endif
1222EOD
Darren Tucker39b87102019-11-15 18:56:54 +11001223 done
Tim Ricefcc7ff12005-06-02 20:28:29 -07001224 ;;
Darren Tucker93e7e8f2005-08-23 08:06:55 +10001225
1226*-*-lynxos)
Darren Tucker5faa52d2016-08-02 15:22:40 +10001227 CFLAGS="$CFLAGS -D__NO_INCLUDE_WARN__"
1228 AC_DEFINE([BROKEN_SETVBUF], [1],
1229 [LynxOS has broken setvbuf() implementation])
1230 ;;
Damien Miller76112de1999-12-21 11:18:08 +11001231esac
1232
Tim Rice648f8762011-01-26 12:38:57 -08001233AC_MSG_CHECKING([compiler and flags for sanity])
1234AC_RUN_IFELSE([AC_LANG_PROGRAM([[ #include <stdio.h> ]], [[ exit(0); ]])],
1235 [ AC_MSG_RESULT([yes]) ],
Darren Tucker6eb93042003-06-29 21:30:41 +10001236 [
Tim Rice648f8762011-01-26 12:38:57 -08001237 AC_MSG_RESULT([no])
Darren Tucker6eb93042003-06-29 21:30:41 +10001238 AC_MSG_ERROR([*** compiler cannot create working executables, check config.log ***])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001239 ],
1240 [ AC_MSG_WARN([cross compiling: not checking compiler sanity]) ]
Darren Tucker6eb93042003-06-29 21:30:41 +10001241)
1242
Darren Tucker0c9653f2005-05-28 15:58:14 +10001243dnl Checks for header files.
Damien Millera22ba012000-03-02 23:09:20 +11001244# Checks for libraries.
Tim Rice648f8762011-01-26 12:38:57 -08001245AC_CHECK_FUNC([setsockopt], , [AC_CHECK_LIB([socket], [setsockopt])])
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001246
Tim Rice1e1ef642003-09-11 22:19:31 -07001247dnl IRIX and Solaris 2.5.1 have dirname() in libgen
Tim Rice648f8762011-01-26 12:38:57 -08001248AC_CHECK_FUNCS([dirname], [AC_CHECK_HEADERS([libgen.h])] , [
1249 AC_CHECK_LIB([gen], [dirname], [
Tim Rice1e1ef642003-09-11 22:19:31 -07001250 AC_CACHE_CHECK([for broken dirname],
1251 ac_cv_have_broken_dirname, [
1252 save_LIBS="$LIBS"
1253 LIBS="$LIBS -lgen"
Darren Tucker314d89e2005-10-17 23:29:23 +10001254 AC_RUN_IFELSE(
1255 [AC_LANG_SOURCE([[
Tim Rice1e1ef642003-09-11 22:19:31 -07001256#include <libgen.h>
1257#include <string.h>
1258
1259int main(int argc, char **argv) {
1260 char *s, buf[32];
1261
1262 strncpy(buf,"/etc", 32);
1263 s = dirname(buf);
1264 if (!s || strncmp(s, "/", 32) != 0) {
1265 exit(1);
1266 } else {
1267 exit(0);
1268 }
1269}
Darren Tucker314d89e2005-10-17 23:29:23 +10001270 ]])],
Tim Rice1e1ef642003-09-11 22:19:31 -07001271 [ ac_cv_have_broken_dirname="no" ],
Darren Tucker314d89e2005-10-17 23:29:23 +10001272 [ ac_cv_have_broken_dirname="yes" ],
1273 [ ac_cv_have_broken_dirname="no" ],
Tim Rice1e1ef642003-09-11 22:19:31 -07001274 )
1275 LIBS="$save_LIBS"
1276 ])
1277 if test "x$ac_cv_have_broken_dirname" = "xno" ; then
1278 LIBS="$LIBS -lgen"
Tim Rice648f8762011-01-26 12:38:57 -08001279 AC_DEFINE([HAVE_DIRNAME])
1280 AC_CHECK_HEADERS([libgen.h])
Tim Rice1e1ef642003-09-11 22:19:31 -07001281 fi
1282 ])
1283])
1284
Tim Rice648f8762011-01-26 12:38:57 -08001285AC_CHECK_FUNC([getspnam], ,
1286 [AC_CHECK_LIB([gen], [getspnam], [LIBS="$LIBS -lgen"])])
1287AC_SEARCH_LIBS([basename], [gen], [AC_DEFINE([HAVE_BASENAME], [1],
1288 [Define if you have the basename function.])])
Tim Rice1e1ef642003-09-11 22:19:31 -07001289
Darren Tucker633a2af2020-01-23 22:16:51 +11001290dnl zlib defaults to enabled
1291zlib=yes
Tim Rice648f8762011-01-26 12:38:57 -08001292AC_ARG_WITH([zlib],
Tim Rice13aae5e2001-10-21 17:53:58 -07001293 [ --with-zlib=PATH Use zlib in PATH],
Darren Tucker86a5f8d2005-03-21 09:55:17 +11001294 [ if test "x$withval" = "xno" ; then
Darren Tucker633a2af2020-01-23 22:16:51 +11001295 zlib=no
Darren Tucker86a5f8d2005-03-21 09:55:17 +11001296 elif test "x$withval" != "xyes"; then
Tim Rice13aae5e2001-10-21 17:53:58 -07001297 if test -d "$withval/lib"; then
Darren Tucker2f0bad22019-01-21 21:28:27 +11001298 if test -n "${rpath_opt}"; then
1299 LDFLAGS="-L${withval}/lib ${rpath_opt}${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001300 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001301 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001302 fi
1303 else
Darren Tucker2f0bad22019-01-21 21:28:27 +11001304 if test -n "${rpath_opt}"; then
1305 LDFLAGS="-L${withval} ${rpath_opt}${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001306 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001307 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001308 fi
1309 fi
1310 if test -d "$withval/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001311 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001312 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001313 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001314 fi
Darren Tucker86a5f8d2005-03-21 09:55:17 +11001315 fi ]
Tim Rice13aae5e2001-10-21 17:53:58 -07001316)
1317
Darren Tucker633a2af2020-01-23 22:16:51 +11001318AC_MSG_CHECKING([for zlib])
1319if test "x${zlib}" = "xno"; then
1320 AC_MSG_RESULT([no])
1321else
1322 AC_MSG_RESULT([yes])
1323 AC_DEFINE([WITH_ZLIB], [1], [Enable zlib])
1324 AC_CHECK_HEADER([zlib.h], ,[AC_MSG_ERROR([*** zlib.h missing - please install first or check config.log ***])])
1325 AC_CHECK_LIB([z], [deflate], ,
Tim Ricefcb62202004-01-23 18:35:16 -08001326 [
1327 saved_CPPFLAGS="$CPPFLAGS"
1328 saved_LDFLAGS="$LDFLAGS"
1329 save_LIBS="$LIBS"
1330 dnl Check default zlib install dir
Darren Tucker2f0bad22019-01-21 21:28:27 +11001331 if test -n "${rpath_opt}"; then
1332 LDFLAGS="-L/usr/local/lib ${rpath_opt}/usr/local/lib ${saved_LDFLAGS}"
Tim Ricefcb62202004-01-23 18:35:16 -08001333 else
1334 LDFLAGS="-L/usr/local/lib ${saved_LDFLAGS}"
1335 fi
1336 CPPFLAGS="-I/usr/local/include ${saved_CPPFLAGS}"
1337 LIBS="$LIBS -lz"
Tim Rice648f8762011-01-26 12:38:57 -08001338 AC_TRY_LINK_FUNC([deflate], [AC_DEFINE([HAVE_LIBZ])],
Tim Ricefcb62202004-01-23 18:35:16 -08001339 [
1340 AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***])
1341 ]
1342 )
1343 ]
Darren Tucker633a2af2020-01-23 22:16:51 +11001344 )
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001345
Darren Tucker633a2af2020-01-23 22:16:51 +11001346 AC_ARG_WITH([zlib-version-check],
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001347 [ --without-zlib-version-check Disable zlib version check],
1348 [ if test "x$withval" = "xno" ; then
1349 zlib_check_nonfatal=1
1350 fi
1351 ]
Darren Tucker633a2af2020-01-23 22:16:51 +11001352 )
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001353
Darren Tucker633a2af2020-01-23 22:16:51 +11001354 AC_MSG_CHECKING([for possibly buggy zlib])
1355 AC_RUN_IFELSE([AC_LANG_PROGRAM([[
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001356#include <stdio.h>
Darren Tuckerc8a0f272013-03-22 12:49:14 +11001357#include <stdlib.h>
Darren Tucker2dcd2392004-01-23 17:13:33 +11001358#include <zlib.h>
Tim Rice648f8762011-01-26 12:38:57 -08001359 ]],
1360 [[
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001361 int a=0, b=0, c=0, d=0, n, v;
1362 n = sscanf(ZLIB_VERSION, "%d.%d.%d.%d", &a, &b, &c, &d);
1363 if (n != 3 && n != 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +11001364 exit(1);
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001365 v = a*1000000 + b*10000 + c*100 + d;
1366 fprintf(stderr, "found zlib version %s (%d)\n", ZLIB_VERSION, v);
1367
1368 /* 1.1.4 is OK */
1369 if (a == 1 && b == 1 && c >= 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +11001370 exit(0);
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001371
Darren Tucker41097ed2005-07-25 15:24:21 +10001372 /* 1.2.3 and up are OK */
1373 if (v >= 1020300)
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001374 exit(0);
1375
Darren Tucker2dcd2392004-01-23 17:13:33 +11001376 exit(2);
Darren Tucker623d92f2004-09-12 22:36:15 +10001377 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08001378 AC_MSG_RESULT([no]),
1379 [ AC_MSG_RESULT([yes])
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001380 if test -z "$zlib_check_nonfatal" ; then
1381 AC_MSG_ERROR([*** zlib too old - check config.log ***
1382Your reported zlib version has known security problems. It's possible your
1383vendor has fixed these problems without changing the version number. If you
1384are sure this is the case, you can disable the check by running
1385"./configure --without-zlib-version-check".
Darren Tuckerac1910f2005-07-26 12:00:42 +10001386If you are in doubt, upgrade zlib to version 1.2.3 or greater.
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001387See http://www.gzip.org/zlib/ for details.])
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001388 else
1389 AC_MSG_WARN([zlib version may have security problems])
1390 fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10001391 ],
1392 [ AC_MSG_WARN([cross compiling: not checking zlib version]) ]
Darren Tucker633a2af2020-01-23 22:16:51 +11001393 )
1394fi
Damien Miller6f9c3372000-10-25 10:06:04 +11001395
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001396dnl UnixWare 2.x
Tim Rice648f8762011-01-26 12:38:57 -08001397AC_CHECK_FUNC([strcasecmp],
1398 [], [ AC_CHECK_LIB([resolv], [strcasecmp], [LIBS="$LIBS -lresolv"]) ]
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001399)
Tim Rice648f8762011-01-26 12:38:57 -08001400AC_CHECK_FUNCS([utimes],
1401 [], [ AC_CHECK_LIB([c89], [utimes], [AC_DEFINE([HAVE_UTIMES])
Tim Ricecbb90662002-07-08 19:17:10 -07001402 LIBS="$LIBS -lc89"]) ]
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001403)
Damien Millerab18c411999-11-11 10:40:23 +11001404
Tim Ricee589a292001-11-03 11:09:32 -08001405dnl Checks for libutil functions
Damien Millerb87f6b72013-02-23 09:12:23 +11001406AC_CHECK_HEADERS([bsd/libutil.h libutil.h])
Damien Miller398c0ff2012-04-19 21:46:35 +10001407AC_SEARCH_LIBS([fmt_scaled], [util bsd])
Darren Tuckere194ba42013-05-16 20:47:31 +10001408AC_SEARCH_LIBS([scan_scaled], [util bsd])
Damien Miller398c0ff2012-04-19 21:46:35 +10001409AC_SEARCH_LIBS([login], [util bsd])
1410AC_SEARCH_LIBS([logout], [util bsd])
1411AC_SEARCH_LIBS([logwtmp], [util bsd])
1412AC_SEARCH_LIBS([openpty], [util bsd])
1413AC_SEARCH_LIBS([updwtmp], [util bsd])
Darren Tuckere194ba42013-05-16 20:47:31 +10001414AC_CHECK_FUNCS([fmt_scaled scan_scaled login logout openpty updwtmp logwtmp])
Tim Ricee589a292001-11-03 11:09:32 -08001415
Darren Tucker2fee9092016-02-17 09:48:15 +11001416# On some platforms, inet_ntop and gethostbyname may be found in libresolv
1417# or libnsl.
Damien Millerab039492014-01-28 15:07:10 +11001418AC_SEARCH_LIBS([inet_ntop], [resolv nsl])
Darren Tucker2fee9092016-02-17 09:48:15 +11001419AC_SEARCH_LIBS([gethostbyname], [resolv nsl])
Damien Millerab039492014-01-28 15:07:10 +11001420
Darren Tucker74c1c362017-09-27 07:44:41 +10001421# "Particular Function Checks"
1422# see https://www.gnu.org/software/autoconf/manual/autoconf-2.69/html_node/Particular-Functions.html
Ben Lindstrom8697e082001-02-24 21:41:10 +00001423AC_FUNC_STRFTIME
Darren Tucker74c1c362017-09-27 07:44:41 +10001424AC_FUNC_MALLOC
1425AC_FUNC_REALLOC
1426# autoconf doesn't have AC_FUNC_CALLOC so fake it if malloc returns NULL;
Darren Tuckere9dede02018-02-25 10:20:31 +11001427AC_MSG_CHECKING([if calloc(0, N) returns non-null])
1428AC_RUN_IFELSE(
1429 [AC_LANG_PROGRAM(
1430 [[ #include <stdlib.h> ]],
1431 [[ void *p = calloc(0, 1); exit(p == NULL); ]]
1432 )],
1433 [ func_calloc_0_nonnull=yes ],
1434 [ func_calloc_0_nonnull=no ],
1435 [ AC_MSG_WARN([cross compiling: assuming same as malloc])
1436 func_calloc_0_nonnull="$ac_cv_func_malloc_0_nonnull"]
1437)
1438AC_MSG_RESULT([$func_calloc_0_nonnull])
1439
Darren Tuckerd97874c2018-04-13 13:43:55 +10001440if test "x$func_calloc_0_nonnull" = "xyes"; then
Darren Tuckere9dede02018-02-25 10:20:31 +11001441 AC_DEFINE(HAVE_CALLOC, 1, [calloc(0, x) returns non-null])
1442else
1443 AC_DEFINE(HAVE_CALLOC, 0, [calloc(0, x) returns NULL])
Darren Tucker74c1c362017-09-27 07:44:41 +10001444 AC_DEFINE(calloc, rpl_calloc,
1445 [Define to rpl_calloc if the replacement function should be used.])
1446fi
Ben Lindstrom8697e082001-02-24 21:41:10 +00001447
Damien Miller3c027682001-03-14 11:39:45 +11001448# Check for ALTDIRFUNC glob() extension
Tim Rice648f8762011-01-26 12:38:57 -08001449AC_MSG_CHECKING([for GLOB_ALTDIRFUNC support])
1450AC_EGREP_CPP([FOUNDIT],
Damien Miller3c027682001-03-14 11:39:45 +11001451 [
1452 #include <glob.h>
1453 #ifdef GLOB_ALTDIRFUNC
1454 FOUNDIT
1455 #endif
Damien Millera8e06ce2003-11-21 23:48:55 +11001456 ],
Damien Miller3c027682001-03-14 11:39:45 +11001457 [
Tim Rice648f8762011-01-26 12:38:57 -08001458 AC_DEFINE([GLOB_HAS_ALTDIRFUNC], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001459 [Define if your system glob() function has
1460 the GLOB_ALTDIRFUNC extension])
Tim Rice648f8762011-01-26 12:38:57 -08001461 AC_MSG_RESULT([yes])
Damien Miller3c027682001-03-14 11:39:45 +11001462 ],
1463 [
Tim Rice648f8762011-01-26 12:38:57 -08001464 AC_MSG_RESULT([no])
Damien Miller3c027682001-03-14 11:39:45 +11001465 ]
1466)
Damien Millerab18c411999-11-11 10:40:23 +11001467
Ben Lindstrom45b14db2001-03-17 01:15:38 +00001468# Check for g.gl_matchc glob() extension
Tim Rice648f8762011-01-26 12:38:57 -08001469AC_MSG_CHECKING([for gl_matchc field in glob_t])
1470AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <glob.h> ]],
1471 [[ glob_t g; g.gl_matchc = 1; ]])],
Damien Millera8e06ce2003-11-21 23:48:55 +11001472 [
Tim Rice648f8762011-01-26 12:38:57 -08001473 AC_DEFINE([GLOB_HAS_GL_MATCHC], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001474 [Define if your system glob() function has
1475 gl_matchc options in glob_t])
Tim Rice648f8762011-01-26 12:38:57 -08001476 AC_MSG_RESULT([yes])
1477 ], [
1478 AC_MSG_RESULT([no])
1479])
Ben Lindstrom45b14db2001-03-17 01:15:38 +00001480
Damien Millera6e121a2010-10-07 21:39:17 +11001481# Check for g.gl_statv glob() extension
Tim Rice648f8762011-01-26 12:38:57 -08001482AC_MSG_CHECKING([for gl_statv and GLOB_KEEPSTAT extensions for glob])
1483AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <glob.h> ]], [[
Damien Millera6e121a2010-10-07 21:39:17 +11001484#ifndef GLOB_KEEPSTAT
1485#error "glob does not support GLOB_KEEPSTAT extension"
1486#endif
1487glob_t g;
1488g.gl_statv = NULL;
Tim Rice648f8762011-01-26 12:38:57 -08001489]])],
Damien Millera6e121a2010-10-07 21:39:17 +11001490 [
Tim Rice648f8762011-01-26 12:38:57 -08001491 AC_DEFINE([GLOB_HAS_GL_STATV], [1],
Damien Millera6e121a2010-10-07 21:39:17 +11001492 [Define if your system glob() function has
1493 gl_statv options in glob_t])
Tim Rice648f8762011-01-26 12:38:57 -08001494 AC_MSG_RESULT([yes])
1495 ], [
1496 AC_MSG_RESULT([no])
Damien Miller72ef7c12015-01-15 02:21:31 +11001497
Tim Rice648f8762011-01-26 12:38:57 -08001498])
Damien Millera6e121a2010-10-07 21:39:17 +11001499
Tim Rice648f8762011-01-26 12:38:57 -08001500AC_CHECK_DECLS([GLOB_NOMATCH], , , [#include <glob.h>])
Darren Tucker096faec2006-09-01 20:29:10 +10001501
Darren Tucker7df91b02016-07-14 12:25:24 +10001502AC_CHECK_DECL([VIS_ALL], ,
1503 AC_DEFINE(BROKEN_STRNVIS, 1, [missing VIS_ALL]), [#include <vis.h>])
1504
Damien Miller18bb4732001-03-28 14:35:30 +10001505AC_MSG_CHECKING([whether struct dirent allocates space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001506AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08001507 [AC_LANG_PROGRAM([[
Damien Miller18bb4732001-03-28 14:35:30 +10001508#include <sys/types.h>
Tim Rice648f8762011-01-26 12:38:57 -08001509#include <dirent.h>]],
1510 [[
1511 struct dirent d;
1512 exit(sizeof(d.d_name)<=sizeof(char));
Darren Tucker623d92f2004-09-12 22:36:15 +10001513 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08001514 [AC_MSG_RESULT([yes])],
Damien Miller18bb4732001-03-28 14:35:30 +10001515 [
Tim Rice648f8762011-01-26 12:38:57 -08001516 AC_MSG_RESULT([no])
1517 AC_DEFINE([BROKEN_ONE_BYTE_DIRENT_D_NAME], [1],
Darren Tucker79d09fa2005-11-24 22:34:54 +11001518 [Define if your struct dirent expects you to
Tim Rice7df8d392005-09-19 09:33:39 -07001519 allocate extra space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001520 ],
Tim Riceeae17cc2005-03-17 16:52:20 -08001521 [
Darren Tuckera0c2b392004-09-11 23:26:37 +10001522 AC_MSG_WARN([cross compiling: assuming BROKEN_ONE_BYTE_DIRENT_D_NAME])
Tim Rice648f8762011-01-26 12:38:57 -08001523 AC_DEFINE([BROKEN_ONE_BYTE_DIRENT_D_NAME])
Damien Miller18bb4732001-03-28 14:35:30 +10001524 ]
1525)
1526
Damien Miller36f49652004-08-15 18:40:59 +10001527AC_MSG_CHECKING([for /proc/pid/fd directory])
1528if test -d "/proc/$$/fd" ; then
Tim Rice648f8762011-01-26 12:38:57 -08001529 AC_DEFINE([HAVE_PROC_PID], [1], [Define if you have /proc/$pid/fd])
1530 AC_MSG_RESULT([yes])
Damien Miller36f49652004-08-15 18:40:59 +10001531else
Tim Rice648f8762011-01-26 12:38:57 -08001532 AC_MSG_RESULT([no])
Damien Miller36f49652004-08-15 18:40:59 +10001533fi
1534
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001535# Check whether user wants to use ldns
1536LDNS_MSG="no"
1537AC_ARG_WITH(ldns,
1538 [ --with-ldns[[=PATH]] Use ldns for DNSSEC support (optionally in PATH)],
Damien Miller523db852017-02-03 16:01:22 +11001539 [
1540 ldns=""
1541 if test "x$withval" = "xyes" ; then
1542 AC_PATH_TOOL([LDNSCONFIG], [ldns-config], [no])
Darren Tuckerf001de82017-12-11 13:42:51 +11001543 if test "x$LDNSCONFIG" = "xno"; then
Damien Miller523db852017-02-03 16:01:22 +11001544 LIBS="-lldns $LIBS"
1545 ldns=yes
1546 else
1547 LIBS="$LIBS `$LDNSCONFIG --libs`"
1548 CPPFLAGS="$CPPFLAGS `$LDNSCONFIG --cflags`"
Darren Tucker7af27bf2017-03-24 09:44:56 +11001549 ldns=yes
Damien Miller523db852017-02-03 16:01:22 +11001550 fi
1551 elif test "x$withval" != "xno" ; then
1552 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1553 LDFLAGS="$LDFLAGS -L${withval}/lib"
1554 LIBS="-lldns $LIBS"
1555 ldns=yes
1556 fi
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001557
Damien Miller523db852017-02-03 16:01:22 +11001558 # Verify that it works.
1559 if test "x$ldns" = "xyes" ; then
1560 AC_DEFINE(HAVE_LDNS, 1, [Define if you want ldns support])
1561 LDNS_MSG="yes"
1562 AC_MSG_CHECKING([for ldns support])
1563 AC_LINK_IFELSE(
1564 [AC_LANG_SOURCE([[
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001565#include <stdio.h>
1566#include <stdlib.h>
Darren Tucker638a45b2020-01-26 13:40:51 +11001567#ifdef HAVE_STDINT_H
1568# include <stdint.h>
1569#endif
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001570#include <ldns/ldns.h>
1571int main() { ldns_status status = ldns_verify_trusted(NULL, NULL, NULL, NULL); status=LDNS_STATUS_OK; exit(0); }
Damien Miller523db852017-02-03 16:01:22 +11001572 ]])
1573 ],
1574 [AC_MSG_RESULT(yes)],
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001575 [
1576 AC_MSG_RESULT(no)
1577 AC_MSG_ERROR([** Incomplete or missing ldns libraries.])
1578 ])
Damien Miller523db852017-02-03 16:01:22 +11001579 fi
1580])
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001581
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001582# Check whether user wants libedit support
1583LIBEDIT_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08001584AC_ARG_WITH([libedit],
Darren Tucker1b6f2292005-02-11 16:11:49 +11001585 [ --with-libedit[[=PATH]] Enable libedit support for sftp],
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001586 [ if test "x$withval" != "xno" ; then
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001587 if test "x$withval" = "xyes" ; then
Darren Tucker59353892012-05-19 15:24:37 +10001588 AC_PATH_TOOL([PKGCONFIG], [pkg-config], [no])
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001589 if test "x$PKGCONFIG" != "xno"; then
Tim Rice648f8762011-01-26 12:38:57 -08001590 AC_MSG_CHECKING([if $PKGCONFIG knows about libedit])
Tim Ricee1d93702016-05-31 11:13:22 -07001591 if "$PKGCONFIG" libedit; then
Tim Rice648f8762011-01-26 12:38:57 -08001592 AC_MSG_RESULT([yes])
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001593 use_pkgconfig_for_libedit=yes
1594 else
Tim Rice648f8762011-01-26 12:38:57 -08001595 AC_MSG_RESULT([no])
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001596 fi
1597 fi
1598 else
Darren Tuckerc373a562005-09-22 20:15:08 +10001599 CPPFLAGS="$CPPFLAGS -I${withval}/include"
Darren Tucker2f0bad22019-01-21 21:28:27 +11001600 if test -n "${rpath_opt}"; then
1601 LDFLAGS="-L${withval}/lib ${rpath_opt}${withval}/lib ${LDFLAGS}"
Darren Tuckerc373a562005-09-22 20:15:08 +10001602 else
1603 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1604 fi
Darren Tucker1df61452005-03-21 09:58:07 +11001605 fi
Damien Miller1f789802010-10-11 22:35:22 +11001606 if test "x$use_pkgconfig_for_libedit" = "xyes"; then
Darren Tucker8369c8e2013-12-05 11:00:16 +11001607 LIBEDIT=`$PKGCONFIG --libs libedit`
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001608 CPPFLAGS="$CPPFLAGS `$PKGCONFIG --cflags libedit`"
1609 else
1610 LIBEDIT="-ledit -lcurses"
1611 fi
1612 OTHERLIBS=`echo $LIBEDIT | sed 's/-ledit//'`
Tim Rice648f8762011-01-26 12:38:57 -08001613 AC_CHECK_LIB([edit], [el_init],
1614 [ AC_DEFINE([USE_LIBEDIT], [1], [Use libedit for sftp])
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001615 LIBEDIT_MSG="yes"
Tim Rice648f8762011-01-26 12:38:57 -08001616 AC_SUBST([LIBEDIT])
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001617 ],
Tim Rice648f8762011-01-26 12:38:57 -08001618 [ AC_MSG_ERROR([libedit not found]) ],
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001619 [ $OTHERLIBS ]
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001620 )
Tim Rice648f8762011-01-26 12:38:57 -08001621 AC_MSG_CHECKING([if libedit version is compatible])
Tim Ricec1819c82005-08-15 17:48:40 -07001622 AC_COMPILE_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08001623 [AC_LANG_PROGRAM([[ #include <histedit.h> ]],
1624 [[
Darren Tuckerc7572b22005-08-10 20:34:15 +10001625 int i = H_SETSIZE;
1626 el_init("", NULL, NULL, NULL);
1627 exit(0);
Tim Ricec1819c82005-08-15 17:48:40 -07001628 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08001629 [ AC_MSG_RESULT([yes]) ],
1630 [ AC_MSG_RESULT([no])
1631 AC_MSG_ERROR([libedit version is not compatible]) ]
Darren Tuckerc7572b22005-08-10 20:34:15 +10001632 )
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001633 fi ]
1634)
1635
Darren Tuckerd9f88912005-02-20 21:01:48 +11001636AUDIT_MODULE=none
Tim Rice648f8762011-01-26 12:38:57 -08001637AC_ARG_WITH([audit],
Darren Tuckerea52a822011-01-17 21:15:27 +11001638 [ --with-audit=module Enable audit support (modules=debug,bsm,linux)],
Darren Tuckerd9f88912005-02-20 21:01:48 +11001639 [
Tim Rice648f8762011-01-26 12:38:57 -08001640 AC_MSG_CHECKING([for supported audit module])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001641 case "$withval" in
1642 bsm)
Tim Rice648f8762011-01-26 12:38:57 -08001643 AC_MSG_RESULT([bsm])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001644 AUDIT_MODULE=bsm
1645 dnl Checks for headers, libs and functions
Tim Rice648f8762011-01-26 12:38:57 -08001646 AC_CHECK_HEADERS([bsm/audit.h], [],
1647 [AC_MSG_ERROR([BSM enabled and bsm/audit.h not found])],
Darren Tucker6d0d6fb2006-09-09 01:05:21 +10001648 [
1649#ifdef HAVE_TIME_H
1650# include <time.h>
1651#endif
1652 ]
1653)
Tim Rice648f8762011-01-26 12:38:57 -08001654 AC_CHECK_LIB([bsm], [getaudit], [],
1655 [AC_MSG_ERROR([BSM enabled and required library not found])])
1656 AC_CHECK_FUNCS([getaudit], [],
1657 [AC_MSG_ERROR([BSM enabled and required function not found])])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001658 # These are optional
Tim Rice648f8762011-01-26 12:38:57 -08001659 AC_CHECK_FUNCS([getaudit_addr aug_get_machine])
1660 AC_DEFINE([USE_BSM_AUDIT], [1], [Use BSM audit module])
Darren Tucker1fcec9d2013-12-19 11:00:12 +11001661 if test "$sol2ver" -ge 11; then
Tim Ricee1d93702016-05-31 11:13:22 -07001662 SSHDLIBS="$SSHDLIBS -lscf"
1663 AC_DEFINE([BROKEN_BSM_API], [1],
1664 [The system has incomplete BSM API])
Darren Tucker93a2d412012-02-24 10:40:41 +11001665 fi
Darren Tuckerd9f88912005-02-20 21:01:48 +11001666 ;;
Darren Tuckerea52a822011-01-17 21:15:27 +11001667 linux)
Tim Rice648f8762011-01-26 12:38:57 -08001668 AC_MSG_RESULT([linux])
Darren Tuckerea52a822011-01-17 21:15:27 +11001669 AUDIT_MODULE=linux
1670 dnl Checks for headers, libs and functions
Tim Rice648f8762011-01-26 12:38:57 -08001671 AC_CHECK_HEADERS([libaudit.h])
Darren Tuckerea52a822011-01-17 21:15:27 +11001672 SSHDLIBS="$SSHDLIBS -laudit"
Tim Rice648f8762011-01-26 12:38:57 -08001673 AC_DEFINE([USE_LINUX_AUDIT], [1], [Use Linux audit module])
Darren Tuckerea52a822011-01-17 21:15:27 +11001674 ;;
Darren Tuckerd9f88912005-02-20 21:01:48 +11001675 debug)
1676 AUDIT_MODULE=debug
Tim Rice648f8762011-01-26 12:38:57 -08001677 AC_MSG_RESULT([debug])
1678 AC_DEFINE([SSH_AUDIT_EVENTS], [1], [Use audit debugging module])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001679 ;;
Tim Rice8bc6b902005-08-09 10:09:53 -07001680 no)
Tim Rice648f8762011-01-26 12:38:57 -08001681 AC_MSG_RESULT([no])
Tim Rice8bc6b902005-08-09 10:09:53 -07001682 ;;
Darren Tuckerd9f88912005-02-20 21:01:48 +11001683 *)
1684 AC_MSG_ERROR([Unknown audit module $withval])
1685 ;;
1686 esac ]
1687)
1688
Darren Tucker096118d2014-01-21 12:48:51 +11001689AC_ARG_WITH([pie],
Damien Miller76c04802015-01-13 19:38:18 +11001690 [ --with-pie Build Position Independent Executables if possible], [
Darren Tucker096118d2014-01-21 12:48:51 +11001691 if test "x$withval" = "xno"; then
Damien Miller852472a2014-01-22 16:31:18 +11001692 use_pie=no
Darren Tucker096118d2014-01-21 12:48:51 +11001693 fi
1694 if test "x$withval" = "xyes"; then
Damien Miller852472a2014-01-22 16:31:18 +11001695 use_pie=yes
Darren Tucker096118d2014-01-21 12:48:51 +11001696 fi
1697 ]
1698)
Damien Miller852472a2014-01-22 16:31:18 +11001699if test "x$use_pie" = "x"; then
1700 use_pie=no
1701fi
1702if test "x$use_toolchain_hardening" != "x1" && test "x$use_pie" = "xauto"; then
1703 # Turn off automatic PIE when toolchain hardening is off.
1704 use_pie=no
1705fi
Damien Millerc161fc92014-01-29 21:01:33 +11001706if test "x$use_pie" = "xauto"; then
Damien Miller852472a2014-01-22 16:31:18 +11001707 # Automatic PIE requires gcc >= 4.x
1708 AC_MSG_CHECKING([for gcc >= 4.x])
1709 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
1710#if !defined(__GNUC__) || __GNUC__ < 4
1711#error gcc is too old
1712#endif
1713]])],
1714 [ AC_MSG_RESULT([yes]) ],
1715 [ AC_MSG_RESULT([no])
1716 use_pie=no ]
1717)
1718fi
1719if test "x$use_pie" != "xno"; then
Damien Miller5c2ff5e2014-01-22 21:30:12 +11001720 SAVED_CFLAGS="$CFLAGS"
1721 SAVED_LDFLAGS="$LDFLAGS"
Darren Tucker096118d2014-01-21 12:48:51 +11001722 OSSH_CHECK_CFLAG_COMPILE([-fPIE])
1723 OSSH_CHECK_LDFLAG_LINK([-pie])
Damien Miller5c2ff5e2014-01-22 21:30:12 +11001724 # We use both -fPIE and -pie or neither.
1725 AC_MSG_CHECKING([whether both -fPIE and -pie are supported])
1726 if echo "x $CFLAGS" | grep ' -fPIE' >/dev/null 2>&1 && \
1727 echo "x $LDFLAGS" | grep ' -pie' >/dev/null 2>&1 ; then
1728 AC_MSG_RESULT([yes])
1729 else
1730 AC_MSG_RESULT([no])
1731 CFLAGS="$SAVED_CFLAGS"
1732 LDFLAGS="$SAVED_LDFLAGS"
1733 fi
Darren Tucker096118d2014-01-21 12:48:51 +11001734fi
1735
Damien Millerb2180552019-11-29 12:32:23 +11001736AC_MSG_CHECKING([whether -fPIC is accepted])
1737SAVED_CFLAGS="$CFLAGS"
1738CFLAGS="$CFLAGS -fPIC"
1739AC_COMPILE_IFELSE(
1740 [AC_LANG_PROGRAM( [[ #include <stdlib.h> ]], [[ exit(0); ]] )],
1741 [AC_MSG_RESULT([yes])
1742 PICFLAG="-fPIC"; ],
1743 [AC_MSG_RESULT([no])
1744 PICFLAG=""; ])
1745CFLAGS="$SAVED_CFLAGS"
1746AC_SUBST([PICFLAG])
1747
Damien Millerfe1f1432003-02-24 15:45:42 +11001748dnl Checks for library functions. Please keep in alphabetical order
Tim Rice648f8762011-01-26 12:38:57 -08001749AC_CHECK_FUNCS([ \
Damien Miller1ff130d2013-12-07 11:51:51 +11001750 Blowfish_initstate \
1751 Blowfish_expandstate \
1752 Blowfish_expand0state \
1753 Blowfish_stream2word \
Darren Tucker11cba2a2019-07-23 21:51:22 +10001754 SHA256Update \
1755 SHA384Update \
1756 SHA512Update \
Damien Miller57f39152005-11-24 19:58:19 +11001757 asprintf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001758 b64_ntop \
1759 __b64_ntop \
1760 b64_pton \
1761 __b64_pton \
1762 bcopy \
Damien Millera9134422013-12-07 11:35:36 +11001763 bcrypt_pbkdf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001764 bindresvport_sa \
Damien Miller1ff130d2013-12-07 11:51:51 +11001765 blf_enc \
Darren Tuckera9004422018-02-24 20:25:22 +11001766 bzero \
Damien Millerc96d8532014-01-25 13:12:28 +11001767 cap_rights_limit \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001768 clock \
1769 closefrom \
1770 dirfd \
Darren Tuckerefdf5342013-05-30 08:29:08 +10001771 endgrent \
Darren Tucker6310ef22016-07-13 14:42:35 +10001772 err \
1773 errx \
Damien Miller1d2c4562014-02-04 11:18:20 +11001774 explicit_bzero \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001775 fchmod \
Darren Tuckera6258e52019-01-18 11:09:01 +11001776 fchmodat \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001777 fchown \
Darren Tuckera6258e52019-01-18 11:09:01 +11001778 fchownat \
Darren Tuckercd3ab572018-02-26 14:37:06 +11001779 flock \
Darren Tucker0e3c5bc2019-11-01 18:24:29 +11001780 fnmatch \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001781 freeaddrinfo \
Damien Millerb7956912017-09-19 12:29:23 +10001782 freezero \
Darren Tuckera5cf1e22014-01-17 18:10:58 +11001783 fstatfs \
Darren Tucker598eaa62008-06-09 03:32:29 +10001784 fstatvfs \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001785 futimes \
1786 getaddrinfo \
1787 getcwd \
1788 getgrouplist \
Darren Tucker6301e6c2018-07-02 21:16:58 +10001789 getline \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001790 getnameinfo \
1791 getopt \
Damien Miller151c6e42017-06-01 15:25:13 +10001792 getpagesize \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001793 getpeereid \
Darren Tucker164aa302007-03-21 21:39:57 +11001794 getpeerucred \
Darren Tucker3c4a24c2013-02-15 11:41:35 +11001795 getpgid \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001796 _getpty \
1797 getrlimit \
Damien Millerafa6e792018-04-13 13:31:42 +10001798 getrandom \
Darren Tuckerb39593a2018-02-25 13:25:15 +11001799 getsid \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001800 getttyent \
1801 glob \
Darren Tucker909a3902010-01-15 12:38:30 +11001802 group_from_gid \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001803 inet_aton \
1804 inet_ntoa \
1805 inet_ntop \
1806 innetgr \
Darren Tuckerd38f05d2017-03-20 13:38:27 +11001807 llabs \
Darren Tucker1bcd1162019-10-29 19:45:03 +11001808 localtime_r \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001809 login_getcapbool \
1810 md5_crypt \
Darren Tucker45478892019-07-16 09:20:23 +10001811 memmem \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001812 memmove \
Damien Miller3d673d12014-08-27 06:32:01 +10001813 memset_s \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001814 mkdtemp \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001815 ngetaddrinfo \
1816 nsleep \
1817 ogetaddrinfo \
1818 openlog_r \
Darren Tucker3ddd15e2015-11-30 07:23:53 +11001819 pledge \
Darren Tuckerfebf0f52007-06-25 22:15:12 +10001820 poll \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001821 prctl \
1822 pstat \
Darren Tucker6c8c9a62018-02-24 20:46:37 +11001823 raise \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001824 readpassphrase \
Darren Tucker642652d2014-12-10 01:32:23 +11001825 reallocarray \
Darren Tucker79d46de2019-11-01 15:22:32 +11001826 realpath \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001827 recvmsg \
Damien Miller151c6e42017-06-01 15:25:13 +10001828 recallocarray \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001829 rresvport_af \
1830 sendmsg \
1831 setdtablesize \
1832 setegid \
1833 setenv \
1834 seteuid \
Darren Tucker909a3902010-01-15 12:38:30 +11001835 setgroupent \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001836 setgroups \
Darren Tucker34f702a2012-07-04 08:50:09 +10001837 setlinebuf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001838 setlogin \
Darren Tucker909a3902010-01-15 12:38:30 +11001839 setpassent\
Darren Tucker0c9653f2005-05-28 15:58:14 +10001840 setpcred \
1841 setproctitle \
1842 setregid \
1843 setreuid \
1844 setrlimit \
1845 setsid \
1846 setvbuf \
1847 sigaction \
1848 sigvec \
1849 snprintf \
1850 socketpair \
Darren Tucker5b2e2ba2008-06-08 09:25:28 +10001851 statfs \
1852 statvfs \
Darren Tuckerafec0772016-12-13 10:23:03 +11001853 strcasestr \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001854 strdup \
1855 strerror \
1856 strlcat \
1857 strlcpy \
1858 strmode \
Darren Tucker33561e62018-03-03 14:56:09 +11001859 strndup \
Darren Tuckerb54f50e2011-09-29 23:17:18 +10001860 strnlen \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001861 strnvis \
Darren Tuckeraa74f672010-08-16 13:15:23 +10001862 strptime \
Darren Tucker44fc3342017-09-25 09:48:10 +10001863 strsignal \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001864 strtonum \
Darren Tucker81eb5d52005-06-01 21:39:33 +10001865 strtoll \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001866 strtoul \
Darren Tucker8e6fb782013-02-15 12:13:01 +11001867 strtoull \
Damien Miller34a17692007-06-11 14:15:42 +10001868 swap32 \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001869 sysconf \
1870 tcgetpgrp \
Damien Milleraa180632010-10-07 21:25:27 +11001871 timingsafe_bcmp \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001872 truncate \
1873 unsetenv \
1874 updwtmpx \
Darren Tucker091093d2019-01-18 12:11:42 +13001875 utimensat \
Darren Tucker909a3902010-01-15 12:38:30 +11001876 user_from_uid \
Damien Millerf4db77d2013-03-15 10:34:25 +11001877 usleep \
Damien Miller57f39152005-11-24 19:58:19 +11001878 vasprintf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001879 vsnprintf \
1880 waitpid \
Darren Tucker6310ef22016-07-13 14:42:35 +10001881 warn \
Tim Rice648f8762011-01-26 12:38:57 -08001882])
Tim Rice13aae5e2001-10-21 17:53:58 -07001883
Darren Tuckerafffd312019-12-11 13:22:06 +11001884AC_CHECK_DECLS([bzero, memmem])
Darren Tuckera9004422018-02-24 20:25:22 +11001885
Darren Tuckerc61d5ec2017-02-03 14:10:34 +11001886dnl Wide character support.
Darren Tuckera2333582016-07-14 10:59:09 +10001887AC_CHECK_FUNCS([mblen mbtowc nl_langinfo wcwidth])
Darren Tuckera2333582016-07-14 10:59:09 +10001888
Darren Tucker10e290e2016-12-13 13:51:32 +11001889TEST_SSH_UTF8=${TEST_SSH_UTF8:=yes}
Darren Tucker47b8c992016-12-08 15:48:34 +11001890AC_MSG_CHECKING([for utf8 locale support])
1891AC_RUN_IFELSE(
1892 [AC_LANG_PROGRAM([[
1893#include <locale.h>
Darren Tuckerc3599502016-12-09 12:52:02 +11001894#include <stdlib.h>
Darren Tucker47b8c992016-12-08 15:48:34 +11001895 ]], [[
1896 char *loc = setlocale(LC_CTYPE, "en_US.UTF-8");
1897 if (loc != NULL)
1898 exit(0);
1899 exit(1);
1900 ]])],
1901 AC_MSG_RESULT(yes),
1902 [AC_MSG_RESULT(no)
1903 TEST_SSH_UTF8=no],
1904 AC_MSG_WARN([cross compiling: assuming yes])
1905)
1906
Tim Ricec7a8af02010-11-08 14:26:23 -08001907AC_LINK_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08001908 [AC_LANG_PROGRAM(
1909 [[ #include <ctype.h> ]],
1910 [[ return (isblank('a')); ]])],
1911 [AC_DEFINE([HAVE_ISBLANK], [1], [Define if you have isblank(3C).])
Tim Ricec7a8af02010-11-08 14:26:23 -08001912])
1913
Damien Miller5fbe93f2016-07-15 13:54:31 +10001914disable_pkcs11=
1915AC_ARG_ENABLE([pkcs11],
1916 [ --disable-pkcs11 disable PKCS#11 support code [no]],
1917 [
1918 if test "x$enableval" = "xno" ; then
1919 disable_pkcs11=1
1920 fi
1921 ]
1922)
1923
Damien Miller764d51e2019-11-01 13:34:49 +11001924disable_sk=
1925AC_ARG_ENABLE([security-key],
1926 [ --disable-security-key disable U2F/FIDO support code [no]],
1927 [
1928 if test "x$enableval" = "xno" ; then
1929 disable_sk=1
1930 fi
1931 ]
1932)
Damien Miller5c0bc272019-11-15 16:08:00 +11001933enable_sk_internal=
1934AC_ARG_WITH([security-key-builtin],
1935 [ --with-security-key-builtin include builtin U2F/FIDO support],
1936 [
1937 if test "x$withval" != "xno" ; then
1938 enable_sk_internal=yes
1939 fi
1940 ]
1941)
1942test "x$disable_sk" != "x" && enable_sk_internal=""
Damien Miller764d51e2019-11-01 13:34:49 +11001943
Damien Miller764d51e2019-11-01 13:34:49 +11001944AC_SEARCH_LIBS([dlopen], [dl])
1945AC_CHECK_FUNCS([dlopen])
1946AC_CHECK_DECL([RTLD_NOW], [], [], [#include <dlfcn.h>])
1947
Darren Tuckerd5e082f2003-09-22 12:08:23 +10001948# IRIX has a const char return value for gai_strerror()
Tim Rice648f8762011-01-26 12:38:57 -08001949AC_CHECK_FUNCS([gai_strerror], [
1950 AC_DEFINE([HAVE_GAI_STRERROR])
1951 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckerd5e082f2003-09-22 12:08:23 +10001952#include <sys/types.h>
1953#include <sys/socket.h>
1954#include <netdb.h>
1955
Tim Rice648f8762011-01-26 12:38:57 -08001956const char *gai_strerror(int);
1957 ]], [[
1958 char *str;
1959 str = gai_strerror(0);
1960 ]])], [
1961 AC_DEFINE([HAVE_CONST_GAI_STRERROR_PROTO], [1],
1962 [Define if gai_strerror() returns const char *])], [])])
Darren Tuckerd5e082f2003-09-22 12:08:23 +10001963
Tim Rice648f8762011-01-26 12:38:57 -08001964AC_SEARCH_LIBS([nanosleep], [rt posix4], [AC_DEFINE([HAVE_NANOSLEEP], [1],
1965 [Some systems put nanosleep outside of libc])])
Damien Millercd6853c2003-01-28 11:33:42 +11001966
Darren Tuckera7108912013-06-02 08:18:31 +10001967AC_SEARCH_LIBS([clock_gettime], [rt],
1968 [AC_DEFINE([HAVE_CLOCK_GETTIME], [1], [Have clock_gettime])])
1969
Darren Tuckerf1159b52003-07-07 19:44:01 +10001970dnl Make sure prototypes are defined for these before using them.
Tim Rice648f8762011-01-26 12:38:57 -08001971AC_CHECK_DECL([strsep],
1972 [AC_CHECK_FUNCS([strsep])],
Darren Tucker390b6d52005-05-28 16:54:36 +10001973 [],
1974 [
1975#ifdef HAVE_STRING_H
1976# include <string.h>
1977#endif
1978 ])
Ben Lindstrom3e006472002-10-16 00:24:03 +00001979
Darren Tuckerb2427c82003-09-10 15:22:44 +10001980dnl tcsendbreak might be a macro
Tim Rice648f8762011-01-26 12:38:57 -08001981AC_CHECK_DECL([tcsendbreak],
1982 [AC_DEFINE([HAVE_TCSENDBREAK])],
1983 [AC_CHECK_FUNCS([tcsendbreak])],
Darren Tuckerb2427c82003-09-10 15:22:44 +10001984 [#include <termios.h>]
1985)
1986
Tim Rice648f8762011-01-26 12:38:57 -08001987AC_CHECK_DECLS([h_errno], , ,[#include <netdb.h>])
Darren Tucker5bb14002004-04-23 18:53:10 +10001988
Darren Tuckerd4860ec2020-02-17 22:48:50 +11001989AC_CHECK_DECLS([SHUT_RD, getpeereid], , ,
Darren Tucker128a0892006-07-12 19:02:56 +10001990 [
1991#include <sys/types.h>
1992#include <sys/socket.h>
Darren Tuckerd4860ec2020-02-17 22:48:50 +11001993#include <unistd.h>
Darren Tucker128a0892006-07-12 19:02:56 +10001994 ])
Darren Tucker248469b2006-07-12 14:14:31 +10001995
Tim Rice648f8762011-01-26 12:38:57 -08001996AC_CHECK_DECLS([O_NONBLOCK], , ,
Darren Tucker248469b2006-07-12 14:14:31 +10001997 [
1998#include <sys/types.h>
1999#ifdef HAVE_SYS_STAT_H
2000# include <sys/stat.h>
2001#endif
2002#ifdef HAVE_FCNTL_H
2003# include <fcntl.h>
2004#endif
2005 ])
2006
Darren Tucker2eb40412018-02-24 21:06:48 +11002007AC_CHECK_DECLS([readv, writev], , , [
Darren Tuckered0b5922006-09-03 22:44:49 +10002008#include <sys/types.h>
2009#include <sys/uio.h>
2010#include <unistd.h>
2011 ])
2012
Tim Rice648f8762011-01-26 12:38:57 -08002013AC_CHECK_DECLS([MAXSYMLINKS], , , [
Darren Tucker6d862a52007-04-29 14:39:02 +10002014#include <sys/param.h>
2015 ])
2016
Tim Rice648f8762011-01-26 12:38:57 -08002017AC_CHECK_DECLS([offsetof], , , [
Darren Tuckerdca0edf2007-04-29 15:06:44 +10002018#include <stddef.h>
2019 ])
2020
Darren Tuckerc7aad002013-06-02 07:18:47 +10002021# extra bits for select(2)
2022AC_CHECK_DECLS([howmany, NFDBITS], [], [], [[
2023#include <sys/param.h>
2024#include <sys/types.h>
2025#ifdef HAVE_SYS_SYSMACROS_H
2026#include <sys/sysmacros.h>
2027#endif
2028#ifdef HAVE_SYS_SELECT_H
2029#include <sys/select.h>
2030#endif
2031#ifdef HAVE_SYS_TIME_H
2032#include <sys/time.h>
2033#endif
2034#ifdef HAVE_UNISTD_H
2035#include <unistd.h>
2036#endif
2037 ]])
2038AC_CHECK_TYPES([fd_mask], [], [], [[
2039#include <sys/param.h>
2040#include <sys/types.h>
2041#ifdef HAVE_SYS_SELECT_H
2042#include <sys/select.h>
2043#endif
2044#ifdef HAVE_SYS_TIME_H
2045#include <sys/time.h>
2046#endif
2047#ifdef HAVE_UNISTD_H
2048#include <unistd.h>
2049#endif
2050 ]])
2051
Tim Rice648f8762011-01-26 12:38:57 -08002052AC_CHECK_FUNCS([setresuid], [
Darren Tucker2a6b0292003-12-31 14:59:17 +11002053 dnl Some platorms have setresuid that isn't implemented, test for this
Tim Rice648f8762011-01-26 12:38:57 -08002054 AC_MSG_CHECKING([if setresuid seems to work])
Darren Tucker623d92f2004-09-12 22:36:15 +10002055 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002056 [AC_LANG_PROGRAM([[
Darren Tuckere937be32003-12-17 18:53:26 +11002057#include <stdlib.h>
2058#include <errno.h>
Tim Rice648f8762011-01-26 12:38:57 -08002059 ]], [[
2060 errno=0;
2061 setresuid(0,0,0);
2062 if (errno==ENOSYS)
2063 exit(1);
2064 else
2065 exit(0);
Darren Tucker623d92f2004-09-12 22:36:15 +10002066 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08002067 [AC_MSG_RESULT([yes])],
2068 [AC_DEFINE([BROKEN_SETRESUID], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07002069 [Define if your setresuid() is broken])
Tim Rice648f8762011-01-26 12:38:57 -08002070 AC_MSG_RESULT([not implemented])],
Darren Tuckera0c2b392004-09-11 23:26:37 +10002071 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11002072 )
2073])
Darren Tuckere937be32003-12-17 18:53:26 +11002074
Tim Rice648f8762011-01-26 12:38:57 -08002075AC_CHECK_FUNCS([setresgid], [
Darren Tucker2a6b0292003-12-31 14:59:17 +11002076 dnl Some platorms have setresgid that isn't implemented, test for this
Tim Rice648f8762011-01-26 12:38:57 -08002077 AC_MSG_CHECKING([if setresgid seems to work])
Darren Tucker623d92f2004-09-12 22:36:15 +10002078 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002079 [AC_LANG_PROGRAM([[
Darren Tuckere937be32003-12-17 18:53:26 +11002080#include <stdlib.h>
2081#include <errno.h>
Tim Rice648f8762011-01-26 12:38:57 -08002082 ]], [[
2083 errno=0;
2084 setresgid(0,0,0);
2085 if (errno==ENOSYS)
2086 exit(1);
2087 else
2088 exit(0);
Darren Tucker623d92f2004-09-12 22:36:15 +10002089 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08002090 [AC_MSG_RESULT([yes])],
2091 [AC_DEFINE([BROKEN_SETRESGID], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07002092 [Define if your setresgid() is broken])
Tim Rice648f8762011-01-26 12:38:57 -08002093 AC_MSG_RESULT([not implemented])],
Darren Tuckera0c2b392004-09-11 23:26:37 +10002094 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11002095 )
2096])
Darren Tuckere937be32003-12-17 18:53:26 +11002097
Darren Tucker58fd4c52018-03-05 19:28:08 +11002098AC_MSG_CHECKING([for working fflush(NULL)])
2099AC_RUN_IFELSE(
2100 [AC_LANG_PROGRAM([[#include <stdio.h>]], [[fflush(NULL); exit(0);]])],
2101 AC_MSG_RESULT([yes]),
2102 [AC_MSG_RESULT([no])
2103 AC_DEFINE([FFLUSH_NULL_BUG], [1],
2104 [define if fflush(NULL) does not work])],
2105 AC_MSG_WARN([cross compiling: assuming working])
2106)
2107
Damien Millerad833b32000-08-23 10:46:23 +10002108dnl Checks for time functions
Tim Rice648f8762011-01-26 12:38:57 -08002109AC_CHECK_FUNCS([gettimeofday time])
Damien Millerad833b32000-08-23 10:46:23 +10002110dnl Checks for utmp functions
Tim Rice648f8762011-01-26 12:38:57 -08002111AC_CHECK_FUNCS([endutent getutent getutid getutline pututline setutent])
2112AC_CHECK_FUNCS([utmpname])
Damien Millerad833b32000-08-23 10:46:23 +10002113dnl Checks for utmpx functions
Tim Rice648f8762011-01-26 12:38:57 -08002114AC_CHECK_FUNCS([endutxent getutxent getutxid getutxline getutxuser pututxline])
2115AC_CHECK_FUNCS([setutxdb setutxent utmpxname])
Damien Miller20e231f2009-02-12 13:12:21 +11002116dnl Checks for lastlog functions
Tim Rice648f8762011-01-26 12:38:57 -08002117AC_CHECK_FUNCS([getlastlogxbyname])
Damien Millercedfecc1999-11-15 14:36:53 +11002118
Tim Rice648f8762011-01-26 12:38:57 -08002119AC_CHECK_FUNC([daemon],
2120 [AC_DEFINE([HAVE_DAEMON], [1], [Define if your libraries define daemon()])],
2121 [AC_CHECK_LIB([bsd], [daemon],
2122 [LIBS="$LIBS -lbsd"; AC_DEFINE([HAVE_DAEMON])])]
Damien Miller04f80141999-11-19 15:32:34 +11002123)
2124
Tim Rice648f8762011-01-26 12:38:57 -08002125AC_CHECK_FUNC([getpagesize],
2126 [AC_DEFINE([HAVE_GETPAGESIZE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07002127 [Define if your libraries define getpagesize()])],
Tim Rice648f8762011-01-26 12:38:57 -08002128 [AC_CHECK_LIB([ucb], [getpagesize],
2129 [LIBS="$LIBS -lucb"; AC_DEFINE([HAVE_GETPAGESIZE])])]
Damien Miller9fb07e42000-03-05 16:22:59 +11002130)
2131
Damien Millercb170cb2000-07-01 16:52:55 +10002132# Check for broken snprintf
2133if test "x$ac_cv_func_snprintf" = "xyes" ; then
2134 AC_MSG_CHECKING([whether snprintf correctly terminates long strings])
Darren Tuckera0c2b392004-09-11 23:26:37 +10002135 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002136 [AC_LANG_PROGRAM([[ #include <stdio.h> ]],
2137 [[
2138 char b[5];
2139 snprintf(b,5,"123456789");
Tim Ricee1d93702016-05-31 11:13:22 -07002140 exit(b[4]!='\0');
Darren Tucker623d92f2004-09-12 22:36:15 +10002141 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08002142 [AC_MSG_RESULT([yes])],
Damien Millercb170cb2000-07-01 16:52:55 +10002143 [
Tim Rice648f8762011-01-26 12:38:57 -08002144 AC_MSG_RESULT([no])
2145 AC_DEFINE([BROKEN_SNPRINTF], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07002146 [Define if your snprintf is busted])
Damien Millercb170cb2000-07-01 16:52:55 +10002147 AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
Darren Tuckera0c2b392004-09-11 23:26:37 +10002148 ],
2149 [ AC_MSG_WARN([cross compiling: Assuming working snprintf()]) ]
Damien Millercb170cb2000-07-01 16:52:55 +10002150 )
2151fi
2152
Darren Tuckere5261272018-10-12 16:43:35 +11002153if test "x$ac_cv_func_snprintf" = "xyes" ; then
2154 AC_MSG_CHECKING([whether snprintf understands %zu])
2155 AC_RUN_IFELSE(
2156 [AC_LANG_PROGRAM([[
2157#include <sys/types.h>
2158#include <stdio.h>
2159 ]],
2160 [[
2161 size_t a = 1, b = 2;
2162 char z[128];
2163 snprintf(z, sizeof z, "%zu%zu", a, b);
2164 exit(strcmp(z, "12"));
2165 ]])],
2166 [AC_MSG_RESULT([yes])],
2167 [
2168 AC_MSG_RESULT([no])
2169 AC_DEFINE([BROKEN_SNPRINTF], [1],
2170 [snprintf does not understand %zu])
2171 ],
2172 [ AC_MSG_WARN([cross compiling: Assuming working snprintf()]) ]
2173 )
2174fi
2175
Damien Millerd244a582014-08-23 17:06:49 +10002176# We depend on vsnprintf returning the right thing on overflow: the
2177# number of characters it tried to create (as per SUSv3)
2178if test "x$ac_cv_func_vsnprintf" = "xyes" ; then
Damien Miller57f39152005-11-24 19:58:19 +11002179 AC_MSG_CHECKING([whether vsnprintf returns correct values on overflow])
2180 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002181 [AC_LANG_PROGRAM([[
Damien Miller57f39152005-11-24 19:58:19 +11002182#include <sys/types.h>
2183#include <stdio.h>
2184#include <stdarg.h>
2185
Damien Millerd244a582014-08-23 17:06:49 +10002186int x_snprintf(char *str, size_t count, const char *fmt, ...)
Damien Miller57f39152005-11-24 19:58:19 +11002187{
Damien Millerd244a582014-08-23 17:06:49 +10002188 size_t ret;
2189 va_list ap;
2190
2191 va_start(ap, fmt);
2192 ret = vsnprintf(str, count, fmt, ap);
2193 va_end(ap);
Damien Miller57f39152005-11-24 19:58:19 +11002194 return ret;
2195}
Tim Rice648f8762011-01-26 12:38:57 -08002196 ]], [[
Damien Millerd244a582014-08-23 17:06:49 +10002197char x[1];
2198if (x_snprintf(x, 1, "%s %d", "hello", 12345) != 11)
2199 return 1;
2200if (x_snprintf(NULL, 0, "%s %d", "hello", 12345) != 11)
2201 return 1;
2202return 0;
Tim Rice648f8762011-01-26 12:38:57 -08002203 ]])],
2204 [AC_MSG_RESULT([yes])],
Damien Miller57f39152005-11-24 19:58:19 +11002205 [
Tim Rice648f8762011-01-26 12:38:57 -08002206 AC_MSG_RESULT([no])
2207 AC_DEFINE([BROKEN_SNPRINTF], [1],
Damien Miller57f39152005-11-24 19:58:19 +11002208 [Define if your snprintf is busted])
2209 AC_MSG_WARN([****** Your vsnprintf() function is broken, complain to your vendor])
2210 ],
2211 [ AC_MSG_WARN([cross compiling: Assuming working vsnprintf()]) ]
2212 )
2213fi
2214
Darren Tuckerd40c66c2005-12-17 22:32:03 +11002215# On systems where [v]snprintf is broken, but is declared in stdio,
2216# check that the fmt argument is const char * or just char *.
2217# This is only useful for when BROKEN_SNPRINTF
2218AC_MSG_CHECKING([whether snprintf can declare const char *fmt])
Tim Rice648f8762011-01-26 12:38:57 -08002219AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
2220#include <stdio.h>
2221int snprintf(char *a, size_t b, const char *c, ...) { return 0; }
2222 ]], [[
2223 snprintf(0, 0, 0);
2224 ]])],
2225 [AC_MSG_RESULT([yes])
2226 AC_DEFINE([SNPRINTF_CONST], [const],
Darren Tuckerd40c66c2005-12-17 22:32:03 +11002227 [Define as const if snprintf() can declare const char *fmt])],
Tim Rice648f8762011-01-26 12:38:57 -08002228 [AC_MSG_RESULT([no])
2229 AC_DEFINE([SNPRINTF_CONST], [/* not const */])])
Darren Tuckerd40c66c2005-12-17 22:32:03 +11002230
Damien Millerb4097182004-05-23 14:09:40 +10002231# Check for missing getpeereid (or equiv) support
2232NO_PEERCHECK=""
Darren Tucker164aa302007-03-21 21:39:57 +11002233if test "x$ac_cv_func_getpeereid" != "xyes" -a "x$ac_cv_func_getpeerucred" != "xyes"; then
Damien Millerb4097182004-05-23 14:09:40 +10002234 AC_MSG_CHECKING([whether system supports SO_PEERCRED getsockopt])
Tim Rice648f8762011-01-26 12:38:57 -08002235 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
2236#include <sys/types.h>
2237#include <sys/socket.h>]], [[int i = SO_PEERCRED;]])],
2238 [ AC_MSG_RESULT([yes])
2239 AC_DEFINE([HAVE_SO_PEERCRED], [1], [Have PEERCRED socket option])
2240 ], [AC_MSG_RESULT([no])
2241 NO_PEERCHECK=1
2242 ])
Damien Millerb4097182004-05-23 14:09:40 +10002243fi
2244
Damien Millere8328192003-01-07 15:18:32 +11002245dnl see whether mkstemp() requires XXXXXX
2246if test "x$ac_cv_func_mkdtemp" = "xyes" ; then
2247AC_MSG_CHECKING([for (overly) strict mkstemp])
Darren Tucker314d89e2005-10-17 23:29:23 +10002248AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002249 [AC_LANG_PROGRAM([[
Damien Millere8328192003-01-07 15:18:32 +11002250#include <stdlib.h>
Tim Rice648f8762011-01-26 12:38:57 -08002251 ]], [[
2252 char template[]="conftest.mkstemp-test";
2253 if (mkstemp(template) == -1)
2254 exit(1);
2255 unlink(template);
2256 exit(0);
Darren Tucker314d89e2005-10-17 23:29:23 +10002257 ]])],
Damien Millere8328192003-01-07 15:18:32 +11002258 [
Tim Rice648f8762011-01-26 12:38:57 -08002259 AC_MSG_RESULT([no])
Damien Millere8328192003-01-07 15:18:32 +11002260 ],
Damien Millera8e06ce2003-11-21 23:48:55 +11002261 [
Tim Rice648f8762011-01-26 12:38:57 -08002262 AC_MSG_RESULT([yes])
2263 AC_DEFINE([HAVE_STRICT_MKSTEMP], [1], [Silly mkstemp()])
Damien Millere8328192003-01-07 15:18:32 +11002264 ],
2265 [
Tim Rice648f8762011-01-26 12:38:57 -08002266 AC_MSG_RESULT([yes])
2267 AC_DEFINE([HAVE_STRICT_MKSTEMP])
Damien Millera8e06ce2003-11-21 23:48:55 +11002268 ]
Damien Millere8328192003-01-07 15:18:32 +11002269)
2270fi
2271
Darren Tucker70a3d552003-08-21 17:58:29 +10002272dnl make sure that openpty does not reacquire controlling terminal
2273if test ! -z "$check_for_openpty_ctty_bug"; then
Tim Rice648f8762011-01-26 12:38:57 -08002274 AC_MSG_CHECKING([if openpty correctly handles controlling tty])
Darren Tucker314d89e2005-10-17 23:29:23 +10002275 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002276 [AC_LANG_PROGRAM([[
Darren Tucker70a3d552003-08-21 17:58:29 +10002277#include <stdio.h>
2278#include <sys/fcntl.h>
2279#include <sys/types.h>
2280#include <sys/wait.h>
Tim Rice648f8762011-01-26 12:38:57 -08002281 ]], [[
Darren Tucker70a3d552003-08-21 17:58:29 +10002282 pid_t pid;
2283 int fd, ptyfd, ttyfd, status;
2284
2285 pid = fork();
2286 if (pid < 0) { /* failed */
2287 exit(1);
2288 } else if (pid > 0) { /* parent */
2289 waitpid(pid, &status, 0);
Damien Millera8e06ce2003-11-21 23:48:55 +11002290 if (WIFEXITED(status))
Darren Tucker70a3d552003-08-21 17:58:29 +10002291 exit(WEXITSTATUS(status));
2292 else
2293 exit(2);
2294 } else { /* child */
2295 close(0); close(1); close(2);
2296 setsid();
2297 openpty(&ptyfd, &ttyfd, NULL, NULL, NULL);
2298 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
2299 if (fd >= 0)
2300 exit(3); /* Acquired ctty: broken */
2301 else
2302 exit(0); /* Did not acquire ctty: OK */
2303 }
Darren Tucker314d89e2005-10-17 23:29:23 +10002304 ]])],
Darren Tucker70a3d552003-08-21 17:58:29 +10002305 [
Tim Rice648f8762011-01-26 12:38:57 -08002306 AC_MSG_RESULT([yes])
Darren Tucker70a3d552003-08-21 17:58:29 +10002307 ],
2308 [
Tim Rice648f8762011-01-26 12:38:57 -08002309 AC_MSG_RESULT([no])
2310 AC_DEFINE([SSHD_ACQUIRES_CTTY])
Darren Tucker314d89e2005-10-17 23:29:23 +10002311 ],
2312 [
Tim Rice648f8762011-01-26 12:38:57 -08002313 AC_MSG_RESULT([cross-compiling, assuming yes])
Darren Tucker70a3d552003-08-21 17:58:29 +10002314 ]
2315 )
2316fi
2317
Tim Rice8bb561b2005-03-17 16:23:19 -08002318if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
2319 test "x$check_for_hpux_broken_getaddrinfo" = "x1"; then
Tim Rice648f8762011-01-26 12:38:57 -08002320 AC_MSG_CHECKING([if getaddrinfo seems to work])
Darren Tucker314d89e2005-10-17 23:29:23 +10002321 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002322 [AC_LANG_PROGRAM([[
Darren Tucker4398cf52004-04-06 21:39:02 +10002323#include <stdio.h>
2324#include <sys/socket.h>
2325#include <netdb.h>
2326#include <errno.h>
2327#include <netinet/in.h>
2328
2329#define TEST_PORT "2222"
Tim Rice648f8762011-01-26 12:38:57 -08002330 ]], [[
Darren Tucker4398cf52004-04-06 21:39:02 +10002331 int err, sock;
2332 struct addrinfo *gai_ai, *ai, hints;
2333 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
2334
2335 memset(&hints, 0, sizeof(hints));
2336 hints.ai_family = PF_UNSPEC;
2337 hints.ai_socktype = SOCK_STREAM;
2338 hints.ai_flags = AI_PASSIVE;
2339
2340 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
2341 if (err != 0) {
2342 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
2343 exit(1);
2344 }
2345
2346 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
2347 if (ai->ai_family != AF_INET6)
2348 continue;
2349
2350 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
2351 sizeof(ntop), strport, sizeof(strport),
2352 NI_NUMERICHOST|NI_NUMERICSERV);
2353
2354 if (err != 0) {
2355 if (err == EAI_SYSTEM)
2356 perror("getnameinfo EAI_SYSTEM");
2357 else
2358 fprintf(stderr, "getnameinfo failed: %s\n",
2359 gai_strerror(err));
2360 exit(2);
2361 }
2362
2363 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
2364 if (sock < 0)
2365 perror("socket");
2366 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2367 if (errno == EBADF)
2368 exit(3);
2369 }
2370 }
2371 exit(0);
Darren Tucker314d89e2005-10-17 23:29:23 +10002372 ]])],
Darren Tucker4398cf52004-04-06 21:39:02 +10002373 [
Tim Rice648f8762011-01-26 12:38:57 -08002374 AC_MSG_RESULT([yes])
Darren Tucker4398cf52004-04-06 21:39:02 +10002375 ],
2376 [
Tim Rice648f8762011-01-26 12:38:57 -08002377 AC_MSG_RESULT([no])
2378 AC_DEFINE([BROKEN_GETADDRINFO])
Darren Tucker314d89e2005-10-17 23:29:23 +10002379 ],
2380 [
Tim Rice648f8762011-01-26 12:38:57 -08002381 AC_MSG_RESULT([cross-compiling, assuming yes])
Darren Tucker4398cf52004-04-06 21:39:02 +10002382 ]
2383 )
2384fi
2385
Tim Rice8bb561b2005-03-17 16:23:19 -08002386if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
2387 test "x$check_for_aix_broken_getaddrinfo" = "x1"; then
Tim Rice648f8762011-01-26 12:38:57 -08002388 AC_MSG_CHECKING([if getaddrinfo seems to work])
Darren Tucker314d89e2005-10-17 23:29:23 +10002389 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002390 [AC_LANG_PROGRAM([[
Darren Tucker691d5232005-02-15 21:45:57 +11002391#include <stdio.h>
2392#include <sys/socket.h>
2393#include <netdb.h>
2394#include <errno.h>
2395#include <netinet/in.h>
2396
2397#define TEST_PORT "2222"
Tim Rice648f8762011-01-26 12:38:57 -08002398 ]], [[
Darren Tucker691d5232005-02-15 21:45:57 +11002399 int err, sock;
2400 struct addrinfo *gai_ai, *ai, hints;
2401 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
2402
2403 memset(&hints, 0, sizeof(hints));
2404 hints.ai_family = PF_UNSPEC;
2405 hints.ai_socktype = SOCK_STREAM;
2406 hints.ai_flags = AI_PASSIVE;
2407
2408 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
2409 if (err != 0) {
2410 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
2411 exit(1);
2412 }
2413
2414 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
2415 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2416 continue;
2417
2418 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
2419 sizeof(ntop), strport, sizeof(strport),
2420 NI_NUMERICHOST|NI_NUMERICSERV);
2421
2422 if (ai->ai_family == AF_INET && err != 0) {
2423 perror("getnameinfo");
2424 exit(2);
2425 }
2426 }
2427 exit(0);
Darren Tucker314d89e2005-10-17 23:29:23 +10002428 ]])],
Darren Tucker691d5232005-02-15 21:45:57 +11002429 [
Tim Rice648f8762011-01-26 12:38:57 -08002430 AC_MSG_RESULT([yes])
2431 AC_DEFINE([AIX_GETNAMEINFO_HACK], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07002432 [Define if you have a getaddrinfo that fails
2433 for the all-zeros IPv6 address])
Darren Tucker691d5232005-02-15 21:45:57 +11002434 ],
2435 [
Tim Rice648f8762011-01-26 12:38:57 -08002436 AC_MSG_RESULT([no])
2437 AC_DEFINE([BROKEN_GETADDRINFO])
Darren Tucker314d89e2005-10-17 23:29:23 +10002438 ],
Darren Tucker8b272ab2006-06-27 11:20:28 +10002439 [
Tim Rice648f8762011-01-26 12:38:57 -08002440 AC_MSG_RESULT([cross-compiling, assuming no])
Darren Tucker691d5232005-02-15 21:45:57 +11002441 ]
2442 )
2443fi
2444
Darren Tuckere50e8c92015-02-21 15:10:33 +11002445if test "x$ac_cv_func_getaddrinfo" = "xyes"; then
2446 AC_CHECK_DECLS(AI_NUMERICSERV, , ,
2447 [#include <sys/types.h>
2448 #include <sys/socket.h>
2449 #include <netdb.h>])
2450fi
2451
Darren Tuckera56f1912004-11-02 20:30:54 +11002452if test "x$check_for_conflicting_getspnam" = "x1"; then
Tim Rice648f8762011-01-26 12:38:57 -08002453 AC_MSG_CHECKING([for conflicting getspnam in shadow.h])
2454 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <shadow.h> ]],
2455 [[ exit(0); ]])],
Darren Tuckera56f1912004-11-02 20:30:54 +11002456 [
Tim Rice648f8762011-01-26 12:38:57 -08002457 AC_MSG_RESULT([no])
Darren Tuckera56f1912004-11-02 20:30:54 +11002458 ],
2459 [
Tim Rice648f8762011-01-26 12:38:57 -08002460 AC_MSG_RESULT([yes])
2461 AC_DEFINE([GETSPNAM_CONFLICTING_DEFS], [1],
Darren Tuckera56f1912004-11-02 20:30:54 +11002462 [Conflicting defs for getspnam])
2463 ]
2464 )
2465fi
2466
Darren Tucker20e5e8b2016-08-02 12:16:34 +10002467dnl NetBSD added an strnvis and unfortunately made it incompatible with the
2468dnl existing one in OpenBSD and Linux's libbsd (the former having existed
2469dnl for over ten years). Despite this incompatibility being reported during
2470dnl development (see http://gnats.netbsd.org/44977) they still shipped it.
2471dnl Even more unfortunately FreeBSD and later MacOS picked up this incompatible
2472dnl implementation. Try to detect this mess, and assume the only safe option
2473dnl if we're cross compiling.
2474dnl
2475dnl OpenBSD, 2001: strnvis(char *dst, const char *src, size_t dlen, int flag);
2476dnl NetBSD: 2012, strnvis(char *dst, size_t dlen, const char *src, int flag);
2477if test "x$ac_cv_func_strnvis" = "xyes"; then
2478 AC_MSG_CHECKING([for working strnvis])
2479 AC_RUN_IFELSE(
2480 [AC_LANG_PROGRAM([[
2481#include <signal.h>
2482#include <stdlib.h>
2483#include <string.h>
2484#include <vis.h>
2485static void sighandler(int sig) { _exit(1); }
2486 ]], [[
2487 char dst[16];
2488
2489 signal(SIGSEGV, sighandler);
2490 if (strnvis(dst, "src", 4, 0) && strcmp(dst, "src") == 0)
2491 exit(0);
2492 exit(1)
2493 ]])],
2494 [AC_MSG_RESULT([yes])],
2495 [AC_MSG_RESULT([no])
2496 AC_DEFINE([BROKEN_STRNVIS], [1], [strnvis detected broken])],
2497 [AC_MSG_WARN([cross compiling: assuming broken])
2498 AC_DEFINE([BROKEN_STRNVIS], [1], [strnvis assumed broken])]
2499 )
2500fi
2501
Darren Tuckerc7b5a472018-02-25 23:55:41 +11002502AC_CHECK_FUNCS([getpgrp],[
2503 AC_MSG_CHECKING([if getpgrp accepts zero args])
2504 AC_COMPILE_IFELSE(
2505 [AC_LANG_PROGRAM([[$ac_includes_default]], [[ getpgrp(); ]])],
2506 [ AC_MSG_RESULT([yes])
2507 AC_DEFINE([GETPGRP_VOID], [1], [getpgrp takes zero args])],
2508 [ AC_MSG_RESULT([no])
2509 AC_DEFINE([GETPGRP_VOID], [0], [getpgrp takes one arg])]
2510 )
2511])
Damien Miller606f8802000-09-16 15:39:56 +11002512
Tim Riceaef73712002-05-11 13:17:42 -07002513# Search for OpenSSL
2514saved_CPPFLAGS="$CPPFLAGS"
2515saved_LDFLAGS="$LDFLAGS"
Tim Rice648f8762011-01-26 12:38:57 -08002516AC_ARG_WITH([ssl-dir],
Damien Millera22ba012000-03-02 23:09:20 +11002517 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
2518 [
Damien Miller72ef7c12015-01-15 02:21:31 +11002519 if test "x$openssl" = "xno" ; then
2520 AC_MSG_ERROR([cannot use --with-ssl-dir when OpenSSL disabled])
2521 fi
Ben Lindstrom23e13712000-10-29 22:49:19 +00002522 if test "x$withval" != "xno" ; then
Darren Tuckerc7e38d52005-02-09 22:12:30 +11002523 case "$withval" in
2524 # Relative paths
2525 ./*|../*) withval="`pwd`/$withval"
2526 esac
Tim Riceaef73712002-05-11 13:17:42 -07002527 if test -d "$withval/lib"; then
Darren Tucker2f0bad22019-01-21 21:28:27 +11002528 if test -n "${rpath_opt}"; then
2529 LDFLAGS="-L${withval}/lib ${rpath_opt}${withval}/lib ${LDFLAGS}"
Tim Riceaef73712002-05-11 13:17:42 -07002530 else
2531 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
2532 fi
Darren Tucker9f8703b2010-04-23 11:12:06 +10002533 elif test -d "$withval/lib64"; then
Darren Tucker2f0bad22019-01-21 21:28:27 +11002534 if test -n "${rpath_opt}"; then
2535 LDFLAGS="-L${withval}/lib64 ${rpath_opt}${withval}/lib64 ${LDFLAGS}"
Darren Tucker9f8703b2010-04-23 11:12:06 +10002536 else
2537 LDFLAGS="-L${withval}/lib64 ${LDFLAGS}"
2538 fi
Tim Riceaef73712002-05-11 13:17:42 -07002539 else
Darren Tucker2f0bad22019-01-21 21:28:27 +11002540 if test -n "${rpath_opt}"; then
2541 LDFLAGS="-L${withval} ${rpath_opt}${withval} ${LDFLAGS}"
Tim Riceaef73712002-05-11 13:17:42 -07002542 else
2543 LDFLAGS="-L${withval} ${LDFLAGS}"
2544 fi
2545 fi
2546 if test -d "$withval/include"; then
2547 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
2548 else
2549 CPPFLAGS="-I${withval} ${CPPFLAGS}"
2550 fi
Damien Millera22ba012000-03-02 23:09:20 +11002551 fi
2552 ]
2553)
Damien Millerb9c56672014-05-15 14:43:37 +10002554
Tim Rice648f8762011-01-26 12:38:57 -08002555AC_ARG_WITH([openssl-header-check],
Damien Miller9975e482007-03-05 11:51:27 +11002556 [ --without-openssl-header-check Disable OpenSSL version consistency check],
Damien Millerec932372002-01-22 22:16:03 +11002557 [
Damien Miller72ef7c12015-01-15 02:21:31 +11002558 if test "x$withval" = "xno" ; then
2559 openssl_check_nonfatal=1
Damien Miller9975e482007-03-05 11:51:27 +11002560 fi
Damien Millerec932372002-01-22 22:16:03 +11002561 ]
2562)
2563
Damien Miller72ef7c12015-01-15 02:21:31 +11002564openssl_engine=no
Tim Rice648f8762011-01-26 12:38:57 -08002565AC_ARG_WITH([ssl-engine],
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11002566 [ --with-ssl-engine Enable OpenSSL (hardware) ENGINE support ],
Damien Miller72ef7c12015-01-15 02:21:31 +11002567 [
Damien Miller72ef7c12015-01-15 02:21:31 +11002568 if test "x$withval" != "xno" ; then
Darren Tuckerb5fa0cd2015-12-15 15:10:32 +11002569 if test "x$openssl" = "xno" ; then
2570 AC_MSG_ERROR([cannot use --with-ssl-engine when OpenSSL disabled])
2571 fi
Damien Miller72ef7c12015-01-15 02:21:31 +11002572 openssl_engine=yes
2573 fi
2574 ]
2575)
2576
2577if test "x$openssl" = "xyes" ; then
2578 LIBS="-lcrypto $LIBS"
Darren Tucker8d8340e2018-11-16 13:32:13 +11002579 AC_TRY_LINK_FUNC([RAND_add], ,
2580 [AC_MSG_ERROR([*** working libcrypto not found, check config.log])])
2581 AC_CHECK_HEADER([openssl/opensslv.h], ,
2582 [AC_MSG_ERROR([*** OpenSSL headers missing - please install first or check config.log ***])])
Damien Miller72ef7c12015-01-15 02:21:31 +11002583
2584 # Determine OpenSSL header version
2585 AC_MSG_CHECKING([OpenSSL header version])
2586 AC_RUN_IFELSE(
2587 [AC_LANG_PROGRAM([[
Darren Tucker15605962015-11-10 11:14:47 +11002588 #include <stdlib.h>
Damien Miller72ef7c12015-01-15 02:21:31 +11002589 #include <stdio.h>
2590 #include <string.h>
2591 #include <openssl/opensslv.h>
2592 #define DATA "conftest.sslincver"
2593 ]], [[
2594 FILE *fd;
2595 int rc;
2596
2597 fd = fopen(DATA,"w");
2598 if(fd == NULL)
2599 exit(1);
2600
Darren Tuckerb3413532016-04-04 11:09:21 +10002601 if ((rc = fprintf(fd, "%08lx (%s)\n",
2602 (unsigned long)OPENSSL_VERSION_NUMBER,
2603 OPENSSL_VERSION_TEXT)) < 0)
Damien Miller72ef7c12015-01-15 02:21:31 +11002604 exit(1);
2605
2606 exit(0);
2607 ]])],
2608 [
2609 ssl_header_ver=`cat conftest.sslincver`
2610 AC_MSG_RESULT([$ssl_header_ver])
2611 ],
2612 [
2613 AC_MSG_RESULT([not found])
2614 AC_MSG_ERROR([OpenSSL version header not found.])
2615 ],
2616 [
2617 AC_MSG_WARN([cross compiling: not checking])
2618 ]
2619 )
2620
Darren Tucker262d81a2018-10-27 16:45:59 +11002621 # Determining OpenSSL library version is version dependent.
2622 AC_CHECK_FUNCS([OpenSSL_version OpenSSL_version_num])
2623
Damien Miller72ef7c12015-01-15 02:21:31 +11002624 # Determine OpenSSL library version
2625 AC_MSG_CHECKING([OpenSSL library version])
2626 AC_RUN_IFELSE(
2627 [AC_LANG_PROGRAM([[
2628 #include <stdio.h>
2629 #include <string.h>
2630 #include <openssl/opensslv.h>
2631 #include <openssl/crypto.h>
2632 #define DATA "conftest.ssllibver"
2633 ]], [[
2634 FILE *fd;
2635 int rc;
2636
2637 fd = fopen(DATA,"w");
2638 if(fd == NULL)
2639 exit(1);
Darren Tucker262d81a2018-10-27 16:45:59 +11002640#ifndef OPENSSL_VERSION
2641# define OPENSSL_VERSION SSLEAY_VERSION
2642#endif
2643#ifndef HAVE_OPENSSL_VERSION
Damien Miller406a24b2018-10-26 13:43:28 +11002644# define OpenSSL_version SSLeay_version
Darren Tucker262d81a2018-10-27 16:45:59 +11002645#endif
2646#ifndef HAVE_OPENSSL_VERSION_NUM
2647# define OpenSSL_version_num SSLeay
Damien Miller406a24b2018-10-26 13:43:28 +11002648#endif
Damien Miller859754b2018-10-23 17:10:41 +11002649 if ((rc = fprintf(fd, "%08lx (%s)\n",
2650 (unsigned long)OpenSSL_version_num(),
2651 OpenSSL_version(OPENSSL_VERSION))) < 0)
Damien Miller72ef7c12015-01-15 02:21:31 +11002652 exit(1);
2653
2654 exit(0);
2655 ]])],
2656 [
2657 ssl_library_ver=`cat conftest.ssllibver`
2658 # Check version is supported.
2659 case "$ssl_library_ver" in
Damien Milleraede1c32018-10-17 11:01:20 +11002660 10000*|0*)
2661 AC_MSG_ERROR([OpenSSL >= 1.0.1 required (have "$ssl_library_ver")])
2662 ;;
2663 100*) ;; # 1.0.x
Damien Miller28c7b2c2018-11-23 10:45:20 +11002664 101000[[0123456]]*)
Damien Milleraede1c32018-10-17 11:01:20 +11002665 # https://github.com/openssl/openssl/pull/4613
2666 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")])
2667 ;;
2668 101*) ;; # 1.1.x
2669 200*) ;; # LibreSSL
Darren Tuckerc882d742019-01-22 20:38:40 +11002670 300*) ;; # OpenSSL development branch.
Damien Milleraede1c32018-10-17 11:01:20 +11002671 *)
Darren Tuckerc882d742019-01-22 20:38:40 +11002672 AC_MSG_ERROR([Unknown/unsupported OpenSSL version ("$ssl_library_ver")])
Damien Milleraede1c32018-10-17 11:01:20 +11002673 ;;
Damien Miller72ef7c12015-01-15 02:21:31 +11002674 esac
2675 AC_MSG_RESULT([$ssl_library_ver])
2676 ],
2677 [
2678 AC_MSG_RESULT([not found])
2679 AC_MSG_ERROR([OpenSSL library not found.])
2680 ],
2681 [
2682 AC_MSG_WARN([cross compiling: not checking])
2683 ]
2684 )
2685
2686 # Sanity check OpenSSL headers
2687 AC_MSG_CHECKING([whether OpenSSL's headers match the library])
2688 AC_RUN_IFELSE(
2689 [AC_LANG_PROGRAM([[
2690 #include <string.h>
2691 #include <openssl/opensslv.h>
Darren Tuckerc1d7e542015-12-15 14:27:09 +11002692 #include <openssl/crypto.h>
Damien Miller72ef7c12015-01-15 02:21:31 +11002693 ]], [[
Darren Tucker262d81a2018-10-27 16:45:59 +11002694#ifndef HAVE_OPENSSL_VERSION_NUM
2695# define OpenSSL_version_num SSLeay
Damien Miller406a24b2018-10-26 13:43:28 +11002696#endif
Damien Miller859754b2018-10-23 17:10:41 +11002697 exit(OpenSSL_version_num() == OPENSSL_VERSION_NUMBER ? 0 : 1);
Damien Miller72ef7c12015-01-15 02:21:31 +11002698 ]])],
2699 [
2700 AC_MSG_RESULT([yes])
2701 ],
2702 [
2703 AC_MSG_RESULT([no])
2704 if test "x$openssl_check_nonfatal" = "x"; then
2705 AC_MSG_ERROR([Your OpenSSL headers do not match your
2706 library. Check config.log for details.
2707 If you are sure your installation is consistent, you can disable the check
2708 by running "./configure --without-openssl-header-check".
2709 Also see contrib/findssl.sh for help identifying header/library mismatches.
2710 ])
2711 else
2712 AC_MSG_WARN([Your OpenSSL headers do not match your
2713 library. Check config.log for details.
2714 Also see contrib/findssl.sh for help identifying header/library mismatches.])
2715 fi
2716 ],
2717 [
2718 AC_MSG_WARN([cross compiling: not checking])
2719 ]
2720 )
2721
2722 AC_MSG_CHECKING([if programs using OpenSSL functions will link])
2723 AC_LINK_IFELSE(
Damien Miller42c5ec42018-11-23 10:40:06 +11002724 [AC_LANG_PROGRAM([[ #include <openssl/err.h> ]],
2725 [[ ERR_load_crypto_strings(); ]])],
Damien Miller72ef7c12015-01-15 02:21:31 +11002726 [
2727 AC_MSG_RESULT([yes])
2728 ],
2729 [
2730 AC_MSG_RESULT([no])
2731 saved_LIBS="$LIBS"
2732 LIBS="$LIBS -ldl"
2733 AC_MSG_CHECKING([if programs using OpenSSL need -ldl])
2734 AC_LINK_IFELSE(
Damien Miller42c5ec42018-11-23 10:40:06 +11002735 [AC_LANG_PROGRAM([[ #include <openssl/err.h> ]],
2736 [[ ERR_load_crypto_strings(); ]])],
Damien Miller72ef7c12015-01-15 02:21:31 +11002737 [
2738 AC_MSG_RESULT([yes])
2739 ],
2740 [
2741 AC_MSG_RESULT([no])
2742 LIBS="$saved_LIBS"
2743 ]
2744 )
2745 ]
2746 )
2747
2748 AC_CHECK_FUNCS([ \
2749 BN_is_prime_ex \
2750 DSA_generate_parameters_ex \
Damien Miller42c5ec42018-11-23 10:40:06 +11002751 EVP_CIPHER_CTX_ctrl \
Damien Miller72ef7c12015-01-15 02:21:31 +11002752 EVP_DigestFinal_ex \
Damien Miller42c5ec42018-11-23 10:40:06 +11002753 EVP_DigestInit_ex \
Damien Miller72ef7c12015-01-15 02:21:31 +11002754 EVP_MD_CTX_cleanup \
2755 EVP_MD_CTX_copy_ex \
Damien Miller42c5ec42018-11-23 10:40:06 +11002756 EVP_MD_CTX_init \
Damien Miller72ef7c12015-01-15 02:21:31 +11002757 HMAC_CTX_init \
2758 RSA_generate_key_ex \
2759 RSA_get_default_method \
Darren Tucker1801cd12018-11-08 15:03:11 +11002760 ])
Darren Tucker98f878d2018-11-25 14:05:08 +11002761
2762 # OpenSSL_add_all_algorithms may be a macro.
2763 AC_CHECK_FUNC(OpenSSL_add_all_algorithms,
2764 AC_DEFINE(HAVE_OPENSSL_ADD_ALL_ALGORITHMS, 1, [as a function]),
2765 AC_CHECK_DECL(OpenSSL_add_all_algorithms,
2766 AC_DEFINE(HAVE_OPENSSL_ADD_ALL_ALGORITHMS, 1, [as a macro]), ,
2767 [[#include <openssl/evp.h>]]
2768 )
2769 )
2770
Darren Tucker1801cd12018-11-08 15:03:11 +11002771 # LibreSSL/OpenSSL 1.1x API
2772 AC_CHECK_FUNCS([ \
Darren Tuckerd0d1dfa2018-11-16 14:11:44 +11002773 OPENSSL_init_crypto \
Darren Tucker1801cd12018-11-08 15:03:11 +11002774 DH_get0_key \
2775 DH_get0_pqg \
2776 DH_set0_key \
2777 DH_set_length \
2778 DH_set0_pqg \
2779 DSA_get0_key \
2780 DSA_get0_pqg \
2781 DSA_set0_key \
2782 DSA_set0_pqg \
2783 DSA_SIG_get0 \
2784 DSA_SIG_set0 \
2785 ECDSA_SIG_get0 \
2786 ECDSA_SIG_set0 \
2787 EVP_CIPHER_CTX_iv \
2788 EVP_CIPHER_CTX_iv_noconst \
2789 EVP_CIPHER_CTX_get_iv \
2790 EVP_CIPHER_CTX_set_iv \
2791 RSA_get0_crt_params \
2792 RSA_get0_factors \
2793 RSA_get0_key \
2794 RSA_set0_crt_params \
2795 RSA_set0_factors \
2796 RSA_set0_key \
2797 RSA_meth_free \
2798 RSA_meth_dup \
2799 RSA_meth_set1_name \
2800 RSA_meth_get_finish \
2801 RSA_meth_set_priv_enc \
2802 RSA_meth_set_priv_dec \
2803 RSA_meth_set_finish \
2804 EVP_PKEY_get0_RSA \
2805 EVP_MD_CTX_new \
2806 EVP_MD_CTX_free \
Damien Millerabe2b242020-04-03 17:25:46 +11002807 EVP_chacha20 \
Damien Miller72ef7c12015-01-15 02:21:31 +11002808 ])
2809
2810 if test "x$openssl_engine" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08002811 AC_MSG_CHECKING([for OpenSSL ENGINE support])
2812 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller72ef7c12015-01-15 02:21:31 +11002813 #include <openssl/engine.h>
Tim Rice648f8762011-01-26 12:38:57 -08002814 ]], [[
Damien Miller72ef7c12015-01-15 02:21:31 +11002815 ENGINE_load_builtin_engines();
2816 ENGINE_register_all_complete();
Tim Rice648f8762011-01-26 12:38:57 -08002817 ]])],
2818 [ AC_MSG_RESULT([yes])
2819 AC_DEFINE([USE_OPENSSL_ENGINE], [1],
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11002820 [Enable OpenSSL engine support])
Tim Rice648f8762011-01-26 12:38:57 -08002821 ], [ AC_MSG_ERROR([OpenSSL ENGINE support not found])
2822 ])
Damien Miller72ef7c12015-01-15 02:21:31 +11002823 fi
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11002824
Damien Miller72ef7c12015-01-15 02:21:31 +11002825 # Check for OpenSSL without EVP_aes_{192,256}_cbc
2826 AC_MSG_CHECKING([whether OpenSSL has crippled AES support])
2827 AC_LINK_IFELSE(
Darren Tucker37bcef52013-11-09 18:39:25 +11002828 [AC_LANG_PROGRAM([[
Damien Miller72ef7c12015-01-15 02:21:31 +11002829 #include <string.h>
2830 #include <openssl/evp.h>
2831 ]], [[
2832 exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL);
2833 ]])],
2834 [
2835 AC_MSG_RESULT([no])
2836 ],
2837 [
2838 AC_MSG_RESULT([yes])
2839 AC_DEFINE([OPENSSL_LOBOTOMISED_AES], [1],
2840 [libcrypto is missing AES 192 and 256 bit functions])
2841 ]
2842 )
2843
2844 # Check for OpenSSL with EVP_aes_*ctr
2845 AC_MSG_CHECKING([whether OpenSSL has AES CTR via EVP])
2846 AC_LINK_IFELSE(
2847 [AC_LANG_PROGRAM([[
2848 #include <string.h>
2849 #include <openssl/evp.h>
2850 ]], [[
2851 exit(EVP_aes_128_ctr() == NULL ||
2852 EVP_aes_192_cbc() == NULL ||
2853 EVP_aes_256_cbc() == NULL);
2854 ]])],
2855 [
2856 AC_MSG_RESULT([yes])
2857 AC_DEFINE([OPENSSL_HAVE_EVPCTR], [1],
2858 [libcrypto has EVP AES CTR])
2859 ],
2860 [
2861 AC_MSG_RESULT([no])
2862 ]
2863 )
2864
2865 # Check for OpenSSL with EVP_aes_*gcm
2866 AC_MSG_CHECKING([whether OpenSSL has AES GCM via EVP])
2867 AC_LINK_IFELSE(
2868 [AC_LANG_PROGRAM([[
2869 #include <string.h>
2870 #include <openssl/evp.h>
2871 ]], [[
2872 exit(EVP_aes_128_gcm() == NULL ||
2873 EVP_aes_256_gcm() == NULL ||
2874 EVP_CTRL_GCM_SET_IV_FIXED == 0 ||
2875 EVP_CTRL_GCM_IV_GEN == 0 ||
2876 EVP_CTRL_GCM_SET_TAG == 0 ||
2877 EVP_CTRL_GCM_GET_TAG == 0 ||
2878 EVP_CIPHER_CTX_ctrl(NULL, 0, 0, NULL) == 0);
2879 ]])],
2880 [
2881 AC_MSG_RESULT([yes])
2882 AC_DEFINE([OPENSSL_HAVE_EVPGCM], [1],
2883 [libcrypto has EVP AES GCM])
2884 ],
2885 [
2886 AC_MSG_RESULT([no])
2887 unsupported_algorithms="$unsupported_cipers \
Damien Miller679ce882016-07-15 13:44:38 +10002888 aes128-gcm@openssh.com \
2889 aes256-gcm@openssh.com"
Damien Miller72ef7c12015-01-15 02:21:31 +11002890 ]
2891 )
2892
Damien Miller72ef7c12015-01-15 02:21:31 +11002893 AC_MSG_CHECKING([if EVP_DigestUpdate returns an int])
2894 AC_LINK_IFELSE(
2895 [AC_LANG_PROGRAM([[
2896 #include <string.h>
2897 #include <openssl/evp.h>
2898 ]], [[
2899 if(EVP_DigestUpdate(NULL, NULL,0))
2900 exit(0);
2901 ]])],
2902 [
2903 AC_MSG_RESULT([yes])
2904 ],
2905 [
2906 AC_MSG_RESULT([no])
2907 AC_DEFINE([OPENSSL_EVP_DIGESTUPDATE_VOID], [1],
2908 [Define if EVP_DigestUpdate returns void])
2909 ]
2910 )
2911
2912 # Some systems want crypt() from libcrypt, *not* the version in OpenSSL,
2913 # because the system crypt() is more featureful.
2914 if test "x$check_for_libcrypt_before" = "x1"; then
2915 AC_CHECK_LIB([crypt], [crypt])
2916 fi
2917
2918 # Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
2919 # version in OpenSSL.
2920 if test "x$check_for_libcrypt_later" = "x1"; then
2921 AC_CHECK_LIB([crypt], [crypt], [LIBS="$LIBS -lcrypt"])
2922 fi
Damien Miller00797e82015-03-04 05:02:45 +11002923 AC_CHECK_FUNCS([crypt DES_crypt])
Damien Miller72ef7c12015-01-15 02:21:31 +11002924
Darren Tucker11cba2a2019-07-23 21:51:22 +10002925 # Check for SHA256, SHA384 and SHA512 support in OpenSSL
2926 AC_CHECK_FUNCS([EVP_sha256 EVP_sha384 EVP_sha512])
2927
Damien Miller72ef7c12015-01-15 02:21:31 +11002928 # Check complete ECC support in OpenSSL
2929 AC_MSG_CHECKING([whether OpenSSL has NID_X9_62_prime256v1])
2930 AC_LINK_IFELSE(
2931 [AC_LANG_PROGRAM([[
2932 #include <openssl/ec.h>
2933 #include <openssl/ecdh.h>
2934 #include <openssl/ecdsa.h>
2935 #include <openssl/evp.h>
2936 #include <openssl/objects.h>
2937 #include <openssl/opensslv.h>
Damien Miller72ef7c12015-01-15 02:21:31 +11002938 ]], [[
2939 EC_KEY *e = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1);
2940 const EVP_MD *m = EVP_sha256(); /* We need this too */
Darren Tucker37bcef52013-11-09 18:39:25 +11002941 ]])],
2942 [ AC_MSG_RESULT([yes])
Damien Miller72ef7c12015-01-15 02:21:31 +11002943 enable_nistp256=1 ],
2944 [ AC_MSG_RESULT([no]) ]
2945 )
Darren Tucker37bcef52013-11-09 18:39:25 +11002946
Damien Miller72ef7c12015-01-15 02:21:31 +11002947 AC_MSG_CHECKING([whether OpenSSL has NID_secp384r1])
2948 AC_LINK_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>
Damien Miller72ef7c12015-01-15 02:21:31 +11002956 ]], [[
2957 EC_KEY *e = EC_KEY_new_by_curve_name(NID_secp384r1);
2958 const EVP_MD *m = EVP_sha384(); /* We need this too */
2959 ]])],
2960 [ AC_MSG_RESULT([yes])
2961 enable_nistp384=1 ],
2962 [ AC_MSG_RESULT([no]) ]
2963 )
Darren Tucker37bcef52013-11-09 18:39:25 +11002964
Damien Miller72ef7c12015-01-15 02:21:31 +11002965 AC_MSG_CHECKING([whether OpenSSL has NID_secp521r1])
2966 AC_LINK_IFELSE(
2967 [AC_LANG_PROGRAM([[
2968 #include <openssl/ec.h>
2969 #include <openssl/ecdh.h>
2970 #include <openssl/ecdsa.h>
2971 #include <openssl/evp.h>
2972 #include <openssl/objects.h>
2973 #include <openssl/opensslv.h>
Damien Miller72ef7c12015-01-15 02:21:31 +11002974 ]], [[
2975 EC_KEY *e = EC_KEY_new_by_curve_name(NID_secp521r1);
2976 const EVP_MD *m = EVP_sha512(); /* We need this too */
2977 ]])],
2978 [ AC_MSG_RESULT([yes])
2979 AC_MSG_CHECKING([if OpenSSL's NID_secp521r1 is functional])
2980 AC_RUN_IFELSE(
2981 [AC_LANG_PROGRAM([[
2982 #include <openssl/ec.h>
2983 #include <openssl/ecdh.h>
2984 #include <openssl/ecdsa.h>
2985 #include <openssl/evp.h>
2986 #include <openssl/objects.h>
2987 #include <openssl/opensslv.h>
2988 ]],[[
2989 EC_KEY *e = EC_KEY_new_by_curve_name(NID_secp521r1);
2990 const EVP_MD *m = EVP_sha512(); /* We need this too */
2991 exit(e == NULL || m == NULL);
2992 ]])],
2993 [ AC_MSG_RESULT([yes])
2994 enable_nistp521=1 ],
2995 [ AC_MSG_RESULT([no]) ],
2996 [ AC_MSG_WARN([cross-compiling: assuming yes])
2997 enable_nistp521=1 ]
2998 )],
2999 AC_MSG_RESULT([no])
3000 )
Darren Tucker37bcef52013-11-09 18:39:25 +11003001
Damien Miller72ef7c12015-01-15 02:21:31 +11003002 COMMENT_OUT_ECC="#no ecc#"
3003 TEST_SSH_ECC=no
3004
3005 if test x$enable_nistp256 = x1 || test x$enable_nistp384 = x1 || \
3006 test x$enable_nistp521 = x1; then
3007 AC_DEFINE(OPENSSL_HAS_ECC, [1], [OpenSSL has ECC])
Damien Millere2cb4452019-01-21 11:32:28 +11003008 AC_CHECK_FUNCS([EC_KEY_METHOD_new])
Darren Tuckerf5cc5812019-11-02 16:39:38 +11003009 openssl_ecc=yes
3010 else
3011 openssl_ecc=no
Damien Miller72ef7c12015-01-15 02:21:31 +11003012 fi
3013 if test x$enable_nistp256 = x1; then
3014 AC_DEFINE([OPENSSL_HAS_NISTP256], [1],
3015 [libcrypto has NID_X9_62_prime256v1])
3016 TEST_SSH_ECC=yes
3017 COMMENT_OUT_ECC=""
3018 else
Damien Miller679ce882016-07-15 13:44:38 +10003019 unsupported_algorithms="$unsupported_algorithms \
3020 ecdsa-sha2-nistp256 \
3021 ecdh-sha2-nistp256 \
3022 ecdsa-sha2-nistp256-cert-v01@openssh.com"
Damien Miller72ef7c12015-01-15 02:21:31 +11003023 fi
3024 if test x$enable_nistp384 = x1; then
3025 AC_DEFINE([OPENSSL_HAS_NISTP384], [1], [libcrypto has NID_secp384r1])
3026 TEST_SSH_ECC=yes
3027 COMMENT_OUT_ECC=""
3028 else
Damien Miller679ce882016-07-15 13:44:38 +10003029 unsupported_algorithms="$unsupported_algorithms \
3030 ecdsa-sha2-nistp384 \
3031 ecdh-sha2-nistp384 \
3032 ecdsa-sha2-nistp384-cert-v01@openssh.com"
Damien Miller72ef7c12015-01-15 02:21:31 +11003033 fi
3034 if test x$enable_nistp521 = x1; then
3035 AC_DEFINE([OPENSSL_HAS_NISTP521], [1], [libcrypto has NID_secp521r1])
3036 TEST_SSH_ECC=yes
3037 COMMENT_OUT_ECC=""
3038 else
Damien Miller679ce882016-07-15 13:44:38 +10003039 unsupported_algorithms="$unsupported_algorithms \
3040 ecdh-sha2-nistp521 \
3041 ecdsa-sha2-nistp521 \
3042 ecdsa-sha2-nistp521-cert-v01@openssh.com"
Damien Miller72ef7c12015-01-15 02:21:31 +11003043 fi
3044
3045 AC_SUBST([TEST_SSH_ECC])
3046 AC_SUBST([COMMENT_OUT_ECC])
3047else
3048 AC_CHECK_LIB([crypt], [crypt], [LIBS="$LIBS -lcrypt"])
Damien Miller00797e82015-03-04 05:02:45 +11003049 AC_CHECK_FUNCS([crypt])
Damien Miller72ef7c12015-01-15 02:21:31 +11003050fi
Damien Miller6af914a2010-09-10 11:39:26 +10003051
Darren Tuckerf5cc5812019-11-02 16:39:38 +11003052# PKCS11/U2F depend on OpenSSL and dlopen().
3053enable_pkcs11=yes
3054enable_sk=yes
3055if test "x$openssl" != "xyes" ; then
3056 enable_pkcs11="disabled; missing libcrypto"
3057 enable_sk="disabled; missing libcrypto"
3058fi
3059if test "x$openssl_ecc" != "xyes" ; then
3060 enable_sk="disabled; OpenSSL has no ECC support"
3061fi
3062if test "x$ac_cv_func_dlopen" != "xyes" ; then
3063 enable_pkcs11="disabled; missing dlopen(3)"
3064 enable_sk="disabled; missing dlopen(3)"
3065fi
3066if test "x$ac_cv_have_decl_RTLD_NOW" != "xyes" ; then
3067 enable_pkcs11="disabled; missing RTLD_NOW"
3068 enable_sk="disabled; missing RTLD_NOW"
3069fi
3070if test ! -z "$disable_pkcs11" ; then
3071 enable_pkcs11="disabled by user"
3072fi
3073if test ! -z "$disable_sk" ; then
3074 enable_sk="disabled by user"
3075fi
3076
3077AC_MSG_CHECKING([whether to enable PKCS11])
3078if test "x$enable_pkcs11" = "xyes" ; then
3079 AC_DEFINE([ENABLE_PKCS11], [], [Enable for PKCS#11 support])
3080fi
3081AC_MSG_RESULT([$enable_pkcs11])
3082
3083AC_MSG_CHECKING([whether to enable U2F])
3084if test "x$enable_sk" = "xyes" ; then
3085 AC_DEFINE([ENABLE_SK], [], [Enable for U2F/FIDO support])
3086fi
3087AC_MSG_RESULT([$enable_sk])
3088
djm@openbsd.org6bff9522019-11-14 21:27:29 +00003089# Now check for built-in security key support.
Damien Miller5c0bc272019-11-15 16:08:00 +11003090if test "x$enable_sk" = "xyes" -a "x$enable_sk_internal" = "xyes" ; then
djm@openbsd.org6bff9522019-11-14 21:27:29 +00003091 AC_PATH_TOOL([PKGCONFIG], [pkg-config], [no])
3092 use_pkgconfig_for_libfido2=
3093 if test "x$PKGCONFIG" != "xno"; then
3094 AC_MSG_CHECKING([if $PKGCONFIG knows about libfido2])
3095 if "$PKGCONFIG" libfido2; then
3096 AC_MSG_RESULT([yes])
3097 use_pkgconfig_for_libfido2=yes
3098 else
3099 AC_MSG_RESULT([no])
3100 fi
3101 fi
3102 if test "x$use_pkgconfig_for_libfido2" = "xyes"; then
3103 LIBFIDO2=`$PKGCONFIG --libs libfido2`
3104 CPPFLAGS="$CPPFLAGS `$PKGCONFIG --cflags libfido2`"
3105 else
3106 LIBFIDO2="-lfido2 -lcbor"
3107 fi
3108 OTHERLIBS=`echo $LIBFIDO2 | sed 's/-lfido2//'`
3109 AC_CHECK_LIB([fido2], [fido_init],
3110 [
djm@openbsd.org6bff9522019-11-14 21:27:29 +00003111 AC_SUBST([LIBFIDO2])
3112 AC_DEFINE([ENABLE_SK_INTERNAL], [],
3113 [Enable for built-in U2F/FIDO support])
3114 enable_sk="built-in"
djm@openbsd.orgd081f012020-03-13 03:17:07 +00003115 ], [ AC_MSG_ERROR([no usable libfido2 found]) ],
djm@openbsd.org6bff9522019-11-14 21:27:29 +00003116 [ $OTHERLIBS ]
3117 )
djm@openbsd.orgd081f012020-03-13 03:17:07 +00003118 AC_CHECK_HEADER([fido.h], [],
3119 AC_MSG_ERROR([missing fido.h from libfido2]))
3120 AC_CHECK_HEADER([fido/credman.h], [],
Darren Tucker0eaca932020-03-14 20:58:46 +11003121 AC_MSG_ERROR([missing fido/credman.h from libfido2]),
3122 [#include <fido.h>]
3123 )
djm@openbsd.org6bff9522019-11-14 21:27:29 +00003124fi
3125
Damien Miller00f9cd22014-07-15 10:41:38 +10003126AC_CHECK_FUNCS([ \
3127 arc4random \
3128 arc4random_buf \
3129 arc4random_stir \
3130 arc4random_uniform \
3131])
3132
Tim Rice99203ec2007-03-26 09:35:28 -07003133saved_LIBS="$LIBS"
Tim Rice648f8762011-01-26 12:38:57 -08003134AC_CHECK_LIB([iaf], [ia_openinfo], [
Tim Rice99203ec2007-03-26 09:35:28 -07003135 LIBS="$LIBS -liaf"
Tim Rice648f8762011-01-26 12:38:57 -08003136 AC_CHECK_FUNCS([set_id], [SSHDLIBS="$SSHDLIBS -liaf"
3137 AC_DEFINE([HAVE_LIBIAF], [1],
Tim Ricee1d93702016-05-31 11:13:22 -07003138 [Define if system has libiaf that supports set_id])
Tim Rice0eeaf122007-09-10 16:24:17 -07003139 ])
Tim Rice99203ec2007-03-26 09:35:28 -07003140])
3141LIBS="$saved_LIBS"
Damien Miller6c21c512002-01-22 21:57:53 +11003142
3143### Configure cryptographic random number support
3144
Damien Miller10479cc2018-04-10 10:19:02 +10003145# Check whether OpenSSL seeds itself
Damien Miller72ef7c12015-01-15 02:21:31 +11003146if test "x$openssl" = "xyes" ; then
3147 AC_MSG_CHECKING([whether OpenSSL's PRNG is internally seeded])
3148 AC_RUN_IFELSE(
3149 [AC_LANG_PROGRAM([[
3150 #include <string.h>
3151 #include <openssl/rand.h>
3152 ]], [[
3153 exit(RAND_status() == 1 ? 0 : 1);
3154 ]])],
3155 [
3156 OPENSSL_SEEDS_ITSELF=yes
3157 AC_MSG_RESULT([yes])
3158 ],
3159 [
3160 AC_MSG_RESULT([no])
3161 ],
3162 [
3163 AC_MSG_WARN([cross compiling: assuming yes])
3164 # This is safe, since we will fatal() at runtime if
3165 # OpenSSL is not seeded correctly.
3166 OPENSSL_SEEDS_ITSELF=yes
3167 ]
3168 )
3169fi
Damien Miller6c21c512002-01-22 21:57:53 +11003170
Damien Millerf22019b2011-05-05 13:48:37 +10003171# PRNGD TCP socket
3172AC_ARG_WITH([prngd-port],
3173 [ --with-prngd-port=PORT read entropy from PRNGD/EGD TCP localhost:PORT],
3174 [
3175 case "$withval" in
3176 no)
3177 withval=""
3178 ;;
3179 [[0-9]]*)
3180 ;;
3181 *)
3182 AC_MSG_ERROR([You must specify a numeric port number for --with-prngd-port])
3183 ;;
3184 esac
3185 if test ! -z "$withval" ; then
3186 PRNGD_PORT="$withval"
3187 AC_DEFINE_UNQUOTED([PRNGD_PORT], [$PRNGD_PORT],
3188 [Port number of PRNGD/EGD random number socket])
3189 fi
3190 ]
3191)
3192
3193# PRNGD Unix domain socket
3194AC_ARG_WITH([prngd-socket],
3195 [ --with-prngd-socket=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
3196 [
3197 case "$withval" in
3198 yes)
3199 withval="/var/run/egd-pool"
3200 ;;
3201 no)
3202 withval=""
3203 ;;
3204 /*)
3205 ;;
3206 *)
3207 AC_MSG_ERROR([You must specify an absolute path to the entropy socket])
3208 ;;
3209 esac
3210
3211 if test ! -z "$withval" ; then
3212 if test ! -z "$PRNGD_PORT" ; then
3213 AC_MSG_ERROR([You may not specify both a PRNGD/EGD port and socket])
3214 fi
3215 if test ! -r "$withval" ; then
3216 AC_MSG_WARN([Entropy socket is not readable])
3217 fi
3218 PRNGD_SOCKET="$withval"
3219 AC_DEFINE_UNQUOTED([PRNGD_SOCKET], ["$PRNGD_SOCKET"],
3220 [Location of PRNGD/EGD random number socket])
3221 fi
3222 ],
3223 [
3224 # Check for existing socket only if we don't have a random device already
3225 if test "x$OPENSSL_SEEDS_ITSELF" != "xyes" ; then
3226 AC_MSG_CHECKING([for PRNGD/EGD socket])
3227 # Insert other locations here
3228 for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do
3229 if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then
3230 PRNGD_SOCKET="$sock"
3231 AC_DEFINE_UNQUOTED([PRNGD_SOCKET], ["$PRNGD_SOCKET"])
3232 break;
3233 fi
3234 done
3235 if test ! -z "$PRNGD_SOCKET" ; then
3236 AC_MSG_RESULT([$PRNGD_SOCKET])
3237 else
3238 AC_MSG_RESULT([not found])
3239 fi
3240 fi
3241 ]
3242)
3243
3244# Which randomness source do we use?
3245if test ! -z "$PRNGD_PORT" ; then
3246 RAND_MSG="PRNGd port $PRNGD_PORT"
3247elif test ! -z "$PRNGD_SOCKET" ; then
3248 RAND_MSG="PRNGd socket $PRNGD_SOCKET"
3249elif test ! -z "$OPENSSL_SEEDS_ITSELF" ; then
3250 AC_DEFINE([OPENSSL_PRNG_ONLY], [1],
Damien Miller72ef7c12015-01-15 02:21:31 +11003251 [Define if you want the OpenSSL internally seeded PRNG only])
Damien Millerf22019b2011-05-05 13:48:37 +10003252 RAND_MSG="OpenSSL internal ONLY"
Damien Miller72ef7c12015-01-15 02:21:31 +11003253elif test "x$openssl" = "xno" ; then
3254 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 +10003255else
3256 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])
3257fi
3258
Darren Tucker3e6bde42006-08-20 20:03:50 +10003259# Check for PAM libs
3260PAM_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08003261AC_ARG_WITH([pam],
Darren Tucker3e6bde42006-08-20 20:03:50 +10003262 [ --with-pam Enable PAM support ],
3263 [
3264 if test "x$withval" != "xno" ; then
3265 if test "x$ac_cv_header_security_pam_appl_h" != "xyes" && \
3266 test "x$ac_cv_header_pam_pam_appl_h" != "xyes" ; then
3267 AC_MSG_ERROR([PAM headers not found])
3268 fi
3269
3270 saved_LIBS="$LIBS"
Tim Rice648f8762011-01-26 12:38:57 -08003271 AC_CHECK_LIB([dl], [dlopen], , )
3272 AC_CHECK_LIB([pam], [pam_set_item], , [AC_MSG_ERROR([*** libpam missing])])
3273 AC_CHECK_FUNCS([pam_getenvlist])
3274 AC_CHECK_FUNCS([pam_putenv])
Darren Tucker3e6bde42006-08-20 20:03:50 +10003275 LIBS="$saved_LIBS"
3276
3277 PAM_MSG="yes"
3278
Darren Tucker20e9f972007-03-25 18:26:01 +10003279 SSHDLIBS="$SSHDLIBS -lpam"
Tim Rice648f8762011-01-26 12:38:57 -08003280 AC_DEFINE([USE_PAM], [1],
Darren Tucker3e6bde42006-08-20 20:03:50 +10003281 [Define if you want to enable PAM support])
Darren Tucker639bbe82006-08-20 20:17:53 +10003282
Darren Tucker3e6bde42006-08-20 20:03:50 +10003283 if test $ac_cv_lib_dl_dlopen = yes; then
Darren Tucker639bbe82006-08-20 20:17:53 +10003284 case "$LIBS" in
3285 *-ldl*)
3286 # libdl already in LIBS
3287 ;;
3288 *)
Darren Tucker20e9f972007-03-25 18:26:01 +10003289 SSHDLIBS="$SSHDLIBS -ldl"
Darren Tucker639bbe82006-08-20 20:17:53 +10003290 ;;
3291 esac
Darren Tucker3e6bde42006-08-20 20:03:50 +10003292 fi
Darren Tucker3e6bde42006-08-20 20:03:50 +10003293 fi
3294 ]
3295)
3296
Damien Miller8bd81e12016-08-16 13:30:56 +10003297AC_ARG_WITH([pam-service],
3298 [ --with-pam-service=name Specify PAM service name ],
3299 [
3300 if test "x$withval" != "xno" && \
3301 test "x$withval" != "xyes" ; then
3302 AC_DEFINE_UNQUOTED([SSHD_PAM_SERVICE],
3303 ["$withval"], [sshd PAM service name])
3304 fi
3305 ]
3306)
3307
Darren Tucker3e6bde42006-08-20 20:03:50 +10003308# Check for older PAM
3309if test "x$PAM_MSG" = "xyes" ; then
3310 # Check PAM strerror arguments (old PAM)
3311 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
Tim Rice648f8762011-01-26 12:38:57 -08003312 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tucker3e6bde42006-08-20 20:03:50 +10003313#include <stdlib.h>
3314#if defined(HAVE_SECURITY_PAM_APPL_H)
3315#include <security/pam_appl.h>
3316#elif defined (HAVE_PAM_PAM_APPL_H)
3317#include <pam/pam_appl.h>
3318#endif
Tim Rice648f8762011-01-26 12:38:57 -08003319 ]], [[
3320(void)pam_strerror((pam_handle_t *)NULL, -1);
3321 ]])], [AC_MSG_RESULT([no])], [
3322 AC_DEFINE([HAVE_OLD_PAM], [1],
Darren Tucker3e6bde42006-08-20 20:03:50 +10003323 [Define if you have an old version of PAM
3324 which takes only one argument to pam_strerror])
Tim Rice648f8762011-01-26 12:38:57 -08003325 AC_MSG_RESULT([yes])
Darren Tucker3e6bde42006-08-20 20:03:50 +10003326 PAM_MSG="yes (old library)"
Damien Miller72ef7c12015-01-15 02:21:31 +11003327
Tim Rice648f8762011-01-26 12:38:57 -08003328 ])
Darren Tucker3e6bde42006-08-20 20:03:50 +10003329fi
Damien Miller6c21c512002-01-22 21:57:53 +11003330
Damien Miller6482d902014-05-27 14:34:42 +10003331case "$host" in
3332*-*-cygwin*)
3333 SSH_PRIVSEP_USER=CYGWIN_SSH_PRIVSEP_USER
3334 ;;
3335*)
3336 SSH_PRIVSEP_USER=sshd
3337 ;;
3338esac
Tim Rice648f8762011-01-26 12:38:57 -08003339AC_ARG_WITH([privsep-user],
Kevin Stevesc81e1292002-05-13 03:51:40 +00003340 [ --with-privsep-user=user Specify non-privileged user for privilege separation],
Kevin Steves7ff91122002-04-07 19:22:54 +00003341 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003342 if test -n "$withval" && test "x$withval" != "xno" && \
3343 test "x${withval}" != "xyes"; then
Damien Millerd3f6ad22002-06-25 10:24:47 +10003344 SSH_PRIVSEP_USER=$withval
Kevin Steves7ff91122002-04-07 19:22:54 +00003345 fi
Tim Riceeae17cc2005-03-17 16:52:20 -08003346 ]
Kevin Steves7ff91122002-04-07 19:22:54 +00003347)
Damien Miller6482d902014-05-27 14:34:42 +10003348if test "x$SSH_PRIVSEP_USER" = "xCYGWIN_SSH_PRIVSEP_USER" ; then
3349 AC_DEFINE_UNQUOTED([SSH_PRIVSEP_USER], [CYGWIN_SSH_PRIVSEP_USER],
3350 [Cygwin function to fetch non-privileged user for privilege separation])
3351else
3352 AC_DEFINE_UNQUOTED([SSH_PRIVSEP_USER], ["$SSH_PRIVSEP_USER"],
3353 [non-privileged user for privilege separation])
3354fi
Tim Rice648f8762011-01-26 12:38:57 -08003355AC_SUBST([SSH_PRIVSEP_USER])
Kevin Steves7ff91122002-04-07 19:22:54 +00003356
Damien Miller91f40d82013-02-22 11:37:00 +11003357if test "x$have_linux_no_new_privs" = "x1" ; then
3358AC_CHECK_DECL([SECCOMP_MODE_FILTER], [have_seccomp_filter=1], , [
3359 #include <sys/types.h>
3360 #include <linux/seccomp.h>
3361])
3362fi
3363if test "x$have_seccomp_filter" = "x1" ; then
3364AC_MSG_CHECKING([kernel for seccomp_filter support])
3365AC_LINK_IFELSE([AC_LANG_PROGRAM([[
3366 #include <errno.h>
3367 #include <elf.h>
3368 #include <linux/audit.h>
3369 #include <linux/seccomp.h>
3370 #include <stdlib.h>
3371 #include <sys/prctl.h>
3372 ]],
3373 [[ int i = $seccomp_audit_arch;
3374 errno = 0;
3375 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, NULL, 0, 0);
3376 exit(errno == EFAULT ? 0 : 1); ]])],
3377 [ AC_MSG_RESULT([yes]) ], [
3378 AC_MSG_RESULT([no])
3379 # Disable seccomp filter as a target
3380 have_seccomp_filter=0
3381 ]
3382)
3383fi
3384
Damien Miller69ff1df2011-06-23 08:30:03 +10003385# Decide which sandbox style to use
3386sandbox_arg=""
3387AC_ARG_WITH([sandbox],
deraadt@openbsd.org2539dce2015-10-09 01:37:08 +00003388 [ --with-sandbox=style Specify privilege separation sandbox (no, capsicum, darwin, rlimit, seccomp_filter, systrace, pledge)],
Damien Miller69ff1df2011-06-23 08:30:03 +10003389 [
3390 if test "x$withval" = "xyes" ; then
3391 sandbox_arg=""
3392 else
3393 sandbox_arg="$withval"
3394 fi
3395 ]
3396)
Darren Tucker60395f92012-07-03 14:31:18 +10003397
3398# Some platforms (seems to be the ones that have a kernel poll(2)-type
3399# function with which they implement select(2)) use an extra file descriptor
3400# when calling select(2), which means we can't use the rlimit sandbox.
3401AC_MSG_CHECKING([if select works with descriptor rlimit])
3402AC_RUN_IFELSE(
3403 [AC_LANG_PROGRAM([[
3404#include <sys/types.h>
3405#ifdef HAVE_SYS_TIME_H
3406# include <sys/time.h>
3407#endif
3408#include <sys/resource.h>
3409#ifdef HAVE_SYS_SELECT_H
3410# include <sys/select.h>
3411#endif
3412#include <errno.h>
3413#include <fcntl.h>
3414#include <stdlib.h>
3415 ]],[[
3416 struct rlimit rl_zero;
3417 int fd, r;
3418 fd_set fds;
Damien Millere4f43472013-03-08 12:14:22 +11003419 struct timeval tv;
Darren Tucker60395f92012-07-03 14:31:18 +10003420
3421 fd = open("/dev/null", O_RDONLY);
3422 FD_ZERO(&fds);
3423 FD_SET(fd, &fds);
3424 rl_zero.rlim_cur = rl_zero.rlim_max = 0;
3425 setrlimit(RLIMIT_FSIZE, &rl_zero);
3426 setrlimit(RLIMIT_NOFILE, &rl_zero);
Damien Millere4f43472013-03-08 12:14:22 +11003427 tv.tv_sec = 1;
3428 tv.tv_usec = 0;
3429 r = select(fd+1, &fds, NULL, NULL, &tv);
Darren Tucker60395f92012-07-03 14:31:18 +10003430 exit (r == -1 ? 1 : 0);
3431 ]])],
3432 [AC_MSG_RESULT([yes])
3433 select_works_with_rlimit=yes],
3434 [AC_MSG_RESULT([no])
3435 select_works_with_rlimit=no],
Mike Frysingerdcc714c2017-05-24 23:21:19 -04003436 [AC_MSG_WARN([cross compiling: assuming yes])
3437 select_works_with_rlimit=yes]
Darren Tucker60395f92012-07-03 14:31:18 +10003438)
3439
Darren Tuckerff008de2013-03-06 17:48:48 +11003440AC_MSG_CHECKING([if setrlimit(RLIMIT_NOFILE,{0,0}) works])
3441AC_RUN_IFELSE(
3442 [AC_LANG_PROGRAM([[
3443#include <sys/types.h>
3444#ifdef HAVE_SYS_TIME_H
3445# include <sys/time.h>
3446#endif
3447#include <sys/resource.h>
3448#include <errno.h>
3449#include <stdlib.h>
3450 ]],[[
3451 struct rlimit rl_zero;
Darren Tucker34e87fb2019-04-30 12:27:57 +10003452 int r;
Darren Tuckerff008de2013-03-06 17:48:48 +11003453
3454 rl_zero.rlim_cur = rl_zero.rlim_max = 0;
3455 r = setrlimit(RLIMIT_NOFILE, &rl_zero);
3456 exit (r == -1 ? 1 : 0);
3457 ]])],
3458 [AC_MSG_RESULT([yes])
3459 rlimit_nofile_zero_works=yes],
3460 [AC_MSG_RESULT([no])
3461 rlimit_nofile_zero_works=no],
Mike Frysingerdcc714c2017-05-24 23:21:19 -04003462 [AC_MSG_WARN([cross compiling: assuming yes])
3463 rlimit_nofile_zero_works=yes]
Darren Tuckerff008de2013-03-06 17:48:48 +11003464)
3465
Darren Tuckerd545a4b2012-07-03 22:48:31 +10003466AC_MSG_CHECKING([if setrlimit RLIMIT_FSIZE works])
3467AC_RUN_IFELSE(
3468 [AC_LANG_PROGRAM([[
3469#include <sys/types.h>
3470#include <sys/resource.h>
3471#include <stdlib.h>
3472 ]],[[
3473 struct rlimit rl_zero;
3474
3475 rl_zero.rlim_cur = rl_zero.rlim_max = 0;
3476 exit(setrlimit(RLIMIT_FSIZE, &rl_zero) != 0);
3477 ]])],
3478 [AC_MSG_RESULT([yes])],
3479 [AC_MSG_RESULT([no])
3480 AC_DEFINE(SANDBOX_SKIP_RLIMIT_FSIZE, 1,
3481 [setrlimit RLIMIT_FSIZE works])],
3482 [AC_MSG_WARN([cross compiling: assuming yes])]
3483)
3484
deraadt@openbsd.org2539dce2015-10-09 01:37:08 +00003485if test "x$sandbox_arg" = "xpledge" || \
3486 ( test -z "$sandbox_arg" && test "x$ac_cv_func_pledge" = "xyes" ) ; then
3487 test "x$ac_cv_func_pledge" != "xyes" && \
3488 AC_MSG_ERROR([pledge sandbox requires pledge(2) support])
3489 SANDBOX_STYLE="pledge"
Damien Millerfafe1d82015-10-14 09:22:15 -07003490 AC_DEFINE([SANDBOX_PLEDGE], [1], [Sandbox using pledge(2)])
Damien Miller9846a2f2015-10-08 04:30:48 +11003491elif test "x$sandbox_arg" = "xsystrace" || \
Damien Miller69ff1df2011-06-23 08:30:03 +10003492 ( test -z "$sandbox_arg" && test "x$have_systr_policy_kill" = "x1" ) ; then
Damien Miller1a91c0f2011-08-17 11:59:25 +10003493 test "x$have_systr_policy_kill" != "x1" && \
3494 AC_MSG_ERROR([systrace sandbox requires systrace headers and SYSTR_POLICY_KILL support])
Damien Miller69ff1df2011-06-23 08:30:03 +10003495 SANDBOX_STYLE="systrace"
3496 AC_DEFINE([SANDBOX_SYSTRACE], [1], [Sandbox using systrace(4)])
Damien Millercd5e52e2011-06-27 07:18:18 +10003497elif test "x$sandbox_arg" = "xdarwin" || \
3498 ( test -z "$sandbox_arg" && test "x$ac_cv_func_sandbox_init" = "xyes" && \
3499 test "x$ac_cv_header_sandbox_h" = "xyes") ; then
Damien Miller1a91c0f2011-08-17 11:59:25 +10003500 test "x$ac_cv_func_sandbox_init" != "xyes" -o \
3501 "x$ac_cv_header_sandbox_h" != "xyes" && \
3502 AC_MSG_ERROR([Darwin seatbelt sandbox requires sandbox.h and sandbox_init function])
Damien Millercd5e52e2011-06-27 07:18:18 +10003503 SANDBOX_STYLE="darwin"
3504 AC_DEFINE([SANDBOX_DARWIN], [1], [Sandbox using Darwin sandbox_init(3)])
Damien Millere0956e32012-04-04 11:27:54 +10003505elif test "x$sandbox_arg" = "xseccomp_filter" || \
3506 ( test -z "$sandbox_arg" && \
Darren Tuckerd0494fd2012-05-19 14:25:39 +10003507 test "x$have_seccomp_filter" = "x1" && \
Damien Miller91f40d82013-02-22 11:37:00 +11003508 test "x$ac_cv_header_elf_h" = "xyes" && \
Damien Millere0956e32012-04-04 11:27:54 +10003509 test "x$ac_cv_header_linux_audit_h" = "xyes" && \
Damien Miller91f40d82013-02-22 11:37:00 +11003510 test "x$ac_cv_header_linux_filter_h" = "xyes" && \
3511 test "x$seccomp_audit_arch" != "x" && \
Damien Millere0956e32012-04-04 11:27:54 +10003512 test "x$have_linux_no_new_privs" = "x1" && \
3513 test "x$ac_cv_func_prctl" = "xyes" ) ; then
Damien Miller91f40d82013-02-22 11:37:00 +11003514 test "x$seccomp_audit_arch" = "x" && \
Damien Millere0956e32012-04-04 11:27:54 +10003515 AC_MSG_ERROR([seccomp_filter sandbox not supported on $host])
3516 test "x$have_linux_no_new_privs" != "x1" && \
3517 AC_MSG_ERROR([seccomp_filter sandbox requires PR_SET_NO_NEW_PRIVS])
3518 test "x$have_seccomp_filter" != "x1" && \
3519 AC_MSG_ERROR([seccomp_filter sandbox requires seccomp headers])
3520 test "x$ac_cv_func_prctl" != "xyes" && \
3521 AC_MSG_ERROR([seccomp_filter sandbox requires prctl function])
3522 SANDBOX_STYLE="seccomp_filter"
3523 AC_DEFINE([SANDBOX_SECCOMP_FILTER], [1], [Sandbox using seccomp filter])
Damien Millerf62ecef2014-01-25 12:34:38 +11003524elif test "x$sandbox_arg" = "xcapsicum" || \
3525 ( test -z "$sandbox_arg" && \
Darren Tuckerdd9d9b32017-08-28 16:48:27 +10003526 test "x$ac_cv_header_sys_capsicum_h" = "xyes" && \
Damien Miller603b8f42014-01-25 13:16:59 +11003527 test "x$ac_cv_func_cap_rights_limit" = "xyes") ; then
Darren Tuckerdd9d9b32017-08-28 16:48:27 +10003528 test "x$ac_cv_header_sys_capsicum_h" != "xyes" && \
3529 AC_MSG_ERROR([capsicum sandbox requires sys/capsicum.h header])
Damien Miller603b8f42014-01-25 13:16:59 +11003530 test "x$ac_cv_func_cap_rights_limit" != "xyes" && \
Damien Millerc96d8532014-01-25 13:12:28 +11003531 AC_MSG_ERROR([capsicum sandbox requires cap_rights_limit function])
Damien Millerf62ecef2014-01-25 12:34:38 +11003532 SANDBOX_STYLE="capsicum"
3533 AC_DEFINE([SANDBOX_CAPSICUM], [1], [Sandbox using capsicum])
Damien Miller69ff1df2011-06-23 08:30:03 +10003534elif test "x$sandbox_arg" = "xrlimit" || \
Darren Tucker60395f92012-07-03 14:31:18 +10003535 ( test -z "$sandbox_arg" && test "x$ac_cv_func_setrlimit" = "xyes" && \
Darren Tuckerff008de2013-03-06 17:48:48 +11003536 test "x$select_works_with_rlimit" = "xyes" && \
3537 test "x$rlimit_nofile_zero_works" = "xyes" ) ; then
Damien Miller1a91c0f2011-08-17 11:59:25 +10003538 test "x$ac_cv_func_setrlimit" != "xyes" && \
3539 AC_MSG_ERROR([rlimit sandbox requires setrlimit function])
Darren Tucker60395f92012-07-03 14:31:18 +10003540 test "x$select_works_with_rlimit" != "xyes" && \
3541 AC_MSG_ERROR([rlimit sandbox requires select to work with rlimit])
Damien Miller69ff1df2011-06-23 08:30:03 +10003542 SANDBOX_STYLE="rlimit"
3543 AC_DEFINE([SANDBOX_RLIMIT], [1], [Sandbox using setrlimit(2)])
Damien Miller4626cba2016-01-08 14:24:56 +11003544elif test "x$sandbox_arg" = "xsolaris" || \
3545 ( test -z "$sandbox_arg" && test "x$SOLARIS_PRIVS" = "xyes" ) ; then
3546 SANDBOX_STYLE="solaris"
3547 AC_DEFINE([SANDBOX_SOLARIS], [1], [Sandbox using Solaris/Illumos privileges])
Damien Miller69ff1df2011-06-23 08:30:03 +10003548elif test -z "$sandbox_arg" || test "x$sandbox_arg" = "xno" || \
3549 test "x$sandbox_arg" = "xnone" || test "x$sandbox_arg" = "xnull" ; then
3550 SANDBOX_STYLE="none"
3551 AC_DEFINE([SANDBOX_NULL], [1], [no privsep sandboxing])
3552else
Tim Ricea6e60612011-08-17 21:48:22 -07003553 AC_MSG_ERROR([unsupported --with-sandbox])
Damien Miller69ff1df2011-06-23 08:30:03 +10003554fi
3555
Ben Lindstromb5628642000-10-18 00:02:25 +00003556# Cheap hack to ensure NEWS-OS libraries are arranged right.
3557if test ! -z "$SONY" ; then
3558 LIBS="$LIBS -liberty";
3559fi
3560
Damien Miller57f39152005-11-24 19:58:19 +11003561# Check for long long datatypes
3562AC_CHECK_TYPES([long long, unsigned long long, long double])
3563
3564# Check datatype sizes
Dag-Erling Smørgravd0153c72018-10-09 23:03:40 +02003565AC_CHECK_SIZEOF([short int])
3566AC_CHECK_SIZEOF([int])
3567AC_CHECK_SIZEOF([long int])
3568AC_CHECK_SIZEOF([long long int])
Damien Millerc6398ef1999-11-20 12:18:40 +11003569
Damien Millerfa2bb692002-04-23 23:22:25 +10003570# Sanity check long long for some platforms (AIX)
3571if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then
3572 ac_cv_sizeof_long_long_int=0
3573fi
3574
Darren Tucker537f1ed2005-10-25 18:38:33 +10003575# compute LLONG_MIN and LLONG_MAX if we don't know them.
3576if test -z "$have_llong_max"; then
3577 AC_MSG_CHECKING([for max value of long long])
3578 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08003579 [AC_LANG_PROGRAM([[
Darren Tucker537f1ed2005-10-25 18:38:33 +10003580#include <stdio.h>
3581/* Why is this so damn hard? */
3582#ifdef __GNUC__
3583# undef __GNUC__
3584#endif
3585#define __USE_ISOC99
3586#include <limits.h>
3587#define DATA "conftest.llminmax"
Darren Tuckerd1450db2006-03-13 19:06:51 +11003588#define my_abs(a) ((a) < 0 ? ((a) * -1) : (a))
3589
3590/*
3591 * printf in libc on some platforms (eg old Tru64) does not understand %lld so
3592 * we do this the hard way.
3593 */
3594static int
3595fprint_ll(FILE *f, long long n)
3596{
3597 unsigned int i;
3598 int l[sizeof(long long) * 8];
3599
3600 if (n < 0)
3601 if (fprintf(f, "-") < 0)
3602 return -1;
3603 for (i = 0; n != 0; i++) {
3604 l[i] = my_abs(n % 10);
3605 n /= 10;
3606 }
3607 do {
3608 if (fprintf(f, "%d", l[--i]) < 0)
3609 return -1;
3610 } while (i != 0);
3611 if (fprintf(f, " ") < 0)
3612 return -1;
3613 return 0;
3614}
Tim Rice648f8762011-01-26 12:38:57 -08003615 ]], [[
Darren Tucker537f1ed2005-10-25 18:38:33 +10003616 FILE *f;
3617 long long i, llmin, llmax = 0;
3618
3619 if((f = fopen(DATA,"w")) == NULL)
3620 exit(1);
3621
3622#if defined(LLONG_MIN) && defined(LLONG_MAX)
3623 fprintf(stderr, "Using system header for LLONG_MIN and LLONG_MAX\n");
3624 llmin = LLONG_MIN;
3625 llmax = LLONG_MAX;
3626#else
3627 fprintf(stderr, "Calculating LLONG_MIN and LLONG_MAX\n");
3628 /* This will work on one's complement and two's complement */
3629 for (i = 1; i > llmax; i <<= 1, i++)
3630 llmax = i;
3631 llmin = llmax + 1LL; /* wrap */
3632#endif
3633
3634 /* Sanity check */
3635 if (llmin + 1 < llmin || llmin - 1 < llmin || llmax + 1 > llmax
Darren Tuckerd1450db2006-03-13 19:06:51 +11003636 || llmax - 1 > llmax || llmin == llmax || llmin == 0
3637 || llmax == 0 || llmax < LONG_MAX || llmin > LONG_MIN) {
Darren Tucker537f1ed2005-10-25 18:38:33 +10003638 fprintf(f, "unknown unknown\n");
3639 exit(2);
3640 }
3641
Darren Tuckerd1450db2006-03-13 19:06:51 +11003642 if (fprint_ll(f, llmin) < 0)
Darren Tucker537f1ed2005-10-25 18:38:33 +10003643 exit(3);
Darren Tuckerd1450db2006-03-13 19:06:51 +11003644 if (fprint_ll(f, llmax) < 0)
3645 exit(4);
3646 if (fclose(f) < 0)
3647 exit(5);
Darren Tucker537f1ed2005-10-25 18:38:33 +10003648 exit(0);
Darren Tucker537f1ed2005-10-25 18:38:33 +10003649 ]])],
3650 [
3651 llong_min=`$AWK '{print $1}' conftest.llminmax`
3652 llong_max=`$AWK '{print $2}' conftest.llminmax`
3653
Tim Rice648f8762011-01-26 12:38:57 -08003654 AC_MSG_RESULT([$llong_max])
3655 AC_DEFINE_UNQUOTED([LLONG_MAX], [${llong_max}LL],
Darren Tucker537f1ed2005-10-25 18:38:33 +10003656 [max value of long long calculated by configure])
3657 AC_MSG_CHECKING([for min value of long long])
Tim Rice648f8762011-01-26 12:38:57 -08003658 AC_MSG_RESULT([$llong_min])
3659 AC_DEFINE_UNQUOTED([LLONG_MIN], [${llong_min}LL],
Darren Tucker537f1ed2005-10-25 18:38:33 +10003660 [min value of long long calculated by configure])
3661 ],
3662 [
Tim Rice648f8762011-01-26 12:38:57 -08003663 AC_MSG_RESULT([not found])
Darren Tucker537f1ed2005-10-25 18:38:33 +10003664 ],
3665 [
3666 AC_MSG_WARN([cross compiling: not checking])
3667 ]
3668 )
3669fi
3670
Darren Tucker29125962019-10-28 16:06:59 +11003671AC_CHECK_DECLS([UINT32_MAX], , , [[
3672#ifdef HAVE_SYS_LIMITS_H
3673# include <sys/limits.h>
3674#endif
3675#ifdef HAVE_LIMITS_H
3676# include <limits.h>
3677#endif
3678#ifdef HAVE_STDINT_H
3679# include <stdint.h>
3680#endif
3681]])
Darren Tucker537f1ed2005-10-25 18:38:33 +10003682
Damien Millera22ba012000-03-02 23:09:20 +11003683# More checks for data types
Damien Millercaf6dd62000-08-29 11:33:50 +11003684AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
Tim Rice648f8762011-01-26 12:38:57 -08003685 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3686 [[ u_int a; a = 1;]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003687 [ ac_cv_have_u_int="yes" ], [ ac_cv_have_u_int="no"
Tim Rice648f8762011-01-26 12:38:57 -08003688 ])
Damien Millercaf6dd62000-08-29 11:33:50 +11003689])
3690if test "x$ac_cv_have_u_int" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003691 AC_DEFINE([HAVE_U_INT], [1], [define if you have u_int data type])
Damien Millercaf6dd62000-08-29 11:33:50 +11003692 have_u_int=1
3693fi
3694
Damien Miller61e50f12000-05-08 20:49:37 +10003695AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003696 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3697 [[ int8_t a; int16_t b; int32_t c; a = b = c = 1;]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003698 [ ac_cv_have_intxx_t="yes" ], [ ac_cv_have_intxx_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003699 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003700])
3701if test "x$ac_cv_have_intxx_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003702 AC_DEFINE([HAVE_INTXX_T], [1], [define if you have intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003703 have_intxx_t=1
3704fi
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003705
3706if (test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11003707 test "x$ac_cv_header_stdint_h" = "xyes")
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003708then
3709 AC_MSG_CHECKING([for intXX_t types in stdint.h])
Tim Rice648f8762011-01-26 12:38:57 -08003710 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <stdint.h> ]],
3711 [[ int8_t a; int16_t b; int32_t c; a = b = c = 1;]])],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003712 [
Tim Rice648f8762011-01-26 12:38:57 -08003713 AC_DEFINE([HAVE_INTXX_T])
3714 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003715 ], [ AC_MSG_RESULT([no])
Tim Rice648f8762011-01-26 12:38:57 -08003716 ])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003717fi
3718
Damien Miller578783e2000-09-23 14:12:24 +11003719AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003720 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Tim Rice907881e2002-07-18 11:44:50 -07003721#include <sys/types.h>
3722#ifdef HAVE_STDINT_H
3723# include <stdint.h>
3724#endif
3725#include <sys/socket.h>
3726#ifdef HAVE_SYS_BITYPES_H
3727# include <sys/bitypes.h>
3728#endif
Tim Rice648f8762011-01-26 12:38:57 -08003729 ]], [[
3730int64_t a; a = 1;
3731 ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003732 [ ac_cv_have_int64_t="yes" ], [ ac_cv_have_int64_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003733 ])
Damien Miller578783e2000-09-23 14:12:24 +11003734])
3735if test "x$ac_cv_have_int64_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003736 AC_DEFINE([HAVE_INT64_T], [1], [define if you have int64_t data type])
Tim Rice4cec93f2002-02-26 08:40:48 -08003737fi
3738
Damien Miller61e50f12000-05-08 20:49:37 +10003739AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003740 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3741 [[ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003742 [ ac_cv_have_u_intxx_t="yes" ], [ ac_cv_have_u_intxx_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003743 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003744])
3745if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003746 AC_DEFINE([HAVE_U_INTXX_T], [1], [define if you have u_intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003747 have_u_intxx_t=1
3748fi
Damien Millerc6398ef1999-11-20 12:18:40 +11003749
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003750if test -z "$have_u_intxx_t" ; then
3751 AC_MSG_CHECKING([for u_intXX_t types in sys/socket.h])
Tim Rice648f8762011-01-26 12:38:57 -08003752 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/socket.h> ]],
3753 [[ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;]])],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003754 [
Tim Rice648f8762011-01-26 12:38:57 -08003755 AC_DEFINE([HAVE_U_INTXX_T])
3756 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003757 ], [ AC_MSG_RESULT([no])
Tim Rice648f8762011-01-26 12:38:57 -08003758 ])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003759fi
3760
Damien Miller578783e2000-09-23 14:12:24 +11003761AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003762 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3763 [[ u_int64_t a; a = 1;]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003764 [ ac_cv_have_u_int64_t="yes" ], [ ac_cv_have_u_int64_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003765 ])
Damien Miller578783e2000-09-23 14:12:24 +11003766])
3767if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003768 AC_DEFINE([HAVE_U_INT64_T], [1], [define if you have u_int64_t data type])
Damien Miller578783e2000-09-23 14:12:24 +11003769 have_u_int64_t=1
3770fi
3771
Damien Millerc2868192014-01-30 10:21:19 +11003772if (test -z "$have_u_int64_t" && \
3773 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
3774then
Tim Rice4cec93f2002-02-26 08:40:48 -08003775 AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h])
Tim Rice648f8762011-01-26 12:38:57 -08003776 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/bitypes.h> ]],
3777 [[ u_int64_t a; a = 1]])],
Tim Rice4cec93f2002-02-26 08:40:48 -08003778 [
Tim Rice648f8762011-01-26 12:38:57 -08003779 AC_DEFINE([HAVE_U_INT64_T])
3780 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003781 ], [ AC_MSG_RESULT([no])
Tim Rice648f8762011-01-26 12:38:57 -08003782 ])
Tim Rice4cec93f2002-02-26 08:40:48 -08003783fi
3784
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003785if test -z "$have_u_intxx_t" ; then
3786 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003787 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003788#include <sys/types.h>
Tim Rice648f8762011-01-26 12:38:57 -08003789 ]], [[
3790 uint8_t a;
3791 uint16_t b;
3792 uint32_t c;
3793 a = b = c = 1;
3794 ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003795 [ ac_cv_have_uintxx_t="yes" ], [ ac_cv_have_uintxx_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003796 ])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003797 ])
3798 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003799 AC_DEFINE([HAVE_UINTXX_T], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003800 [define if you have uintxx_t data type])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003801 fi
3802fi
3803
Damien Millerc2868192014-01-30 10:21:19 +11003804if (test -z "$have_uintxx_t" && \
3805 test "x$ac_cv_header_stdint_h" = "xyes")
3806then
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003807 AC_MSG_CHECKING([for uintXX_t types in stdint.h])
Tim Rice648f8762011-01-26 12:38:57 -08003808 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <stdint.h> ]],
3809 [[ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;]])],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003810 [
Tim Rice648f8762011-01-26 12:38:57 -08003811 AC_DEFINE([HAVE_UINTXX_T])
3812 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003813 ], [ AC_MSG_RESULT([no])
Tim Rice648f8762011-01-26 12:38:57 -08003814 ])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003815fi
3816
Damien Millerc2868192014-01-30 10:21:19 +11003817if (test -z "$have_uintxx_t" && \
3818 test "x$ac_cv_header_inttypes_h" = "xyes")
3819then
Darren Tucker6d725682014-01-17 19:17:34 +11003820 AC_MSG_CHECKING([for uintXX_t types in inttypes.h])
3821 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <inttypes.h> ]],
3822 [[ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;]])],
3823 [
3824 AC_DEFINE([HAVE_UINTXX_T])
3825 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003826 ], [ AC_MSG_RESULT([no])
Darren Tucker6d725682014-01-17 19:17:34 +11003827 ])
3828fi
3829
Damien Milleredb82922000-06-20 13:25:52 +10003830if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11003831 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
Damien Millerb29ea912000-01-15 14:12:03 +11003832then
3833 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
Tim Rice648f8762011-01-26 12:38:57 -08003834 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller61e50f12000-05-08 20:49:37 +10003835#include <sys/bitypes.h>
Tim Rice648f8762011-01-26 12:38:57 -08003836 ]], [[
Damien Miller70494d12000-04-03 15:57:06 +10003837 int8_t a; int16_t b; int32_t c;
3838 u_int8_t e; u_int16_t f; u_int32_t g;
3839 a = b = c = e = f = g = 1;
Tim Rice648f8762011-01-26 12:38:57 -08003840 ]])],
Damien Millerb29ea912000-01-15 14:12:03 +11003841 [
Tim Rice648f8762011-01-26 12:38:57 -08003842 AC_DEFINE([HAVE_U_INTXX_T])
3843 AC_DEFINE([HAVE_INTXX_T])
3844 AC_MSG_RESULT([yes])
3845 ], [AC_MSG_RESULT([no])
3846 ])
Damien Millerb29ea912000-01-15 14:12:03 +11003847fi
3848
Damien Miller58be7382001-09-15 21:31:54 +10003849
3850AC_CACHE_CHECK([for u_char], ac_cv_have_u_char, [
Tim Rice648f8762011-01-26 12:38:57 -08003851 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3852 [[ u_char foo; foo = 125; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003853 [ ac_cv_have_u_char="yes" ], [ ac_cv_have_u_char="no"
Tim Rice648f8762011-01-26 12:38:57 -08003854 ])
Damien Miller58be7382001-09-15 21:31:54 +10003855])
3856if test "x$ac_cv_have_u_char" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003857 AC_DEFINE([HAVE_U_CHAR], [1], [define if you have u_char data type])
Damien Miller58be7382001-09-15 21:31:54 +10003858fi
3859
Darren Tucker007e3b32013-11-03 18:43:55 +11003860AC_CHECK_TYPES([intmax_t, uintmax_t], , , [
3861#include <sys/types.h>
Darren Tucker638a45b2020-01-26 13:40:51 +11003862#ifdef HAVE_STDINT_H
3863# include <stdint.h>
3864#endif
Darren Tucker007e3b32013-11-03 18:43:55 +11003865])
3866
Tim Rice13aae5e2001-10-21 17:53:58 -07003867TYPE_SOCKLEN_T
Damien Miller74d0d4a1999-12-29 02:24:35 +11003868
Tim Rice648f8762011-01-26 12:38:57 -08003869AC_CHECK_TYPES([sig_atomic_t], , , [#include <signal.h>])
3870AC_CHECK_TYPES([fsblkcnt_t, fsfilcnt_t], , , [
Darren Tucker598eaa62008-06-09 03:32:29 +10003871#include <sys/types.h>
3872#ifdef HAVE_SYS_BITYPES_H
3873#include <sys/bitypes.h>
3874#endif
3875#ifdef HAVE_SYS_STATFS_H
3876#include <sys/statfs.h>
3877#endif
3878#ifdef HAVE_SYS_STATVFS_H
3879#include <sys/statvfs.h>
3880#endif
3881])
Tim Rice4cec93f2002-02-26 08:40:48 -08003882
Darren Tuckerd561b0b2019-10-28 16:09:04 +11003883AC_CHECK_MEMBERS([struct statfs.f_files, struct statfs.f_flags], [], [], [[
Darren Tucker382c18c2019-11-03 00:09:21 +11003884#include <sys/param.h>
Darren Tucker11057562018-02-25 11:22:57 +11003885#include <sys/types.h>
3886#ifdef HAVE_SYS_BITYPES_H
3887#include <sys/bitypes.h>
3888#endif
3889#ifdef HAVE_SYS_STATFS_H
3890#include <sys/statfs.h>
3891#endif
3892#ifdef HAVE_SYS_STATVFS_H
3893#include <sys/statvfs.h>
3894#endif
3895#ifdef HAVE_SYS_VFS_H
3896#include <sys/vfs.h>
3897#endif
Darren Tucker382c18c2019-11-03 00:09:21 +11003898#ifdef HAVE_SYS_MOUNT_H
3899#include <sys/mount.h>
3900#endif
Darren Tucker11057562018-02-25 11:22:57 +11003901]])
3902
3903
Tim Rice648f8762011-01-26 12:38:57 -08003904AC_CHECK_TYPES([in_addr_t, in_port_t], , ,
Damien Miller848b9932005-02-24 12:12:34 +11003905[#include <sys/types.h>
3906#include <netinet/in.h>])
Darren Tuckerd9f88912005-02-20 21:01:48 +11003907
Damien Miller61e50f12000-05-08 20:49:37 +10003908AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003909 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3910 [[ size_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003911 [ ac_cv_have_size_t="yes" ], [ ac_cv_have_size_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003912 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003913])
3914if test "x$ac_cv_have_size_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003915 AC_DEFINE([HAVE_SIZE_T], [1], [define if you have size_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003916fi
Damien Miller95058511999-12-29 10:36:45 +11003917
Damien Miller615f9392000-05-17 22:53:33 +10003918AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003919 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3920 [[ ssize_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003921 [ ac_cv_have_ssize_t="yes" ], [ ac_cv_have_ssize_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003922 ])
Damien Miller615f9392000-05-17 22:53:33 +10003923])
3924if test "x$ac_cv_have_ssize_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003925 AC_DEFINE([HAVE_SSIZE_T], [1], [define if you have ssize_t data type])
Damien Miller615f9392000-05-17 22:53:33 +10003926fi
3927
Ben Lindstrom0d5af602001-01-09 00:50:29 +00003928AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003929 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <time.h> ]],
3930 [[ clock_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003931 [ ac_cv_have_clock_t="yes" ], [ ac_cv_have_clock_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003932 ])
Ben Lindstrom0d5af602001-01-09 00:50:29 +00003933])
3934if test "x$ac_cv_have_clock_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003935 AC_DEFINE([HAVE_CLOCK_T], [1], [define if you have clock_t data type])
Ben Lindstrom0d5af602001-01-09 00:50:29 +00003936fi
3937
Damien Millerb54b40e2000-06-23 08:23:34 +10003938AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003939 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Millerb54b40e2000-06-23 08:23:34 +10003940#include <sys/types.h>
3941#include <sys/socket.h>
Tim Rice648f8762011-01-26 12:38:57 -08003942 ]], [[ sa_family_t foo; foo = 1235; ]])],
3943 [ ac_cv_have_sa_family_t="yes" ],
3944 [ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller78315eb2000-09-29 23:01:36 +11003945#include <sys/types.h>
3946#include <sys/socket.h>
3947#include <netinet/in.h>
Tim Rice648f8762011-01-26 12:38:57 -08003948 ]], [[ sa_family_t foo; foo = 1235; ]])],
Damien Miller78315eb2000-09-29 23:01:36 +11003949 [ ac_cv_have_sa_family_t="yes" ],
Damien Millerb54b40e2000-06-23 08:23:34 +10003950 [ ac_cv_have_sa_family_t="no" ]
3951 )
Tim Rice648f8762011-01-26 12:38:57 -08003952 ])
Damien Millerb54b40e2000-06-23 08:23:34 +10003953])
3954if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003955 AC_DEFINE([HAVE_SA_FAMILY_T], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003956 [define if you have sa_family_t data type])
Damien Millerb54b40e2000-06-23 08:23:34 +10003957fi
3958
Damien Miller0f91b4e2000-06-18 15:43:25 +10003959AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003960 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3961 [[ pid_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003962 [ ac_cv_have_pid_t="yes" ], [ ac_cv_have_pid_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003963 ])
Damien Miller0f91b4e2000-06-18 15:43:25 +10003964])
3965if test "x$ac_cv_have_pid_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003966 AC_DEFINE([HAVE_PID_T], [1], [define if you have pid_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10003967fi
3968
3969AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003970 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3971 [[ mode_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003972 [ ac_cv_have_mode_t="yes" ], [ ac_cv_have_mode_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003973 ])
Damien Miller0f91b4e2000-06-18 15:43:25 +10003974])
3975if test "x$ac_cv_have_mode_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003976 AC_DEFINE([HAVE_MODE_T], [1], [define if you have mode_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10003977fi
3978
Damien Miller61e50f12000-05-08 20:49:37 +10003979
3980AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
Tim Rice648f8762011-01-26 12:38:57 -08003981 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller81171112000-04-23 11:14:01 +10003982#include <sys/types.h>
3983#include <sys/socket.h>
Tim Rice648f8762011-01-26 12:38:57 -08003984 ]], [[ struct sockaddr_storage s; ]])],
3985 [ ac_cv_have_struct_sockaddr_storage="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07003986 [ ac_cv_have_struct_sockaddr_storage="no"
Tim Rice648f8762011-01-26 12:38:57 -08003987 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003988])
3989if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003990 AC_DEFINE([HAVE_STRUCT_SOCKADDR_STORAGE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003991 [define if you have struct sockaddr_storage data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003992fi
Damien Miller34132e52000-01-14 15:45:46 +11003993
Damien Miller61e50f12000-05-08 20:49:37 +10003994AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
Tim Rice648f8762011-01-26 12:38:57 -08003995 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller7b22d652000-06-18 14:07:04 +10003996#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10003997#include <netinet/in.h>
Tim Rice648f8762011-01-26 12:38:57 -08003998 ]], [[ struct sockaddr_in6 s; s.sin6_family = 0; ]])],
3999 [ ac_cv_have_struct_sockaddr_in6="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004000 [ ac_cv_have_struct_sockaddr_in6="no"
Tim Rice648f8762011-01-26 12:38:57 -08004001 ])
Damien Miller61e50f12000-05-08 20:49:37 +10004002])
4003if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004004 AC_DEFINE([HAVE_STRUCT_SOCKADDR_IN6], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004005 [define if you have struct sockaddr_in6 data type])
Damien Miller61e50f12000-05-08 20:49:37 +10004006fi
Damien Miller34132e52000-01-14 15:45:46 +11004007
Damien Miller61e50f12000-05-08 20:49:37 +10004008AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
Tim Rice648f8762011-01-26 12:38:57 -08004009 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller7b22d652000-06-18 14:07:04 +10004010#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10004011#include <netinet/in.h>
Tim Rice648f8762011-01-26 12:38:57 -08004012 ]], [[ struct in6_addr s; s.s6_addr[0] = 0; ]])],
4013 [ ac_cv_have_struct_in6_addr="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004014 [ ac_cv_have_struct_in6_addr="no"
Tim Rice648f8762011-01-26 12:38:57 -08004015 ])
Damien Miller61e50f12000-05-08 20:49:37 +10004016])
4017if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004018 AC_DEFINE([HAVE_STRUCT_IN6_ADDR], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004019 [define if you have struct in6_addr data type])
Tim Rice0f4d2c02008-11-18 21:26:41 -08004020
4021dnl Now check for sin6_scope_id
Tim Rice648f8762011-01-26 12:38:57 -08004022 AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id], , ,
Tim Rice0f4d2c02008-11-18 21:26:41 -08004023 [
4024#ifdef HAVE_SYS_TYPES_H
4025#include <sys/types.h>
4026#endif
4027#include <netinet/in.h>
4028 ])
Damien Miller61e50f12000-05-08 20:49:37 +10004029fi
Damien Miller34132e52000-01-14 15:45:46 +11004030
Damien Miller61e50f12000-05-08 20:49:37 +10004031AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
Tim Rice648f8762011-01-26 12:38:57 -08004032 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller81171112000-04-23 11:14:01 +10004033#include <sys/types.h>
4034#include <sys/socket.h>
4035#include <netdb.h>
Tim Rice648f8762011-01-26 12:38:57 -08004036 ]], [[ struct addrinfo s; s.ai_flags = AI_PASSIVE; ]])],
4037 [ ac_cv_have_struct_addrinfo="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004038 [ ac_cv_have_struct_addrinfo="no"
Tim Rice648f8762011-01-26 12:38:57 -08004039 ])
Damien Miller61e50f12000-05-08 20:49:37 +10004040])
4041if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004042 AC_DEFINE([HAVE_STRUCT_ADDRINFO], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004043 [define if you have struct addrinfo data type])
Damien Miller61e50f12000-05-08 20:49:37 +10004044fi
4045
Darren Tuckere0cedca2020-01-14 09:42:52 +11004046AC_HEADER_TIME
4047
Ben Lindstrom42202bc2001-01-15 02:34:37 +00004048AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
Tim Rice648f8762011-01-26 12:38:57 -08004049 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/time.h> ]],
4050 [[ struct timeval tv; tv.tv_sec = 1;]])],
4051 [ ac_cv_have_struct_timeval="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004052 [ ac_cv_have_struct_timeval="no"
Tim Rice648f8762011-01-26 12:38:57 -08004053 ])
Ben Lindstrom42202bc2001-01-15 02:34:37 +00004054])
4055if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004056 AC_DEFINE([HAVE_STRUCT_TIMEVAL], [1], [define if you have struct timeval])
Ben Lindstrom42202bc2001-01-15 02:34:37 +00004057 have_struct_timeval=1
4058fi
4059
Darren Tuckere0cedca2020-01-14 09:42:52 +11004060AC_CACHE_CHECK([for struct timespec], ac_cv_have_struct_timespec, [
4061 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
4062 #ifdef TIME_WITH_SYS_TIME
4063 # include <sys/time.h>
4064 # include <time.h>
4065 #else
4066 # ifdef HAVE_SYS_TIME_H
4067 # include <sys/time.h>
4068 # else
4069 # include <time.h>
4070 # endif
4071 #endif
4072 ]],
4073 [[ struct timespec ts; ts.tv_sec = 1;]])],
4074 [ ac_cv_have_struct_timespec="yes" ],
4075 [ ac_cv_have_struct_timespec="no"
4076 ])
4077])
4078if test "x$ac_cv_have_struct_timespec" = "xyes" ; then
4079 AC_DEFINE([HAVE_STRUCT_TIMESPEC], [1], [define if you have struct timespec])
4080 have_struct_timespec=1
4081fi
Tim Rice4e4dc562003-03-18 10:21:40 -08004082
Damien Miller10479cc2018-04-10 10:19:02 +10004083# We need int64_t or else certain parts of the compile will fail.
Tim Rice8bb561b2005-03-17 16:23:19 -08004084if test "x$ac_cv_have_int64_t" = "xno" && \
4085 test "x$ac_cv_sizeof_long_int" != "x8" && \
4086 test "x$ac_cv_sizeof_long_long_int" = "x0" ; then
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00004087 echo "OpenSSH requires int64_t support. Contact your vendor or install"
4088 echo "an alternative compiler (I.E., GCC) before continuing."
4089 echo ""
4090 exit 1;
Tim Ricebee3f222001-03-11 17:32:12 -08004091else
4092dnl test snprintf (broken on SCO w/gcc)
Darren Tuckera0c2b392004-09-11 23:26:37 +10004093 AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10004094 [AC_LANG_SOURCE([[
Tim Ricebee3f222001-03-11 17:32:12 -08004095#include <stdio.h>
4096#include <string.h>
4097#ifdef HAVE_SNPRINTF
4098main()
4099{
4100 char buf[50];
4101 char expected_out[50];
4102 int mazsize = 50 ;
4103#if (SIZEOF_LONG_INT == 8)
4104 long int num = 0x7fffffffffffffff;
4105#else
Kevin Steves6482ec82001-07-15 02:09:28 +00004106 long long num = 0x7fffffffffffffffll;
Tim Ricebee3f222001-03-11 17:32:12 -08004107#endif
4108 strcpy(expected_out, "9223372036854775807");
4109 snprintf(buf, mazsize, "%lld", num);
4110 if(strcmp(buf, expected_out) != 0)
Damien Millera8e06ce2003-11-21 23:48:55 +11004111 exit(1);
Tim Ricebee3f222001-03-11 17:32:12 -08004112 exit(0);
4113}
4114#else
4115main() { exit(0); }
4116#endif
Tim Rice648f8762011-01-26 12:38:57 -08004117 ]])], [ true ], [ AC_DEFINE([BROKEN_SNPRINTF]) ],
Darren Tuckera0c2b392004-09-11 23:26:37 +10004118 AC_MSG_WARN([cross compiling: Assuming working snprintf()])
Tim Ricebee3f222001-03-11 17:32:12 -08004119 )
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00004120fi
4121
Damien Miller78315eb2000-09-29 23:01:36 +11004122dnl Checks for structure members
Tim Rice648f8762011-01-26 12:38:57 -08004123OSSH_CHECK_HEADER_FOR_FIELD([ut_host], [utmp.h], [HAVE_HOST_IN_UTMP])
4124OSSH_CHECK_HEADER_FOR_FIELD([ut_host], [utmpx.h], [HAVE_HOST_IN_UTMPX])
4125OSSH_CHECK_HEADER_FOR_FIELD([syslen], [utmpx.h], [HAVE_SYSLEN_IN_UTMPX])
4126OSSH_CHECK_HEADER_FOR_FIELD([ut_pid], [utmp.h], [HAVE_PID_IN_UTMP])
4127OSSH_CHECK_HEADER_FOR_FIELD([ut_type], [utmp.h], [HAVE_TYPE_IN_UTMP])
4128OSSH_CHECK_HEADER_FOR_FIELD([ut_type], [utmpx.h], [HAVE_TYPE_IN_UTMPX])
4129OSSH_CHECK_HEADER_FOR_FIELD([ut_tv], [utmp.h], [HAVE_TV_IN_UTMP])
4130OSSH_CHECK_HEADER_FOR_FIELD([ut_id], [utmp.h], [HAVE_ID_IN_UTMP])
4131OSSH_CHECK_HEADER_FOR_FIELD([ut_id], [utmpx.h], [HAVE_ID_IN_UTMPX])
4132OSSH_CHECK_HEADER_FOR_FIELD([ut_addr], [utmp.h], [HAVE_ADDR_IN_UTMP])
4133OSSH_CHECK_HEADER_FOR_FIELD([ut_addr], [utmpx.h], [HAVE_ADDR_IN_UTMPX])
4134OSSH_CHECK_HEADER_FOR_FIELD([ut_addr_v6], [utmp.h], [HAVE_ADDR_V6_IN_UTMP])
4135OSSH_CHECK_HEADER_FOR_FIELD([ut_addr_v6], [utmpx.h], [HAVE_ADDR_V6_IN_UTMPX])
4136OSSH_CHECK_HEADER_FOR_FIELD([ut_exit], [utmp.h], [HAVE_EXIT_IN_UTMP])
4137OSSH_CHECK_HEADER_FOR_FIELD([ut_time], [utmp.h], [HAVE_TIME_IN_UTMP])
4138OSSH_CHECK_HEADER_FOR_FIELD([ut_time], [utmpx.h], [HAVE_TIME_IN_UTMPX])
4139OSSH_CHECK_HEADER_FOR_FIELD([ut_tv], [utmpx.h], [HAVE_TV_IN_UTMPX])
Tim Rice13aae5e2001-10-21 17:53:58 -07004140
4141AC_CHECK_MEMBERS([struct stat.st_blksize])
Damien Millerbcd14852017-06-10 23:41:25 +10004142AC_CHECK_MEMBERS([struct stat.st_mtim])
4143AC_CHECK_MEMBERS([struct stat.st_mtime])
Damien Miller6332da22013-04-23 14:25:52 +10004144AC_CHECK_MEMBERS([struct passwd.pw_gecos, struct passwd.pw_class,
4145struct passwd.pw_change, struct passwd.pw_expire],
4146[], [], [[
4147#include <sys/types.h>
4148#include <pwd.h>
4149]])
4150
Tim Rice648f8762011-01-26 12:38:57 -08004151AC_CHECK_MEMBER([struct __res_state.retrans], [], [AC_DEFINE([__res_state], [state],
Darren Tucker58e298d2005-11-25 13:14:58 +11004152 [Define if we don't have struct __res_state in resolv.h])],
Damien Miller6332da22013-04-23 14:25:52 +10004153[[
Darren Tucker58e298d2005-11-25 13:14:58 +11004154#include <stdio.h>
4155#if HAVE_SYS_TYPES_H
4156# include <sys/types.h>
4157#endif
4158#include <netinet/in.h>
4159#include <arpa/nameser.h>
4160#include <resolv.h>
Damien Miller6332da22013-04-23 14:25:52 +10004161]])
andre2ff7b5d2000-06-03 14:57:40 +00004162
Damien Miller61e50f12000-05-08 20:49:37 +10004163AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
4164 ac_cv_have_ss_family_in_struct_ss, [
Tim Rice648f8762011-01-26 12:38:57 -08004165 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller81171112000-04-23 11:14:01 +10004166#include <sys/types.h>
4167#include <sys/socket.h>
Tim Rice648f8762011-01-26 12:38:57 -08004168 ]], [[ struct sockaddr_storage s; s.ss_family = 1; ]])],
4169 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
4170 [ ac_cv_have_ss_family_in_struct_ss="no" ])
Damien Miller61e50f12000-05-08 20:49:37 +10004171])
4172if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004173 AC_DEFINE([HAVE_SS_FAMILY_IN_SS], [1], [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10004174fi
4175
Damien Miller61e50f12000-05-08 20:49:37 +10004176AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
4177 ac_cv_have___ss_family_in_struct_ss, [
Tim Rice648f8762011-01-26 12:38:57 -08004178 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller81171112000-04-23 11:14:01 +10004179#include <sys/types.h>
4180#include <sys/socket.h>
Tim Rice648f8762011-01-26 12:38:57 -08004181 ]], [[ struct sockaddr_storage s; s.__ss_family = 1; ]])],
4182 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004183 [ ac_cv_have___ss_family_in_struct_ss="no"
Tim Rice648f8762011-01-26 12:38:57 -08004184 ])
Damien Miller61e50f12000-05-08 20:49:37 +10004185])
4186if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004187 AC_DEFINE([HAVE___SS_FAMILY_IN_SS], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004188 [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10004189fi
Damien Millerbf1c9b21999-12-09 10:16:54 +11004190
Tim Rice28bbb0c2002-05-27 17:37:32 -07004191dnl make sure we're using the real structure members and not defines
Kevin Steves939c9db2002-03-22 17:23:25 +00004192AC_CACHE_CHECK([for msg_accrights field in struct msghdr],
4193 ac_cv_have_accrights_in_msghdr, [
Tim Rice648f8762011-01-26 12:38:57 -08004194 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Tim Riceae49fe62002-04-12 10:26:21 -07004195#include <sys/types.h>
Kevin Steves939c9db2002-03-22 17:23:25 +00004196#include <sys/socket.h>
4197#include <sys/uio.h>
Tim Rice648f8762011-01-26 12:38:57 -08004198 ]], [[
Tim Rice28bbb0c2002-05-27 17:37:32 -07004199#ifdef msg_accrights
Darren Tuckera0c2b392004-09-11 23:26:37 +10004200#error "msg_accrights is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07004201exit(1);
4202#endif
4203struct msghdr m;
4204m.msg_accrights = 0;
4205exit(0);
Tim Rice648f8762011-01-26 12:38:57 -08004206 ]])],
Kevin Steves939c9db2002-03-22 17:23:25 +00004207 [ ac_cv_have_accrights_in_msghdr="yes" ],
4208 [ ac_cv_have_accrights_in_msghdr="no" ]
4209 )
4210])
4211if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004212 AC_DEFINE([HAVE_ACCRIGHTS_IN_MSGHDR], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004213 [Define if your system uses access rights style
4214 file descriptor passing])
Kevin Steves939c9db2002-03-22 17:23:25 +00004215fi
4216
Tim Rice648f8762011-01-26 12:38:57 -08004217AC_MSG_CHECKING([if struct statvfs.f_fsid is integral type])
4218AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckere1a3ddf2012-05-04 11:05:45 +10004219#include <sys/param.h>
Darren Tucker32780622009-06-16 16:11:02 +10004220#include <sys/stat.h>
4221#ifdef HAVE_SYS_TIME_H
4222# include <sys/time.h>
4223#endif
4224#ifdef HAVE_SYS_MOUNT_H
4225#include <sys/mount.h>
4226#endif
4227#ifdef HAVE_SYS_STATVFS_H
4228#include <sys/statvfs.h>
4229#endif
Tim Rice648f8762011-01-26 12:38:57 -08004230 ]], [[ struct statvfs s; s.f_fsid = 0; ]])],
4231 [ AC_MSG_RESULT([yes]) ],
4232 [ AC_MSG_RESULT([no])
Darren Tucker32780622009-06-16 16:11:02 +10004233
Tim Rice648f8762011-01-26 12:38:57 -08004234 AC_MSG_CHECKING([if fsid_t has member val])
4235 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tucker32780622009-06-16 16:11:02 +10004236#include <sys/types.h>
Tim Rice648f8762011-01-26 12:38:57 -08004237#include <sys/statvfs.h>
4238 ]], [[ fsid_t t; t.val[0] = 0; ]])],
4239 [ AC_MSG_RESULT([yes])
4240 AC_DEFINE([FSID_HAS_VAL], [1], [fsid_t has member val]) ],
4241 [ AC_MSG_RESULT([no]) ])
Darren Tucker32780622009-06-16 16:11:02 +10004242
Tim Rice648f8762011-01-26 12:38:57 -08004243 AC_MSG_CHECKING([if f_fsid has member __val])
4244 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tucker32780622009-06-16 16:11:02 +10004245#include <sys/types.h>
Tim Rice648f8762011-01-26 12:38:57 -08004246#include <sys/statvfs.h>
4247 ]], [[ fsid_t t; t.__val[0] = 0; ]])],
4248 [ AC_MSG_RESULT([yes])
4249 AC_DEFINE([FSID_HAS___VAL], [1], [fsid_t has member __val]) ],
4250 [ AC_MSG_RESULT([no]) ])
Darren Tucker32780622009-06-16 16:11:02 +10004251])
Darren Tucker77001382008-06-09 06:17:53 +10004252
Kevin Stevesa44e0352002-04-07 16:18:03 +00004253AC_CACHE_CHECK([for msg_control field in struct msghdr],
4254 ac_cv_have_control_in_msghdr, [
Tim Rice648f8762011-01-26 12:38:57 -08004255 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Tim Riceae49fe62002-04-12 10:26:21 -07004256#include <sys/types.h>
Kevin Stevesa44e0352002-04-07 16:18:03 +00004257#include <sys/socket.h>
4258#include <sys/uio.h>
Tim Rice648f8762011-01-26 12:38:57 -08004259 ]], [[
Tim Rice28bbb0c2002-05-27 17:37:32 -07004260#ifdef msg_control
Darren Tuckera0c2b392004-09-11 23:26:37 +10004261#error "msg_control is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07004262exit(1);
4263#endif
4264struct msghdr m;
4265m.msg_control = 0;
4266exit(0);
Tim Rice648f8762011-01-26 12:38:57 -08004267 ]])],
Kevin Stevesa44e0352002-04-07 16:18:03 +00004268 [ ac_cv_have_control_in_msghdr="yes" ],
4269 [ ac_cv_have_control_in_msghdr="no" ]
4270 )
4271])
4272if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004273 AC_DEFINE([HAVE_CONTROL_IN_MSGHDR], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004274 [Define if your system uses ancillary data style
4275 file descriptor passing])
Kevin Stevesa44e0352002-04-07 16:18:03 +00004276fi
4277
Damien Miller61e50f12000-05-08 20:49:37 +10004278AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
Tim Rice648f8762011-01-26 12:38:57 -08004279 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
4280 [[ extern char *__progname; printf("%s", __progname); ]])],
4281 [ ac_cv_libc_defines___progname="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004282 [ ac_cv_libc_defines___progname="no"
Tim Rice648f8762011-01-26 12:38:57 -08004283 ])
Damien Miller61e50f12000-05-08 20:49:37 +10004284])
4285if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004286 AC_DEFINE([HAVE___PROGNAME], [1], [Define if libc defines __progname])
Damien Miller61e50f12000-05-08 20:49:37 +10004287fi
4288
Kevin Steves4846f4a2002-03-22 18:19:53 +00004289AC_CACHE_CHECK([whether $CC implements __FUNCTION__], ac_cv_cc_implements___FUNCTION__, [
Tim Rice648f8762011-01-26 12:38:57 -08004290 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <stdio.h> ]],
4291 [[ printf("%s", __FUNCTION__); ]])],
4292 [ ac_cv_cc_implements___FUNCTION__="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004293 [ ac_cv_cc_implements___FUNCTION__="no"
Tim Rice648f8762011-01-26 12:38:57 -08004294 ])
Kevin Steves4846f4a2002-03-22 18:19:53 +00004295])
4296if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004297 AC_DEFINE([HAVE___FUNCTION__], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004298 [Define if compiler implements __FUNCTION__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00004299fi
4300
4301AC_CACHE_CHECK([whether $CC implements __func__], ac_cv_cc_implements___func__, [
Tim Rice648f8762011-01-26 12:38:57 -08004302 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <stdio.h> ]],
4303 [[ printf("%s", __func__); ]])],
4304 [ ac_cv_cc_implements___func__="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004305 [ ac_cv_cc_implements___func__="no"
Tim Rice648f8762011-01-26 12:38:57 -08004306 ])
Kevin Steves4846f4a2002-03-22 18:19:53 +00004307])
4308if test "x$ac_cv_cc_implements___func__" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004309 AC_DEFINE([HAVE___func__], [1], [Define if compiler implements __func__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00004310fi
4311
Damien Miller57f39152005-11-24 19:58:19 +11004312AC_CACHE_CHECK([whether va_copy exists], ac_cv_have_va_copy, [
Tim Rice648f8762011-01-26 12:38:57 -08004313 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
4314#include <stdarg.h>
4315va_list x,y;
4316 ]], [[ va_copy(x,y); ]])],
4317 [ ac_cv_have_va_copy="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004318 [ ac_cv_have_va_copy="no"
Tim Rice648f8762011-01-26 12:38:57 -08004319 ])
Damien Miller57f39152005-11-24 19:58:19 +11004320])
4321if test "x$ac_cv_have_va_copy" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004322 AC_DEFINE([HAVE_VA_COPY], [1], [Define if va_copy exists])
Damien Miller57f39152005-11-24 19:58:19 +11004323fi
4324
4325AC_CACHE_CHECK([whether __va_copy exists], ac_cv_have___va_copy, [
Tim Rice648f8762011-01-26 12:38:57 -08004326 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
4327#include <stdarg.h>
4328va_list x,y;
4329 ]], [[ __va_copy(x,y); ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07004330 [ ac_cv_have___va_copy="yes" ], [ ac_cv_have___va_copy="no"
Tim Rice648f8762011-01-26 12:38:57 -08004331 ])
Damien Miller57f39152005-11-24 19:58:19 +11004332])
4333if test "x$ac_cv_have___va_copy" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004334 AC_DEFINE([HAVE___VA_COPY], [1], [Define if __va_copy exists])
Damien Miller57f39152005-11-24 19:58:19 +11004335fi
4336
Damien Miller4f8e6692001-07-14 13:22:53 +10004337AC_CACHE_CHECK([whether getopt has optreset support],
4338 ac_cv_have_getopt_optreset, [
Tim Rice648f8762011-01-26 12:38:57 -08004339 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <getopt.h> ]],
4340 [[ extern int optreset; optreset = 0; ]])],
4341 [ ac_cv_have_getopt_optreset="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004342 [ ac_cv_have_getopt_optreset="no"
Tim Rice648f8762011-01-26 12:38:57 -08004343 ])
Damien Miller4f8e6692001-07-14 13:22:53 +10004344])
4345if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004346 AC_DEFINE([HAVE_GETOPT_OPTRESET], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004347 [Define if your getopt(3) defines and uses optreset])
Damien Miller4f8e6692001-07-14 13:22:53 +10004348fi
Damien Millera22ba012000-03-02 23:09:20 +11004349
Damien Millerecbb26d2000-07-15 14:59:14 +10004350AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
Tim Rice648f8762011-01-26 12:38:57 -08004351 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
4352[[ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);]])],
4353 [ ac_cv_libc_defines_sys_errlist="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004354 [ ac_cv_libc_defines_sys_errlist="no"
Tim Rice648f8762011-01-26 12:38:57 -08004355 ])
Damien Millerecbb26d2000-07-15 14:59:14 +10004356])
4357if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004358 AC_DEFINE([HAVE_SYS_ERRLIST], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004359 [Define if your system defines sys_errlist[]])
Damien Millerecbb26d2000-07-15 14:59:14 +10004360fi
4361
4362
Damien Miller11fa2cc2000-08-16 10:35:58 +10004363AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
Tim Rice648f8762011-01-26 12:38:57 -08004364 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
4365[[ extern int sys_nerr; printf("%i", sys_nerr);]])],
4366 [ ac_cv_libc_defines_sys_nerr="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004367 [ ac_cv_libc_defines_sys_nerr="no"
Tim Rice648f8762011-01-26 12:38:57 -08004368 ])
Damien Miller11fa2cc2000-08-16 10:35:58 +10004369])
4370if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004371 AC_DEFINE([HAVE_SYS_NERR], [1], [Define if your system defines sys_nerr])
Damien Miller11fa2cc2000-08-16 10:35:58 +10004372fi
4373
Darren Tucker5f88d342003-10-15 16:57:57 +10004374# Check libraries needed by DNS fingerprint support
Tim Rice648f8762011-01-26 12:38:57 -08004375AC_SEARCH_LIBS([getrrsetbyname], [resolv],
4376 [AC_DEFINE([HAVE_GETRRSETBYNAME], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004377 [Define if getrrsetbyname() exists])],
Damien Miller7abe09b2003-05-15 10:53:49 +10004378 [
Darren Tucker5f88d342003-10-15 16:57:57 +10004379 # Needed by our getrrsetbyname()
Tim Rice648f8762011-01-26 12:38:57 -08004380 AC_SEARCH_LIBS([res_query], [resolv])
4381 AC_SEARCH_LIBS([dn_expand], [resolv])
4382 AC_MSG_CHECKING([if res_query will link])
4383 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckere02b49a2009-09-11 14:56:08 +10004384#include <sys/types.h>
4385#include <netinet/in.h>
4386#include <arpa/nameser.h>
4387#include <netdb.h>
4388#include <resolv.h>
Tim Rice648f8762011-01-26 12:38:57 -08004389 ]], [[
Darren Tuckere02b49a2009-09-11 14:56:08 +10004390 res_query (0, 0, 0, 0, 0);
Tim Rice648f8762011-01-26 12:38:57 -08004391 ]])],
4392 AC_MSG_RESULT([yes]),
4393 [AC_MSG_RESULT([no])
Darren Tucker8e968a52004-05-13 11:56:16 +10004394 saved_LIBS="$LIBS"
4395 LIBS="$LIBS -lresolv"
Tim Rice648f8762011-01-26 12:38:57 -08004396 AC_MSG_CHECKING([for res_query in -lresolv])
4397 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckere02b49a2009-09-11 14:56:08 +10004398#include <sys/types.h>
4399#include <netinet/in.h>
4400#include <arpa/nameser.h>
4401#include <netdb.h>
Darren Tucker8e968a52004-05-13 11:56:16 +10004402#include <resolv.h>
Tim Rice648f8762011-01-26 12:38:57 -08004403 ]], [[
Darren Tucker8e968a52004-05-13 11:56:16 +10004404 res_query (0, 0, 0, 0, 0);
Tim Rice648f8762011-01-26 12:38:57 -08004405 ]])],
4406 [AC_MSG_RESULT([yes])],
Darren Tucker8e968a52004-05-13 11:56:16 +10004407 [LIBS="$saved_LIBS"
Tim Rice648f8762011-01-26 12:38:57 -08004408 AC_MSG_RESULT([no])])
Darren Tucker8e968a52004-05-13 11:56:16 +10004409 ])
Tim Rice648f8762011-01-26 12:38:57 -08004410 AC_CHECK_FUNCS([_getshort _getlong])
Darren Tuckerd886e1c2005-06-01 18:57:45 +10004411 AC_CHECK_DECLS([_getshort, _getlong], , ,
Tim Ricefcc7ff12005-06-02 20:28:29 -07004412 [#include <sys/types.h>
4413 #include <arpa/nameser.h>])
Tim Rice648f8762011-01-26 12:38:57 -08004414 AC_CHECK_MEMBER([HEADER.ad],
4415 [AC_DEFINE([HAVE_HEADER_AD], [1],
4416 [Define if HEADER.ad exists in arpa/nameser.h])], ,
Darren Tucker5f88d342003-10-15 16:57:57 +10004417 [#include <arpa/nameser.h>])
4418 ])
Damien Miller7abe09b2003-05-15 10:53:49 +10004419
Tim Rice648f8762011-01-26 12:38:57 -08004420AC_MSG_CHECKING([if struct __res_state _res is an extern])
4421AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckercc40d5e2007-04-29 13:58:06 +10004422#include <stdio.h>
4423#if HAVE_SYS_TYPES_H
4424# include <sys/types.h>
4425#endif
4426#include <netinet/in.h>
4427#include <arpa/nameser.h>
4428#include <resolv.h>
4429extern struct __res_state _res;
Darren Tucker7ad8b282015-09-11 13:11:02 +10004430 ]], [[
4431struct __res_state *volatile p = &_res; /* force resolution of _res */
4432return 0;
4433 ]],)],
Tim Rice648f8762011-01-26 12:38:57 -08004434 [AC_MSG_RESULT([yes])
4435 AC_DEFINE([HAVE__RES_EXTERN], [1],
Darren Tuckercc40d5e2007-04-29 13:58:06 +10004436 [Define if you have struct __res_state _res as an extern])
4437 ],
Tim Rice648f8762011-01-26 12:38:57 -08004438 [ AC_MSG_RESULT([no]) ]
Darren Tuckercc40d5e2007-04-29 13:58:06 +10004439)
4440
Damien Miller73b42d22006-04-22 21:26:08 +10004441# Check whether user wants SELinux support
4442SELINUX_MSG="no"
4443LIBSELINUX=""
Tim Rice648f8762011-01-26 12:38:57 -08004444AC_ARG_WITH([selinux],
Damien Miller5b1c8b32008-03-27 12:33:07 +11004445 [ --with-selinux Enable SELinux support],
Damien Miller73b42d22006-04-22 21:26:08 +10004446 [ if test "x$withval" != "xno" ; then
Darren Tucker20e9f972007-03-25 18:26:01 +10004447 save_LIBS="$LIBS"
Tim Rice648f8762011-01-26 12:38:57 -08004448 AC_DEFINE([WITH_SELINUX], [1],
4449 [Define if you want SELinux support.])
Damien Miller73b42d22006-04-22 21:26:08 +10004450 SELINUX_MSG="yes"
4451 AC_CHECK_HEADER([selinux/selinux.h], ,
Tim Rice648f8762011-01-26 12:38:57 -08004452 AC_MSG_ERROR([SELinux support requires selinux.h header]))
4453 AC_CHECK_LIB([selinux], [setexeccon],
Damien Miller1d2bfc42010-02-10 10:19:29 +11004454 [ LIBSELINUX="-lselinux"
4455 LIBS="$LIBS -lselinux"
4456 ],
Tim Rice648f8762011-01-26 12:38:57 -08004457 AC_MSG_ERROR([SELinux support requires libselinux library]))
Damien Miller71adf122011-01-25 12:16:15 +11004458 SSHLIBS="$SSHLIBS $LIBSELINUX"
Darren Tucker20e9f972007-03-25 18:26:01 +10004459 SSHDLIBS="$SSHDLIBS $LIBSELINUX"
Tim Rice648f8762011-01-26 12:38:57 -08004460 AC_CHECK_FUNCS([getseuserbyname get_default_context_with_level])
Darren Tuckeradc947d2006-10-07 09:07:20 +10004461 LIBS="$save_LIBS"
Damien Miller73b42d22006-04-22 21:26:08 +10004462 fi ]
4463)
Tim Rice648f8762011-01-26 12:38:57 -08004464AC_SUBST([SSHLIBS])
4465AC_SUBST([SSHDLIBS])
Damien Miller73b42d22006-04-22 21:26:08 +10004466
Damien Millerfd4c9ee2002-04-13 11:04:40 +10004467# Check whether user wants Kerberos 5 support
Damien Millera8e06ce2003-11-21 23:48:55 +11004468KRB5_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08004469AC_ARG_WITH([kerberos5],
Damien Millera8e06ce2003-11-21 23:48:55 +11004470 [ --with-kerberos5=PATH Enable Kerberos 5 support],
Darren Tucker1d3ca582004-01-22 12:05:34 +11004471 [ if test "x$withval" != "xno" ; then
4472 if test "x$withval" = "xyes" ; then
4473 KRB5ROOT="/usr/local"
4474 else
4475 KRB5ROOT=${withval}
4476 fi
4477
Tim Rice648f8762011-01-26 12:38:57 -08004478 AC_DEFINE([KRB5], [1], [Define if you want Kerberos 5 support])
Darren Tucker1d3ca582004-01-22 12:05:34 +11004479 KRB5_MSG="yes"
4480
Darren Tucker4089fc12016-12-08 12:57:24 +11004481 AC_PATH_TOOL([KRB5CONF], [krb5-config],
Darren Tuckerdad48e72009-09-01 18:26:00 +10004482 [$KRB5ROOT/bin/krb5-config],
4483 [$KRB5ROOT/bin:$PATH])
4484 if test -x $KRB5CONF ; then
Darren Tucker964de182013-02-22 10:39:59 +11004485 K5CFLAGS="`$KRB5CONF --cflags`"
4486 K5LIBS="`$KRB5CONF --libs`"
4487 CPPFLAGS="$CPPFLAGS $K5CFLAGS"
Darren Tucker1d3ca582004-01-22 12:05:34 +11004488
Tim Rice648f8762011-01-26 12:38:57 -08004489 AC_MSG_CHECKING([for gssapi support])
Darren Tucker1d3ca582004-01-22 12:05:34 +11004490 if $KRB5CONF | grep gssapi >/dev/null ; then
Tim Rice648f8762011-01-26 12:38:57 -08004491 AC_MSG_RESULT([yes])
4492 AC_DEFINE([GSSAPI], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004493 [Define this if you want GSSAPI
4494 support in the version 2 protocol])
Darren Tucker964de182013-02-22 10:39:59 +11004495 GSSCFLAGS="`$KRB5CONF --cflags gssapi`"
4496 GSSLIBS="`$KRB5CONF --libs gssapi`"
4497 CPPFLAGS="$CPPFLAGS $GSSCFLAGS"
Damien Millera8e06ce2003-11-21 23:48:55 +11004498 else
Tim Rice648f8762011-01-26 12:38:57 -08004499 AC_MSG_RESULT([no])
Damien Millera8e06ce2003-11-21 23:48:55 +11004500 fi
Tim Rice648f8762011-01-26 12:38:57 -08004501 AC_MSG_CHECKING([whether we are using Heimdal])
4502 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <krb5.h>
4503 ]], [[ char *tmp = heimdal_version; ]])],
4504 [ AC_MSG_RESULT([yes])
4505 AC_DEFINE([HEIMDAL], [1],
4506 [Define this if you are using the Heimdal
4507 version of Kerberos V5]) ],
4508 [AC_MSG_RESULT([no])
4509 ])
Darren Tucker1d3ca582004-01-22 12:05:34 +11004510 else
Damien Millerfd4c9ee2002-04-13 11:04:40 +10004511 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include"
Damien Millera8e06ce2003-11-21 23:48:55 +11004512 LDFLAGS="$LDFLAGS -L${KRB5ROOT}/lib"
Tim Rice648f8762011-01-26 12:38:57 -08004513 AC_MSG_CHECKING([whether we are using Heimdal])
4514 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <krb5.h>
4515 ]], [[ char *tmp = heimdal_version; ]])],
4516 [ AC_MSG_RESULT([yes])
4517 AC_DEFINE([HEIMDAL])
Damien Miller41bccf72011-01-02 21:53:07 +11004518 K5LIBS="-lkrb5"
Damien Miller5561e0b2004-04-20 20:28:55 +10004519 K5LIBS="$K5LIBS -lcom_err -lasn1"
Tim Rice648f8762011-01-26 12:38:57 -08004520 AC_CHECK_LIB([roken], [net_write],
Damien Miller5561e0b2004-04-20 20:28:55 +10004521 [K5LIBS="$K5LIBS -lroken"])
Tim Rice648f8762011-01-26 12:38:57 -08004522 AC_CHECK_LIB([des], [des_cbc_encrypt],
Damien Miller41bccf72011-01-02 21:53:07 +11004523 [K5LIBS="$K5LIBS -ldes"])
Tim Rice648f8762011-01-26 12:38:57 -08004524 ], [ AC_MSG_RESULT([no])
Damien Millera8e06ce2003-11-21 23:48:55 +11004525 K5LIBS="-lkrb5 -lk5crypto -lcom_err"
Tim Rice648f8762011-01-26 12:38:57 -08004526 ])
4527 AC_SEARCH_LIBS([dn_expand], [resolv])
Damien Millerfd4c9ee2002-04-13 11:04:40 +10004528
Tim Rice648f8762011-01-26 12:38:57 -08004529 AC_CHECK_LIB([gssapi_krb5], [gss_init_sec_context],
4530 [ AC_DEFINE([GSSAPI])
Darren Tucker964de182013-02-22 10:39:59 +11004531 GSSLIBS="-lgssapi_krb5" ],
Tim Rice648f8762011-01-26 12:38:57 -08004532 [ AC_CHECK_LIB([gssapi], [gss_init_sec_context],
4533 [ AC_DEFINE([GSSAPI])
Darren Tucker964de182013-02-22 10:39:59 +11004534 GSSLIBS="-lgssapi" ],
Darren Tuckera2b5a4c2013-02-22 10:43:15 +11004535 [ AC_CHECK_LIB([gss], [gss_init_sec_context],
4536 [ AC_DEFINE([GSSAPI])
4537 GSSLIBS="-lgss" ],
4538 AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]))
4539 ])
Darren Tucker964de182013-02-22 10:39:59 +11004540 ])
Tim Riceeae17cc2005-03-17 16:52:20 -08004541
Tim Rice648f8762011-01-26 12:38:57 -08004542 AC_CHECK_HEADER([gssapi.h], ,
Darren Tucker49aaf4a2003-08-26 11:58:16 +10004543 [ unset ac_cv_header_gssapi_h
Damien Millera8e06ce2003-11-21 23:48:55 +11004544 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
Tim Rice648f8762011-01-26 12:38:57 -08004545 AC_CHECK_HEADERS([gssapi.h], ,
Darren Tucker49aaf4a2003-08-26 11:58:16 +10004546 AC_MSG_WARN([Cannot find any suitable gss-api header - build may fail])
Damien Millera8e06ce2003-11-21 23:48:55 +11004547 )
Darren Tucker49aaf4a2003-08-26 11:58:16 +10004548 ]
4549 )
4550
4551 oldCPP="$CPPFLAGS"
4552 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
Tim Rice648f8762011-01-26 12:38:57 -08004553 AC_CHECK_HEADER([gssapi_krb5.h], ,
Darren Tucker49aaf4a2003-08-26 11:58:16 +10004554 [ CPPFLAGS="$oldCPP" ])
4555
Damien Millera8e06ce2003-11-21 23:48:55 +11004556 fi
Darren Tucker2f0bad22019-01-21 21:28:27 +11004557 if test -n "${rpath_opt}" ; then
4558 LDFLAGS="$LDFLAGS ${rpath_opt}${KRB5ROOT}/lib"
Darren Tucker1d3ca582004-01-22 12:05:34 +11004559 fi
4560 if test ! -z "$blibpath" ; then
4561 blibpath="$blibpath:${KRB5ROOT}/lib"
4562 fi
Tim Ricefd9e9e32005-09-12 17:36:10 -07004563
Tim Rice648f8762011-01-26 12:38:57 -08004564 AC_CHECK_HEADERS([gssapi.h gssapi/gssapi.h])
4565 AC_CHECK_HEADERS([gssapi_krb5.h gssapi/gssapi_krb5.h])
4566 AC_CHECK_HEADERS([gssapi_generic.h gssapi/gssapi_generic.h])
Tim Ricefd9e9e32005-09-12 17:36:10 -07004567
Tim Rice648f8762011-01-26 12:38:57 -08004568 AC_SEARCH_LIBS([k_hasafs], [kafs], [AC_DEFINE([USE_AFS], [1],
4569 [Define this if you want to use libkafs' AFS support])])
Darren Tucker03978c62013-02-25 11:24:44 +11004570
4571 AC_CHECK_DECLS([GSS_C_NT_HOSTBASED_SERVICE], [], [], [[
4572#ifdef HAVE_GSSAPI_H
4573# include <gssapi.h>
4574#elif defined(HAVE_GSSAPI_GSSAPI_H)
4575# include <gssapi/gssapi.h>
4576#endif
4577
4578#ifdef HAVE_GSSAPI_GENERIC_H
4579# include <gssapi_generic.h>
4580#elif defined(HAVE_GSSAPI_GSSAPI_GENERIC_H)
4581# include <gssapi/gssapi_generic.h>
4582#endif
4583 ]])
Darren Tuckerf3ab2c52013-08-04 21:48:41 +10004584 saved_LIBS="$LIBS"
4585 LIBS="$LIBS $K5LIBS"
4586 AC_CHECK_FUNCS([krb5_cc_new_unique krb5_get_error_message krb5_free_error_message])
4587 LIBS="$saved_LIBS"
4588
Darren Tucker0d27ed12004-02-24 10:37:33 +11004589 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11004590 ]
Damien Millerfd4c9ee2002-04-13 11:04:40 +10004591)
Darren Tucker964de182013-02-22 10:39:59 +11004592AC_SUBST([GSSLIBS])
4593AC_SUBST([K5LIBS])
Damien Millerc79bc0d2001-03-28 13:03:42 +10004594
Damien Millera22ba012000-03-02 23:09:20 +11004595# Looking for programs, paths and files
Damien Millera22ba012000-03-02 23:09:20 +11004596
Damien Millerf58c6722002-05-13 13:15:42 +10004597PRIVSEP_PATH=/var/empty
Tim Rice648f8762011-01-26 12:38:57 -08004598AC_ARG_WITH([privsep-path],
Tim Ricecbb90662002-07-08 19:17:10 -07004599 [ --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty)],
Damien Millerf58c6722002-05-13 13:15:42 +10004600 [
Tim Rice35cc69d2005-03-17 16:44:25 -08004601 if test -n "$withval" && test "x$withval" != "xno" && \
4602 test "x${withval}" != "xyes"; then
Damien Millerf58c6722002-05-13 13:15:42 +10004603 PRIVSEP_PATH=$withval
4604 fi
4605 ]
4606)
Tim Rice648f8762011-01-26 12:38:57 -08004607AC_SUBST([PRIVSEP_PATH])
Damien Millerf58c6722002-05-13 13:15:42 +10004608
Tim Rice648f8762011-01-26 12:38:57 -08004609AC_ARG_WITH([xauth],
Damien Millera22ba012000-03-02 23:09:20 +11004610 [ --with-xauth=PATH Specify path to xauth program ],
4611 [
Tim Rice35cc69d2005-03-17 16:44:25 -08004612 if test -n "$withval" && test "x$withval" != "xno" && \
4613 test "x${withval}" != "xyes"; then
Damien Miller7b22d652000-06-18 14:07:04 +10004614 xauth_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11004615 fi
4616 ],
4617 [
Tim Ricee22be3b2002-07-17 19:20:07 -07004618 TestPath="$PATH"
4619 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X/bin"
4620 TestPath="${TestPath}${PATH_SEPARATOR}/usr/bin/X11"
4621 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X11R6/bin"
4622 TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin"
Tim Rice648f8762011-01-26 12:38:57 -08004623 AC_PATH_PROG([xauth_path], [xauth], , [$TestPath])
Damien Milleredb82922000-06-20 13:25:52 +10004624 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
Damien Millera22ba012000-03-02 23:09:20 +11004625 xauth_path="/usr/openwin/bin/xauth"
4626 fi
4627 ]
4628)
4629
Damien Miller7d901272003-01-13 16:55:22 +11004630STRIP_OPT=-s
Tim Rice648f8762011-01-26 12:38:57 -08004631AC_ARG_ENABLE([strip],
Damien Miller7d901272003-01-13 16:55:22 +11004632 [ --disable-strip Disable calling strip(1) on install],
4633 [
4634 if test "x$enableval" = "xno" ; then
4635 STRIP_OPT=
4636 fi
4637 ]
4638)
Tim Rice648f8762011-01-26 12:38:57 -08004639AC_SUBST([STRIP_OPT])
Damien Miller7d901272003-01-13 16:55:22 +11004640
Damien Millera19cf472000-11-29 13:28:50 +11004641if test -z "$xauth_path" ; then
4642 XAUTH_PATH="undefined"
Tim Rice648f8762011-01-26 12:38:57 -08004643 AC_SUBST([XAUTH_PATH])
Damien Millera19cf472000-11-29 13:28:50 +11004644else
Tim Rice648f8762011-01-26 12:38:57 -08004645 AC_DEFINE_UNQUOTED([XAUTH_PATH], ["$xauth_path"],
Tim Rice7df8d392005-09-19 09:33:39 -07004646 [Define if xauth is found in your path])
Damien Millera19cf472000-11-29 13:28:50 +11004647 XAUTH_PATH=$xauth_path
Tim Rice648f8762011-01-26 12:38:57 -08004648 AC_SUBST([XAUTH_PATH])
Damien Millera22ba012000-03-02 23:09:20 +11004649fi
Damien Millera22ba012000-03-02 23:09:20 +11004650
Tim Rice90f42b02011-06-02 18:17:49 -07004651dnl # --with-maildir=/path/to/mail gets top priority.
4652dnl # if maildir is set in the platform case statement above we use that.
4653dnl # Otherwise we run a program to get the dir from system headers.
4654dnl # We first look for _PATH_MAILDIR then MAILDIR then _PATH_MAIL
4655dnl # If we find _PATH_MAILDIR we do nothing because that is what
4656dnl # session.c expects anyway. Otherwise we set to the value found
4657dnl # stripping any trailing slash. If for some strage reason our program
4658dnl # does not find what it needs, we default to /var/spool/mail.
4659# Check for mail directory
4660AC_ARG_WITH([maildir],
4661 [ --with-maildir=/path/to/mail Specify your system mail directory],
4662 [
4663 if test "X$withval" != X && test "x$withval" != xno && \
4664 test "x${withval}" != xyes; then
4665 AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["$withval"],
4666 [Set this to your mail directory if you do not have _PATH_MAILDIR])
4667 fi
4668 ],[
4669 if test "X$maildir" != "X"; then
4670 AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["$maildir"])
4671 else
4672 AC_MSG_CHECKING([Discovering system mail directory])
4673 AC_RUN_IFELSE(
4674 [AC_LANG_PROGRAM([[
4675#include <stdio.h>
4676#include <string.h>
4677#ifdef HAVE_PATHS_H
4678#include <paths.h>
4679#endif
4680#ifdef HAVE_MAILLOCK_H
4681#include <maillock.h>
4682#endif
4683#define DATA "conftest.maildir"
4684 ]], [[
4685 FILE *fd;
4686 int rc;
4687
4688 fd = fopen(DATA,"w");
4689 if(fd == NULL)
4690 exit(1);
4691
4692#if defined (_PATH_MAILDIR)
4693 if ((rc = fprintf(fd ,"_PATH_MAILDIR:%s\n", _PATH_MAILDIR)) <0)
4694 exit(1);
4695#elif defined (MAILDIR)
4696 if ((rc = fprintf(fd ,"MAILDIR:%s\n", MAILDIR)) <0)
4697 exit(1);
4698#elif defined (_PATH_MAIL)
4699 if ((rc = fprintf(fd ,"_PATH_MAIL:%s\n", _PATH_MAIL)) <0)
4700 exit(1);
4701#else
4702 exit (2);
4703#endif
4704
4705 exit(0);
4706 ]])],
4707 [
Tim Ricee1d93702016-05-31 11:13:22 -07004708 maildir_what=`awk -F: '{print $1}' conftest.maildir`
Tim Rice90f42b02011-06-02 18:17:49 -07004709 maildir=`awk -F: '{print $2}' conftest.maildir \
4710 | sed 's|/$||'`
4711 AC_MSG_RESULT([Using: $maildir from $maildir_what])
4712 if test "x$maildir_what" != "x_PATH_MAILDIR"; then
4713 AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["$maildir"])
4714 fi
4715 ],
4716 [
4717 if test "X$ac_status" = "X2";then
4718# our test program didn't find it. Default to /var/spool/mail
4719 AC_MSG_RESULT([Using: default value of /var/spool/mail])
4720 AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["/var/spool/mail"])
4721 else
4722 AC_MSG_RESULT([*** not found ***])
4723 fi
4724 ],
4725 [
4726 AC_MSG_WARN([cross compiling: use --with-maildir=/path/to/mail])
4727 ]
4728 )
4729 fi
4730 ]
4731) # maildir
Damien Millera22ba012000-03-02 23:09:20 +11004732
Darren Tucker623d92f2004-09-12 22:36:15 +10004733if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes"; then
Darren Tuckera0c2b392004-09-11 23:26:37 +10004734 AC_MSG_WARN([cross compiling: Disabling /dev/ptmx test])
4735 disable_ptmx_check=yes
4736fi
Damien Millera22ba012000-03-02 23:09:20 +11004737if test -z "$no_dev_ptmx" ; then
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00004738 if test "x$disable_ptmx_check" != "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004739 AC_CHECK_FILE(["/dev/ptmx"],
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00004740 [
Tim Rice648f8762011-01-26 12:38:57 -08004741 AC_DEFINE_UNQUOTED([HAVE_DEV_PTMX], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004742 [Define if you have /dev/ptmx])
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00004743 have_dev_ptmx=1
4744 ]
4745 )
4746 fi
Damien Millera22ba012000-03-02 23:09:20 +11004747fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10004748
Darren Tucker623d92f2004-09-12 22:36:15 +10004749if test ! -z "$cross_compiling" && test "x$cross_compiling" != "xyes"; then
Tim Rice648f8762011-01-26 12:38:57 -08004750 AC_CHECK_FILE(["/dev/ptc"],
Darren Tuckera0c2b392004-09-11 23:26:37 +10004751 [
Tim Rice648f8762011-01-26 12:38:57 -08004752 AC_DEFINE_UNQUOTED([HAVE_DEV_PTS_AND_PTC], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004753 [Define if you have /dev/ptc])
Darren Tuckera0c2b392004-09-11 23:26:37 +10004754 have_dev_ptc=1
4755 ]
4756 )
4757else
4758 AC_MSG_WARN([cross compiling: Disabling /dev/ptc test])
4759fi
Damien Miller204ad072000-03-02 23:56:12 +11004760
Damien Millera22ba012000-03-02 23:09:20 +11004761# Options from here on. Some of these are preset by platform above
Tim Rice648f8762011-01-26 12:38:57 -08004762AC_ARG_WITH([mantype],
Damien Miller897741e2001-04-16 10:41:46 +10004763 [ --with-mantype=man|cat|doc Set man page type],
Damien Miller670a4b82000-01-22 13:53:11 +11004764 [
Damien Miller897741e2001-04-16 10:41:46 +10004765 case "$withval" in
4766 man|cat|doc)
4767 MANTYPE=$withval
4768 ;;
4769 *)
Tim Rice648f8762011-01-26 12:38:57 -08004770 AC_MSG_ERROR([invalid man type: $withval])
Damien Miller897741e2001-04-16 10:41:46 +10004771 ;;
4772 esac
Damien Miller670a4b82000-01-22 13:53:11 +11004773 ]
4774)
Ben Lindstrombc709922001-04-18 18:04:21 +00004775if test -z "$MANTYPE"; then
Darren Tucker285546b2019-05-10 15:04:42 +10004776 if ${MANDOC} ${srcdir}/ssh.1 >/dev/null 2>&1; then
4777 MANTYPE=doc
4778 elif ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
Ben Lindstrombc709922001-04-18 18:04:21 +00004779 MANTYPE=doc
4780 elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
4781 MANTYPE=man
4782 else
4783 MANTYPE=cat
4784 fi
4785fi
Tim Rice648f8762011-01-26 12:38:57 -08004786AC_SUBST([MANTYPE])
Ben Lindstrombc709922001-04-18 18:04:21 +00004787if test "$MANTYPE" = "doc"; then
4788 mansubdir=man;
4789else
4790 mansubdir=$MANTYPE;
4791fi
Tim Rice648f8762011-01-26 12:38:57 -08004792AC_SUBST([mansubdir])
Damien Miller8bdeee21999-12-30 15:50:54 +11004793
Damien Millera22ba012000-03-02 23:09:20 +11004794# Check whether to enable MD5 passwords
Damien Millera8e06ce2003-11-21 23:48:55 +11004795MD5_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08004796AC_ARG_WITH([md5-passwords],
Damien Millerdd1c7ba1999-11-19 15:53:20 +11004797 [ --with-md5-passwords Enable use of MD5 passwords],
Damien Miller8bdeee21999-12-30 15:50:54 +11004798 [
Damien Millerb85dcad2000-03-11 11:37:00 +11004799 if test "x$withval" != "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004800 AC_DEFINE([HAVE_MD5_PASSWORDS], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004801 [Define if you want to allow MD5 passwords])
Damien Millera8e06ce2003-11-21 23:48:55 +11004802 MD5_MSG="yes"
Damien Miller8bdeee21999-12-30 15:50:54 +11004803 fi
4804 ]
Damien Millerdd1c7ba1999-11-19 15:53:20 +11004805)
4806
Damien Millera22ba012000-03-02 23:09:20 +11004807# Whether to disable shadow password support
Tim Rice648f8762011-01-26 12:38:57 -08004808AC_ARG_WITH([shadow],
Damien Miller76112de1999-12-21 11:18:08 +11004809 [ --without-shadow Disable shadow password support],
4810 [
Tim Riceeae17cc2005-03-17 16:52:20 -08004811 if test "x$withval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004812 AC_DEFINE([DISABLE_SHADOW])
Damien Miller1f335fb2000-06-26 11:31:33 +10004813 disable_shadow=yes
Damien Miller76112de1999-12-21 11:18:08 +11004814 fi
4815 ]
4816)
4817
Damien Miller1f335fb2000-06-26 11:31:33 +10004818if test -z "$disable_shadow" ; then
4819 AC_MSG_CHECKING([if the systems has expire shadow information])
Tim Rice648f8762011-01-26 12:38:57 -08004820 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller1f335fb2000-06-26 11:31:33 +10004821#include <sys/types.h>
4822#include <shadow.h>
Tim Rice648f8762011-01-26 12:38:57 -08004823struct spwd sp;
4824 ]], [[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ]])],
4825 [ sp_expire_available=yes ], [
4826 ])
Damien Miller1f335fb2000-06-26 11:31:33 +10004827
4828 if test "x$sp_expire_available" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004829 AC_MSG_RESULT([yes])
4830 AC_DEFINE([HAS_SHADOW_EXPIRE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004831 [Define if you want to use shadow password expire field])
Damien Miller1f335fb2000-06-26 11:31:33 +10004832 else
Tim Rice648f8762011-01-26 12:38:57 -08004833 AC_MSG_RESULT([no])
Damien Miller1f335fb2000-06-26 11:31:33 +10004834 fi
4835fi
4836
Damien Millera22ba012000-03-02 23:09:20 +11004837# Use ip address instead of hostname in $DISPLAY
Damien Miller9a947342000-08-30 10:03:33 +11004838if test ! -z "$IPADDR_IN_DISPLAY" ; then
4839 DISPLAY_HACK_MSG="yes"
Tim Rice648f8762011-01-26 12:38:57 -08004840 AC_DEFINE([IPADDR_IN_DISPLAY], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004841 [Define if you need to use IP address
4842 instead of hostname in $DISPLAY])
Damien Miller9a947342000-08-30 10:03:33 +11004843else
Damien Millera8e06ce2003-11-21 23:48:55 +11004844 DISPLAY_HACK_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08004845 AC_ARG_WITH([ipaddr-display],
Tim Rice6397eed2015-06-03 21:41:11 -07004846 [ --with-ipaddr-display Use ip address instead of hostname in $DISPLAY],
Damien Miller9a947342000-08-30 10:03:33 +11004847 [
Tim Riceeae17cc2005-03-17 16:52:20 -08004848 if test "x$withval" != "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004849 AC_DEFINE([IPADDR_IN_DISPLAY])
Damien Millera8e06ce2003-11-21 23:48:55 +11004850 DISPLAY_HACK_MSG="yes"
Damien Miller9a947342000-08-30 10:03:33 +11004851 fi
4852 ]
4853 )
4854fi
Damien Miller76112de1999-12-21 11:18:08 +11004855
Darren Tuckere1a790d2003-09-16 11:52:19 +10004856# check for /etc/default/login and use it if present.
Tim Rice648f8762011-01-26 12:38:57 -08004857AC_ARG_ENABLE([etc-default-login],
Darren Tucker1b6f2292005-02-11 16:11:49 +11004858 [ --disable-etc-default-login Disable using PATH from /etc/default/login [no]],
Darren Tucker2f9573d2005-02-10 22:28:54 +11004859 [ if test "x$enableval" = "xno"; then
4860 AC_MSG_NOTICE([/etc/default/login handling disabled])
4861 etc_default_login=no
4862 else
4863 etc_default_login=yes
4864 fi ],
Darren Tucker314d89e2005-10-17 23:29:23 +10004865 [ if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes";
4866 then
4867 AC_MSG_WARN([cross compiling: not checking /etc/default/login])
4868 etc_default_login=no
4869 else
4870 etc_default_login=yes
4871 fi ]
Darren Tucker2f9573d2005-02-10 22:28:54 +11004872)
Darren Tuckere1a790d2003-09-16 11:52:19 +10004873
Darren Tucker2f9573d2005-02-10 22:28:54 +11004874if test "x$etc_default_login" != "xno"; then
Tim Rice648f8762011-01-26 12:38:57 -08004875 AC_CHECK_FILE(["/etc/default/login"],
Darren Tucker2f9573d2005-02-10 22:28:54 +11004876 [ external_path_file=/etc/default/login ])
Darren Tucker314d89e2005-10-17 23:29:23 +10004877 if test "x$external_path_file" = "x/etc/default/login"; then
Tim Rice648f8762011-01-26 12:38:57 -08004878 AC_DEFINE([HAVE_ETC_DEFAULT_LOGIN], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004879 [Define if your system has /etc/default/login])
Darren Tuckera0c2b392004-09-11 23:26:37 +10004880 fi
Darren Tucker2f9573d2005-02-10 22:28:54 +11004881fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10004882
Tim Rice43a1c132002-04-17 21:19:14 -07004883dnl BSD systems use /etc/login.conf so --with-default-path= has no effect
Tim Rice8bb561b2005-03-17 16:23:19 -08004884if test $ac_cv_func_login_getcapbool = "yes" && \
4885 test $ac_cv_header_login_cap_h = "yes" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10004886 external_path_file=/etc/login.conf
Tim Rice43a1c132002-04-17 21:19:14 -07004887fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10004888
Damien Millera22ba012000-03-02 23:09:20 +11004889# Whether to mess with the default path
Damien Millera8e06ce2003-11-21 23:48:55 +11004890SERVER_PATH_MSG="(default)"
Tim Rice648f8762011-01-26 12:38:57 -08004891AC_ARG_WITH([default-path],
Tim Rice6397eed2015-06-03 21:41:11 -07004892 [ --with-default-path= Specify default $PATH environment for server],
Damien Miller5a3e6831999-12-27 09:48:56 +11004893 [
Darren Tuckere1a790d2003-09-16 11:52:19 +10004894 if test "x$external_path_file" = "x/etc/login.conf" ; then
Tim Rice43a1c132002-04-17 21:19:14 -07004895 AC_MSG_WARN([
4896--with-default-path=PATH has no effect on this system.
4897Edit /etc/login.conf instead.])
Tim Riceeae17cc2005-03-17 16:52:20 -08004898 elif test "x$withval" != "xno" ; then
Tim Riceb925b4b2003-09-15 22:40:49 -07004899 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10004900 AC_MSG_WARN([
4901--with-default-path=PATH will only be used if PATH is not defined in
4902$external_path_file .])
4903 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08004904 user_path="$withval"
Damien Millera8e06ce2003-11-21 23:48:55 +11004905 SERVER_PATH_MSG="$withval"
Damien Miller5a3e6831999-12-27 09:48:56 +11004906 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08004907 ],
Darren Tuckere1a790d2003-09-16 11:52:19 +10004908 [ if test "x$external_path_file" = "x/etc/login.conf" ; then
4909 AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf])
Tim Rice43a1c132002-04-17 21:19:14 -07004910 else
Tim Riceb925b4b2003-09-15 22:40:49 -07004911 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10004912 AC_MSG_WARN([
4913If PATH is defined in $external_path_file, ensure the path to scp is included,
4914otherwise scp will not work.])
4915 fi
Darren Tucker314d89e2005-10-17 23:29:23 +10004916 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08004917 [AC_LANG_PROGRAM([[
Tim Rice59ea0a02001-03-10 13:50:45 -08004918/* find out what STDPATH is */
4919#include <stdio.h>
Tim Rice59ea0a02001-03-10 13:50:45 -08004920#ifdef HAVE_PATHS_H
4921# include <paths.h>
4922#endif
4923#ifndef _PATH_STDPATH
Tim Rice1c9e6882002-11-22 13:29:01 -08004924# ifdef _PATH_USERPATH /* Irix */
4925# define _PATH_STDPATH _PATH_USERPATH
4926# else
4927# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
4928# endif
Tim Rice59ea0a02001-03-10 13:50:45 -08004929#endif
4930#include <sys/types.h>
4931#include <sys/stat.h>
4932#include <fcntl.h>
4933#define DATA "conftest.stdpath"
Tim Rice648f8762011-01-26 12:38:57 -08004934 ]], [[
Tim Rice59ea0a02001-03-10 13:50:45 -08004935 FILE *fd;
4936 int rc;
Tim Riceeae17cc2005-03-17 16:52:20 -08004937
Tim Rice59ea0a02001-03-10 13:50:45 -08004938 fd = fopen(DATA,"w");
4939 if(fd == NULL)
4940 exit(1);
Tim Riceeae17cc2005-03-17 16:52:20 -08004941
Tim Rice59ea0a02001-03-10 13:50:45 -08004942 if ((rc = fprintf(fd,"%s", _PATH_STDPATH)) < 0)
4943 exit(1);
4944
4945 exit(0);
Darren Tucker314d89e2005-10-17 23:29:23 +10004946 ]])],
4947 [ user_path=`cat conftest.stdpath` ],
Tim Rice59ea0a02001-03-10 13:50:45 -08004948 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ],
4949 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ]
4950 )
4951# make sure $bindir is in USER_PATH so scp will work
Damien Miller77eab7b2012-07-06 11:49:28 +10004952 t_bindir="${bindir}"
4953 while echo "${t_bindir}" | egrep '\$\{|NONE/' >/dev/null 2>&1; do
4954 t_bindir=`eval echo ${t_bindir}`
4955 case $t_bindir in
4956 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$prefix~"` ;;
4957 esac
4958 case $t_bindir in
4959 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$ac_default_prefix~"` ;;
4960 esac
4961 done
Tim Rice59ea0a02001-03-10 13:50:45 -08004962 echo $user_path | grep ":$t_bindir" > /dev/null 2>&1
4963 if test $? -ne 0 ; then
4964 echo $user_path | grep "^$t_bindir" > /dev/null 2>&1
4965 if test $? -ne 0 ; then
4966 user_path=$user_path:$t_bindir
Tim Rice648f8762011-01-26 12:38:57 -08004967 AC_MSG_RESULT([Adding $t_bindir to USER_PATH so scp will work])
Tim Rice59ea0a02001-03-10 13:50:45 -08004968 fi
4969 fi
Tim Rice43a1c132002-04-17 21:19:14 -07004970 fi ]
Damien Miller5a3e6831999-12-27 09:48:56 +11004971)
Darren Tuckere1a790d2003-09-16 11:52:19 +10004972if test "x$external_path_file" != "x/etc/login.conf" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004973 AC_DEFINE_UNQUOTED([USER_PATH], ["$user_path"], [Specify default $PATH])
4974 AC_SUBST([user_path])
Tim Rice43a1c132002-04-17 21:19:14 -07004975fi
Damien Miller5a3e6831999-12-27 09:48:56 +11004976
Damien Millera18bbd32002-05-13 10:48:57 +10004977# Set superuser path separately to user path
Tim Rice648f8762011-01-26 12:38:57 -08004978AC_ARG_WITH([superuser-path],
Damien Millera18bbd32002-05-13 10:48:57 +10004979 [ --with-superuser-path= Specify different path for super-user],
4980 [
Tim Rice35cc69d2005-03-17 16:44:25 -08004981 if test -n "$withval" && test "x$withval" != "xno" && \
4982 test "x${withval}" != "xyes"; then
Tim Rice648f8762011-01-26 12:38:57 -08004983 AC_DEFINE_UNQUOTED([SUPERUSER_PATH], ["$withval"],
Tim Rice7df8d392005-09-19 09:33:39 -07004984 [Define if you want a different $PATH
4985 for the superuser])
Damien Millera18bbd32002-05-13 10:48:57 +10004986 superuser_path=$withval
4987 fi
4988 ]
4989)
4990
4991
Damien Miller61e50f12000-05-08 20:49:37 +10004992AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
Damien Millera8e06ce2003-11-21 23:48:55 +11004993IPV4_IN6_HACK_MSG="no"
Damien Miller7bcb0892000-03-11 20:45:40 +11004994AC_ARG_WITH(4in6,
4995 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
4996 [
4997 if test "x$withval" != "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004998 AC_MSG_RESULT([yes])
4999 AC_DEFINE([IPV4_IN_IPV6], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07005000 [Detect IPv4 in IPv6 mapped addresses
5001 and treat as IPv4])
Damien Millera8e06ce2003-11-21 23:48:55 +11005002 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11005003 else
Tim Rice648f8762011-01-26 12:38:57 -08005004 AC_MSG_RESULT([no])
Damien Miller7bcb0892000-03-11 20:45:40 +11005005 fi
Tim Rice648f8762011-01-26 12:38:57 -08005006 ], [
Damien Miller7bcb0892000-03-11 20:45:40 +11005007 if test "x$inet6_default_4in6" = "xyes"; then
5008 AC_MSG_RESULT([yes (default)])
Tim Rice648f8762011-01-26 12:38:57 -08005009 AC_DEFINE([IPV4_IN_IPV6])
Damien Millera8e06ce2003-11-21 23:48:55 +11005010 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11005011 else
5012 AC_MSG_RESULT([no (default)])
5013 fi
5014 ]
5015)
5016
Damien Miller60396b02001-02-18 17:01:00 +11005017# Whether to enable BSD auth support
Damien Miller6c21c512002-01-22 21:57:53 +11005018BSD_AUTH_MSG=no
Tim Rice648f8762011-01-26 12:38:57 -08005019AC_ARG_WITH([bsd-auth],
Damien Miller60396b02001-02-18 17:01:00 +11005020 [ --with-bsd-auth Enable BSD auth support],
5021 [
Tim Riceeae17cc2005-03-17 16:52:20 -08005022 if test "x$withval" != "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08005023 AC_DEFINE([BSD_AUTH], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07005024 [Define if you have BSD auth support])
Damien Miller6c21c512002-01-22 21:57:53 +11005025 BSD_AUTH_MSG=yes
Damien Miller60396b02001-02-18 17:01:00 +11005026 fi
5027 ]
5028)
5029
Damien Millera22ba012000-03-02 23:09:20 +11005030# Where to place sshd.pid
Damien Millerb13c73e2000-01-17 22:02:17 +11005031piddir=/var/run
Damien Miller78315eb2000-09-29 23:01:36 +11005032# make sure the directory exists
Tim Riceeae17cc2005-03-17 16:52:20 -08005033if test ! -d $piddir ; then
Damien Miller78315eb2000-09-29 23:01:36 +11005034 piddir=`eval echo ${sysconfdir}`
5035 case $piddir in
Damien Millera8e06ce2003-11-21 23:48:55 +11005036 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
Damien Miller78315eb2000-09-29 23:01:36 +11005037 esac
5038fi
5039
Tim Rice648f8762011-01-26 12:38:57 -08005040AC_ARG_WITH([pid-dir],
Darren Tucker075e2582018-02-13 17:36:43 +11005041 [ --with-pid-dir=PATH Specify location of sshd.pid file],
Tim Rice88f2ab52002-03-17 12:17:34 -08005042 [
Tim Rice35cc69d2005-03-17 16:44:25 -08005043 if test -n "$withval" && test "x$withval" != "xno" && \
5044 test "x${withval}" != "xyes"; then
Tim Rice88f2ab52002-03-17 12:17:34 -08005045 piddir=$withval
Tim Riceeae17cc2005-03-17 16:52:20 -08005046 if test ! -d $piddir ; then
Tim Rice88f2ab52002-03-17 12:17:34 -08005047 AC_MSG_WARN([** no $piddir directory on this system **])
5048 fi
5049 fi
5050 ]
5051)
5052
Tim Ricee1d93702016-05-31 11:13:22 -07005053AC_DEFINE_UNQUOTED([_PATH_SSH_PIDDIR], ["$piddir"],
Tim Rice648f8762011-01-26 12:38:57 -08005054 [Specify location of ssh.pid])
5055AC_SUBST([piddir])
Damien Miller5eed6a22000-01-16 12:05:18 +11005056
andre2ff7b5d2000-06-03 14:57:40 +00005057dnl allow user to disable some login recording features
Tim Rice648f8762011-01-26 12:38:57 -08005058AC_ARG_ENABLE([lastlog],
andre43ca7e22000-06-19 08:23:46 +00005059 [ --disable-lastlog disable use of lastlog even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10005060 [
5061 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08005062 AC_DEFINE([DISABLE_LASTLOG])
Darren Tuckera3020db2003-06-28 12:54:33 +10005063 fi
5064 ]
andre2ff7b5d2000-06-03 14:57:40 +00005065)
Tim Rice648f8762011-01-26 12:38:57 -08005066AC_ARG_ENABLE([utmp],
andre43ca7e22000-06-19 08:23:46 +00005067 [ --disable-utmp disable use of utmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10005068 [
5069 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08005070 AC_DEFINE([DISABLE_UTMP])
Darren Tuckera3020db2003-06-28 12:54:33 +10005071 fi
5072 ]
andre2ff7b5d2000-06-03 14:57:40 +00005073)
Tim Rice648f8762011-01-26 12:38:57 -08005074AC_ARG_ENABLE([utmpx],
andre43ca7e22000-06-19 08:23:46 +00005075 [ --disable-utmpx disable use of utmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10005076 [
5077 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08005078 AC_DEFINE([DISABLE_UTMPX], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07005079 [Define if you don't want to use utmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10005080 fi
5081 ]
andre2ff7b5d2000-06-03 14:57:40 +00005082)
Tim Rice648f8762011-01-26 12:38:57 -08005083AC_ARG_ENABLE([wtmp],
andre43ca7e22000-06-19 08:23:46 +00005084 [ --disable-wtmp disable use of wtmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10005085 [
5086 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08005087 AC_DEFINE([DISABLE_WTMP])
Darren Tuckera3020db2003-06-28 12:54:33 +10005088 fi
5089 ]
andre2ff7b5d2000-06-03 14:57:40 +00005090)
Tim Rice648f8762011-01-26 12:38:57 -08005091AC_ARG_ENABLE([wtmpx],
andre43ca7e22000-06-19 08:23:46 +00005092 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10005093 [
5094 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08005095 AC_DEFINE([DISABLE_WTMPX], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07005096 [Define if you don't want to use wtmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10005097 fi
5098 ]
andre2ff7b5d2000-06-03 14:57:40 +00005099)
Tim Rice648f8762011-01-26 12:38:57 -08005100AC_ARG_ENABLE([libutil],
andre43ca7e22000-06-19 08:23:46 +00005101 [ --disable-libutil disable use of libutil (login() etc.) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10005102 [
5103 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08005104 AC_DEFINE([DISABLE_LOGIN])
Darren Tuckera3020db2003-06-28 12:54:33 +10005105 fi
5106 ]
andre2ff7b5d2000-06-03 14:57:40 +00005107)
Tim Rice648f8762011-01-26 12:38:57 -08005108AC_ARG_ENABLE([pututline],
andre43ca7e22000-06-19 08:23:46 +00005109 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10005110 [
5111 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08005112 AC_DEFINE([DISABLE_PUTUTLINE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07005113 [Define if you don't want to use pututline()
5114 etc. to write [uw]tmp])
Darren Tuckera3020db2003-06-28 12:54:33 +10005115 fi
5116 ]
andre2ff7b5d2000-06-03 14:57:40 +00005117)
Tim Rice648f8762011-01-26 12:38:57 -08005118AC_ARG_ENABLE([pututxline],
andre43ca7e22000-06-19 08:23:46 +00005119 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10005120 [
5121 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08005122 AC_DEFINE([DISABLE_PUTUTXLINE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07005123 [Define if you don't want to use pututxline()
5124 etc. to write [uw]tmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10005125 fi
5126 ]
andre2ff7b5d2000-06-03 14:57:40 +00005127)
Tim Rice648f8762011-01-26 12:38:57 -08005128AC_ARG_WITH([lastlog],
andre43ca7e22000-06-19 08:23:46 +00005129 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
Damien Miller709528a2001-01-31 09:57:55 +11005130 [
Tim Riceeae17cc2005-03-17 16:52:20 -08005131 if test "x$withval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08005132 AC_DEFINE([DISABLE_LASTLOG])
Tim Rice35cc69d2005-03-17 16:44:25 -08005133 elif test -n "$withval" && test "x${withval}" != "xyes"; then
Damien Miller709528a2001-01-31 09:57:55 +11005134 conf_lastlog_location=$withval
5135 fi
5136 ]
5137)
andre2ff7b5d2000-06-03 14:57:40 +00005138
5139dnl lastlog, [uw]tmpx? detection
5140dnl NOTE: set the paths in the platform section to avoid the
5141dnl need for command-line parameters
5142dnl lastlog and [uw]tmp are subject to a file search if all else fails
5143
5144dnl lastlog detection
5145dnl NOTE: the code itself will detect if lastlog is a directory
5146AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
Tim Rice648f8762011-01-26 12:38:57 -08005147AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
andre2ff7b5d2000-06-03 14:57:40 +00005148#include <sys/types.h>
5149#include <utmp.h>
5150#ifdef HAVE_LASTLOG_H
5151# include <lastlog.h>
5152#endif
Damien Miller2994e082000-06-04 15:51:47 +10005153#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00005154# include <paths.h>
5155#endif
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00005156#ifdef HAVE_LOGIN_H
5157# include <login.h>
5158#endif
Tim Rice648f8762011-01-26 12:38:57 -08005159 ]], [[ char *lastlog = LASTLOG_FILE; ]])],
5160 [ AC_MSG_RESULT([yes]) ],
5161 [
5162 AC_MSG_RESULT([no])
Damien Miller2994e082000-06-04 15:51:47 +10005163 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
Tim Rice648f8762011-01-26 12:38:57 -08005164 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller2994e082000-06-04 15:51:47 +10005165#include <sys/types.h>
5166#include <utmp.h>
5167#ifdef HAVE_LASTLOG_H
5168# include <lastlog.h>
5169#endif
5170#ifdef HAVE_PATHS_H
5171# include <paths.h>
5172#endif
Tim Rice648f8762011-01-26 12:38:57 -08005173 ]], [[ char *lastlog = _PATH_LASTLOG; ]])],
5174 [ AC_MSG_RESULT([yes]) ],
Damien Miller2994e082000-06-04 15:51:47 +10005175 [
Tim Rice648f8762011-01-26 12:38:57 -08005176 AC_MSG_RESULT([no])
Damien Miller2994e082000-06-04 15:51:47 +10005177 system_lastlog_path=no
5178 ])
Tim Rice648f8762011-01-26 12:38:57 -08005179])
Damien Miller2994e082000-06-04 15:51:47 +10005180
andre2ff7b5d2000-06-03 14:57:40 +00005181if test -z "$conf_lastlog_location"; then
5182 if test x"$system_lastlog_path" = x"no" ; then
5183 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
Damien Milleredb82922000-06-20 13:25:52 +10005184 if (test -d "$f" || test -f "$f") ; then
andre2ff7b5d2000-06-03 14:57:40 +00005185 conf_lastlog_location=$f
5186 fi
5187 done
5188 if test -z "$conf_lastlog_location"; then
andre45cad512000-06-12 23:27:31 +00005189 AC_MSG_WARN([** Cannot find lastlog **])
5190 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
andre2ff7b5d2000-06-03 14:57:40 +00005191 fi
5192 fi
5193fi
5194
5195if test -n "$conf_lastlog_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08005196 AC_DEFINE_UNQUOTED([CONF_LASTLOG_FILE], ["$conf_lastlog_location"],
Tim Rice7df8d392005-09-19 09:33:39 -07005197 [Define if you want to specify the path to your lastlog file])
Tim Riceeae17cc2005-03-17 16:52:20 -08005198fi
andre2ff7b5d2000-06-03 14:57:40 +00005199
5200dnl utmp detection
5201AC_MSG_CHECKING([if your system defines UTMP_FILE])
Tim Rice648f8762011-01-26 12:38:57 -08005202AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
andre2ff7b5d2000-06-03 14:57:40 +00005203#include <sys/types.h>
5204#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10005205#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00005206# include <paths.h>
5207#endif
Tim Rice648f8762011-01-26 12:38:57 -08005208 ]], [[ char *utmp = UTMP_FILE; ]])],
5209 [ AC_MSG_RESULT([yes]) ],
5210 [ AC_MSG_RESULT([no])
Tim Ricee1d93702016-05-31 11:13:22 -07005211 system_utmp_path=no
Tim Rice648f8762011-01-26 12:38:57 -08005212])
andre2ff7b5d2000-06-03 14:57:40 +00005213if test -z "$conf_utmp_location"; then
5214 if test x"$system_utmp_path" = x"no" ; then
5215 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
5216 if test -f $f ; then
5217 conf_utmp_location=$f
5218 fi
5219 done
5220 if test -z "$conf_utmp_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08005221 AC_DEFINE([DISABLE_UTMP])
andre2ff7b5d2000-06-03 14:57:40 +00005222 fi
5223 fi
5224fi
5225if test -n "$conf_utmp_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08005226 AC_DEFINE_UNQUOTED([CONF_UTMP_FILE], ["$conf_utmp_location"],
Tim Rice7df8d392005-09-19 09:33:39 -07005227 [Define if you want to specify the path to your utmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08005228fi
andre2ff7b5d2000-06-03 14:57:40 +00005229
5230dnl wtmp detection
5231AC_MSG_CHECKING([if your system defines WTMP_FILE])
Tim Rice648f8762011-01-26 12:38:57 -08005232AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
andre2ff7b5d2000-06-03 14:57:40 +00005233#include <sys/types.h>
5234#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10005235#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00005236# include <paths.h>
5237#endif
Tim Rice648f8762011-01-26 12:38:57 -08005238 ]], [[ char *wtmp = WTMP_FILE; ]])],
5239 [ AC_MSG_RESULT([yes]) ],
5240 [ AC_MSG_RESULT([no])
Tim Ricee1d93702016-05-31 11:13:22 -07005241 system_wtmp_path=no
Tim Rice648f8762011-01-26 12:38:57 -08005242])
andre2ff7b5d2000-06-03 14:57:40 +00005243if test -z "$conf_wtmp_location"; then
5244 if test x"$system_wtmp_path" = x"no" ; then
5245 for f in /usr/adm/wtmp /var/log/wtmp; do
5246 if test -f $f ; then
5247 conf_wtmp_location=$f
5248 fi
5249 done
5250 if test -z "$conf_wtmp_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08005251 AC_DEFINE([DISABLE_WTMP])
andre2ff7b5d2000-06-03 14:57:40 +00005252 fi
5253 fi
5254fi
5255if test -n "$conf_wtmp_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08005256 AC_DEFINE_UNQUOTED([CONF_WTMP_FILE], ["$conf_wtmp_location"],
Tim Rice7df8d392005-09-19 09:33:39 -07005257 [Define if you want to specify the path to your wtmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08005258fi
andre2ff7b5d2000-06-03 14:57:40 +00005259
andre2ff7b5d2000-06-03 14:57:40 +00005260dnl wtmpx detection
5261AC_MSG_CHECKING([if your system defines WTMPX_FILE])
Tim Rice648f8762011-01-26 12:38:57 -08005262AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
andre2ff7b5d2000-06-03 14:57:40 +00005263#include <sys/types.h>
5264#include <utmp.h>
5265#ifdef HAVE_UTMPX_H
5266#include <utmpx.h>
5267#endif
Damien Miller2994e082000-06-04 15:51:47 +10005268#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00005269# include <paths.h>
5270#endif
Tim Rice648f8762011-01-26 12:38:57 -08005271 ]], [[ char *wtmpx = WTMPX_FILE; ]])],
5272 [ AC_MSG_RESULT([yes]) ],
5273 [ AC_MSG_RESULT([no])
Tim Ricee1d93702016-05-31 11:13:22 -07005274 system_wtmpx_path=no
Tim Rice648f8762011-01-26 12:38:57 -08005275])
andre2ff7b5d2000-06-03 14:57:40 +00005276if test -z "$conf_wtmpx_location"; then
5277 if test x"$system_wtmpx_path" = x"no" ; then
Tim Rice648f8762011-01-26 12:38:57 -08005278 AC_DEFINE([DISABLE_WTMPX])
andre2ff7b5d2000-06-03 14:57:40 +00005279 fi
5280else
Tim Rice648f8762011-01-26 12:38:57 -08005281 AC_DEFINE_UNQUOTED([CONF_WTMPX_FILE], ["$conf_wtmpx_location"],
Tim Rice7df8d392005-09-19 09:33:39 -07005282 [Define if you want to specify the path to your wtmpx file])
Tim Riceeae17cc2005-03-17 16:52:20 -08005283fi
andre2ff7b5d2000-06-03 14:57:40 +00005284
Damien Miller4018c192000-04-30 09:30:44 +10005285
Damien Miller29ea30d2000-03-17 10:54:15 +11005286if test ! -z "$blibpath" ; then
Damien Millereab4bae2003-04-29 23:22:40 +10005287 LDFLAGS="$LDFLAGS $blibflags$blibpath"
5288 AC_MSG_WARN([Please check and edit blibpath in LDFLAGS in Makefile])
Damien Miller29ea30d2000-03-17 10:54:15 +11005289fi
5290
Damien Millera2438bb2013-03-15 10:23:07 +11005291AC_CHECK_MEMBER([struct lastlog.ll_line], [], [
Tim Riceaa86c392013-03-16 20:55:46 -07005292 if test x$SKIP_DISABLE_LASTLOG_DEFINE != "xyes" ; then
Damien Millera2438bb2013-03-15 10:23:07 +11005293 AC_DEFINE([DISABLE_LASTLOG])
Tim Riceaa86c392013-03-16 20:55:46 -07005294 fi
Damien Millera2438bb2013-03-15 10:23:07 +11005295 ], [
5296#ifdef HAVE_SYS_TYPES_H
5297#include <sys/types.h>
5298#endif
5299#ifdef HAVE_UTMP_H
5300#include <utmp.h>
5301#endif
5302#ifdef HAVE_UTMPX_H
5303#include <utmpx.h>
5304#endif
5305#ifdef HAVE_LASTLOG_H
5306#include <lastlog.h>
5307#endif
5308 ])
5309
5310AC_CHECK_MEMBER([struct utmp.ut_line], [], [
5311 AC_DEFINE([DISABLE_UTMP])
5312 AC_DEFINE([DISABLE_WTMP])
5313 ], [
5314#ifdef HAVE_SYS_TYPES_H
5315#include <sys/types.h>
5316#endif
5317#ifdef HAVE_UTMP_H
5318#include <utmp.h>
5319#endif
5320#ifdef HAVE_UTMPX_H
5321#include <utmpx.h>
5322#endif
5323#ifdef HAVE_LASTLOG_H
5324#include <lastlog.h>
5325#endif
5326 ])
5327
Darren Tucker7da23cb2005-08-03 00:20:15 +10005328dnl Adding -Werror to CFLAGS early prevents configure tests from running.
5329dnl Add now.
5330CFLAGS="$CFLAGS $werror_flags"
5331
Darren Tucker627337d2010-04-10 22:58:01 +10005332if test "x$ac_cv_func_getaddrinfo" != "xyes" ; then
5333 TEST_SSH_IPV6=no
5334else
5335 TEST_SSH_IPV6=yes
5336fi
Tim Rice648f8762011-01-26 12:38:57 -08005337AC_CHECK_DECL([BROKEN_GETADDRINFO], [TEST_SSH_IPV6=no])
5338AC_SUBST([TEST_SSH_IPV6], [$TEST_SSH_IPV6])
Darren Tucker47b8c992016-12-08 15:48:34 +11005339AC_SUBST([TEST_SSH_UTF8], [$TEST_SSH_UTF8])
Darren Tucker882abfd2013-11-09 00:17:41 +11005340AC_SUBST([TEST_MALLOC_OPTIONS], [$TEST_MALLOC_OPTIONS])
Darren Tucker6d8bd572013-06-11 11:26:10 +10005341AC_SUBST([UNSUPPORTED_ALGORITHMS], [$unsupported_algorithms])
Darren Tucker79c0e1d2017-12-11 14:38:33 +11005342AC_SUBST([DEPEND], [$(cat $srcdir/.depend)])
Darren Tucker5d376902008-06-11 04:15:05 +10005343
Damien Millerde35c382017-09-08 12:38:31 +10005344CFLAGS="${CFLAGS} ${CFLAGS_AFTER}"
5345LDFLAGS="${LDFLAGS} ${LDFLAGS_AFTER}"
5346
Damien Miller44384812019-11-29 15:10:21 +11005347# Make a copy of CFLAGS/LDFLAGS without PIE options.
5348LDFLAGS_NOPIE=`echo "$LDFLAGS" | sed 's/ -pie//'`
Damien Millerb2180552019-11-29 12:32:23 +11005349CFLAGS_NOPIE=`echo "$CFLAGS" | sed 's/ -fPIE//'`
Damien Miller44384812019-11-29 15:10:21 +11005350AC_SUBST([LDFLAGS_NOPIE])
Damien Millerb2180552019-11-29 12:32:23 +11005351AC_SUBST([CFLAGS_NOPIE])
5352
Damien Millerbac2d8a2000-09-05 16:13:06 +11005353AC_EXEEXT
Damien Miller223897a2006-09-12 21:54:10 +10005354AC_CONFIG_FILES([Makefile buildpkg.sh opensshd.init openssh.xml \
5355 openbsd-compat/Makefile openbsd-compat/regress/Makefile \
Damien Millerf22019b2011-05-05 13:48:37 +10005356 survey.sh])
Tim Rice13aae5e2001-10-21 17:53:58 -07005357AC_OUTPUT
Damien Miller0437b332000-05-02 09:56:41 +10005358
Damien Miller7b22d652000-06-18 14:07:04 +10005359# Print summary of options
5360
Damien Miller7b22d652000-06-18 14:07:04 +10005361# Someone please show me a better way :)
5362A=`eval echo ${prefix}` ; A=`eval echo ${A}`
5363B=`eval echo ${bindir}` ; B=`eval echo ${B}`
5364C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
5365D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
Kevin Stevese0f49142000-10-14 17:51:48 +00005366E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
Ben Lindstrombc709922001-04-18 18:04:21 +00005367F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
Damien Miller7b22d652000-06-18 14:07:04 +10005368G=`eval echo ${piddir}` ; G=`eval echo ${G}`
Damien Millerf58c6722002-05-13 13:15:42 +10005369H=`eval echo ${PRIVSEP_PATH}` ; H=`eval echo ${H}`
5370I=`eval echo ${user_path}` ; I=`eval echo ${I}`
5371J=`eval echo ${superuser_path}` ; J=`eval echo ${J}`
Damien Miller7b22d652000-06-18 14:07:04 +10005372
5373echo ""
Kevin Steves393d2f72001-04-08 22:50:43 +00005374echo "OpenSSH has been configured with the following options:"
Damien Millerf58c6722002-05-13 13:15:42 +10005375echo " User binaries: $B"
5376echo " System binaries: $C"
5377echo " Configuration files: $D"
5378echo " Askpass program: $E"
5379echo " Manual pages: $F"
5380echo " PID file: $G"
5381echo " Privilege separation chroot path: $H"
Darren Tuckere1a790d2003-09-16 11:52:19 +10005382if test "x$external_path_file" = "x/etc/login.conf" ; then
5383echo " At runtime, sshd will use the path defined in $external_path_file"
5384echo " Make sure the path to scp is present, otherwise scp will not work"
Tim Rice43a1c132002-04-17 21:19:14 -07005385else
Damien Millerf58c6722002-05-13 13:15:42 +10005386echo " sshd default user PATH: $I"
Tim Riceb925b4b2003-09-15 22:40:49 -07005387 if test ! -z "$external_path_file"; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10005388echo " (If PATH is set in $external_path_file it will be used instead. If"
5389echo " used, ensure the path to scp is present, otherwise scp will not work.)"
5390 fi
Tim Rice43a1c132002-04-17 21:19:14 -07005391fi
Damien Millera18bbd32002-05-13 10:48:57 +10005392if test ! -z "$superuser_path" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10005393echo " sshd superuser user PATH: $J"
Damien Millera18bbd32002-05-13 10:48:57 +10005394fi
Damien Millerf58c6722002-05-13 13:15:42 +10005395echo " Manpage format: $MANTYPE"
Damien Miller7abe09b2003-05-15 10:53:49 +10005396echo " PAM support: $PAM_MSG"
Damien Miller1b06dc32006-08-31 03:24:41 +10005397echo " OSF SIA support: $SIA_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10005398echo " KerberosV support: $KRB5_MSG"
Damien Miller73b42d22006-04-22 21:26:08 +10005399echo " SELinux support: $SELINUX_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10005400echo " MD5 password support: $MD5_MSG"
Darren Tucker16bcc1c2004-11-07 20:14:34 +11005401echo " libedit support: $LIBEDIT_MSG"
Damien Miller523db852017-02-03 16:01:22 +11005402echo " libldns support: $LDNS_MSG"
Damien Miller1b06dc32006-08-31 03:24:41 +10005403echo " Solaris process contract support: $SPC_MSG"
Darren Tucker97528352010-11-05 12:03:05 +11005404echo " Solaris project support: $SP_MSG"
Damien Miller4626cba2016-01-08 14:24:56 +11005405echo " Solaris privilege support: $SPP_MSG"
Damien Miller903e1152002-05-13 14:41:31 +10005406echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10005407echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
5408echo " BSD Auth support: $BSD_AUTH_MSG"
5409echo " Random number source: $RAND_MSG"
Damien Miller69ff1df2011-06-23 08:30:03 +10005410echo " Privsep sandbox style: $SANDBOX_STYLE"
Damien Miller764d51e2019-11-01 13:34:49 +11005411echo " PKCS#11 support: $enable_pkcs11"
5412echo " U2F/FIDO support: $enable_sk"
Damien Miller60396b02001-02-18 17:01:00 +11005413
Damien Miller7b22d652000-06-18 14:07:04 +10005414echo ""
5415
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00005416echo " Host: ${host}"
5417echo " Compiler: ${CC}"
5418echo " Compiler flags: ${CFLAGS}"
5419echo "Preprocessor flags: ${CPPFLAGS}"
5420echo " Linker flags: ${LDFLAGS}"
Darren Tucker20e9f972007-03-25 18:26:01 +10005421echo " Libraries: ${LIBS}"
5422if test ! -z "${SSHDLIBS}"; then
5423echo " +for sshd: ${SSHDLIBS}"
5424fi
Damien Miller71adf122011-01-25 12:16:15 +11005425if test ! -z "${SSHLIBS}"; then
5426echo " +for ssh: ${SSHLIBS}"
5427fi
Damien Miller7b22d652000-06-18 14:07:04 +10005428
5429echo ""
5430
Tim Rice6f1f7582004-05-30 21:38:51 -07005431if test "x$MAKE_PACKAGE_SUPPORTED" = "xyes" ; then
Darren Tuckercf59d312004-08-29 21:18:09 +10005432 echo "SVR4 style packages are supported with \"make package\""
5433 echo ""
Tim Rice6f1f7582004-05-30 21:38:51 -07005434fi
5435
Damien Miller82cf0ce2000-12-20 13:34:48 +11005436if test "x$PAM_MSG" = "xyes" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11005437 echo "PAM is enabled. You may need to install a PAM control file "
5438 echo "for sshd, otherwise password authentication may fail. "
Damien Millera8e06ce2003-11-21 23:48:55 +11005439 echo "Example PAM control files can be found in the contrib/ "
Damien Miller6c21c512002-01-22 21:57:53 +11005440 echo "subdirectory"
Damien Miller6f9c3372000-10-25 10:06:04 +11005441 echo ""
5442fi
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00005443
Damien Millerb4097182004-05-23 14:09:40 +10005444if test ! -z "$NO_PEERCHECK" ; then
Darren Tucker164aa302007-03-21 21:39:57 +11005445 echo "WARNING: the operating system that you are using does not"
5446 echo "appear to support getpeereid(), getpeerucred() or the"
5447 echo "SO_PEERCRED getsockopt() option. These facilities are used to"
5448 echo "enforce security checks to prevent unauthorised connections to"
5449 echo "ssh-agent. Their absence increases the risk that a malicious"
5450 echo "user can connect to your agent."
Damien Millerb4097182004-05-23 14:09:40 +10005451 echo ""
5452fi
5453
Darren Tuckerd9f88912005-02-20 21:01:48 +11005454if test "$AUDIT_MODULE" = "bsm" ; then
5455 echo "WARNING: BSM audit support is currently considered EXPERIMENTAL."
5456 echo "See the Solaris section in README.platform for details."
5457fi