blob: 7cf6d61ddd7f49ea649486e72346b61c85c38dfb [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])
Damien Miller856799b2000-03-15 21:18:10 +110022AC_PROG_CC
Damien Miller76112de1999-12-21 11:18:08 +110023AC_CANONICAL_HOST
Damien Miller4df5c762001-02-28 08:14:22 +110024AC_C_BIGENDIAN
Damien Miller7f6ea021999-10-28 13:25:17 +100025
Damien Millera22ba012000-03-02 23:09:20 +110026# Checks for programs.
Darren Tucker167bd9c2003-09-07 12:34:54 +100027AC_PROG_AWK
Damien Millerab18c411999-11-11 10:40:23 +110028AC_PROG_CPP
Damien Miller7f6ea021999-10-28 13:25:17 +100029AC_PROG_RANLIB
Damien Millerd8087f61999-11-25 12:31:26 +110030AC_PROG_INSTALL
Tim Ricefd80ddc2006-02-02 19:11:56 -080031AC_PROG_EGREP
Darren Tucker6c8a2462017-12-01 17:11:47 +110032AC_PROG_MKDIR_P
Darren Tucker408f4c22015-04-17 09:39:58 +100033AC_CHECK_TOOLS([AR], [ar])
Tim Rice648f8762011-01-26 12:38:57 -080034AC_PATH_PROG([CAT], [cat])
35AC_PATH_PROG([KILL], [kill])
Tim Rice648f8762011-01-26 12:38:57 -080036AC_PATH_PROG([SED], [sed])
Tim Rice648f8762011-01-26 12:38:57 -080037AC_PATH_PROG([ENT], [ent])
38AC_SUBST([ENT])
39AC_PATH_PROG([TEST_MINUS_S_SH], [bash])
40AC_PATH_PROG([TEST_MINUS_S_SH], [ksh])
41AC_PATH_PROG([TEST_MINUS_S_SH], [sh])
42AC_PATH_PROG([SH], [sh])
43AC_PATH_PROG([GROFF], [groff])
44AC_PATH_PROG([NROFF], [nroff])
45AC_PATH_PROG([MANDOC], [mandoc])
46AC_SUBST([TEST_SHELL], [sh])
Damien Miller2e1b0821999-12-25 10:11:29 +110047
Damien Miller30a69e72011-01-04 08:16:27 +110048dnl select manpage formatter
49if test "x$MANDOC" != "x" ; then
50 MANFMT="$MANDOC"
51elif test "x$NROFF" != "x" ; then
52 MANFMT="$NROFF -mandoc"
53elif test "x$GROFF" != "x" ; then
54 MANFMT="$GROFF -mandoc -Tascii"
55else
56 AC_MSG_WARN([no manpage formatted found])
57 MANFMT="false"
58fi
Tim Rice648f8762011-01-26 12:38:57 -080059AC_SUBST([MANFMT])
Damien Miller30a69e72011-01-04 08:16:27 +110060
Tim Rice6f1f7582004-05-30 21:38:51 -070061dnl for buildpkg.sh
Tim Rice648f8762011-01-26 12:38:57 -080062AC_PATH_PROG([PATH_GROUPADD_PROG], [groupadd], [groupadd],
Tim Rice6f1f7582004-05-30 21:38:51 -070063 [/usr/sbin${PATH_SEPARATOR}/etc])
Tim Rice648f8762011-01-26 12:38:57 -080064AC_PATH_PROG([PATH_USERADD_PROG], [useradd], [useradd],
Tim Rice6f1f7582004-05-30 21:38:51 -070065 [/usr/sbin${PATH_SEPARATOR}/etc])
Tim Rice648f8762011-01-26 12:38:57 -080066AC_CHECK_PROG([MAKE_PACKAGE_SUPPORTED], [pkgmk], [yes], [no])
Darren Tuckerfbea7642006-01-30 00:22:39 +110067if test -x /sbin/sh; then
Tim Rice648f8762011-01-26 12:38:57 -080068 AC_SUBST([STARTUP_SCRIPT_SHELL], [/sbin/sh])
Darren Tuckerfbea7642006-01-30 00:22:39 +110069else
Tim Rice648f8762011-01-26 12:38:57 -080070 AC_SUBST([STARTUP_SCRIPT_SHELL], [/bin/sh])
Darren Tuckerfbea7642006-01-30 00:22:39 +110071fi
Tim Rice6f1f7582004-05-30 21:38:51 -070072
Damien Millere8bb4502001-09-25 16:39:35 +100073# System features
74AC_SYS_LARGEFILE
75
Damien Miller3f62aba2000-11-29 11:56:35 +110076if test -z "$AR" ; then
77 AC_MSG_ERROR([*** 'ar' missing, please install or fix your \$PATH ***])
78fi
79
Tim Rice648f8762011-01-26 12:38:57 -080080AC_PATH_PROG([PATH_PASSWD_PROG], [passwd])
Darren Tucker23bc8d02004-02-06 16:24:31 +110081if test ! -z "$PATH_PASSWD_PROG" ; then
Tim Rice648f8762011-01-26 12:38:57 -080082 AC_DEFINE_UNQUOTED([_PATH_PASSWD_PROG], ["$PATH_PASSWD_PROG"],
Tim Rice7df8d392005-09-19 09:33:39 -070083 [Full path of your "passwd" program])
Darren Tucker23bc8d02004-02-06 16:24:31 +110084fi
85
Damien Miller166bd442000-03-16 10:48:25 +110086if test -z "$LD" ; then
87 LD=$CC
88fi
Tim Rice648f8762011-01-26 12:38:57 -080089AC_SUBST([LD])
Tim Riceeae17cc2005-03-17 16:52:20 -080090
Damien Miller166bd442000-03-16 10:48:25 +110091AC_C_INLINE
Darren Tucker67b37032005-06-03 17:58:31 +100092
Tim Rice648f8762011-01-26 12:38:57 -080093AC_CHECK_DECL([LLONG_MAX], [have_llong_max=1], , [#include <limits.h>])
Damien Miller69ff1df2011-06-23 08:30:03 +100094AC_CHECK_DECL([SYSTR_POLICY_KILL], [have_systr_policy_kill=1], , [
95 #include <sys/types.h>
96 #include <sys/param.h>
97 #include <dev/systrace.h>
98])
99AC_CHECK_DECL([RLIMIT_NPROC],
100 [AC_DEFINE([HAVE_RLIMIT_NPROC], [], [sys/resource.h has RLIMIT_NPROC])], , [
101 #include <sys/types.h>
102 #include <sys/resource.h>
103])
Damien Millere0956e32012-04-04 11:27:54 +1000104AC_CHECK_DECL([PR_SET_NO_NEW_PRIVS], [have_linux_no_new_privs=1], , [
105 #include <sys/types.h>
106 #include <linux/prctl.h>
107])
Damien Miller868ea1e2014-01-17 16:47:04 +1100108
Damien Miller72ef7c12015-01-15 02:21:31 +1100109openssl=yes
Damien Miller72ef7c12015-01-15 02:21:31 +1100110AC_ARG_WITH([openssl],
111 [ --without-openssl Disable use of OpenSSL; use only limited internal crypto **EXPERIMENTAL** ],
Damien Miller76c04802015-01-13 19:38:18 +1100112 [ if test "x$withval" = "xno" ; then
Damien Miller72ef7c12015-01-15 02:21:31 +1100113 openssl=no
Damien Miller76c04802015-01-13 19:38:18 +1100114 fi
115 ]
116)
Damien Miller72ef7c12015-01-15 02:21:31 +1100117AC_MSG_CHECKING([whether OpenSSL will be used for cryptography])
118if test "x$openssl" = "xyes" ; then
119 AC_MSG_RESULT([yes])
120 AC_DEFINE_UNQUOTED([WITH_OPENSSL], [1], [use libcrypto for cryptography])
121else
122 AC_MSG_RESULT([no])
123fi
124
Darren Tuckerb7918af2008-03-09 11:34:23 +1100125use_stack_protector=1
Darren Tuckerfd994372014-01-17 09:53:24 +1100126use_toolchain_hardening=1
Tim Rice648f8762011-01-26 12:38:57 -0800127AC_ARG_WITH([stackprotect],
Damien Millerda3155e2008-03-27 12:30:18 +1100128 [ --without-stackprotect Don't use compiler's stack protection], [
Darren Tuckerb7918af2008-03-09 11:34:23 +1100129 if test "x$withval" = "xno"; then
130 use_stack_protector=0
131 fi ])
Darren Tuckerfd994372014-01-17 09:53:24 +1100132AC_ARG_WITH([hardening],
133 [ --without-hardening Don't use toolchain hardening flags], [
134 if test "x$withval" = "xno"; then
Darren Tuckerfd994372014-01-17 09:53:24 +1100135 use_toolchain_hardening=0
136 fi ])
Darren Tuckerb7918af2008-03-09 11:34:23 +1100137
Darren Tuckerfd994372014-01-17 09:53:24 +1100138# We use -Werror for the tests only so that we catch warnings like "this is
139# on by default" for things like -fPIE.
140AC_MSG_CHECKING([if $CC supports -Werror])
141saved_CFLAGS="$CFLAGS"
142CFLAGS="$CFLAGS -Werror"
143AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int main(void) { return 0; }]])],
144 [ AC_MSG_RESULT([yes])
145 WERROR="-Werror"],
146 [ AC_MSG_RESULT([no])
147 WERROR="" ]
148)
149CFLAGS="$saved_CFLAGS"
Damien Miller134d02a2011-01-12 16:00:37 +1100150
Damien Millera8e06ce2003-11-21 23:48:55 +1100151if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
Darren Tuckerd9048862017-03-31 11:04:43 +1100152 OSSH_CHECK_CFLAG_COMPILE([-pipe])
Darren Tuckerfd994372014-01-17 09:53:24 +1100153 OSSH_CHECK_CFLAG_COMPILE([-Qunused-arguments])
154 OSSH_CHECK_CFLAG_COMPILE([-Wunknown-warning-option])
Damien Millerb1763622011-05-20 11:45:25 +1000155 OSSH_CHECK_CFLAG_COMPILE([-Wall])
156 OSSH_CHECK_CFLAG_COMPILE([-Wpointer-arith])
157 OSSH_CHECK_CFLAG_COMPILE([-Wuninitialized])
158 OSSH_CHECK_CFLAG_COMPILE([-Wsign-compare])
159 OSSH_CHECK_CFLAG_COMPILE([-Wformat-security])
Darren Tuckerabbc7a72013-05-10 13:54:23 +1000160 OSSH_CHECK_CFLAG_COMPILE([-Wsizeof-pointer-memaccess])
Damien Millerb1763622011-05-20 11:45:25 +1000161 OSSH_CHECK_CFLAG_COMPILE([-Wpointer-sign], [-Wno-pointer-sign])
162 OSSH_CHECK_CFLAG_COMPILE([-Wunused-result], [-Wno-unused-result])
163 OSSH_CHECK_CFLAG_COMPILE([-fno-strict-aliasing])
Darren Tuckerfd994372014-01-17 09:53:24 +1100164 if test "x$use_toolchain_hardening" = "x1"; then
Darren Tucker3377df02018-02-11 09:32:37 +1100165 OSSH_CHECK_CFLAG_COMPILE([-mfunction-return=thunk]) # gcc
166 OSSH_CHECK_CFLAG_COMPILE([-mindirect-branch=thunk]) # gcc
167 OSSH_CHECK_CFLAG_COMPILE([-mretpoline]) # clang
Darren Tucker174bed62018-02-13 18:12:47 +1100168 OSSH_CHECK_LDFLAG_LINK([-Wl,-z,retpolineplt])
Damien Miller161af8f2017-09-19 10:18:56 +1000169 OSSH_CHECK_CFLAG_COMPILE([-D_FORTIFY_SOURCE=2])
Darren Tuckerfd994372014-01-17 09:53:24 +1100170 OSSH_CHECK_LDFLAG_LINK([-Wl,-z,relro])
171 OSSH_CHECK_LDFLAG_LINK([-Wl,-z,now])
172 OSSH_CHECK_LDFLAG_LINK([-Wl,-z,noexecstack])
Damien Miller5c2ff5e2014-01-22 21:30:12 +1100173 # NB. -ftrapv expects certain support functions to be present in
174 # the compiler library (libgcc or similar) to detect integer operations
175 # that can overflow. We must check that the result of enabling it
176 # actually links. The test program compiled/linked includes a number
177 # of integer operations that should exercise this.
178 OSSH_CHECK_CFLAG_LINK([-ftrapv])
Darren Tuckerfd994372014-01-17 09:53:24 +1100179 fi
Tim Rice648f8762011-01-26 12:38:57 -0800180 AC_MSG_CHECKING([gcc version])
Darren Tucker3f9545e2005-11-12 15:20:52 +1100181 GCC_VER=`$CC -v 2>&1 | $AWK '/gcc version /{print $3}'`
Tim Rice3db1e3f2005-08-23 17:11:26 -0700182 case $GCC_VER in
Darren Tucker391de5c2007-04-29 14:49:21 +1000183 1.*) no_attrib_nonnull=1 ;;
184 2.8* | 2.9*)
Darren Tucker391de5c2007-04-29 14:49:21 +1000185 no_attrib_nonnull=1
186 ;;
187 2.*) no_attrib_nonnull=1 ;;
Darren Tuckerf0324352005-11-10 21:30:36 +1100188 *) ;;
Tim Rice3db1e3f2005-08-23 17:11:26 -0700189 esac
Tim Rice648f8762011-01-26 12:38:57 -0800190 AC_MSG_RESULT([$GCC_VER])
Damien Millerde3cb0a2005-05-26 20:48:25 +1000191
Tim Rice648f8762011-01-26 12:38:57 -0800192 AC_MSG_CHECKING([if $CC accepts -fno-builtin-memset])
Darren Tucker330c93f2008-06-16 02:27:48 +1000193 saved_CFLAGS="$CFLAGS"
194 CFLAGS="$CFLAGS -fno-builtin-memset"
Tim Rice648f8762011-01-26 12:38:57 -0800195 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <string.h> ]],
196 [[ char b[10]; memset(b, 0, sizeof(b)); ]])],
197 [ AC_MSG_RESULT([yes]) ],
198 [ AC_MSG_RESULT([no])
Darren Tucker330c93f2008-06-16 02:27:48 +1000199 CFLAGS="$saved_CFLAGS" ]
Tim Rice648f8762011-01-26 12:38:57 -0800200 )
Darren Tucker330c93f2008-06-16 02:27:48 +1000201
Darren Tuckerb7918af2008-03-09 11:34:23 +1100202 # -fstack-protector-all doesn't always work for some GCC versions
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100203 # and/or platforms, so we test if we can. If it's not supported
Damien Miller7df2e402008-12-08 09:35:36 +1100204 # on a given platform gcc will emit a warning so we use -Werror.
Darren Tuckerb7918af2008-03-09 11:34:23 +1100205 if test "x$use_stack_protector" = "x1"; then
Darren Tuckerfd994372014-01-17 09:53:24 +1100206 for t in -fstack-protector-strong -fstack-protector-all \
207 -fstack-protector; do
Tim Rice648f8762011-01-26 12:38:57 -0800208 AC_MSG_CHECKING([if $CC supports $t])
Darren Tuckerb7918af2008-03-09 11:34:23 +1100209 saved_CFLAGS="$CFLAGS"
210 saved_LDFLAGS="$LDFLAGS"
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100211 CFLAGS="$CFLAGS $t -Werror"
212 LDFLAGS="$LDFLAGS $t -Werror"
213 AC_LINK_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -0800214 [AC_LANG_PROGRAM([[ #include <stdio.h> ]],
215 [[
216 char x[256];
217 snprintf(x, sizeof(x), "XXX");
218 ]])],
219 [ AC_MSG_RESULT([yes])
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100220 CFLAGS="$saved_CFLAGS $t"
221 LDFLAGS="$saved_LDFLAGS $t"
Tim Rice648f8762011-01-26 12:38:57 -0800222 AC_MSG_CHECKING([if $t works])
Darren Tuckerb7918af2008-03-09 11:34:23 +1100223 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -0800224 [AC_LANG_PROGRAM([[ #include <stdio.h> ]],
225 [[
226 char x[256];
227 snprintf(x, sizeof(x), "XXX");
228 ]])],
229 [ AC_MSG_RESULT([yes])
Darren Tuckerb7918af2008-03-09 11:34:23 +1100230 break ],
Tim Rice648f8762011-01-26 12:38:57 -0800231 [ AC_MSG_RESULT([no]) ],
Darren Tuckerb7918af2008-03-09 11:34:23 +1100232 [ AC_MSG_WARN([cross compiling: cannot test])
233 break ]
Darren Tuckerfe1cf972008-03-09 22:50:50 +1100234 )
Darren Tuckerb7918af2008-03-09 11:34:23 +1100235 ],
Tim Rice648f8762011-01-26 12:38:57 -0800236 [ AC_MSG_RESULT([no]) ]
Darren Tuckerb7918af2008-03-09 11:34:23 +1100237 )
238 CFLAGS="$saved_CFLAGS"
239 LDFLAGS="$saved_LDFLAGS"
240 done
241 fi
Darren Tucker319b3d92007-12-02 21:02:22 +1100242
Darren Tucker67b37032005-06-03 17:58:31 +1000243 if test -z "$have_llong_max"; then
244 # retry LLONG_MAX with -std=gnu99, needed on some Linuxes
245 unset ac_cv_have_decl_LLONG_MAX
246 saved_CFLAGS="$CFLAGS"
247 CFLAGS="$CFLAGS -std=gnu99"
Tim Rice648f8762011-01-26 12:38:57 -0800248 AC_CHECK_DECL([LLONG_MAX],
Darren Tucker67b37032005-06-03 17:58:31 +1000249 [have_llong_max=1],
250 [CFLAGS="$saved_CFLAGS"],
251 [#include <limits.h>]
252 )
253 fi
Damien Miller166bd442000-03-16 10:48:25 +1100254fi
255
Darren Tucker951b53b2013-02-08 11:50:09 +1100256AC_MSG_CHECKING([if compiler allows __attribute__ on return types])
257AC_COMPILE_IFELSE(
258 [AC_LANG_PROGRAM([[
259#include <stdlib.h>
260__attribute__((__unused__)) static void foo(void){return;}]],
261 [[ exit(0); ]])],
262 [ AC_MSG_RESULT([yes]) ],
263 [ AC_MSG_RESULT([no])
264 AC_DEFINE(NO_ATTRIBUTE_ON_RETURN_TYPE, 1,
265 [compiler does not accept __attribute__ on return types]) ]
266)
267
Darren Tucker1323f122018-02-27 08:41:25 +1100268AC_MSG_CHECKING([if compiler allows __attribute__ prototype args])
269AC_COMPILE_IFELSE(
270 [AC_LANG_PROGRAM([[
271#include <stdlib.h>
272typedef void foo(const char *, ...) __attribute__((format(printf, 1, 2)));]],
273 [[ exit(0); ]])],
274 [ AC_MSG_RESULT([yes]) ],
275 [ AC_MSG_RESULT([no])
276 AC_DEFINE(NO_ATTRIBUTE_ON_PROTOTYPE_ARGS, 1,
Damien Miller10479cc2018-04-10 10:19:02 +1000277 [compiler does not accept __attribute__ on prototype args]) ]
Darren Tucker1323f122018-02-27 08:41:25 +1100278)
279
Darren Tucker391de5c2007-04-29 14:49:21 +1000280if test "x$no_attrib_nonnull" != "x1" ; then
Tim Rice648f8762011-01-26 12:38:57 -0800281 AC_DEFINE([HAVE_ATTRIBUTE__NONNULL__], [1], [Have attribute nonnull])
Darren Tucker391de5c2007-04-29 14:49:21 +1000282fi
283
Tim Rice648f8762011-01-26 12:38:57 -0800284AC_ARG_WITH([rpath],
Tim Rice88368a32003-12-08 12:35:59 -0800285 [ --without-rpath Disable auto-added -R linker paths],
286 [
Tim Riceeae17cc2005-03-17 16:52:20 -0800287 if test "x$withval" = "xno" ; then
Tim Rice88368a32003-12-08 12:35:59 -0800288 need_dash_r=""
289 fi
290 if test "x$withval" = "xyes" ; then
291 need_dash_r=1
292 fi
293 ]
294)
295
Tim Rice1cfab232006-10-03 09:34:35 -0700296# Allow user to specify flags
Tim Rice648f8762011-01-26 12:38:57 -0800297AC_ARG_WITH([cflags],
Tim Rice1cfab232006-10-03 09:34:35 -0700298 [ --with-cflags Specify additional flags to pass to compiler],
299 [
300 if test -n "$withval" && test "x$withval" != "xno" && \
301 test "x${withval}" != "xyes"; then
302 CFLAGS="$CFLAGS $withval"
303 fi
304 ]
305)
Damien Millerde35c382017-09-08 12:38:31 +1000306
307AC_ARG_WITH([cflags-after],
308 [ --with-cflags-after Specify additional flags to pass to compiler after configure],
309 [
310 if test -n "$withval" && test "x$withval" != "xno" && \
311 test "x${withval}" != "xyes"; then
312 CFLAGS_AFTER="$withval"
313 fi
314 ]
315)
Tim Rice648f8762011-01-26 12:38:57 -0800316AC_ARG_WITH([cppflags],
Tim Rice1cfab232006-10-03 09:34:35 -0700317 [ --with-cppflags Specify additional flags to pass to preprocessor] ,
318 [
319 if test -n "$withval" && test "x$withval" != "xno" && \
320 test "x${withval}" != "xyes"; then
321 CPPFLAGS="$CPPFLAGS $withval"
322 fi
323 ]
324)
Tim Rice648f8762011-01-26 12:38:57 -0800325AC_ARG_WITH([ldflags],
Tim Rice1cfab232006-10-03 09:34:35 -0700326 [ --with-ldflags Specify additional flags to pass to linker],
327 [
328 if test -n "$withval" && test "x$withval" != "xno" && \
329 test "x${withval}" != "xyes"; then
330 LDFLAGS="$LDFLAGS $withval"
331 fi
332 ]
333)
Damien Millerde35c382017-09-08 12:38:31 +1000334AC_ARG_WITH([ldflags-after],
335 [ --with-ldflags-after Specify additional flags to pass to linker after configure],
336 [
337 if test -n "$withval" && test "x$withval" != "xno" && \
338 test "x${withval}" != "xyes"; then
339 LDFLAGS_AFTER="$withval"
340 fi
341 ]
342)
Tim Rice648f8762011-01-26 12:38:57 -0800343AC_ARG_WITH([libs],
Tim Rice1cfab232006-10-03 09:34:35 -0700344 [ --with-libs Specify additional libraries to link with],
345 [
346 if test -n "$withval" && test "x$withval" != "xno" && \
347 test "x${withval}" != "xyes"; then
348 LIBS="$LIBS $withval"
349 fi
350 ]
351)
Tim Rice648f8762011-01-26 12:38:57 -0800352AC_ARG_WITH([Werror],
Tim Rice1cfab232006-10-03 09:34:35 -0700353 [ --with-Werror Build main code with -Werror],
354 [
355 if test -n "$withval" && test "x$withval" != "xno"; then
356 werror_flags="-Werror"
357 if test "x${withval}" != "xyes"; then
358 werror_flags="$withval"
359 fi
360 fi
361 ]
362)
363
Tim Rice648f8762011-01-26 12:38:57 -0800364AC_CHECK_HEADERS([ \
Damien Miller1ff130d2013-12-07 11:51:51 +1100365 blf.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700366 bstring.h \
367 crypt.h \
368 crypto/sha2.h \
369 dirent.h \
370 endian.h \
Damien Miller91f40d82013-02-22 11:37:00 +1100371 elf.h \
Darren Tucker6310ef22016-07-13 14:42:35 +1000372 err.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700373 features.h \
374 fcntl.h \
375 floatingpoint.h \
376 getopt.h \
377 glob.h \
378 ia.h \
379 iaf.h \
Darren Tuckerb59162d2018-02-23 15:20:42 +1100380 ifaddrs.h \
Darren Tucker6d725682014-01-17 19:17:34 +1100381 inttypes.h \
Darren Tuckerf3f2cc82016-07-11 17:23:38 +1000382 langinfo.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700383 limits.h \
Darren Tuckerae133d42013-06-06 08:30:20 +1000384 locale.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700385 login.h \
386 maillock.h \
387 ndir.h \
388 net/if_tun.h \
389 netdb.h \
390 netgroup.h \
391 pam/pam_appl.h \
392 paths.h \
Darren Tuckerfebf0f52007-06-25 22:15:12 +1000393 poll.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700394 pty.h \
395 readpassphrase.h \
396 rpc/types.h \
397 security/pam_appl.h \
398 sha2.h \
399 shadow.h \
400 stddef.h \
401 stdint.h \
402 string.h \
403 strings.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700404 sys/bitypes.h \
405 sys/bsdtty.h \
406 sys/cdefs.h \
407 sys/dir.h \
Damien Millerf8854742018-02-26 12:18:14 +1100408 sys/file.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700409 sys/mman.h \
Darren Tuckerce066f62018-02-22 20:45:09 +1100410 sys/label.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700411 sys/ndir.h \
Darren Tucker7c92a652007-09-27 07:00:09 +1000412 sys/poll.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700413 sys/prctl.h \
414 sys/pstat.h \
Darren Tucker5ee3fb52016-11-01 08:12:33 +1100415 sys/ptrace.h \
Damien Millerafa6e792018-04-13 13:31:42 +1000416 sys/random.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700417 sys/select.h \
418 sys/stat.h \
419 sys/stream.h \
420 sys/stropts.h \
421 sys/strtio.h \
Darren Tucker5b2e2ba2008-06-08 09:25:28 +1000422 sys/statvfs.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700423 sys/sysmacros.h \
424 sys/time.h \
425 sys/timers.h \
Darren Tucker11057562018-02-25 11:22:57 +1100426 sys/vfs.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700427 time.h \
428 tmpdir.h \
429 ttyent.h \
Tim Riceaa8954f2007-05-09 15:57:43 -0700430 ucred.h \
Tim Rice1cfab232006-10-03 09:34:35 -0700431 unistd.h \
432 usersec.h \
433 util.h \
434 utime.h \
435 utmp.h \
436 utmpx.h \
437 vis.h \
Darren Tuckerf3f2cc82016-07-11 17:23:38 +1000438 wchar.h \
Tim Rice648f8762011-01-26 12:38:57 -0800439])
Tim Rice1cfab232006-10-03 09:34:35 -0700440
Darren Tuckerce066f62018-02-22 20:45:09 +1100441# On some platforms (eg SunOS4) sys/audit.h requires sys/[time|types|label.h]
442# to be included first.
443AC_CHECK_HEADERS([sys/audit.h], [], [], [
444#ifdef HAVE_SYS_TIME_H
445# include <sys/time.h>
446#endif
447#ifdef HAVE_SYS_TYPES_H
448# include <sys/types.h>
449#endif
450#ifdef HAVE_SYS_LABEL_H
451# include <sys/label.h>
452#endif
453])
454
Darren Tuckerdd9d9b32017-08-28 16:48:27 +1000455# sys/capsicum.h requires sys/types.h
456AC_CHECK_HEADERS([sys/capsicum.h], [], [], [
457#ifdef HAVE_SYS_TYPES_H
458# include <sys/types.h>
459#endif
460])
461
Darren Tuckerfa1b8342017-11-03 14:09:45 +1100462# net/route.h requires sys/socket.h and sys/types.h.
463# sys/sysctl.h also requires sys/param.h
464AC_CHECK_HEADERS([net/route.h sys/sysctl.h], [], [], [
465#ifdef HAVE_SYS_TYPES_H
466# include <sys/types.h>
467#endif
468#include <sys/param.h>
Damien Miller32354732017-10-25 11:25:43 +1100469#include <sys/socket.h>
470])
471
Tim Rice1cfab232006-10-03 09:34:35 -0700472# lastlog.h requires sys/time.h to be included first on Solaris
Tim Rice648f8762011-01-26 12:38:57 -0800473AC_CHECK_HEADERS([lastlog.h], [], [], [
Tim Rice1cfab232006-10-03 09:34:35 -0700474#ifdef HAVE_SYS_TIME_H
475# include <sys/time.h>
476#endif
477])
478
479# sys/ptms.h requires sys/stream.h to be included first on Solaris
Tim Rice648f8762011-01-26 12:38:57 -0800480AC_CHECK_HEADERS([sys/ptms.h], [], [], [
Tim Rice1cfab232006-10-03 09:34:35 -0700481#ifdef HAVE_SYS_STREAM_H
482# include <sys/stream.h>
483#endif
484])
485
486# login_cap.h requires sys/types.h on NetBSD
Tim Rice648f8762011-01-26 12:38:57 -0800487AC_CHECK_HEADERS([login_cap.h], [], [], [
Tim Rice1cfab232006-10-03 09:34:35 -0700488#include <sys/types.h>
489])
490
Darren Tuckerc4b22ca2009-07-12 21:56:29 +1000491# older BSDs need sys/param.h before sys/mount.h
Tim Rice648f8762011-01-26 12:38:57 -0800492AC_CHECK_HEADERS([sys/mount.h], [], [], [
Darren Tuckerc4b22ca2009-07-12 21:56:29 +1000493#include <sys/param.h>
494])
495
Darren Tuckeref4901c2013-06-03 01:59:13 +1000496# Android requires sys/socket.h to be included before sys/un.h
497AC_CHECK_HEADERS([sys/un.h], [], [], [
Darren Tucker0b43ffe2013-06-03 09:30:44 +1000498#include <sys/types.h>
Darren Tucker16cac192013-06-04 12:55:24 +1000499#include <sys/socket.h>
Darren Tuckeref4901c2013-06-03 01:59:13 +1000500])
501
Damien Miller1b06dc32006-08-31 03:24:41 +1000502# Messages for features tested for in target-specific section
503SIA_MSG="no"
504SPC_MSG="no"
Darren Tucker97528352010-11-05 12:03:05 +1100505SP_MSG="no"
Damien Miller4626cba2016-01-08 14:24:56 +1100506SPP_MSG="no"
507
508# Support for Solaris/Illumos privileges (this test is used by both
509# the --with-solaris-privs option and --with-sandbox=solaris).
510SOLARIS_PRIVS="no"
Damien Miller1b06dc32006-08-31 03:24:41 +1000511
Damien Millera22ba012000-03-02 23:09:20 +1100512# Check for some target-specific stuff
Damien Miller76112de1999-12-21 11:18:08 +1100513case "$host" in
Damien Miller75b1d102000-01-07 14:01:41 +1100514*-*-aix*)
Darren Tucker9216c372006-09-18 23:17:40 +1000515 # Some versions of VAC won't allow macro redefinitions at
516 # -qlanglevel=ansi, and autoconf 2.60 sometimes insists on using that
517 # particularly with older versions of vac or xlc.
Damien Miller10479cc2018-04-10 10:19:02 +1000518 # It also throws errors about null macro arguments, but these are
Darren Tucker9216c372006-09-18 23:17:40 +1000519 # not fatal.
Tim Rice648f8762011-01-26 12:38:57 -0800520 AC_MSG_CHECKING([if compiler allows macro redefinitions])
Darren Tucker9216c372006-09-18 23:17:40 +1000521 AC_COMPILE_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -0800522 [AC_LANG_PROGRAM([[
Darren Tucker9216c372006-09-18 23:17:40 +1000523#define testmacro foo
Tim Rice648f8762011-01-26 12:38:57 -0800524#define testmacro bar]],
525 [[ exit(0); ]])],
526 [ AC_MSG_RESULT([yes]) ],
527 [ AC_MSG_RESULT([no])
Darren Tucker9216c372006-09-18 23:17:40 +1000528 CC="`echo $CC | sed 's/-qlanglvl\=ansi//g'`"
529 LD="`echo $LD | sed 's/-qlanglvl\=ansi//g'`"
530 CFLAGS="`echo $CFLAGS | sed 's/-qlanglvl\=ansi//g'`"
531 CPPFLAGS="`echo $CPPFLAGS | sed 's/-qlanglvl\=ansi//g'`"
532 ]
533 )
534
Damien Millera8e06ce2003-11-21 23:48:55 +1100535 AC_MSG_CHECKING([how to specify blibpath for linker ($LD)])
Damien Millereab4bae2003-04-29 23:22:40 +1000536 if (test -z "$blibpath"); then
Tim Ricefcb62202004-01-23 18:35:16 -0800537 blibpath="/usr/lib:/lib"
Damien Miller29ea30d2000-03-17 10:54:15 +1100538 fi
Damien Millereab4bae2003-04-29 23:22:40 +1000539 saved_LDFLAGS="$LDFLAGS"
Darren Tuckerbdc12122006-07-06 11:56:25 +1000540 if test "$GCC" = "yes"; then
541 flags="-Wl,-blibpath: -Wl,-rpath, -blibpath:"
542 else
543 flags="-blibpath: -Wl,-blibpath: -Wl,-rpath,"
544 fi
545 for tryflags in $flags ;do
Damien Millereab4bae2003-04-29 23:22:40 +1000546 if (test -z "$blibflags"); then
547 LDFLAGS="$saved_LDFLAGS $tryflags$blibpath"
Tim Rice648f8762011-01-26 12:38:57 -0800548 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
549 [blibflags=$tryflags], [])
Damien Millereab4bae2003-04-29 23:22:40 +1000550 fi
551 done
552 if (test -z "$blibflags"); then
Tim Rice648f8762011-01-26 12:38:57 -0800553 AC_MSG_RESULT([not found])
Damien Millereab4bae2003-04-29 23:22:40 +1000554 AC_MSG_ERROR([*** must be able to specify blibpath on AIX - check config.log])
555 else
Tim Rice648f8762011-01-26 12:38:57 -0800556 AC_MSG_RESULT([$blibflags])
Damien Millereab4bae2003-04-29 23:22:40 +1000557 fi
558 LDFLAGS="$saved_LDFLAGS"
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000559 dnl Check for authenticate. Might be in libs.a on older AIXes
Tim Rice648f8762011-01-26 12:38:57 -0800560 AC_CHECK_FUNC([authenticate], [AC_DEFINE([WITH_AIXAUTHENTICATE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700561 [Define if you want to enable AIX4's authenticate function])],
Tim Rice648f8762011-01-26 12:38:57 -0800562 [AC_CHECK_LIB([s], [authenticate],
563 [ AC_DEFINE([WITH_AIXAUTHENTICATE])
Tim Ricee958ed32002-07-05 07:12:33 -0700564 LIBS="$LIBS -ls"
565 ])
566 ])
Darren Tucker3c774c52005-02-16 22:49:31 +1100567 dnl Check for various auth function declarations in headers.
Darren Tucker04cfbe02005-02-20 23:27:11 +1100568 AC_CHECK_DECLS([authenticate, loginrestrictions, loginsuccess,
Darren Tuckere66519d2005-03-21 22:46:34 +1100569 passwdexpired, setauthdb], , , [#include <usersec.h>])
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000570 dnl Check if loginfailed is declared and takes 4 arguments (AIX >= 5.2)
Tim Rice648f8762011-01-26 12:38:57 -0800571 AC_CHECK_DECLS([loginfailed],
572 [AC_MSG_CHECKING([if loginfailed takes 4 arguments])
573 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <usersec.h> ]],
574 [[ (void)loginfailed("user","host","tty",0); ]])],
575 [AC_MSG_RESULT([yes])
576 AC_DEFINE([AIX_LOGINFAILED_4ARG], [1],
577 [Define if your AIX loginfailed() function
578 takes 4 arguments (AIX >= 5.2)])], [AC_MSG_RESULT([no])
579 ])],
580 [],
581 [#include <usersec.h>]
Darren Tucker5c6a91a2003-07-14 16:21:44 +1000582 )
Tim Rice648f8762011-01-26 12:38:57 -0800583 AC_CHECK_FUNCS([getgrset setauthdb])
584 AC_CHECK_DECL([F_CLOSEM],
585 AC_DEFINE([HAVE_FCNTL_CLOSEM], [1], [Use F_CLOSEM fcntl for closefrom]),
Darren Tucker3083bc22006-08-17 19:35:49 +1000586 [],
587 [ #include <limits.h>
588 #include <fcntl.h> ]
589 )
Darren Tucker691d5232005-02-15 21:45:57 +1100590 check_for_aix_broken_getaddrinfo=1
Tim Rice648f8762011-01-26 12:38:57 -0800591 AC_DEFINE([BROKEN_REALPATH], [1], [Define if you have a broken realpath.])
592 AC_DEFINE([SETEUID_BREAKS_SETUID], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700593 [Define if your platform breaks doing a seteuid before a setuid])
Tim Rice648f8762011-01-26 12:38:57 -0800594 AC_DEFINE([BROKEN_SETREUID], [1], [Define if your setreuid() is broken])
595 AC_DEFINE([BROKEN_SETREGID], [1], [Define if your setregid() is broken])
andre60f3c982000-06-03 16:18:19 +0000596 dnl AIX handles lastlog as part of its login message
Tim Rice648f8762011-01-26 12:38:57 -0800597 AC_DEFINE([DISABLE_LASTLOG], [1], [Define if you don't want to use lastlog])
598 AC_DEFINE([LOGIN_NEEDS_UTMPX], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700599 [Some systems need a utmpx entry for /bin/login to work])
Tim Rice648f8762011-01-26 12:38:57 -0800600 AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV],
Tim Rice7df8d392005-09-19 09:33:39 -0700601 [Define to a Set Process Title type if your system is
602 supported by bsd-setproctitle.c])
Tim Rice648f8762011-01-26 12:38:57 -0800603 AC_DEFINE([SSHPAM_CHAUTHTOK_NEEDS_RUID], [1],
Darren Tucker91d25a02005-11-26 22:24:09 +1100604 [AIX 5.2 and 5.3 (and presumably newer) require this])
Tim Rice648f8762011-01-26 12:38:57 -0800605 AC_DEFINE([PTY_ZEROREAD], [1], [read(1) can return 0 for a non-closed fd])
Darren Tuckeraa97d132013-03-12 11:31:05 +1100606 AC_DEFINE([PLATFORM_SYS_DIR_UID], 2, [System dirs owned by bin (uid 2)])
Darren Tucker2c71ca12018-03-30 18:23:07 +1100607 AC_DEFINE([BROKEN_STRNDUP], 1, [strndup broken, see APAR IY61211])
608 AC_DEFINE([BROKEN_STRNLEN], 1, [strnlen broken, see APAR IY62551])
Damien Miller75b1d102000-01-07 14:01:41 +1100609 ;;
Darren Tucker898ac932013-06-03 02:03:25 +1000610*-*-android*)
611 AC_DEFINE([DISABLE_UTMP], [1], [Define if you don't want to use utmp])
612 AC_DEFINE([DISABLE_WTMP], [1], [Define if you don't want to use wtmp])
613 ;;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100614*-*-cygwin*)
Damien Millerc8936ac2003-02-11 10:04:03 +1100615 check_for_libcrypt_later=1
Darren Tucker573e3872007-03-02 17:50:03 +1100616 LIBS="$LIBS /usr/lib/textreadmode.o"
Tim Rice648f8762011-01-26 12:38:57 -0800617 AC_DEFINE([HAVE_CYGWIN], [1], [Define if you are on Cygwin])
618 AC_DEFINE([USE_PIPES], [1], [Use PIPES instead of a socketpair()])
Damien Miller4626cba2016-01-08 14:24:56 +1100619 AC_DEFINE([NO_UID_RESTORATION_TEST], [1],
620 [Define to disable UID restoration test])
Tim Rice648f8762011-01-26 12:38:57 -0800621 AC_DEFINE([DISABLE_SHADOW], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700622 [Define if you want to disable shadow passwords])
Tim Rice648f8762011-01-26 12:38:57 -0800623 AC_DEFINE([NO_X11_UNIX_SOCKETS], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700624 [Define if X11 doesn't support AF_UNIX sockets on that system])
Tim Rice648f8762011-01-26 12:38:57 -0800625 AC_DEFINE([DISABLE_FD_PASSING], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700626 [Define if your platform needs to skip post auth
627 file descriptor passing])
Tim Rice648f8762011-01-26 12:38:57 -0800628 AC_DEFINE([SSH_IOBUFSZ], [65535], [Windows is sensitive to read buffer size])
Darren Tuckerfdce3732014-01-18 21:12:42 +1100629 AC_DEFINE([FILESYSTEM_NO_BACKSLASH], [1], [File names may not contain backslash characters])
630 # Cygwin defines optargs, optargs as declspec(dllimport) for historical
631 # reasons which cause compile warnings, so we disable those warnings.
632 OSSH_CHECK_CFLAG_COMPILE([-Wno-attributes])
Damien Millerbac2d8a2000-09-05 16:13:06 +1100633 ;;
Ben Lindstrom58055132001-02-15 18:34:29 +0000634*-*-dgux*)
Tim Rice648f8762011-01-26 12:38:57 -0800635 AC_DEFINE([IP_TOS_IS_BROKEN], [1],
Tim Ricea74000e2009-03-18 11:25:02 -0700636 [Define if your system choked on IP TOS setting])
Tim Rice648f8762011-01-26 12:38:57 -0800637 AC_DEFINE([SETEUID_BREAKS_SETUID])
638 AC_DEFINE([BROKEN_SETREUID])
639 AC_DEFINE([BROKEN_SETREGID])
Ben Lindstrom58055132001-02-15 18:34:29 +0000640 ;;
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000641*-*-darwin*)
Damien Miller852472a2014-01-22 16:31:18 +1100642 use_pie=auto
Tim Rice648f8762011-01-26 12:38:57 -0800643 AC_MSG_CHECKING([if we have working getaddrinfo])
644 AC_RUN_IFELSE([AC_LANG_SOURCE([[ #include <mach-o/dyld.h>
Damien Millerfc93d4b2002-09-04 23:26:29 +1000645main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
646 exit(0);
647 else
648 exit(1);
Tim Rice648f8762011-01-26 12:38:57 -0800649}
650 ]])],
651 [AC_MSG_RESULT([working])],
652 [AC_MSG_RESULT([buggy])
653 AC_DEFINE([BROKEN_GETADDRINFO], [1],
654 [getaddrinfo is broken (if present)])
655 ],
656 [AC_MSG_RESULT([assume it is working])])
657 AC_DEFINE([SETEUID_BREAKS_SETUID])
658 AC_DEFINE([BROKEN_SETREUID])
659 AC_DEFINE([BROKEN_SETREGID])
660 AC_DEFINE([BROKEN_GLOB], [1], [OS X glob does not do what we expect])
661 AC_DEFINE_UNQUOTED([BIND_8_COMPAT], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700662 [Define if your resolver libs need this for getrrsetbyname])
Tim Rice648f8762011-01-26 12:38:57 -0800663 AC_DEFINE([SSH_TUN_FREEBSD], [1], [Open tunnel devices the FreeBSD way])
664 AC_DEFINE([SSH_TUN_COMPAT_AF], [1],
Darren Tucker3eb48342006-06-23 21:05:12 +1000665 [Use tunnel device compatibility to OpenBSD])
Tim Rice648f8762011-01-26 12:38:57 -0800666 AC_DEFINE([SSH_TUN_PREPEND_AF], [1],
Darren Tucker3eb48342006-06-23 21:05:12 +1000667 [Prepend the address family to IP tunnel traffic])
Tim Rice648f8762011-01-26 12:38:57 -0800668 m4_pattern_allow([AU_IPv])
Tim Ricee1d93702016-05-31 11:13:22 -0700669 AC_CHECK_DECL([AU_IPv4], [],
Tim Rice648f8762011-01-26 12:38:57 -0800670 AC_DEFINE([AU_IPv4], [0], [System only supports IPv4 audit records])
Darren Tuckeracada072008-02-25 21:05:04 +1100671 [#include <bsm/audit.h>]
Tim Rice648f8762011-01-26 12:38:57 -0800672 AC_DEFINE([LASTLOG_WRITE_PUTUTXLINE], [1],
Damien Miller20e231f2009-02-12 13:12:21 +1100673 [Define if pututxline updates lastlog too])
Darren Tuckeracada072008-02-25 21:05:04 +1100674 )
Damien Millerc09182f2011-06-03 12:11:38 +1000675 AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV],
676 [Define to a Set Process Title type if your system is
677 supported by bsd-setproctitle.c])
Damien Millercd5e52e2011-06-27 07:18:18 +1000678 AC_CHECK_FUNCS([sandbox_init])
679 AC_CHECK_HEADERS([sandbox.h])
Damien Miller39f303b2016-02-23 12:56:59 +1100680 AC_CHECK_LIB([sandbox], [sandbox_apply], [
681 SSHDLIBS="$SSHDLIBS -lsandbox"
682 ])
Ben Lindstromfed7bb42001-07-15 18:30:42 +0000683 ;;
Darren Tucker57b29202006-09-10 20:25:51 +1000684*-*-dragonfly*)
685 SSHDLIBS="$SSHDLIBS -lcrypt"
Darren Tucker882abfd2013-11-09 00:17:41 +1100686 TEST_MALLOC_OPTIONS="AFGJPRX"
Darren Tucker57b29202006-09-10 20:25:51 +1000687 ;;
Tim Ricee1d93702016-05-31 11:13:22 -0700688*-*-haiku*)
Darren Tucker5faa52d2016-08-02 15:22:40 +1000689 LIBS="$LIBS -lbsd "
690 AC_CHECK_LIB([network], [socket])
691 AC_DEFINE([HAVE_U_INT64_T])
692 MANTYPE=man
693 ;;
Darren Tuckerfd333282005-05-28 18:31:42 +1000694*-*-hpux*)
695 # first we define all of the options common to all HP-UX releases
Kevin Steves315f8b72001-06-28 00:24:41 +0000696 CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
Damien Miller9a947342000-08-30 10:03:33 +1100697 IPADDR_IN_DISPLAY=yes
Tim Rice648f8762011-01-26 12:38:57 -0800698 AC_DEFINE([USE_PIPES])
Tim Rice648f8762011-01-26 12:38:57 -0800699 AC_DEFINE([LOGIN_NEEDS_UTMPX])
700 AC_DEFINE([LOCKED_PASSWD_STRING], ["*"],
Tim Rice7df8d392005-09-19 09:33:39 -0700701 [String used in /etc/passwd to denote locked account])
Tim Rice648f8762011-01-26 12:38:57 -0800702 AC_DEFINE([SPT_TYPE], [SPT_PSTAT])
Darren Tuckeraa97d132013-03-12 11:31:05 +1100703 AC_DEFINE([PLATFORM_SYS_DIR_UID], 2, [System dirs owned by bin (uid 2)])
Tim Rice90f42b02011-06-02 18:17:49 -0700704 maildir="/var/mail"
Tim Ricef028f1e2002-07-19 12:41:10 -0700705 LIBS="$LIBS -lsec"
Tim Rice648f8762011-01-26 12:38:57 -0800706 AC_CHECK_LIB([xnet], [t_error], ,
707 [AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***])])
Darren Tuckerfd333282005-05-28 18:31:42 +1000708
709 # next, we define all of the options specific to major releases
710 case "$host" in
711 *-*-hpux10*)
712 if test -z "$GCC"; then
713 CFLAGS="$CFLAGS -Ae"
714 fi
715 ;;
716 *-*-hpux11*)
Tim Rice648f8762011-01-26 12:38:57 -0800717 AC_DEFINE([PAM_SUN_CODEBASE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700718 [Define if you are using Solaris-derived PAM which
719 passes pam_messages to the conversation function
720 with an extra level of indirection])
Tim Rice648f8762011-01-26 12:38:57 -0800721 AC_DEFINE([DISABLE_UTMP], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700722 [Define if you don't want to use utmp])
Tim Rice648f8762011-01-26 12:38:57 -0800723 AC_DEFINE([USE_BTMP], [1], [Use btmp to log bad logins])
Darren Tuckerfd333282005-05-28 18:31:42 +1000724 check_for_hpux_broken_getaddrinfo=1
725 check_for_conflicting_getspnam=1
726 ;;
727 esac
728
729 # lastly, we define options specific to minor releases
730 case "$host" in
731 *-*-hpux10.26)
Tim Rice648f8762011-01-26 12:38:57 -0800732 AC_DEFINE([HAVE_SECUREWARE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700733 [Define if you have SecureWare-based
734 protected password database])
Darren Tuckerfd333282005-05-28 18:31:42 +1000735 disable_ptmx_check=yes
736 LIBS="$LIBS -lsecpw"
737 ;;
738 esac
Damien Miller1bead332000-04-30 00:47:29 +1000739 ;;
Damien Millerbeb4ba51999-12-28 15:09:35 +1100740*-*-irix5*)
Damien Miller190d5a82000-09-30 09:43:19 +1100741 PATH="$PATH:/usr/etc"
Tim Rice648f8762011-01-26 12:38:57 -0800742 AC_DEFINE([BROKEN_INET_NTOA], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700743 [Define if you system's inet_ntoa is busted
744 (e.g. Irix gcc issue)])
Tim Rice648f8762011-01-26 12:38:57 -0800745 AC_DEFINE([SETEUID_BREAKS_SETUID])
746 AC_DEFINE([BROKEN_SETREUID])
747 AC_DEFINE([BROKEN_SETREGID])
748 AC_DEFINE([WITH_ABBREV_NO_TTY], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700749 [Define if you shouldn't strip 'tty' from your
750 ttyname in [uw]tmp])
Tim Rice648f8762011-01-26 12:38:57 -0800751 AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Damien Miller1808f382000-01-06 12:03:12 +1100752 ;;
753*-*-irix6*)
Damien Miller190d5a82000-09-30 09:43:19 +1100754 PATH="$PATH:/usr/etc"
Tim Rice648f8762011-01-26 12:38:57 -0800755 AC_DEFINE([WITH_IRIX_ARRAY], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700756 [Define if you have/want arrays
Damien Miller10479cc2018-04-10 10:19:02 +1000757 (cluster-wide session management, not C arrays)])
Tim Rice648f8762011-01-26 12:38:57 -0800758 AC_DEFINE([WITH_IRIX_PROJECT], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700759 [Define if you want IRIX project management])
Tim Rice648f8762011-01-26 12:38:57 -0800760 AC_DEFINE([WITH_IRIX_AUDIT], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700761 [Define if you want IRIX audit trails])
Tim Rice648f8762011-01-26 12:38:57 -0800762 AC_CHECK_FUNC([jlimit_startjob], [AC_DEFINE([WITH_IRIX_JOBS], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700763 [Define if you want IRIX kernel jobs])])
Tim Rice648f8762011-01-26 12:38:57 -0800764 AC_DEFINE([BROKEN_INET_NTOA])
765 AC_DEFINE([SETEUID_BREAKS_SETUID])
766 AC_DEFINE([BROKEN_SETREUID])
767 AC_DEFINE([BROKEN_SETREGID])
768 AC_DEFINE([BROKEN_UPDWTMPX], [1], [updwtmpx is broken (if present)])
769 AC_DEFINE([WITH_ABBREV_NO_TTY])
770 AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Damien Millerbeb4ba51999-12-28 15:09:35 +1100771 ;;
Damien Miller90551722009-02-16 15:37:03 +1100772*-*-k*bsd*-gnu | *-*-kopensolaris*-gnu)
773 check_for_libcrypt_later=1
Tim Rice648f8762011-01-26 12:38:57 -0800774 AC_DEFINE([PAM_TTY_KLUDGE])
775 AC_DEFINE([LOCKED_PASSWD_PREFIX], ["!"])
776 AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV])
777 AC_DEFINE([_PATH_BTMP], ["/var/log/btmp"], [log for bad login attempts])
778 AC_DEFINE([USE_BTMP], [1], [Use btmp to log bad logins])
Damien Miller90551722009-02-16 15:37:03 +1100779 ;;
Damien Millerb29ea912000-01-15 14:12:03 +1100780*-*-linux*)
781 no_dev_ptmx=1
Damien Miller852472a2014-01-22 16:31:18 +1100782 use_pie=auto
Damien Millera64b57a2001-01-17 10:44:13 +1100783 check_for_libcrypt_later=1
Darren Tucker70a3d552003-08-21 17:58:29 +1000784 check_for_openpty_ctty_bug=1
Darren Tuckerc61d5ec2017-02-03 14:10:34 +1100785 dnl Target SUSv3/POSIX.1-2001 plus BSD specifics.
786 dnl _DEFAULT_SOURCE is the new name for _BSD_SOURCE
787 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=600 -D_BSD_SOURCE -D_DEFAULT_SOURCE"
Tim Rice648f8762011-01-26 12:38:57 -0800788 AC_DEFINE([PAM_TTY_KLUDGE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700789 [Work around problematic Linux PAM modules handling of PAM_TTY])
Tim Rice648f8762011-01-26 12:38:57 -0800790 AC_DEFINE([LOCKED_PASSWD_PREFIX], ["!"],
Tim Rice7df8d392005-09-19 09:33:39 -0700791 [String used in /etc/passwd to denote locked account])
Tim Rice648f8762011-01-26 12:38:57 -0800792 AC_DEFINE([SPT_TYPE], [SPT_REUSEARGV])
793 AC_DEFINE([LINK_OPNOTSUPP_ERRNO], [EPERM],
Tim Rice7df8d392005-09-19 09:33:39 -0700794 [Define to whatever link() returns for "not supported"
795 if it doesn't return EOPNOTSUPP.])
Tim Rice648f8762011-01-26 12:38:57 -0800796 AC_DEFINE([_PATH_BTMP], ["/var/log/btmp"], [log for bad login attempts])
797 AC_DEFINE([USE_BTMP])
798 AC_DEFINE([LINUX_OOM_ADJUST], [1], [Adjust Linux out-of-memory killer])
Damien Miller7bcb0892000-03-11 20:45:40 +1100799 inet6_default_4in6=yes
Darren Tucker3c016542003-05-02 20:48:21 +1000800 case `uname -r` in
Darren Tuckerc437cda2003-05-10 17:05:46 +1000801 1.*|2.0.*)
Tim Rice648f8762011-01-26 12:38:57 -0800802 AC_DEFINE([BROKEN_CMSG_TYPE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700803 [Define if cmsg_type is not passed correctly])
Darren Tucker3c016542003-05-02 20:48:21 +1000804 ;;
Darren Tucker3c016542003-05-02 20:48:21 +1000805 esac
Damien Miller89e03ba2005-12-31 16:42:03 +1100806 # tun(4) forwarding compat code
Tim Rice648f8762011-01-26 12:38:57 -0800807 AC_CHECK_HEADERS([linux/if_tun.h])
Damien Millerbd4e4102006-01-01 21:03:30 +1100808 if test "x$ac_cv_header_linux_if_tun_h" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -0800809 AC_DEFINE([SSH_TUN_LINUX], [1],
Damien Miller89e03ba2005-12-31 16:42:03 +1100810 [Open tunnel devices the Linux tun/tap way])
Tim Rice648f8762011-01-26 12:38:57 -0800811 AC_DEFINE([SSH_TUN_COMPAT_AF], [1],
Damien Miller89e03ba2005-12-31 16:42:03 +1100812 [Use tunnel device compatibility to OpenBSD])
Tim Rice648f8762011-01-26 12:38:57 -0800813 AC_DEFINE([SSH_TUN_PREPEND_AF], [1],
Damien Miller89e03ba2005-12-31 16:42:03 +1100814 [Prepend the address family to IP tunnel traffic])
815 fi
Darren Tucker81c9ccd2017-11-03 14:52:51 +1100816 AC_CHECK_HEADER([linux/if.h],
817 AC_DEFINE([SYS_RDOMAIN_LINUX], [1],
Darren Tucker24d2a332018-02-11 21:20:39 +1300818 [Support routing domains using Linux VRF]), [], [
819#ifdef HAVE_SYS_TYPES_H
820# include <sys/types.H>
821#endif
822 ])
Darren Tucker60395f92012-07-03 14:31:18 +1000823 AC_CHECK_HEADERS([linux/seccomp.h linux/filter.h linux/audit.h], [],
824 [], [#include <linux/types.h>])
Vicente Olivert Riera58008672017-06-20 16:42:11 +0100825 # Obtain MIPS ABI
826 case "$host" in
827 mips*)
Darren Tuckerfbd733a2018-03-12 19:17:26 +1100828 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Vicente Olivert Riera58008672017-06-20 16:42:11 +0100829#if _MIPS_SIM != _ABIO32
830#error
831#endif
Darren Tuckerfbd733a2018-03-12 19:17:26 +1100832 ]])],[mips_abi="o32"],[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Vicente Olivert Riera58008672017-06-20 16:42:11 +0100833#if _MIPS_SIM != _ABIN32
834#error
835#endif
Darren Tuckerfbd733a2018-03-12 19:17:26 +1100836 ]])],[mips_abi="n32"],[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Vicente Olivert Riera58008672017-06-20 16:42:11 +0100837#if _MIPS_SIM != _ABI64
838#error
839#endif
Darren Tuckerfbd733a2018-03-12 19:17:26 +1100840 ]])],[mips_abi="n64"],[AC_MSG_ERROR([unknown MIPS ABI])
Vicente Olivert Riera58008672017-06-20 16:42:11 +0100841 ])
842 ])
843 ])
844 ;;
845 esac
Damien Miller91f40d82013-02-22 11:37:00 +1100846 AC_MSG_CHECKING([for seccomp architecture])
847 seccomp_audit_arch=
Damien Millere0956e32012-04-04 11:27:54 +1000848 case "$host" in
849 x86_64-*)
Damien Miller91f40d82013-02-22 11:37:00 +1100850 seccomp_audit_arch=AUDIT_ARCH_X86_64
Damien Millere0956e32012-04-04 11:27:54 +1000851 ;;
852 i*86-*)
Damien Miller91f40d82013-02-22 11:37:00 +1100853 seccomp_audit_arch=AUDIT_ARCH_I386
Damien Millere0956e32012-04-04 11:27:54 +1000854 ;;
Damien Miller99f33d72015-06-17 10:50:51 +1000855 arm*-*)
Damien Miller91f40d82013-02-22 11:37:00 +1100856 seccomp_audit_arch=AUDIT_ARCH_ARM
Damien Miller99f33d72015-06-17 10:50:51 +1000857 ;;
858 aarch64*-*)
859 seccomp_audit_arch=AUDIT_ARCH_AARCH64
Damien Miller5c15e222015-06-18 15:07:56 +1000860 ;;
Damien Millerb9c50612016-07-08 13:59:13 +1000861 s390x-*)
862 seccomp_audit_arch=AUDIT_ARCH_S390X
863 ;;
864 s390-*)
865 seccomp_audit_arch=AUDIT_ARCH_S390
866 ;;
867 powerpc64-*)
868 seccomp_audit_arch=AUDIT_ARCH_PPC64
869 ;;
870 powerpc64le-*)
871 seccomp_audit_arch=AUDIT_ARCH_PPC64LE
872 ;;
873 mips-*)
874 seccomp_audit_arch=AUDIT_ARCH_MIPS
875 ;;
876 mipsel-*)
877 seccomp_audit_arch=AUDIT_ARCH_MIPSEL
878 ;;
879 mips64-*)
Vicente Olivert Riera45011512017-06-20 16:42:28 +0100880 case "$mips_abi" in
881 "n32")
882 seccomp_audit_arch=AUDIT_ARCH_MIPS64N32
883 ;;
884 "n64")
885 seccomp_audit_arch=AUDIT_ARCH_MIPS64
886 ;;
887 esac
Damien Millerb9c50612016-07-08 13:59:13 +1000888 ;;
889 mips64el-*)
Vicente Olivert Riera45011512017-06-20 16:42:28 +0100890 case "$mips_abi" in
891 "n32")
892 seccomp_audit_arch=AUDIT_ARCH_MIPSEL64N32
893 ;;
894 "n64")
895 seccomp_audit_arch=AUDIT_ARCH_MIPSEL64
896 ;;
897 esac
Damien Millerb9c50612016-07-08 13:59:13 +1000898 ;;
Damien Millere0956e32012-04-04 11:27:54 +1000899 esac
Damien Miller91f40d82013-02-22 11:37:00 +1100900 if test "x$seccomp_audit_arch" != "x" ; then
901 AC_MSG_RESULT(["$seccomp_audit_arch"])
Damien Miller99f33d72015-06-17 10:50:51 +1000902 AC_DEFINE_UNQUOTED([SECCOMP_AUDIT_ARCH], [$seccomp_audit_arch],
903 [Specify the system call convention in use])
Damien Miller91f40d82013-02-22 11:37:00 +1100904 else
905 AC_MSG_RESULT([architecture not supported])
906 fi
Damien Millerb29ea912000-01-15 14:12:03 +1100907 ;;
Ben Lindstromb5628642000-10-18 00:02:25 +0000908mips-sony-bsd|mips-sony-newsos4)
Tim Rice648f8762011-01-26 12:38:57 -0800909 AC_DEFINE([NEED_SETPGRP], [1], [Need setpgrp to acquire controlling tty])
Ben Lindstromb5628642000-10-18 00:02:25 +0000910 SONY=1
Ben Lindstromb5628642000-10-18 00:02:25 +0000911 ;;
Damien Milleree1c0b32000-01-21 00:18:15 +1100912*-*-netbsd*)
Damien Millerfc93d4b2002-09-04 23:26:29 +1000913 check_for_libcrypt_before=1
Tim Riceeae17cc2005-03-17 16:52:20 -0800914 if test "x$withval" != "xno" ; then
Tim Rice88368a32003-12-08 12:35:59 -0800915 need_dash_r=1
916 fi
Damien Miller99522ba2016-07-28 08:54:27 +1000917 CPPFLAGS="$CPPFLAGS -D_OPENBSD_SOURCE"
Tim Rice648f8762011-01-26 12:38:57 -0800918 AC_DEFINE([SSH_TUN_FREEBSD], [1], [Open tunnel devices the FreeBSD way])
Damien Miller2dcddbf2006-01-01 19:47:05 +1100919 AC_CHECK_HEADER([net/if_tap.h], ,
Tim Rice648f8762011-01-26 12:38:57 -0800920 AC_DEFINE([SSH_TUN_NO_L2], [1], [No layer 2 tunnel support]))
921 AC_DEFINE([SSH_TUN_PREPEND_AF], [1],
Damien Miller2dcddbf2006-01-01 19:47:05 +1100922 [Prepend the address family to IP tunnel traffic])
Darren Tucker882abfd2013-11-09 00:17:41 +1100923 TEST_MALLOC_OPTIONS="AJRX"
Damien Millerf5bbd3b2014-01-30 11:26:46 +1100924 AC_DEFINE([BROKEN_READ_COMPARISON], [1],
925 [NetBSD read function is sometimes redirected, breaking atomicio comparisons against it])
Damien Milleree1c0b32000-01-21 00:18:15 +1100926 ;;
Damien Millerfbd884a2001-02-27 08:39:07 +1100927*-*-freebsd*)
928 check_for_libcrypt_later=1
Tim Rice648f8762011-01-26 12:38:57 -0800929 AC_DEFINE([LOCKED_PASSWD_PREFIX], ["*LOCKED*"], [Account locked with pw(1)])
930 AC_DEFINE([SSH_TUN_FREEBSD], [1], [Open tunnel devices the FreeBSD way])
Damien Miller2dcddbf2006-01-01 19:47:05 +1100931 AC_CHECK_HEADER([net/if_tap.h], ,
Tim Rice648f8762011-01-26 12:38:57 -0800932 AC_DEFINE([SSH_TUN_NO_L2], [1], [No layer 2 tunnel support]))
933 AC_DEFINE([BROKEN_GLOB], [1], [FreeBSD glob does not do what we need])
Darren Tucker882abfd2013-11-09 00:17:41 +1100934 TEST_MALLOC_OPTIONS="AJRX"
Damien Miller2035b222014-01-26 09:39:53 +1100935 # Preauth crypto occasionally uses file descriptors for crypto offload
936 # and will crash if they cannot be opened.
Damien Miller5b447c02014-01-26 09:46:53 +1100937 AC_DEFINE([SANDBOX_SKIP_RLIMIT_NOFILE], [1],
Tim Rice03ae0812014-02-21 09:09:34 -0800938 [define if setrlimit RLIMIT_NOFILE breaks things])
Damien Millerfbd884a2001-02-27 08:39:07 +1100939 ;;
Darren Tuckered9eb022003-09-22 11:18:47 +1000940*-*-bsdi*)
Tim Rice648f8762011-01-26 12:38:57 -0800941 AC_DEFINE([SETEUID_BREAKS_SETUID])
942 AC_DEFINE([BROKEN_SETREUID])
943 AC_DEFINE([BROKEN_SETREGID])
Darren Tuckered9eb022003-09-22 11:18:47 +1000944 ;;
Damien Miller0f91b4e2000-06-18 15:43:25 +1000945*-next-*)
Damien Miller0f91b4e2000-06-18 15:43:25 +1000946 conf_lastlog_location="/usr/adm/lastlog"
Damien Millere5192fa2000-08-29 14:30:37 +1100947 conf_utmp_location=/etc/utmp
948 conf_wtmp_location=/usr/adm/wtmp
Tim Rice90f42b02011-06-02 18:17:49 -0700949 maildir=/usr/spool/mail
Tim Rice648f8762011-01-26 12:38:57 -0800950 AC_DEFINE([HAVE_NEXT], [1], [Define if you are on NeXT])
951 AC_DEFINE([BROKEN_REALPATH])
952 AC_DEFINE([USE_PIPES])
953 AC_DEFINE([BROKEN_SAVED_UIDS], [1], [Needed for NeXT])
Damien Miller0f91b4e2000-06-18 15:43:25 +1000954 ;;
Darren Tucker4a422572005-07-14 17:22:11 +1000955*-*-openbsd*)
Damien Miller852472a2014-01-22 16:31:18 +1100956 use_pie=auto
Tim Rice648f8762011-01-26 12:38:57 -0800957 AC_DEFINE([HAVE_ATTRIBUTE__SENTINEL__], [1], [OpenBSD's gcc has sentinel])
958 AC_DEFINE([HAVE_ATTRIBUTE__BOUNDED__], [1], [OpenBSD's gcc has bounded])
959 AC_DEFINE([SSH_TUN_OPENBSD], [1], [Open tunnel devices the OpenBSD way])
960 AC_DEFINE([SYSLOG_R_SAFE_IN_SIGHAND], [1],
Damien Millerbb598142006-08-19 08:38:23 +1000961 [syslog_r function is safe to use in in a signal handler])
Darren Tucker882abfd2013-11-09 00:17:41 +1100962 TEST_MALLOC_OPTIONS="AFGJPRX"
Darren Tucker4a422572005-07-14 17:22:11 +1000963 ;;
Damien Miller75b1d102000-01-07 14:01:41 +1100964*-*-solaris*)
Tim Riceeae17cc2005-03-17 16:52:20 -0800965 if test "x$withval" != "xno" ; then
Tim Ricead4a1882004-02-29 15:53:37 -0800966 need_dash_r=1
967 fi
Tim Rice648f8762011-01-26 12:38:57 -0800968 AC_DEFINE([PAM_SUN_CODEBASE])
969 AC_DEFINE([LOGIN_NEEDS_UTMPX])
Tim Rice648f8762011-01-26 12:38:57 -0800970 AC_DEFINE([PAM_TTY_KLUDGE])
971 AC_DEFINE([SSHPAM_CHAUTHTOK_NEEDS_RUID], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700972 [Define if pam_chauthtok wants real uid set
973 to the unpriv'ed user])
Tim Rice648f8762011-01-26 12:38:57 -0800974 AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Darren Tuckerc437cda2003-05-10 17:05:46 +1000975 # Pushing STREAMS modules will cause sshd to acquire a controlling tty.
Tim Rice648f8762011-01-26 12:38:57 -0800976 AC_DEFINE([SSHD_ACQUIRES_CTTY], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700977 [Define if sshd somehow reacquires a controlling TTY
978 after setsid()])
Tim Rice648f8762011-01-26 12:38:57 -0800979 AC_DEFINE([PASSWD_NEEDS_USERNAME], [1], [must supply username to passwd
Darren Tucker0249f932006-06-24 12:10:07 +1000980 in case the name is longer than 8 chars])
Tim Rice648f8762011-01-26 12:38:57 -0800981 AC_DEFINE([BROKEN_TCGETATTR_ICANON], [1], [tcgetattr with ICANON may hang])
Darren Tuckere1a790d2003-09-16 11:52:19 +1000982 external_path_file=/etc/default/login
andre2ff7b5d2000-06-03 14:57:40 +0000983 # hardwire lastlog location (can't detect it on some versions)
984 conf_lastlog_location="/var/adm/lastlog"
Tim Rice648f8762011-01-26 12:38:57 -0800985 AC_MSG_CHECKING([for obsolete utmp and wtmp in solaris2.x])
Damien Millera1cb6442000-06-09 11:58:35 +1000986 sol2ver=`echo "$host"| sed -e 's/.*[[0-9]]\.//'`
987 if test "$sol2ver" -ge 8; then
Tim Rice648f8762011-01-26 12:38:57 -0800988 AC_MSG_RESULT([yes])
989 AC_DEFINE([DISABLE_UTMP])
990 AC_DEFINE([DISABLE_WTMP], [1],
Tim Rice7df8d392005-09-19 09:33:39 -0700991 [Define if you don't want to use wtmp])
Damien Millera1cb6442000-06-09 11:58:35 +1000992 else
Tim Rice648f8762011-01-26 12:38:57 -0800993 AC_MSG_RESULT([no])
Damien Millera1cb6442000-06-09 11:58:35 +1000994 fi
Darren Tuckera86ec4d2016-06-14 10:48:27 +1000995 AC_CHECK_FUNCS([setpflags])
Darren Tucker907091a2016-02-19 09:05:39 +1100996 AC_CHECK_FUNCS([setppriv])
997 AC_CHECK_FUNCS([priv_basicset])
998 AC_CHECK_HEADERS([priv.h])
Tim Rice648f8762011-01-26 12:38:57 -0800999 AC_ARG_WITH([solaris-contracts],
Damien Miller1b06dc32006-08-31 03:24:41 +10001000 [ --with-solaris-contracts Enable Solaris process contracts (experimental)],
1001 [
Tim Rice648f8762011-01-26 12:38:57 -08001002 AC_CHECK_LIB([contract], [ct_tmpl_activate],
1003 [ AC_DEFINE([USE_SOLARIS_PROCESS_CONTRACTS], [1],
Damien Miller1b06dc32006-08-31 03:24:41 +10001004 [Define if you have Solaris process contracts])
Damien Miller4626cba2016-01-08 14:24:56 +11001005 LIBS="$LIBS -lcontract"
Damien Miller1b06dc32006-08-31 03:24:41 +10001006 SPC_MSG="yes" ], )
1007 ],
1008 )
Tim Rice648f8762011-01-26 12:38:57 -08001009 AC_ARG_WITH([solaris-projects],
Darren Tucker97528352010-11-05 12:03:05 +11001010 [ --with-solaris-projects Enable Solaris projects (experimental)],
1011 [
Tim Rice648f8762011-01-26 12:38:57 -08001012 AC_CHECK_LIB([project], [setproject],
1013 [ AC_DEFINE([USE_SOLARIS_PROJECTS], [1],
Darren Tucker97528352010-11-05 12:03:05 +11001014 [Define if you have Solaris projects])
Damien Miller4626cba2016-01-08 14:24:56 +11001015 LIBS="$LIBS -lproject"
Darren Tucker97528352010-11-05 12:03:05 +11001016 SP_MSG="yes" ], )
1017 ],
1018 )
Damien Miller4626cba2016-01-08 14:24:56 +11001019 AC_ARG_WITH([solaris-privs],
1020 [ --with-solaris-privs Enable Solaris/Illumos privileges (experimental)],
1021 [
1022 AC_MSG_CHECKING([for Solaris/Illumos privilege support])
Darren Tucker907091a2016-02-19 09:05:39 +11001023 if test "x$ac_cv_func_setppriv" = "xyes" -a \
1024 "x$ac_cv_header_priv_h" = "xyes" ; then
1025 SOLARIS_PRIVS=yes
Damien Miller4626cba2016-01-08 14:24:56 +11001026 AC_MSG_RESULT([found])
1027 AC_DEFINE([NO_UID_RESTORATION_TEST], [1],
1028 [Define to disable UID restoration test])
1029 AC_DEFINE([USE_SOLARIS_PRIVS], [1],
1030 [Define if you have Solaris privileges])
1031 SPP_MSG="yes"
1032 else
1033 AC_MSG_RESULT([not found])
1034 AC_MSG_ERROR([*** must have support for Solaris privileges to use --with-solaris-privs])
1035 fi
1036 ],
1037 )
Tim Rice5ab9b632013-06-02 14:05:48 -07001038 TEST_SHELL=$SHELL # let configure find us a capable shell
Damien Miller75b1d102000-01-07 14:01:41 +11001039 ;;
Damien Millerdfc83f42000-05-20 15:02:59 +10001040*-*-sunos4*)
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00001041 CPPFLAGS="$CPPFLAGS -DSUNOS4"
Tim Rice648f8762011-01-26 12:38:57 -08001042 AC_CHECK_FUNCS([getpwanam])
1043 AC_DEFINE([PAM_SUN_CODEBASE])
Damien Miller36ccb5c2000-08-09 16:34:27 +10001044 conf_utmp_location=/etc/utmp
1045 conf_wtmp_location=/var/adm/wtmp
1046 conf_lastlog_location=/var/adm/lastlog
Tim Rice648f8762011-01-26 12:38:57 -08001047 AC_DEFINE([USE_PIPES])
Darren Tuckerc0a0c3f2018-03-05 20:03:07 +11001048 AC_DEFINE([DISABLE_UTMPX], [1], [no utmpx])
Damien Millerdfc83f42000-05-20 15:02:59 +10001049 ;;
Ben Lindstrom603bdfd2001-02-12 07:29:45 +00001050*-ncr-sysv*)
Tim Rice13aae5e2001-10-21 17:53:58 -07001051 LIBS="$LIBS -lc89"
Tim Rice648f8762011-01-26 12:38:57 -08001052 AC_DEFINE([USE_PIPES])
1053 AC_DEFINE([SSHD_ACQUIRES_CTTY])
1054 AC_DEFINE([SETEUID_BREAKS_SETUID])
1055 AC_DEFINE([BROKEN_SETREUID])
1056 AC_DEFINE([BROKEN_SETREGID])
Ben Lindstrom603bdfd2001-02-12 07:29:45 +00001057 ;;
Damien Miller2ae714f2000-07-11 09:29:50 +10001058*-sni-sysv*)
Tim Riceffdf4aa2001-10-27 10:45:36 -07001059 # /usr/ucblib MUST NOT be searched on ReliantUNIX
Tim Rice648f8762011-01-26 12:38:57 -08001060 AC_CHECK_LIB([dl], [dlsym], ,)
Darren Tucker79d09fa2005-11-24 22:34:54 +11001061 # -lresolv needs to be at the end of LIBS or DNS lookups break
Tim Rice648f8762011-01-26 12:38:57 -08001062 AC_CHECK_LIB([resolv], [res_query], [ LIBS="$LIBS -lresolv" ])
Damien Millerfd9885e2001-01-10 08:16:53 +11001063 IPADDR_IN_DISPLAY=yes
Tim Rice648f8762011-01-26 12:38:57 -08001064 AC_DEFINE([USE_PIPES])
1065 AC_DEFINE([IP_TOS_IS_BROKEN])
1066 AC_DEFINE([SETEUID_BREAKS_SETUID])
1067 AC_DEFINE([BROKEN_SETREUID])
1068 AC_DEFINE([BROKEN_SETREGID])
1069 AC_DEFINE([SSHD_ACQUIRES_CTTY])
Darren Tuckere1a790d2003-09-16 11:52:19 +10001070 external_path_file=/etc/default/login
Tim Riceffdf4aa2001-10-27 10:45:36 -07001071 # /usr/ucblib/libucb.a no longer needed on ReliantUNIX
1072 # Attention: always take care to bind libsocket and libnsl before libc,
1073 # otherwise you will find lots of "SIOCGPGRP errno 22" on syslog
Damien Miller2ae714f2000-07-11 09:29:50 +10001074 ;;
Tim Rice0f83d292004-12-08 18:29:58 -08001075# UnixWare 1.x, UnixWare 2.x, and others based on code from Univel.
Damien Miller78315eb2000-09-29 23:01:36 +11001076*-*-sysv4.2*)
Tim Rice648f8762011-01-26 12:38:57 -08001077 AC_DEFINE([USE_PIPES])
1078 AC_DEFINE([SETEUID_BREAKS_SETUID])
1079 AC_DEFINE([BROKEN_SETREUID])
1080 AC_DEFINE([BROKEN_SETREGID])
1081 AC_DEFINE([PASSWD_NEEDS_USERNAME], [1], [must supply username to passwd])
1082 AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Tim Rice5ab9b632013-06-02 14:05:48 -07001083 TEST_SHELL=$SHELL # let configure find us a capable shell
Damien Miller78315eb2000-09-29 23:01:36 +11001084 ;;
Tim Rice0f83d292004-12-08 18:29:58 -08001085# UnixWare 7.x, OpenUNIX 8
Damien Miller78315eb2000-09-29 23:01:36 +11001086*-*-sysv5*)
Tim Rice641ebf12010-01-17 17:05:39 -08001087 CPPFLAGS="$CPPFLAGS -Dvsnprintf=_xvsnprintf -Dsnprintf=_xsnprintf"
Tim Rice648f8762011-01-26 12:38:57 -08001088 AC_DEFINE([UNIXWARE_LONG_PASSWORDS], [1], [Support passwords > 8 chars])
1089 AC_DEFINE([USE_PIPES])
1090 AC_DEFINE([SETEUID_BREAKS_SETUID])
1091 AC_DEFINE([BROKEN_GETADDRINFO])
1092 AC_DEFINE([BROKEN_SETREUID])
1093 AC_DEFINE([BROKEN_SETREGID])
1094 AC_DEFINE([PASSWD_NEEDS_USERNAME])
Tim Rice8433d512017-07-11 18:47:56 -07001095 AC_DEFINE([BROKEN_TCGETATTR_ICANON])
Tim Rice5ab9b632013-06-02 14:05:48 -07001096 TEST_SHELL=$SHELL # let configure find us a capable shell
Tim Rice4afeaf32018-03-25 10:00:21 -07001097 check_for_libcrypt_later=1
Tim Rice4dbacff2005-06-01 20:09:28 -07001098 case "$host" in
1099 *-*-sysv5SCO_SV*) # SCO OpenServer 6.x
Tim Rice90f42b02011-06-02 18:17:49 -07001100 maildir=/var/spool/mail
Tim Rice648f8762011-01-26 12:38:57 -08001101 AC_DEFINE([BROKEN_UPDWTMPX])
1102 AC_CHECK_LIB([prot], [getluid], [ LIBS="$LIBS -lprot"
1103 AC_CHECK_FUNCS([getluid setluid], , , [-lprot])
Tim Rice648f8762011-01-26 12:38:57 -08001104 ], , )
Tim Rice4dbacff2005-06-01 20:09:28 -07001105 ;;
Tim Rice648f8762011-01-26 12:38:57 -08001106 *) AC_DEFINE([LOCKED_PASSWD_STRING], ["*LK*"])
Tim Rice46259d82005-11-28 18:40:34 -08001107 ;;
Tim Rice4dbacff2005-06-01 20:09:28 -07001108 esac
Damien Miller78315eb2000-09-29 23:01:36 +11001109 ;;
Damien Miller75b1d102000-01-07 14:01:41 +11001110*-*-sysv*)
Damien Miller75b1d102000-01-07 14:01:41 +11001111 ;;
Tim Rice0f83d292004-12-08 18:29:58 -08001112# SCO UNIX and OEM versions of SCO UNIX
Damien Miller78315eb2000-09-29 23:01:36 +11001113*-*-sco3.2v4*)
Tim Ricec390c8d2005-03-07 01:21:37 -08001114 AC_MSG_ERROR("This Platform is no longer supported.")
Damien Miller78315eb2000-09-29 23:01:36 +11001115 ;;
Tim Rice0f83d292004-12-08 18:29:58 -08001116# SCO OpenServer 5.x
Damien Miller78315eb2000-09-29 23:01:36 +11001117*-*-sco3.2v5*)
Tim Rice89fe3f32003-01-19 20:20:24 -08001118 if test -z "$GCC"; then
1119 CFLAGS="$CFLAGS -belf"
1120 fi
Damien Miller5dfe9762001-02-16 12:05:39 +11001121 LIBS="$LIBS -lprot -lx -ltinfo -lm"
Damien Millera66626b2000-06-13 18:57:53 +10001122 no_dev_ptmx=1
Tim Rice648f8762011-01-26 12:38:57 -08001123 AC_DEFINE([USE_PIPES])
1124 AC_DEFINE([HAVE_SECUREWARE])
1125 AC_DEFINE([DISABLE_SHADOW])
1126 AC_DEFINE([DISABLE_FD_PASSING])
1127 AC_DEFINE([SETEUID_BREAKS_SETUID])
1128 AC_DEFINE([BROKEN_GETADDRINFO])
1129 AC_DEFINE([BROKEN_SETREUID])
1130 AC_DEFINE([BROKEN_SETREGID])
1131 AC_DEFINE([WITH_ABBREV_NO_TTY])
1132 AC_DEFINE([BROKEN_UPDWTMPX])
1133 AC_DEFINE([PASSWD_NEEDS_USERNAME])
1134 AC_CHECK_FUNCS([getluid setluid])
Tim Rice07183b82001-04-25 21:40:28 -07001135 MANTYPE=man
Tim Rice5ab9b632013-06-02 14:05:48 -07001136 TEST_SHELL=$SHELL # let configure find us a capable shell
Tim Riceaa86c392013-03-16 20:55:46 -07001137 SKIP_DISABLE_LASTLOG_DEFINE=yes
Damien Millera66626b2000-06-13 18:57:53 +10001138 ;;
Damien Millerb8c656e2000-06-28 15:22:41 +10001139*-dec-osf*)
Tim Rice648f8762011-01-26 12:38:57 -08001140 AC_MSG_CHECKING([for Digital Unix SIA])
Ben Lindstrom72af2ef2001-05-08 20:42:28 +00001141 no_osfsia=""
Tim Rice648f8762011-01-26 12:38:57 -08001142 AC_ARG_WITH([osfsia],
Ben Lindstrom72af2ef2001-05-08 20:42:28 +00001143 [ --with-osfsia Enable Digital Unix SIA],
1144 [
1145 if test "x$withval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08001146 AC_MSG_RESULT([disabled])
Ben Lindstrom72af2ef2001-05-08 20:42:28 +00001147 no_osfsia=1
1148 fi
1149 ],
1150 )
1151 if test -z "$no_osfsia" ; then
Damien Millerb8c656e2000-06-28 15:22:41 +10001152 if test -f /etc/sia/matrix.conf; then
Tim Rice648f8762011-01-26 12:38:57 -08001153 AC_MSG_RESULT([yes])
1154 AC_DEFINE([HAVE_OSF_SIA], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001155 [Define if you have Digital Unix Security
1156 Integration Architecture])
Tim Rice648f8762011-01-26 12:38:57 -08001157 AC_DEFINE([DISABLE_LOGIN], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001158 [Define if you don't want to use your
1159 system's login() call])
Tim Rice648f8762011-01-26 12:38:57 -08001160 AC_DEFINE([DISABLE_FD_PASSING])
Damien Millerb8c656e2000-06-28 15:22:41 +10001161 LIBS="$LIBS -lsecurity -ldb -lm -laud"
Damien Miller1b06dc32006-08-31 03:24:41 +10001162 SIA_MSG="yes"
Damien Millerb8c656e2000-06-28 15:22:41 +10001163 else
Tim Rice648f8762011-01-26 12:38:57 -08001164 AC_MSG_RESULT([no])
1165 AC_DEFINE([LOCKED_PASSWD_SUBSTR], ["Nologin"],
Tim Rice7df8d392005-09-19 09:33:39 -07001166 [String used in /etc/passwd to denote locked account])
Damien Millerb8c656e2000-06-28 15:22:41 +10001167 fi
1168 fi
Tim Rice648f8762011-01-26 12:38:57 -08001169 AC_DEFINE([BROKEN_GETADDRINFO])
1170 AC_DEFINE([SETEUID_BREAKS_SETUID])
1171 AC_DEFINE([BROKEN_SETREUID])
1172 AC_DEFINE([BROKEN_SETREGID])
1173 AC_DEFINE([BROKEN_READV_COMPARISON], [1], [Can't do comparisons on readv])
Damien Millerb8c656e2000-06-28 15:22:41 +10001174 ;;
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001175
Tim Rice70335a62006-02-04 17:42:58 -08001176*-*-nto-qnx*)
Tim Rice648f8762011-01-26 12:38:57 -08001177 AC_DEFINE([USE_PIPES])
1178 AC_DEFINE([NO_X11_UNIX_SOCKETS])
Tim Rice648f8762011-01-26 12:38:57 -08001179 AC_DEFINE([DISABLE_LASTLOG])
1180 AC_DEFINE([SSHD_ACQUIRES_CTTY])
1181 AC_DEFINE([BROKEN_SHADOW_EXPIRE], [1], [QNX shadow support is broken])
Tim Rice2f993462006-02-11 18:37:48 -08001182 enable_etc_default_login=no # has incompatible /etc/default/login
Darren Tucker8acb3b62007-08-10 14:36:12 +10001183 case "$host" in
1184 *-*-nto-qnx6*)
Tim Rice648f8762011-01-26 12:38:57 -08001185 AC_DEFINE([DISABLE_FD_PASSING])
Darren Tucker8acb3b62007-08-10 14:36:12 +10001186 ;;
1187 esac
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00001188 ;;
Darren Tucker2be1cbb2005-05-27 21:13:40 +10001189
1190*-*-ultrix*)
Tim Rice648f8762011-01-26 12:38:57 -08001191 AC_DEFINE([BROKEN_GETGROUPS], [1], [getgroups(0,NULL) will return -1])
Tim Rice648f8762011-01-26 12:38:57 -08001192 AC_DEFINE([NEED_SETPGRP])
1193 AC_DEFINE([HAVE_SYS_SYSLOG_H], [1], [Force use of sys/syslog.h on Ultrix])
Tim Ricefcc7ff12005-06-02 20:28:29 -07001194 ;;
Darren Tucker93e7e8f2005-08-23 08:06:55 +10001195
1196*-*-lynxos)
Darren Tucker5faa52d2016-08-02 15:22:40 +10001197 CFLAGS="$CFLAGS -D__NO_INCLUDE_WARN__"
1198 AC_DEFINE([BROKEN_SETVBUF], [1],
1199 [LynxOS has broken setvbuf() implementation])
1200 ;;
Damien Miller76112de1999-12-21 11:18:08 +11001201esac
1202
Tim Rice648f8762011-01-26 12:38:57 -08001203AC_MSG_CHECKING([compiler and flags for sanity])
1204AC_RUN_IFELSE([AC_LANG_PROGRAM([[ #include <stdio.h> ]], [[ exit(0); ]])],
1205 [ AC_MSG_RESULT([yes]) ],
Darren Tucker6eb93042003-06-29 21:30:41 +10001206 [
Tim Rice648f8762011-01-26 12:38:57 -08001207 AC_MSG_RESULT([no])
Darren Tucker6eb93042003-06-29 21:30:41 +10001208 AC_MSG_ERROR([*** compiler cannot create working executables, check config.log ***])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001209 ],
1210 [ AC_MSG_WARN([cross compiling: not checking compiler sanity]) ]
Darren Tucker6eb93042003-06-29 21:30:41 +10001211)
1212
Darren Tucker0c9653f2005-05-28 15:58:14 +10001213dnl Checks for header files.
Damien Millera22ba012000-03-02 23:09:20 +11001214# Checks for libraries.
Tim Rice648f8762011-01-26 12:38:57 -08001215AC_CHECK_FUNC([setsockopt], , [AC_CHECK_LIB([socket], [setsockopt])])
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001216
Tim Rice1e1ef642003-09-11 22:19:31 -07001217dnl IRIX and Solaris 2.5.1 have dirname() in libgen
Tim Rice648f8762011-01-26 12:38:57 -08001218AC_CHECK_FUNCS([dirname], [AC_CHECK_HEADERS([libgen.h])] , [
1219 AC_CHECK_LIB([gen], [dirname], [
Tim Rice1e1ef642003-09-11 22:19:31 -07001220 AC_CACHE_CHECK([for broken dirname],
1221 ac_cv_have_broken_dirname, [
1222 save_LIBS="$LIBS"
1223 LIBS="$LIBS -lgen"
Darren Tucker314d89e2005-10-17 23:29:23 +10001224 AC_RUN_IFELSE(
1225 [AC_LANG_SOURCE([[
Tim Rice1e1ef642003-09-11 22:19:31 -07001226#include <libgen.h>
1227#include <string.h>
1228
1229int main(int argc, char **argv) {
1230 char *s, buf[32];
1231
1232 strncpy(buf,"/etc", 32);
1233 s = dirname(buf);
1234 if (!s || strncmp(s, "/", 32) != 0) {
1235 exit(1);
1236 } else {
1237 exit(0);
1238 }
1239}
Darren Tucker314d89e2005-10-17 23:29:23 +10001240 ]])],
Tim Rice1e1ef642003-09-11 22:19:31 -07001241 [ ac_cv_have_broken_dirname="no" ],
Darren Tucker314d89e2005-10-17 23:29:23 +10001242 [ ac_cv_have_broken_dirname="yes" ],
1243 [ ac_cv_have_broken_dirname="no" ],
Tim Rice1e1ef642003-09-11 22:19:31 -07001244 )
1245 LIBS="$save_LIBS"
1246 ])
1247 if test "x$ac_cv_have_broken_dirname" = "xno" ; then
1248 LIBS="$LIBS -lgen"
Tim Rice648f8762011-01-26 12:38:57 -08001249 AC_DEFINE([HAVE_DIRNAME])
1250 AC_CHECK_HEADERS([libgen.h])
Tim Rice1e1ef642003-09-11 22:19:31 -07001251 fi
1252 ])
1253])
1254
Tim Rice648f8762011-01-26 12:38:57 -08001255AC_CHECK_FUNC([getspnam], ,
1256 [AC_CHECK_LIB([gen], [getspnam], [LIBS="$LIBS -lgen"])])
1257AC_SEARCH_LIBS([basename], [gen], [AC_DEFINE([HAVE_BASENAME], [1],
1258 [Define if you have the basename function.])])
Tim Rice1e1ef642003-09-11 22:19:31 -07001259
Tim Rice13aae5e2001-10-21 17:53:58 -07001260dnl zlib is required
Tim Rice648f8762011-01-26 12:38:57 -08001261AC_ARG_WITH([zlib],
Tim Rice13aae5e2001-10-21 17:53:58 -07001262 [ --with-zlib=PATH Use zlib in PATH],
Darren Tucker86a5f8d2005-03-21 09:55:17 +11001263 [ if test "x$withval" = "xno" ; then
1264 AC_MSG_ERROR([*** zlib is required ***])
1265 elif test "x$withval" != "xyes"; then
Tim Rice13aae5e2001-10-21 17:53:58 -07001266 if test -d "$withval/lib"; then
1267 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001268 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001269 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001270 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001271 fi
1272 else
1273 if test -n "${need_dash_r}"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001274 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001275 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001276 LDFLAGS="-L${withval} ${LDFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001277 fi
1278 fi
1279 if test -d "$withval/include"; then
Tim Rice02cebcd2001-10-25 10:01:30 -07001280 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001281 else
Tim Rice02cebcd2001-10-25 10:01:30 -07001282 CPPFLAGS="-I${withval} ${CPPFLAGS}"
Tim Rice13aae5e2001-10-21 17:53:58 -07001283 fi
Darren Tucker86a5f8d2005-03-21 09:55:17 +11001284 fi ]
Tim Rice13aae5e2001-10-21 17:53:58 -07001285)
1286
Tim Rice648f8762011-01-26 12:38:57 -08001287AC_CHECK_HEADER([zlib.h], ,[AC_MSG_ERROR([*** zlib.h missing - please install first or check config.log ***])])
1288AC_CHECK_LIB([z], [deflate], ,
Tim Ricefcb62202004-01-23 18:35:16 -08001289 [
1290 saved_CPPFLAGS="$CPPFLAGS"
1291 saved_LDFLAGS="$LDFLAGS"
1292 save_LIBS="$LIBS"
1293 dnl Check default zlib install dir
1294 if test -n "${need_dash_r}"; then
1295 LDFLAGS="-L/usr/local/lib -R/usr/local/lib ${saved_LDFLAGS}"
1296 else
1297 LDFLAGS="-L/usr/local/lib ${saved_LDFLAGS}"
1298 fi
1299 CPPFLAGS="-I/usr/local/include ${saved_CPPFLAGS}"
1300 LIBS="$LIBS -lz"
Tim Rice648f8762011-01-26 12:38:57 -08001301 AC_TRY_LINK_FUNC([deflate], [AC_DEFINE([HAVE_LIBZ])],
Tim Ricefcb62202004-01-23 18:35:16 -08001302 [
1303 AC_MSG_ERROR([*** zlib missing - please install first or check config.log ***])
1304 ]
1305 )
1306 ]
1307)
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001308
Tim Rice648f8762011-01-26 12:38:57 -08001309AC_ARG_WITH([zlib-version-check],
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001310 [ --without-zlib-version-check Disable zlib version check],
1311 [ if test "x$withval" = "xno" ; then
1312 zlib_check_nonfatal=1
1313 fi
1314 ]
1315)
1316
Tim Rice648f8762011-01-26 12:38:57 -08001317AC_MSG_CHECKING([for possibly buggy zlib])
1318AC_RUN_IFELSE([AC_LANG_PROGRAM([[
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001319#include <stdio.h>
Darren Tuckerc8a0f272013-03-22 12:49:14 +11001320#include <stdlib.h>
Darren Tucker2dcd2392004-01-23 17:13:33 +11001321#include <zlib.h>
Tim Rice648f8762011-01-26 12:38:57 -08001322 ]],
1323 [[
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001324 int a=0, b=0, c=0, d=0, n, v;
1325 n = sscanf(ZLIB_VERSION, "%d.%d.%d.%d", &a, &b, &c, &d);
1326 if (n != 3 && n != 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +11001327 exit(1);
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001328 v = a*1000000 + b*10000 + c*100 + d;
1329 fprintf(stderr, "found zlib version %s (%d)\n", ZLIB_VERSION, v);
1330
1331 /* 1.1.4 is OK */
1332 if (a == 1 && b == 1 && c >= 4)
Darren Tucker2dcd2392004-01-23 17:13:33 +11001333 exit(0);
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001334
Darren Tucker41097ed2005-07-25 15:24:21 +10001335 /* 1.2.3 and up are OK */
1336 if (v >= 1020300)
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001337 exit(0);
1338
Darren Tucker2dcd2392004-01-23 17:13:33 +11001339 exit(2);
Darren Tucker623d92f2004-09-12 22:36:15 +10001340 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08001341 AC_MSG_RESULT([no]),
1342 [ AC_MSG_RESULT([yes])
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001343 if test -z "$zlib_check_nonfatal" ; then
1344 AC_MSG_ERROR([*** zlib too old - check config.log ***
1345Your reported zlib version has known security problems. It's possible your
1346vendor has fixed these problems without changing the version number. If you
1347are sure this is the case, you can disable the check by running
1348"./configure --without-zlib-version-check".
Darren Tuckerac1910f2005-07-26 12:00:42 +10001349If you are in doubt, upgrade zlib to version 1.2.3 or greater.
Darren Tucker2f0b5c42005-04-24 17:52:22 +10001350See http://www.gzip.org/zlib/ for details.])
Darren Tuckerdcc736b2004-01-30 14:20:59 +11001351 else
1352 AC_MSG_WARN([zlib version may have security problems])
1353 fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10001354 ],
1355 [ AC_MSG_WARN([cross compiling: not checking zlib version]) ]
Darren Tucker2dcd2392004-01-23 17:13:33 +11001356)
Damien Miller6f9c3372000-10-25 10:06:04 +11001357
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001358dnl UnixWare 2.x
Tim Rice648f8762011-01-26 12:38:57 -08001359AC_CHECK_FUNC([strcasecmp],
1360 [], [ AC_CHECK_LIB([resolv], [strcasecmp], [LIBS="$LIBS -lresolv"]) ]
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001361)
Tim Rice648f8762011-01-26 12:38:57 -08001362AC_CHECK_FUNCS([utimes],
1363 [], [ AC_CHECK_LIB([c89], [utimes], [AC_DEFINE([HAVE_UTIMES])
Tim Ricecbb90662002-07-08 19:17:10 -07001364 LIBS="$LIBS -lc89"]) ]
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00001365)
Damien Millerab18c411999-11-11 10:40:23 +11001366
Tim Ricee589a292001-11-03 11:09:32 -08001367dnl Checks for libutil functions
Damien Millerb87f6b72013-02-23 09:12:23 +11001368AC_CHECK_HEADERS([bsd/libutil.h libutil.h])
Damien Miller398c0ff2012-04-19 21:46:35 +10001369AC_SEARCH_LIBS([fmt_scaled], [util bsd])
Darren Tuckere194ba42013-05-16 20:47:31 +10001370AC_SEARCH_LIBS([scan_scaled], [util bsd])
Damien Miller398c0ff2012-04-19 21:46:35 +10001371AC_SEARCH_LIBS([login], [util bsd])
1372AC_SEARCH_LIBS([logout], [util bsd])
1373AC_SEARCH_LIBS([logwtmp], [util bsd])
1374AC_SEARCH_LIBS([openpty], [util bsd])
1375AC_SEARCH_LIBS([updwtmp], [util bsd])
Darren Tuckere194ba42013-05-16 20:47:31 +10001376AC_CHECK_FUNCS([fmt_scaled scan_scaled login logout openpty updwtmp logwtmp])
Tim Ricee589a292001-11-03 11:09:32 -08001377
Darren Tucker2fee9092016-02-17 09:48:15 +11001378# On some platforms, inet_ntop and gethostbyname may be found in libresolv
1379# or libnsl.
Damien Millerab039492014-01-28 15:07:10 +11001380AC_SEARCH_LIBS([inet_ntop], [resolv nsl])
Darren Tucker2fee9092016-02-17 09:48:15 +11001381AC_SEARCH_LIBS([gethostbyname], [resolv nsl])
Damien Millerab039492014-01-28 15:07:10 +11001382
Darren Tucker74c1c362017-09-27 07:44:41 +10001383# "Particular Function Checks"
1384# see https://www.gnu.org/software/autoconf/manual/autoconf-2.69/html_node/Particular-Functions.html
Ben Lindstrom8697e082001-02-24 21:41:10 +00001385AC_FUNC_STRFTIME
Darren Tucker74c1c362017-09-27 07:44:41 +10001386AC_FUNC_MALLOC
1387AC_FUNC_REALLOC
1388# autoconf doesn't have AC_FUNC_CALLOC so fake it if malloc returns NULL;
Darren Tuckere9dede02018-02-25 10:20:31 +11001389AC_MSG_CHECKING([if calloc(0, N) returns non-null])
1390AC_RUN_IFELSE(
1391 [AC_LANG_PROGRAM(
1392 [[ #include <stdlib.h> ]],
1393 [[ void *p = calloc(0, 1); exit(p == NULL); ]]
1394 )],
1395 [ func_calloc_0_nonnull=yes ],
1396 [ func_calloc_0_nonnull=no ],
1397 [ AC_MSG_WARN([cross compiling: assuming same as malloc])
1398 func_calloc_0_nonnull="$ac_cv_func_malloc_0_nonnull"]
1399)
1400AC_MSG_RESULT([$func_calloc_0_nonnull])
1401
Darren Tuckerd97874c2018-04-13 13:43:55 +10001402if test "x$func_calloc_0_nonnull" = "xyes"; then
Darren Tuckere9dede02018-02-25 10:20:31 +11001403 AC_DEFINE(HAVE_CALLOC, 1, [calloc(0, x) returns non-null])
1404else
1405 AC_DEFINE(HAVE_CALLOC, 0, [calloc(0, x) returns NULL])
Darren Tucker74c1c362017-09-27 07:44:41 +10001406 AC_DEFINE(calloc, rpl_calloc,
1407 [Define to rpl_calloc if the replacement function should be used.])
1408fi
Ben Lindstrom8697e082001-02-24 21:41:10 +00001409
Damien Miller3c027682001-03-14 11:39:45 +11001410# Check for ALTDIRFUNC glob() extension
Tim Rice648f8762011-01-26 12:38:57 -08001411AC_MSG_CHECKING([for GLOB_ALTDIRFUNC support])
1412AC_EGREP_CPP([FOUNDIT],
Damien Miller3c027682001-03-14 11:39:45 +11001413 [
1414 #include <glob.h>
1415 #ifdef GLOB_ALTDIRFUNC
1416 FOUNDIT
1417 #endif
Damien Millera8e06ce2003-11-21 23:48:55 +11001418 ],
Damien Miller3c027682001-03-14 11:39:45 +11001419 [
Tim Rice648f8762011-01-26 12:38:57 -08001420 AC_DEFINE([GLOB_HAS_ALTDIRFUNC], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001421 [Define if your system glob() function has
1422 the GLOB_ALTDIRFUNC extension])
Tim Rice648f8762011-01-26 12:38:57 -08001423 AC_MSG_RESULT([yes])
Damien Miller3c027682001-03-14 11:39:45 +11001424 ],
1425 [
Tim Rice648f8762011-01-26 12:38:57 -08001426 AC_MSG_RESULT([no])
Damien Miller3c027682001-03-14 11:39:45 +11001427 ]
1428)
Damien Millerab18c411999-11-11 10:40:23 +11001429
Ben Lindstrom45b14db2001-03-17 01:15:38 +00001430# Check for g.gl_matchc glob() extension
Tim Rice648f8762011-01-26 12:38:57 -08001431AC_MSG_CHECKING([for gl_matchc field in glob_t])
1432AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <glob.h> ]],
1433 [[ glob_t g; g.gl_matchc = 1; ]])],
Damien Millera8e06ce2003-11-21 23:48:55 +11001434 [
Tim Rice648f8762011-01-26 12:38:57 -08001435 AC_DEFINE([GLOB_HAS_GL_MATCHC], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001436 [Define if your system glob() function has
1437 gl_matchc options in glob_t])
Tim Rice648f8762011-01-26 12:38:57 -08001438 AC_MSG_RESULT([yes])
1439 ], [
1440 AC_MSG_RESULT([no])
1441])
Ben Lindstrom45b14db2001-03-17 01:15:38 +00001442
Damien Millera6e121a2010-10-07 21:39:17 +11001443# Check for g.gl_statv glob() extension
Tim Rice648f8762011-01-26 12:38:57 -08001444AC_MSG_CHECKING([for gl_statv and GLOB_KEEPSTAT extensions for glob])
1445AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <glob.h> ]], [[
Damien Millera6e121a2010-10-07 21:39:17 +11001446#ifndef GLOB_KEEPSTAT
1447#error "glob does not support GLOB_KEEPSTAT extension"
1448#endif
1449glob_t g;
1450g.gl_statv = NULL;
Tim Rice648f8762011-01-26 12:38:57 -08001451]])],
Damien Millera6e121a2010-10-07 21:39:17 +11001452 [
Tim Rice648f8762011-01-26 12:38:57 -08001453 AC_DEFINE([GLOB_HAS_GL_STATV], [1],
Damien Millera6e121a2010-10-07 21:39:17 +11001454 [Define if your system glob() function has
1455 gl_statv options in glob_t])
Tim Rice648f8762011-01-26 12:38:57 -08001456 AC_MSG_RESULT([yes])
1457 ], [
1458 AC_MSG_RESULT([no])
Damien Miller72ef7c12015-01-15 02:21:31 +11001459
Tim Rice648f8762011-01-26 12:38:57 -08001460])
Damien Millera6e121a2010-10-07 21:39:17 +11001461
Tim Rice648f8762011-01-26 12:38:57 -08001462AC_CHECK_DECLS([GLOB_NOMATCH], , , [#include <glob.h>])
Darren Tucker096faec2006-09-01 20:29:10 +10001463
Darren Tucker7df91b02016-07-14 12:25:24 +10001464AC_CHECK_DECL([VIS_ALL], ,
1465 AC_DEFINE(BROKEN_STRNVIS, 1, [missing VIS_ALL]), [#include <vis.h>])
1466
Damien Miller18bb4732001-03-28 14:35:30 +10001467AC_MSG_CHECKING([whether struct dirent allocates space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001468AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08001469 [AC_LANG_PROGRAM([[
Damien Miller18bb4732001-03-28 14:35:30 +10001470#include <sys/types.h>
Tim Rice648f8762011-01-26 12:38:57 -08001471#include <dirent.h>]],
1472 [[
1473 struct dirent d;
1474 exit(sizeof(d.d_name)<=sizeof(char));
Darren Tucker623d92f2004-09-12 22:36:15 +10001475 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08001476 [AC_MSG_RESULT([yes])],
Damien Miller18bb4732001-03-28 14:35:30 +10001477 [
Tim Rice648f8762011-01-26 12:38:57 -08001478 AC_MSG_RESULT([no])
1479 AC_DEFINE([BROKEN_ONE_BYTE_DIRENT_D_NAME], [1],
Darren Tucker79d09fa2005-11-24 22:34:54 +11001480 [Define if your struct dirent expects you to
Tim Rice7df8d392005-09-19 09:33:39 -07001481 allocate extra space for d_name])
Darren Tuckera0c2b392004-09-11 23:26:37 +10001482 ],
Tim Riceeae17cc2005-03-17 16:52:20 -08001483 [
Darren Tuckera0c2b392004-09-11 23:26:37 +10001484 AC_MSG_WARN([cross compiling: assuming BROKEN_ONE_BYTE_DIRENT_D_NAME])
Tim Rice648f8762011-01-26 12:38:57 -08001485 AC_DEFINE([BROKEN_ONE_BYTE_DIRENT_D_NAME])
Damien Miller18bb4732001-03-28 14:35:30 +10001486 ]
1487)
1488
Damien Miller36f49652004-08-15 18:40:59 +10001489AC_MSG_CHECKING([for /proc/pid/fd directory])
1490if test -d "/proc/$$/fd" ; then
Tim Rice648f8762011-01-26 12:38:57 -08001491 AC_DEFINE([HAVE_PROC_PID], [1], [Define if you have /proc/$pid/fd])
1492 AC_MSG_RESULT([yes])
Damien Miller36f49652004-08-15 18:40:59 +10001493else
Tim Rice648f8762011-01-26 12:38:57 -08001494 AC_MSG_RESULT([no])
Damien Miller36f49652004-08-15 18:40:59 +10001495fi
1496
Damien Millerc547bf12001-02-16 10:18:12 +11001497# Check whether user wants S/Key support
Damien Millera8e06ce2003-11-21 23:48:55 +11001498SKEY_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08001499AC_ARG_WITH([skey],
Darren Tucker1b6f2292005-02-11 16:11:49 +11001500 [ --with-skey[[=PATH]] Enable S/Key support (optionally in PATH)],
Damien Millerc547bf12001-02-16 10:18:12 +11001501 [
1502 if test "x$withval" != "xno" ; then
1503
1504 if test "x$withval" != "xyes" ; then
1505 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1506 LDFLAGS="$LDFLAGS -L${withval}/lib"
1507 fi
1508
Tim Rice648f8762011-01-26 12:38:57 -08001509 AC_DEFINE([SKEY], [1], [Define if you want S/Key support])
Damien Millerc547bf12001-02-16 10:18:12 +11001510 LIBS="-lskey $LIBS"
Damien Millera8e06ce2003-11-21 23:48:55 +11001511 SKEY_MSG="yes"
Tim Riceeae17cc2005-03-17 16:52:20 -08001512
Tim Rice4cec93f2002-02-26 08:40:48 -08001513 AC_MSG_CHECKING([for s/key support])
Darren Tucker314d89e2005-10-17 23:29:23 +10001514 AC_LINK_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08001515 [AC_LANG_PROGRAM([[
Tim Rice4cec93f2002-02-26 08:40:48 -08001516#include <stdio.h>
1517#include <skey.h>
Tim Rice648f8762011-01-26 12:38:57 -08001518 ]], [[
1519 char *ff = skey_keyinfo(""); ff="";
1520 exit(0);
Darren Tucker314d89e2005-10-17 23:29:23 +10001521 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08001522 [AC_MSG_RESULT([yes])],
Tim Rice4cec93f2002-02-26 08:40:48 -08001523 [
Tim Rice648f8762011-01-26 12:38:57 -08001524 AC_MSG_RESULT([no])
Damien Millerc547bf12001-02-16 10:18:12 +11001525 AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
1526 ])
Tim Ricee1d93702016-05-31 11:13:22 -07001527 AC_MSG_CHECKING([if skeychallenge takes 4 arguments])
Tim Rice648f8762011-01-26 12:38:57 -08001528 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1529#include <stdio.h>
1530#include <skey.h>
1531 ]], [[
1532 (void)skeychallenge(NULL,"name","",0);
1533 ]])],
1534 [
1535 AC_MSG_RESULT([yes])
1536 AC_DEFINE([SKEYCHALLENGE_4ARG], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07001537 [Define if your skeychallenge()
1538 function takes 4 arguments (NetBSD)])],
Tim Rice648f8762011-01-26 12:38:57 -08001539 [
1540 AC_MSG_RESULT([no])
1541 ])
Damien Millerc547bf12001-02-16 10:18:12 +11001542 fi
1543 ]
1544)
1545
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001546# Check whether user wants to use ldns
1547LDNS_MSG="no"
1548AC_ARG_WITH(ldns,
1549 [ --with-ldns[[=PATH]] Use ldns for DNSSEC support (optionally in PATH)],
Damien Miller523db852017-02-03 16:01:22 +11001550 [
1551 ldns=""
1552 if test "x$withval" = "xyes" ; then
1553 AC_PATH_TOOL([LDNSCONFIG], [ldns-config], [no])
Darren Tuckerf001de82017-12-11 13:42:51 +11001554 if test "x$LDNSCONFIG" = "xno"; then
Damien Miller523db852017-02-03 16:01:22 +11001555 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1556 LDFLAGS="$LDFLAGS -L${withval}/lib"
1557 LIBS="-lldns $LIBS"
1558 ldns=yes
1559 else
1560 LIBS="$LIBS `$LDNSCONFIG --libs`"
1561 CPPFLAGS="$CPPFLAGS `$LDNSCONFIG --cflags`"
Darren Tucker7af27bf2017-03-24 09:44:56 +11001562 ldns=yes
Damien Miller523db852017-02-03 16:01:22 +11001563 fi
1564 elif test "x$withval" != "xno" ; then
1565 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1566 LDFLAGS="$LDFLAGS -L${withval}/lib"
1567 LIBS="-lldns $LIBS"
1568 ldns=yes
1569 fi
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001570
Damien Miller523db852017-02-03 16:01:22 +11001571 # Verify that it works.
1572 if test "x$ldns" = "xyes" ; then
1573 AC_DEFINE(HAVE_LDNS, 1, [Define if you want ldns support])
1574 LDNS_MSG="yes"
1575 AC_MSG_CHECKING([for ldns support])
1576 AC_LINK_IFELSE(
1577 [AC_LANG_SOURCE([[
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001578#include <stdio.h>
1579#include <stdlib.h>
1580#include <stdint.h>
1581#include <ldns/ldns.h>
1582int main() { ldns_status status = ldns_verify_trusted(NULL, NULL, NULL, NULL); status=LDNS_STATUS_OK; exit(0); }
Damien Miller523db852017-02-03 16:01:22 +11001583 ]])
1584 ],
1585 [AC_MSG_RESULT(yes)],
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001586 [
1587 AC_MSG_RESULT(no)
1588 AC_MSG_ERROR([** Incomplete or missing ldns libraries.])
1589 ])
Damien Miller523db852017-02-03 16:01:22 +11001590 fi
1591])
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001592
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001593# Check whether user wants libedit support
1594LIBEDIT_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08001595AC_ARG_WITH([libedit],
Darren Tucker1b6f2292005-02-11 16:11:49 +11001596 [ --with-libedit[[=PATH]] Enable libedit support for sftp],
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001597 [ if test "x$withval" != "xno" ; then
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001598 if test "x$withval" = "xyes" ; then
Darren Tucker59353892012-05-19 15:24:37 +10001599 AC_PATH_TOOL([PKGCONFIG], [pkg-config], [no])
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001600 if test "x$PKGCONFIG" != "xno"; then
Tim Rice648f8762011-01-26 12:38:57 -08001601 AC_MSG_CHECKING([if $PKGCONFIG knows about libedit])
Tim Ricee1d93702016-05-31 11:13:22 -07001602 if "$PKGCONFIG" libedit; then
Tim Rice648f8762011-01-26 12:38:57 -08001603 AC_MSG_RESULT([yes])
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001604 use_pkgconfig_for_libedit=yes
1605 else
Tim Rice648f8762011-01-26 12:38:57 -08001606 AC_MSG_RESULT([no])
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001607 fi
1608 fi
1609 else
Darren Tuckerc373a562005-09-22 20:15:08 +10001610 CPPFLAGS="$CPPFLAGS -I${withval}/include"
1611 if test -n "${need_dash_r}"; then
1612 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
1613 else
1614 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1615 fi
Darren Tucker1df61452005-03-21 09:58:07 +11001616 fi
Damien Miller1f789802010-10-11 22:35:22 +11001617 if test "x$use_pkgconfig_for_libedit" = "xyes"; then
Darren Tucker8369c8e2013-12-05 11:00:16 +11001618 LIBEDIT=`$PKGCONFIG --libs libedit`
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001619 CPPFLAGS="$CPPFLAGS `$PKGCONFIG --cflags libedit`"
1620 else
1621 LIBEDIT="-ledit -lcurses"
1622 fi
1623 OTHERLIBS=`echo $LIBEDIT | sed 's/-ledit//'`
Tim Rice648f8762011-01-26 12:38:57 -08001624 AC_CHECK_LIB([edit], [el_init],
1625 [ AC_DEFINE([USE_LIBEDIT], [1], [Use libedit for sftp])
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001626 LIBEDIT_MSG="yes"
Tim Rice648f8762011-01-26 12:38:57 -08001627 AC_SUBST([LIBEDIT])
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001628 ],
Tim Rice648f8762011-01-26 12:38:57 -08001629 [ AC_MSG_ERROR([libedit not found]) ],
Darren Tuckerc4ccb122010-04-09 14:04:35 +10001630 [ $OTHERLIBS ]
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001631 )
Tim Rice648f8762011-01-26 12:38:57 -08001632 AC_MSG_CHECKING([if libedit version is compatible])
Tim Ricec1819c82005-08-15 17:48:40 -07001633 AC_COMPILE_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08001634 [AC_LANG_PROGRAM([[ #include <histedit.h> ]],
1635 [[
Darren Tuckerc7572b22005-08-10 20:34:15 +10001636 int i = H_SETSIZE;
1637 el_init("", NULL, NULL, NULL);
1638 exit(0);
Tim Ricec1819c82005-08-15 17:48:40 -07001639 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08001640 [ AC_MSG_RESULT([yes]) ],
1641 [ AC_MSG_RESULT([no])
1642 AC_MSG_ERROR([libedit version is not compatible]) ]
Darren Tuckerc7572b22005-08-10 20:34:15 +10001643 )
Darren Tucker16bcc1c2004-11-07 20:14:34 +11001644 fi ]
1645)
1646
Darren Tuckerd9f88912005-02-20 21:01:48 +11001647AUDIT_MODULE=none
Tim Rice648f8762011-01-26 12:38:57 -08001648AC_ARG_WITH([audit],
Darren Tuckerea52a822011-01-17 21:15:27 +11001649 [ --with-audit=module Enable audit support (modules=debug,bsm,linux)],
Darren Tuckerd9f88912005-02-20 21:01:48 +11001650 [
Tim Rice648f8762011-01-26 12:38:57 -08001651 AC_MSG_CHECKING([for supported audit module])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001652 case "$withval" in
1653 bsm)
Tim Rice648f8762011-01-26 12:38:57 -08001654 AC_MSG_RESULT([bsm])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001655 AUDIT_MODULE=bsm
1656 dnl Checks for headers, libs and functions
Tim Rice648f8762011-01-26 12:38:57 -08001657 AC_CHECK_HEADERS([bsm/audit.h], [],
1658 [AC_MSG_ERROR([BSM enabled and bsm/audit.h not found])],
Darren Tucker6d0d6fb2006-09-09 01:05:21 +10001659 [
1660#ifdef HAVE_TIME_H
1661# include <time.h>
1662#endif
1663 ]
1664)
Tim Rice648f8762011-01-26 12:38:57 -08001665 AC_CHECK_LIB([bsm], [getaudit], [],
1666 [AC_MSG_ERROR([BSM enabled and required library not found])])
1667 AC_CHECK_FUNCS([getaudit], [],
1668 [AC_MSG_ERROR([BSM enabled and required function not found])])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001669 # These are optional
Tim Rice648f8762011-01-26 12:38:57 -08001670 AC_CHECK_FUNCS([getaudit_addr aug_get_machine])
1671 AC_DEFINE([USE_BSM_AUDIT], [1], [Use BSM audit module])
Darren Tucker1fcec9d2013-12-19 11:00:12 +11001672 if test "$sol2ver" -ge 11; then
Tim Ricee1d93702016-05-31 11:13:22 -07001673 SSHDLIBS="$SSHDLIBS -lscf"
1674 AC_DEFINE([BROKEN_BSM_API], [1],
1675 [The system has incomplete BSM API])
Darren Tucker93a2d412012-02-24 10:40:41 +11001676 fi
Darren Tuckerd9f88912005-02-20 21:01:48 +11001677 ;;
Darren Tuckerea52a822011-01-17 21:15:27 +11001678 linux)
Tim Rice648f8762011-01-26 12:38:57 -08001679 AC_MSG_RESULT([linux])
Darren Tuckerea52a822011-01-17 21:15:27 +11001680 AUDIT_MODULE=linux
1681 dnl Checks for headers, libs and functions
Tim Rice648f8762011-01-26 12:38:57 -08001682 AC_CHECK_HEADERS([libaudit.h])
Darren Tuckerea52a822011-01-17 21:15:27 +11001683 SSHDLIBS="$SSHDLIBS -laudit"
Tim Rice648f8762011-01-26 12:38:57 -08001684 AC_DEFINE([USE_LINUX_AUDIT], [1], [Use Linux audit module])
Darren Tuckerea52a822011-01-17 21:15:27 +11001685 ;;
Darren Tuckerd9f88912005-02-20 21:01:48 +11001686 debug)
1687 AUDIT_MODULE=debug
Tim Rice648f8762011-01-26 12:38:57 -08001688 AC_MSG_RESULT([debug])
1689 AC_DEFINE([SSH_AUDIT_EVENTS], [1], [Use audit debugging module])
Darren Tuckerd9f88912005-02-20 21:01:48 +11001690 ;;
Tim Rice8bc6b902005-08-09 10:09:53 -07001691 no)
Tim Rice648f8762011-01-26 12:38:57 -08001692 AC_MSG_RESULT([no])
Tim Rice8bc6b902005-08-09 10:09:53 -07001693 ;;
Darren Tuckerd9f88912005-02-20 21:01:48 +11001694 *)
1695 AC_MSG_ERROR([Unknown audit module $withval])
1696 ;;
1697 esac ]
1698)
1699
Darren Tucker096118d2014-01-21 12:48:51 +11001700AC_ARG_WITH([pie],
Damien Miller76c04802015-01-13 19:38:18 +11001701 [ --with-pie Build Position Independent Executables if possible], [
Darren Tucker096118d2014-01-21 12:48:51 +11001702 if test "x$withval" = "xno"; then
Damien Miller852472a2014-01-22 16:31:18 +11001703 use_pie=no
Darren Tucker096118d2014-01-21 12:48:51 +11001704 fi
1705 if test "x$withval" = "xyes"; then
Damien Miller852472a2014-01-22 16:31:18 +11001706 use_pie=yes
Darren Tucker096118d2014-01-21 12:48:51 +11001707 fi
1708 ]
1709)
Damien Miller852472a2014-01-22 16:31:18 +11001710if test "x$use_pie" = "x"; then
1711 use_pie=no
1712fi
1713if test "x$use_toolchain_hardening" != "x1" && test "x$use_pie" = "xauto"; then
1714 # Turn off automatic PIE when toolchain hardening is off.
1715 use_pie=no
1716fi
Damien Millerc161fc92014-01-29 21:01:33 +11001717if test "x$use_pie" = "xauto"; then
Damien Miller852472a2014-01-22 16:31:18 +11001718 # Automatic PIE requires gcc >= 4.x
1719 AC_MSG_CHECKING([for gcc >= 4.x])
1720 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
1721#if !defined(__GNUC__) || __GNUC__ < 4
1722#error gcc is too old
1723#endif
1724]])],
1725 [ AC_MSG_RESULT([yes]) ],
1726 [ AC_MSG_RESULT([no])
1727 use_pie=no ]
1728)
1729fi
1730if test "x$use_pie" != "xno"; then
Damien Miller5c2ff5e2014-01-22 21:30:12 +11001731 SAVED_CFLAGS="$CFLAGS"
1732 SAVED_LDFLAGS="$LDFLAGS"
Darren Tucker096118d2014-01-21 12:48:51 +11001733 OSSH_CHECK_CFLAG_COMPILE([-fPIE])
1734 OSSH_CHECK_LDFLAG_LINK([-pie])
Damien Miller5c2ff5e2014-01-22 21:30:12 +11001735 # We use both -fPIE and -pie or neither.
1736 AC_MSG_CHECKING([whether both -fPIE and -pie are supported])
1737 if echo "x $CFLAGS" | grep ' -fPIE' >/dev/null 2>&1 && \
1738 echo "x $LDFLAGS" | grep ' -pie' >/dev/null 2>&1 ; then
1739 AC_MSG_RESULT([yes])
1740 else
1741 AC_MSG_RESULT([no])
1742 CFLAGS="$SAVED_CFLAGS"
1743 LDFLAGS="$SAVED_LDFLAGS"
1744 fi
Darren Tucker096118d2014-01-21 12:48:51 +11001745fi
1746
Damien Millerfe1f1432003-02-24 15:45:42 +11001747dnl Checks for library functions. Please keep in alphabetical order
Tim Rice648f8762011-01-26 12:38:57 -08001748AC_CHECK_FUNCS([ \
Damien Miller1ff130d2013-12-07 11:51:51 +11001749 Blowfish_initstate \
1750 Blowfish_expandstate \
1751 Blowfish_expand0state \
1752 Blowfish_stream2word \
Damien Miller57f39152005-11-24 19:58:19 +11001753 asprintf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001754 b64_ntop \
1755 __b64_ntop \
1756 b64_pton \
1757 __b64_pton \
1758 bcopy \
Damien Millera9134422013-12-07 11:35:36 +11001759 bcrypt_pbkdf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001760 bindresvport_sa \
Damien Miller1ff130d2013-12-07 11:51:51 +11001761 blf_enc \
Darren Tuckera9004422018-02-24 20:25:22 +11001762 bzero \
Damien Millerc96d8532014-01-25 13:12:28 +11001763 cap_rights_limit \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001764 clock \
1765 closefrom \
1766 dirfd \
Darren Tuckerefdf5342013-05-30 08:29:08 +10001767 endgrent \
Darren Tucker6310ef22016-07-13 14:42:35 +10001768 err \
1769 errx \
Damien Miller1d2c4562014-02-04 11:18:20 +11001770 explicit_bzero \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001771 fchmod \
1772 fchown \
Darren Tuckercd3ab572018-02-26 14:37:06 +11001773 flock \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001774 freeaddrinfo \
Damien Millerb7956912017-09-19 12:29:23 +10001775 freezero \
Darren Tuckera5cf1e22014-01-17 18:10:58 +11001776 fstatfs \
Darren Tucker598eaa62008-06-09 03:32:29 +10001777 fstatvfs \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001778 futimes \
1779 getaddrinfo \
1780 getcwd \
1781 getgrouplist \
1782 getnameinfo \
1783 getopt \
Damien Miller151c6e42017-06-01 15:25:13 +10001784 getpagesize \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001785 getpeereid \
Darren Tucker164aa302007-03-21 21:39:57 +11001786 getpeerucred \
Darren Tucker3c4a24c2013-02-15 11:41:35 +11001787 getpgid \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001788 _getpty \
1789 getrlimit \
Damien Millerafa6e792018-04-13 13:31:42 +10001790 getrandom \
Darren Tuckerb39593a2018-02-25 13:25:15 +11001791 getsid \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001792 getttyent \
1793 glob \
Darren Tucker909a3902010-01-15 12:38:30 +11001794 group_from_gid \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001795 inet_aton \
1796 inet_ntoa \
1797 inet_ntop \
1798 innetgr \
Darren Tuckerd38f05d2017-03-20 13:38:27 +11001799 llabs \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001800 login_getcapbool \
1801 md5_crypt \
1802 memmove \
Damien Miller3d673d12014-08-27 06:32:01 +10001803 memset_s \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001804 mkdtemp \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001805 ngetaddrinfo \
1806 nsleep \
1807 ogetaddrinfo \
1808 openlog_r \
Darren Tucker3ddd15e2015-11-30 07:23:53 +11001809 pledge \
Darren Tuckerfebf0f52007-06-25 22:15:12 +10001810 poll \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001811 prctl \
1812 pstat \
Darren Tucker6c8c9a62018-02-24 20:46:37 +11001813 raise \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001814 readpassphrase \
Darren Tucker642652d2014-12-10 01:32:23 +11001815 reallocarray \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001816 recvmsg \
Damien Miller151c6e42017-06-01 15:25:13 +10001817 recallocarray \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001818 rresvport_af \
1819 sendmsg \
1820 setdtablesize \
1821 setegid \
1822 setenv \
1823 seteuid \
Darren Tucker909a3902010-01-15 12:38:30 +11001824 setgroupent \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001825 setgroups \
Darren Tucker34f702a2012-07-04 08:50:09 +10001826 setlinebuf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001827 setlogin \
Darren Tucker909a3902010-01-15 12:38:30 +11001828 setpassent\
Darren Tucker0c9653f2005-05-28 15:58:14 +10001829 setpcred \
1830 setproctitle \
1831 setregid \
1832 setreuid \
1833 setrlimit \
1834 setsid \
1835 setvbuf \
1836 sigaction \
1837 sigvec \
1838 snprintf \
1839 socketpair \
Darren Tucker5b2e2ba2008-06-08 09:25:28 +10001840 statfs \
1841 statvfs \
Darren Tuckerafec0772016-12-13 10:23:03 +11001842 strcasestr \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001843 strdup \
1844 strerror \
1845 strlcat \
1846 strlcpy \
1847 strmode \
Darren Tucker33561e62018-03-03 14:56:09 +11001848 strndup \
Darren Tuckerb54f50e2011-09-29 23:17:18 +10001849 strnlen \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001850 strnvis \
Darren Tuckeraa74f672010-08-16 13:15:23 +10001851 strptime \
Darren Tucker44fc3342017-09-25 09:48:10 +10001852 strsignal \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001853 strtonum \
Darren Tucker81eb5d52005-06-01 21:39:33 +10001854 strtoll \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001855 strtoul \
Darren Tucker8e6fb782013-02-15 12:13:01 +11001856 strtoull \
Damien Miller34a17692007-06-11 14:15:42 +10001857 swap32 \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001858 sysconf \
1859 tcgetpgrp \
Damien Milleraa180632010-10-07 21:25:27 +11001860 timingsafe_bcmp \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001861 truncate \
1862 unsetenv \
1863 updwtmpx \
Darren Tucker909a3902010-01-15 12:38:30 +11001864 user_from_uid \
Damien Millerf4db77d2013-03-15 10:34:25 +11001865 usleep \
Damien Miller57f39152005-11-24 19:58:19 +11001866 vasprintf \
Darren Tucker0c9653f2005-05-28 15:58:14 +10001867 vsnprintf \
1868 waitpid \
Darren Tucker6310ef22016-07-13 14:42:35 +10001869 warn \
Tim Rice648f8762011-01-26 12:38:57 -08001870])
Tim Rice13aae5e2001-10-21 17:53:58 -07001871
Darren Tuckera9004422018-02-24 20:25:22 +11001872AC_CHECK_DECLS([bzero])
1873
Darren Tuckerc61d5ec2017-02-03 14:10:34 +11001874dnl Wide character support.
Darren Tuckera2333582016-07-14 10:59:09 +10001875AC_CHECK_FUNCS([mblen mbtowc nl_langinfo wcwidth])
Darren Tuckera2333582016-07-14 10:59:09 +10001876
Darren Tucker10e290e2016-12-13 13:51:32 +11001877TEST_SSH_UTF8=${TEST_SSH_UTF8:=yes}
Darren Tucker47b8c992016-12-08 15:48:34 +11001878AC_MSG_CHECKING([for utf8 locale support])
1879AC_RUN_IFELSE(
1880 [AC_LANG_PROGRAM([[
1881#include <locale.h>
Darren Tuckerc3599502016-12-09 12:52:02 +11001882#include <stdlib.h>
Darren Tucker47b8c992016-12-08 15:48:34 +11001883 ]], [[
1884 char *loc = setlocale(LC_CTYPE, "en_US.UTF-8");
1885 if (loc != NULL)
1886 exit(0);
1887 exit(1);
1888 ]])],
1889 AC_MSG_RESULT(yes),
1890 [AC_MSG_RESULT(no)
1891 TEST_SSH_UTF8=no],
1892 AC_MSG_WARN([cross compiling: assuming yes])
1893)
1894
Tim Ricec7a8af02010-11-08 14:26:23 -08001895AC_LINK_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08001896 [AC_LANG_PROGRAM(
1897 [[ #include <ctype.h> ]],
1898 [[ return (isblank('a')); ]])],
1899 [AC_DEFINE([HAVE_ISBLANK], [1], [Define if you have isblank(3C).])
Tim Ricec7a8af02010-11-08 14:26:23 -08001900])
1901
Damien Miller5fbe93f2016-07-15 13:54:31 +10001902disable_pkcs11=
1903AC_ARG_ENABLE([pkcs11],
1904 [ --disable-pkcs11 disable PKCS#11 support code [no]],
1905 [
1906 if test "x$enableval" = "xno" ; then
1907 disable_pkcs11=1
1908 fi
1909 ]
1910)
1911
Damien Miller72ef7c12015-01-15 02:21:31 +11001912# PKCS11 depends on OpenSSL.
Damien Miller5fbe93f2016-07-15 13:54:31 +10001913if test "x$openssl" = "xyes" && test "x$disable_pkcs11" = "x"; then
Damien Miller72ef7c12015-01-15 02:21:31 +11001914 # PKCS#11 support requires dlopen() and co
1915 AC_SEARCH_LIBS([dlopen], [dl],
Darren Tucker146c3bd2018-02-26 12:51:29 +11001916 AC_CHECK_DECL([RTLD_NOW],
1917 AC_DEFINE([ENABLE_PKCS11], [], [Enable for PKCS#11 support]),
1918 [], [#include <dlfcn.h>]
1919 )
Damien Miller72ef7c12015-01-15 02:21:31 +11001920 )
1921fi
Damien Millerb3c9f782010-02-12 10:11:34 +11001922
Darren Tuckerd5e082f2003-09-22 12:08:23 +10001923# IRIX has a const char return value for gai_strerror()
Tim Rice648f8762011-01-26 12:38:57 -08001924AC_CHECK_FUNCS([gai_strerror], [
1925 AC_DEFINE([HAVE_GAI_STRERROR])
1926 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckerd5e082f2003-09-22 12:08:23 +10001927#include <sys/types.h>
1928#include <sys/socket.h>
1929#include <netdb.h>
1930
Tim Rice648f8762011-01-26 12:38:57 -08001931const char *gai_strerror(int);
1932 ]], [[
1933 char *str;
1934 str = gai_strerror(0);
1935 ]])], [
1936 AC_DEFINE([HAVE_CONST_GAI_STRERROR_PROTO], [1],
1937 [Define if gai_strerror() returns const char *])], [])])
Darren Tuckerd5e082f2003-09-22 12:08:23 +10001938
Tim Rice648f8762011-01-26 12:38:57 -08001939AC_SEARCH_LIBS([nanosleep], [rt posix4], [AC_DEFINE([HAVE_NANOSLEEP], [1],
1940 [Some systems put nanosleep outside of libc])])
Damien Millercd6853c2003-01-28 11:33:42 +11001941
Darren Tuckera7108912013-06-02 08:18:31 +10001942AC_SEARCH_LIBS([clock_gettime], [rt],
1943 [AC_DEFINE([HAVE_CLOCK_GETTIME], [1], [Have clock_gettime])])
1944
Darren Tuckerf1159b52003-07-07 19:44:01 +10001945dnl Make sure prototypes are defined for these before using them.
Tim Rice648f8762011-01-26 12:38:57 -08001946AC_CHECK_DECL([strsep],
1947 [AC_CHECK_FUNCS([strsep])],
Darren Tucker390b6d52005-05-28 16:54:36 +10001948 [],
1949 [
1950#ifdef HAVE_STRING_H
1951# include <string.h>
1952#endif
1953 ])
Ben Lindstrom3e006472002-10-16 00:24:03 +00001954
Darren Tuckerb2427c82003-09-10 15:22:44 +10001955dnl tcsendbreak might be a macro
Tim Rice648f8762011-01-26 12:38:57 -08001956AC_CHECK_DECL([tcsendbreak],
1957 [AC_DEFINE([HAVE_TCSENDBREAK])],
1958 [AC_CHECK_FUNCS([tcsendbreak])],
Darren Tuckerb2427c82003-09-10 15:22:44 +10001959 [#include <termios.h>]
1960)
1961
Tim Rice648f8762011-01-26 12:38:57 -08001962AC_CHECK_DECLS([h_errno], , ,[#include <netdb.h>])
Darren Tucker5bb14002004-04-23 18:53:10 +10001963
Tim Rice648f8762011-01-26 12:38:57 -08001964AC_CHECK_DECLS([SHUT_RD], , ,
Darren Tucker128a0892006-07-12 19:02:56 +10001965 [
1966#include <sys/types.h>
1967#include <sys/socket.h>
1968 ])
Darren Tucker248469b2006-07-12 14:14:31 +10001969
Tim Rice648f8762011-01-26 12:38:57 -08001970AC_CHECK_DECLS([O_NONBLOCK], , ,
Darren Tucker248469b2006-07-12 14:14:31 +10001971 [
1972#include <sys/types.h>
1973#ifdef HAVE_SYS_STAT_H
1974# include <sys/stat.h>
1975#endif
1976#ifdef HAVE_FCNTL_H
1977# include <fcntl.h>
1978#endif
1979 ])
1980
Darren Tucker2eb40412018-02-24 21:06:48 +11001981AC_CHECK_DECLS([readv, writev], , , [
Darren Tuckered0b5922006-09-03 22:44:49 +10001982#include <sys/types.h>
1983#include <sys/uio.h>
1984#include <unistd.h>
1985 ])
1986
Tim Rice648f8762011-01-26 12:38:57 -08001987AC_CHECK_DECLS([MAXSYMLINKS], , , [
Darren Tucker6d862a52007-04-29 14:39:02 +10001988#include <sys/param.h>
1989 ])
1990
Tim Rice648f8762011-01-26 12:38:57 -08001991AC_CHECK_DECLS([offsetof], , , [
Darren Tuckerdca0edf2007-04-29 15:06:44 +10001992#include <stddef.h>
1993 ])
1994
Darren Tuckerc7aad002013-06-02 07:18:47 +10001995# extra bits for select(2)
1996AC_CHECK_DECLS([howmany, NFDBITS], [], [], [[
1997#include <sys/param.h>
1998#include <sys/types.h>
1999#ifdef HAVE_SYS_SYSMACROS_H
2000#include <sys/sysmacros.h>
2001#endif
2002#ifdef HAVE_SYS_SELECT_H
2003#include <sys/select.h>
2004#endif
2005#ifdef HAVE_SYS_TIME_H
2006#include <sys/time.h>
2007#endif
2008#ifdef HAVE_UNISTD_H
2009#include <unistd.h>
2010#endif
2011 ]])
2012AC_CHECK_TYPES([fd_mask], [], [], [[
2013#include <sys/param.h>
2014#include <sys/types.h>
2015#ifdef HAVE_SYS_SELECT_H
2016#include <sys/select.h>
2017#endif
2018#ifdef HAVE_SYS_TIME_H
2019#include <sys/time.h>
2020#endif
2021#ifdef HAVE_UNISTD_H
2022#include <unistd.h>
2023#endif
2024 ]])
2025
Tim Rice648f8762011-01-26 12:38:57 -08002026AC_CHECK_FUNCS([setresuid], [
Darren Tucker2a6b0292003-12-31 14:59:17 +11002027 dnl Some platorms have setresuid that isn't implemented, test for this
Tim Rice648f8762011-01-26 12:38:57 -08002028 AC_MSG_CHECKING([if setresuid seems to work])
Darren Tucker623d92f2004-09-12 22:36:15 +10002029 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002030 [AC_LANG_PROGRAM([[
Darren Tuckere937be32003-12-17 18:53:26 +11002031#include <stdlib.h>
2032#include <errno.h>
Tim Rice648f8762011-01-26 12:38:57 -08002033 ]], [[
2034 errno=0;
2035 setresuid(0,0,0);
2036 if (errno==ENOSYS)
2037 exit(1);
2038 else
2039 exit(0);
Darren Tucker623d92f2004-09-12 22:36:15 +10002040 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08002041 [AC_MSG_RESULT([yes])],
2042 [AC_DEFINE([BROKEN_SETRESUID], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07002043 [Define if your setresuid() is broken])
Tim Rice648f8762011-01-26 12:38:57 -08002044 AC_MSG_RESULT([not implemented])],
Darren Tuckera0c2b392004-09-11 23:26:37 +10002045 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11002046 )
2047])
Darren Tuckere937be32003-12-17 18:53:26 +11002048
Tim Rice648f8762011-01-26 12:38:57 -08002049AC_CHECK_FUNCS([setresgid], [
Darren Tucker2a6b0292003-12-31 14:59:17 +11002050 dnl Some platorms have setresgid that isn't implemented, test for this
Tim Rice648f8762011-01-26 12:38:57 -08002051 AC_MSG_CHECKING([if setresgid seems to work])
Darren Tucker623d92f2004-09-12 22:36:15 +10002052 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002053 [AC_LANG_PROGRAM([[
Darren Tuckere937be32003-12-17 18:53:26 +11002054#include <stdlib.h>
2055#include <errno.h>
Tim Rice648f8762011-01-26 12:38:57 -08002056 ]], [[
2057 errno=0;
2058 setresgid(0,0,0);
2059 if (errno==ENOSYS)
2060 exit(1);
2061 else
2062 exit(0);
Darren Tucker623d92f2004-09-12 22:36:15 +10002063 ]])],
Tim Rice648f8762011-01-26 12:38:57 -08002064 [AC_MSG_RESULT([yes])],
2065 [AC_DEFINE([BROKEN_SETRESGID], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07002066 [Define if your setresgid() is broken])
Tim Rice648f8762011-01-26 12:38:57 -08002067 AC_MSG_RESULT([not implemented])],
Darren Tuckera0c2b392004-09-11 23:26:37 +10002068 [AC_MSG_WARN([cross compiling: not checking setresuid])]
Darren Tucker2a6b0292003-12-31 14:59:17 +11002069 )
2070])
Darren Tuckere937be32003-12-17 18:53:26 +11002071
Darren Tuckerd3e2aee2015-07-17 12:52:34 +10002072AC_CHECK_FUNCS([realpath], [
2073 dnl the sftp v3 spec says SSH_FXP_REALPATH will "canonicalize any given
2074 dnl path name", however some implementations of realpath (and some
2075 dnl versions of the POSIX spec) do not work on non-existent files,
2076 dnl so we use the OpenBSD implementation on those platforms.
2077 AC_MSG_CHECKING([if realpath works with non-existent files])
2078 AC_RUN_IFELSE(
2079 [AC_LANG_PROGRAM([[
2080#include <limits.h>
2081#include <stdlib.h>
2082#include <errno.h>
2083 ]], [[
2084 char buf[PATH_MAX];
2085 if (realpath("/opensshnonexistentfilename1234", buf) == NULL)
2086 if (errno == ENOENT)
2087 exit(1);
2088 exit(0);
2089 ]])],
2090 [AC_MSG_RESULT([yes])],
2091 [AC_DEFINE([BROKEN_REALPATH], [1],
2092 [realpath does not work with nonexistent files])
2093 AC_MSG_RESULT([no])],
2094 [AC_MSG_WARN([cross compiling: assuming working])]
2095 )
2096])
2097
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
Damien Millerd244a582014-08-23 17:06:49 +10002153# We depend on vsnprintf returning the right thing on overflow: the
2154# number of characters it tried to create (as per SUSv3)
2155if test "x$ac_cv_func_vsnprintf" = "xyes" ; then
Damien Miller57f39152005-11-24 19:58:19 +11002156 AC_MSG_CHECKING([whether vsnprintf returns correct values on overflow])
2157 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002158 [AC_LANG_PROGRAM([[
Damien Miller57f39152005-11-24 19:58:19 +11002159#include <sys/types.h>
2160#include <stdio.h>
2161#include <stdarg.h>
2162
Damien Millerd244a582014-08-23 17:06:49 +10002163int x_snprintf(char *str, size_t count, const char *fmt, ...)
Damien Miller57f39152005-11-24 19:58:19 +11002164{
Damien Millerd244a582014-08-23 17:06:49 +10002165 size_t ret;
2166 va_list ap;
2167
2168 va_start(ap, fmt);
2169 ret = vsnprintf(str, count, fmt, ap);
2170 va_end(ap);
Damien Miller57f39152005-11-24 19:58:19 +11002171 return ret;
2172}
Tim Rice648f8762011-01-26 12:38:57 -08002173 ]], [[
Damien Millerd244a582014-08-23 17:06:49 +10002174char x[1];
2175if (x_snprintf(x, 1, "%s %d", "hello", 12345) != 11)
2176 return 1;
2177if (x_snprintf(NULL, 0, "%s %d", "hello", 12345) != 11)
2178 return 1;
2179return 0;
Tim Rice648f8762011-01-26 12:38:57 -08002180 ]])],
2181 [AC_MSG_RESULT([yes])],
Damien Miller57f39152005-11-24 19:58:19 +11002182 [
Tim Rice648f8762011-01-26 12:38:57 -08002183 AC_MSG_RESULT([no])
2184 AC_DEFINE([BROKEN_SNPRINTF], [1],
Damien Miller57f39152005-11-24 19:58:19 +11002185 [Define if your snprintf is busted])
2186 AC_MSG_WARN([****** Your vsnprintf() function is broken, complain to your vendor])
2187 ],
2188 [ AC_MSG_WARN([cross compiling: Assuming working vsnprintf()]) ]
2189 )
2190fi
2191
Darren Tuckerd40c66c2005-12-17 22:32:03 +11002192# On systems where [v]snprintf is broken, but is declared in stdio,
2193# check that the fmt argument is const char * or just char *.
2194# This is only useful for when BROKEN_SNPRINTF
2195AC_MSG_CHECKING([whether snprintf can declare const char *fmt])
Tim Rice648f8762011-01-26 12:38:57 -08002196AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
2197#include <stdio.h>
2198int snprintf(char *a, size_t b, const char *c, ...) { return 0; }
2199 ]], [[
2200 snprintf(0, 0, 0);
2201 ]])],
2202 [AC_MSG_RESULT([yes])
2203 AC_DEFINE([SNPRINTF_CONST], [const],
Darren Tuckerd40c66c2005-12-17 22:32:03 +11002204 [Define as const if snprintf() can declare const char *fmt])],
Tim Rice648f8762011-01-26 12:38:57 -08002205 [AC_MSG_RESULT([no])
2206 AC_DEFINE([SNPRINTF_CONST], [/* not const */])])
Darren Tuckerd40c66c2005-12-17 22:32:03 +11002207
Damien Millerb4097182004-05-23 14:09:40 +10002208# Check for missing getpeereid (or equiv) support
2209NO_PEERCHECK=""
Darren Tucker164aa302007-03-21 21:39:57 +11002210if test "x$ac_cv_func_getpeereid" != "xyes" -a "x$ac_cv_func_getpeerucred" != "xyes"; then
Damien Millerb4097182004-05-23 14:09:40 +10002211 AC_MSG_CHECKING([whether system supports SO_PEERCRED getsockopt])
Tim Rice648f8762011-01-26 12:38:57 -08002212 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
2213#include <sys/types.h>
2214#include <sys/socket.h>]], [[int i = SO_PEERCRED;]])],
2215 [ AC_MSG_RESULT([yes])
2216 AC_DEFINE([HAVE_SO_PEERCRED], [1], [Have PEERCRED socket option])
2217 ], [AC_MSG_RESULT([no])
2218 NO_PEERCHECK=1
2219 ])
Damien Millerb4097182004-05-23 14:09:40 +10002220fi
2221
Damien Millere8328192003-01-07 15:18:32 +11002222dnl see whether mkstemp() requires XXXXXX
2223if test "x$ac_cv_func_mkdtemp" = "xyes" ; then
2224AC_MSG_CHECKING([for (overly) strict mkstemp])
Darren Tucker314d89e2005-10-17 23:29:23 +10002225AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002226 [AC_LANG_PROGRAM([[
Damien Millere8328192003-01-07 15:18:32 +11002227#include <stdlib.h>
Tim Rice648f8762011-01-26 12:38:57 -08002228 ]], [[
2229 char template[]="conftest.mkstemp-test";
2230 if (mkstemp(template) == -1)
2231 exit(1);
2232 unlink(template);
2233 exit(0);
Darren Tucker314d89e2005-10-17 23:29:23 +10002234 ]])],
Damien Millere8328192003-01-07 15:18:32 +11002235 [
Tim Rice648f8762011-01-26 12:38:57 -08002236 AC_MSG_RESULT([no])
Damien Millere8328192003-01-07 15:18:32 +11002237 ],
Damien Millera8e06ce2003-11-21 23:48:55 +11002238 [
Tim Rice648f8762011-01-26 12:38:57 -08002239 AC_MSG_RESULT([yes])
2240 AC_DEFINE([HAVE_STRICT_MKSTEMP], [1], [Silly mkstemp()])
Damien Millere8328192003-01-07 15:18:32 +11002241 ],
2242 [
Tim Rice648f8762011-01-26 12:38:57 -08002243 AC_MSG_RESULT([yes])
2244 AC_DEFINE([HAVE_STRICT_MKSTEMP])
Damien Millera8e06ce2003-11-21 23:48:55 +11002245 ]
Damien Millere8328192003-01-07 15:18:32 +11002246)
2247fi
2248
Darren Tucker70a3d552003-08-21 17:58:29 +10002249dnl make sure that openpty does not reacquire controlling terminal
2250if test ! -z "$check_for_openpty_ctty_bug"; then
Tim Rice648f8762011-01-26 12:38:57 -08002251 AC_MSG_CHECKING([if openpty correctly handles controlling tty])
Darren Tucker314d89e2005-10-17 23:29:23 +10002252 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002253 [AC_LANG_PROGRAM([[
Darren Tucker70a3d552003-08-21 17:58:29 +10002254#include <stdio.h>
2255#include <sys/fcntl.h>
2256#include <sys/types.h>
2257#include <sys/wait.h>
Tim Rice648f8762011-01-26 12:38:57 -08002258 ]], [[
Darren Tucker70a3d552003-08-21 17:58:29 +10002259 pid_t pid;
2260 int fd, ptyfd, ttyfd, status;
2261
2262 pid = fork();
2263 if (pid < 0) { /* failed */
2264 exit(1);
2265 } else if (pid > 0) { /* parent */
2266 waitpid(pid, &status, 0);
Damien Millera8e06ce2003-11-21 23:48:55 +11002267 if (WIFEXITED(status))
Darren Tucker70a3d552003-08-21 17:58:29 +10002268 exit(WEXITSTATUS(status));
2269 else
2270 exit(2);
2271 } else { /* child */
2272 close(0); close(1); close(2);
2273 setsid();
2274 openpty(&ptyfd, &ttyfd, NULL, NULL, NULL);
2275 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
2276 if (fd >= 0)
2277 exit(3); /* Acquired ctty: broken */
2278 else
2279 exit(0); /* Did not acquire ctty: OK */
2280 }
Darren Tucker314d89e2005-10-17 23:29:23 +10002281 ]])],
Darren Tucker70a3d552003-08-21 17:58:29 +10002282 [
Tim Rice648f8762011-01-26 12:38:57 -08002283 AC_MSG_RESULT([yes])
Darren Tucker70a3d552003-08-21 17:58:29 +10002284 ],
2285 [
Tim Rice648f8762011-01-26 12:38:57 -08002286 AC_MSG_RESULT([no])
2287 AC_DEFINE([SSHD_ACQUIRES_CTTY])
Darren Tucker314d89e2005-10-17 23:29:23 +10002288 ],
2289 [
Tim Rice648f8762011-01-26 12:38:57 -08002290 AC_MSG_RESULT([cross-compiling, assuming yes])
Darren Tucker70a3d552003-08-21 17:58:29 +10002291 ]
2292 )
2293fi
2294
Tim Rice8bb561b2005-03-17 16:23:19 -08002295if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
2296 test "x$check_for_hpux_broken_getaddrinfo" = "x1"; then
Tim Rice648f8762011-01-26 12:38:57 -08002297 AC_MSG_CHECKING([if getaddrinfo seems to work])
Darren Tucker314d89e2005-10-17 23:29:23 +10002298 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002299 [AC_LANG_PROGRAM([[
Darren Tucker4398cf52004-04-06 21:39:02 +10002300#include <stdio.h>
2301#include <sys/socket.h>
2302#include <netdb.h>
2303#include <errno.h>
2304#include <netinet/in.h>
2305
2306#define TEST_PORT "2222"
Tim Rice648f8762011-01-26 12:38:57 -08002307 ]], [[
Darren Tucker4398cf52004-04-06 21:39:02 +10002308 int err, sock;
2309 struct addrinfo *gai_ai, *ai, hints;
2310 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
2311
2312 memset(&hints, 0, sizeof(hints));
2313 hints.ai_family = PF_UNSPEC;
2314 hints.ai_socktype = SOCK_STREAM;
2315 hints.ai_flags = AI_PASSIVE;
2316
2317 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
2318 if (err != 0) {
2319 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
2320 exit(1);
2321 }
2322
2323 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
2324 if (ai->ai_family != AF_INET6)
2325 continue;
2326
2327 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
2328 sizeof(ntop), strport, sizeof(strport),
2329 NI_NUMERICHOST|NI_NUMERICSERV);
2330
2331 if (err != 0) {
2332 if (err == EAI_SYSTEM)
2333 perror("getnameinfo EAI_SYSTEM");
2334 else
2335 fprintf(stderr, "getnameinfo failed: %s\n",
2336 gai_strerror(err));
2337 exit(2);
2338 }
2339
2340 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
2341 if (sock < 0)
2342 perror("socket");
2343 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2344 if (errno == EBADF)
2345 exit(3);
2346 }
2347 }
2348 exit(0);
Darren Tucker314d89e2005-10-17 23:29:23 +10002349 ]])],
Darren Tucker4398cf52004-04-06 21:39:02 +10002350 [
Tim Rice648f8762011-01-26 12:38:57 -08002351 AC_MSG_RESULT([yes])
Darren Tucker4398cf52004-04-06 21:39:02 +10002352 ],
2353 [
Tim Rice648f8762011-01-26 12:38:57 -08002354 AC_MSG_RESULT([no])
2355 AC_DEFINE([BROKEN_GETADDRINFO])
Darren Tucker314d89e2005-10-17 23:29:23 +10002356 ],
2357 [
Tim Rice648f8762011-01-26 12:38:57 -08002358 AC_MSG_RESULT([cross-compiling, assuming yes])
Darren Tucker4398cf52004-04-06 21:39:02 +10002359 ]
2360 )
2361fi
2362
Tim Rice8bb561b2005-03-17 16:23:19 -08002363if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
2364 test "x$check_for_aix_broken_getaddrinfo" = "x1"; then
Tim Rice648f8762011-01-26 12:38:57 -08002365 AC_MSG_CHECKING([if getaddrinfo seems to work])
Darren Tucker314d89e2005-10-17 23:29:23 +10002366 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08002367 [AC_LANG_PROGRAM([[
Darren Tucker691d5232005-02-15 21:45:57 +11002368#include <stdio.h>
2369#include <sys/socket.h>
2370#include <netdb.h>
2371#include <errno.h>
2372#include <netinet/in.h>
2373
2374#define TEST_PORT "2222"
Tim Rice648f8762011-01-26 12:38:57 -08002375 ]], [[
Darren Tucker691d5232005-02-15 21:45:57 +11002376 int err, sock;
2377 struct addrinfo *gai_ai, *ai, hints;
2378 char ntop[NI_MAXHOST], strport[NI_MAXSERV], *name = NULL;
2379
2380 memset(&hints, 0, sizeof(hints));
2381 hints.ai_family = PF_UNSPEC;
2382 hints.ai_socktype = SOCK_STREAM;
2383 hints.ai_flags = AI_PASSIVE;
2384
2385 err = getaddrinfo(name, TEST_PORT, &hints, &gai_ai);
2386 if (err != 0) {
2387 fprintf(stderr, "getaddrinfo failed (%s)", gai_strerror(err));
2388 exit(1);
2389 }
2390
2391 for (ai = gai_ai; ai != NULL; ai = ai->ai_next) {
2392 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2393 continue;
2394
2395 err = getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop,
2396 sizeof(ntop), strport, sizeof(strport),
2397 NI_NUMERICHOST|NI_NUMERICSERV);
2398
2399 if (ai->ai_family == AF_INET && err != 0) {
2400 perror("getnameinfo");
2401 exit(2);
2402 }
2403 }
2404 exit(0);
Darren Tucker314d89e2005-10-17 23:29:23 +10002405 ]])],
Darren Tucker691d5232005-02-15 21:45:57 +11002406 [
Tim Rice648f8762011-01-26 12:38:57 -08002407 AC_MSG_RESULT([yes])
2408 AC_DEFINE([AIX_GETNAMEINFO_HACK], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07002409 [Define if you have a getaddrinfo that fails
2410 for the all-zeros IPv6 address])
Darren Tucker691d5232005-02-15 21:45:57 +11002411 ],
2412 [
Tim Rice648f8762011-01-26 12:38:57 -08002413 AC_MSG_RESULT([no])
2414 AC_DEFINE([BROKEN_GETADDRINFO])
Darren Tucker314d89e2005-10-17 23:29:23 +10002415 ],
Darren Tucker8b272ab2006-06-27 11:20:28 +10002416 [
Tim Rice648f8762011-01-26 12:38:57 -08002417 AC_MSG_RESULT([cross-compiling, assuming no])
Darren Tucker691d5232005-02-15 21:45:57 +11002418 ]
2419 )
2420fi
2421
Darren Tuckere50e8c92015-02-21 15:10:33 +11002422if test "x$ac_cv_func_getaddrinfo" = "xyes"; then
2423 AC_CHECK_DECLS(AI_NUMERICSERV, , ,
2424 [#include <sys/types.h>
2425 #include <sys/socket.h>
2426 #include <netdb.h>])
2427fi
2428
Darren Tuckera56f1912004-11-02 20:30:54 +11002429if test "x$check_for_conflicting_getspnam" = "x1"; then
Tim Rice648f8762011-01-26 12:38:57 -08002430 AC_MSG_CHECKING([for conflicting getspnam in shadow.h])
2431 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <shadow.h> ]],
2432 [[ exit(0); ]])],
Darren Tuckera56f1912004-11-02 20:30:54 +11002433 [
Tim Rice648f8762011-01-26 12:38:57 -08002434 AC_MSG_RESULT([no])
Darren Tuckera56f1912004-11-02 20:30:54 +11002435 ],
2436 [
Tim Rice648f8762011-01-26 12:38:57 -08002437 AC_MSG_RESULT([yes])
2438 AC_DEFINE([GETSPNAM_CONFLICTING_DEFS], [1],
Darren Tuckera56f1912004-11-02 20:30:54 +11002439 [Conflicting defs for getspnam])
2440 ]
2441 )
2442fi
2443
Darren Tucker20e5e8b2016-08-02 12:16:34 +10002444dnl NetBSD added an strnvis and unfortunately made it incompatible with the
2445dnl existing one in OpenBSD and Linux's libbsd (the former having existed
2446dnl for over ten years). Despite this incompatibility being reported during
2447dnl development (see http://gnats.netbsd.org/44977) they still shipped it.
2448dnl Even more unfortunately FreeBSD and later MacOS picked up this incompatible
2449dnl implementation. Try to detect this mess, and assume the only safe option
2450dnl if we're cross compiling.
2451dnl
2452dnl OpenBSD, 2001: strnvis(char *dst, const char *src, size_t dlen, int flag);
2453dnl NetBSD: 2012, strnvis(char *dst, size_t dlen, const char *src, int flag);
2454if test "x$ac_cv_func_strnvis" = "xyes"; then
2455 AC_MSG_CHECKING([for working strnvis])
2456 AC_RUN_IFELSE(
2457 [AC_LANG_PROGRAM([[
2458#include <signal.h>
2459#include <stdlib.h>
2460#include <string.h>
2461#include <vis.h>
2462static void sighandler(int sig) { _exit(1); }
2463 ]], [[
2464 char dst[16];
2465
2466 signal(SIGSEGV, sighandler);
2467 if (strnvis(dst, "src", 4, 0) && strcmp(dst, "src") == 0)
2468 exit(0);
2469 exit(1)
2470 ]])],
2471 [AC_MSG_RESULT([yes])],
2472 [AC_MSG_RESULT([no])
2473 AC_DEFINE([BROKEN_STRNVIS], [1], [strnvis detected broken])],
2474 [AC_MSG_WARN([cross compiling: assuming broken])
2475 AC_DEFINE([BROKEN_STRNVIS], [1], [strnvis assumed broken])]
2476 )
2477fi
2478
Darren Tuckerc7b5a472018-02-25 23:55:41 +11002479AC_CHECK_FUNCS([getpgrp],[
2480 AC_MSG_CHECKING([if getpgrp accepts zero args])
2481 AC_COMPILE_IFELSE(
2482 [AC_LANG_PROGRAM([[$ac_includes_default]], [[ getpgrp(); ]])],
2483 [ AC_MSG_RESULT([yes])
2484 AC_DEFINE([GETPGRP_VOID], [1], [getpgrp takes zero args])],
2485 [ AC_MSG_RESULT([no])
2486 AC_DEFINE([GETPGRP_VOID], [0], [getpgrp takes one arg])]
2487 )
2488])
Damien Miller606f8802000-09-16 15:39:56 +11002489
Tim Riceaef73712002-05-11 13:17:42 -07002490# Search for OpenSSL
2491saved_CPPFLAGS="$CPPFLAGS"
2492saved_LDFLAGS="$LDFLAGS"
Tim Rice648f8762011-01-26 12:38:57 -08002493AC_ARG_WITH([ssl-dir],
Damien Millera22ba012000-03-02 23:09:20 +11002494 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
2495 [
Damien Miller72ef7c12015-01-15 02:21:31 +11002496 if test "x$openssl" = "xno" ; then
2497 AC_MSG_ERROR([cannot use --with-ssl-dir when OpenSSL disabled])
2498 fi
Ben Lindstrom23e13712000-10-29 22:49:19 +00002499 if test "x$withval" != "xno" ; then
Darren Tuckerc7e38d52005-02-09 22:12:30 +11002500 case "$withval" in
2501 # Relative paths
2502 ./*|../*) withval="`pwd`/$withval"
2503 esac
Tim Riceaef73712002-05-11 13:17:42 -07002504 if test -d "$withval/lib"; then
2505 if test -n "${need_dash_r}"; then
2506 LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
2507 else
2508 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
2509 fi
Darren Tucker9f8703b2010-04-23 11:12:06 +10002510 elif test -d "$withval/lib64"; then
2511 if test -n "${need_dash_r}"; then
2512 LDFLAGS="-L${withval}/lib64 -R${withval}/lib64 ${LDFLAGS}"
2513 else
2514 LDFLAGS="-L${withval}/lib64 ${LDFLAGS}"
2515 fi
Tim Riceaef73712002-05-11 13:17:42 -07002516 else
2517 if test -n "${need_dash_r}"; then
2518 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
2519 else
2520 LDFLAGS="-L${withval} ${LDFLAGS}"
2521 fi
2522 fi
2523 if test -d "$withval/include"; then
2524 CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
2525 else
2526 CPPFLAGS="-I${withval} ${CPPFLAGS}"
2527 fi
Damien Millera22ba012000-03-02 23:09:20 +11002528 fi
2529 ]
2530)
Damien Millerb9c56672014-05-15 14:43:37 +10002531
Tim Rice648f8762011-01-26 12:38:57 -08002532AC_ARG_WITH([openssl-header-check],
Damien Miller9975e482007-03-05 11:51:27 +11002533 [ --without-openssl-header-check Disable OpenSSL version consistency check],
Damien Millerec932372002-01-22 22:16:03 +11002534 [
Damien Miller72ef7c12015-01-15 02:21:31 +11002535 if test "x$withval" = "xno" ; then
2536 openssl_check_nonfatal=1
Damien Miller9975e482007-03-05 11:51:27 +11002537 fi
Damien Millerec932372002-01-22 22:16:03 +11002538 ]
2539)
2540
Damien Miller72ef7c12015-01-15 02:21:31 +11002541openssl_engine=no
Tim Rice648f8762011-01-26 12:38:57 -08002542AC_ARG_WITH([ssl-engine],
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11002543 [ --with-ssl-engine Enable OpenSSL (hardware) ENGINE support ],
Damien Miller72ef7c12015-01-15 02:21:31 +11002544 [
Damien Miller72ef7c12015-01-15 02:21:31 +11002545 if test "x$withval" != "xno" ; then
Darren Tuckerb5fa0cd2015-12-15 15:10:32 +11002546 if test "x$openssl" = "xno" ; then
2547 AC_MSG_ERROR([cannot use --with-ssl-engine when OpenSSL disabled])
2548 fi
Damien Miller72ef7c12015-01-15 02:21:31 +11002549 openssl_engine=yes
2550 fi
2551 ]
2552)
2553
2554if test "x$openssl" = "xyes" ; then
2555 LIBS="-lcrypto $LIBS"
2556 AC_TRY_LINK_FUNC([RAND_add], [AC_DEFINE([HAVE_OPENSSL], [1],
2557 [Define if your ssl headers are included
2558 with #include <openssl/header.h>])],
2559 [
2560 dnl Check default openssl install dir
2561 if test -n "${need_dash_r}"; then
2562 LDFLAGS="-L/usr/local/ssl/lib -R/usr/local/ssl/lib ${saved_LDFLAGS}"
2563 else
2564 LDFLAGS="-L/usr/local/ssl/lib ${saved_LDFLAGS}"
2565 fi
2566 CPPFLAGS="-I/usr/local/ssl/include ${saved_CPPFLAGS}"
2567 AC_CHECK_HEADER([openssl/opensslv.h], ,
2568 [AC_MSG_ERROR([*** OpenSSL headers missing - please install first or check config.log ***])])
2569 AC_TRY_LINK_FUNC([RAND_add], [AC_DEFINE([HAVE_OPENSSL])],
2570 [
2571 AC_MSG_ERROR([*** Can't find recent OpenSSL libcrypto (see config.log for details) ***])
2572 ]
2573 )
2574 ]
2575 )
2576
2577 # Determine OpenSSL header version
2578 AC_MSG_CHECKING([OpenSSL header version])
2579 AC_RUN_IFELSE(
2580 [AC_LANG_PROGRAM([[
Darren Tucker15605962015-11-10 11:14:47 +11002581 #include <stdlib.h>
Damien Miller72ef7c12015-01-15 02:21:31 +11002582 #include <stdio.h>
2583 #include <string.h>
2584 #include <openssl/opensslv.h>
2585 #define DATA "conftest.sslincver"
2586 ]], [[
2587 FILE *fd;
2588 int rc;
2589
2590 fd = fopen(DATA,"w");
2591 if(fd == NULL)
2592 exit(1);
2593
Darren Tuckerb3413532016-04-04 11:09:21 +10002594 if ((rc = fprintf(fd, "%08lx (%s)\n",
2595 (unsigned long)OPENSSL_VERSION_NUMBER,
2596 OPENSSL_VERSION_TEXT)) < 0)
Damien Miller72ef7c12015-01-15 02:21:31 +11002597 exit(1);
2598
2599 exit(0);
2600 ]])],
2601 [
2602 ssl_header_ver=`cat conftest.sslincver`
2603 AC_MSG_RESULT([$ssl_header_ver])
2604 ],
2605 [
2606 AC_MSG_RESULT([not found])
2607 AC_MSG_ERROR([OpenSSL version header not found.])
2608 ],
2609 [
2610 AC_MSG_WARN([cross compiling: not checking])
2611 ]
2612 )
2613
2614 # Determine OpenSSL library version
2615 AC_MSG_CHECKING([OpenSSL library version])
2616 AC_RUN_IFELSE(
2617 [AC_LANG_PROGRAM([[
2618 #include <stdio.h>
2619 #include <string.h>
2620 #include <openssl/opensslv.h>
2621 #include <openssl/crypto.h>
2622 #define DATA "conftest.ssllibver"
2623 ]], [[
2624 FILE *fd;
2625 int rc;
2626
2627 fd = fopen(DATA,"w");
2628 if(fd == NULL)
2629 exit(1);
2630
Darren Tucker815bcac2016-04-04 11:07:59 +10002631 if ((rc = fprintf(fd, "%08lx (%s)\n", (unsigned long)SSLeay(),
2632 SSLeay_version(SSLEAY_VERSION))) < 0)
Damien Miller72ef7c12015-01-15 02:21:31 +11002633 exit(1);
2634
2635 exit(0);
2636 ]])],
2637 [
2638 ssl_library_ver=`cat conftest.ssllibver`
2639 # Check version is supported.
2640 case "$ssl_library_ver" in
Damien Miller2429cf72017-03-14 18:01:52 +11002641 10000*|0*)
2642 AC_MSG_ERROR([OpenSSL >= 1.0.1 required (have "$ssl_library_ver")])
Damien Miller72ef7c12015-01-15 02:21:31 +11002643 ;;
Damien Miller04dc0702017-09-28 14:54:34 -07002644 100*) ;; # 1.0.x
Damien Millerbba69c22017-09-28 16:06:21 -07002645 200*) ;; # LibreSSL
Damien Miller04dc0702017-09-28 14:54:34 -07002646 *)
2647 AC_MSG_ERROR([OpenSSL >= 1.1.0 is not yet supported (have "$ssl_library_ver")])
2648 ;;
Damien Miller72ef7c12015-01-15 02:21:31 +11002649 esac
2650 AC_MSG_RESULT([$ssl_library_ver])
2651 ],
2652 [
2653 AC_MSG_RESULT([not found])
2654 AC_MSG_ERROR([OpenSSL library not found.])
2655 ],
2656 [
2657 AC_MSG_WARN([cross compiling: not checking])
2658 ]
2659 )
2660
2661 # Sanity check OpenSSL headers
2662 AC_MSG_CHECKING([whether OpenSSL's headers match the library])
2663 AC_RUN_IFELSE(
2664 [AC_LANG_PROGRAM([[
2665 #include <string.h>
2666 #include <openssl/opensslv.h>
Darren Tuckerc1d7e542015-12-15 14:27:09 +11002667 #include <openssl/crypto.h>
Damien Miller72ef7c12015-01-15 02:21:31 +11002668 ]], [[
2669 exit(SSLeay() == OPENSSL_VERSION_NUMBER ? 0 : 1);
2670 ]])],
2671 [
2672 AC_MSG_RESULT([yes])
2673 ],
2674 [
2675 AC_MSG_RESULT([no])
2676 if test "x$openssl_check_nonfatal" = "x"; then
2677 AC_MSG_ERROR([Your OpenSSL headers do not match your
2678 library. Check config.log for details.
2679 If you are sure your installation is consistent, you can disable the check
2680 by running "./configure --without-openssl-header-check".
2681 Also see contrib/findssl.sh for help identifying header/library mismatches.
2682 ])
2683 else
2684 AC_MSG_WARN([Your OpenSSL headers do not match your
2685 library. Check config.log for details.
2686 Also see contrib/findssl.sh for help identifying header/library mismatches.])
2687 fi
2688 ],
2689 [
2690 AC_MSG_WARN([cross compiling: not checking])
2691 ]
2692 )
2693
2694 AC_MSG_CHECKING([if programs using OpenSSL functions will link])
2695 AC_LINK_IFELSE(
2696 [AC_LANG_PROGRAM([[ #include <openssl/evp.h> ]],
2697 [[ SSLeay_add_all_algorithms(); ]])],
2698 [
2699 AC_MSG_RESULT([yes])
2700 ],
2701 [
2702 AC_MSG_RESULT([no])
2703 saved_LIBS="$LIBS"
2704 LIBS="$LIBS -ldl"
2705 AC_MSG_CHECKING([if programs using OpenSSL need -ldl])
2706 AC_LINK_IFELSE(
2707 [AC_LANG_PROGRAM([[ #include <openssl/evp.h> ]],
2708 [[ SSLeay_add_all_algorithms(); ]])],
2709 [
2710 AC_MSG_RESULT([yes])
2711 ],
2712 [
2713 AC_MSG_RESULT([no])
2714 LIBS="$saved_LIBS"
2715 ]
2716 )
2717 ]
2718 )
2719
2720 AC_CHECK_FUNCS([ \
2721 BN_is_prime_ex \
2722 DSA_generate_parameters_ex \
2723 EVP_DigestInit_ex \
2724 EVP_DigestFinal_ex \
2725 EVP_MD_CTX_init \
2726 EVP_MD_CTX_cleanup \
2727 EVP_MD_CTX_copy_ex \
2728 HMAC_CTX_init \
2729 RSA_generate_key_ex \
2730 RSA_get_default_method \
2731 ])
2732
2733 if test "x$openssl_engine" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08002734 AC_MSG_CHECKING([for OpenSSL ENGINE support])
2735 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller72ef7c12015-01-15 02:21:31 +11002736 #include <openssl/engine.h>
Tim Rice648f8762011-01-26 12:38:57 -08002737 ]], [[
Damien Miller72ef7c12015-01-15 02:21:31 +11002738 ENGINE_load_builtin_engines();
2739 ENGINE_register_all_complete();
Tim Rice648f8762011-01-26 12:38:57 -08002740 ]])],
2741 [ AC_MSG_RESULT([yes])
2742 AC_DEFINE([USE_OPENSSL_ENGINE], [1],
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11002743 [Enable OpenSSL engine support])
Tim Rice648f8762011-01-26 12:38:57 -08002744 ], [ AC_MSG_ERROR([OpenSSL ENGINE support not found])
2745 ])
Damien Miller72ef7c12015-01-15 02:21:31 +11002746 fi
Darren Tuckerfabdb6c2006-02-20 20:17:35 +11002747
Damien Miller72ef7c12015-01-15 02:21:31 +11002748 # Check for OpenSSL without EVP_aes_{192,256}_cbc
2749 AC_MSG_CHECKING([whether OpenSSL has crippled AES support])
2750 AC_LINK_IFELSE(
Darren Tucker37bcef52013-11-09 18:39:25 +11002751 [AC_LANG_PROGRAM([[
Damien Miller72ef7c12015-01-15 02:21:31 +11002752 #include <string.h>
2753 #include <openssl/evp.h>
2754 ]], [[
2755 exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL);
2756 ]])],
2757 [
2758 AC_MSG_RESULT([no])
2759 ],
2760 [
2761 AC_MSG_RESULT([yes])
2762 AC_DEFINE([OPENSSL_LOBOTOMISED_AES], [1],
2763 [libcrypto is missing AES 192 and 256 bit functions])
2764 ]
2765 )
2766
2767 # Check for OpenSSL with EVP_aes_*ctr
2768 AC_MSG_CHECKING([whether OpenSSL has AES CTR via EVP])
2769 AC_LINK_IFELSE(
2770 [AC_LANG_PROGRAM([[
2771 #include <string.h>
2772 #include <openssl/evp.h>
2773 ]], [[
2774 exit(EVP_aes_128_ctr() == NULL ||
2775 EVP_aes_192_cbc() == NULL ||
2776 EVP_aes_256_cbc() == NULL);
2777 ]])],
2778 [
2779 AC_MSG_RESULT([yes])
2780 AC_DEFINE([OPENSSL_HAVE_EVPCTR], [1],
2781 [libcrypto has EVP AES CTR])
2782 ],
2783 [
2784 AC_MSG_RESULT([no])
2785 ]
2786 )
2787
2788 # Check for OpenSSL with EVP_aes_*gcm
2789 AC_MSG_CHECKING([whether OpenSSL has AES GCM via EVP])
2790 AC_LINK_IFELSE(
2791 [AC_LANG_PROGRAM([[
2792 #include <string.h>
2793 #include <openssl/evp.h>
2794 ]], [[
2795 exit(EVP_aes_128_gcm() == NULL ||
2796 EVP_aes_256_gcm() == NULL ||
2797 EVP_CTRL_GCM_SET_IV_FIXED == 0 ||
2798 EVP_CTRL_GCM_IV_GEN == 0 ||
2799 EVP_CTRL_GCM_SET_TAG == 0 ||
2800 EVP_CTRL_GCM_GET_TAG == 0 ||
2801 EVP_CIPHER_CTX_ctrl(NULL, 0, 0, NULL) == 0);
2802 ]])],
2803 [
2804 AC_MSG_RESULT([yes])
2805 AC_DEFINE([OPENSSL_HAVE_EVPGCM], [1],
2806 [libcrypto has EVP AES GCM])
2807 ],
2808 [
2809 AC_MSG_RESULT([no])
2810 unsupported_algorithms="$unsupported_cipers \
Damien Miller679ce882016-07-15 13:44:38 +10002811 aes128-gcm@openssh.com \
2812 aes256-gcm@openssh.com"
Damien Miller72ef7c12015-01-15 02:21:31 +11002813 ]
2814 )
2815
2816 AC_SEARCH_LIBS([EVP_CIPHER_CTX_ctrl], [crypto],
2817 [AC_DEFINE([HAVE_EVP_CIPHER_CTX_CTRL], [1],
2818 [Define if libcrypto has EVP_CIPHER_CTX_ctrl])])
2819
2820 AC_MSG_CHECKING([if EVP_DigestUpdate returns an int])
2821 AC_LINK_IFELSE(
2822 [AC_LANG_PROGRAM([[
2823 #include <string.h>
2824 #include <openssl/evp.h>
2825 ]], [[
2826 if(EVP_DigestUpdate(NULL, NULL,0))
2827 exit(0);
2828 ]])],
2829 [
2830 AC_MSG_RESULT([yes])
2831 ],
2832 [
2833 AC_MSG_RESULT([no])
2834 AC_DEFINE([OPENSSL_EVP_DIGESTUPDATE_VOID], [1],
2835 [Define if EVP_DigestUpdate returns void])
2836 ]
2837 )
2838
2839 # Some systems want crypt() from libcrypt, *not* the version in OpenSSL,
2840 # because the system crypt() is more featureful.
2841 if test "x$check_for_libcrypt_before" = "x1"; then
2842 AC_CHECK_LIB([crypt], [crypt])
2843 fi
2844
2845 # Some Linux systems (Slackware) need crypt() from libcrypt, *not* the
2846 # version in OpenSSL.
2847 if test "x$check_for_libcrypt_later" = "x1"; then
2848 AC_CHECK_LIB([crypt], [crypt], [LIBS="$LIBS -lcrypt"])
2849 fi
Damien Miller00797e82015-03-04 05:02:45 +11002850 AC_CHECK_FUNCS([crypt DES_crypt])
Damien Miller72ef7c12015-01-15 02:21:31 +11002851
2852 # Search for SHA256 support in libc and/or OpenSSL
2853 AC_CHECK_FUNCS([SHA256_Update EVP_sha256], ,
2854 [unsupported_algorithms="$unsupported_algorithms \
Damien Miller679ce882016-07-15 13:44:38 +10002855 hmac-sha2-256 \
2856 hmac-sha2-512 \
Damien Miller72ef7c12015-01-15 02:21:31 +11002857 diffie-hellman-group-exchange-sha256 \
Damien Miller679ce882016-07-15 13:44:38 +10002858 hmac-sha2-256-etm@openssh.com \
2859 hmac-sha2-512-etm@openssh.com"
Damien Miller72ef7c12015-01-15 02:21:31 +11002860 ]
2861 )
2862 # Search for RIPE-MD support in OpenSSL
2863 AC_CHECK_FUNCS([EVP_ripemd160], ,
2864 [unsupported_algorithms="$unsupported_algorithms \
Damien Miller679ce882016-07-15 13:44:38 +10002865 hmac-ripemd160 \
2866 hmac-ripemd160@openssh.com \
Damien Miller72ef7c12015-01-15 02:21:31 +11002867 hmac-ripemd160-etm@openssh.com"
2868 ]
2869 )
2870
2871 # Check complete ECC support in OpenSSL
2872 AC_MSG_CHECKING([whether OpenSSL has NID_X9_62_prime256v1])
2873 AC_LINK_IFELSE(
2874 [AC_LANG_PROGRAM([[
2875 #include <openssl/ec.h>
2876 #include <openssl/ecdh.h>
2877 #include <openssl/ecdsa.h>
2878 #include <openssl/evp.h>
2879 #include <openssl/objects.h>
2880 #include <openssl/opensslv.h>
Damien Miller72ef7c12015-01-15 02:21:31 +11002881 ]], [[
2882 EC_KEY *e = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1);
2883 const EVP_MD *m = EVP_sha256(); /* We need this too */
Darren Tucker37bcef52013-11-09 18:39:25 +11002884 ]])],
2885 [ AC_MSG_RESULT([yes])
Damien Miller72ef7c12015-01-15 02:21:31 +11002886 enable_nistp256=1 ],
2887 [ AC_MSG_RESULT([no]) ]
2888 )
Darren Tucker37bcef52013-11-09 18:39:25 +11002889
Damien Miller72ef7c12015-01-15 02:21:31 +11002890 AC_MSG_CHECKING([whether OpenSSL has NID_secp384r1])
2891 AC_LINK_IFELSE(
2892 [AC_LANG_PROGRAM([[
2893 #include <openssl/ec.h>
2894 #include <openssl/ecdh.h>
2895 #include <openssl/ecdsa.h>
2896 #include <openssl/evp.h>
2897 #include <openssl/objects.h>
2898 #include <openssl/opensslv.h>
Damien Miller72ef7c12015-01-15 02:21:31 +11002899 ]], [[
2900 EC_KEY *e = EC_KEY_new_by_curve_name(NID_secp384r1);
2901 const EVP_MD *m = EVP_sha384(); /* We need this too */
2902 ]])],
2903 [ AC_MSG_RESULT([yes])
2904 enable_nistp384=1 ],
2905 [ AC_MSG_RESULT([no]) ]
2906 )
Darren Tucker37bcef52013-11-09 18:39:25 +11002907
Damien Miller72ef7c12015-01-15 02:21:31 +11002908 AC_MSG_CHECKING([whether OpenSSL has NID_secp521r1])
2909 AC_LINK_IFELSE(
2910 [AC_LANG_PROGRAM([[
2911 #include <openssl/ec.h>
2912 #include <openssl/ecdh.h>
2913 #include <openssl/ecdsa.h>
2914 #include <openssl/evp.h>
2915 #include <openssl/objects.h>
2916 #include <openssl/opensslv.h>
Damien Miller72ef7c12015-01-15 02:21:31 +11002917 ]], [[
2918 EC_KEY *e = EC_KEY_new_by_curve_name(NID_secp521r1);
2919 const EVP_MD *m = EVP_sha512(); /* We need this too */
2920 ]])],
2921 [ AC_MSG_RESULT([yes])
2922 AC_MSG_CHECKING([if OpenSSL's NID_secp521r1 is functional])
2923 AC_RUN_IFELSE(
2924 [AC_LANG_PROGRAM([[
2925 #include <openssl/ec.h>
2926 #include <openssl/ecdh.h>
2927 #include <openssl/ecdsa.h>
2928 #include <openssl/evp.h>
2929 #include <openssl/objects.h>
2930 #include <openssl/opensslv.h>
2931 ]],[[
2932 EC_KEY *e = EC_KEY_new_by_curve_name(NID_secp521r1);
2933 const EVP_MD *m = EVP_sha512(); /* We need this too */
2934 exit(e == NULL || m == NULL);
2935 ]])],
2936 [ AC_MSG_RESULT([yes])
2937 enable_nistp521=1 ],
2938 [ AC_MSG_RESULT([no]) ],
2939 [ AC_MSG_WARN([cross-compiling: assuming yes])
2940 enable_nistp521=1 ]
2941 )],
2942 AC_MSG_RESULT([no])
2943 )
Darren Tucker37bcef52013-11-09 18:39:25 +11002944
Damien Miller72ef7c12015-01-15 02:21:31 +11002945 COMMENT_OUT_ECC="#no ecc#"
2946 TEST_SSH_ECC=no
2947
2948 if test x$enable_nistp256 = x1 || test x$enable_nistp384 = x1 || \
2949 test x$enable_nistp521 = x1; then
2950 AC_DEFINE(OPENSSL_HAS_ECC, [1], [OpenSSL has ECC])
2951 fi
2952 if test x$enable_nistp256 = x1; then
2953 AC_DEFINE([OPENSSL_HAS_NISTP256], [1],
2954 [libcrypto has NID_X9_62_prime256v1])
2955 TEST_SSH_ECC=yes
2956 COMMENT_OUT_ECC=""
2957 else
Damien Miller679ce882016-07-15 13:44:38 +10002958 unsupported_algorithms="$unsupported_algorithms \
2959 ecdsa-sha2-nistp256 \
2960 ecdh-sha2-nistp256 \
2961 ecdsa-sha2-nistp256-cert-v01@openssh.com"
Damien Miller72ef7c12015-01-15 02:21:31 +11002962 fi
2963 if test x$enable_nistp384 = x1; then
2964 AC_DEFINE([OPENSSL_HAS_NISTP384], [1], [libcrypto has NID_secp384r1])
2965 TEST_SSH_ECC=yes
2966 COMMENT_OUT_ECC=""
2967 else
Damien Miller679ce882016-07-15 13:44:38 +10002968 unsupported_algorithms="$unsupported_algorithms \
2969 ecdsa-sha2-nistp384 \
2970 ecdh-sha2-nistp384 \
2971 ecdsa-sha2-nistp384-cert-v01@openssh.com"
Damien Miller72ef7c12015-01-15 02:21:31 +11002972 fi
2973 if test x$enable_nistp521 = x1; then
2974 AC_DEFINE([OPENSSL_HAS_NISTP521], [1], [libcrypto has NID_secp521r1])
2975 TEST_SSH_ECC=yes
2976 COMMENT_OUT_ECC=""
2977 else
Damien Miller679ce882016-07-15 13:44:38 +10002978 unsupported_algorithms="$unsupported_algorithms \
2979 ecdh-sha2-nistp521 \
2980 ecdsa-sha2-nistp521 \
2981 ecdsa-sha2-nistp521-cert-v01@openssh.com"
Damien Miller72ef7c12015-01-15 02:21:31 +11002982 fi
2983
2984 AC_SUBST([TEST_SSH_ECC])
2985 AC_SUBST([COMMENT_OUT_ECC])
2986else
2987 AC_CHECK_LIB([crypt], [crypt], [LIBS="$LIBS -lcrypt"])
Damien Miller00797e82015-03-04 05:02:45 +11002988 AC_CHECK_FUNCS([crypt])
Damien Miller72ef7c12015-01-15 02:21:31 +11002989fi
Damien Miller6af914a2010-09-10 11:39:26 +10002990
Damien Miller00f9cd22014-07-15 10:41:38 +10002991AC_CHECK_FUNCS([ \
2992 arc4random \
2993 arc4random_buf \
2994 arc4random_stir \
2995 arc4random_uniform \
2996])
2997
Tim Rice99203ec2007-03-26 09:35:28 -07002998saved_LIBS="$LIBS"
Tim Rice648f8762011-01-26 12:38:57 -08002999AC_CHECK_LIB([iaf], [ia_openinfo], [
Tim Rice99203ec2007-03-26 09:35:28 -07003000 LIBS="$LIBS -liaf"
Tim Rice648f8762011-01-26 12:38:57 -08003001 AC_CHECK_FUNCS([set_id], [SSHDLIBS="$SSHDLIBS -liaf"
3002 AC_DEFINE([HAVE_LIBIAF], [1],
Tim Ricee1d93702016-05-31 11:13:22 -07003003 [Define if system has libiaf that supports set_id])
Tim Rice0eeaf122007-09-10 16:24:17 -07003004 ])
Tim Rice99203ec2007-03-26 09:35:28 -07003005])
3006LIBS="$saved_LIBS"
Damien Miller6c21c512002-01-22 21:57:53 +11003007
3008### Configure cryptographic random number support
3009
Damien Miller10479cc2018-04-10 10:19:02 +10003010# Check whether OpenSSL seeds itself
Damien Miller72ef7c12015-01-15 02:21:31 +11003011if test "x$openssl" = "xyes" ; then
3012 AC_MSG_CHECKING([whether OpenSSL's PRNG is internally seeded])
3013 AC_RUN_IFELSE(
3014 [AC_LANG_PROGRAM([[
3015 #include <string.h>
3016 #include <openssl/rand.h>
3017 ]], [[
3018 exit(RAND_status() == 1 ? 0 : 1);
3019 ]])],
3020 [
3021 OPENSSL_SEEDS_ITSELF=yes
3022 AC_MSG_RESULT([yes])
3023 ],
3024 [
3025 AC_MSG_RESULT([no])
3026 ],
3027 [
3028 AC_MSG_WARN([cross compiling: assuming yes])
3029 # This is safe, since we will fatal() at runtime if
3030 # OpenSSL is not seeded correctly.
3031 OPENSSL_SEEDS_ITSELF=yes
3032 ]
3033 )
3034fi
Damien Miller6c21c512002-01-22 21:57:53 +11003035
Damien Millerf22019b2011-05-05 13:48:37 +10003036# PRNGD TCP socket
3037AC_ARG_WITH([prngd-port],
3038 [ --with-prngd-port=PORT read entropy from PRNGD/EGD TCP localhost:PORT],
3039 [
3040 case "$withval" in
3041 no)
3042 withval=""
3043 ;;
3044 [[0-9]]*)
3045 ;;
3046 *)
3047 AC_MSG_ERROR([You must specify a numeric port number for --with-prngd-port])
3048 ;;
3049 esac
3050 if test ! -z "$withval" ; then
3051 PRNGD_PORT="$withval"
3052 AC_DEFINE_UNQUOTED([PRNGD_PORT], [$PRNGD_PORT],
3053 [Port number of PRNGD/EGD random number socket])
3054 fi
3055 ]
3056)
3057
3058# PRNGD Unix domain socket
3059AC_ARG_WITH([prngd-socket],
3060 [ --with-prngd-socket=FILE read entropy from PRNGD/EGD socket FILE (default=/var/run/egd-pool)],
3061 [
3062 case "$withval" in
3063 yes)
3064 withval="/var/run/egd-pool"
3065 ;;
3066 no)
3067 withval=""
3068 ;;
3069 /*)
3070 ;;
3071 *)
3072 AC_MSG_ERROR([You must specify an absolute path to the entropy socket])
3073 ;;
3074 esac
3075
3076 if test ! -z "$withval" ; then
3077 if test ! -z "$PRNGD_PORT" ; then
3078 AC_MSG_ERROR([You may not specify both a PRNGD/EGD port and socket])
3079 fi
3080 if test ! -r "$withval" ; then
3081 AC_MSG_WARN([Entropy socket is not readable])
3082 fi
3083 PRNGD_SOCKET="$withval"
3084 AC_DEFINE_UNQUOTED([PRNGD_SOCKET], ["$PRNGD_SOCKET"],
3085 [Location of PRNGD/EGD random number socket])
3086 fi
3087 ],
3088 [
3089 # Check for existing socket only if we don't have a random device already
3090 if test "x$OPENSSL_SEEDS_ITSELF" != "xyes" ; then
3091 AC_MSG_CHECKING([for PRNGD/EGD socket])
3092 # Insert other locations here
3093 for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do
3094 if test -r $sock && $TEST_MINUS_S_SH -c "test -S $sock -o -p $sock" ; then
3095 PRNGD_SOCKET="$sock"
3096 AC_DEFINE_UNQUOTED([PRNGD_SOCKET], ["$PRNGD_SOCKET"])
3097 break;
3098 fi
3099 done
3100 if test ! -z "$PRNGD_SOCKET" ; then
3101 AC_MSG_RESULT([$PRNGD_SOCKET])
3102 else
3103 AC_MSG_RESULT([not found])
3104 fi
3105 fi
3106 ]
3107)
3108
3109# Which randomness source do we use?
3110if test ! -z "$PRNGD_PORT" ; then
3111 RAND_MSG="PRNGd port $PRNGD_PORT"
3112elif test ! -z "$PRNGD_SOCKET" ; then
3113 RAND_MSG="PRNGd socket $PRNGD_SOCKET"
3114elif test ! -z "$OPENSSL_SEEDS_ITSELF" ; then
3115 AC_DEFINE([OPENSSL_PRNG_ONLY], [1],
Damien Miller72ef7c12015-01-15 02:21:31 +11003116 [Define if you want the OpenSSL internally seeded PRNG only])
Damien Millerf22019b2011-05-05 13:48:37 +10003117 RAND_MSG="OpenSSL internal ONLY"
Damien Miller72ef7c12015-01-15 02:21:31 +11003118elif test "x$openssl" = "xno" ; then
3119 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 +10003120else
3121 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])
3122fi
3123
Darren Tucker3e6bde42006-08-20 20:03:50 +10003124# Check for PAM libs
3125PAM_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08003126AC_ARG_WITH([pam],
Darren Tucker3e6bde42006-08-20 20:03:50 +10003127 [ --with-pam Enable PAM support ],
3128 [
3129 if test "x$withval" != "xno" ; then
3130 if test "x$ac_cv_header_security_pam_appl_h" != "xyes" && \
3131 test "x$ac_cv_header_pam_pam_appl_h" != "xyes" ; then
3132 AC_MSG_ERROR([PAM headers not found])
3133 fi
3134
3135 saved_LIBS="$LIBS"
Tim Rice648f8762011-01-26 12:38:57 -08003136 AC_CHECK_LIB([dl], [dlopen], , )
3137 AC_CHECK_LIB([pam], [pam_set_item], , [AC_MSG_ERROR([*** libpam missing])])
3138 AC_CHECK_FUNCS([pam_getenvlist])
3139 AC_CHECK_FUNCS([pam_putenv])
Darren Tucker3e6bde42006-08-20 20:03:50 +10003140 LIBS="$saved_LIBS"
3141
3142 PAM_MSG="yes"
3143
Darren Tucker20e9f972007-03-25 18:26:01 +10003144 SSHDLIBS="$SSHDLIBS -lpam"
Tim Rice648f8762011-01-26 12:38:57 -08003145 AC_DEFINE([USE_PAM], [1],
Darren Tucker3e6bde42006-08-20 20:03:50 +10003146 [Define if you want to enable PAM support])
Darren Tucker639bbe82006-08-20 20:17:53 +10003147
Darren Tucker3e6bde42006-08-20 20:03:50 +10003148 if test $ac_cv_lib_dl_dlopen = yes; then
Darren Tucker639bbe82006-08-20 20:17:53 +10003149 case "$LIBS" in
3150 *-ldl*)
3151 # libdl already in LIBS
3152 ;;
3153 *)
Darren Tucker20e9f972007-03-25 18:26:01 +10003154 SSHDLIBS="$SSHDLIBS -ldl"
Darren Tucker639bbe82006-08-20 20:17:53 +10003155 ;;
3156 esac
Darren Tucker3e6bde42006-08-20 20:03:50 +10003157 fi
Darren Tucker3e6bde42006-08-20 20:03:50 +10003158 fi
3159 ]
3160)
3161
Damien Miller8bd81e12016-08-16 13:30:56 +10003162AC_ARG_WITH([pam-service],
3163 [ --with-pam-service=name Specify PAM service name ],
3164 [
3165 if test "x$withval" != "xno" && \
3166 test "x$withval" != "xyes" ; then
3167 AC_DEFINE_UNQUOTED([SSHD_PAM_SERVICE],
3168 ["$withval"], [sshd PAM service name])
3169 fi
3170 ]
3171)
3172
Darren Tucker3e6bde42006-08-20 20:03:50 +10003173# Check for older PAM
3174if test "x$PAM_MSG" = "xyes" ; then
3175 # Check PAM strerror arguments (old PAM)
3176 AC_MSG_CHECKING([whether pam_strerror takes only one argument])
Tim Rice648f8762011-01-26 12:38:57 -08003177 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tucker3e6bde42006-08-20 20:03:50 +10003178#include <stdlib.h>
3179#if defined(HAVE_SECURITY_PAM_APPL_H)
3180#include <security/pam_appl.h>
3181#elif defined (HAVE_PAM_PAM_APPL_H)
3182#include <pam/pam_appl.h>
3183#endif
Tim Rice648f8762011-01-26 12:38:57 -08003184 ]], [[
3185(void)pam_strerror((pam_handle_t *)NULL, -1);
3186 ]])], [AC_MSG_RESULT([no])], [
3187 AC_DEFINE([HAVE_OLD_PAM], [1],
Darren Tucker3e6bde42006-08-20 20:03:50 +10003188 [Define if you have an old version of PAM
3189 which takes only one argument to pam_strerror])
Tim Rice648f8762011-01-26 12:38:57 -08003190 AC_MSG_RESULT([yes])
Darren Tucker3e6bde42006-08-20 20:03:50 +10003191 PAM_MSG="yes (old library)"
Damien Miller72ef7c12015-01-15 02:21:31 +11003192
Tim Rice648f8762011-01-26 12:38:57 -08003193 ])
Darren Tucker3e6bde42006-08-20 20:03:50 +10003194fi
Damien Miller6c21c512002-01-22 21:57:53 +11003195
Damien Miller6482d902014-05-27 14:34:42 +10003196case "$host" in
3197*-*-cygwin*)
3198 SSH_PRIVSEP_USER=CYGWIN_SSH_PRIVSEP_USER
3199 ;;
3200*)
3201 SSH_PRIVSEP_USER=sshd
3202 ;;
3203esac
Tim Rice648f8762011-01-26 12:38:57 -08003204AC_ARG_WITH([privsep-user],
Kevin Stevesc81e1292002-05-13 03:51:40 +00003205 [ --with-privsep-user=user Specify non-privileged user for privilege separation],
Kevin Steves7ff91122002-04-07 19:22:54 +00003206 [
Tim Rice35cc69d2005-03-17 16:44:25 -08003207 if test -n "$withval" && test "x$withval" != "xno" && \
3208 test "x${withval}" != "xyes"; then
Damien Millerd3f6ad22002-06-25 10:24:47 +10003209 SSH_PRIVSEP_USER=$withval
Kevin Steves7ff91122002-04-07 19:22:54 +00003210 fi
Tim Riceeae17cc2005-03-17 16:52:20 -08003211 ]
Kevin Steves7ff91122002-04-07 19:22:54 +00003212)
Damien Miller6482d902014-05-27 14:34:42 +10003213if test "x$SSH_PRIVSEP_USER" = "xCYGWIN_SSH_PRIVSEP_USER" ; then
3214 AC_DEFINE_UNQUOTED([SSH_PRIVSEP_USER], [CYGWIN_SSH_PRIVSEP_USER],
3215 [Cygwin function to fetch non-privileged user for privilege separation])
3216else
3217 AC_DEFINE_UNQUOTED([SSH_PRIVSEP_USER], ["$SSH_PRIVSEP_USER"],
3218 [non-privileged user for privilege separation])
3219fi
Tim Rice648f8762011-01-26 12:38:57 -08003220AC_SUBST([SSH_PRIVSEP_USER])
Kevin Steves7ff91122002-04-07 19:22:54 +00003221
Damien Miller91f40d82013-02-22 11:37:00 +11003222if test "x$have_linux_no_new_privs" = "x1" ; then
3223AC_CHECK_DECL([SECCOMP_MODE_FILTER], [have_seccomp_filter=1], , [
3224 #include <sys/types.h>
3225 #include <linux/seccomp.h>
3226])
3227fi
3228if test "x$have_seccomp_filter" = "x1" ; then
3229AC_MSG_CHECKING([kernel for seccomp_filter support])
3230AC_LINK_IFELSE([AC_LANG_PROGRAM([[
3231 #include <errno.h>
3232 #include <elf.h>
3233 #include <linux/audit.h>
3234 #include <linux/seccomp.h>
3235 #include <stdlib.h>
3236 #include <sys/prctl.h>
3237 ]],
3238 [[ int i = $seccomp_audit_arch;
3239 errno = 0;
3240 prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, NULL, 0, 0);
3241 exit(errno == EFAULT ? 0 : 1); ]])],
3242 [ AC_MSG_RESULT([yes]) ], [
3243 AC_MSG_RESULT([no])
3244 # Disable seccomp filter as a target
3245 have_seccomp_filter=0
3246 ]
3247)
3248fi
3249
Damien Miller69ff1df2011-06-23 08:30:03 +10003250# Decide which sandbox style to use
3251sandbox_arg=""
3252AC_ARG_WITH([sandbox],
deraadt@openbsd.org2539dce2015-10-09 01:37:08 +00003253 [ --with-sandbox=style Specify privilege separation sandbox (no, capsicum, darwin, rlimit, seccomp_filter, systrace, pledge)],
Damien Miller69ff1df2011-06-23 08:30:03 +10003254 [
3255 if test "x$withval" = "xyes" ; then
3256 sandbox_arg=""
3257 else
3258 sandbox_arg="$withval"
3259 fi
3260 ]
3261)
Darren Tucker60395f92012-07-03 14:31:18 +10003262
3263# Some platforms (seems to be the ones that have a kernel poll(2)-type
3264# function with which they implement select(2)) use an extra file descriptor
3265# when calling select(2), which means we can't use the rlimit sandbox.
3266AC_MSG_CHECKING([if select works with descriptor rlimit])
3267AC_RUN_IFELSE(
3268 [AC_LANG_PROGRAM([[
3269#include <sys/types.h>
3270#ifdef HAVE_SYS_TIME_H
3271# include <sys/time.h>
3272#endif
3273#include <sys/resource.h>
3274#ifdef HAVE_SYS_SELECT_H
3275# include <sys/select.h>
3276#endif
3277#include <errno.h>
3278#include <fcntl.h>
3279#include <stdlib.h>
3280 ]],[[
3281 struct rlimit rl_zero;
3282 int fd, r;
3283 fd_set fds;
Damien Millere4f43472013-03-08 12:14:22 +11003284 struct timeval tv;
Darren Tucker60395f92012-07-03 14:31:18 +10003285
3286 fd = open("/dev/null", O_RDONLY);
3287 FD_ZERO(&fds);
3288 FD_SET(fd, &fds);
3289 rl_zero.rlim_cur = rl_zero.rlim_max = 0;
3290 setrlimit(RLIMIT_FSIZE, &rl_zero);
3291 setrlimit(RLIMIT_NOFILE, &rl_zero);
Damien Millere4f43472013-03-08 12:14:22 +11003292 tv.tv_sec = 1;
3293 tv.tv_usec = 0;
3294 r = select(fd+1, &fds, NULL, NULL, &tv);
Darren Tucker60395f92012-07-03 14:31:18 +10003295 exit (r == -1 ? 1 : 0);
3296 ]])],
3297 [AC_MSG_RESULT([yes])
3298 select_works_with_rlimit=yes],
3299 [AC_MSG_RESULT([no])
3300 select_works_with_rlimit=no],
Mike Frysingerdcc714c2017-05-24 23:21:19 -04003301 [AC_MSG_WARN([cross compiling: assuming yes])
3302 select_works_with_rlimit=yes]
Darren Tucker60395f92012-07-03 14:31:18 +10003303)
3304
Darren Tuckerff008de2013-03-06 17:48:48 +11003305AC_MSG_CHECKING([if setrlimit(RLIMIT_NOFILE,{0,0}) works])
3306AC_RUN_IFELSE(
3307 [AC_LANG_PROGRAM([[
3308#include <sys/types.h>
3309#ifdef HAVE_SYS_TIME_H
3310# include <sys/time.h>
3311#endif
3312#include <sys/resource.h>
3313#include <errno.h>
3314#include <stdlib.h>
3315 ]],[[
3316 struct rlimit rl_zero;
3317 int fd, r;
3318 fd_set fds;
3319
3320 rl_zero.rlim_cur = rl_zero.rlim_max = 0;
3321 r = setrlimit(RLIMIT_NOFILE, &rl_zero);
3322 exit (r == -1 ? 1 : 0);
3323 ]])],
3324 [AC_MSG_RESULT([yes])
3325 rlimit_nofile_zero_works=yes],
3326 [AC_MSG_RESULT([no])
3327 rlimit_nofile_zero_works=no],
Mike Frysingerdcc714c2017-05-24 23:21:19 -04003328 [AC_MSG_WARN([cross compiling: assuming yes])
3329 rlimit_nofile_zero_works=yes]
Darren Tuckerff008de2013-03-06 17:48:48 +11003330)
3331
Darren Tuckerd545a4b2012-07-03 22:48:31 +10003332AC_MSG_CHECKING([if setrlimit RLIMIT_FSIZE works])
3333AC_RUN_IFELSE(
3334 [AC_LANG_PROGRAM([[
3335#include <sys/types.h>
3336#include <sys/resource.h>
3337#include <stdlib.h>
3338 ]],[[
3339 struct rlimit rl_zero;
3340
3341 rl_zero.rlim_cur = rl_zero.rlim_max = 0;
3342 exit(setrlimit(RLIMIT_FSIZE, &rl_zero) != 0);
3343 ]])],
3344 [AC_MSG_RESULT([yes])],
3345 [AC_MSG_RESULT([no])
3346 AC_DEFINE(SANDBOX_SKIP_RLIMIT_FSIZE, 1,
3347 [setrlimit RLIMIT_FSIZE works])],
3348 [AC_MSG_WARN([cross compiling: assuming yes])]
3349)
3350
deraadt@openbsd.org2539dce2015-10-09 01:37:08 +00003351if test "x$sandbox_arg" = "xpledge" || \
3352 ( test -z "$sandbox_arg" && test "x$ac_cv_func_pledge" = "xyes" ) ; then
3353 test "x$ac_cv_func_pledge" != "xyes" && \
3354 AC_MSG_ERROR([pledge sandbox requires pledge(2) support])
3355 SANDBOX_STYLE="pledge"
Damien Millerfafe1d82015-10-14 09:22:15 -07003356 AC_DEFINE([SANDBOX_PLEDGE], [1], [Sandbox using pledge(2)])
Damien Miller9846a2f2015-10-08 04:30:48 +11003357elif test "x$sandbox_arg" = "xsystrace" || \
Damien Miller69ff1df2011-06-23 08:30:03 +10003358 ( test -z "$sandbox_arg" && test "x$have_systr_policy_kill" = "x1" ) ; then
Damien Miller1a91c0f2011-08-17 11:59:25 +10003359 test "x$have_systr_policy_kill" != "x1" && \
3360 AC_MSG_ERROR([systrace sandbox requires systrace headers and SYSTR_POLICY_KILL support])
Damien Miller69ff1df2011-06-23 08:30:03 +10003361 SANDBOX_STYLE="systrace"
3362 AC_DEFINE([SANDBOX_SYSTRACE], [1], [Sandbox using systrace(4)])
Damien Millercd5e52e2011-06-27 07:18:18 +10003363elif test "x$sandbox_arg" = "xdarwin" || \
3364 ( test -z "$sandbox_arg" && test "x$ac_cv_func_sandbox_init" = "xyes" && \
3365 test "x$ac_cv_header_sandbox_h" = "xyes") ; then
Damien Miller1a91c0f2011-08-17 11:59:25 +10003366 test "x$ac_cv_func_sandbox_init" != "xyes" -o \
3367 "x$ac_cv_header_sandbox_h" != "xyes" && \
3368 AC_MSG_ERROR([Darwin seatbelt sandbox requires sandbox.h and sandbox_init function])
Damien Millercd5e52e2011-06-27 07:18:18 +10003369 SANDBOX_STYLE="darwin"
3370 AC_DEFINE([SANDBOX_DARWIN], [1], [Sandbox using Darwin sandbox_init(3)])
Damien Millere0956e32012-04-04 11:27:54 +10003371elif test "x$sandbox_arg" = "xseccomp_filter" || \
3372 ( test -z "$sandbox_arg" && \
Darren Tuckerd0494fd2012-05-19 14:25:39 +10003373 test "x$have_seccomp_filter" = "x1" && \
Damien Miller91f40d82013-02-22 11:37:00 +11003374 test "x$ac_cv_header_elf_h" = "xyes" && \
Damien Millere0956e32012-04-04 11:27:54 +10003375 test "x$ac_cv_header_linux_audit_h" = "xyes" && \
Damien Miller91f40d82013-02-22 11:37:00 +11003376 test "x$ac_cv_header_linux_filter_h" = "xyes" && \
3377 test "x$seccomp_audit_arch" != "x" && \
Damien Millere0956e32012-04-04 11:27:54 +10003378 test "x$have_linux_no_new_privs" = "x1" && \
3379 test "x$ac_cv_func_prctl" = "xyes" ) ; then
Damien Miller91f40d82013-02-22 11:37:00 +11003380 test "x$seccomp_audit_arch" = "x" && \
Damien Millere0956e32012-04-04 11:27:54 +10003381 AC_MSG_ERROR([seccomp_filter sandbox not supported on $host])
3382 test "x$have_linux_no_new_privs" != "x1" && \
3383 AC_MSG_ERROR([seccomp_filter sandbox requires PR_SET_NO_NEW_PRIVS])
3384 test "x$have_seccomp_filter" != "x1" && \
3385 AC_MSG_ERROR([seccomp_filter sandbox requires seccomp headers])
3386 test "x$ac_cv_func_prctl" != "xyes" && \
3387 AC_MSG_ERROR([seccomp_filter sandbox requires prctl function])
3388 SANDBOX_STYLE="seccomp_filter"
3389 AC_DEFINE([SANDBOX_SECCOMP_FILTER], [1], [Sandbox using seccomp filter])
Damien Millerf62ecef2014-01-25 12:34:38 +11003390elif test "x$sandbox_arg" = "xcapsicum" || \
3391 ( test -z "$sandbox_arg" && \
Darren Tuckerdd9d9b32017-08-28 16:48:27 +10003392 test "x$ac_cv_header_sys_capsicum_h" = "xyes" && \
Damien Miller603b8f42014-01-25 13:16:59 +11003393 test "x$ac_cv_func_cap_rights_limit" = "xyes") ; then
Darren Tuckerdd9d9b32017-08-28 16:48:27 +10003394 test "x$ac_cv_header_sys_capsicum_h" != "xyes" && \
3395 AC_MSG_ERROR([capsicum sandbox requires sys/capsicum.h header])
Damien Miller603b8f42014-01-25 13:16:59 +11003396 test "x$ac_cv_func_cap_rights_limit" != "xyes" && \
Damien Millerc96d8532014-01-25 13:12:28 +11003397 AC_MSG_ERROR([capsicum sandbox requires cap_rights_limit function])
Damien Millerf62ecef2014-01-25 12:34:38 +11003398 SANDBOX_STYLE="capsicum"
3399 AC_DEFINE([SANDBOX_CAPSICUM], [1], [Sandbox using capsicum])
Damien Miller69ff1df2011-06-23 08:30:03 +10003400elif test "x$sandbox_arg" = "xrlimit" || \
Darren Tucker60395f92012-07-03 14:31:18 +10003401 ( test -z "$sandbox_arg" && test "x$ac_cv_func_setrlimit" = "xyes" && \
Darren Tuckerff008de2013-03-06 17:48:48 +11003402 test "x$select_works_with_rlimit" = "xyes" && \
3403 test "x$rlimit_nofile_zero_works" = "xyes" ) ; then
Damien Miller1a91c0f2011-08-17 11:59:25 +10003404 test "x$ac_cv_func_setrlimit" != "xyes" && \
3405 AC_MSG_ERROR([rlimit sandbox requires setrlimit function])
Darren Tucker60395f92012-07-03 14:31:18 +10003406 test "x$select_works_with_rlimit" != "xyes" && \
3407 AC_MSG_ERROR([rlimit sandbox requires select to work with rlimit])
Damien Miller69ff1df2011-06-23 08:30:03 +10003408 SANDBOX_STYLE="rlimit"
3409 AC_DEFINE([SANDBOX_RLIMIT], [1], [Sandbox using setrlimit(2)])
Damien Miller4626cba2016-01-08 14:24:56 +11003410elif test "x$sandbox_arg" = "xsolaris" || \
3411 ( test -z "$sandbox_arg" && test "x$SOLARIS_PRIVS" = "xyes" ) ; then
3412 SANDBOX_STYLE="solaris"
3413 AC_DEFINE([SANDBOX_SOLARIS], [1], [Sandbox using Solaris/Illumos privileges])
Damien Miller69ff1df2011-06-23 08:30:03 +10003414elif test -z "$sandbox_arg" || test "x$sandbox_arg" = "xno" || \
3415 test "x$sandbox_arg" = "xnone" || test "x$sandbox_arg" = "xnull" ; then
3416 SANDBOX_STYLE="none"
3417 AC_DEFINE([SANDBOX_NULL], [1], [no privsep sandboxing])
3418else
Tim Ricea6e60612011-08-17 21:48:22 -07003419 AC_MSG_ERROR([unsupported --with-sandbox])
Damien Miller69ff1df2011-06-23 08:30:03 +10003420fi
3421
Ben Lindstromb5628642000-10-18 00:02:25 +00003422# Cheap hack to ensure NEWS-OS libraries are arranged right.
3423if test ! -z "$SONY" ; then
3424 LIBS="$LIBS -liberty";
3425fi
3426
Damien Miller57f39152005-11-24 19:58:19 +11003427# Check for long long datatypes
3428AC_CHECK_TYPES([long long, unsigned long long, long double])
3429
3430# Check datatype sizes
Tim Rice648f8762011-01-26 12:38:57 -08003431AC_CHECK_SIZEOF([short int], [2])
3432AC_CHECK_SIZEOF([int], [4])
3433AC_CHECK_SIZEOF([long int], [4])
3434AC_CHECK_SIZEOF([long long int], [8])
Damien Millerc6398ef1999-11-20 12:18:40 +11003435
Damien Millerfa2bb692002-04-23 23:22:25 +10003436# Sanity check long long for some platforms (AIX)
3437if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then
3438 ac_cv_sizeof_long_long_int=0
3439fi
3440
Darren Tucker537f1ed2005-10-25 18:38:33 +10003441# compute LLONG_MIN and LLONG_MAX if we don't know them.
3442if test -z "$have_llong_max"; then
3443 AC_MSG_CHECKING([for max value of long long])
3444 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08003445 [AC_LANG_PROGRAM([[
Darren Tucker537f1ed2005-10-25 18:38:33 +10003446#include <stdio.h>
3447/* Why is this so damn hard? */
3448#ifdef __GNUC__
3449# undef __GNUC__
3450#endif
3451#define __USE_ISOC99
3452#include <limits.h>
3453#define DATA "conftest.llminmax"
Darren Tuckerd1450db2006-03-13 19:06:51 +11003454#define my_abs(a) ((a) < 0 ? ((a) * -1) : (a))
3455
3456/*
3457 * printf in libc on some platforms (eg old Tru64) does not understand %lld so
3458 * we do this the hard way.
3459 */
3460static int
3461fprint_ll(FILE *f, long long n)
3462{
3463 unsigned int i;
3464 int l[sizeof(long long) * 8];
3465
3466 if (n < 0)
3467 if (fprintf(f, "-") < 0)
3468 return -1;
3469 for (i = 0; n != 0; i++) {
3470 l[i] = my_abs(n % 10);
3471 n /= 10;
3472 }
3473 do {
3474 if (fprintf(f, "%d", l[--i]) < 0)
3475 return -1;
3476 } while (i != 0);
3477 if (fprintf(f, " ") < 0)
3478 return -1;
3479 return 0;
3480}
Tim Rice648f8762011-01-26 12:38:57 -08003481 ]], [[
Darren Tucker537f1ed2005-10-25 18:38:33 +10003482 FILE *f;
3483 long long i, llmin, llmax = 0;
3484
3485 if((f = fopen(DATA,"w")) == NULL)
3486 exit(1);
3487
3488#if defined(LLONG_MIN) && defined(LLONG_MAX)
3489 fprintf(stderr, "Using system header for LLONG_MIN and LLONG_MAX\n");
3490 llmin = LLONG_MIN;
3491 llmax = LLONG_MAX;
3492#else
3493 fprintf(stderr, "Calculating LLONG_MIN and LLONG_MAX\n");
3494 /* This will work on one's complement and two's complement */
3495 for (i = 1; i > llmax; i <<= 1, i++)
3496 llmax = i;
3497 llmin = llmax + 1LL; /* wrap */
3498#endif
3499
3500 /* Sanity check */
3501 if (llmin + 1 < llmin || llmin - 1 < llmin || llmax + 1 > llmax
Darren Tuckerd1450db2006-03-13 19:06:51 +11003502 || llmax - 1 > llmax || llmin == llmax || llmin == 0
3503 || llmax == 0 || llmax < LONG_MAX || llmin > LONG_MIN) {
Darren Tucker537f1ed2005-10-25 18:38:33 +10003504 fprintf(f, "unknown unknown\n");
3505 exit(2);
3506 }
3507
Darren Tuckerd1450db2006-03-13 19:06:51 +11003508 if (fprint_ll(f, llmin) < 0)
Darren Tucker537f1ed2005-10-25 18:38:33 +10003509 exit(3);
Darren Tuckerd1450db2006-03-13 19:06:51 +11003510 if (fprint_ll(f, llmax) < 0)
3511 exit(4);
3512 if (fclose(f) < 0)
3513 exit(5);
Darren Tucker537f1ed2005-10-25 18:38:33 +10003514 exit(0);
Darren Tucker537f1ed2005-10-25 18:38:33 +10003515 ]])],
3516 [
3517 llong_min=`$AWK '{print $1}' conftest.llminmax`
3518 llong_max=`$AWK '{print $2}' conftest.llminmax`
3519
Tim Rice648f8762011-01-26 12:38:57 -08003520 AC_MSG_RESULT([$llong_max])
3521 AC_DEFINE_UNQUOTED([LLONG_MAX], [${llong_max}LL],
Darren Tucker537f1ed2005-10-25 18:38:33 +10003522 [max value of long long calculated by configure])
3523 AC_MSG_CHECKING([for min value of long long])
Tim Rice648f8762011-01-26 12:38:57 -08003524 AC_MSG_RESULT([$llong_min])
3525 AC_DEFINE_UNQUOTED([LLONG_MIN], [${llong_min}LL],
Darren Tucker537f1ed2005-10-25 18:38:33 +10003526 [min value of long long calculated by configure])
3527 ],
3528 [
Tim Rice648f8762011-01-26 12:38:57 -08003529 AC_MSG_RESULT([not found])
Darren Tucker537f1ed2005-10-25 18:38:33 +10003530 ],
3531 [
3532 AC_MSG_WARN([cross compiling: not checking])
3533 ]
3534 )
3535fi
3536
3537
Damien Millera22ba012000-03-02 23:09:20 +11003538# More checks for data types
Damien Millercaf6dd62000-08-29 11:33:50 +11003539AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
Tim Rice648f8762011-01-26 12:38:57 -08003540 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3541 [[ u_int a; a = 1;]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003542 [ ac_cv_have_u_int="yes" ], [ ac_cv_have_u_int="no"
Tim Rice648f8762011-01-26 12:38:57 -08003543 ])
Damien Millercaf6dd62000-08-29 11:33:50 +11003544])
3545if test "x$ac_cv_have_u_int" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003546 AC_DEFINE([HAVE_U_INT], [1], [define if you have u_int data type])
Damien Millercaf6dd62000-08-29 11:33:50 +11003547 have_u_int=1
3548fi
3549
Damien Miller61e50f12000-05-08 20:49:37 +10003550AC_CACHE_CHECK([for intXX_t types], ac_cv_have_intxx_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003551 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3552 [[ int8_t a; int16_t b; int32_t c; a = b = c = 1;]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003553 [ ac_cv_have_intxx_t="yes" ], [ ac_cv_have_intxx_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003554 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003555])
3556if test "x$ac_cv_have_intxx_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003557 AC_DEFINE([HAVE_INTXX_T], [1], [define if you have intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003558 have_intxx_t=1
3559fi
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003560
3561if (test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11003562 test "x$ac_cv_header_stdint_h" = "xyes")
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003563then
3564 AC_MSG_CHECKING([for intXX_t types in stdint.h])
Tim Rice648f8762011-01-26 12:38:57 -08003565 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <stdint.h> ]],
3566 [[ int8_t a; int16_t b; int32_t c; a = b = c = 1;]])],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003567 [
Tim Rice648f8762011-01-26 12:38:57 -08003568 AC_DEFINE([HAVE_INTXX_T])
3569 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003570 ], [ AC_MSG_RESULT([no])
Tim Rice648f8762011-01-26 12:38:57 -08003571 ])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003572fi
3573
Damien Miller578783e2000-09-23 14:12:24 +11003574AC_CACHE_CHECK([for int64_t type], ac_cv_have_int64_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003575 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Tim Rice907881e2002-07-18 11:44:50 -07003576#include <sys/types.h>
3577#ifdef HAVE_STDINT_H
3578# include <stdint.h>
3579#endif
3580#include <sys/socket.h>
3581#ifdef HAVE_SYS_BITYPES_H
3582# include <sys/bitypes.h>
3583#endif
Tim Rice648f8762011-01-26 12:38:57 -08003584 ]], [[
3585int64_t a; a = 1;
3586 ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003587 [ ac_cv_have_int64_t="yes" ], [ ac_cv_have_int64_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003588 ])
Damien Miller578783e2000-09-23 14:12:24 +11003589])
3590if test "x$ac_cv_have_int64_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003591 AC_DEFINE([HAVE_INT64_T], [1], [define if you have int64_t data type])
Tim Rice4cec93f2002-02-26 08:40:48 -08003592fi
3593
Damien Miller61e50f12000-05-08 20:49:37 +10003594AC_CACHE_CHECK([for u_intXX_t types], ac_cv_have_u_intxx_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003595 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3596 [[ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003597 [ ac_cv_have_u_intxx_t="yes" ], [ ac_cv_have_u_intxx_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003598 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003599])
3600if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003601 AC_DEFINE([HAVE_U_INTXX_T], [1], [define if you have u_intxx_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003602 have_u_intxx_t=1
3603fi
Damien Millerc6398ef1999-11-20 12:18:40 +11003604
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003605if test -z "$have_u_intxx_t" ; then
3606 AC_MSG_CHECKING([for u_intXX_t types in sys/socket.h])
Tim Rice648f8762011-01-26 12:38:57 -08003607 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/socket.h> ]],
3608 [[ u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;]])],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003609 [
Tim Rice648f8762011-01-26 12:38:57 -08003610 AC_DEFINE([HAVE_U_INTXX_T])
3611 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003612 ], [ AC_MSG_RESULT([no])
Tim Rice648f8762011-01-26 12:38:57 -08003613 ])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003614fi
3615
Damien Miller578783e2000-09-23 14:12:24 +11003616AC_CACHE_CHECK([for u_int64_t types], ac_cv_have_u_int64_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003617 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3618 [[ u_int64_t a; a = 1;]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003619 [ ac_cv_have_u_int64_t="yes" ], [ ac_cv_have_u_int64_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003620 ])
Damien Miller578783e2000-09-23 14:12:24 +11003621])
3622if test "x$ac_cv_have_u_int64_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003623 AC_DEFINE([HAVE_U_INT64_T], [1], [define if you have u_int64_t data type])
Damien Miller578783e2000-09-23 14:12:24 +11003624 have_u_int64_t=1
3625fi
3626
Damien Millerc2868192014-01-30 10:21:19 +11003627if (test -z "$have_u_int64_t" && \
3628 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
3629then
Tim Rice4cec93f2002-02-26 08:40:48 -08003630 AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h])
Tim Rice648f8762011-01-26 12:38:57 -08003631 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/bitypes.h> ]],
3632 [[ u_int64_t a; a = 1]])],
Tim Rice4cec93f2002-02-26 08:40:48 -08003633 [
Tim Rice648f8762011-01-26 12:38:57 -08003634 AC_DEFINE([HAVE_U_INT64_T])
3635 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003636 ], [ AC_MSG_RESULT([no])
Tim Rice648f8762011-01-26 12:38:57 -08003637 ])
Tim Rice4cec93f2002-02-26 08:40:48 -08003638fi
3639
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003640if test -z "$have_u_intxx_t" ; then
3641 AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003642 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003643#include <sys/types.h>
Tim Rice648f8762011-01-26 12:38:57 -08003644 ]], [[
3645 uint8_t a;
3646 uint16_t b;
3647 uint32_t c;
3648 a = b = c = 1;
3649 ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003650 [ ac_cv_have_uintxx_t="yes" ], [ ac_cv_have_uintxx_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003651 ])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003652 ])
3653 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003654 AC_DEFINE([HAVE_UINTXX_T], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003655 [define if you have uintxx_t data type])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003656 fi
3657fi
3658
Damien Millerc2868192014-01-30 10:21:19 +11003659if (test -z "$have_uintxx_t" && \
3660 test "x$ac_cv_header_stdint_h" = "xyes")
3661then
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003662 AC_MSG_CHECKING([for uintXX_t types in stdint.h])
Tim Rice648f8762011-01-26 12:38:57 -08003663 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <stdint.h> ]],
3664 [[ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;]])],
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003665 [
Tim Rice648f8762011-01-26 12:38:57 -08003666 AC_DEFINE([HAVE_UINTXX_T])
3667 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003668 ], [ AC_MSG_RESULT([no])
Tim Rice648f8762011-01-26 12:38:57 -08003669 ])
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00003670fi
3671
Damien Millerc2868192014-01-30 10:21:19 +11003672if (test -z "$have_uintxx_t" && \
3673 test "x$ac_cv_header_inttypes_h" = "xyes")
3674then
Darren Tucker6d725682014-01-17 19:17:34 +11003675 AC_MSG_CHECKING([for uintXX_t types in inttypes.h])
3676 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <inttypes.h> ]],
3677 [[ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;]])],
3678 [
3679 AC_DEFINE([HAVE_UINTXX_T])
3680 AC_MSG_RESULT([yes])
Tim Ricee1d93702016-05-31 11:13:22 -07003681 ], [ AC_MSG_RESULT([no])
Darren Tucker6d725682014-01-17 19:17:34 +11003682 ])
3683fi
3684
Damien Milleredb82922000-06-20 13:25:52 +10003685if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \
Damien Millera8e06ce2003-11-21 23:48:55 +11003686 test "x$ac_cv_header_sys_bitypes_h" = "xyes")
Damien Millerb29ea912000-01-15 14:12:03 +11003687then
3688 AC_MSG_CHECKING([for intXX_t and u_intXX_t types in sys/bitypes.h])
Tim Rice648f8762011-01-26 12:38:57 -08003689 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller61e50f12000-05-08 20:49:37 +10003690#include <sys/bitypes.h>
Tim Rice648f8762011-01-26 12:38:57 -08003691 ]], [[
Damien Miller70494d12000-04-03 15:57:06 +10003692 int8_t a; int16_t b; int32_t c;
3693 u_int8_t e; u_int16_t f; u_int32_t g;
3694 a = b = c = e = f = g = 1;
Tim Rice648f8762011-01-26 12:38:57 -08003695 ]])],
Damien Millerb29ea912000-01-15 14:12:03 +11003696 [
Tim Rice648f8762011-01-26 12:38:57 -08003697 AC_DEFINE([HAVE_U_INTXX_T])
3698 AC_DEFINE([HAVE_INTXX_T])
3699 AC_MSG_RESULT([yes])
3700 ], [AC_MSG_RESULT([no])
3701 ])
Damien Millerb29ea912000-01-15 14:12:03 +11003702fi
3703
Damien Miller58be7382001-09-15 21:31:54 +10003704
3705AC_CACHE_CHECK([for u_char], ac_cv_have_u_char, [
Tim Rice648f8762011-01-26 12:38:57 -08003706 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3707 [[ u_char foo; foo = 125; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003708 [ ac_cv_have_u_char="yes" ], [ ac_cv_have_u_char="no"
Tim Rice648f8762011-01-26 12:38:57 -08003709 ])
Damien Miller58be7382001-09-15 21:31:54 +10003710])
3711if test "x$ac_cv_have_u_char" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003712 AC_DEFINE([HAVE_U_CHAR], [1], [define if you have u_char data type])
Damien Miller58be7382001-09-15 21:31:54 +10003713fi
3714
Darren Tucker007e3b32013-11-03 18:43:55 +11003715AC_CHECK_TYPES([intmax_t, uintmax_t], , , [
3716#include <sys/types.h>
3717#include <stdint.h>
3718])
3719
Tim Rice13aae5e2001-10-21 17:53:58 -07003720TYPE_SOCKLEN_T
Damien Miller74d0d4a1999-12-29 02:24:35 +11003721
Tim Rice648f8762011-01-26 12:38:57 -08003722AC_CHECK_TYPES([sig_atomic_t], , , [#include <signal.h>])
3723AC_CHECK_TYPES([fsblkcnt_t, fsfilcnt_t], , , [
Darren Tucker598eaa62008-06-09 03:32:29 +10003724#include <sys/types.h>
3725#ifdef HAVE_SYS_BITYPES_H
3726#include <sys/bitypes.h>
3727#endif
3728#ifdef HAVE_SYS_STATFS_H
3729#include <sys/statfs.h>
3730#endif
3731#ifdef HAVE_SYS_STATVFS_H
3732#include <sys/statvfs.h>
3733#endif
3734])
Tim Rice4cec93f2002-02-26 08:40:48 -08003735
Darren Tucker11057562018-02-25 11:22:57 +11003736AC_CHECK_MEMBERS([struct statfs.f_flags], [], [], [[
3737#include <sys/types.h>
3738#ifdef HAVE_SYS_BITYPES_H
3739#include <sys/bitypes.h>
3740#endif
3741#ifdef HAVE_SYS_STATFS_H
3742#include <sys/statfs.h>
3743#endif
3744#ifdef HAVE_SYS_STATVFS_H
3745#include <sys/statvfs.h>
3746#endif
3747#ifdef HAVE_SYS_VFS_H
3748#include <sys/vfs.h>
3749#endif
3750]])
3751
3752
Tim Rice648f8762011-01-26 12:38:57 -08003753AC_CHECK_TYPES([in_addr_t, in_port_t], , ,
Damien Miller848b9932005-02-24 12:12:34 +11003754[#include <sys/types.h>
3755#include <netinet/in.h>])
Darren Tuckerd9f88912005-02-20 21:01:48 +11003756
Damien Miller61e50f12000-05-08 20:49:37 +10003757AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003758 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3759 [[ size_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003760 [ ac_cv_have_size_t="yes" ], [ ac_cv_have_size_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003761 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003762])
3763if test "x$ac_cv_have_size_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003764 AC_DEFINE([HAVE_SIZE_T], [1], [define if you have size_t data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003765fi
Damien Miller95058511999-12-29 10:36:45 +11003766
Damien Miller615f9392000-05-17 22:53:33 +10003767AC_CACHE_CHECK([for ssize_t], ac_cv_have_ssize_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003768 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3769 [[ ssize_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003770 [ ac_cv_have_ssize_t="yes" ], [ ac_cv_have_ssize_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003771 ])
Damien Miller615f9392000-05-17 22:53:33 +10003772])
3773if test "x$ac_cv_have_ssize_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003774 AC_DEFINE([HAVE_SSIZE_T], [1], [define if you have ssize_t data type])
Damien Miller615f9392000-05-17 22:53:33 +10003775fi
3776
Ben Lindstrom0d5af602001-01-09 00:50:29 +00003777AC_CACHE_CHECK([for clock_t], ac_cv_have_clock_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003778 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <time.h> ]],
3779 [[ clock_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003780 [ ac_cv_have_clock_t="yes" ], [ ac_cv_have_clock_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003781 ])
Ben Lindstrom0d5af602001-01-09 00:50:29 +00003782])
3783if test "x$ac_cv_have_clock_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003784 AC_DEFINE([HAVE_CLOCK_T], [1], [define if you have clock_t data type])
Ben Lindstrom0d5af602001-01-09 00:50:29 +00003785fi
3786
Damien Millerb54b40e2000-06-23 08:23:34 +10003787AC_CACHE_CHECK([for sa_family_t], ac_cv_have_sa_family_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003788 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Millerb54b40e2000-06-23 08:23:34 +10003789#include <sys/types.h>
3790#include <sys/socket.h>
Tim Rice648f8762011-01-26 12:38:57 -08003791 ]], [[ sa_family_t foo; foo = 1235; ]])],
3792 [ ac_cv_have_sa_family_t="yes" ],
3793 [ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller78315eb2000-09-29 23:01:36 +11003794#include <sys/types.h>
3795#include <sys/socket.h>
3796#include <netinet/in.h>
Tim Rice648f8762011-01-26 12:38:57 -08003797 ]], [[ sa_family_t foo; foo = 1235; ]])],
Damien Miller78315eb2000-09-29 23:01:36 +11003798 [ ac_cv_have_sa_family_t="yes" ],
Damien Millerb54b40e2000-06-23 08:23:34 +10003799 [ ac_cv_have_sa_family_t="no" ]
3800 )
Tim Rice648f8762011-01-26 12:38:57 -08003801 ])
Damien Millerb54b40e2000-06-23 08:23:34 +10003802])
3803if test "x$ac_cv_have_sa_family_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003804 AC_DEFINE([HAVE_SA_FAMILY_T], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003805 [define if you have sa_family_t data type])
Damien Millerb54b40e2000-06-23 08:23:34 +10003806fi
3807
Damien Miller0f91b4e2000-06-18 15:43:25 +10003808AC_CACHE_CHECK([for pid_t], ac_cv_have_pid_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003809 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3810 [[ pid_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003811 [ ac_cv_have_pid_t="yes" ], [ ac_cv_have_pid_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003812 ])
Damien Miller0f91b4e2000-06-18 15:43:25 +10003813])
3814if test "x$ac_cv_have_pid_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003815 AC_DEFINE([HAVE_PID_T], [1], [define if you have pid_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10003816fi
3817
3818AC_CACHE_CHECK([for mode_t], ac_cv_have_mode_t, [
Tim Rice648f8762011-01-26 12:38:57 -08003819 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/types.h> ]],
3820 [[ mode_t foo; foo = 1235; ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07003821 [ ac_cv_have_mode_t="yes" ], [ ac_cv_have_mode_t="no"
Tim Rice648f8762011-01-26 12:38:57 -08003822 ])
Damien Miller0f91b4e2000-06-18 15:43:25 +10003823])
3824if test "x$ac_cv_have_mode_t" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003825 AC_DEFINE([HAVE_MODE_T], [1], [define if you have mode_t data type])
Damien Miller0f91b4e2000-06-18 15:43:25 +10003826fi
3827
Damien Miller61e50f12000-05-08 20:49:37 +10003828
3829AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_have_struct_sockaddr_storage, [
Tim Rice648f8762011-01-26 12:38:57 -08003830 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller81171112000-04-23 11:14:01 +10003831#include <sys/types.h>
3832#include <sys/socket.h>
Tim Rice648f8762011-01-26 12:38:57 -08003833 ]], [[ struct sockaddr_storage s; ]])],
3834 [ ac_cv_have_struct_sockaddr_storage="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07003835 [ ac_cv_have_struct_sockaddr_storage="no"
Tim Rice648f8762011-01-26 12:38:57 -08003836 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003837])
3838if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003839 AC_DEFINE([HAVE_STRUCT_SOCKADDR_STORAGE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003840 [define if you have struct sockaddr_storage data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003841fi
Damien Miller34132e52000-01-14 15:45:46 +11003842
Damien Miller61e50f12000-05-08 20:49:37 +10003843AC_CACHE_CHECK([for struct sockaddr_in6], ac_cv_have_struct_sockaddr_in6, [
Tim Rice648f8762011-01-26 12:38:57 -08003844 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller7b22d652000-06-18 14:07:04 +10003845#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10003846#include <netinet/in.h>
Tim Rice648f8762011-01-26 12:38:57 -08003847 ]], [[ struct sockaddr_in6 s; s.sin6_family = 0; ]])],
3848 [ ac_cv_have_struct_sockaddr_in6="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07003849 [ ac_cv_have_struct_sockaddr_in6="no"
Tim Rice648f8762011-01-26 12:38:57 -08003850 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003851])
3852if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003853 AC_DEFINE([HAVE_STRUCT_SOCKADDR_IN6], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003854 [define if you have struct sockaddr_in6 data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003855fi
Damien Miller34132e52000-01-14 15:45:46 +11003856
Damien Miller61e50f12000-05-08 20:49:37 +10003857AC_CACHE_CHECK([for struct in6_addr], ac_cv_have_struct_in6_addr, [
Tim Rice648f8762011-01-26 12:38:57 -08003858 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller7b22d652000-06-18 14:07:04 +10003859#include <sys/types.h>
Damien Miller61e50f12000-05-08 20:49:37 +10003860#include <netinet/in.h>
Tim Rice648f8762011-01-26 12:38:57 -08003861 ]], [[ struct in6_addr s; s.s6_addr[0] = 0; ]])],
3862 [ ac_cv_have_struct_in6_addr="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07003863 [ ac_cv_have_struct_in6_addr="no"
Tim Rice648f8762011-01-26 12:38:57 -08003864 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003865])
3866if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003867 AC_DEFINE([HAVE_STRUCT_IN6_ADDR], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003868 [define if you have struct in6_addr data type])
Tim Rice0f4d2c02008-11-18 21:26:41 -08003869
3870dnl Now check for sin6_scope_id
Tim Rice648f8762011-01-26 12:38:57 -08003871 AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id], , ,
Tim Rice0f4d2c02008-11-18 21:26:41 -08003872 [
3873#ifdef HAVE_SYS_TYPES_H
3874#include <sys/types.h>
3875#endif
3876#include <netinet/in.h>
3877 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003878fi
Damien Miller34132e52000-01-14 15:45:46 +11003879
Damien Miller61e50f12000-05-08 20:49:37 +10003880AC_CACHE_CHECK([for struct addrinfo], ac_cv_have_struct_addrinfo, [
Tim Rice648f8762011-01-26 12:38:57 -08003881 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller81171112000-04-23 11:14:01 +10003882#include <sys/types.h>
3883#include <sys/socket.h>
3884#include <netdb.h>
Tim Rice648f8762011-01-26 12:38:57 -08003885 ]], [[ struct addrinfo s; s.ai_flags = AI_PASSIVE; ]])],
3886 [ ac_cv_have_struct_addrinfo="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07003887 [ ac_cv_have_struct_addrinfo="no"
Tim Rice648f8762011-01-26 12:38:57 -08003888 ])
Damien Miller61e50f12000-05-08 20:49:37 +10003889])
3890if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003891 AC_DEFINE([HAVE_STRUCT_ADDRINFO], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07003892 [define if you have struct addrinfo data type])
Damien Miller61e50f12000-05-08 20:49:37 +10003893fi
3894
Ben Lindstrom42202bc2001-01-15 02:34:37 +00003895AC_CACHE_CHECK([for struct timeval], ac_cv_have_struct_timeval, [
Tim Rice648f8762011-01-26 12:38:57 -08003896 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sys/time.h> ]],
3897 [[ struct timeval tv; tv.tv_sec = 1;]])],
3898 [ ac_cv_have_struct_timeval="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07003899 [ ac_cv_have_struct_timeval="no"
Tim Rice648f8762011-01-26 12:38:57 -08003900 ])
Ben Lindstrom42202bc2001-01-15 02:34:37 +00003901])
3902if test "x$ac_cv_have_struct_timeval" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003903 AC_DEFINE([HAVE_STRUCT_TIMEVAL], [1], [define if you have struct timeval])
Ben Lindstrom42202bc2001-01-15 02:34:37 +00003904 have_struct_timeval=1
3905fi
3906
Tim Rice648f8762011-01-26 12:38:57 -08003907AC_CHECK_TYPES([struct timespec])
Tim Rice4e4dc562003-03-18 10:21:40 -08003908
Damien Miller10479cc2018-04-10 10:19:02 +10003909# We need int64_t or else certain parts of the compile will fail.
Tim Rice8bb561b2005-03-17 16:23:19 -08003910if test "x$ac_cv_have_int64_t" = "xno" && \
3911 test "x$ac_cv_sizeof_long_int" != "x8" && \
3912 test "x$ac_cv_sizeof_long_long_int" = "x0" ; then
Ben Lindstrom5bd6eb72003-03-21 00:34:34 +00003913 echo "OpenSSH requires int64_t support. Contact your vendor or install"
3914 echo "an alternative compiler (I.E., GCC) before continuing."
3915 echo ""
3916 exit 1;
Tim Ricebee3f222001-03-11 17:32:12 -08003917else
3918dnl test snprintf (broken on SCO w/gcc)
Darren Tuckera0c2b392004-09-11 23:26:37 +10003919 AC_RUN_IFELSE(
Darren Tucker623d92f2004-09-12 22:36:15 +10003920 [AC_LANG_SOURCE([[
Tim Ricebee3f222001-03-11 17:32:12 -08003921#include <stdio.h>
3922#include <string.h>
3923#ifdef HAVE_SNPRINTF
3924main()
3925{
3926 char buf[50];
3927 char expected_out[50];
3928 int mazsize = 50 ;
3929#if (SIZEOF_LONG_INT == 8)
3930 long int num = 0x7fffffffffffffff;
3931#else
Kevin Steves6482ec82001-07-15 02:09:28 +00003932 long long num = 0x7fffffffffffffffll;
Tim Ricebee3f222001-03-11 17:32:12 -08003933#endif
3934 strcpy(expected_out, "9223372036854775807");
3935 snprintf(buf, mazsize, "%lld", num);
3936 if(strcmp(buf, expected_out) != 0)
Damien Millera8e06ce2003-11-21 23:48:55 +11003937 exit(1);
Tim Ricebee3f222001-03-11 17:32:12 -08003938 exit(0);
3939}
3940#else
3941main() { exit(0); }
3942#endif
Tim Rice648f8762011-01-26 12:38:57 -08003943 ]])], [ true ], [ AC_DEFINE([BROKEN_SNPRINTF]) ],
Darren Tuckera0c2b392004-09-11 23:26:37 +10003944 AC_MSG_WARN([cross compiling: Assuming working snprintf()])
Tim Ricebee3f222001-03-11 17:32:12 -08003945 )
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00003946fi
3947
Damien Miller78315eb2000-09-29 23:01:36 +11003948dnl Checks for structure members
Tim Rice648f8762011-01-26 12:38:57 -08003949OSSH_CHECK_HEADER_FOR_FIELD([ut_host], [utmp.h], [HAVE_HOST_IN_UTMP])
3950OSSH_CHECK_HEADER_FOR_FIELD([ut_host], [utmpx.h], [HAVE_HOST_IN_UTMPX])
3951OSSH_CHECK_HEADER_FOR_FIELD([syslen], [utmpx.h], [HAVE_SYSLEN_IN_UTMPX])
3952OSSH_CHECK_HEADER_FOR_FIELD([ut_pid], [utmp.h], [HAVE_PID_IN_UTMP])
3953OSSH_CHECK_HEADER_FOR_FIELD([ut_type], [utmp.h], [HAVE_TYPE_IN_UTMP])
3954OSSH_CHECK_HEADER_FOR_FIELD([ut_type], [utmpx.h], [HAVE_TYPE_IN_UTMPX])
3955OSSH_CHECK_HEADER_FOR_FIELD([ut_tv], [utmp.h], [HAVE_TV_IN_UTMP])
3956OSSH_CHECK_HEADER_FOR_FIELD([ut_id], [utmp.h], [HAVE_ID_IN_UTMP])
3957OSSH_CHECK_HEADER_FOR_FIELD([ut_id], [utmpx.h], [HAVE_ID_IN_UTMPX])
3958OSSH_CHECK_HEADER_FOR_FIELD([ut_addr], [utmp.h], [HAVE_ADDR_IN_UTMP])
3959OSSH_CHECK_HEADER_FOR_FIELD([ut_addr], [utmpx.h], [HAVE_ADDR_IN_UTMPX])
3960OSSH_CHECK_HEADER_FOR_FIELD([ut_addr_v6], [utmp.h], [HAVE_ADDR_V6_IN_UTMP])
3961OSSH_CHECK_HEADER_FOR_FIELD([ut_addr_v6], [utmpx.h], [HAVE_ADDR_V6_IN_UTMPX])
3962OSSH_CHECK_HEADER_FOR_FIELD([ut_exit], [utmp.h], [HAVE_EXIT_IN_UTMP])
3963OSSH_CHECK_HEADER_FOR_FIELD([ut_time], [utmp.h], [HAVE_TIME_IN_UTMP])
3964OSSH_CHECK_HEADER_FOR_FIELD([ut_time], [utmpx.h], [HAVE_TIME_IN_UTMPX])
3965OSSH_CHECK_HEADER_FOR_FIELD([ut_tv], [utmpx.h], [HAVE_TV_IN_UTMPX])
Tim Rice13aae5e2001-10-21 17:53:58 -07003966
3967AC_CHECK_MEMBERS([struct stat.st_blksize])
Damien Millerbcd14852017-06-10 23:41:25 +10003968AC_CHECK_MEMBERS([struct stat.st_mtim])
3969AC_CHECK_MEMBERS([struct stat.st_mtime])
Damien Miller6332da22013-04-23 14:25:52 +10003970AC_CHECK_MEMBERS([struct passwd.pw_gecos, struct passwd.pw_class,
3971struct passwd.pw_change, struct passwd.pw_expire],
3972[], [], [[
3973#include <sys/types.h>
3974#include <pwd.h>
3975]])
3976
Tim Rice648f8762011-01-26 12:38:57 -08003977AC_CHECK_MEMBER([struct __res_state.retrans], [], [AC_DEFINE([__res_state], [state],
Darren Tucker58e298d2005-11-25 13:14:58 +11003978 [Define if we don't have struct __res_state in resolv.h])],
Damien Miller6332da22013-04-23 14:25:52 +10003979[[
Darren Tucker58e298d2005-11-25 13:14:58 +11003980#include <stdio.h>
3981#if HAVE_SYS_TYPES_H
3982# include <sys/types.h>
3983#endif
3984#include <netinet/in.h>
3985#include <arpa/nameser.h>
3986#include <resolv.h>
Damien Miller6332da22013-04-23 14:25:52 +10003987]])
andre2ff7b5d2000-06-03 14:57:40 +00003988
Damien Miller61e50f12000-05-08 20:49:37 +10003989AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
3990 ac_cv_have_ss_family_in_struct_ss, [
Tim Rice648f8762011-01-26 12:38:57 -08003991 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller81171112000-04-23 11:14:01 +10003992#include <sys/types.h>
3993#include <sys/socket.h>
Tim Rice648f8762011-01-26 12:38:57 -08003994 ]], [[ struct sockaddr_storage s; s.ss_family = 1; ]])],
3995 [ ac_cv_have_ss_family_in_struct_ss="yes" ],
3996 [ ac_cv_have_ss_family_in_struct_ss="no" ])
Damien Miller61e50f12000-05-08 20:49:37 +10003997])
3998if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08003999 AC_DEFINE([HAVE_SS_FAMILY_IN_SS], [1], [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10004000fi
4001
Damien Miller61e50f12000-05-08 20:49:37 +10004002AC_CACHE_CHECK([for __ss_family field in struct sockaddr_storage],
4003 ac_cv_have___ss_family_in_struct_ss, [
Tim Rice648f8762011-01-26 12:38:57 -08004004 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller81171112000-04-23 11:14:01 +10004005#include <sys/types.h>
4006#include <sys/socket.h>
Tim Rice648f8762011-01-26 12:38:57 -08004007 ]], [[ struct sockaddr_storage s; s.__ss_family = 1; ]])],
4008 [ ac_cv_have___ss_family_in_struct_ss="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004009 [ ac_cv_have___ss_family_in_struct_ss="no"
Tim Rice648f8762011-01-26 12:38:57 -08004010 ])
Damien Miller61e50f12000-05-08 20:49:37 +10004011])
4012if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004013 AC_DEFINE([HAVE___SS_FAMILY_IN_SS], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004014 [Fields in struct sockaddr_storage])
Damien Miller61e50f12000-05-08 20:49:37 +10004015fi
Damien Millerbf1c9b21999-12-09 10:16:54 +11004016
Tim Rice28bbb0c2002-05-27 17:37:32 -07004017dnl make sure we're using the real structure members and not defines
Kevin Steves939c9db2002-03-22 17:23:25 +00004018AC_CACHE_CHECK([for msg_accrights field in struct msghdr],
4019 ac_cv_have_accrights_in_msghdr, [
Tim Rice648f8762011-01-26 12:38:57 -08004020 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Tim Riceae49fe62002-04-12 10:26:21 -07004021#include <sys/types.h>
Kevin Steves939c9db2002-03-22 17:23:25 +00004022#include <sys/socket.h>
4023#include <sys/uio.h>
Tim Rice648f8762011-01-26 12:38:57 -08004024 ]], [[
Tim Rice28bbb0c2002-05-27 17:37:32 -07004025#ifdef msg_accrights
Darren Tuckera0c2b392004-09-11 23:26:37 +10004026#error "msg_accrights is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07004027exit(1);
4028#endif
4029struct msghdr m;
4030m.msg_accrights = 0;
4031exit(0);
Tim Rice648f8762011-01-26 12:38:57 -08004032 ]])],
Kevin Steves939c9db2002-03-22 17:23:25 +00004033 [ ac_cv_have_accrights_in_msghdr="yes" ],
4034 [ ac_cv_have_accrights_in_msghdr="no" ]
4035 )
4036])
4037if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004038 AC_DEFINE([HAVE_ACCRIGHTS_IN_MSGHDR], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004039 [Define if your system uses access rights style
4040 file descriptor passing])
Kevin Steves939c9db2002-03-22 17:23:25 +00004041fi
4042
Tim Rice648f8762011-01-26 12:38:57 -08004043AC_MSG_CHECKING([if struct statvfs.f_fsid is integral type])
4044AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckere1a3ddf2012-05-04 11:05:45 +10004045#include <sys/param.h>
Darren Tucker32780622009-06-16 16:11:02 +10004046#include <sys/stat.h>
4047#ifdef HAVE_SYS_TIME_H
4048# include <sys/time.h>
4049#endif
4050#ifdef HAVE_SYS_MOUNT_H
4051#include <sys/mount.h>
4052#endif
4053#ifdef HAVE_SYS_STATVFS_H
4054#include <sys/statvfs.h>
4055#endif
Tim Rice648f8762011-01-26 12:38:57 -08004056 ]], [[ struct statvfs s; s.f_fsid = 0; ]])],
4057 [ AC_MSG_RESULT([yes]) ],
4058 [ AC_MSG_RESULT([no])
Darren Tucker32780622009-06-16 16:11:02 +10004059
Tim Rice648f8762011-01-26 12:38:57 -08004060 AC_MSG_CHECKING([if fsid_t has member val])
4061 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tucker32780622009-06-16 16:11:02 +10004062#include <sys/types.h>
Tim Rice648f8762011-01-26 12:38:57 -08004063#include <sys/statvfs.h>
4064 ]], [[ fsid_t t; t.val[0] = 0; ]])],
4065 [ AC_MSG_RESULT([yes])
4066 AC_DEFINE([FSID_HAS_VAL], [1], [fsid_t has member val]) ],
4067 [ AC_MSG_RESULT([no]) ])
Darren Tucker32780622009-06-16 16:11:02 +10004068
Tim Rice648f8762011-01-26 12:38:57 -08004069 AC_MSG_CHECKING([if f_fsid has member __val])
4070 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Darren Tucker32780622009-06-16 16:11:02 +10004071#include <sys/types.h>
Tim Rice648f8762011-01-26 12:38:57 -08004072#include <sys/statvfs.h>
4073 ]], [[ fsid_t t; t.__val[0] = 0; ]])],
4074 [ AC_MSG_RESULT([yes])
4075 AC_DEFINE([FSID_HAS___VAL], [1], [fsid_t has member __val]) ],
4076 [ AC_MSG_RESULT([no]) ])
Darren Tucker32780622009-06-16 16:11:02 +10004077])
Darren Tucker77001382008-06-09 06:17:53 +10004078
Kevin Stevesa44e0352002-04-07 16:18:03 +00004079AC_CACHE_CHECK([for msg_control field in struct msghdr],
4080 ac_cv_have_control_in_msghdr, [
Tim Rice648f8762011-01-26 12:38:57 -08004081 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Tim Riceae49fe62002-04-12 10:26:21 -07004082#include <sys/types.h>
Kevin Stevesa44e0352002-04-07 16:18:03 +00004083#include <sys/socket.h>
4084#include <sys/uio.h>
Tim Rice648f8762011-01-26 12:38:57 -08004085 ]], [[
Tim Rice28bbb0c2002-05-27 17:37:32 -07004086#ifdef msg_control
Darren Tuckera0c2b392004-09-11 23:26:37 +10004087#error "msg_control is a macro"
Tim Rice28bbb0c2002-05-27 17:37:32 -07004088exit(1);
4089#endif
4090struct msghdr m;
4091m.msg_control = 0;
4092exit(0);
Tim Rice648f8762011-01-26 12:38:57 -08004093 ]])],
Kevin Stevesa44e0352002-04-07 16:18:03 +00004094 [ ac_cv_have_control_in_msghdr="yes" ],
4095 [ ac_cv_have_control_in_msghdr="no" ]
4096 )
4097])
4098if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004099 AC_DEFINE([HAVE_CONTROL_IN_MSGHDR], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004100 [Define if your system uses ancillary data style
4101 file descriptor passing])
Kevin Stevesa44e0352002-04-07 16:18:03 +00004102fi
4103
Damien Miller61e50f12000-05-08 20:49:37 +10004104AC_CACHE_CHECK([if libc defines __progname], ac_cv_libc_defines___progname, [
Tim Rice648f8762011-01-26 12:38:57 -08004105 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
4106 [[ extern char *__progname; printf("%s", __progname); ]])],
4107 [ ac_cv_libc_defines___progname="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004108 [ ac_cv_libc_defines___progname="no"
Tim Rice648f8762011-01-26 12:38:57 -08004109 ])
Damien Miller61e50f12000-05-08 20:49:37 +10004110])
4111if test "x$ac_cv_libc_defines___progname" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004112 AC_DEFINE([HAVE___PROGNAME], [1], [Define if libc defines __progname])
Damien Miller61e50f12000-05-08 20:49:37 +10004113fi
4114
Kevin Steves4846f4a2002-03-22 18:19:53 +00004115AC_CACHE_CHECK([whether $CC implements __FUNCTION__], ac_cv_cc_implements___FUNCTION__, [
Tim Rice648f8762011-01-26 12:38:57 -08004116 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <stdio.h> ]],
4117 [[ printf("%s", __FUNCTION__); ]])],
4118 [ ac_cv_cc_implements___FUNCTION__="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004119 [ ac_cv_cc_implements___FUNCTION__="no"
Tim Rice648f8762011-01-26 12:38:57 -08004120 ])
Kevin Steves4846f4a2002-03-22 18:19:53 +00004121])
4122if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004123 AC_DEFINE([HAVE___FUNCTION__], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004124 [Define if compiler implements __FUNCTION__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00004125fi
4126
4127AC_CACHE_CHECK([whether $CC implements __func__], ac_cv_cc_implements___func__, [
Tim Rice648f8762011-01-26 12:38:57 -08004128 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <stdio.h> ]],
4129 [[ printf("%s", __func__); ]])],
4130 [ ac_cv_cc_implements___func__="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004131 [ ac_cv_cc_implements___func__="no"
Tim Rice648f8762011-01-26 12:38:57 -08004132 ])
Kevin Steves4846f4a2002-03-22 18:19:53 +00004133])
4134if test "x$ac_cv_cc_implements___func__" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004135 AC_DEFINE([HAVE___func__], [1], [Define if compiler implements __func__])
Kevin Steves4846f4a2002-03-22 18:19:53 +00004136fi
4137
Damien Miller57f39152005-11-24 19:58:19 +11004138AC_CACHE_CHECK([whether va_copy exists], ac_cv_have_va_copy, [
Tim Rice648f8762011-01-26 12:38:57 -08004139 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
4140#include <stdarg.h>
4141va_list x,y;
4142 ]], [[ va_copy(x,y); ]])],
4143 [ ac_cv_have_va_copy="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004144 [ ac_cv_have_va_copy="no"
Tim Rice648f8762011-01-26 12:38:57 -08004145 ])
Damien Miller57f39152005-11-24 19:58:19 +11004146])
4147if test "x$ac_cv_have_va_copy" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004148 AC_DEFINE([HAVE_VA_COPY], [1], [Define if va_copy exists])
Damien Miller57f39152005-11-24 19:58:19 +11004149fi
4150
4151AC_CACHE_CHECK([whether __va_copy exists], ac_cv_have___va_copy, [
Tim Rice648f8762011-01-26 12:38:57 -08004152 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
4153#include <stdarg.h>
4154va_list x,y;
4155 ]], [[ __va_copy(x,y); ]])],
Tim Ricee1d93702016-05-31 11:13:22 -07004156 [ ac_cv_have___va_copy="yes" ], [ ac_cv_have___va_copy="no"
Tim Rice648f8762011-01-26 12:38:57 -08004157 ])
Damien Miller57f39152005-11-24 19:58:19 +11004158])
4159if test "x$ac_cv_have___va_copy" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004160 AC_DEFINE([HAVE___VA_COPY], [1], [Define if __va_copy exists])
Damien Miller57f39152005-11-24 19:58:19 +11004161fi
4162
Damien Miller4f8e6692001-07-14 13:22:53 +10004163AC_CACHE_CHECK([whether getopt has optreset support],
4164 ac_cv_have_getopt_optreset, [
Tim Rice648f8762011-01-26 12:38:57 -08004165 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include <getopt.h> ]],
4166 [[ extern int optreset; optreset = 0; ]])],
4167 [ ac_cv_have_getopt_optreset="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004168 [ ac_cv_have_getopt_optreset="no"
Tim Rice648f8762011-01-26 12:38:57 -08004169 ])
Damien Miller4f8e6692001-07-14 13:22:53 +10004170])
4171if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004172 AC_DEFINE([HAVE_GETOPT_OPTRESET], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004173 [Define if your getopt(3) defines and uses optreset])
Damien Miller4f8e6692001-07-14 13:22:53 +10004174fi
Damien Millera22ba012000-03-02 23:09:20 +11004175
Damien Millerecbb26d2000-07-15 14:59:14 +10004176AC_CACHE_CHECK([if libc defines sys_errlist], ac_cv_libc_defines_sys_errlist, [
Tim Rice648f8762011-01-26 12:38:57 -08004177 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
4178[[ extern const char *const sys_errlist[]; printf("%s", sys_errlist[0]);]])],
4179 [ ac_cv_libc_defines_sys_errlist="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004180 [ ac_cv_libc_defines_sys_errlist="no"
Tim Rice648f8762011-01-26 12:38:57 -08004181 ])
Damien Millerecbb26d2000-07-15 14:59:14 +10004182])
4183if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004184 AC_DEFINE([HAVE_SYS_ERRLIST], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004185 [Define if your system defines sys_errlist[]])
Damien Millerecbb26d2000-07-15 14:59:14 +10004186fi
4187
4188
Damien Miller11fa2cc2000-08-16 10:35:58 +10004189AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
Tim Rice648f8762011-01-26 12:38:57 -08004190 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
4191[[ extern int sys_nerr; printf("%i", sys_nerr);]])],
4192 [ ac_cv_libc_defines_sys_nerr="yes" ],
Tim Ricee1d93702016-05-31 11:13:22 -07004193 [ ac_cv_libc_defines_sys_nerr="no"
Tim Rice648f8762011-01-26 12:38:57 -08004194 ])
Damien Miller11fa2cc2000-08-16 10:35:58 +10004195])
4196if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004197 AC_DEFINE([HAVE_SYS_NERR], [1], [Define if your system defines sys_nerr])
Damien Miller11fa2cc2000-08-16 10:35:58 +10004198fi
4199
Darren Tucker5f88d342003-10-15 16:57:57 +10004200# Check libraries needed by DNS fingerprint support
Tim Rice648f8762011-01-26 12:38:57 -08004201AC_SEARCH_LIBS([getrrsetbyname], [resolv],
4202 [AC_DEFINE([HAVE_GETRRSETBYNAME], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004203 [Define if getrrsetbyname() exists])],
Damien Miller7abe09b2003-05-15 10:53:49 +10004204 [
Darren Tucker5f88d342003-10-15 16:57:57 +10004205 # Needed by our getrrsetbyname()
Tim Rice648f8762011-01-26 12:38:57 -08004206 AC_SEARCH_LIBS([res_query], [resolv])
4207 AC_SEARCH_LIBS([dn_expand], [resolv])
4208 AC_MSG_CHECKING([if res_query will link])
4209 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckere02b49a2009-09-11 14:56:08 +10004210#include <sys/types.h>
4211#include <netinet/in.h>
4212#include <arpa/nameser.h>
4213#include <netdb.h>
4214#include <resolv.h>
Tim Rice648f8762011-01-26 12:38:57 -08004215 ]], [[
Darren Tuckere02b49a2009-09-11 14:56:08 +10004216 res_query (0, 0, 0, 0, 0);
Tim Rice648f8762011-01-26 12:38:57 -08004217 ]])],
4218 AC_MSG_RESULT([yes]),
4219 [AC_MSG_RESULT([no])
Darren Tucker8e968a52004-05-13 11:56:16 +10004220 saved_LIBS="$LIBS"
4221 LIBS="$LIBS -lresolv"
Tim Rice648f8762011-01-26 12:38:57 -08004222 AC_MSG_CHECKING([for res_query in -lresolv])
4223 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckere02b49a2009-09-11 14:56:08 +10004224#include <sys/types.h>
4225#include <netinet/in.h>
4226#include <arpa/nameser.h>
4227#include <netdb.h>
Darren Tucker8e968a52004-05-13 11:56:16 +10004228#include <resolv.h>
Tim Rice648f8762011-01-26 12:38:57 -08004229 ]], [[
Darren Tucker8e968a52004-05-13 11:56:16 +10004230 res_query (0, 0, 0, 0, 0);
Tim Rice648f8762011-01-26 12:38:57 -08004231 ]])],
4232 [AC_MSG_RESULT([yes])],
Darren Tucker8e968a52004-05-13 11:56:16 +10004233 [LIBS="$saved_LIBS"
Tim Rice648f8762011-01-26 12:38:57 -08004234 AC_MSG_RESULT([no])])
Darren Tucker8e968a52004-05-13 11:56:16 +10004235 ])
Tim Rice648f8762011-01-26 12:38:57 -08004236 AC_CHECK_FUNCS([_getshort _getlong])
Darren Tuckerd886e1c2005-06-01 18:57:45 +10004237 AC_CHECK_DECLS([_getshort, _getlong], , ,
Tim Ricefcc7ff12005-06-02 20:28:29 -07004238 [#include <sys/types.h>
4239 #include <arpa/nameser.h>])
Tim Rice648f8762011-01-26 12:38:57 -08004240 AC_CHECK_MEMBER([HEADER.ad],
4241 [AC_DEFINE([HAVE_HEADER_AD], [1],
4242 [Define if HEADER.ad exists in arpa/nameser.h])], ,
Darren Tucker5f88d342003-10-15 16:57:57 +10004243 [#include <arpa/nameser.h>])
4244 ])
Damien Miller7abe09b2003-05-15 10:53:49 +10004245
Tim Rice648f8762011-01-26 12:38:57 -08004246AC_MSG_CHECKING([if struct __res_state _res is an extern])
4247AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Darren Tuckercc40d5e2007-04-29 13:58:06 +10004248#include <stdio.h>
4249#if HAVE_SYS_TYPES_H
4250# include <sys/types.h>
4251#endif
4252#include <netinet/in.h>
4253#include <arpa/nameser.h>
4254#include <resolv.h>
4255extern struct __res_state _res;
Darren Tucker7ad8b282015-09-11 13:11:02 +10004256 ]], [[
4257struct __res_state *volatile p = &_res; /* force resolution of _res */
4258return 0;
4259 ]],)],
Tim Rice648f8762011-01-26 12:38:57 -08004260 [AC_MSG_RESULT([yes])
4261 AC_DEFINE([HAVE__RES_EXTERN], [1],
Darren Tuckercc40d5e2007-04-29 13:58:06 +10004262 [Define if you have struct __res_state _res as an extern])
4263 ],
Tim Rice648f8762011-01-26 12:38:57 -08004264 [ AC_MSG_RESULT([no]) ]
Darren Tuckercc40d5e2007-04-29 13:58:06 +10004265)
4266
Damien Miller73b42d22006-04-22 21:26:08 +10004267# Check whether user wants SELinux support
4268SELINUX_MSG="no"
4269LIBSELINUX=""
Tim Rice648f8762011-01-26 12:38:57 -08004270AC_ARG_WITH([selinux],
Damien Miller5b1c8b32008-03-27 12:33:07 +11004271 [ --with-selinux Enable SELinux support],
Damien Miller73b42d22006-04-22 21:26:08 +10004272 [ if test "x$withval" != "xno" ; then
Darren Tucker20e9f972007-03-25 18:26:01 +10004273 save_LIBS="$LIBS"
Tim Rice648f8762011-01-26 12:38:57 -08004274 AC_DEFINE([WITH_SELINUX], [1],
4275 [Define if you want SELinux support.])
Damien Miller73b42d22006-04-22 21:26:08 +10004276 SELINUX_MSG="yes"
4277 AC_CHECK_HEADER([selinux/selinux.h], ,
Tim Rice648f8762011-01-26 12:38:57 -08004278 AC_MSG_ERROR([SELinux support requires selinux.h header]))
4279 AC_CHECK_LIB([selinux], [setexeccon],
Damien Miller1d2bfc42010-02-10 10:19:29 +11004280 [ LIBSELINUX="-lselinux"
4281 LIBS="$LIBS -lselinux"
4282 ],
Tim Rice648f8762011-01-26 12:38:57 -08004283 AC_MSG_ERROR([SELinux support requires libselinux library]))
Damien Miller71adf122011-01-25 12:16:15 +11004284 SSHLIBS="$SSHLIBS $LIBSELINUX"
Darren Tucker20e9f972007-03-25 18:26:01 +10004285 SSHDLIBS="$SSHDLIBS $LIBSELINUX"
Tim Rice648f8762011-01-26 12:38:57 -08004286 AC_CHECK_FUNCS([getseuserbyname get_default_context_with_level])
Darren Tuckeradc947d2006-10-07 09:07:20 +10004287 LIBS="$save_LIBS"
Damien Miller73b42d22006-04-22 21:26:08 +10004288 fi ]
4289)
Tim Rice648f8762011-01-26 12:38:57 -08004290AC_SUBST([SSHLIBS])
4291AC_SUBST([SSHDLIBS])
Damien Miller73b42d22006-04-22 21:26:08 +10004292
Damien Millerfd4c9ee2002-04-13 11:04:40 +10004293# Check whether user wants Kerberos 5 support
Damien Millera8e06ce2003-11-21 23:48:55 +11004294KRB5_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08004295AC_ARG_WITH([kerberos5],
Damien Millera8e06ce2003-11-21 23:48:55 +11004296 [ --with-kerberos5=PATH Enable Kerberos 5 support],
Darren Tucker1d3ca582004-01-22 12:05:34 +11004297 [ if test "x$withval" != "xno" ; then
4298 if test "x$withval" = "xyes" ; then
4299 KRB5ROOT="/usr/local"
4300 else
4301 KRB5ROOT=${withval}
4302 fi
4303
Tim Rice648f8762011-01-26 12:38:57 -08004304 AC_DEFINE([KRB5], [1], [Define if you want Kerberos 5 support])
Darren Tucker1d3ca582004-01-22 12:05:34 +11004305 KRB5_MSG="yes"
4306
Darren Tucker4089fc12016-12-08 12:57:24 +11004307 AC_PATH_TOOL([KRB5CONF], [krb5-config],
Darren Tuckerdad48e72009-09-01 18:26:00 +10004308 [$KRB5ROOT/bin/krb5-config],
4309 [$KRB5ROOT/bin:$PATH])
4310 if test -x $KRB5CONF ; then
Darren Tucker964de182013-02-22 10:39:59 +11004311 K5CFLAGS="`$KRB5CONF --cflags`"
4312 K5LIBS="`$KRB5CONF --libs`"
4313 CPPFLAGS="$CPPFLAGS $K5CFLAGS"
Darren Tucker1d3ca582004-01-22 12:05:34 +11004314
Tim Rice648f8762011-01-26 12:38:57 -08004315 AC_MSG_CHECKING([for gssapi support])
Darren Tucker1d3ca582004-01-22 12:05:34 +11004316 if $KRB5CONF | grep gssapi >/dev/null ; then
Tim Rice648f8762011-01-26 12:38:57 -08004317 AC_MSG_RESULT([yes])
4318 AC_DEFINE([GSSAPI], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004319 [Define this if you want GSSAPI
4320 support in the version 2 protocol])
Darren Tucker964de182013-02-22 10:39:59 +11004321 GSSCFLAGS="`$KRB5CONF --cflags gssapi`"
4322 GSSLIBS="`$KRB5CONF --libs gssapi`"
4323 CPPFLAGS="$CPPFLAGS $GSSCFLAGS"
Damien Millera8e06ce2003-11-21 23:48:55 +11004324 else
Tim Rice648f8762011-01-26 12:38:57 -08004325 AC_MSG_RESULT([no])
Damien Millera8e06ce2003-11-21 23:48:55 +11004326 fi
Tim Rice648f8762011-01-26 12:38:57 -08004327 AC_MSG_CHECKING([whether we are using Heimdal])
4328 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <krb5.h>
4329 ]], [[ char *tmp = heimdal_version; ]])],
4330 [ AC_MSG_RESULT([yes])
4331 AC_DEFINE([HEIMDAL], [1],
4332 [Define this if you are using the Heimdal
4333 version of Kerberos V5]) ],
4334 [AC_MSG_RESULT([no])
4335 ])
Darren Tucker1d3ca582004-01-22 12:05:34 +11004336 else
Damien Millerfd4c9ee2002-04-13 11:04:40 +10004337 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include"
Damien Millera8e06ce2003-11-21 23:48:55 +11004338 LDFLAGS="$LDFLAGS -L${KRB5ROOT}/lib"
Tim Rice648f8762011-01-26 12:38:57 -08004339 AC_MSG_CHECKING([whether we are using Heimdal])
4340 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <krb5.h>
4341 ]], [[ char *tmp = heimdal_version; ]])],
4342 [ AC_MSG_RESULT([yes])
4343 AC_DEFINE([HEIMDAL])
Damien Miller41bccf72011-01-02 21:53:07 +11004344 K5LIBS="-lkrb5"
Damien Miller5561e0b2004-04-20 20:28:55 +10004345 K5LIBS="$K5LIBS -lcom_err -lasn1"
Tim Rice648f8762011-01-26 12:38:57 -08004346 AC_CHECK_LIB([roken], [net_write],
Damien Miller5561e0b2004-04-20 20:28:55 +10004347 [K5LIBS="$K5LIBS -lroken"])
Tim Rice648f8762011-01-26 12:38:57 -08004348 AC_CHECK_LIB([des], [des_cbc_encrypt],
Damien Miller41bccf72011-01-02 21:53:07 +11004349 [K5LIBS="$K5LIBS -ldes"])
Tim Rice648f8762011-01-26 12:38:57 -08004350 ], [ AC_MSG_RESULT([no])
Damien Millera8e06ce2003-11-21 23:48:55 +11004351 K5LIBS="-lkrb5 -lk5crypto -lcom_err"
Tim Rice648f8762011-01-26 12:38:57 -08004352 ])
4353 AC_SEARCH_LIBS([dn_expand], [resolv])
Damien Millerfd4c9ee2002-04-13 11:04:40 +10004354
Tim Rice648f8762011-01-26 12:38:57 -08004355 AC_CHECK_LIB([gssapi_krb5], [gss_init_sec_context],
4356 [ AC_DEFINE([GSSAPI])
Darren Tucker964de182013-02-22 10:39:59 +11004357 GSSLIBS="-lgssapi_krb5" ],
Tim Rice648f8762011-01-26 12:38:57 -08004358 [ AC_CHECK_LIB([gssapi], [gss_init_sec_context],
4359 [ AC_DEFINE([GSSAPI])
Darren Tucker964de182013-02-22 10:39:59 +11004360 GSSLIBS="-lgssapi" ],
Darren Tuckera2b5a4c2013-02-22 10:43:15 +11004361 [ AC_CHECK_LIB([gss], [gss_init_sec_context],
4362 [ AC_DEFINE([GSSAPI])
4363 GSSLIBS="-lgss" ],
4364 AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]))
4365 ])
Darren Tucker964de182013-02-22 10:39:59 +11004366 ])
Tim Riceeae17cc2005-03-17 16:52:20 -08004367
Tim Rice648f8762011-01-26 12:38:57 -08004368 AC_CHECK_HEADER([gssapi.h], ,
Darren Tucker49aaf4a2003-08-26 11:58:16 +10004369 [ unset ac_cv_header_gssapi_h
Damien Millera8e06ce2003-11-21 23:48:55 +11004370 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
Tim Rice648f8762011-01-26 12:38:57 -08004371 AC_CHECK_HEADERS([gssapi.h], ,
Darren Tucker49aaf4a2003-08-26 11:58:16 +10004372 AC_MSG_WARN([Cannot find any suitable gss-api header - build may fail])
Damien Millera8e06ce2003-11-21 23:48:55 +11004373 )
Darren Tucker49aaf4a2003-08-26 11:58:16 +10004374 ]
4375 )
4376
4377 oldCPP="$CPPFLAGS"
4378 CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi"
Tim Rice648f8762011-01-26 12:38:57 -08004379 AC_CHECK_HEADER([gssapi_krb5.h], ,
Darren Tucker49aaf4a2003-08-26 11:58:16 +10004380 [ CPPFLAGS="$oldCPP" ])
4381
Damien Millera8e06ce2003-11-21 23:48:55 +11004382 fi
Darren Tucker1d3ca582004-01-22 12:05:34 +11004383 if test ! -z "$need_dash_r" ; then
4384 LDFLAGS="$LDFLAGS -R${KRB5ROOT}/lib"
4385 fi
4386 if test ! -z "$blibpath" ; then
4387 blibpath="$blibpath:${KRB5ROOT}/lib"
4388 fi
Tim Ricefd9e9e32005-09-12 17:36:10 -07004389
Tim Rice648f8762011-01-26 12:38:57 -08004390 AC_CHECK_HEADERS([gssapi.h gssapi/gssapi.h])
4391 AC_CHECK_HEADERS([gssapi_krb5.h gssapi/gssapi_krb5.h])
4392 AC_CHECK_HEADERS([gssapi_generic.h gssapi/gssapi_generic.h])
Tim Ricefd9e9e32005-09-12 17:36:10 -07004393
Tim Rice648f8762011-01-26 12:38:57 -08004394 AC_SEARCH_LIBS([k_hasafs], [kafs], [AC_DEFINE([USE_AFS], [1],
4395 [Define this if you want to use libkafs' AFS support])])
Darren Tucker03978c62013-02-25 11:24:44 +11004396
4397 AC_CHECK_DECLS([GSS_C_NT_HOSTBASED_SERVICE], [], [], [[
4398#ifdef HAVE_GSSAPI_H
4399# include <gssapi.h>
4400#elif defined(HAVE_GSSAPI_GSSAPI_H)
4401# include <gssapi/gssapi.h>
4402#endif
4403
4404#ifdef HAVE_GSSAPI_GENERIC_H
4405# include <gssapi_generic.h>
4406#elif defined(HAVE_GSSAPI_GSSAPI_GENERIC_H)
4407# include <gssapi/gssapi_generic.h>
4408#endif
4409 ]])
Darren Tuckerf3ab2c52013-08-04 21:48:41 +10004410 saved_LIBS="$LIBS"
4411 LIBS="$LIBS $K5LIBS"
4412 AC_CHECK_FUNCS([krb5_cc_new_unique krb5_get_error_message krb5_free_error_message])
4413 LIBS="$saved_LIBS"
4414
Darren Tucker0d27ed12004-02-24 10:37:33 +11004415 fi
Darren Tucker0d27ed12004-02-24 10:37:33 +11004416 ]
Damien Millerfd4c9ee2002-04-13 11:04:40 +10004417)
Darren Tucker964de182013-02-22 10:39:59 +11004418AC_SUBST([GSSLIBS])
4419AC_SUBST([K5LIBS])
Damien Millerc79bc0d2001-03-28 13:03:42 +10004420
Damien Millera22ba012000-03-02 23:09:20 +11004421# Looking for programs, paths and files
Damien Millera22ba012000-03-02 23:09:20 +11004422
Damien Millerf58c6722002-05-13 13:15:42 +10004423PRIVSEP_PATH=/var/empty
Tim Rice648f8762011-01-26 12:38:57 -08004424AC_ARG_WITH([privsep-path],
Tim Ricecbb90662002-07-08 19:17:10 -07004425 [ --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty)],
Damien Millerf58c6722002-05-13 13:15:42 +10004426 [
Tim Rice35cc69d2005-03-17 16:44:25 -08004427 if test -n "$withval" && test "x$withval" != "xno" && \
4428 test "x${withval}" != "xyes"; then
Damien Millerf58c6722002-05-13 13:15:42 +10004429 PRIVSEP_PATH=$withval
4430 fi
4431 ]
4432)
Tim Rice648f8762011-01-26 12:38:57 -08004433AC_SUBST([PRIVSEP_PATH])
Damien Millerf58c6722002-05-13 13:15:42 +10004434
Tim Rice648f8762011-01-26 12:38:57 -08004435AC_ARG_WITH([xauth],
Damien Millera22ba012000-03-02 23:09:20 +11004436 [ --with-xauth=PATH Specify path to xauth program ],
4437 [
Tim Rice35cc69d2005-03-17 16:44:25 -08004438 if test -n "$withval" && test "x$withval" != "xno" && \
4439 test "x${withval}" != "xyes"; then
Damien Miller7b22d652000-06-18 14:07:04 +10004440 xauth_path=$withval
Damien Millera22ba012000-03-02 23:09:20 +11004441 fi
4442 ],
4443 [
Tim Ricee22be3b2002-07-17 19:20:07 -07004444 TestPath="$PATH"
4445 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X/bin"
4446 TestPath="${TestPath}${PATH_SEPARATOR}/usr/bin/X11"
4447 TestPath="${TestPath}${PATH_SEPARATOR}/usr/X11R6/bin"
4448 TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin"
Tim Rice648f8762011-01-26 12:38:57 -08004449 AC_PATH_PROG([xauth_path], [xauth], , [$TestPath])
Damien Milleredb82922000-06-20 13:25:52 +10004450 if (test ! -z "$xauth_path" && test -x "/usr/openwin/bin/xauth") ; then
Damien Millera22ba012000-03-02 23:09:20 +11004451 xauth_path="/usr/openwin/bin/xauth"
4452 fi
4453 ]
4454)
4455
Damien Miller7d901272003-01-13 16:55:22 +11004456STRIP_OPT=-s
Tim Rice648f8762011-01-26 12:38:57 -08004457AC_ARG_ENABLE([strip],
Damien Miller7d901272003-01-13 16:55:22 +11004458 [ --disable-strip Disable calling strip(1) on install],
4459 [
4460 if test "x$enableval" = "xno" ; then
4461 STRIP_OPT=
4462 fi
4463 ]
4464)
Tim Rice648f8762011-01-26 12:38:57 -08004465AC_SUBST([STRIP_OPT])
Damien Miller7d901272003-01-13 16:55:22 +11004466
Damien Millera19cf472000-11-29 13:28:50 +11004467if test -z "$xauth_path" ; then
4468 XAUTH_PATH="undefined"
Tim Rice648f8762011-01-26 12:38:57 -08004469 AC_SUBST([XAUTH_PATH])
Damien Millera19cf472000-11-29 13:28:50 +11004470else
Tim Rice648f8762011-01-26 12:38:57 -08004471 AC_DEFINE_UNQUOTED([XAUTH_PATH], ["$xauth_path"],
Tim Rice7df8d392005-09-19 09:33:39 -07004472 [Define if xauth is found in your path])
Damien Millera19cf472000-11-29 13:28:50 +11004473 XAUTH_PATH=$xauth_path
Tim Rice648f8762011-01-26 12:38:57 -08004474 AC_SUBST([XAUTH_PATH])
Damien Millera22ba012000-03-02 23:09:20 +11004475fi
Damien Millera22ba012000-03-02 23:09:20 +11004476
Tim Rice90f42b02011-06-02 18:17:49 -07004477dnl # --with-maildir=/path/to/mail gets top priority.
4478dnl # if maildir is set in the platform case statement above we use that.
4479dnl # Otherwise we run a program to get the dir from system headers.
4480dnl # We first look for _PATH_MAILDIR then MAILDIR then _PATH_MAIL
4481dnl # If we find _PATH_MAILDIR we do nothing because that is what
4482dnl # session.c expects anyway. Otherwise we set to the value found
4483dnl # stripping any trailing slash. If for some strage reason our program
4484dnl # does not find what it needs, we default to /var/spool/mail.
4485# Check for mail directory
4486AC_ARG_WITH([maildir],
4487 [ --with-maildir=/path/to/mail Specify your system mail directory],
4488 [
4489 if test "X$withval" != X && test "x$withval" != xno && \
4490 test "x${withval}" != xyes; then
4491 AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["$withval"],
4492 [Set this to your mail directory if you do not have _PATH_MAILDIR])
4493 fi
4494 ],[
4495 if test "X$maildir" != "X"; then
4496 AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["$maildir"])
4497 else
4498 AC_MSG_CHECKING([Discovering system mail directory])
4499 AC_RUN_IFELSE(
4500 [AC_LANG_PROGRAM([[
4501#include <stdio.h>
4502#include <string.h>
4503#ifdef HAVE_PATHS_H
4504#include <paths.h>
4505#endif
4506#ifdef HAVE_MAILLOCK_H
4507#include <maillock.h>
4508#endif
4509#define DATA "conftest.maildir"
4510 ]], [[
4511 FILE *fd;
4512 int rc;
4513
4514 fd = fopen(DATA,"w");
4515 if(fd == NULL)
4516 exit(1);
4517
4518#if defined (_PATH_MAILDIR)
4519 if ((rc = fprintf(fd ,"_PATH_MAILDIR:%s\n", _PATH_MAILDIR)) <0)
4520 exit(1);
4521#elif defined (MAILDIR)
4522 if ((rc = fprintf(fd ,"MAILDIR:%s\n", MAILDIR)) <0)
4523 exit(1);
4524#elif defined (_PATH_MAIL)
4525 if ((rc = fprintf(fd ,"_PATH_MAIL:%s\n", _PATH_MAIL)) <0)
4526 exit(1);
4527#else
4528 exit (2);
4529#endif
4530
4531 exit(0);
4532 ]])],
4533 [
Tim Ricee1d93702016-05-31 11:13:22 -07004534 maildir_what=`awk -F: '{print $1}' conftest.maildir`
Tim Rice90f42b02011-06-02 18:17:49 -07004535 maildir=`awk -F: '{print $2}' conftest.maildir \
4536 | sed 's|/$||'`
4537 AC_MSG_RESULT([Using: $maildir from $maildir_what])
4538 if test "x$maildir_what" != "x_PATH_MAILDIR"; then
4539 AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["$maildir"])
4540 fi
4541 ],
4542 [
4543 if test "X$ac_status" = "X2";then
4544# our test program didn't find it. Default to /var/spool/mail
4545 AC_MSG_RESULT([Using: default value of /var/spool/mail])
4546 AC_DEFINE_UNQUOTED([MAIL_DIRECTORY], ["/var/spool/mail"])
4547 else
4548 AC_MSG_RESULT([*** not found ***])
4549 fi
4550 ],
4551 [
4552 AC_MSG_WARN([cross compiling: use --with-maildir=/path/to/mail])
4553 ]
4554 )
4555 fi
4556 ]
4557) # maildir
Damien Millera22ba012000-03-02 23:09:20 +11004558
Darren Tucker623d92f2004-09-12 22:36:15 +10004559if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes"; then
Darren Tuckera0c2b392004-09-11 23:26:37 +10004560 AC_MSG_WARN([cross compiling: Disabling /dev/ptmx test])
4561 disable_ptmx_check=yes
4562fi
Damien Millera22ba012000-03-02 23:09:20 +11004563if test -z "$no_dev_ptmx" ; then
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00004564 if test "x$disable_ptmx_check" != "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004565 AC_CHECK_FILE(["/dev/ptmx"],
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00004566 [
Tim Rice648f8762011-01-26 12:38:57 -08004567 AC_DEFINE_UNQUOTED([HAVE_DEV_PTMX], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004568 [Define if you have /dev/ptmx])
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00004569 have_dev_ptmx=1
4570 ]
4571 )
4572 fi
Damien Millera22ba012000-03-02 23:09:20 +11004573fi
Darren Tuckera0c2b392004-09-11 23:26:37 +10004574
Darren Tucker623d92f2004-09-12 22:36:15 +10004575if test ! -z "$cross_compiling" && test "x$cross_compiling" != "xyes"; then
Tim Rice648f8762011-01-26 12:38:57 -08004576 AC_CHECK_FILE(["/dev/ptc"],
Darren Tuckera0c2b392004-09-11 23:26:37 +10004577 [
Tim Rice648f8762011-01-26 12:38:57 -08004578 AC_DEFINE_UNQUOTED([HAVE_DEV_PTS_AND_PTC], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004579 [Define if you have /dev/ptc])
Darren Tuckera0c2b392004-09-11 23:26:37 +10004580 have_dev_ptc=1
4581 ]
4582 )
4583else
4584 AC_MSG_WARN([cross compiling: Disabling /dev/ptc test])
4585fi
Damien Miller204ad072000-03-02 23:56:12 +11004586
Damien Millera22ba012000-03-02 23:09:20 +11004587# Options from here on. Some of these are preset by platform above
Tim Rice648f8762011-01-26 12:38:57 -08004588AC_ARG_WITH([mantype],
Damien Miller897741e2001-04-16 10:41:46 +10004589 [ --with-mantype=man|cat|doc Set man page type],
Damien Miller670a4b82000-01-22 13:53:11 +11004590 [
Damien Miller897741e2001-04-16 10:41:46 +10004591 case "$withval" in
4592 man|cat|doc)
4593 MANTYPE=$withval
4594 ;;
4595 *)
Tim Rice648f8762011-01-26 12:38:57 -08004596 AC_MSG_ERROR([invalid man type: $withval])
Damien Miller897741e2001-04-16 10:41:46 +10004597 ;;
4598 esac
Damien Miller670a4b82000-01-22 13:53:11 +11004599 ]
4600)
Ben Lindstrombc709922001-04-18 18:04:21 +00004601if test -z "$MANTYPE"; then
Tim Ricee22be3b2002-07-17 19:20:07 -07004602 TestPath="/usr/bin${PATH_SEPARATOR}/usr/ucb"
Tim Rice648f8762011-01-26 12:38:57 -08004603 AC_PATH_PROGS([NROFF], [nroff awf], [/bin/false], [$TestPath])
Ben Lindstrombc709922001-04-18 18:04:21 +00004604 if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
4605 MANTYPE=doc
4606 elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
4607 MANTYPE=man
4608 else
4609 MANTYPE=cat
4610 fi
4611fi
Tim Rice648f8762011-01-26 12:38:57 -08004612AC_SUBST([MANTYPE])
Ben Lindstrombc709922001-04-18 18:04:21 +00004613if test "$MANTYPE" = "doc"; then
4614 mansubdir=man;
4615else
4616 mansubdir=$MANTYPE;
4617fi
Tim Rice648f8762011-01-26 12:38:57 -08004618AC_SUBST([mansubdir])
Damien Miller8bdeee21999-12-30 15:50:54 +11004619
Damien Millera22ba012000-03-02 23:09:20 +11004620# Check whether to enable MD5 passwords
Damien Millera8e06ce2003-11-21 23:48:55 +11004621MD5_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08004622AC_ARG_WITH([md5-passwords],
Damien Millerdd1c7ba1999-11-19 15:53:20 +11004623 [ --with-md5-passwords Enable use of MD5 passwords],
Damien Miller8bdeee21999-12-30 15:50:54 +11004624 [
Damien Millerb85dcad2000-03-11 11:37:00 +11004625 if test "x$withval" != "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004626 AC_DEFINE([HAVE_MD5_PASSWORDS], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004627 [Define if you want to allow MD5 passwords])
Damien Millera8e06ce2003-11-21 23:48:55 +11004628 MD5_MSG="yes"
Damien Miller8bdeee21999-12-30 15:50:54 +11004629 fi
4630 ]
Damien Millerdd1c7ba1999-11-19 15:53:20 +11004631)
4632
Damien Millera22ba012000-03-02 23:09:20 +11004633# Whether to disable shadow password support
Tim Rice648f8762011-01-26 12:38:57 -08004634AC_ARG_WITH([shadow],
Damien Miller76112de1999-12-21 11:18:08 +11004635 [ --without-shadow Disable shadow password support],
4636 [
Tim Riceeae17cc2005-03-17 16:52:20 -08004637 if test "x$withval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004638 AC_DEFINE([DISABLE_SHADOW])
Damien Miller1f335fb2000-06-26 11:31:33 +10004639 disable_shadow=yes
Damien Miller76112de1999-12-21 11:18:08 +11004640 fi
4641 ]
4642)
4643
Damien Miller1f335fb2000-06-26 11:31:33 +10004644if test -z "$disable_shadow" ; then
4645 AC_MSG_CHECKING([if the systems has expire shadow information])
Tim Rice648f8762011-01-26 12:38:57 -08004646 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller1f335fb2000-06-26 11:31:33 +10004647#include <sys/types.h>
4648#include <shadow.h>
Tim Rice648f8762011-01-26 12:38:57 -08004649struct spwd sp;
4650 ]], [[ sp.sp_expire = sp.sp_lstchg = sp.sp_inact = 0; ]])],
4651 [ sp_expire_available=yes ], [
4652 ])
Damien Miller1f335fb2000-06-26 11:31:33 +10004653
4654 if test "x$sp_expire_available" = "xyes" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004655 AC_MSG_RESULT([yes])
4656 AC_DEFINE([HAS_SHADOW_EXPIRE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004657 [Define if you want to use shadow password expire field])
Damien Miller1f335fb2000-06-26 11:31:33 +10004658 else
Tim Rice648f8762011-01-26 12:38:57 -08004659 AC_MSG_RESULT([no])
Damien Miller1f335fb2000-06-26 11:31:33 +10004660 fi
4661fi
4662
Damien Millera22ba012000-03-02 23:09:20 +11004663# Use ip address instead of hostname in $DISPLAY
Damien Miller9a947342000-08-30 10:03:33 +11004664if test ! -z "$IPADDR_IN_DISPLAY" ; then
4665 DISPLAY_HACK_MSG="yes"
Tim Rice648f8762011-01-26 12:38:57 -08004666 AC_DEFINE([IPADDR_IN_DISPLAY], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004667 [Define if you need to use IP address
4668 instead of hostname in $DISPLAY])
Damien Miller9a947342000-08-30 10:03:33 +11004669else
Damien Millera8e06ce2003-11-21 23:48:55 +11004670 DISPLAY_HACK_MSG="no"
Tim Rice648f8762011-01-26 12:38:57 -08004671 AC_ARG_WITH([ipaddr-display],
Tim Rice6397eed2015-06-03 21:41:11 -07004672 [ --with-ipaddr-display Use ip address instead of hostname in $DISPLAY],
Damien Miller9a947342000-08-30 10:03:33 +11004673 [
Tim Riceeae17cc2005-03-17 16:52:20 -08004674 if test "x$withval" != "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004675 AC_DEFINE([IPADDR_IN_DISPLAY])
Damien Millera8e06ce2003-11-21 23:48:55 +11004676 DISPLAY_HACK_MSG="yes"
Damien Miller9a947342000-08-30 10:03:33 +11004677 fi
4678 ]
4679 )
4680fi
Damien Miller76112de1999-12-21 11:18:08 +11004681
Darren Tuckere1a790d2003-09-16 11:52:19 +10004682# check for /etc/default/login and use it if present.
Tim Rice648f8762011-01-26 12:38:57 -08004683AC_ARG_ENABLE([etc-default-login],
Darren Tucker1b6f2292005-02-11 16:11:49 +11004684 [ --disable-etc-default-login Disable using PATH from /etc/default/login [no]],
Darren Tucker2f9573d2005-02-10 22:28:54 +11004685 [ if test "x$enableval" = "xno"; then
4686 AC_MSG_NOTICE([/etc/default/login handling disabled])
4687 etc_default_login=no
4688 else
4689 etc_default_login=yes
4690 fi ],
Darren Tucker314d89e2005-10-17 23:29:23 +10004691 [ if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes";
4692 then
4693 AC_MSG_WARN([cross compiling: not checking /etc/default/login])
4694 etc_default_login=no
4695 else
4696 etc_default_login=yes
4697 fi ]
Darren Tucker2f9573d2005-02-10 22:28:54 +11004698)
Darren Tuckere1a790d2003-09-16 11:52:19 +10004699
Darren Tucker2f9573d2005-02-10 22:28:54 +11004700if test "x$etc_default_login" != "xno"; then
Tim Rice648f8762011-01-26 12:38:57 -08004701 AC_CHECK_FILE(["/etc/default/login"],
Darren Tucker2f9573d2005-02-10 22:28:54 +11004702 [ external_path_file=/etc/default/login ])
Darren Tucker314d89e2005-10-17 23:29:23 +10004703 if test "x$external_path_file" = "x/etc/default/login"; then
Tim Rice648f8762011-01-26 12:38:57 -08004704 AC_DEFINE([HAVE_ETC_DEFAULT_LOGIN], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004705 [Define if your system has /etc/default/login])
Darren Tuckera0c2b392004-09-11 23:26:37 +10004706 fi
Darren Tucker2f9573d2005-02-10 22:28:54 +11004707fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10004708
Tim Rice43a1c132002-04-17 21:19:14 -07004709dnl BSD systems use /etc/login.conf so --with-default-path= has no effect
Tim Rice8bb561b2005-03-17 16:23:19 -08004710if test $ac_cv_func_login_getcapbool = "yes" && \
4711 test $ac_cv_header_login_cap_h = "yes" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10004712 external_path_file=/etc/login.conf
Tim Rice43a1c132002-04-17 21:19:14 -07004713fi
Darren Tuckere1a790d2003-09-16 11:52:19 +10004714
Damien Millera22ba012000-03-02 23:09:20 +11004715# Whether to mess with the default path
Damien Millera8e06ce2003-11-21 23:48:55 +11004716SERVER_PATH_MSG="(default)"
Tim Rice648f8762011-01-26 12:38:57 -08004717AC_ARG_WITH([default-path],
Tim Rice6397eed2015-06-03 21:41:11 -07004718 [ --with-default-path= Specify default $PATH environment for server],
Damien Miller5a3e6831999-12-27 09:48:56 +11004719 [
Darren Tuckere1a790d2003-09-16 11:52:19 +10004720 if test "x$external_path_file" = "x/etc/login.conf" ; then
Tim Rice43a1c132002-04-17 21:19:14 -07004721 AC_MSG_WARN([
4722--with-default-path=PATH has no effect on this system.
4723Edit /etc/login.conf instead.])
Tim Riceeae17cc2005-03-17 16:52:20 -08004724 elif test "x$withval" != "xno" ; then
Tim Riceb925b4b2003-09-15 22:40:49 -07004725 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10004726 AC_MSG_WARN([
4727--with-default-path=PATH will only be used if PATH is not defined in
4728$external_path_file .])
4729 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08004730 user_path="$withval"
Damien Millera8e06ce2003-11-21 23:48:55 +11004731 SERVER_PATH_MSG="$withval"
Damien Miller5a3e6831999-12-27 09:48:56 +11004732 fi
Tim Rice59ea0a02001-03-10 13:50:45 -08004733 ],
Darren Tuckere1a790d2003-09-16 11:52:19 +10004734 [ if test "x$external_path_file" = "x/etc/login.conf" ; then
4735 AC_MSG_WARN([Make sure the path to scp is in /etc/login.conf])
Tim Rice43a1c132002-04-17 21:19:14 -07004736 else
Tim Riceb925b4b2003-09-15 22:40:49 -07004737 if test ! -z "$external_path_file" ; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10004738 AC_MSG_WARN([
4739If PATH is defined in $external_path_file, ensure the path to scp is included,
4740otherwise scp will not work.])
4741 fi
Darren Tucker314d89e2005-10-17 23:29:23 +10004742 AC_RUN_IFELSE(
Tim Rice648f8762011-01-26 12:38:57 -08004743 [AC_LANG_PROGRAM([[
Tim Rice59ea0a02001-03-10 13:50:45 -08004744/* find out what STDPATH is */
4745#include <stdio.h>
Tim Rice59ea0a02001-03-10 13:50:45 -08004746#ifdef HAVE_PATHS_H
4747# include <paths.h>
4748#endif
4749#ifndef _PATH_STDPATH
Tim Rice1c9e6882002-11-22 13:29:01 -08004750# ifdef _PATH_USERPATH /* Irix */
4751# define _PATH_STDPATH _PATH_USERPATH
4752# else
4753# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
4754# endif
Tim Rice59ea0a02001-03-10 13:50:45 -08004755#endif
4756#include <sys/types.h>
4757#include <sys/stat.h>
4758#include <fcntl.h>
4759#define DATA "conftest.stdpath"
Tim Rice648f8762011-01-26 12:38:57 -08004760 ]], [[
Tim Rice59ea0a02001-03-10 13:50:45 -08004761 FILE *fd;
4762 int rc;
Tim Riceeae17cc2005-03-17 16:52:20 -08004763
Tim Rice59ea0a02001-03-10 13:50:45 -08004764 fd = fopen(DATA,"w");
4765 if(fd == NULL)
4766 exit(1);
Tim Riceeae17cc2005-03-17 16:52:20 -08004767
Tim Rice59ea0a02001-03-10 13:50:45 -08004768 if ((rc = fprintf(fd,"%s", _PATH_STDPATH)) < 0)
4769 exit(1);
4770
4771 exit(0);
Darren Tucker314d89e2005-10-17 23:29:23 +10004772 ]])],
4773 [ user_path=`cat conftest.stdpath` ],
Tim Rice59ea0a02001-03-10 13:50:45 -08004774 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ],
4775 [ user_path="/usr/bin:/bin:/usr/sbin:/sbin" ]
4776 )
4777# make sure $bindir is in USER_PATH so scp will work
Damien Miller77eab7b2012-07-06 11:49:28 +10004778 t_bindir="${bindir}"
4779 while echo "${t_bindir}" | egrep '\$\{|NONE/' >/dev/null 2>&1; do
4780 t_bindir=`eval echo ${t_bindir}`
4781 case $t_bindir in
4782 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$prefix~"` ;;
4783 esac
4784 case $t_bindir in
4785 NONE/*) t_bindir=`echo $t_bindir | sed "s~NONE~$ac_default_prefix~"` ;;
4786 esac
4787 done
Tim Rice59ea0a02001-03-10 13:50:45 -08004788 echo $user_path | grep ":$t_bindir" > /dev/null 2>&1
4789 if test $? -ne 0 ; then
4790 echo $user_path | grep "^$t_bindir" > /dev/null 2>&1
4791 if test $? -ne 0 ; then
4792 user_path=$user_path:$t_bindir
Tim Rice648f8762011-01-26 12:38:57 -08004793 AC_MSG_RESULT([Adding $t_bindir to USER_PATH so scp will work])
Tim Rice59ea0a02001-03-10 13:50:45 -08004794 fi
4795 fi
Tim Rice43a1c132002-04-17 21:19:14 -07004796 fi ]
Damien Miller5a3e6831999-12-27 09:48:56 +11004797)
Darren Tuckere1a790d2003-09-16 11:52:19 +10004798if test "x$external_path_file" != "x/etc/login.conf" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004799 AC_DEFINE_UNQUOTED([USER_PATH], ["$user_path"], [Specify default $PATH])
4800 AC_SUBST([user_path])
Tim Rice43a1c132002-04-17 21:19:14 -07004801fi
Damien Miller5a3e6831999-12-27 09:48:56 +11004802
Damien Millera18bbd32002-05-13 10:48:57 +10004803# Set superuser path separately to user path
Tim Rice648f8762011-01-26 12:38:57 -08004804AC_ARG_WITH([superuser-path],
Damien Millera18bbd32002-05-13 10:48:57 +10004805 [ --with-superuser-path= Specify different path for super-user],
4806 [
Tim Rice35cc69d2005-03-17 16:44:25 -08004807 if test -n "$withval" && test "x$withval" != "xno" && \
4808 test "x${withval}" != "xyes"; then
Tim Rice648f8762011-01-26 12:38:57 -08004809 AC_DEFINE_UNQUOTED([SUPERUSER_PATH], ["$withval"],
Tim Rice7df8d392005-09-19 09:33:39 -07004810 [Define if you want a different $PATH
4811 for the superuser])
Damien Millera18bbd32002-05-13 10:48:57 +10004812 superuser_path=$withval
4813 fi
4814 ]
4815)
4816
4817
Damien Miller61e50f12000-05-08 20:49:37 +10004818AC_MSG_CHECKING([if we need to convert IPv4 in IPv6-mapped addresses])
Damien Millera8e06ce2003-11-21 23:48:55 +11004819IPV4_IN6_HACK_MSG="no"
Damien Miller7bcb0892000-03-11 20:45:40 +11004820AC_ARG_WITH(4in6,
4821 [ --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses],
4822 [
4823 if test "x$withval" != "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004824 AC_MSG_RESULT([yes])
4825 AC_DEFINE([IPV4_IN_IPV6], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004826 [Detect IPv4 in IPv6 mapped addresses
4827 and treat as IPv4])
Damien Millera8e06ce2003-11-21 23:48:55 +11004828 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11004829 else
Tim Rice648f8762011-01-26 12:38:57 -08004830 AC_MSG_RESULT([no])
Damien Miller7bcb0892000-03-11 20:45:40 +11004831 fi
Tim Rice648f8762011-01-26 12:38:57 -08004832 ], [
Damien Miller7bcb0892000-03-11 20:45:40 +11004833 if test "x$inet6_default_4in6" = "xyes"; then
4834 AC_MSG_RESULT([yes (default)])
Tim Rice648f8762011-01-26 12:38:57 -08004835 AC_DEFINE([IPV4_IN_IPV6])
Damien Millera8e06ce2003-11-21 23:48:55 +11004836 IPV4_IN6_HACK_MSG="yes"
Damien Miller7bcb0892000-03-11 20:45:40 +11004837 else
4838 AC_MSG_RESULT([no (default)])
4839 fi
4840 ]
4841)
4842
Damien Miller60396b02001-02-18 17:01:00 +11004843# Whether to enable BSD auth support
Damien Miller6c21c512002-01-22 21:57:53 +11004844BSD_AUTH_MSG=no
Tim Rice648f8762011-01-26 12:38:57 -08004845AC_ARG_WITH([bsd-auth],
Damien Miller60396b02001-02-18 17:01:00 +11004846 [ --with-bsd-auth Enable BSD auth support],
4847 [
Tim Riceeae17cc2005-03-17 16:52:20 -08004848 if test "x$withval" != "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004849 AC_DEFINE([BSD_AUTH], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004850 [Define if you have BSD auth support])
Damien Miller6c21c512002-01-22 21:57:53 +11004851 BSD_AUTH_MSG=yes
Damien Miller60396b02001-02-18 17:01:00 +11004852 fi
4853 ]
4854)
4855
Damien Millera22ba012000-03-02 23:09:20 +11004856# Where to place sshd.pid
Damien Millerb13c73e2000-01-17 22:02:17 +11004857piddir=/var/run
Damien Miller78315eb2000-09-29 23:01:36 +11004858# make sure the directory exists
Tim Riceeae17cc2005-03-17 16:52:20 -08004859if test ! -d $piddir ; then
Damien Miller78315eb2000-09-29 23:01:36 +11004860 piddir=`eval echo ${sysconfdir}`
4861 case $piddir in
Damien Millera8e06ce2003-11-21 23:48:55 +11004862 NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
Damien Miller78315eb2000-09-29 23:01:36 +11004863 esac
4864fi
4865
Tim Rice648f8762011-01-26 12:38:57 -08004866AC_ARG_WITH([pid-dir],
Darren Tucker075e2582018-02-13 17:36:43 +11004867 [ --with-pid-dir=PATH Specify location of sshd.pid file],
Tim Rice88f2ab52002-03-17 12:17:34 -08004868 [
Tim Rice35cc69d2005-03-17 16:44:25 -08004869 if test -n "$withval" && test "x$withval" != "xno" && \
4870 test "x${withval}" != "xyes"; then
Tim Rice88f2ab52002-03-17 12:17:34 -08004871 piddir=$withval
Tim Riceeae17cc2005-03-17 16:52:20 -08004872 if test ! -d $piddir ; then
Tim Rice88f2ab52002-03-17 12:17:34 -08004873 AC_MSG_WARN([** no $piddir directory on this system **])
4874 fi
4875 fi
4876 ]
4877)
4878
Tim Ricee1d93702016-05-31 11:13:22 -07004879AC_DEFINE_UNQUOTED([_PATH_SSH_PIDDIR], ["$piddir"],
Tim Rice648f8762011-01-26 12:38:57 -08004880 [Specify location of ssh.pid])
4881AC_SUBST([piddir])
Damien Miller5eed6a22000-01-16 12:05:18 +11004882
andre2ff7b5d2000-06-03 14:57:40 +00004883dnl allow user to disable some login recording features
Tim Rice648f8762011-01-26 12:38:57 -08004884AC_ARG_ENABLE([lastlog],
andre43ca7e22000-06-19 08:23:46 +00004885 [ --disable-lastlog disable use of lastlog even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004886 [
4887 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004888 AC_DEFINE([DISABLE_LASTLOG])
Darren Tuckera3020db2003-06-28 12:54:33 +10004889 fi
4890 ]
andre2ff7b5d2000-06-03 14:57:40 +00004891)
Tim Rice648f8762011-01-26 12:38:57 -08004892AC_ARG_ENABLE([utmp],
andre43ca7e22000-06-19 08:23:46 +00004893 [ --disable-utmp disable use of utmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004894 [
4895 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004896 AC_DEFINE([DISABLE_UTMP])
Darren Tuckera3020db2003-06-28 12:54:33 +10004897 fi
4898 ]
andre2ff7b5d2000-06-03 14:57:40 +00004899)
Tim Rice648f8762011-01-26 12:38:57 -08004900AC_ARG_ENABLE([utmpx],
andre43ca7e22000-06-19 08:23:46 +00004901 [ --disable-utmpx disable use of utmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004902 [
4903 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004904 AC_DEFINE([DISABLE_UTMPX], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004905 [Define if you don't want to use utmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10004906 fi
4907 ]
andre2ff7b5d2000-06-03 14:57:40 +00004908)
Tim Rice648f8762011-01-26 12:38:57 -08004909AC_ARG_ENABLE([wtmp],
andre43ca7e22000-06-19 08:23:46 +00004910 [ --disable-wtmp disable use of wtmp even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004911 [
4912 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004913 AC_DEFINE([DISABLE_WTMP])
Darren Tuckera3020db2003-06-28 12:54:33 +10004914 fi
4915 ]
andre2ff7b5d2000-06-03 14:57:40 +00004916)
Tim Rice648f8762011-01-26 12:38:57 -08004917AC_ARG_ENABLE([wtmpx],
andre43ca7e22000-06-19 08:23:46 +00004918 [ --disable-wtmpx disable use of wtmpx even if detected [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004919 [
4920 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004921 AC_DEFINE([DISABLE_WTMPX], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004922 [Define if you don't want to use wtmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10004923 fi
4924 ]
andre2ff7b5d2000-06-03 14:57:40 +00004925)
Tim Rice648f8762011-01-26 12:38:57 -08004926AC_ARG_ENABLE([libutil],
andre43ca7e22000-06-19 08:23:46 +00004927 [ --disable-libutil disable use of libutil (login() etc.) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004928 [
4929 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004930 AC_DEFINE([DISABLE_LOGIN])
Darren Tuckera3020db2003-06-28 12:54:33 +10004931 fi
4932 ]
andre2ff7b5d2000-06-03 14:57:40 +00004933)
Tim Rice648f8762011-01-26 12:38:57 -08004934AC_ARG_ENABLE([pututline],
andre43ca7e22000-06-19 08:23:46 +00004935 [ --disable-pututline disable use of pututline() etc. ([uw]tmp) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004936 [
4937 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004938 AC_DEFINE([DISABLE_PUTUTLINE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004939 [Define if you don't want to use pututline()
4940 etc. to write [uw]tmp])
Darren Tuckera3020db2003-06-28 12:54:33 +10004941 fi
4942 ]
andre2ff7b5d2000-06-03 14:57:40 +00004943)
Tim Rice648f8762011-01-26 12:38:57 -08004944AC_ARG_ENABLE([pututxline],
andre43ca7e22000-06-19 08:23:46 +00004945 [ --disable-pututxline disable use of pututxline() etc. ([uw]tmpx) [no]],
Darren Tuckera3020db2003-06-28 12:54:33 +10004946 [
4947 if test "x$enableval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004948 AC_DEFINE([DISABLE_PUTUTXLINE], [1],
Tim Rice7df8d392005-09-19 09:33:39 -07004949 [Define if you don't want to use pututxline()
4950 etc. to write [uw]tmpx])
Darren Tuckera3020db2003-06-28 12:54:33 +10004951 fi
4952 ]
andre2ff7b5d2000-06-03 14:57:40 +00004953)
Tim Rice648f8762011-01-26 12:38:57 -08004954AC_ARG_WITH([lastlog],
andre43ca7e22000-06-19 08:23:46 +00004955 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
Damien Miller709528a2001-01-31 09:57:55 +11004956 [
Tim Riceeae17cc2005-03-17 16:52:20 -08004957 if test "x$withval" = "xno" ; then
Tim Rice648f8762011-01-26 12:38:57 -08004958 AC_DEFINE([DISABLE_LASTLOG])
Tim Rice35cc69d2005-03-17 16:44:25 -08004959 elif test -n "$withval" && test "x${withval}" != "xyes"; then
Damien Miller709528a2001-01-31 09:57:55 +11004960 conf_lastlog_location=$withval
4961 fi
4962 ]
4963)
andre2ff7b5d2000-06-03 14:57:40 +00004964
4965dnl lastlog, [uw]tmpx? detection
4966dnl NOTE: set the paths in the platform section to avoid the
4967dnl need for command-line parameters
4968dnl lastlog and [uw]tmp are subject to a file search if all else fails
4969
4970dnl lastlog detection
4971dnl NOTE: the code itself will detect if lastlog is a directory
4972AC_MSG_CHECKING([if your system defines LASTLOG_FILE])
Tim Rice648f8762011-01-26 12:38:57 -08004973AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
andre2ff7b5d2000-06-03 14:57:40 +00004974#include <sys/types.h>
4975#include <utmp.h>
4976#ifdef HAVE_LASTLOG_H
4977# include <lastlog.h>
4978#endif
Damien Miller2994e082000-06-04 15:51:47 +10004979#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00004980# include <paths.h>
4981#endif
Ben Lindstrom19d7b8d2001-08-16 00:09:49 +00004982#ifdef HAVE_LOGIN_H
4983# include <login.h>
4984#endif
Tim Rice648f8762011-01-26 12:38:57 -08004985 ]], [[ char *lastlog = LASTLOG_FILE; ]])],
4986 [ AC_MSG_RESULT([yes]) ],
4987 [
4988 AC_MSG_RESULT([no])
Damien Miller2994e082000-06-04 15:51:47 +10004989 AC_MSG_CHECKING([if your system defines _PATH_LASTLOG])
Tim Rice648f8762011-01-26 12:38:57 -08004990 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Damien Miller2994e082000-06-04 15:51:47 +10004991#include <sys/types.h>
4992#include <utmp.h>
4993#ifdef HAVE_LASTLOG_H
4994# include <lastlog.h>
4995#endif
4996#ifdef HAVE_PATHS_H
4997# include <paths.h>
4998#endif
Tim Rice648f8762011-01-26 12:38:57 -08004999 ]], [[ char *lastlog = _PATH_LASTLOG; ]])],
5000 [ AC_MSG_RESULT([yes]) ],
Damien Miller2994e082000-06-04 15:51:47 +10005001 [
Tim Rice648f8762011-01-26 12:38:57 -08005002 AC_MSG_RESULT([no])
Damien Miller2994e082000-06-04 15:51:47 +10005003 system_lastlog_path=no
5004 ])
Tim Rice648f8762011-01-26 12:38:57 -08005005])
Damien Miller2994e082000-06-04 15:51:47 +10005006
andre2ff7b5d2000-06-03 14:57:40 +00005007if test -z "$conf_lastlog_location"; then
5008 if test x"$system_lastlog_path" = x"no" ; then
5009 for f in /var/log/lastlog /usr/adm/lastlog /var/adm/lastlog /etc/security/lastlog ; do
Damien Milleredb82922000-06-20 13:25:52 +10005010 if (test -d "$f" || test -f "$f") ; then
andre2ff7b5d2000-06-03 14:57:40 +00005011 conf_lastlog_location=$f
5012 fi
5013 done
5014 if test -z "$conf_lastlog_location"; then
andre45cad512000-06-12 23:27:31 +00005015 AC_MSG_WARN([** Cannot find lastlog **])
5016 dnl Don't define DISABLE_LASTLOG - that means we don't try wtmp/wtmpx
andre2ff7b5d2000-06-03 14:57:40 +00005017 fi
5018 fi
5019fi
5020
5021if test -n "$conf_lastlog_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08005022 AC_DEFINE_UNQUOTED([CONF_LASTLOG_FILE], ["$conf_lastlog_location"],
Tim Rice7df8d392005-09-19 09:33:39 -07005023 [Define if you want to specify the path to your lastlog file])
Tim Riceeae17cc2005-03-17 16:52:20 -08005024fi
andre2ff7b5d2000-06-03 14:57:40 +00005025
5026dnl utmp detection
5027AC_MSG_CHECKING([if your system defines UTMP_FILE])
Tim Rice648f8762011-01-26 12:38:57 -08005028AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
andre2ff7b5d2000-06-03 14:57:40 +00005029#include <sys/types.h>
5030#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10005031#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00005032# include <paths.h>
5033#endif
Tim Rice648f8762011-01-26 12:38:57 -08005034 ]], [[ char *utmp = UTMP_FILE; ]])],
5035 [ AC_MSG_RESULT([yes]) ],
5036 [ AC_MSG_RESULT([no])
Tim Ricee1d93702016-05-31 11:13:22 -07005037 system_utmp_path=no
Tim Rice648f8762011-01-26 12:38:57 -08005038])
andre2ff7b5d2000-06-03 14:57:40 +00005039if test -z "$conf_utmp_location"; then
5040 if test x"$system_utmp_path" = x"no" ; then
5041 for f in /etc/utmp /usr/adm/utmp /var/run/utmp; do
5042 if test -f $f ; then
5043 conf_utmp_location=$f
5044 fi
5045 done
5046 if test -z "$conf_utmp_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08005047 AC_DEFINE([DISABLE_UTMP])
andre2ff7b5d2000-06-03 14:57:40 +00005048 fi
5049 fi
5050fi
5051if test -n "$conf_utmp_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08005052 AC_DEFINE_UNQUOTED([CONF_UTMP_FILE], ["$conf_utmp_location"],
Tim Rice7df8d392005-09-19 09:33:39 -07005053 [Define if you want to specify the path to your utmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08005054fi
andre2ff7b5d2000-06-03 14:57:40 +00005055
5056dnl wtmp detection
5057AC_MSG_CHECKING([if your system defines WTMP_FILE])
Tim Rice648f8762011-01-26 12:38:57 -08005058AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
andre2ff7b5d2000-06-03 14:57:40 +00005059#include <sys/types.h>
5060#include <utmp.h>
Damien Miller2994e082000-06-04 15:51:47 +10005061#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00005062# include <paths.h>
5063#endif
Tim Rice648f8762011-01-26 12:38:57 -08005064 ]], [[ char *wtmp = WTMP_FILE; ]])],
5065 [ AC_MSG_RESULT([yes]) ],
5066 [ AC_MSG_RESULT([no])
Tim Ricee1d93702016-05-31 11:13:22 -07005067 system_wtmp_path=no
Tim Rice648f8762011-01-26 12:38:57 -08005068])
andre2ff7b5d2000-06-03 14:57:40 +00005069if test -z "$conf_wtmp_location"; then
5070 if test x"$system_wtmp_path" = x"no" ; then
5071 for f in /usr/adm/wtmp /var/log/wtmp; do
5072 if test -f $f ; then
5073 conf_wtmp_location=$f
5074 fi
5075 done
5076 if test -z "$conf_wtmp_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08005077 AC_DEFINE([DISABLE_WTMP])
andre2ff7b5d2000-06-03 14:57:40 +00005078 fi
5079 fi
5080fi
5081if test -n "$conf_wtmp_location"; then
Tim Rice648f8762011-01-26 12:38:57 -08005082 AC_DEFINE_UNQUOTED([CONF_WTMP_FILE], ["$conf_wtmp_location"],
Tim Rice7df8d392005-09-19 09:33:39 -07005083 [Define if you want to specify the path to your wtmp file])
Tim Riceeae17cc2005-03-17 16:52:20 -08005084fi
andre2ff7b5d2000-06-03 14:57:40 +00005085
andre2ff7b5d2000-06-03 14:57:40 +00005086dnl wtmpx detection
5087AC_MSG_CHECKING([if your system defines WTMPX_FILE])
Tim Rice648f8762011-01-26 12:38:57 -08005088AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
andre2ff7b5d2000-06-03 14:57:40 +00005089#include <sys/types.h>
5090#include <utmp.h>
5091#ifdef HAVE_UTMPX_H
5092#include <utmpx.h>
5093#endif
Damien Miller2994e082000-06-04 15:51:47 +10005094#ifdef HAVE_PATHS_H
andre2ff7b5d2000-06-03 14:57:40 +00005095# include <paths.h>
5096#endif
Tim Rice648f8762011-01-26 12:38:57 -08005097 ]], [[ char *wtmpx = WTMPX_FILE; ]])],
5098 [ AC_MSG_RESULT([yes]) ],
5099 [ AC_MSG_RESULT([no])
Tim Ricee1d93702016-05-31 11:13:22 -07005100 system_wtmpx_path=no
Tim Rice648f8762011-01-26 12:38:57 -08005101])
andre2ff7b5d2000-06-03 14:57:40 +00005102if test -z "$conf_wtmpx_location"; then
5103 if test x"$system_wtmpx_path" = x"no" ; then
Tim Rice648f8762011-01-26 12:38:57 -08005104 AC_DEFINE([DISABLE_WTMPX])
andre2ff7b5d2000-06-03 14:57:40 +00005105 fi
5106else
Tim Rice648f8762011-01-26 12:38:57 -08005107 AC_DEFINE_UNQUOTED([CONF_WTMPX_FILE], ["$conf_wtmpx_location"],
Tim Rice7df8d392005-09-19 09:33:39 -07005108 [Define if you want to specify the path to your wtmpx file])
Tim Riceeae17cc2005-03-17 16:52:20 -08005109fi
andre2ff7b5d2000-06-03 14:57:40 +00005110
Damien Miller4018c192000-04-30 09:30:44 +10005111
Damien Miller29ea30d2000-03-17 10:54:15 +11005112if test ! -z "$blibpath" ; then
Damien Millereab4bae2003-04-29 23:22:40 +10005113 LDFLAGS="$LDFLAGS $blibflags$blibpath"
5114 AC_MSG_WARN([Please check and edit blibpath in LDFLAGS in Makefile])
Damien Miller29ea30d2000-03-17 10:54:15 +11005115fi
5116
Damien Millera2438bb2013-03-15 10:23:07 +11005117AC_CHECK_MEMBER([struct lastlog.ll_line], [], [
Tim Riceaa86c392013-03-16 20:55:46 -07005118 if test x$SKIP_DISABLE_LASTLOG_DEFINE != "xyes" ; then
Damien Millera2438bb2013-03-15 10:23:07 +11005119 AC_DEFINE([DISABLE_LASTLOG])
Tim Riceaa86c392013-03-16 20:55:46 -07005120 fi
Damien Millera2438bb2013-03-15 10:23:07 +11005121 ], [
5122#ifdef HAVE_SYS_TYPES_H
5123#include <sys/types.h>
5124#endif
5125#ifdef HAVE_UTMP_H
5126#include <utmp.h>
5127#endif
5128#ifdef HAVE_UTMPX_H
5129#include <utmpx.h>
5130#endif
5131#ifdef HAVE_LASTLOG_H
5132#include <lastlog.h>
5133#endif
5134 ])
5135
5136AC_CHECK_MEMBER([struct utmp.ut_line], [], [
5137 AC_DEFINE([DISABLE_UTMP])
5138 AC_DEFINE([DISABLE_WTMP])
5139 ], [
5140#ifdef HAVE_SYS_TYPES_H
5141#include <sys/types.h>
5142#endif
5143#ifdef HAVE_UTMP_H
5144#include <utmp.h>
5145#endif
5146#ifdef HAVE_UTMPX_H
5147#include <utmpx.h>
5148#endif
5149#ifdef HAVE_LASTLOG_H
5150#include <lastlog.h>
5151#endif
5152 ])
5153
Darren Tucker7da23cb2005-08-03 00:20:15 +10005154dnl Adding -Werror to CFLAGS early prevents configure tests from running.
5155dnl Add now.
5156CFLAGS="$CFLAGS $werror_flags"
5157
Darren Tucker627337d2010-04-10 22:58:01 +10005158if test "x$ac_cv_func_getaddrinfo" != "xyes" ; then
5159 TEST_SSH_IPV6=no
5160else
5161 TEST_SSH_IPV6=yes
5162fi
Tim Rice648f8762011-01-26 12:38:57 -08005163AC_CHECK_DECL([BROKEN_GETADDRINFO], [TEST_SSH_IPV6=no])
5164AC_SUBST([TEST_SSH_IPV6], [$TEST_SSH_IPV6])
Darren Tucker47b8c992016-12-08 15:48:34 +11005165AC_SUBST([TEST_SSH_UTF8], [$TEST_SSH_UTF8])
Darren Tucker882abfd2013-11-09 00:17:41 +11005166AC_SUBST([TEST_MALLOC_OPTIONS], [$TEST_MALLOC_OPTIONS])
Darren Tucker6d8bd572013-06-11 11:26:10 +10005167AC_SUBST([UNSUPPORTED_ALGORITHMS], [$unsupported_algorithms])
Darren Tucker79c0e1d2017-12-11 14:38:33 +11005168AC_SUBST([DEPEND], [$(cat $srcdir/.depend)])
Darren Tucker5d376902008-06-11 04:15:05 +10005169
Damien Millerde35c382017-09-08 12:38:31 +10005170CFLAGS="${CFLAGS} ${CFLAGS_AFTER}"
5171LDFLAGS="${LDFLAGS} ${LDFLAGS_AFTER}"
5172
Damien Millerbac2d8a2000-09-05 16:13:06 +11005173AC_EXEEXT
Damien Miller223897a2006-09-12 21:54:10 +10005174AC_CONFIG_FILES([Makefile buildpkg.sh opensshd.init openssh.xml \
5175 openbsd-compat/Makefile openbsd-compat/regress/Makefile \
Damien Millerf22019b2011-05-05 13:48:37 +10005176 survey.sh])
Tim Rice13aae5e2001-10-21 17:53:58 -07005177AC_OUTPUT
Damien Miller0437b332000-05-02 09:56:41 +10005178
Damien Miller7b22d652000-06-18 14:07:04 +10005179# Print summary of options
5180
Damien Miller7b22d652000-06-18 14:07:04 +10005181# Someone please show me a better way :)
5182A=`eval echo ${prefix}` ; A=`eval echo ${A}`
5183B=`eval echo ${bindir}` ; B=`eval echo ${B}`
5184C=`eval echo ${sbindir}` ; C=`eval echo ${C}`
5185D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}`
Kevin Stevese0f49142000-10-14 17:51:48 +00005186E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}`
Ben Lindstrombc709922001-04-18 18:04:21 +00005187F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}`
Damien Miller7b22d652000-06-18 14:07:04 +10005188G=`eval echo ${piddir}` ; G=`eval echo ${G}`
Damien Millerf58c6722002-05-13 13:15:42 +10005189H=`eval echo ${PRIVSEP_PATH}` ; H=`eval echo ${H}`
5190I=`eval echo ${user_path}` ; I=`eval echo ${I}`
5191J=`eval echo ${superuser_path}` ; J=`eval echo ${J}`
Damien Miller7b22d652000-06-18 14:07:04 +10005192
5193echo ""
Kevin Steves393d2f72001-04-08 22:50:43 +00005194echo "OpenSSH has been configured with the following options:"
Damien Millerf58c6722002-05-13 13:15:42 +10005195echo " User binaries: $B"
5196echo " System binaries: $C"
5197echo " Configuration files: $D"
5198echo " Askpass program: $E"
5199echo " Manual pages: $F"
5200echo " PID file: $G"
5201echo " Privilege separation chroot path: $H"
Darren Tuckere1a790d2003-09-16 11:52:19 +10005202if test "x$external_path_file" = "x/etc/login.conf" ; then
5203echo " At runtime, sshd will use the path defined in $external_path_file"
5204echo " Make sure the path to scp is present, otherwise scp will not work"
Tim Rice43a1c132002-04-17 21:19:14 -07005205else
Damien Millerf58c6722002-05-13 13:15:42 +10005206echo " sshd default user PATH: $I"
Tim Riceb925b4b2003-09-15 22:40:49 -07005207 if test ! -z "$external_path_file"; then
Darren Tuckere1a790d2003-09-16 11:52:19 +10005208echo " (If PATH is set in $external_path_file it will be used instead. If"
5209echo " used, ensure the path to scp is present, otherwise scp will not work.)"
5210 fi
Tim Rice43a1c132002-04-17 21:19:14 -07005211fi
Damien Millera18bbd32002-05-13 10:48:57 +10005212if test ! -z "$superuser_path" ; then
Damien Millerf58c6722002-05-13 13:15:42 +10005213echo " sshd superuser user PATH: $J"
Damien Millera18bbd32002-05-13 10:48:57 +10005214fi
Damien Millerf58c6722002-05-13 13:15:42 +10005215echo " Manpage format: $MANTYPE"
Damien Miller7abe09b2003-05-15 10:53:49 +10005216echo " PAM support: $PAM_MSG"
Damien Miller1b06dc32006-08-31 03:24:41 +10005217echo " OSF SIA support: $SIA_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10005218echo " KerberosV support: $KRB5_MSG"
Damien Miller73b42d22006-04-22 21:26:08 +10005219echo " SELinux support: $SELINUX_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10005220echo " S/KEY support: $SKEY_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10005221echo " MD5 password support: $MD5_MSG"
Darren Tucker16bcc1c2004-11-07 20:14:34 +11005222echo " libedit support: $LIBEDIT_MSG"
Damien Miller523db852017-02-03 16:01:22 +11005223echo " libldns support: $LDNS_MSG"
Damien Miller1b06dc32006-08-31 03:24:41 +10005224echo " Solaris process contract support: $SPC_MSG"
Darren Tucker97528352010-11-05 12:03:05 +11005225echo " Solaris project support: $SP_MSG"
Damien Miller4626cba2016-01-08 14:24:56 +11005226echo " Solaris privilege support: $SPP_MSG"
Damien Miller903e1152002-05-13 14:41:31 +10005227echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG"
Damien Millerf58c6722002-05-13 13:15:42 +10005228echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG"
5229echo " BSD Auth support: $BSD_AUTH_MSG"
5230echo " Random number source: $RAND_MSG"
Damien Miller69ff1df2011-06-23 08:30:03 +10005231echo " Privsep sandbox style: $SANDBOX_STYLE"
Damien Miller60396b02001-02-18 17:01:00 +11005232
Damien Miller7b22d652000-06-18 14:07:04 +10005233echo ""
5234
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +00005235echo " Host: ${host}"
5236echo " Compiler: ${CC}"
5237echo " Compiler flags: ${CFLAGS}"
5238echo "Preprocessor flags: ${CPPFLAGS}"
5239echo " Linker flags: ${LDFLAGS}"
Darren Tucker20e9f972007-03-25 18:26:01 +10005240echo " Libraries: ${LIBS}"
5241if test ! -z "${SSHDLIBS}"; then
5242echo " +for sshd: ${SSHDLIBS}"
5243fi
Damien Miller71adf122011-01-25 12:16:15 +11005244if test ! -z "${SSHLIBS}"; then
5245echo " +for ssh: ${SSHLIBS}"
5246fi
Damien Miller7b22d652000-06-18 14:07:04 +10005247
5248echo ""
5249
Tim Rice6f1f7582004-05-30 21:38:51 -07005250if test "x$MAKE_PACKAGE_SUPPORTED" = "xyes" ; then
Darren Tuckercf59d312004-08-29 21:18:09 +10005251 echo "SVR4 style packages are supported with \"make package\""
5252 echo ""
Tim Rice6f1f7582004-05-30 21:38:51 -07005253fi
5254
Damien Miller82cf0ce2000-12-20 13:34:48 +11005255if test "x$PAM_MSG" = "xyes" ; then
Damien Miller6c21c512002-01-22 21:57:53 +11005256 echo "PAM is enabled. You may need to install a PAM control file "
5257 echo "for sshd, otherwise password authentication may fail. "
Damien Millera8e06ce2003-11-21 23:48:55 +11005258 echo "Example PAM control files can be found in the contrib/ "
Damien Miller6c21c512002-01-22 21:57:53 +11005259 echo "subdirectory"
Damien Miller6f9c3372000-10-25 10:06:04 +11005260 echo ""
5261fi
Ben Lindstrom3ad650a2001-01-03 06:02:51 +00005262
Damien Millerb4097182004-05-23 14:09:40 +10005263if test ! -z "$NO_PEERCHECK" ; then
Darren Tucker164aa302007-03-21 21:39:57 +11005264 echo "WARNING: the operating system that you are using does not"
5265 echo "appear to support getpeereid(), getpeerucred() or the"
5266 echo "SO_PEERCRED getsockopt() option. These facilities are used to"
5267 echo "enforce security checks to prevent unauthorised connections to"
5268 echo "ssh-agent. Their absence increases the risk that a malicious"
5269 echo "user can connect to your agent."
Damien Millerb4097182004-05-23 14:09:40 +10005270 echo ""
5271fi
5272
Darren Tuckerd9f88912005-02-20 21:01:48 +11005273if test "$AUDIT_MODULE" = "bsm" ; then
5274 echo "WARNING: BSM audit support is currently considered EXPERIMENTAL."
5275 echo "See the Solaris section in README.platform for details."
5276fi