configure.ac 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313
  1. dnl Copyright (c) 2001-2004, Roger Dingledine
  2. dnl Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson
  3. dnl Copyright (c) 2007-2018, The Tor Project, Inc.
  4. dnl See LICENSE for licensing information
  5. AC_PREREQ([2.63])
  6. AC_INIT([tor],[0.3.5.0-alpha-dev])
  7. AC_CONFIG_SRCDIR([src/or/main.c])
  8. AC_CONFIG_MACRO_DIR([m4])
  9. # "foreign" means we don't follow GNU package layout standards
  10. # "1.11" means we require automake version 1.11 or newer
  11. # "subdir-objects" means put .o files in the same directory as the .c files
  12. AM_INIT_AUTOMAKE([foreign 1.11 subdir-objects -Wall -Werror])
  13. m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
  14. AC_CONFIG_HEADERS([orconfig.h])
  15. AC_USE_SYSTEM_EXTENSIONS
  16. AC_CANONICAL_HOST
  17. PKG_PROG_PKG_CONFIG
  18. AC_ARG_ENABLE(openbsd-malloc,
  19. AS_HELP_STRING(--enable-openbsd-malloc, [use malloc code from OpenBSD. Linux only]))
  20. AC_ARG_ENABLE(static-openssl,
  21. AS_HELP_STRING(--enable-static-openssl, [link against a static openssl library. Requires --with-openssl-dir]))
  22. AC_ARG_ENABLE(static-libevent,
  23. AS_HELP_STRING(--enable-static-libevent, [link against a static libevent library. Requires --with-libevent-dir]))
  24. AC_ARG_ENABLE(static-zlib,
  25. AS_HELP_STRING(--enable-static-zlib, [link against a static zlib library. Requires --with-zlib-dir]))
  26. AC_ARG_ENABLE(static-tor,
  27. AS_HELP_STRING(--enable-static-tor, [create an entirely static Tor binary. Requires --with-openssl-dir and --with-libevent-dir and --with-zlib-dir]))
  28. AC_ARG_ENABLE(unittests,
  29. AS_HELP_STRING(--disable-unittests, [don't build unit tests for Tor. Risky!]))
  30. AC_ARG_ENABLE(coverage,
  31. AS_HELP_STRING(--enable-coverage, [enable coverage support in the unit-test build]))
  32. AC_ARG_ENABLE(asserts-in-tests,
  33. AS_HELP_STRING(--disable-asserts-in-tests, [disable tor_assert() calls in the unit tests, for branch coverage]))
  34. AC_ARG_ENABLE(system-torrc,
  35. AS_HELP_STRING(--disable-system-torrc, [don't look for a system-wide torrc file]))
  36. AC_ARG_ENABLE(libfuzzer,
  37. AS_HELP_STRING(--enable-libfuzzer, [build extra fuzzers based on 'libfuzzer']))
  38. AC_ARG_ENABLE(oss-fuzz,
  39. AS_HELP_STRING(--enable-oss-fuzz, [build extra fuzzers based on 'oss-fuzz' environment]))
  40. AC_ARG_ENABLE(memory-sentinels,
  41. AS_HELP_STRING(--disable-memory-sentinels, [disable code that tries to prevent some kinds of memory access bugs. For fuzzing only.]))
  42. AC_ARG_ENABLE(rust,
  43. AS_HELP_STRING(--enable-rust, [enable rust integration]))
  44. AC_ARG_ENABLE(cargo-online-mode,
  45. AS_HELP_STRING(--enable-cargo-online-mode, [Allow cargo to make network requests to fetch crates. For builds with rust only.]))
  46. AC_ARG_ENABLE(restart-debugging,
  47. AS_HELP_STRING(--enable-restart-debugging, [Build Tor with support for debugging in-process restart. Developers only.]))
  48. AC_ARG_ENABLE(zstd-advanced-apis,
  49. AS_HELP_STRING(--disable-zstd-advanced-apis, [Build without support for zstd's "static-only" APIs.]))
  50. if test "x$enable_coverage" != "xyes" -a "x$enable_asserts_in_tests" = "xno" ; then
  51. AC_MSG_ERROR([Can't disable assertions outside of coverage build])
  52. fi
  53. AM_CONDITIONAL(UNITTESTS_ENABLED, test "x$enable_unittests" != "xno")
  54. AM_CONDITIONAL(COVERAGE_ENABLED, test "x$enable_coverage" = "xyes")
  55. AM_CONDITIONAL(DISABLE_ASSERTS_IN_UNIT_TESTS, test "x$enable_asserts_in_tests" = "xno")
  56. AM_CONDITIONAL(LIBFUZZER_ENABLED, test "x$enable_libfuzzer" = "xyes")
  57. AM_CONDITIONAL(OSS_FUZZ_ENABLED, test "x$enable_oss_fuzz" = "xyes")
  58. AM_CONDITIONAL(USE_RUST, test "x$enable_rust" = "xyes")
  59. if test "$enable_static_tor" = "yes"; then
  60. enable_static_libevent="yes";
  61. enable_static_openssl="yes";
  62. enable_static_zlib="yes";
  63. CFLAGS="$CFLAGS -static"
  64. fi
  65. if test "$enable_system_torrc" = "no"; then
  66. AC_DEFINE(DISABLE_SYSTEM_TORRC, 1,
  67. [Defined if we're not going to look for a torrc in SYSCONF])
  68. fi
  69. if test "$enable_memory_sentinels" = "no"; then
  70. AC_DEFINE(DISABLE_MEMORY_SENTINELS, 1,
  71. [Defined if we're turning off memory safety code to look for bugs])
  72. fi
  73. AM_CONDITIONAL(USE_OPENBSD_MALLOC, test "x$enable_openbsd_malloc" = "xyes")
  74. AC_ARG_ENABLE(asciidoc,
  75. AS_HELP_STRING(--disable-asciidoc, [don't use asciidoc (disables building of manpages)]),
  76. [case "${enableval}" in
  77. "yes") asciidoc=true ;;
  78. "no") asciidoc=false ;;
  79. *) AC_MSG_ERROR(bad value for --disable-asciidoc) ;;
  80. esac], [asciidoc=true])
  81. # systemd notify support
  82. AC_ARG_ENABLE(systemd,
  83. AS_HELP_STRING(--enable-systemd, [enable systemd notification support]),
  84. [case "${enableval}" in
  85. "yes") systemd=true ;;
  86. "no") systemd=false ;;
  87. * ) AC_MSG_ERROR(bad value for --enable-systemd) ;;
  88. esac], [systemd=auto])
  89. if test "$enable_restart_debugging" = "yes"; then
  90. AC_DEFINE(ENABLE_RESTART_DEBUGGING, 1,
  91. [Defined if we're building with support for in-process restart debugging.])
  92. fi
  93. if test "$enable_zstd_advanced_apis" != "no"; then
  94. AC_DEFINE(ENABLE_ZSTD_ADVANCED_APIS, 1,
  95. [Defined if we're going to try to use zstd's "static-only" APIs.])
  96. fi
  97. # systemd support
  98. if test "x$enable_systemd" = "xno"; then
  99. have_systemd=no;
  100. else
  101. PKG_CHECK_MODULES(SYSTEMD,
  102. [libsystemd-daemon],
  103. have_systemd=yes,
  104. have_systemd=no)
  105. if test "x$have_systemd" = "xno"; then
  106. AC_MSG_NOTICE([Okay, checking for systemd a different way...])
  107. PKG_CHECK_MODULES(SYSTEMD,
  108. [libsystemd],
  109. have_systemd=yes,
  110. have_systemd=no)
  111. fi
  112. fi
  113. if test "x$have_systemd" = "xyes"; then
  114. AC_DEFINE(HAVE_SYSTEMD,1,[Have systemd])
  115. TOR_SYSTEMD_CFLAGS="${SYSTEMD_CFLAGS}"
  116. TOR_SYSTEMD_LIBS="${SYSTEMD_LIBS}"
  117. PKG_CHECK_MODULES(LIBSYSTEMD209, [libsystemd >= 209],
  118. [AC_DEFINE(HAVE_SYSTEMD_209,1,[Have systemd v209 or more])], [])
  119. fi
  120. AC_SUBST(TOR_SYSTEMD_CFLAGS)
  121. AC_SUBST(TOR_SYSTEMD_LIBS)
  122. if test "x$enable_systemd" = "xyes" -a "x$have_systemd" != "xyes" ; then
  123. AC_MSG_ERROR([Explicitly requested systemd support, but systemd not found])
  124. fi
  125. case "$host" in
  126. *-*-solaris* )
  127. AC_DEFINE(_REENTRANT, 1, [Define on some platforms to activate x_r() functions in time.h])
  128. ;;
  129. esac
  130. AC_ARG_ENABLE(gcc-warnings,
  131. AS_HELP_STRING(--enable-gcc-warnings, [deprecated alias for enable-fatal-warnings]))
  132. AC_ARG_ENABLE(fatal-warnings,
  133. AS_HELP_STRING(--enable-fatal-warnings, [tell the compiler to treat all warnings as errors.]))
  134. AC_ARG_ENABLE(gcc-warnings-advisory,
  135. AS_HELP_STRING(--disable-gcc-warnings-advisory, [disable the regular verbose warnings]))
  136. dnl Others suggest '/gs /safeseh /nxcompat /dynamicbase' for non-gcc on Windows
  137. AC_ARG_ENABLE(gcc-hardening,
  138. AS_HELP_STRING(--disable-gcc-hardening, [disable compiler security checks]))
  139. dnl Deprecated --enable-expensive-hardening but keep it for now for backward compat.
  140. AC_ARG_ENABLE(expensive-hardening,
  141. AS_HELP_STRING(--enable-expensive-hardening, [enable more fragile and expensive compiler hardening; makes Tor slower]))
  142. AC_ARG_ENABLE(fragile-hardening,
  143. AS_HELP_STRING(--enable-fragile-hardening, [enable more fragile and expensive compiler hardening; makes Tor slower]))
  144. if test "x$enable_expensive_hardening" = "xyes" || test "x$enable_fragile_hardening" = "xyes"; then
  145. fragile_hardening="yes"
  146. AC_DEFINE(DEBUG_SMARTLIST, 1, [Enable smartlist debugging])
  147. fi
  148. dnl Linker hardening options
  149. dnl Currently these options are ELF specific - you can't use this with MacOSX
  150. AC_ARG_ENABLE(linker-hardening,
  151. AS_HELP_STRING(--disable-linker-hardening, [disable linker security fixups]))
  152. AC_ARG_ENABLE(local-appdata,
  153. AS_HELP_STRING(--enable-local-appdata, [default to host local application data paths on Windows]))
  154. if test "$enable_local_appdata" = "yes"; then
  155. AC_DEFINE(ENABLE_LOCAL_APPDATA, 1,
  156. [Defined if we default to host local appdata paths on Windows])
  157. fi
  158. # Tor2web mode flag
  159. AC_ARG_ENABLE(tor2web-mode,
  160. AS_HELP_STRING(--enable-tor2web-mode, [support tor2web non-anonymous mode]),
  161. [if test "x$enableval" = "xyes"; then
  162. CFLAGS="$CFLAGS -D ENABLE_TOR2WEB_MODE=1"
  163. fi])
  164. AC_ARG_ENABLE(tool-name-check,
  165. AS_HELP_STRING(--disable-tool-name-check, [check for sanely named toolchain when cross-compiling]))
  166. AC_ARG_ENABLE(seccomp,
  167. AS_HELP_STRING(--disable-seccomp, [do not attempt to use libseccomp]))
  168. AC_ARG_ENABLE(libscrypt,
  169. AS_HELP_STRING(--disable-libscrypt, [do not attempt to use libscrypt]))
  170. dnl Enable event tracing which are transformed to debug log statement.
  171. AC_ARG_ENABLE(event-tracing-debug,
  172. AS_HELP_STRING(--enable-event-tracing-debug, [build with event tracing to debug log]))
  173. AM_CONDITIONAL([USE_EVENT_TRACING_DEBUG], [test "x$enable_event_tracing_debug" = "xyes"])
  174. if test x$enable_event_tracing_debug = xyes; then
  175. AC_DEFINE([USE_EVENT_TRACING_DEBUG], [1], [Tracing framework to log debug])
  176. AC_DEFINE([TOR_EVENT_TRACING_ENABLED], [1], [Compile the event tracing instrumentation])
  177. fi
  178. dnl Enable Android only features.
  179. AC_ARG_ENABLE(android,
  180. AS_HELP_STRING(--enable-android, [build with Android features enabled]))
  181. AM_CONDITIONAL([USE_ANDROID], [test "x$enable_android" = "xyes"])
  182. if test "x$enable_android" = "xyes"; then
  183. AC_DEFINE([USE_ANDROID], [1], [Compile with Android specific features enabled])
  184. dnl Check if the Android log library is available.
  185. AC_CHECK_HEADERS([android/log.h])
  186. AC_SEARCH_LIBS(__android_log_write, [log])
  187. fi
  188. dnl ---
  189. dnl Tor modules options. These options are namespaced with --disable-module-XXX
  190. dnl ---
  191. dnl All our modules.
  192. m4_define(MODULES, dirauth)
  193. dnl Directory Authority module.
  194. AC_ARG_ENABLE([module-dirauth],
  195. AS_HELP_STRING([--disable-module-dirauth],
  196. [Do not build tor with the dirauth module]),
  197. [], dnl Action if-given
  198. AC_DEFINE([HAVE_MODULE_DIRAUTH], [1],
  199. [Compile with Directory Authority feature support]))
  200. AM_CONDITIONAL(BUILD_MODULE_DIRAUTH, [test "x$enable_module_dirauth" != "xno"])
  201. dnl Helper variables.
  202. TOR_MODULES_ALL_ENABLED=
  203. AC_DEFUN([ADD_MODULE], [
  204. MODULE=m4_toupper($1)
  205. TOR_MODULES_ALL_ENABLED="${TOR_MODULES_ALL_ENABLED} -DHAVE_MODULE_${MODULE}=1"
  206. ])
  207. m4_foreach_w([module], MODULES, [ADD_MODULE([module])])
  208. AC_SUBST(TOR_MODULES_ALL_ENABLED)
  209. dnl check for the correct "ar" when cross-compiling.
  210. dnl (AM_PROG_AR was new in automake 1.11.2, which we do not yet require,
  211. dnl so kludge up a replacement for the case where it isn't there yet.)
  212. m4_ifdef([AM_PROG_AR],
  213. [AM_PROG_AR],
  214. [AN_MAKEVAR([AR], [AC_PROG_AR])
  215. AN_PROGRAM([ar], [AC_PROG_AR])
  216. AC_DEFUN([AC_PROG_AR], [AC_CHECK_TOOL([AR], [ar], [:])])
  217. AC_PROG_AR])
  218. dnl Check whether the above macro has settled for a simply named tool even
  219. dnl though we're cross compiling. We must do this before running AC_PROG_CC,
  220. dnl because that will find any cc on the system, not only the cross-compiler,
  221. dnl and then verify that a binary built with this compiler runs on the
  222. dnl build system. It will then come to the false conclusion that we're not
  223. dnl cross-compiling.
  224. if test "x$enable_tool_name_check" != "xno"; then
  225. if test "x$ac_tool_warned" = "xyes"; then
  226. AC_MSG_ERROR([We are cross compiling but could not find a properly named toolchain. Do you have your cross-compiling toolchain in PATH? (You can --disable-tool-name-check to ignore this.)])
  227. elif test "x$ac_ct_AR" != "x" -a "x$cross_compiling" = "xmaybe"; then
  228. AC_MSG_ERROR([We think we are cross compiling but could not find a properly named toolchain. Do you have your cross-compiling toolchain in PATH? (You can --disable-tool-name-check to ignore this.)])
  229. fi
  230. fi
  231. AC_PROG_CC
  232. AC_PROG_CPP
  233. AC_PROG_MAKE_SET
  234. AC_PROG_RANLIB
  235. AC_PROG_SED
  236. AC_ARG_VAR([PERL], [path to Perl binary])
  237. AC_CHECK_PROGS([PERL], [perl])
  238. AM_CONDITIONAL(USE_PERL, [test "x$ac_cv_prog_PERL" != "x"])
  239. dnl check for asciidoc and a2x
  240. AC_PATH_PROG([ASCIIDOC], [asciidoc], none)
  241. AC_PATH_PROGS([A2X], [a2x a2x.py], none)
  242. AM_CONDITIONAL(USE_ASCIIDOC, test "x$asciidoc" = "xtrue")
  243. AM_PROG_CC_C_O
  244. AC_PROG_CC_C99
  245. AC_ARG_VAR([PYTHON], [path to Python binary])
  246. AC_CHECK_PROGS(PYTHON, [python python2 python2.7 python3 python3.3])
  247. if test "x$PYTHON" = "x"; then
  248. AC_MSG_WARN([Python unavailable; some tests will not be run.])
  249. fi
  250. AM_CONDITIONAL(USEPYTHON, [test "x$PYTHON" != "x"])
  251. dnl List all external rust crates we depend on here. Include the version
  252. rust_crates=" \
  253. digest-0.7.2 \
  254. libc-0.2.39 \
  255. "
  256. AC_SUBST(rust_crates)
  257. ifdef([AC_C_FLEXIBLE_ARRAY_MEMBER], [
  258. AC_C_FLEXIBLE_ARRAY_MEMBER
  259. ], [
  260. dnl Maybe we've got an old autoconf...
  261. AC_CACHE_CHECK([for flexible array members],
  262. tor_cv_c_flexarray,
  263. [AC_COMPILE_IFELSE(
  264. AC_LANG_PROGRAM([
  265. struct abc { int a; char b[]; };
  266. ], [
  267. struct abc *def = malloc(sizeof(struct abc)+sizeof(char));
  268. def->b[0] = 33;
  269. ]),
  270. [tor_cv_c_flexarray=yes],
  271. [tor_cv_c_flexarray=no])])
  272. if test "$tor_cv_flexarray" = "yes"; then
  273. AC_DEFINE([FLEXIBLE_ARRAY_MEMBER], [], [Define to nothing if C supports flexible array members, and to 1 if it does not.])
  274. else
  275. AC_DEFINE([FLEXIBLE_ARRAY_MEMBER], [1], [Define to nothing if C supports flexible array members, and to 1 if it does not.])
  276. fi
  277. ])
  278. AC_CACHE_CHECK([for working C99 mid-block declaration syntax],
  279. tor_cv_c_c99_decl,
  280. [AC_COMPILE_IFELSE(
  281. [AC_LANG_PROGRAM([], [int x; x = 3; int y; y = 4 + x;])],
  282. [tor_cv_c_c99_decl=yes],
  283. [tor_cv_c_c99_decl=no] )])
  284. if test "$tor_cv_c_c99_decl" != "yes"; then
  285. AC_MSG_ERROR([Your compiler doesn't support c99 mid-block declarations. This is required as of Tor 0.2.6.x])
  286. fi
  287. AC_CACHE_CHECK([for working C99 designated initializers],
  288. tor_cv_c_c99_designated_init,
  289. [AC_COMPILE_IFELSE(
  290. [AC_LANG_PROGRAM([struct s { int a; int b; };],
  291. [[ struct s ss = { .b = 5, .a = 6 }; ]])],
  292. [tor_cv_c_c99_designated_init=yes],
  293. [tor_cv_c_c99_designated_init=no] )])
  294. if test "$tor_cv_c_c99_designated_init" != "yes"; then
  295. AC_MSG_ERROR([Your compiler doesn't support c99 designated initializers. This is required as of Tor 0.2.6.x])
  296. fi
  297. TORUSER=_tor
  298. AC_ARG_WITH(tor-user,
  299. AS_HELP_STRING(--with-tor-user=NAME, [specify username for tor daemon]),
  300. [
  301. TORUSER=$withval
  302. ]
  303. )
  304. AC_SUBST(TORUSER)
  305. TORGROUP=_tor
  306. AC_ARG_WITH(tor-group,
  307. AS_HELP_STRING(--with-tor-group=NAME, [specify group name for tor daemon]),
  308. [
  309. TORGROUP=$withval
  310. ]
  311. )
  312. AC_SUBST(TORGROUP)
  313. dnl If _WIN32 is defined and non-zero, we are building for win32
  314. AC_MSG_CHECKING([for win32])
  315. AC_RUN_IFELSE([AC_LANG_SOURCE([
  316. int main(int c, char **v) {
  317. #ifdef _WIN32
  318. #if _WIN32
  319. return 0;
  320. #else
  321. return 1;
  322. #endif
  323. #else
  324. return 2;
  325. #endif
  326. }])],
  327. bwin32=true; AC_MSG_RESULT([yes]),
  328. bwin32=false; AC_MSG_RESULT([no]),
  329. bwin32=cross; AC_MSG_RESULT([cross])
  330. )
  331. if test "$bwin32" = "cross"; then
  332. AC_MSG_CHECKING([for win32 (cross)])
  333. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  334. #ifdef _WIN32
  335. int main(int c, char **v) {return 0;}
  336. #else
  337. #error
  338. int main(int c, char **v) {return x(y);}
  339. #endif
  340. ])],
  341. bwin32=true; AC_MSG_RESULT([yes]),
  342. bwin32=false; AC_MSG_RESULT([no]))
  343. fi
  344. AH_BOTTOM([
  345. #ifdef _WIN32
  346. /* Defined to access windows functions and definitions for >=WinXP */
  347. # ifndef WINVER
  348. # define WINVER 0x0501
  349. # endif
  350. /* Defined to access _other_ windows functions and definitions for >=WinXP */
  351. # ifndef _WIN32_WINNT
  352. # define _WIN32_WINNT 0x0501
  353. # endif
  354. /* Defined to avoid including some windows headers as part of Windows.h */
  355. # ifndef WIN32_LEAN_AND_MEAN
  356. # define WIN32_LEAN_AND_MEAN 1
  357. # endif
  358. #endif
  359. ])
  360. AM_CONDITIONAL(BUILD_NT_SERVICES, test "x$bwin32" = "xtrue")
  361. AM_CONDITIONAL(BUILD_LIBTORRUNNER, test "x$bwin32" != "xtrue")
  362. dnl Enable C99 when compiling with MIPSpro
  363. AC_MSG_CHECKING([for MIPSpro compiler])
  364. AC_COMPILE_IFELSE([AC_LANG_PROGRAM(, [
  365. #if (defined(__sgi) && defined(_COMPILER_VERSION))
  366. #error
  367. return x(y);
  368. #endif
  369. ])],
  370. bmipspro=false; AC_MSG_RESULT(no),
  371. bmipspro=true; AC_MSG_RESULT(yes))
  372. if test "$bmipspro" = "true"; then
  373. CFLAGS="$CFLAGS -c99"
  374. fi
  375. AC_C_BIGENDIAN
  376. if test "x$enable_rust" = "xyes"; then
  377. AC_ARG_VAR([RUSTC], [path to the rustc binary])
  378. AC_CHECK_PROG([RUSTC], [rustc], [rustc],[no])
  379. if test "x$RUSTC" = "xno"; then
  380. AC_MSG_ERROR([rustc unavailable but rust integration requested.])
  381. fi
  382. AC_ARG_VAR([CARGO], [path to the cargo binary])
  383. AC_CHECK_PROG([CARGO], [cargo], [cargo],[no])
  384. if test "x$CARGO" = "xno"; then
  385. AC_MSG_ERROR([cargo unavailable but rust integration requested.])
  386. fi
  387. AC_DEFINE([HAVE_RUST], 1, [have Rust])
  388. if test "x$enable_fatal_warnings" = "xyes"; then
  389. RUST_WARN=
  390. else
  391. RUST_WARN=#
  392. fi
  393. if test "x$enable_cargo_online_mode" = "xyes"; then
  394. CARGO_ONLINE=
  395. RUST_DL=#
  396. else
  397. CARGO_ONLINE=--frozen
  398. RUST_DL=
  399. dnl When we're not allowed to touch the network, we need crate dependencies
  400. dnl locally available.
  401. AC_MSG_CHECKING([rust crate dependencies])
  402. AC_ARG_VAR([TOR_RUST_DEPENDENCIES], [path to directory with local crate mirror])
  403. if test "x$TOR_RUST_DEPENDENCIES" = "x"; then
  404. TOR_RUST_DEPENDENCIES="${srcdir}/src/ext/rust/crates"
  405. fi
  406. dnl Check whether the path exists before we try to cd into it.
  407. if test ! -d "$TOR_RUST_DEPENDENCIES"; then
  408. AC_MSG_ERROR([Rust dependency directory $TOR_RUST_DEPENDENCIES does not exist. Specify a dependency directory using the TOR_RUST_DEPENDENCIES variable or allow cargo to fetch crates using --enable-cargo-online-mode.])
  409. ERRORED=1
  410. fi
  411. dnl Make the path absolute, since we'll be using it from within a
  412. dnl subdirectory.
  413. TOR_RUST_DEPENDENCIES=$(cd "$TOR_RUST_DEPENDENCIES" ; pwd)
  414. for dep in $rust_crates; do
  415. if test ! -d "$TOR_RUST_DEPENDENCIES"/"$dep"; then
  416. AC_MSG_ERROR([Failure to find rust dependency $TOR_RUST_DEPENDENCIES/$dep. Specify a dependency directory using the TOR_RUST_DEPENDENCIES variable or allow cargo to fetch crates using --enable-cargo-online-mode.])
  417. ERRORED=1
  418. fi
  419. done
  420. if test "x$ERRORED" = "x"; then
  421. AC_MSG_RESULT([yes])
  422. fi
  423. fi
  424. dnl This is a workaround for #46797
  425. dnl (a.k.a https://github.com/rust-lang/rust/issues/46797 ). Once the
  426. dnl upstream bug is fixed, we can remove this workaround.
  427. case "$host_os" in
  428. darwin*)
  429. TOR_RUST_EXTRA_LIBS="-lresolv"
  430. ;;
  431. esac
  432. dnl For now both MSVC and MinGW rust libraries will output static libs with
  433. dnl the MSVC naming convention.
  434. if test "$bwin32" = "true"; then
  435. TOR_RUST_STATIC_NAME=tor_rust.lib
  436. else
  437. TOR_RUST_STATIC_NAME=libtor_rust.a
  438. fi
  439. AC_SUBST(TOR_RUST_STATIC_NAME)
  440. AC_SUBST(CARGO_ONLINE)
  441. AC_SUBST(RUST_WARN)
  442. AC_SUBST(RUST_DL)
  443. dnl Let's check the rustc version, too
  444. AC_MSG_CHECKING([rust version])
  445. RUSTC_VERSION=`$RUSTC --version`
  446. RUSTC_VERSION_MAJOR=`$RUSTC --version | cut -d ' ' -f 2 | cut -d '.' -f 1`
  447. RUSTC_VERSION_MINOR=`$RUSTC --version | cut -d ' ' -f 2 | cut -d '.' -f 2`
  448. if test "x$RUSTC_VERSION_MAJOR" = "x" -o "x$RUSTC_VERSION_MINOR" = "x"; then
  449. AC_MSG_ERROR([rustc version couldn't be identified])
  450. fi
  451. if test "$RUSTC_VERSION_MAJOR" -lt 2 -a "$RUSTC_VERSION_MINOR" -lt 14; then
  452. AC_MSG_ERROR([rustc must be at least version 1.14])
  453. fi
  454. AC_MSG_RESULT([$RUSTC_VERSION])
  455. fi
  456. AC_SUBST(TOR_RUST_EXTRA_LIBS)
  457. AC_SEARCH_LIBS(socket, [socket network])
  458. AC_SEARCH_LIBS(gethostbyname, [nsl])
  459. AC_SEARCH_LIBS(dlopen, [dl])
  460. AC_SEARCH_LIBS(inet_aton, [resolv])
  461. AC_SEARCH_LIBS(backtrace, [execinfo])
  462. saved_LIBS="$LIBS"
  463. AC_SEARCH_LIBS([clock_gettime], [rt])
  464. if test "$LIBS" != "$saved_LIBS"; then
  465. # Looks like we need -lrt for clock_gettime().
  466. have_rt=yes
  467. fi
  468. AC_SEARCH_LIBS(pthread_create, [pthread])
  469. AC_SEARCH_LIBS(pthread_detach, [pthread])
  470. AM_CONDITIONAL(THREADS_WIN32, test "$bwin32" = "true")
  471. AM_CONDITIONAL(THREADS_PTHREADS, test "$bwin32" = "false")
  472. AC_CHECK_FUNCS(
  473. _NSGetEnviron \
  474. RtlSecureZeroMemory \
  475. SecureZeroMemory \
  476. accept4 \
  477. backtrace \
  478. backtrace_symbols_fd \
  479. eventfd \
  480. explicit_bzero \
  481. timingsafe_memcmp \
  482. flock \
  483. ftime \
  484. get_current_dir_name \
  485. getaddrinfo \
  486. getifaddrs \
  487. getpass \
  488. getrlimit \
  489. gettimeofday \
  490. gmtime_r \
  491. gnu_get_libc_version \
  492. htonll \
  493. inet_aton \
  494. ioctl \
  495. issetugid \
  496. llround \
  497. localtime_r \
  498. lround \
  499. mach_approximate_time \
  500. memmem \
  501. memset_s \
  502. mmap \
  503. pipe \
  504. pipe2 \
  505. prctl \
  506. readpassphrase \
  507. rint \
  508. sigaction \
  509. socketpair \
  510. statvfs \
  511. strlcat \
  512. strlcpy \
  513. strnlen \
  514. strptime \
  515. strtok_r \
  516. strtoull \
  517. sysconf \
  518. sysctl \
  519. truncate \
  520. uname \
  521. usleep \
  522. vasprintf \
  523. _vscprintf
  524. )
  525. # Apple messed up when they added two functions functions in Sierra: they
  526. # forgot to decorate them with appropriate AVAILABLE_MAC_OS_VERSION
  527. # checks. So we should only probe for those functions if we are sure that we
  528. # are not targeting OSX 10.11 or earlier.
  529. AC_MSG_CHECKING([for a pre-Sierra OSX build target])
  530. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  531. #ifdef __APPLE__
  532. # include <AvailabilityMacros.h>
  533. # ifndef MAC_OS_X_VERSION_10_12
  534. # define MAC_OS_X_VERSION_10_12 101200
  535. # endif
  536. # if defined(MAC_OS_X_VERSION_MIN_REQUIRED)
  537. # if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_12
  538. # error "Running on Mac OSX 10.11 or earlier"
  539. # endif
  540. # endif
  541. #endif
  542. ]], [[]])],
  543. [on_macos_pre_10_12=no ; AC_MSG_RESULT([no])],
  544. [on_macos_pre_10_12=yes; AC_MSG_RESULT([yes])])
  545. if test "$on_macos_pre_10_12" = "no"; then
  546. AC_CHECK_FUNCS(
  547. clock_gettime \
  548. getentropy \
  549. )
  550. fi
  551. if test "$bwin32" != "true"; then
  552. AC_CHECK_HEADERS(pthread.h)
  553. AC_CHECK_FUNCS(pthread_create)
  554. AC_CHECK_FUNCS(pthread_condattr_setclock)
  555. fi
  556. if test "$bwin32" = "true"; then
  557. AC_CHECK_DECLS([SecureZeroMemory, _getwch], , , [
  558. #include <windows.h>
  559. #include <conio.h>
  560. #include <wchar.h>
  561. ])
  562. fi
  563. AM_CONDITIONAL(BUILD_READPASSPHRASE_C,
  564. test "x$ac_cv_func_readpassphrase" = "xno" && test "$bwin32" = "false")
  565. AC_MSG_CHECKING([whether free(NULL) works])
  566. AC_RUN_IFELSE([AC_LANG_PROGRAM([
  567. #include <stdlib.h>
  568. ], [
  569. char *p = NULL;
  570. free(p);
  571. ])],
  572. [free_null_ok=true; AC_MSG_RESULT(yes)],
  573. [free_null_ok=false; AC_MSG_RESULT(no)],
  574. [free_null_ok=cross; AC_MSG_RESULT(cross)])
  575. if test "$free_null_ok" = "false"; then
  576. AC_MSG_ERROR([Your libc implementation doesn't allow free(NULL), as required by C99.])
  577. fi
  578. dnl ------------------------------------------------------
  579. dnl Where do you live, libevent? And how do we call you?
  580. if test "$bwin32" = "true"; then
  581. TOR_LIB_WS32=-lws2_32
  582. TOR_LIB_IPHLPAPI=-liphlpapi
  583. # Some of the cargo-cults recommend -lwsock32 as well, but I don't
  584. # think it's actually necessary.
  585. TOR_LIB_GDI=-lgdi32
  586. TOR_LIB_USERENV=-luserenv
  587. else
  588. TOR_LIB_WS32=
  589. TOR_LIB_GDI=
  590. TOR_LIB_USERENV=
  591. fi
  592. AC_SUBST(TOR_LIB_WS32)
  593. AC_SUBST(TOR_LIB_GDI)
  594. AC_SUBST(TOR_LIB_IPHLPAPI)
  595. AC_SUBST(TOR_LIB_USERENV)
  596. tor_libevent_pkg_redhat="libevent"
  597. tor_libevent_pkg_debian="libevent-dev"
  598. tor_libevent_devpkg_redhat="libevent-devel"
  599. tor_libevent_devpkg_debian="libevent-dev"
  600. dnl On Gnu/Linux or any place we require it, we'll add librt to the Libevent
  601. dnl linking for static builds.
  602. STATIC_LIBEVENT_FLAGS=""
  603. if test "$enable_static_libevent" = "yes"; then
  604. if test "$have_rt" = "yes"; then
  605. STATIC_LIBEVENT_FLAGS=" -lrt "
  606. fi
  607. fi
  608. TOR_SEARCH_LIBRARY(libevent, $trylibeventdir, [-levent $STATIC_LIBEVENT_FLAGS $TOR_LIB_WS32], [
  609. #ifdef _WIN32
  610. #include <winsock2.h>
  611. #endif
  612. #include <sys/time.h>
  613. #include <sys/types.h>
  614. #include <event2/event.h>], [
  615. #ifdef _WIN32
  616. #include <winsock2.h>
  617. #endif
  618. struct event_base;
  619. struct event_base *event_base_new(void);
  620. void event_base_free(struct event_base *);],
  621. [
  622. #ifdef _WIN32
  623. {WSADATA d; WSAStartup(0x101,&d); }
  624. #endif
  625. event_base_free(event_base_new());
  626. ], [--with-libevent-dir], [/opt/libevent])
  627. dnl Determine the incantation needed to link libevent.
  628. save_LIBS="$LIBS"
  629. save_LDFLAGS="$LDFLAGS"
  630. save_CPPFLAGS="$CPPFLAGS"
  631. LIBS="$STATIC_LIBEVENT_FLAGS $TOR_LIB_WS32 $save_LIBS"
  632. LDFLAGS="$TOR_LDFLAGS_libevent $LDFLAGS"
  633. CPPFLAGS="$TOR_CPPFLAGS_libevent $CPPFLAGS"
  634. AC_CHECK_HEADERS(event2/event.h event2/dns.h event2/bufferevent_ssl.h)
  635. if test "$enable_static_libevent" = "yes"; then
  636. if test "$tor_cv_library_libevent_dir" = "(system)"; then
  637. AC_MSG_ERROR("You must specify an explicit --with-libevent-dir=x option when using --enable-static-libevent")
  638. else
  639. TOR_LIBEVENT_LIBS="$TOR_LIBDIR_libevent/libevent.a $STATIC_LIBEVENT_FLAGS"
  640. fi
  641. else
  642. if test "x$ac_cv_header_event2_event_h" = "xyes"; then
  643. AC_SEARCH_LIBS(event_new, [event event_core], , AC_MSG_ERROR("libevent2 is installed but linking it failed while searching for event_new"))
  644. AC_SEARCH_LIBS(evdns_base_new, [event event_extra], , AC_MSG_ERROR("libevent2 is installed but linking it failed while searching for evdns_base_new"))
  645. if test "$ac_cv_search_event_new" != "none required"; then
  646. TOR_LIBEVENT_LIBS="$ac_cv_search_event_new"
  647. fi
  648. if test "$ac_cv_search_evdns_base_new" != "none required"; then
  649. TOR_LIBEVENT_LIBS="$ac_cv_search_evdns_base_new $TOR_LIBEVENT_LIBS"
  650. fi
  651. else
  652. AC_MSG_ERROR("libevent2 is required but the headers could not be found")
  653. fi
  654. fi
  655. dnl Now check for particular libevent functions.
  656. AC_CHECK_FUNCS([evutil_secure_rng_set_urandom_device_file \
  657. evutil_secure_rng_add_bytes \
  658. ])
  659. LIBS="$save_LIBS"
  660. LDFLAGS="$save_LDFLAGS"
  661. CPPFLAGS="$save_CPPFLAGS"
  662. dnl Check that libevent is at least at version 2.0.10, the first stable
  663. dnl release of its series
  664. CPPFLAGS="$CPPFLAGS $TOR_CPPFLAGS_libevent"
  665. AC_MSG_CHECKING([whether Libevent is new enough])
  666. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  667. #include <event2/event.h>
  668. #if !defined(LIBEVENT_VERSION_NUMBER) || LIBEVENT_VERSION_NUMBER < 0x02000a00
  669. #error
  670. int x = y(zz);
  671. #else
  672. int x = 1;
  673. #endif
  674. ])], [ AC_MSG_RESULT([yes]) ],
  675. [ AC_MSG_RESULT([no])
  676. AC_MSG_ERROR([Libevent is not new enough. We require 2.0.10-stable or later]) ] )
  677. LIBS="$save_LIBS"
  678. LDFLAGS="$save_LDFLAGS"
  679. CPPFLAGS="$save_CPPFLAGS"
  680. AC_SUBST(TOR_LIBEVENT_LIBS)
  681. dnl ------------------------------------------------------
  682. dnl Where do you live, libm?
  683. dnl On some platforms (Haiku/BeOS) the math library is
  684. dnl part of libroot. In which case don't link against lm
  685. TOR_LIB_MATH=""
  686. save_LIBS="$LIBS"
  687. AC_SEARCH_LIBS(pow, [m], , AC_MSG_ERROR([Could not find pow in libm or libc.]))
  688. if test "$ac_cv_search_pow" != "none required"; then
  689. TOR_LIB_MATH="$ac_cv_search_pow"
  690. fi
  691. LIBS="$save_LIBS"
  692. AC_SUBST(TOR_LIB_MATH)
  693. dnl ------------------------------------------------------
  694. dnl Where do you live, openssl? And how do we call you?
  695. tor_openssl_pkg_redhat="openssl"
  696. tor_openssl_pkg_debian="libssl-dev"
  697. tor_openssl_devpkg_redhat="openssl-devel"
  698. tor_openssl_devpkg_debian="libssl-dev"
  699. ALT_openssl_WITHVAL=""
  700. AC_ARG_WITH(ssl-dir,
  701. AS_HELP_STRING(--with-ssl-dir=PATH, [obsolete alias for --with-openssl-dir]),
  702. [
  703. if test "x$withval" != "xno" && test "x$withval" != "x"; then
  704. ALT_openssl_WITHVAL="$withval"
  705. fi
  706. ])
  707. AC_MSG_NOTICE([Now, we'll look for OpenSSL >= 1.0.1])
  708. TOR_SEARCH_LIBRARY(openssl, $tryssldir, [-lssl -lcrypto $TOR_LIB_GDI $TOR_LIB_WS32],
  709. [#include <openssl/ssl.h>
  710. char *getenv(const char *);],
  711. [struct ssl_cipher_st;
  712. unsigned SSL_CIPHER_get_id(const struct ssl_cipher_st *);
  713. char *getenv(const char *);],
  714. dnl This funny-looking test program calls getenv, so that the compiler
  715. dnl will neither make code that call SSL_CIPHER_get_id(NULL) [producing
  716. dnl a crash], nor optimize out the call to SSL_CIPHER_get_id().
  717. dnl We look for SSL_cipher_get_id() because it is present in
  718. dnl OpenSSL >=1.0.1, because it is not deprecated, and because Tor
  719. dnl depends on it.
  720. [if (getenv("THIS_SHOULDNT_BE_SET_X201803")) SSL_CIPHER_get_id((void *)0);], [],
  721. [/usr/local/opt/openssl /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /opt/openssl])
  722. dnl XXXX check for OPENSSL_VERSION_NUMBER == SSLeay()
  723. if test "$enable_static_openssl" = "yes"; then
  724. if test "$tor_cv_library_openssl_dir" = "(system)"; then
  725. AC_MSG_ERROR("You must specify an explicit --with-openssl-dir=x option when using --enable-static-openssl")
  726. else
  727. TOR_OPENSSL_LIBS="$TOR_LIBDIR_openssl/libssl.a $TOR_LIBDIR_openssl/libcrypto.a"
  728. fi
  729. else
  730. TOR_OPENSSL_LIBS="-lssl -lcrypto"
  731. fi
  732. AC_SUBST(TOR_OPENSSL_LIBS)
  733. dnl Now check for particular openssl functions.
  734. save_LIBS="$LIBS"
  735. save_LDFLAGS="$LDFLAGS"
  736. save_CPPFLAGS="$CPPFLAGS"
  737. LIBS="$TOR_OPENSSL_LIBS $LIBS"
  738. LDFLAGS="$TOR_LDFLAGS_openssl $LDFLAGS"
  739. CPPFLAGS="$TOR_CPPFLAGS_openssl $CPPFLAGS"
  740. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  741. #include <openssl/opensslv.h>
  742. #if !defined(LIBRESSL_VERSION_NUMBER) && OPENSSL_VERSION_NUMBER < 0x1000100fL
  743. #error "too old"
  744. #endif
  745. ]], [[]])],
  746. [ : ],
  747. [ AC_MSG_ERROR([OpenSSL is too old. We require 1.0.1 or later. You can specify a path to a newer one with --with-openssl-dir.]) ])
  748. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  749. #include <openssl/opensslv.h>
  750. #include <openssl/evp.h>
  751. #if defined(OPENSSL_NO_EC) || defined(OPENSSL_NO_ECDH) || defined(OPENSSL_NO_ECDSA)
  752. #error "no ECC"
  753. #endif
  754. #if !defined(NID_X9_62_prime256v1) || !defined(NID_secp224r1)
  755. #error "curves unavailable"
  756. #endif
  757. ]], [[]])],
  758. [ : ],
  759. [ AC_MSG_ERROR([OpenSSL is built without full ECC support, including curves P256 and P224. You can specify a path to one with ECC support with --with-openssl-dir.]) ])
  760. AC_CHECK_MEMBERS([struct ssl_method_st.get_cipher_by_char], , ,
  761. [#include <openssl/ssl.h>
  762. ])
  763. AC_CHECK_FUNCS([ \
  764. SSL_SESSION_get_master_key \
  765. SSL_get_server_random \
  766. SSL_get_client_ciphers \
  767. SSL_get_client_random \
  768. SSL_CIPHER_find \
  769. TLS_method
  770. ])
  771. dnl Check if OpenSSL has scrypt implementation.
  772. AC_CHECK_FUNCS([ EVP_PBE_scrypt ])
  773. dnl Check if OpenSSL structures are opaque
  774. AC_CHECK_MEMBERS([SSL.state], , ,
  775. [#include <openssl/ssl.h>
  776. ])
  777. AC_CHECK_SIZEOF(SHA_CTX, , [AC_INCLUDES_DEFAULT()
  778. #include <openssl/sha.h>
  779. ])
  780. dnl Define the set of checks for KIST scheduler support.
  781. AC_DEFUN([CHECK_KIST_SUPPORT],[
  782. dnl KIST needs struct tcp_info and for certain members to exist.
  783. AC_CHECK_MEMBERS(
  784. [struct tcp_info.tcpi_unacked, struct tcp_info.tcpi_snd_mss],
  785. , ,[[#include <netinet/tcp.h>]])
  786. dnl KIST needs SIOCOUTQNSD to exist for an ioctl call.
  787. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
  788. #include <linux/sockios.h>
  789. #ifndef SIOCOUTQNSD
  790. #error
  791. #endif
  792. ])], have_siocoutqnsd=yes, have_siocoutqnsd=no)
  793. if test "x$have_siocoutqnsd" = "xyes"; then
  794. if test "x$ac_cv_member_struct_tcp_info_tcpi_unacked" = "xyes"; then
  795. if test "x$ac_cv_member_struct_tcp_info_tcpi_snd_mss" = "xyes"; then
  796. have_kist_support=yes
  797. fi
  798. fi
  799. fi
  800. ])
  801. dnl Now, trigger the check.
  802. CHECK_KIST_SUPPORT
  803. AS_IF([test "x$have_kist_support" = "xyes"],
  804. [AC_DEFINE(HAVE_KIST_SUPPORT, 1, [Defined if KIST scheduler is supported
  805. on this system])],
  806. [AC_MSG_NOTICE([KIST scheduler can't be used. Missing support.])])
  807. LIBS="$save_LIBS"
  808. LDFLAGS="$save_LDFLAGS"
  809. CPPFLAGS="$save_CPPFLAGS"
  810. dnl ------------------------------------------------------
  811. dnl Where do you live, zlib? And how do we call you?
  812. tor_zlib_pkg_redhat="zlib"
  813. tor_zlib_pkg_debian="zlib1g"
  814. tor_zlib_devpkg_redhat="zlib-devel"
  815. tor_zlib_devpkg_debian="zlib1g-dev"
  816. TOR_SEARCH_LIBRARY(zlib, $tryzlibdir, [-lz],
  817. [#include <zlib.h>],
  818. [const char * zlibVersion(void);],
  819. [zlibVersion();], [--with-zlib-dir],
  820. [/opt/zlib])
  821. if test "$enable_static_zlib" = "yes"; then
  822. if test "$tor_cv_library_zlib_dir" = "(system)"; then
  823. AC_MSG_ERROR("You must specify an explicit --with-zlib-dir=x option when
  824. using --enable-static-zlib")
  825. else
  826. TOR_ZLIB_LIBS="$TOR_LIBDIR_zlib/libz.a"
  827. fi
  828. else
  829. TOR_ZLIB_LIBS="-lz"
  830. fi
  831. AC_SUBST(TOR_ZLIB_LIBS)
  832. dnl ------------------------------------------------------
  833. dnl Where we do we find lzma?
  834. AC_ARG_ENABLE(lzma,
  835. AS_HELP_STRING(--enable-lzma, [enable support for the LZMA compression scheme.]),
  836. [case "${enableval}" in
  837. "yes") lzma=true ;;
  838. "no") lzma=false ;;
  839. * ) AC_MSG_ERROR(bad value for --enable-lzma) ;;
  840. esac], [lzma=auto])
  841. if test "x$enable_lzma" = "xno"; then
  842. have_lzma=no;
  843. else
  844. PKG_CHECK_MODULES([LZMA],
  845. [liblzma],
  846. have_lzma=yes,
  847. have_lzma=no)
  848. if test "x$have_lzma" = "xno" ; then
  849. AC_MSG_WARN([Unable to find liblzma.])
  850. fi
  851. fi
  852. if test "x$have_lzma" = "xyes"; then
  853. AC_DEFINE(HAVE_LZMA,1,[Have LZMA])
  854. TOR_LZMA_CFLAGS="${LZMA_CFLAGS}"
  855. TOR_LZMA_LIBS="${LZMA_LIBS}"
  856. fi
  857. AC_SUBST(TOR_LZMA_CFLAGS)
  858. AC_SUBST(TOR_LZMA_LIBS)
  859. dnl ------------------------------------------------------
  860. dnl Where we do we find zstd?
  861. AC_ARG_ENABLE(zstd,
  862. AS_HELP_STRING(--enable-zstd, [enable support for the Zstandard compression scheme.]),
  863. [case "${enableval}" in
  864. "yes") zstd=true ;;
  865. "no") zstd=false ;;
  866. * ) AC_MSG_ERROR(bad value for --enable-zstd) ;;
  867. esac], [zstd=auto])
  868. if test "x$enable_zstd" = "xno"; then
  869. have_zstd=no;
  870. else
  871. PKG_CHECK_MODULES([ZSTD],
  872. [libzstd >= 1.1],
  873. have_zstd=yes,
  874. have_zstd=no)
  875. if test "x$have_zstd" = "xno" ; then
  876. AC_MSG_WARN([Unable to find libzstd.])
  877. fi
  878. fi
  879. if test "x$have_zstd" = "xyes"; then
  880. AC_DEFINE(HAVE_ZSTD,1,[Have Zstd])
  881. TOR_ZSTD_CFLAGS="${ZSTD_CFLAGS}"
  882. TOR_ZSTD_LIBS="${ZSTD_LIBS}"
  883. dnl now check for zstd functions
  884. save_LIBS="$LIBS"
  885. save_CFLAGS="$CFLAGS"
  886. LIBS="$LIBS $ZSTD_LIBS"
  887. CFLAGS="$CFLAGS $ZSTD_CFLAGS"
  888. AC_CHECK_FUNCS(ZSTD_estimateCStreamSize \
  889. ZSTD_estimateDCtxSize)
  890. LIBS="$save_LIBS"
  891. CFLAGS="$save_CFLAGS"
  892. fi
  893. AC_SUBST(TOR_ZSTD_CFLAGS)
  894. AC_SUBST(TOR_ZSTD_LIBS)
  895. dnl ----------------------------------------------------------------------
  896. dnl Check if libcap is available for capabilities.
  897. tor_cap_pkg_debian="libcap2"
  898. tor_cap_pkg_redhat="libcap"
  899. tor_cap_devpkg_debian="libcap-dev"
  900. tor_cap_devpkg_redhat="libcap-devel"
  901. AC_CHECK_LIB([cap], [cap_init], [],
  902. AC_MSG_NOTICE([Libcap was not found. Capabilities will not be usable.])
  903. )
  904. AC_CHECK_FUNCS(cap_set_proc)
  905. dnl ---------------------------------------------------------------------
  906. dnl Now that we know about our major libraries, we can check for compiler
  907. dnl and linker hardening options. We need to do this with the libraries known,
  908. dnl since sometimes the linker will like an option but not be willing to
  909. dnl use it with a build of a library.
  910. all_ldflags_for_check="$TOR_LDFLAGS_zlib $TOR_LDFLAGS_openssl $TOR_LDFLAGS_libevent"
  911. all_libs_for_check="$TOR_ZLIB_LIBS $TOR_LIB_MATH $TOR_LIBEVENT_LIBS $TOR_OPENSSL_LIBS $TOR_SYSTEMD_LIBS $TOR_LIB_WS32 $TOR_LIB_GDI $TOR_LIB_USERENV $TOR_CAP_LIBS"
  912. CFLAGS_FTRAPV=
  913. CFLAGS_FWRAPV=
  914. CFLAGS_ASAN=
  915. CFLAGS_UBSAN=
  916. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
  917. #if !defined(__clang__)
  918. #error
  919. #endif])], have_clang=yes, have_clang=no)
  920. if test "x$enable_gcc_hardening" != "xno"; then
  921. CFLAGS="$CFLAGS -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2"
  922. if test "x$have_clang" = "xyes"; then
  923. TOR_CHECK_CFLAGS(-Qunused-arguments)
  924. fi
  925. TOR_CHECK_CFLAGS(-fstack-protector-all, also_link)
  926. AS_VAR_PUSHDEF([can_compile], [tor_cv_cflags_-fstack-protector-all])
  927. AS_VAR_PUSHDEF([can_link], [tor_can_link_-fstack-protector-all])
  928. m4_ifdef([AS_VAR_IF],[
  929. AS_VAR_IF(can_compile, [yes],
  930. AS_VAR_IF(can_link, [yes],
  931. [],
  932. AC_MSG_ERROR([We tried to build with stack protection; it looks like your compiler supports it but your libc does not provide it. Are you missing libssp? (You can --disable-gcc-hardening to ignore this error.)]))
  933. )])
  934. AS_VAR_POPDEF([can_link])
  935. AS_VAR_POPDEF([can_compile])
  936. TOR_CHECK_CFLAGS(-Wstack-protector)
  937. TOR_CHECK_CFLAGS(--param ssp-buffer-size=1)
  938. if test "$bwin32" = "false" && test "$enable_libfuzzer" != "yes" && test "$enable_oss_fuzz" != "yes"; then
  939. TOR_CHECK_CFLAGS(-fPIE)
  940. TOR_CHECK_LDFLAGS(-pie, "$all_ldflags_for_check", "$all_libs_for_check")
  941. fi
  942. TOR_TRY_COMPILE_WITH_CFLAGS(-fwrapv, also_link, CFLAGS_FWRAPV="-fwrapv", true)
  943. fi
  944. if test "$fragile_hardening" = "yes"; then
  945. TOR_TRY_COMPILE_WITH_CFLAGS(-ftrapv, also_link, CFLAGS_FTRAPV="-ftrapv", true)
  946. if test "$tor_cv_cflags__ftrapv" = "yes" && test "$tor_can_link__ftrapv" != "yes"; then
  947. AC_MSG_WARN([The compiler supports -ftrapv, but for some reason I was not able to link with -ftrapv. Are you missing run-time support? Run-time hardening will not work as well as it should.])
  948. fi
  949. if test "$tor_cv_cflags__ftrapv" != "yes"; then
  950. AC_MSG_ERROR([You requested fragile hardening, but the compiler does not seem to support -ftrapv.])
  951. fi
  952. TOR_TRY_COMPILE_WITH_CFLAGS([-fsanitize=address], also_link, CFLAGS_ASAN="-fsanitize=address", true)
  953. if test "$tor_cv_cflags__fsanitize_address" = "yes" && test "$tor_can_link__fsanitize_address" != "yes"; then
  954. AC_MSG_ERROR([The compiler supports -fsanitize=address, but for some reason I was not able to link when using it. Are you missing run-time support? With GCC you need libubsan.*, and with Clang you need libclang_rt.ubsan*])
  955. fi
  956. TOR_TRY_COMPILE_WITH_CFLAGS([-fsanitize=undefined], also_link, CFLAGS_UBSAN="-fsanitize=undefined", true)
  957. if test "$tor_cv_cflags__fsanitize_address" = "yes" && test "$tor_can_link__fsanitize_address" != "yes"; then
  958. AC_MSG_ERROR([The compiler supports -fsanitize=undefined, but for some reason I was not able to link when using it. Are you missing run-time support? With GCC you need libasan.*, and with Clang you need libclang_rt.ubsan*])
  959. fi
  960. TOR_CHECK_CFLAGS([-fno-omit-frame-pointer])
  961. fi
  962. dnl Find the correct libraries to add in order to use the sanitizers.
  963. dnl
  964. dnl When building Rust, Cargo will run the linker with the -nodefaultlibs
  965. dnl option, which will prevent the compiler from linking the sanitizer
  966. dnl libraries it needs. We need to specify them manually.
  967. dnl
  968. dnl What's more, we need to specify them in a linker script rather than
  969. dnl from build.rs: these options aren't allowed in the cargo:rustc-flags
  970. dnl variable.
  971. RUST_LINKER_OPTIONS=""
  972. if test "x$have_clang" = "xyes"; then
  973. if test "x$CFLAGS_ASAN" != "x"; then
  974. RUST_LINKER_OPTIONS="$RUST_LINKER_OPTIONS $CFLAGS_ASAN"
  975. fi
  976. if test "x$CFLAGS_UBSAN" != "x"; then
  977. RUST_LINKER_OPTIONS="$RUST_LINKER_OPTIONS $CFLAGS_UBSAN"
  978. fi
  979. else
  980. if test "x$CFLAGS_ASAN" != "x"; then
  981. RUST_LINKER_OPTIONS="$RUST_LINKER_OPTIONS -lasan"
  982. fi
  983. if test "x$CFLAGS_UBSAN" != "x"; then
  984. RUST_LINKER_OPTIONS="$RUST_LINKER_OPTIONS -lubsan"
  985. fi
  986. fi
  987. AC_SUBST(RUST_LINKER_OPTIONS)
  988. CFLAGS_BUGTRAP="$CFLAGS_FTRAPV $CFLAGS_ASAN $CFLAGS_UBSAN"
  989. CFLAGS_CONSTTIME="$CFLAGS_FWRAPV"
  990. mulodi_fixes_ftrapv=no
  991. if test "$have_clang" = "yes"; then
  992. saved_CFLAGS="$CFLAGS"
  993. CFLAGS="$CFLAGS $CFLAGS_FTRAPV"
  994. AC_MSG_CHECKING([whether clang -ftrapv can link a 64-bit int multiply])
  995. AC_LINK_IFELSE([
  996. AC_LANG_SOURCE([[
  997. #include <stdint.h>
  998. #include <stdlib.h>
  999. int main(int argc, char **argv)
  1000. {
  1001. int64_t x = ((int64_t)atoi(argv[1])) * (int64_t)atoi(argv[2])
  1002. * (int64_t)atoi(argv[3]);
  1003. return x == 9;
  1004. } ]])],
  1005. [ftrapv_can_link=yes; AC_MSG_RESULT([yes])],
  1006. [ftrapv_can_link=no; AC_MSG_RESULT([no])])
  1007. if test "$ftrapv_can_link" = "no"; then
  1008. AC_MSG_CHECKING([whether defining __mulodi4 fixes that])
  1009. AC_LINK_IFELSE([
  1010. AC_LANG_SOURCE([[
  1011. #include <stdint.h>
  1012. #include <stdlib.h>
  1013. int64_t __mulodi4(int64_t a, int64_t b, int *overflow) {
  1014. *overflow=0;
  1015. return a;
  1016. }
  1017. int main(int argc, char **argv)
  1018. {
  1019. int64_t x = ((int64_t)atoi(argv[1])) * (int64_t)atoi(argv[2])
  1020. * (int64_t)atoi(argv[3]);
  1021. return x == 9;
  1022. } ]])],
  1023. [mulodi_fixes_ftrapv=yes; AC_MSG_RESULT([yes])],
  1024. [mulodi_fixes_ftrapv=no; AC_MSG_RESULT([no])])
  1025. fi
  1026. CFLAGS="$saved_CFLAGS"
  1027. fi
  1028. AM_CONDITIONAL(ADD_MULODI4, test "$mulodi_fixes_ftrapv" = "yes")
  1029. dnl These cflags add bunches of branches, and we haven't been able to
  1030. dnl persuade ourselves that they're suitable for code that needs to be
  1031. dnl constant time.
  1032. AC_SUBST(CFLAGS_BUGTRAP)
  1033. dnl These cflags are variant ones sutable for code that needs to be
  1034. dnl constant-time.
  1035. AC_SUBST(CFLAGS_CONSTTIME)
  1036. if test "x$enable_linker_hardening" != "xno"; then
  1037. TOR_CHECK_LDFLAGS(-z relro -z now, "$all_ldflags_for_check", "$all_libs_for_check")
  1038. fi
  1039. # For backtrace support
  1040. TOR_CHECK_LDFLAGS(-rdynamic)
  1041. dnl ------------------------------------------------------
  1042. dnl Now see if we have a -fomit-frame-pointer compiler option.
  1043. saved_CFLAGS="$CFLAGS"
  1044. TOR_CHECK_CFLAGS(-fomit-frame-pointer)
  1045. F_OMIT_FRAME_POINTER=''
  1046. if test "$saved_CFLAGS" != "$CFLAGS"; then
  1047. if test "$fragile_hardening" = "yes"; then
  1048. F_OMIT_FRAME_POINTER='-fomit-frame-pointer'
  1049. fi
  1050. fi
  1051. CFLAGS="$saved_CFLAGS"
  1052. AC_SUBST(F_OMIT_FRAME_POINTER)
  1053. dnl ------------------------------------------------------
  1054. dnl If we are adding -fomit-frame-pointer (or if the compiler's doing it
  1055. dnl for us, as GCC 4.6 and later do at many optimization levels), then
  1056. dnl we should try to add -fasynchronous-unwind-tables so that our backtrace
  1057. dnl code will work.
  1058. TOR_CHECK_CFLAGS(-fasynchronous-unwind-tables)
  1059. dnl ============================================================
  1060. dnl Check for libseccomp
  1061. if test "x$enable_seccomp" != "xno"; then
  1062. AC_CHECK_HEADERS([seccomp.h])
  1063. AC_SEARCH_LIBS(seccomp_init, [seccomp])
  1064. fi
  1065. dnl ============================================================
  1066. dnl Check for libscrypt
  1067. if test "x$enable_libscrypt" != "xno"; then
  1068. AC_CHECK_HEADERS([libscrypt.h])
  1069. AC_SEARCH_LIBS(libscrypt_scrypt, [scrypt])
  1070. AC_CHECK_FUNCS([libscrypt_scrypt])
  1071. fi
  1072. dnl ============================================================
  1073. dnl We need an implementation of curve25519.
  1074. dnl set these defaults.
  1075. build_curve25519_donna=no
  1076. build_curve25519_donna_c64=no
  1077. use_curve25519_donna=no
  1078. use_curve25519_nacl=no
  1079. CURVE25519_LIBS=
  1080. dnl The best choice is using curve25519-donna-c64, but that requires
  1081. dnl that we
  1082. AC_CACHE_CHECK([whether we can use curve25519-donna-c64],
  1083. tor_cv_can_use_curve25519_donna_c64,
  1084. [AC_RUN_IFELSE(
  1085. [AC_LANG_PROGRAM([dnl
  1086. #include <stdint.h>
  1087. typedef unsigned uint128_t __attribute__((mode(TI)));
  1088. int func(uint64_t a, uint64_t b) {
  1089. uint128_t c = ((uint128_t)a) * b;
  1090. int ok = ((uint64_t)(c>>96)) == 522859 &&
  1091. (((uint64_t)(c>>64))&0xffffffffL) == 3604448702L &&
  1092. (((uint64_t)(c>>32))&0xffffffffL) == 2351960064L &&
  1093. (((uint64_t)(c))&0xffffffffL) == 0;
  1094. return ok;
  1095. }
  1096. ], [dnl
  1097. int ok = func( ((uint64_t)2000000000) * 1000000000,
  1098. ((uint64_t)1234567890) << 24);
  1099. return !ok;
  1100. ])],
  1101. [tor_cv_can_use_curve25519_donna_c64=yes],
  1102. [tor_cv_can_use_curve25519_donna_c64=no],
  1103. [AC_LINK_IFELSE(
  1104. [AC_LANG_PROGRAM([dnl
  1105. #include <stdint.h>
  1106. typedef unsigned uint128_t __attribute__((mode(TI)));
  1107. int func(uint64_t a, uint64_t b) {
  1108. uint128_t c = ((uint128_t)a) * b;
  1109. int ok = ((uint64_t)(c>>96)) == 522859 &&
  1110. (((uint64_t)(c>>64))&0xffffffffL) == 3604448702L &&
  1111. (((uint64_t)(c>>32))&0xffffffffL) == 2351960064L &&
  1112. (((uint64_t)(c))&0xffffffffL) == 0;
  1113. return ok;
  1114. }
  1115. ], [dnl
  1116. int ok = func( ((uint64_t)2000000000) * 1000000000,
  1117. ((uint64_t)1234567890) << 24);
  1118. return !ok;
  1119. ])],
  1120. [tor_cv_can_use_curve25519_donna_c64=cross],
  1121. [tor_cv_can_use_curve25519_donna_c64=no])])])
  1122. AC_CHECK_HEADERS([crypto_scalarmult_curve25519.h \
  1123. nacl/crypto_scalarmult_curve25519.h])
  1124. AC_CACHE_CHECK([for nacl compiled with a fast curve25519 implementation],
  1125. tor_cv_can_use_curve25519_nacl,
  1126. [tor_saved_LIBS="$LIBS"
  1127. LIBS="$LIBS -lnacl"
  1128. AC_LINK_IFELSE(
  1129. [AC_LANG_PROGRAM([dnl
  1130. #ifdef HAVE_CRYPTO_SCALARMULT_CURVE25519_H
  1131. #include <crypto_scalarmult_curve25519.h>
  1132. #elif defined(HAVE_NACL_CRYPTO_SCALARMULT_CURVE25519_H)
  1133. #include <nacl/crypto_scalarmult_curve25519.h>
  1134. #endif
  1135. #ifdef crypto_scalarmult_curve25519_ref_BYTES
  1136. #error Hey, this is the reference implementation! That's not fast.
  1137. #endif
  1138. ], [
  1139. unsigned char *a, *b, *c; crypto_scalarmult_curve25519(a,b,c);
  1140. ])], [tor_cv_can_use_curve25519_nacl=yes],
  1141. [tor_cv_can_use_curve25519_nacl=no])
  1142. LIBS="$tor_saved_LIBS" ])
  1143. dnl Okay, now we need to figure out which one to actually use. Fall back
  1144. dnl to curve25519-donna.c
  1145. if test "x$tor_cv_can_use_curve25519_donna_c64" != "xno"; then
  1146. build_curve25519_donna_c64=yes
  1147. use_curve25519_donna=yes
  1148. elif test "x$tor_cv_can_use_curve25519_nacl" = "xyes"; then
  1149. use_curve25519_nacl=yes
  1150. CURVE25519_LIBS=-lnacl
  1151. else
  1152. build_curve25519_donna=yes
  1153. use_curve25519_donna=yes
  1154. fi
  1155. if test "x$use_curve25519_donna" = "xyes"; then
  1156. AC_DEFINE(USE_CURVE25519_DONNA, 1,
  1157. [Defined if we should use an internal curve25519_donna{,_c64} implementation])
  1158. fi
  1159. if test "x$use_curve25519_nacl" = "xyes"; then
  1160. AC_DEFINE(USE_CURVE25519_NACL, 1,
  1161. [Defined if we should use a curve25519 from nacl])
  1162. fi
  1163. AM_CONDITIONAL(BUILD_CURVE25519_DONNA,
  1164. test "x$build_curve25519_donna" = "xyes")
  1165. AM_CONDITIONAL(BUILD_CURVE25519_DONNA_C64,
  1166. test "x$build_curve25519_donna_c64" = "xyes")
  1167. AC_SUBST(CURVE25519_LIBS)
  1168. dnl Make sure to enable support for large off_t if available.
  1169. AC_SYS_LARGEFILE
  1170. AC_CHECK_HEADERS([errno.h \
  1171. fcntl.h \
  1172. signal.h \
  1173. string.h \
  1174. sys/capability.h \
  1175. sys/fcntl.h \
  1176. sys/stat.h \
  1177. sys/time.h \
  1178. sys/types.h \
  1179. time.h \
  1180. unistd.h \
  1181. arpa/inet.h \
  1182. crt_externs.h \
  1183. execinfo.h \
  1184. gnu/libc-version.h \
  1185. grp.h \
  1186. ifaddrs.h \
  1187. inttypes.h \
  1188. limits.h \
  1189. linux/types.h \
  1190. machine/limits.h \
  1191. malloc.h \
  1192. malloc/malloc.h \
  1193. malloc_np.h \
  1194. netdb.h \
  1195. netinet/in.h \
  1196. netinet/in6.h \
  1197. pwd.h \
  1198. readpassphrase.h \
  1199. stdint.h \
  1200. stdatomic.h \
  1201. sys/eventfd.h \
  1202. sys/file.h \
  1203. sys/ioctl.h \
  1204. sys/limits.h \
  1205. sys/mman.h \
  1206. sys/param.h \
  1207. sys/prctl.h \
  1208. sys/random.h \
  1209. sys/resource.h \
  1210. sys/select.h \
  1211. sys/socket.h \
  1212. sys/statvfs.h \
  1213. sys/syscall.h \
  1214. sys/sysctl.h \
  1215. sys/syslimits.h \
  1216. sys/time.h \
  1217. sys/types.h \
  1218. sys/un.h \
  1219. sys/utime.h \
  1220. sys/wait.h \
  1221. syslog.h \
  1222. utime.h])
  1223. AC_CHECK_HEADERS(sys/param.h)
  1224. AC_CHECK_HEADERS(net/if.h, net_if_found=1, net_if_found=0,
  1225. [#ifdef HAVE_SYS_TYPES_H
  1226. #include <sys/types.h>
  1227. #endif
  1228. #ifdef HAVE_SYS_SOCKET_H
  1229. #include <sys/socket.h>
  1230. #endif])
  1231. AC_CHECK_HEADERS(net/pfvar.h, net_pfvar_found=1, net_pfvar_found=0,
  1232. [#ifdef HAVE_SYS_TYPES_H
  1233. #include <sys/types.h>
  1234. #endif
  1235. #ifdef HAVE_SYS_SOCKET_H
  1236. #include <sys/socket.h>
  1237. #endif
  1238. #ifdef HAVE_NET_IF_H
  1239. #include <net/if.h>
  1240. #endif
  1241. #ifdef HAVE_NETINET_IN_H
  1242. #include <netinet/in.h>
  1243. #endif])
  1244. AC_CHECK_HEADERS(linux/if.h,[],[],
  1245. [
  1246. #ifdef HAVE_SYS_SOCKET_H
  1247. #include <sys/socket.h>
  1248. #endif
  1249. ])
  1250. AC_CHECK_HEADERS(linux/netfilter_ipv4.h,
  1251. linux_netfilter_ipv4=1, linux_netfilter_ipv4=0,
  1252. [#ifdef HAVE_SYS_TYPES_H
  1253. #include <sys/types.h>
  1254. #endif
  1255. #ifdef HAVE_SYS_SOCKET_H
  1256. #include <sys/socket.h>
  1257. #endif
  1258. #ifdef HAVE_LIMITS_H
  1259. #include <limits.h>
  1260. #endif
  1261. #ifdef HAVE_LINUX_TYPES_H
  1262. #include <linux/types.h>
  1263. #endif
  1264. #ifdef HAVE_NETINET_IN6_H
  1265. #include <netinet/in6.h>
  1266. #endif
  1267. #ifdef HAVE_NETINET_IN_H
  1268. #include <netinet/in.h>
  1269. #endif])
  1270. AC_CHECK_HEADERS(linux/netfilter_ipv6/ip6_tables.h,
  1271. linux_netfilter_ipv6_ip6_tables=1, linux_netfilter_ipv6_ip6_tables=0,
  1272. [#ifdef HAVE_SYS_TYPES_H
  1273. #include <sys/types.h>
  1274. #endif
  1275. #ifdef HAVE_SYS_SOCKET_H
  1276. #include <sys/socket.h>
  1277. #endif
  1278. #ifdef HAVE_LIMITS_H
  1279. #include <limits.h>
  1280. #endif
  1281. #ifdef HAVE_LINUX_TYPES_H
  1282. #include <linux/types.h>
  1283. #endif
  1284. #ifdef HAVE_NETINET_IN6_H
  1285. #include <netinet/in6.h>
  1286. #endif
  1287. #ifdef HAVE_NETINET_IN_H
  1288. #include <netinet/in.h>
  1289. #endif
  1290. #ifdef HAVE_LINUX_IF_H
  1291. #include <linux/if.h>
  1292. #endif])
  1293. transparent_ok=0
  1294. if test "x$net_if_found" = "x1" && test "x$net_pfvar_found" = "x1"; then
  1295. transparent_ok=1
  1296. fi
  1297. if test "x$linux_netfilter_ipv4" = "x1"; then
  1298. transparent_ok=1
  1299. fi
  1300. if test "x$linux_netfilter_ipv6_ip6_tables" = "x1"; then
  1301. transparent_ok=1
  1302. fi
  1303. if test "x$transparent_ok" = "x1"; then
  1304. AC_DEFINE(USE_TRANSPARENT, 1, "Define to enable transparent proxy support")
  1305. else
  1306. AC_MSG_NOTICE([Transparent proxy support enabled, but missing headers.])
  1307. fi
  1308. AC_CHECK_MEMBERS([struct timeval.tv_sec], , ,
  1309. [#ifdef HAVE_SYS_TYPES_H
  1310. #include <sys/types.h>
  1311. #endif
  1312. #ifdef HAVE_SYS_TIME_H
  1313. #include <sys/time.h>
  1314. #endif])
  1315. dnl In case we aren't given a working stdint.h, we'll need to grow our own.
  1316. dnl Watch out.
  1317. AC_CHECK_SIZEOF(int8_t)
  1318. AC_CHECK_SIZEOF(int16_t)
  1319. AC_CHECK_SIZEOF(int32_t)
  1320. AC_CHECK_SIZEOF(int64_t)
  1321. AC_CHECK_SIZEOF(uint8_t)
  1322. AC_CHECK_SIZEOF(uint16_t)
  1323. AC_CHECK_SIZEOF(uint32_t)
  1324. AC_CHECK_SIZEOF(uint64_t)
  1325. AC_CHECK_SIZEOF(intptr_t)
  1326. AC_CHECK_SIZEOF(uintptr_t)
  1327. dnl AC_CHECK_TYPES([int8_t, int16_t, int32_t, int64_t, uint8_t, uint16_t, uint32_t, uint64_t, intptr_t, uintptr_t])
  1328. AC_CHECK_SIZEOF(char)
  1329. AC_CHECK_SIZEOF(short)
  1330. AC_CHECK_SIZEOF(int)
  1331. AC_CHECK_SIZEOF(long)
  1332. AC_CHECK_SIZEOF(long long)
  1333. AC_CHECK_SIZEOF(__int64)
  1334. AC_CHECK_SIZEOF(void *)
  1335. AC_CHECK_SIZEOF(time_t)
  1336. AC_CHECK_SIZEOF(size_t)
  1337. AC_CHECK_SIZEOF(pid_t)
  1338. AC_CHECK_TYPES([uint, u_char, ssize_t])
  1339. AC_PC_FROM_UCONTEXT([:])
  1340. dnl used to include sockaddr_storage, but everybody has that.
  1341. AC_CHECK_TYPES([struct in6_addr, struct sockaddr_in6, sa_family_t], , ,
  1342. [#ifdef HAVE_SYS_TYPES_H
  1343. #include <sys/types.h>
  1344. #endif
  1345. #ifdef HAVE_NETINET_IN_H
  1346. #include <netinet/in.h>
  1347. #endif
  1348. #ifdef HAVE_NETINET_IN6_H
  1349. #include <netinet/in6.h>
  1350. #endif
  1351. #ifdef HAVE_SYS_SOCKET_H
  1352. #include <sys/socket.h>
  1353. #endif
  1354. #ifdef _WIN32
  1355. #define _WIN32_WINNT 0x0501
  1356. #define WIN32_LEAN_AND_MEAN
  1357. #include <winsock2.h>
  1358. #include <ws2tcpip.h>
  1359. #endif
  1360. ])
  1361. AC_CHECK_MEMBERS([struct in6_addr.s6_addr32, struct in6_addr.s6_addr16, struct sockaddr_in.sin_len, struct sockaddr_in6.sin6_len], , ,
  1362. [#ifdef HAVE_SYS_TYPES_H
  1363. #include <sys/types.h>
  1364. #endif
  1365. #ifdef HAVE_NETINET_IN_H
  1366. #include <netinet/in.h>
  1367. #endif
  1368. #ifdef HAVE_NETINET_IN6_H
  1369. #include <netinet/in6.h>
  1370. #endif
  1371. #ifdef HAVE_SYS_SOCKET_H
  1372. #include <sys/socket.h>
  1373. #endif
  1374. #ifdef _WIN32
  1375. #define _WIN32_WINNT 0x0501
  1376. #define WIN32_LEAN_AND_MEAN
  1377. #include <winsock2.h>
  1378. #include <ws2tcpip.h>
  1379. #endif
  1380. ])
  1381. AC_CHECK_TYPES([rlim_t], , ,
  1382. [#ifdef HAVE_SYS_TYPES_H
  1383. #include <sys/types.h>
  1384. #endif
  1385. #ifdef HAVE_SYS_TIME_H
  1386. #include <sys/time.h>
  1387. #endif
  1388. #ifdef HAVE_SYS_RESOURCE_H
  1389. #include <sys/resource.h>
  1390. #endif
  1391. ])
  1392. AX_CHECK_SIGN([time_t],
  1393. [ : ],
  1394. [ : ], [
  1395. #ifdef HAVE_SYS_TYPES_H
  1396. #include <sys/types.h>
  1397. #endif
  1398. #ifdef HAVE_SYS_TIME_H
  1399. #include <sys/time.h>
  1400. #endif
  1401. #ifdef HAVE_TIME_H
  1402. #include <time.h>
  1403. #endif
  1404. ])
  1405. if test "$ax_cv_decl_time_t_signed" = "no"; then
  1406. AC_MSG_ERROR([You have an unsigned time_t; Tor does not support that. Please tell the Tor developers about your interesting platform.])
  1407. fi
  1408. AX_CHECK_SIGN([size_t],
  1409. [ tor_cv_size_t_signed=yes ],
  1410. [ tor_cv_size_t_signed=no ], [
  1411. #ifdef HAVE_SYS_TYPES_H
  1412. #include <sys/types.h>
  1413. #endif
  1414. ])
  1415. if test "$ax_cv_decl_size_t_signed" = "yes"; then
  1416. AC_MSG_ERROR([You have a signed size_t; that's grossly nonconformant.])
  1417. fi
  1418. AX_CHECK_SIGN([enum always],
  1419. [ AC_DEFINE(ENUM_VALS_ARE_SIGNED, 1, [Define if enum is always signed]) ],
  1420. [ : ], [
  1421. enum always { AAA, BBB, CCC };
  1422. ])
  1423. AC_CHECK_SIZEOF(socklen_t, , [AC_INCLUDES_DEFAULT()
  1424. #ifdef HAVE_SYS_SOCKET_H
  1425. #include <sys/socket.h>
  1426. #endif
  1427. ])
  1428. # We want to make sure that we _don't_ have a cell_t defined, like IRIX does.
  1429. AC_CHECK_SIZEOF(cell_t)
  1430. # Now make sure that NULL can be represented as zero bytes.
  1431. AC_CACHE_CHECK([whether memset(0) sets pointers to NULL], tor_cv_null_is_zero,
  1432. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  1433. [[#include <stdlib.h>
  1434. #include <string.h>
  1435. #include <stdio.h>
  1436. #ifdef HAVE_STDDEF_H
  1437. #include <stddef.h>
  1438. #endif
  1439. int main () { char *p1,*p2; p1=NULL; memset(&p2,0,sizeof(p2));
  1440. return memcmp(&p1,&p2,sizeof(char*))?1:0; }]])],
  1441. [tor_cv_null_is_zero=yes],
  1442. [tor_cv_null_is_zero=no],
  1443. [tor_cv_null_is_zero=cross])])
  1444. if test "$tor_cv_null_is_zero" = "cross"; then
  1445. # Cross-compiling; let's hope that the target isn't raving mad.
  1446. AC_MSG_NOTICE([Cross-compiling: we'll assume that NULL is represented as a sequence of 0-valued bytes.])
  1447. fi
  1448. if test "$tor_cv_null_is_zero" != "no"; then
  1449. AC_DEFINE([NULL_REP_IS_ZERO_BYTES], 1,
  1450. [Define to 1 iff memset(0) sets pointers to NULL])
  1451. fi
  1452. AC_CACHE_CHECK([whether memset(0) sets doubles to 0.0], tor_cv_dbl0_is_zero,
  1453. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  1454. [[#include <stdlib.h>
  1455. #include <string.h>
  1456. #include <stdio.h>
  1457. #ifdef HAVE_STDDEF_H
  1458. #include <stddef.h>
  1459. #endif
  1460. int main () { double d1,d2; d1=0; memset(&d2,0,sizeof(d2));
  1461. return memcmp(&d1,&d2,sizeof(d1))?1:0; }]])],
  1462. [tor_cv_dbl0_is_zero=yes],
  1463. [tor_cv_dbl0_is_zero=no],
  1464. [tor_cv_dbl0_is_zero=cross])])
  1465. if test "$tor_cv_dbl0_is_zero" = "cross"; then
  1466. # Cross-compiling; let's hope that the target isn't raving mad.
  1467. AC_MSG_NOTICE([Cross-compiling: we'll assume that 0.0 can be represented as a sequence of 0-valued bytes.])
  1468. fi
  1469. if test "$tor_cv_dbl0_is_zero" != "no"; then
  1470. AC_DEFINE([DOUBLE_0_REP_IS_ZERO_BYTES], 1,
  1471. [Define to 1 iff memset(0) sets doubles to 0.0])
  1472. fi
  1473. # And what happens when we malloc zero?
  1474. AC_CACHE_CHECK([whether we can malloc(0) safely.], tor_cv_malloc_zero_works,
  1475. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  1476. [[#include <stdlib.h>
  1477. #include <string.h>
  1478. #include <stdio.h>
  1479. #ifdef HAVE_STDDEF_H
  1480. #include <stddef.h>
  1481. #endif
  1482. int main () { return malloc(0)?0:1; }]])],
  1483. [tor_cv_malloc_zero_works=yes],
  1484. [tor_cv_malloc_zero_works=no],
  1485. [tor_cv_malloc_zero_works=cross])])
  1486. if test "$tor_cv_malloc_zero_works" = "cross"; then
  1487. # Cross-compiling; let's hope that the target isn't raving mad.
  1488. AC_MSG_NOTICE([Cross-compiling: we'll assume that we need to check malloc() arguments for 0.])
  1489. fi
  1490. if test "$tor_cv_malloc_zero_works" = "yes"; then
  1491. AC_DEFINE([MALLOC_ZERO_WORKS], 1,
  1492. [Define to 1 iff malloc(0) returns a pointer])
  1493. fi
  1494. # whether we seem to be in a 2s-complement world.
  1495. AC_CACHE_CHECK([whether we are using 2s-complement arithmetic], tor_cv_twos_complement,
  1496. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  1497. [[int main () { int problem = ((-99) != (~99)+1);
  1498. return problem ? 1 : 0; }]])],
  1499. [tor_cv_twos_complement=yes],
  1500. [tor_cv_twos_complement=no],
  1501. [tor_cv_twos_complement=cross])])
  1502. if test "$tor_cv_twos_complement" = "cross"; then
  1503. # Cross-compiling; let's hope that the target isn't raving mad.
  1504. AC_MSG_NOTICE([Cross-compiling: we'll assume that negative integers are represented with two's complement.])
  1505. fi
  1506. if test "$tor_cv_twos_complement" != "no"; then
  1507. AC_DEFINE([USING_TWOS_COMPLEMENT], 1,
  1508. [Define to 1 iff we represent negative integers with
  1509. two's complement])
  1510. fi
  1511. # What does shifting a negative value do?
  1512. AC_CACHE_CHECK([whether right-shift on negative values does sign-extension], tor_cv_sign_extend,
  1513. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  1514. [[int main () { int okay = (-60 >> 8) == -1; return okay ? 0 : 1; }]])],
  1515. [tor_cv_sign_extend=yes],
  1516. [tor_cv_sign_extend=no],
  1517. [tor_cv_sign_extend=cross])])
  1518. if test "$tor_cv_sign_extend" = "cross"; then
  1519. # Cross-compiling; let's hope that the target isn't raving mad.
  1520. AC_MSG_NOTICE([Cross-compiling: we'll assume that right-shifting negative integers causes sign-extension])
  1521. fi
  1522. if test "$tor_cv_sign_extend" != "no"; then
  1523. AC_DEFINE([RSHIFT_DOES_SIGN_EXTEND], 1,
  1524. [Define to 1 iff right-shifting a negative value performs sign-extension])
  1525. fi
  1526. # Is uint8_t the same type as unsigned char?
  1527. AC_CACHE_CHECK([whether uint8_t is the same type as unsigned char], tor_cv_uint8_uchar,
  1528. [AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
  1529. #include <stdint.h>
  1530. extern uint8_t c;
  1531. unsigned char c;]])],
  1532. [tor_cv_uint8_uchar=yes],
  1533. [tor_cv_uint8_uchar=no],
  1534. [tor_cv_uint8_uchar=cross])])
  1535. if test "$tor_cv_uint8_uchar" = "cross"; then
  1536. AC_MSG_NOTICE([Cross-compiling: we'll assume that uint8_t is the same type as unsigned char])
  1537. fi
  1538. if test "$tor_cv_uint8_uchar" = "no"; then
  1539. AC_MSG_ERROR([We assume that uint8_t is the same type as unsigned char, but your compiler disagrees.])
  1540. fi
  1541. AC_ARG_WITH(tcmalloc,
  1542. AS_HELP_STRING(--with-tcmalloc, [use tcmalloc memory allocation library]),
  1543. [ tcmalloc=yes ], [ tcmalloc=no ])
  1544. if test "x$tcmalloc" = "xyes"; then
  1545. LDFLAGS="-ltcmalloc $LDFLAGS"
  1546. fi
  1547. using_custom_malloc=no
  1548. if test "x$enable_openbsd_malloc" = "xyes"; then
  1549. using_custom_malloc=yes
  1550. fi
  1551. if test "x$tcmalloc" = "xyes"; then
  1552. using_custom_malloc=yes
  1553. fi
  1554. if test "$using_custom_malloc" = "no"; then
  1555. AC_CHECK_FUNCS(mallinfo)
  1556. fi
  1557. # By default, we're going to assume we don't have mlockall()
  1558. # bionic and other platforms have various broken mlockall subsystems.
  1559. # Some systems don't have a working mlockall, some aren't linkable,
  1560. # and some have it but don't declare it.
  1561. AC_CHECK_FUNCS(mlockall)
  1562. AC_CHECK_DECLS([mlockall], , , [
  1563. #ifdef HAVE_SYS_MMAN_H
  1564. #include <sys/mman.h>
  1565. #endif])
  1566. # Allow user to specify an alternate syslog facility
  1567. AC_ARG_WITH(syslog-facility,
  1568. AS_HELP_STRING(--with-syslog-facility=LOG, [syslog facility to use (default=LOG_DAEMON)]),
  1569. syslog_facility="$withval", syslog_facility="LOG_DAEMON")
  1570. AC_DEFINE_UNQUOTED(LOGFACILITY,$syslog_facility,[name of the syslog facility])
  1571. AC_SUBST(LOGFACILITY)
  1572. # Check if we have getresuid and getresgid
  1573. AC_CHECK_FUNCS(getresuid getresgid)
  1574. # Check for gethostbyname_r in all its glorious incompatible versions.
  1575. # (This logic is based on that in Python's configure.in)
  1576. AH_TEMPLATE(HAVE_GETHOSTBYNAME_R,
  1577. [Define this if you have any gethostbyname_r()])
  1578. AC_CHECK_FUNC(gethostbyname_r, [
  1579. AC_MSG_CHECKING([how many arguments gethostbyname_r() wants])
  1580. OLD_CFLAGS=$CFLAGS
  1581. CFLAGS="$CFLAGS $MY_CPPFLAGS $MY_THREAD_CPPFLAGS $MY_CFLAGS"
  1582. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  1583. #include <netdb.h>
  1584. ]], [[
  1585. char *cp1, *cp2;
  1586. struct hostent *h1, *h2;
  1587. int i1, i2;
  1588. (void)gethostbyname_r(cp1,h1,cp2,i1,&h2,&i2);
  1589. ]])],[
  1590. AC_DEFINE(HAVE_GETHOSTBYNAME_R)
  1591. AC_DEFINE(HAVE_GETHOSTBYNAME_R_6_ARG, 1,
  1592. [Define this if gethostbyname_r takes 6 arguments])
  1593. AC_MSG_RESULT(6)
  1594. ], [
  1595. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  1596. #include <netdb.h>
  1597. ]], [[
  1598. char *cp1, *cp2;
  1599. struct hostent *h1;
  1600. int i1, i2;
  1601. (void)gethostbyname_r(cp1,h1,cp2,i1,&i2);
  1602. ]])], [
  1603. AC_DEFINE(HAVE_GETHOSTBYNAME_R)
  1604. AC_DEFINE(HAVE_GETHOSTBYNAME_R_5_ARG, 1,
  1605. [Define this if gethostbyname_r takes 5 arguments])
  1606. AC_MSG_RESULT(5)
  1607. ], [
  1608. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  1609. #include <netdb.h>
  1610. ]], [[
  1611. char *cp1;
  1612. struct hostent *h1;
  1613. struct hostent_data hd;
  1614. (void) gethostbyname_r(cp1,h1,&hd);
  1615. ]])], [
  1616. AC_DEFINE(HAVE_GETHOSTBYNAME_R)
  1617. AC_DEFINE(HAVE_GETHOSTBYNAME_R_3_ARG, 1,
  1618. [Define this if gethostbyname_r takes 3 arguments])
  1619. AC_MSG_RESULT(3)
  1620. ], [
  1621. AC_MSG_RESULT(0)
  1622. ])
  1623. ])
  1624. ])
  1625. CFLAGS=$OLD_CFLAGS
  1626. ])
  1627. AC_CACHE_CHECK([whether the C compiler supports __func__],
  1628. tor_cv_have_func_macro,
  1629. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  1630. #include <stdio.h>
  1631. int main(int c, char **v) { puts(__func__); }])],
  1632. tor_cv_have_func_macro=yes,
  1633. tor_cv_have_func_macro=no))
  1634. AC_CACHE_CHECK([whether the C compiler supports __FUNC__],
  1635. tor_cv_have_FUNC_macro,
  1636. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  1637. #include <stdio.h>
  1638. int main(int c, char **v) { puts(__FUNC__); }])],
  1639. tor_cv_have_FUNC_macro=yes,
  1640. tor_cv_have_FUNC_macro=no))
  1641. AC_CACHE_CHECK([whether the C compiler supports __FUNCTION__],
  1642. tor_cv_have_FUNCTION_macro,
  1643. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  1644. #include <stdio.h>
  1645. int main(int c, char **v) { puts(__FUNCTION__); }])],
  1646. tor_cv_have_FUNCTION_macro=yes,
  1647. tor_cv_have_FUNCTION_macro=no))
  1648. AC_CACHE_CHECK([whether we have extern char **environ already declared],
  1649. tor_cv_have_environ_declared,
  1650. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  1651. #ifdef HAVE_UNISTD_H
  1652. #include <unistd.h>
  1653. #endif
  1654. #include <stdlib.h>
  1655. int main(int c, char **v) { char **t = environ; }])],
  1656. tor_cv_have_environ_declared=yes,
  1657. tor_cv_have_environ_declared=no))
  1658. if test "$tor_cv_have_func_macro" = "yes"; then
  1659. AC_DEFINE(HAVE_MACRO__func__, 1, [Defined if the compiler supports __func__])
  1660. fi
  1661. if test "$tor_cv_have_FUNC_macro" = "yes"; then
  1662. AC_DEFINE(HAVE_MACRO__FUNC__, 1, [Defined if the compiler supports __FUNC__])
  1663. fi
  1664. if test "$tor_cv_have_FUNCTION_macro" = "yes"; then
  1665. AC_DEFINE(HAVE_MACRO__FUNCTION__, 1,
  1666. [Defined if the compiler supports __FUNCTION__])
  1667. fi
  1668. if test "$tor_cv_have_environ_declared" = "yes"; then
  1669. AC_DEFINE(HAVE_EXTERN_ENVIRON_DECLARED, 1,
  1670. [Defined if we have extern char **environ already declared])
  1671. fi
  1672. # $prefix stores the value of the --prefix command line option, or
  1673. # NONE if the option wasn't set. In the case that it wasn't set, make
  1674. # it be the default, so that we can use it to expand directories now.
  1675. if test "x$prefix" = "xNONE"; then
  1676. prefix=$ac_default_prefix
  1677. fi
  1678. # and similarly for $exec_prefix
  1679. if test "x$exec_prefix" = "xNONE"; then
  1680. exec_prefix=$prefix
  1681. fi
  1682. if test "x$BUILDDIR" = "x"; then
  1683. BUILDDIR=`pwd`
  1684. fi
  1685. AC_SUBST(BUILDDIR)
  1686. AH_TEMPLATE([BUILDDIR],[tor's build directory])
  1687. AC_DEFINE_UNQUOTED(BUILDDIR,"$BUILDDIR")
  1688. if test "x$SRCDIR" = "x"; then
  1689. SRCDIR=$(cd "$srcdir"; pwd)
  1690. fi
  1691. AH_TEMPLATE([SRCDIR],[tor's sourcedir directory])
  1692. AC_DEFINE_UNQUOTED(SRCDIR,"$SRCDIR")
  1693. if test "x$CONFDIR" = "x"; then
  1694. CONFDIR=`eval echo $sysconfdir/tor`
  1695. fi
  1696. AC_SUBST(CONFDIR)
  1697. AH_TEMPLATE([CONFDIR],[tor's configuration directory])
  1698. AC_DEFINE_UNQUOTED(CONFDIR,"$CONFDIR")
  1699. BINDIR=`eval echo $bindir`
  1700. AC_SUBST(BINDIR)
  1701. LOCALSTATEDIR=`eval echo $localstatedir`
  1702. AC_SUBST(LOCALSTATEDIR)
  1703. if test "$bwin32" = "true"; then
  1704. # Test if the linker supports the --nxcompat and --dynamicbase options
  1705. # for Windows
  1706. save_LDFLAGS="$LDFLAGS"
  1707. LDFLAGS="-Wl,--nxcompat -Wl,--dynamicbase"
  1708. AC_MSG_CHECKING([whether the linker supports DllCharacteristics])
  1709. AC_LINK_IFELSE([AC_LANG_PROGRAM([])],
  1710. [AC_MSG_RESULT([yes])]
  1711. [save_LDFLAGS="$save_LDFLAGS $LDFLAGS"],
  1712. [AC_MSG_RESULT([no])]
  1713. )
  1714. LDFLAGS="$save_LDFLAGS"
  1715. fi
  1716. # Set CFLAGS _after_ all the above checks, since our warnings are stricter
  1717. # than autoconf's macros like.
  1718. if test "$GCC" = "yes"; then
  1719. # Disable GCC's strict aliasing checks. They are an hours-to-debug
  1720. # accident waiting to happen.
  1721. CFLAGS="$CFLAGS -Wall -fno-strict-aliasing"
  1722. else
  1723. # Override optimization level for non-gcc compilers
  1724. CFLAGS="$CFLAGS -O"
  1725. enable_gcc_warnings=no
  1726. enable_gcc_warnings_advisory=no
  1727. fi
  1728. # Warnings implies advisory-warnings and -Werror.
  1729. if test "$enable_gcc_warnings" = "yes"; then
  1730. enable_gcc_warnings_advisory=yes
  1731. enable_fatal_warnings=yes
  1732. fi
  1733. # OS X Lion started deprecating the system openssl. Let's just disable
  1734. # all deprecation warnings on OS X. Also, to potentially make the binary
  1735. # a little smaller, let's enable dead_strip.
  1736. case "$host_os" in
  1737. darwin*)
  1738. CFLAGS="$CFLAGS -Wno-deprecated-declarations"
  1739. LDFLAGS="$LDFLAGS -dead_strip" ;;
  1740. esac
  1741. # Add some more warnings which we use in development but not in the
  1742. # released versions. (Some relevant gcc versions can't handle these.)
  1743. #
  1744. # Note that we have to do this near the end of the autoconf process, or
  1745. # else we may run into problems when these warnings hit on the testing C
  1746. # programs that autoconf wants to build.
  1747. if test "x$enable_gcc_warnings_advisory" != "xno"; then
  1748. case "$host" in
  1749. *-*-openbsd* | *-*-bitrig*)
  1750. # Some OpenBSD versions (like 4.8) have -Wsystem-headers by default.
  1751. # That's fine, except that the headers don't pass -Wredundant-decls.
  1752. # Therefore, let's disable -Wsystem-headers when we're building
  1753. # with maximal warnings on OpenBSD.
  1754. CFLAGS="$CFLAGS -Wno-system-headers" ;;
  1755. esac
  1756. # GCC4.3 users once report trouble with -Wstrict-overflow=5. GCC5 users
  1757. # have it work better.
  1758. # CFLAGS="$CFLAGS -Wstrict-overflow=1"
  1759. # This warning was added in gcc 4.3, but it appears to generate
  1760. # spurious warnings in gcc 4.4. I don't know if it works in 4.5.
  1761. #CFLAGS="$CFLAGS -Wlogical-op"
  1762. m4_foreach_w([warning_flag], [
  1763. -Waddress
  1764. -Waddress-of-array-temporary
  1765. -Waddress-of-temporary
  1766. -Wambiguous-macro
  1767. -Wanonymous-pack-parens
  1768. -Warc
  1769. -Warc-abi
  1770. -Warc-bridge-casts-disallowed-in-nonarc
  1771. -Warc-maybe-repeated-use-of-weak
  1772. -Warc-performSelector-leaks
  1773. -Warc-repeated-use-of-weak
  1774. -Warray-bounds
  1775. -Warray-bounds-pointer-arithmetic
  1776. -Wasm
  1777. -Wasm-operand-widths
  1778. -Watomic-properties
  1779. -Watomic-property-with-user-defined-accessor
  1780. -Wauto-import
  1781. -Wauto-storage-class
  1782. -Wauto-var-id
  1783. -Wavailability
  1784. -Wbackslash-newline-escape
  1785. -Wbad-array-new-length
  1786. -Wbind-to-temporary-copy
  1787. -Wbitfield-constant-conversion
  1788. -Wbool-conversion
  1789. -Wbool-conversions
  1790. -Wbuiltin-requires-header
  1791. -Wchar-align
  1792. -Wcompare-distinct-pointer-types
  1793. -Wcomplex-component-init
  1794. -Wconditional-type-mismatch
  1795. -Wconfig-macros
  1796. -Wconstant-conversion
  1797. -Wconstant-logical-operand
  1798. -Wconstexpr-not-const
  1799. -Wcustom-atomic-properties
  1800. -Wdangling-field
  1801. -Wdangling-initializer-list
  1802. -Wdate-time
  1803. -Wdelegating-ctor-cycles
  1804. -Wdeprecated-implementations
  1805. -Wdeprecated-register
  1806. -Wdirect-ivar-access
  1807. -Wdiscard-qual
  1808. -Wdistributed-object-modifiers
  1809. -Wdivision-by-zero
  1810. -Wdollar-in-identifier-extension
  1811. -Wdouble-promotion
  1812. -Wduplicate-decl-specifier
  1813. -Wduplicate-enum
  1814. -Wduplicate-method-arg
  1815. -Wduplicate-method-match
  1816. -Wduplicated-cond
  1817. -Wdynamic-class-memaccess
  1818. -Wembedded-directive
  1819. -Wempty-translation-unit
  1820. -Wenum-conversion
  1821. -Wexit-time-destructors
  1822. -Wexplicit-ownership-type
  1823. -Wextern-initializer
  1824. -Wextra
  1825. -Wextra-semi
  1826. -Wextra-tokens
  1827. -Wflexible-array-extensions
  1828. -Wfloat-conversion
  1829. -Wformat-non-iso
  1830. -Wfour-char-constants
  1831. -Wgcc-compat
  1832. -Wglobal-constructors
  1833. -Wgnu-array-member-paren-init
  1834. -Wgnu-designator
  1835. -Wgnu-static-float-init
  1836. -Wheader-guard
  1837. -Wheader-hygiene
  1838. -Widiomatic-parentheses
  1839. -Wignored-attributes
  1840. -Wimplicit-atomic-properties
  1841. -Wimplicit-conversion-floating-point-to-bool
  1842. -Wimplicit-exception-spec-mismatch
  1843. -Wimplicit-fallthrough
  1844. -Wimplicit-fallthrough-per-function
  1845. -Wimplicit-retain-self
  1846. -Wimport-preprocessor-directive-pedantic
  1847. -Wincompatible-library-redeclaration
  1848. -Wincompatible-pointer-types-discards-qualifiers
  1849. -Wincomplete-implementation
  1850. -Wincomplete-module
  1851. -Wincomplete-umbrella
  1852. -Winit-self
  1853. -Wint-conversions
  1854. -Wint-to-void-pointer-cast
  1855. -Winteger-overflow
  1856. -Winvalid-constexpr
  1857. -Winvalid-iboutlet
  1858. -Winvalid-noreturn
  1859. -Winvalid-pp-token
  1860. -Winvalid-source-encoding
  1861. -Winvalid-token-paste
  1862. -Wknr-promoted-parameter
  1863. -Wlarge-by-value-copy
  1864. -Wliteral-conversion
  1865. -Wliteral-range
  1866. -Wlocal-type-template-args
  1867. -Wlogical-op
  1868. -Wloop-analysis
  1869. -Wmain-return-type
  1870. -Wmalformed-warning-check
  1871. -Wmethod-signatures
  1872. -Wmicrosoft
  1873. -Wmicrosoft-exists
  1874. -Wmismatched-parameter-types
  1875. -Wmismatched-return-types
  1876. -Wmissing-field-initializers
  1877. -Wmissing-format-attribute
  1878. -Wmissing-noreturn
  1879. -Wmissing-selector-name
  1880. -Wmissing-sysroot
  1881. -Wmissing-variable-declarations
  1882. -Wmodule-conflict
  1883. -Wnested-anon-types
  1884. -Wnewline-eof
  1885. -Wnon-literal-null-conversion
  1886. -Wnon-pod-varargs
  1887. -Wnonportable-cfstrings
  1888. -Wnormalized=nfkc
  1889. -Wnull-arithmetic
  1890. -Wnull-character
  1891. -Wnull-conversion
  1892. -Wnull-dereference
  1893. -Wout-of-line-declaration
  1894. -Wover-aligned
  1895. -Woverlength-strings
  1896. -Woverride-init
  1897. -Woverriding-method-mismatch
  1898. -Wpointer-type-mismatch
  1899. -Wpredefined-identifier-outside-function
  1900. -Wprotocol-property-synthesis-ambiguity
  1901. -Wreadonly-iboutlet-property
  1902. -Wreadonly-setter-attrs
  1903. -Wreceiver-expr
  1904. -Wreceiver-forward-class
  1905. -Wreceiver-is-weak
  1906. -Wreinterpret-base-class
  1907. -Wrequires-super-attribute
  1908. -Wreserved-user-defined-literal
  1909. -Wreturn-stack-address
  1910. -Wsection
  1911. -Wselector-type-mismatch
  1912. -Wsentinel
  1913. -Wserialized-diagnostics
  1914. -Wshadow
  1915. -Wshift-count-negative
  1916. -Wshift-count-overflow
  1917. -Wshift-negative-value
  1918. -Wshift-overflow=2
  1919. -Wshift-sign-overflow
  1920. -Wshorten-64-to-32
  1921. -Wsizeof-array-argument
  1922. -Wsource-uses-openmp
  1923. -Wstatic-float-init
  1924. -Wstatic-in-inline
  1925. -Wstatic-local-in-inline
  1926. -Wstrict-overflow=1
  1927. -Wstring-compare
  1928. -Wstring-conversion
  1929. -Wstrlcpy-strlcat-size
  1930. -Wstrncat-size
  1931. -Wsuggest-attribute=format
  1932. -Wsuggest-attribute=noreturn
  1933. -Wsuper-class-method-mismatch
  1934. -Wswitch-bool
  1935. -Wsync-nand
  1936. -Wtautological-constant-out-of-range-compare
  1937. -Wtentative-definition-incomplete-type
  1938. -Wtrampolines
  1939. -Wtype-safety
  1940. -Wtypedef-redefinition
  1941. -Wtypename-missing
  1942. -Wundefined-inline
  1943. -Wundefined-internal
  1944. -Wundefined-reinterpret-cast
  1945. -Wunicode
  1946. -Wunicode-whitespace
  1947. -Wunknown-warning-option
  1948. -Wunnamed-type-template-args
  1949. -Wunneeded-member-function
  1950. -Wunsequenced
  1951. -Wunsupported-visibility
  1952. -Wunused-but-set-parameter
  1953. -Wunused-but-set-variable
  1954. -Wunused-command-line-argument
  1955. -Wunused-const-variable=2
  1956. -Wunused-exception-parameter
  1957. -Wunused-local-typedefs
  1958. -Wunused-member-function
  1959. -Wunused-sanitize-argument
  1960. -Wunused-volatile-lvalue
  1961. -Wuser-defined-literals
  1962. -Wvariadic-macros
  1963. -Wvector-conversion
  1964. -Wvector-conversions
  1965. -Wvexing-parse
  1966. -Wvisibility
  1967. -Wvla-extension
  1968. -Wzero-length-array
  1969. ], [ TOR_CHECK_CFLAGS([warning_flag]) ])
  1970. dnl We should re-enable this in some later version. Clang doesn't
  1971. dnl mind, but it causes trouble with GCC.
  1972. dnl -Wstrict-overflow=2
  1973. dnl These seem to require annotations that we don't currently use,
  1974. dnl and they give false positives in our pthreads wrappers. (Clang 4)
  1975. dnl -Wthread-safety
  1976. dnl -Wthread-safety-analysis
  1977. dnl -Wthread-safety-attributes
  1978. dnl -Wthread-safety-beta
  1979. dnl -Wthread-safety-precise
  1980. CFLAGS="$CFLAGS -W -Wfloat-equal -Wundef -Wpointer-arith"
  1981. CFLAGS="$CFLAGS -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings"
  1982. CFLAGS="$CFLAGS -Wredundant-decls -Wchar-subscripts -Wcomment -Wformat=2"
  1983. CFLAGS="$CFLAGS -Wwrite-strings"
  1984. CFLAGS="$CFLAGS -Wnested-externs -Wbad-function-cast -Wswitch-enum"
  1985. CFLAGS="$CFLAGS -Waggregate-return -Wpacked -Wunused"
  1986. CFLAGS="$CFLAGS -Wunused-parameter "
  1987. # These interfere with building main() { return 0; }, which autoconf
  1988. # likes to use as its default program.
  1989. CFLAGS="$CFLAGS -Wold-style-definition -Wmissing-declarations"
  1990. if test "$tor_cv_cflags__Wnull_dereference" = "yes"; then
  1991. AC_DEFINE([HAVE_CFLAG_WNULL_DEREFERENCE], 1, [True if we have -Wnull-dereference])
  1992. fi
  1993. if test "$tor_cv_cflags__Woverlength_strings" = "yes"; then
  1994. AC_DEFINE([HAVE_CFLAG_WOVERLENGTH_STRINGS], 1, [True if we have -Woverlength-strings])
  1995. fi
  1996. if test "x$enable_fatal_warnings" = "xyes"; then
  1997. # I'd like to use TOR_CHECK_CFLAGS here, but I can't, since the
  1998. # default autoconf programs are full of errors.
  1999. CFLAGS="$CFLAGS -Werror"
  2000. fi
  2001. fi
  2002. if test "$enable_coverage" = "yes" && test "$have_clang" = "no"; then
  2003. case "$host_os" in
  2004. darwin*)
  2005. AC_MSG_WARN([Tried to enable coverage on OSX without using the clang compiler. This might not work! If coverage fails, use CC=clang when configuring with --enable-coverage.])
  2006. esac
  2007. fi
  2008. CPPFLAGS="$CPPFLAGS $TOR_CPPFLAGS_libevent $TOR_CPPFLAGS_openssl $TOR_CPPFLAGS_zlib"
  2009. AC_CONFIG_FILES([
  2010. Doxyfile
  2011. Makefile
  2012. config.rust
  2013. link_rust.sh
  2014. contrib/dist/suse/tor.sh
  2015. contrib/operator-tools/tor.logrotate
  2016. contrib/dist/tor.sh
  2017. contrib/dist/torctl
  2018. contrib/dist/tor.service
  2019. src/config/torrc.sample
  2020. src/config/torrc.minimal
  2021. src/rust/.cargo/config
  2022. scripts/maint/checkOptionDocs.pl
  2023. scripts/maint/updateVersions.pl
  2024. ])
  2025. if test "x$asciidoc" = "xtrue" && test "$ASCIIDOC" = "none"; then
  2026. regular_mans="doc/tor doc/tor-gencert doc/tor-resolve doc/torify"
  2027. for file in $regular_mans ; do
  2028. if ! [[ -f "$srcdir/$file.1.in" ]] || ! [[ -f "$srcdir/$file.html.in" ]] ; then
  2029. echo "==================================";
  2030. echo;
  2031. echo "Building Tor has failed since manpages cannot be built.";
  2032. echo;
  2033. echo "You need asciidoc installed to be able to build the manpages.";
  2034. echo "To build without manpages, use the --disable-asciidoc argument";
  2035. echo "when calling configure.";
  2036. echo;
  2037. echo "==================================";
  2038. exit 1;
  2039. fi
  2040. done
  2041. fi
  2042. if test "$fragile_hardening" = "yes"; then
  2043. AC_MSG_WARN([
  2044. ============
  2045. Warning! Building Tor with --enable-fragile-hardening (also known as
  2046. --enable-expensive-hardening) makes some kinds of attacks harder, but makes
  2047. other kinds of attacks easier. A Tor instance build with this option will be
  2048. somewhat less vulnerable to remote code execution, arithmetic overflow, or
  2049. out-of-bounds read/writes... but at the cost of becoming more vulnerable to
  2050. denial of service attacks. For more information, see
  2051. https://trac.torproject.org/projects/tor/wiki/doc/TorFragileHardening
  2052. ============
  2053. ])
  2054. fi
  2055. AC_OUTPUT