Raise an error on syscall failure in tls_retry_write_records
[openssl.git] / INSTALL.md
1 Build and Install
2 =================
3
4 This document describes installation on all supported operating
5 systems (the Unix/Linux family, including macOS), OpenVMS,
6 and Windows).
7
8 Table of Contents
9 =================
10
11  - [Prerequisites](#prerequisites)
12  - [Notational Conventions](#notational-conventions)
13  - [Quick Installation Guide](#quick-installation-guide)
14    - [Building OpenSSL](#building-openssl)
15    - [Installing OpenSSL](#installing-openssl)
16  - [Configuration Options](#configuration-options)
17    - [API Level](#api-level)
18    - [Cross Compile Prefix](#cross-compile-prefix)
19    - [Build Type](#build-type)
20    - [Directories](#directories)
21    - [Compiler Warnings](#compiler-warnings)
22    - [Compression Algorithm Flags](#compression-algorithm-flags)
23    - [Seeding the Random Generator](#seeding-the-random-generator)
24    - [Setting the FIPS HMAC key](#setting-the-FIPS-HMAC-key)
25    - [Enable and Disable Features](#enable-and-disable-features)
26    - [Displaying configuration data](#displaying-configuration-data)
27  - [Installation Steps in Detail](#installation-steps-in-detail)
28    - [Configure](#configure-openssl)
29    - [Build](#build-openssl)
30    - [Test](#test-openssl)
31    - [Install](#install-openssl)
32  - [Advanced Build Options](#advanced-build-options)
33    - [Environment Variables](#environment-variables)
34    - [Makefile Targets](#makefile-targets)
35    - [Running Selected Tests](#running-selected-tests)
36  - [Troubleshooting](#troubleshooting)
37    - [Configuration Problems](#configuration-problems)
38    - [Build Failures](#build-failures)
39    - [Test Failures](#test-failures)
40  - [Notes](#notes)
41    - [Notes on multi-threading](#notes-on-multi-threading)
42    - [Notes on shared libraries](#notes-on-shared-libraries)
43    - [Notes on random number generation](#notes-on-random-number-generation)
44    - [Notes on assembler modules compilation](#notes-on-assembler-modules-compilation)
45
46 Prerequisites
47 =============
48
49 To install OpenSSL, you will need:
50
51  * A "make" implementation
52  * Perl 5 with core modules (please read [NOTES-PERL.md](NOTES-PERL.md))
53  * The Perl module `Text::Template` (please read [NOTES-PERL.md](NOTES-PERL.md))
54  * an ANSI C compiler
55  * a development environment in the form of development libraries and C
56    header files
57  * a supported operating system
58
59 For additional platform specific requirements, solutions to specific
60 issues and other details, please read one of these:
61
62  * [Notes for UNIX-like platforms](NOTES-UNIX.md)
63  * [Notes for Android platforms](NOTES-ANDROID.md)
64  * [Notes for Windows platforms](NOTES-WINDOWS.md)
65  * [Notes for the DOS platform with DJGPP](NOTES-DJGPP.md)
66  * [Notes for the OpenVMS platform](NOTES-VMS.md)
67  * [Notes on Perl](NOTES-PERL.md)
68  * [Notes on Valgrind](NOTES-VALGRIND.md)
69
70 Notational conventions
71 ======================
72
73 Throughout this document, we use the following conventions.
74
75 Commands
76 --------
77
78 Any line starting with a dollar sign is a command line.
79
80     $ command
81
82 The dollar sign indicates the shell prompt and is not to be entered as
83 part of the command.
84
85 Choices
86 -------
87
88 Several words in curly braces separated by pipe characters indicate a
89 **mandatory choice**, to be replaced with one of the given words.
90 For example, the line
91
92     $ echo { WORD1 | WORD2 | WORD3 }
93
94 represents one of the following three commands
95
96     $ echo WORD1
97     - or -
98     $ echo WORD2
99     - or -
100     $ echo WORD3
101
102 One or several words in square brackets separated by pipe characters
103 denote an **optional choice**.  It is similar to the mandatory choice,
104 but it can also be omitted entirely.
105
106 So the line
107
108     $ echo [ WORD1 | WORD2 | WORD3 ]
109
110 represents one of the four commands
111
112     $ echo WORD1
113     - or -
114     $ echo WORD2
115     - or -
116     $ echo WORD3
117     - or -
118     $ echo
119
120 Arguments
121 ---------
122
123 **Optional Arguments** are enclosed in square brackets.
124
125     [option...]
126
127 A trailing ellipsis means that more than one could be specified.
128
129 Quick Installation Guide
130 ========================
131
132 If you just want to get OpenSSL installed without bothering too much
133 about the details, here is the short version of how to build and install
134 OpenSSL.  If any of the following steps fails, please consult the
135 [Installation in Detail](#installation-steps-in-detail) section below.
136
137 Building OpenSSL
138 ----------------
139
140 Use the following commands to configure, build and test OpenSSL.
141 The testing is optional, but recommended if you intend to install
142 OpenSSL for production use.
143
144 ### Unix / Linux / macOS
145
146     $ ./Configure
147     $ make
148     $ make test
149
150 ### OpenVMS
151
152 Use the following commands to build OpenSSL:
153
154     $ perl Configure
155     $ mms
156     $ mms test
157
158 ### Windows
159
160 If you are using Visual Studio, open a Developer Command Prompt and
161 issue the following commands to build OpenSSL.
162
163     $ perl Configure
164     $ nmake
165     $ nmake test
166
167 As mentioned in the [Choices](#choices) section, you need to pick one
168 of the four Configure targets in the first command.
169
170 Most likely you will be using the `VC-WIN64A` target for 64bit Windows
171 binaries (AMD64) or `VC-WIN32` for 32bit Windows binaries (X86).
172 The other two options are `VC-WIN64I` (Intel IA64, Itanium) and
173 `VC-CE` (Windows CE) are rather uncommon nowadays.
174
175 Installing OpenSSL
176 ------------------
177
178 The following commands will install OpenSSL to a default system location.
179
180 **Danger Zone:** even if you are impatient, please read the following two
181 paragraphs carefully before you install OpenSSL.
182
183 For security reasons the default system location is by default not writable
184 for unprivileged users.  So for the final installation step administrative
185 privileges are required.  The default system location and the procedure to
186 obtain administrative privileges depends on the operating system.
187 It is recommended to compile and test OpenSSL with normal user privileges
188 and use administrative privileges only for the final installation step.
189
190 On some platforms OpenSSL is preinstalled as part of the Operating System.
191 In this case it is highly recommended not to overwrite the system versions,
192 because other applications or libraries might depend on it.
193 To avoid breaking other applications, install your copy of OpenSSL to a
194 [different location](#installing-to-a-different-location) which is not in
195 the global search path for system libraries.
196
197 Finally, if you plan on using the FIPS module, you need to read the
198 [Post-installation Notes](#post-installation-notes) further down.
199
200 ### Unix / Linux / macOS
201
202 Depending on your distribution, you need to run the following command as
203 root user or prepend `sudo` to the command:
204
205     $ make install
206
207 By default, OpenSSL will be installed to
208
209     /usr/local
210
211 More precisely, the files will be installed into the  subdirectories
212
213     /usr/local/bin
214     /usr/local/lib
215     /usr/local/include
216     ...
217
218 depending on the file type, as it is custom on Unix-like operating systems.
219
220 ### OpenVMS
221
222 Use the following command to install OpenSSL.
223
224     $ mms install
225
226 By default, OpenSSL will be installed to
227
228     SYS$COMMON:[OPENSSL]
229
230 ### Windows
231
232 If you are using Visual Studio, open the Developer Command Prompt _elevated_
233 and issue the following command.
234
235     $ nmake install
236
237 The easiest way to elevate the Command Prompt is to press and hold down both
238 the `<CTRL>` and `<SHIFT>` keys while clicking the menu item in the task menu.
239
240 The default installation location is
241
242     C:\Program Files\OpenSSL
243
244 for native binaries, or
245
246     C:\Program Files (x86)\OpenSSL
247
248 for 32bit binaries on 64bit Windows (WOW64).
249
250 #### Installing to a different location
251
252 To install OpenSSL to a different location (for example into your home
253 directory for testing purposes) run `Configure` as shown in the following
254 examples.
255
256 The options `--prefix` and `--openssldir` are explained in further detail in
257 [Directories](#directories) below, and the values used here are mere examples.
258
259 On Unix:
260
261     $ ./Configure --prefix=/opt/openssl --openssldir=/usr/local/ssl
262
263 On OpenVMS:
264
265     $ perl Configure --prefix=PROGRAM:[INSTALLS] --openssldir=SYS$MANAGER:[OPENSSL]
266
267 Note: if you do add options to the configuration command, please make sure
268 you've read more than just this Quick Start, such as relevant `NOTES-*` files,
269 the options outline below, as configuration options may change the outcome
270 in otherwise unexpected ways.
271
272 Configuration Options
273 =====================
274
275 There are several options to `./Configure` to customize the build (note that
276 for Windows, the defaults for `--prefix` and `--openssldir` depend on what
277 configuration is used and what Windows implementation OpenSSL is built on.
278 For more information, see the [Notes for Windows platforms](NOTES-WINDOWS.md).
279
280 API Level
281 ---------
282
283     --api=x.y[.z]
284
285 Build the OpenSSL libraries to support the API for the specified version.
286 If [no-deprecated](#no-deprecated) is also given, don't build with support
287 for deprecated APIs in or below the specified version number.  For example,
288 adding
289
290     --api=1.1.0 no-deprecated
291
292 will remove support for all APIs that were deprecated in OpenSSL version
293 1.1.0 or below.  This is a rather specialized option for developers.
294 If you just intend to remove all deprecated APIs up to the current version
295 entirely, just specify [no-deprecated](#no-deprecated).
296 If `--api` isn't given, it defaults to the current (minor) OpenSSL version.
297
298 Cross Compile Prefix
299 --------------------
300
301     --cross-compile-prefix=<PREFIX>
302
303 The `<PREFIX>` to include in front of commands for your toolchain.
304
305 It is likely to have to end with dash, e.g. `a-b-c-` would invoke GNU compiler
306 as `a-b-c-gcc`, etc.  Unfortunately cross-compiling is too case-specific to put
307 together one-size-fits-all instructions.  You might have to pass more flags or
308 set up environment variables to actually make it work.  Android and iOS cases
309 are discussed in corresponding `Configurations/15-*.conf` files.  But there are
310 cases when this option alone is sufficient.  For example to build the mingw64
311 target on Linux `--cross-compile-prefix=x86_64-w64-mingw32-` works.  Naturally
312 provided that mingw packages are installed.  Today Debian and Ubuntu users
313 have option to install a number of prepackaged cross-compilers along with
314 corresponding run-time and development packages for "alien" hardware.  To give
315 another example `--cross-compile-prefix=mipsel-linux-gnu-` suffices in such
316 case.
317
318 For cross compilation, you must [configure manually](#manual-configuration).
319 Also, note that `--openssldir` refers to target's file system, not one you are
320 building on.
321
322 Build Type
323 ----------
324
325     --debug
326
327 Build OpenSSL with debugging symbols and zero optimization level.
328
329     --release
330
331 Build OpenSSL without debugging symbols.  This is the default.
332
333 Directories
334 -----------
335
336 ### libdir
337
338     --libdir=DIR
339
340 The name of the directory under the top of the installation directory tree
341 (see the `--prefix` option) where libraries will be installed.  By default
342 this is `lib`. Note that on Windows only static libraries (`*.lib`) will
343 be stored in this location. Shared libraries (`*.dll`) will always be
344 installed to the `bin` directory.
345
346 Some build targets have a multilib postfix set in the build configuration.
347 For these targets the default libdir is `lib<multilib-postfix>`. Please use
348 `--libdir=lib` to override the libdir if adding the postfix is undesirable.
349
350 ### openssldir
351
352     --openssldir=DIR
353
354 Directory for OpenSSL configuration files, and also the default certificate
355 and key store.  Defaults are:
356
357     Unix:           /usr/local/ssl
358     Windows:        C:\Program Files\Common Files\SSL
359     OpenVMS:        SYS$COMMON:[OPENSSL-COMMON]
360
361 For 32bit Windows applications on Windows 64bit (WOW64), always replace
362 `C:\Program Files` by `C:\Program Files (x86)`.
363
364 ### prefix
365
366     --prefix=DIR
367
368 The top of the installation directory tree.  Defaults are:
369
370     Unix:           /usr/local
371     Windows:        C:\Program Files\OpenSSL
372     OpenVMS:        SYS$COMMON:[OPENSSL]
373
374 Compiler Warnings
375 -----------------
376
377     --strict-warnings
378
379 This is a developer flag that switches on various compiler options recommended
380 for OpenSSL development.  It only works when using gcc or clang as the compiler.
381 If you are developing a patch for OpenSSL then it is recommended that you use
382 this option where possible.
383
384 Compression Algorithm Flags
385 ---------------------------
386
387 ### with-brotli-include
388
389     --with-brotli-include=DIR
390
391 The directory for the location of the brotli include files (i.e. the location
392 of the **brotli** include directory).  This option is only necessary if
393 [enable-brotli](#enable-brotli) is used and the include files are not already
394 on the system include path.
395
396 ### with-brotli-lib
397
398     --with-brotli-lib=LIB
399
400 **On Unix**: this is the directory containing the brotli libraries.
401 If not provided, the system library path will be used.
402
403 The names of the libraries are:
404
405 * libbrotlicommon.a or libbrotlicommon.so
406 * libbrotlidec.a or libbrotlidec.so
407 * libbrotlienc.a or libbrotlienc.so
408
409 **On Windows:** this is the directory containing the brotli libraries.
410 If not provided, the system library path will be used.
411
412 The names of the libraries are:
413
414 * brotlicommon.lib
415 * brotlidec.lib
416 * brotlienc.lib
417
418 ### with-zlib-include
419
420     --with-zlib-include=DIR
421
422 The directory for the location of the zlib include file.  This option is only
423 necessary if [zlib](#zlib) is used and the include file is not
424 already on the system include path.
425
426 ### with-zlib-lib
427
428     --with-zlib-lib=LIB
429
430 **On Unix**: this is the directory containing the zlib library.
431 If not provided the system library path will be used.
432
433 **On Windows:** this is the filename of the zlib library (with or
434 without a path).  This flag must be provided if the
435 [zlib-dynamic](#zlib-dynamic) option is not also used. If `zlib-dynamic` is used
436 then this flag is optional and defaults to `ZLIB1` if not provided.
437
438 **On VMS:** this is the filename of the zlib library (with or without a path).
439 This flag is optional and if not provided then `GNV$LIBZSHR`, `GNV$LIBZSHR32`
440 or `GNV$LIBZSHR64` is used by default depending on the pointer size chosen.
441
442 ### with-zstd-include
443
444     --with-zstd-include=DIR
445
446 The directory for the location of the Zstd include file. This option is only
447 necessary if [enable-std](#enable-zstd) is used and the include file is not
448 already on the system include path.
449
450 OpenSSL requires Zstd 1.4 or greater. The Linux kernel source contains a
451 *zstd.h* file that is not compatible with the 1.4.x Zstd distribution, the
452 compilation will generate an error if the Linux *zstd.h* is included before
453 (or instead of) the Zstd distribution header.
454
455 ### with-zstd-lib
456
457     --with-zstd-lib=LIB
458
459 **On Unix**: this is the directory containing the Zstd library.
460 If not provided the system library path will be used.
461
462 **On Windows:** this is the filename of the Zstd library (with or
463 without a path).  This flag must be provided if the
464 [enable-zstd-dynamic](#enable-zstd-dynamic) option is not also used.
465 If `zstd-dynamic` is used then this flag is optional and defaults
466 to `LIBZSTD` if not provided.
467
468 Seeding the Random Generator
469 ----------------------------
470
471     --with-rand-seed=seed1[,seed2,...]
472
473 A comma separated list of seeding methods which will be tried by OpenSSL
474 in order to obtain random input (a.k.a "entropy") for seeding its
475 cryptographically secure random number generator (CSPRNG).
476 The current seeding methods are:
477
478 ### os
479
480 Use a trusted operating system entropy source.
481 This is the default method if such an entropy source exists.
482
483 ### getrandom
484
485 Use the [getrandom(2)][man-getrandom] or equivalent system call.
486
487 [man-getrandom]: http://man7.org/linux/man-pages/man2/getrandom.2.html
488
489 ### devrandom
490
491 Use the first device from the `DEVRANDOM` list which can be opened to read
492 random bytes.  The `DEVRANDOM` preprocessor constant expands to
493
494     "/dev/urandom","/dev/random","/dev/srandom"
495
496 on most unix-ish operating systems.
497
498 ### egd
499
500 Check for an entropy generating daemon.
501 This source is ignored by the FIPS provider.
502
503 ### rdcpu
504
505 Use the `RDSEED` or `RDRAND` command on x86 or `RNDRRS` command on aarch64
506 if provided by the CPU.
507
508 ### librandom
509
510 Use librandom (not implemented yet).
511 This source is ignored by the FIPS provider.
512
513 ### none
514
515 Disable automatic seeding.  This is the default on some operating systems where
516 no suitable entropy source exists, or no support for it is implemented yet.
517 This option is ignored by the FIPS provider.
518
519 For more information, see the section [Notes on random number generation][rng]
520 at the end of this document.
521
522 [rng]: #notes-on-random-number-generation
523
524 Setting the FIPS HMAC key
525 -------------------------
526
527     --fips-key=value
528
529 As part of its self-test validation, the FIPS module must verify itself
530 by performing a SHA-256 HMAC computation on itself. The default key is
531 the SHA256 value of "the holy handgrenade of antioch" and is sufficient
532 for meeting the FIPS requirements.
533
534 To change the key to a different value, use this flag. The value should
535 be a hex string no more than 64 characters.
536
537 Enable and Disable Features
538 ---------------------------
539
540 Feature options always come in pairs, an option to enable feature
541 `xxxx`, and an option to disable it:
542
543     [ enable-xxxx | no-xxxx ]
544
545 Whether a feature is enabled or disabled by default, depends on the feature.
546 In the following list, always the non-default variant is documented: if
547 feature `xxxx` is disabled by default then `enable-xxxx` is documented and
548 if feature `xxxx` is enabled by default then `no-xxxx` is documented.
549
550 ### no-afalgeng
551
552 Don't build the AFALG engine.
553
554 This option will be forced on a platform that does not support AFALG.
555
556 ### enable-ktls
557
558 Build with Kernel TLS support.
559
560 This option will enable the use of the Kernel TLS data-path, which can improve
561 performance and allow for the use of sendfile and splice system calls on
562 TLS sockets.  The Kernel may use TLS accelerators if any are available on the
563 system.  This option will be forced off on systems that do not support the
564 Kernel TLS data-path.
565
566 ### enable-asan
567
568 Build with the Address sanitiser.
569
570 This is a developer option only.  It may not work on all platforms and should
571 never be used in production environments.  It will only work when used with
572 gcc or clang and should be used in conjunction with the [no-shared](#no-shared)
573 option.
574
575 ### enable-acvp-tests
576
577 Build support for Automated Cryptographic Validation Protocol (ACVP)
578 tests.
579
580 This is required for FIPS validation purposes. Certain ACVP tests require
581 access to algorithm internals that are not normally accessible.
582 Additional information related to ACVP can be found at
583 <https://github.com/usnistgov/ACVP>.
584
585 ### no-asm
586
587 Do not use assembler code.
588
589 This should be viewed as debugging/troubleshooting option rather than for
590 production use.  On some platforms a small amount of assembler code may still
591 be used even with this option.
592
593 ### no-async
594
595 Do not build support for async operations.
596
597 ### no-autoalginit
598
599 Don't automatically load all supported ciphers and digests.
600
601 Typically OpenSSL will make available all of its supported ciphers and digests.
602 For a statically linked application this may be undesirable if small executable
603 size is an objective.  This only affects libcrypto.  Ciphers and digests will
604 have to be loaded manually using `EVP_add_cipher()` and `EVP_add_digest()`
605 if this option is used.  This option will force a non-shared build.
606
607 ### no-autoerrinit
608
609 Don't automatically load all libcrypto/libssl error strings.
610
611 Typically OpenSSL will automatically load human readable error strings.  For a
612 statically linked application this may be undesirable if small executable size
613 is an objective.
614
615 ### enable-brotli
616
617 Build with support for brotli compression/decompression.
618
619 ### enable-brotli-dynamic
620
621 Like the enable-brotli option, but has OpenSSL load the brotli library dynamically
622 when needed.
623
624 This is only supported on systems where loading of shared libraries is supported.
625
626 ### no-autoload-config
627
628 Don't automatically load the default `openssl.cnf` file.
629
630 Typically OpenSSL will automatically load a system config file which configures
631 default SSL options.
632
633 ### enable-buildtest-c++
634
635 While testing, generate C++ buildtest files that simply check that the public
636 OpenSSL header files are usable standalone with C++.
637
638 Enabling this option demands extra care.  For any compiler flag given directly
639 as configuration option, you must ensure that it's valid for both the C and
640 the C++ compiler.  If not, the C++ build test will most likely break.  As an
641 alternative, you can use the language specific variables, `CFLAGS` and `CXXFLAGS`.
642
643 ### --banner=text
644
645 Use the specified text instead of the default banner at the end of
646 configuration.
647
648 ### --w
649
650 On platforms where the choice of 32-bit or 64-bit architecture
651 is not explicitly specified, `Configure` will print a warning
652 message and wait for a few seconds to let you interrupt the
653 configuration. Using this flag skips the wait.
654
655 ### no-bulk
656
657 Build only some minimal set of features.
658 This is a developer option used internally for CI build tests of the project.
659
660 ### no-cached-fetch
661
662 Never cache algorithms when they are fetched from a provider.  Normally, a
663 provider indicates if the algorithms it supplies can be cached or not.  Using
664 this option will reduce run-time memory usage but it also introduces a
665 significant performance penalty.  This option is primarily designed to help
666 with detecting incorrect reference counting.
667
668 ### no-capieng
669
670 Don't build the CAPI engine.
671
672 This option will be forced if on a platform that does not support CAPI.
673
674 ### no-cmp
675
676 Don't build support for Certificate Management Protocol (CMP)
677 and Certificate Request Message Format (CRMF).
678
679 ### no-cms
680
681 Don't build support for Cryptographic Message Syntax (CMS).
682
683 ### no-comp
684
685 Don't build support for SSL/TLS compression.
686
687 If this option is enabled (the default), then compression will only work if
688 the zlib or `zlib-dynamic` options are also chosen.
689
690 ### enable-crypto-mdebug
691
692 This now only enables the `failed-malloc` feature.
693
694 ### enable-crypto-mdebug-backtrace
695
696 This is a no-op; the project uses the compiler's address/leak sanitizer instead.
697
698 ### no-ct
699
700 Don't build support for Certificate Transparency (CT).
701
702 ### no-deprecated
703
704 Don't build with support for deprecated APIs up until and including the version
705 given with `--api` (or the current version, if `--api` wasn't specified).
706
707 ### no-dgram
708
709 Don't build support for datagram based BIOs.
710
711 Selecting this option will also force the disabling of DTLS.
712
713 ### no-dso
714
715 Don't build support for loading Dynamic Shared Objects (DSO)
716
717 ### enable-devcryptoeng
718
719 Build the `/dev/crypto` engine.
720
721 This option is automatically selected on the BSD platform, in which case it can
722 be disabled with `no-devcryptoeng`.
723
724 ### no-dynamic-engine
725
726 Don't build the dynamically loaded engines.
727
728 This only has an effect in a shared build.
729
730 ### no-ec
731
732 Don't build support for Elliptic Curves.
733
734 ### no-ec2m
735
736 Don't build support for binary Elliptic Curves
737
738 ### enable-ec_nistp_64_gcc_128
739
740 Enable support for optimised implementations of some commonly used NIST
741 elliptic curves.
742
743 This option is only supported on platforms:
744
745  - with little-endian storage of non-byte types
746  - that tolerate misaligned memory references
747  - where the compiler:
748    - supports the non-standard type `__uint128_t`
749    - defines the built-in macro `__SIZEOF_INT128__`
750
751 ### enable-egd
752
753 Build support for gathering entropy from the Entropy Gathering Daemon (EGD).
754
755 ### no-engine
756
757 Don't build support for loading engines.
758
759 ### no-err
760
761 Don't compile in any error strings.
762
763 ### enable-external-tests
764
765 Enable building of integration with external test suites.
766
767 This is a developer option and may not work on all platforms.  The following
768 external test suites are currently supported:
769
770  - GOST engine test suite
771  - Python PYCA/Cryptography test suite
772  - krb5 test suite
773
774 See the file [test/README-external.md](test/README-external.md)
775 for further details.
776
777 ### no-filenames
778
779 Don't compile in filename and line number information (e.g.  for errors and
780 memory allocation).
781
782 ### enable-fips
783
784 Build (and install) the FIPS provider
785
786 ### no-fips-securitychecks
787
788 Don't perform FIPS module run-time checks related to enforcement of security
789 parameters such as minimum security strength of keys.
790
791 ### enable-fuzz-libfuzzer, enable-fuzz-afl
792
793 Build with support for fuzzing using either libfuzzer or AFL.
794
795 These are developer options only.  They may not work on all  platforms and
796 should never be used in production environments.
797
798 See the file [fuzz/README.md](fuzz/README.md) for further details.
799
800 ### no-gost
801
802 Don't build support for GOST based ciphersuites.
803
804 Note that if this feature is enabled then GOST ciphersuites are only available
805 if the GOST algorithms are also available through loading an externally supplied
806 engine.
807
808 ### no-legacy
809
810 Don't build the legacy provider.
811
812 Disabling this also disables the legacy algorithms: MD2 (already disabled by default).
813
814 ### no-makedepend
815
816 Don't generate dependencies.
817
818 ### no-module
819
820 Don't build any dynamically loadable engines.
821
822 This also implies `no-dynamic-engine`.
823
824 ### no-multiblock
825
826 Don't build support for writing multiple records in one go in libssl
827
828 Note: this is a different capability to the pipelining functionality.
829
830 ### no-nextprotoneg
831
832 Don't build support for the Next Protocol Negotiation (NPN) TLS extension.
833
834 ### no-ocsp
835
836 Don't build support for Online Certificate Status Protocol (OCSP).
837
838 ### no-padlockeng
839
840 Don't build the padlock engine.
841
842 ### no-hw-padlock
843
844 As synonym for `no-padlockeng`.  Deprecated and should not be used.
845
846 ### no-pic
847
848 Don't build with support for Position Independent Code.
849
850 ### no-pinshared
851
852 Don't pin the shared libraries.
853
854 By default OpenSSL will attempt to stay in memory until the process exits.
855 This is so that libcrypto and libssl can be properly cleaned up automatically
856 via an `atexit()` handler.  The handler is registered by libcrypto and cleans
857 up both libraries.  On some platforms the `atexit()` handler will run on unload of
858 libcrypto (if it has been dynamically loaded) rather than at process exit.  This
859 option can be used to stop OpenSSL from attempting to stay in memory until the
860 process exits.  This could lead to crashes if either libcrypto or libssl have
861 already been unloaded at the point that the atexit handler is invoked, e.g.  on a
862 platform which calls `atexit()` on unload of the library, and libssl is unloaded
863 before libcrypto then a crash is likely to happen.  Applications can suppress
864 running of the `atexit()` handler at run time by using the
865 `OPENSSL_INIT_NO_ATEXIT` option to `OPENSSL_init_crypto()`.
866 See the man page for it for further details.
867
868 ### no-posix-io
869
870 Don't use POSIX IO capabilities.
871
872 ### no-psk
873
874 Don't build support for Pre-Shared Key based ciphersuites.
875
876 ### no-rdrand
877
878 Don't use hardware RDRAND capabilities.
879
880 ### no-rfc3779
881
882 Don't build support for RFC3779, "X.509 Extensions for IP Addresses and
883 AS Identifiers".
884
885 ### sctp
886
887 Build support for Stream Control Transmission Protocol (SCTP).
888
889 ### no-shared
890
891 Do not create shared libraries, only static ones.
892
893 See [Notes on shared libraries](#notes-on-shared-libraries) below.
894
895 ### no-sock
896
897 Don't build support for socket BIOs.
898
899 ### no-srp
900
901 Don't build support for Secure Remote Password (SRP) protocol or
902 SRP based ciphersuites.
903
904 ### no-srtp
905
906 Don't build Secure Real-Time Transport Protocol (SRTP) support.
907
908 ### no-sse2
909
910 Exclude SSE2 code paths from 32-bit x86 assembly modules.
911
912 Normally SSE2 extension is detected at run-time, but the decision whether or not
913 the machine code will be executed is taken solely on CPU capability vector.  This
914 means that if you happen to run OS kernel which does not support SSE2 extension
915 on Intel P4 processor, then your application might be exposed to "illegal
916 instruction" exception.  There might be a way to enable support in kernel, e.g.
917 FreeBSD kernel can be compiled with `CPU_ENABLE_SSE`, and there is a way to
918 disengage SSE2 code paths upon application start-up, but if you aim for wider
919 "audience" running such kernel, consider `no-sse2`.  Both the `386` and `no-asm`
920 options imply `no-sse2`.
921
922 ### no-ssl-trace
923
924 Don't build with SSL Trace capabilities.
925
926 This removes the `-trace` option from `s_client` and `s_server`, and omits the
927 `SSL_trace()` function from libssl.
928
929 Disabling `ssl-trace` may provide a small reduction in libssl binary size.
930
931 ### no-static-engine
932
933 Don't build the statically linked engines.
934
935 This only has an impact when not built "shared".
936
937 ### no-stdio
938
939 Don't use anything from the C header file `stdio.h` that makes use of the `FILE`
940 type.  Only libcrypto and libssl can be built in this way.  Using this option will
941 suppress building the command line applications.  Additionally, since the OpenSSL
942 tests also use the command line applications, the tests will also be skipped.
943
944 ### no-tests
945
946 Don't build test programs or run any tests.
947
948 ### enable-tfo
949
950 Build with support for TCP Fast Open (RFC7413). Supported on Linux, macOS and FreeBSD.
951
952 ### enable-quic
953
954 Build with QUIC support. This is currently just for developers as the
955 implementation is by no means complete and usable.
956
957 ### no-threads
958
959 Don't build with support for multi-threaded applications.
960
961 ### threads
962
963 Build with support for multi-threaded applications.  Most platforms will enable
964 this by default.  However, if on a platform where this is not the case then this
965 will usually require additional system-dependent options!
966
967 See [Notes on multi-threading](#notes-on-multi-threading) below.
968
969 ### no-thread-pool
970
971 Don't build with support for thread pool functionality.
972
973 ### thread-pool
974
975 Build with thread pool functionality. If enabled, OpenSSL algorithms may
976 use the thread pool to perform parallel computation. This option in itself
977 does not enable OpenSSL to spawn new threads. Currently the only supported
978 thread pool mechanism is the default thread pool.
979
980 ### no-default-thread-pool
981
982 Don't build with support for default thread pool functionality.
983
984 ### default-thread-pool
985
986 Build with default thread pool functionality. If enabled, OpenSSL may create
987 and manage threads up to a maximum number of threads authorized by the
988 application. Supported on POSIX compliant platforms and Windows.
989
990 ### enable-trace
991
992 Build with support for the integrated tracing api.
993
994 See manual pages OSSL_trace_set_channel(3) and OSSL_trace_enabled(3) for details.
995
996 ### no-ts
997
998 Don't build Time Stamping (TS) Authority support.
999
1000 ### enable-ubsan
1001
1002 Build with the Undefined Behaviour sanitiser (UBSAN).
1003
1004 This is a developer option only.  It may not work on all platforms and should
1005 never be used in production environments.  It will only work when used with
1006 gcc or clang and should be used in conjunction with the `-DPEDANTIC` option
1007 (or the `--strict-warnings` option).
1008
1009 ### no-ui-console
1010
1011 Don't build with the User Interface (UI) console method
1012
1013 The User Interface console method enables text based console prompts.
1014
1015 ### enable-unit-test
1016
1017 Enable additional unit test APIs.
1018
1019 This should not typically be used in production deployments.
1020
1021 ### no-uplink
1022
1023 Don't build support for UPLINK interface.
1024
1025 ### enable-weak-ssl-ciphers
1026
1027 Build support for SSL/TLS ciphers that are considered "weak"
1028
1029 Enabling this includes for example the RC4 based ciphersuites.
1030
1031 ### zlib
1032
1033 Build with support for zlib compression/decompression.
1034
1035 ### zlib-dynamic
1036
1037 Like the zlib option, but has OpenSSL load the zlib library dynamically
1038 when needed.
1039
1040 This is only supported on systems where loading of shared libraries is supported.
1041
1042 ### enable-zstd
1043
1044 Build with support for Zstd compression/decompression.
1045
1046 ### enable-zstd-dynamic
1047
1048 Like the enable-zstd option, but has OpenSSL load the Zstd library dynamically
1049 when needed.
1050
1051 This is only supported on systems where loading of shared libraries is supported.
1052
1053 ### 386
1054
1055 In 32-bit x86 builds, use the 80386 instruction set only in assembly modules
1056
1057 The default x86 code is more efficient, but requires at least an 486 processor.
1058 Note: This doesn't affect compiler generated code, so this option needs to be
1059 accompanied by a corresponding compiler-specific option.
1060
1061 ### no-{protocol}
1062
1063     no-{ssl|ssl3|tls|tls1|tls1_1|tls1_2|tls1_3|dtls|dtls1|dtls1_2}
1064
1065 Don't build support for negotiating the specified SSL/TLS protocol.
1066
1067 If `no-tls` is selected then all of `tls1`, `tls1_1`, `tls1_2` and `tls1_3`
1068 are disabled.
1069 Similarly `no-dtls` will disable `dtls1` and `dtls1_2`.  The `no-ssl` option is
1070 synonymous with `no-ssl3`.  Note this only affects version negotiation.
1071 OpenSSL will still provide the methods for applications to explicitly select
1072 the individual protocol versions.
1073
1074 ### no-{protocol}-method
1075
1076     no-{ssl3|tls1|tls1_1|tls1_2|dtls1|dtls1_2}-method
1077
1078 Analogous to `no-{protocol}` but in addition do not build the methods for
1079 applications to explicitly select individual protocol versions.  Note that there
1080 is no `no-tls1_3-method` option because there is no application method for
1081 TLSv1.3.
1082
1083 Using individual protocol methods directly is deprecated.  Applications should
1084 use `TLS_method()` instead.
1085
1086 ### enable-{algorithm}
1087
1088     enable-{md2|rc5}
1089
1090 Build with support for the specified algorithm.
1091
1092 ### no-{algorithm}
1093
1094     no-{aria|bf|blake2|camellia|cast|chacha|cmac|
1095         des|dh|dsa|ecdh|ecdsa|idea|md4|mdc2|ocb|
1096         poly1305|rc2|rc4|rmd160|scrypt|seed|
1097         siphash|siv|sm2|sm3|sm4|whirlpool}
1098
1099 Build without support for the specified algorithm.
1100
1101 The `ripemd` algorithm is deprecated and if used is synonymous with `rmd160`.
1102
1103 ### Compiler-specific options
1104
1105     -Dxxx, -Ixxx, -Wp, -lxxx, -Lxxx, -Wl, -rpath, -R, -framework, -static
1106
1107 These system specific options will be recognised and passed through to the
1108 compiler to allow you to define preprocessor symbols, specify additional
1109 libraries, library directories or other compiler options.  It might be worth
1110 noting that some compilers generate code specifically for processor the
1111 compiler currently executes on.  This is not necessarily what you might have
1112 in mind, since it might be unsuitable for execution on other, typically older,
1113 processor.  Consult your compiler documentation.
1114
1115 Take note of the [Environment Variables](#environment-variables) documentation
1116 below and how these flags interact with those variables.
1117
1118     -xxx, +xxx, /xxx
1119
1120 Additional options that are not otherwise recognised are passed through as
1121 they are to the compiler as well.  Unix-style options beginning with a
1122 `-` or `+` and Windows-style options beginning with a `/` are recognised.
1123 Again, consult your compiler documentation.
1124
1125 If the option contains arguments separated by spaces, then the URL-style
1126 notation `%20` can be used for the space character in order to avoid having
1127 to quote the option.  For example, `-opt%20arg` gets expanded to `-opt arg`.
1128 In fact, any ASCII character can be encoded as %xx using its hexadecimal
1129 encoding.
1130
1131 Take note of the [Environment Variables](#environment-variables) documentation
1132 below and how these flags interact with those variables.
1133
1134 ### Environment Variables
1135
1136     VAR=value
1137
1138 Assign the given value to the environment variable `VAR` for `Configure`.
1139
1140 These work just like normal environment variable assignments, but are supported
1141 on all platforms and are confined to the configuration scripts only.
1142 These assignments override the corresponding value in the inherited environment,
1143 if there is one.
1144
1145 The following variables are used as "`make` variables" and can be used as an
1146 alternative to giving preprocessor, compiler and linker options directly as
1147 configuration.  The following variables are supported:
1148
1149     AR              The static library archiver.
1150     ARFLAGS         Flags for the static library archiver.
1151     AS              The assembler compiler.
1152     ASFLAGS         Flags for the assembler compiler.
1153     CC              The C compiler.
1154     CFLAGS          Flags for the C compiler.
1155     CXX             The C++ compiler.
1156     CXXFLAGS        Flags for the C++ compiler.
1157     CPP             The C/C++ preprocessor.
1158     CPPFLAGS        Flags for the C/C++ preprocessor.
1159     CPPDEFINES      List of CPP macro definitions, separated
1160                     by a platform specific character (':' or
1161                     space for Unix, ';' for Windows, ',' for
1162                     VMS).  This can be used instead of using
1163                     -D (or what corresponds to that on your
1164                     compiler) in CPPFLAGS.
1165     CPPINCLUDES     List of CPP inclusion directories, separated
1166                     the same way as for CPPDEFINES.  This can
1167                     be used instead of -I (or what corresponds
1168                     to that on your compiler) in CPPFLAGS.
1169     HASHBANGPERL    Perl invocation to be inserted after '#!'
1170                     in public perl scripts (only relevant on
1171                     Unix).
1172     LD              The program linker (not used on Unix, $(CC)
1173                     is used there).
1174     LDFLAGS         Flags for the shared library, DSO and
1175                     program linker.
1176     LDLIBS          Extra libraries to use when linking.
1177                     Takes the form of a space separated list
1178                     of library specifications on Unix and
1179                     Windows, and as a comma separated list of
1180                     libraries on VMS.
1181     RANLIB          The library archive indexer.
1182     RC              The Windows resource compiler.
1183     RCFLAGS         Flags for the Windows resource compiler.
1184     RM              The command to remove files and directories.
1185
1186 These cannot be mixed with compiling/linking flags given on the command line.
1187 In other words, something like this isn't permitted.
1188
1189     $ ./Configure -DFOO CPPFLAGS=-DBAR -DCOOKIE
1190
1191 Backward compatibility note:
1192
1193 To be compatible with older configuration scripts, the environment variables
1194 are ignored if compiling/linking flags are given on the command line, except
1195 for the following:
1196
1197     AR, CC, CXX, CROSS_COMPILE, HASHBANGPERL, PERL, RANLIB, RC, and WINDRES
1198
1199 For example, the following command will not see `-DBAR`:
1200
1201     $ CPPFLAGS=-DBAR ./Configure -DCOOKIE
1202
1203 However, the following will see both set variables:
1204
1205     $ CC=gcc CROSS_COMPILE=x86_64-w64-mingw32- ./Configure -DCOOKIE
1206
1207 If `CC` is set, it is advisable to also set `CXX` to ensure both the C and C++
1208 compiler are in the same "family".  This becomes relevant with
1209 `enable-external-tests` and `enable-buildtest-c++`.
1210
1211 ### Reconfigure
1212
1213     reconf
1214     reconfigure
1215
1216 Reconfigure from earlier data.
1217
1218 This fetches the previous command line options and environment from data
1219 saved in `configdata.pm` and runs the configuration process again, using
1220 these options and environment.  Note: NO other option is permitted together
1221 with `reconf`.  Note: The original configuration saves away values for ALL
1222 environment variables that were used, and if they weren't defined, they are
1223 still saved away with information that they weren't originally defined.
1224 This information takes precedence over environment variables that are
1225 defined when reconfiguring.
1226
1227 Displaying configuration data
1228 -----------------------------
1229
1230 The configuration script itself will say very little, and finishes by
1231 creating `configdata.pm`.  This perl module can be loaded by other scripts
1232 to find all the configuration data, and it can also be used as a script to
1233 display all sorts of configuration data in a human readable form.
1234
1235 For more information, please do:
1236
1237     $ ./configdata.pm --help                         # Unix
1238
1239 or
1240
1241     $ perl configdata.pm --help                      # Windows and VMS
1242
1243 Installation Steps in Detail
1244 ============================
1245
1246 Configure OpenSSL
1247 -----------------
1248
1249 ### Automatic Configuration
1250
1251 In previous version, the `config` script determined the platform type and
1252 compiler and then called `Configure`. Starting with this release, they are
1253 the same.
1254
1255 #### Unix / Linux / macOS
1256
1257     $ ./Configure [options...]
1258
1259 #### OpenVMS
1260
1261     $ perl Configure [options...]
1262
1263 #### Windows
1264
1265     $ perl Configure [options...]
1266
1267 ### Manual Configuration
1268
1269 OpenSSL knows about a range of different operating system, hardware and
1270 compiler combinations.  To see the ones it knows about, run
1271
1272     $ ./Configure LIST                               # Unix
1273
1274 or
1275
1276     $ perl Configure LIST                            # All other platforms
1277
1278 For the remainder of this text, the Unix form will be used in all examples.
1279 Please use the appropriate form for your platform.
1280
1281 Pick a suitable name from the list that matches your system.  For most
1282 operating systems there is a choice between using cc or gcc.
1283 When you have identified your system (and if necessary compiler) use this
1284 name as the argument to `Configure`.  For example, a `linux-elf` user would
1285 run:
1286
1287     $ ./Configure linux-elf [options...]
1288
1289 ### Creating your own Configuration
1290
1291 If your system isn't listed, you will have to create a configuration
1292 file named `Configurations/YOURFILENAME.conf` (replace `YOURFILENAME`
1293 with a filename of your choosing) and add the correct
1294 configuration for your system.  See the available configs as examples
1295 and read [Configurations/README.md](Configurations/README.md) and
1296 [Configurations/README-design.md](Configurations/README-design.md)
1297 for more information.
1298
1299 The generic configurations `cc` or `gcc` should usually work on 32 bit
1300 Unix-like systems.
1301
1302 `Configure` creates a build file (`Makefile` on Unix, `makefile` on Windows
1303 and `descrip.mms` on OpenVMS) from a suitable template in `Configurations/`,
1304 and defines various macros in `include/openssl/configuration.h` (generated
1305 from `include/openssl/configuration.h.in`.
1306
1307 ### Out of Tree Builds
1308
1309 OpenSSL can be configured to build in a build directory separate from the
1310 source code directory.  It's done by placing yourself in some other
1311 directory and invoking the configuration commands from there.
1312
1313 #### Unix example
1314
1315     $ mkdir /var/tmp/openssl-build
1316     $ cd /var/tmp/openssl-build
1317     $ /PATH/TO/OPENSSL/SOURCE/Configure [options...]
1318
1319 #### OpenVMS example
1320
1321     $ set default sys$login:
1322     $ create/dir [.tmp.openssl-build]
1323     $ set default [.tmp.openssl-build]
1324     $ perl D:[PATH.TO.OPENSSL.SOURCE]Configure [options...]
1325
1326 #### Windows example
1327
1328     $ C:
1329     $ mkdir \temp-openssl
1330     $ cd \temp-openssl
1331     $ perl d:\PATH\TO\OPENSSL\SOURCE\Configure [options...]
1332
1333 Paths can be relative just as well as absolute.  `Configure` will do its best
1334 to translate them to relative paths whenever possible.
1335
1336 Build OpenSSL
1337 -------------
1338
1339 Build OpenSSL by running:
1340
1341     $ make                                           # Unix
1342     $ mms                                            ! (or mmk) OpenVMS
1343     $ nmake                                          # Windows
1344
1345 This will build the OpenSSL libraries (`libcrypto.a` and `libssl.a` on
1346 Unix, corresponding on other platforms) and the OpenSSL binary
1347 (`openssl`).  The libraries will be built in the top-level directory,
1348 and the binary will be in the `apps/` subdirectory.
1349
1350 If the build fails, take a look at the [Build Failures](#build-failures)
1351 subsection of the [Troubleshooting](#troubleshooting) section.
1352
1353 Test OpenSSL
1354 ------------
1355
1356 After a successful build, and before installing, the libraries should
1357 be tested.  Run:
1358
1359     $ make test                                      # Unix
1360     $ mms test                                       ! OpenVMS
1361     $ nmake test                                     # Windows
1362
1363 **Warning:** you MUST run the tests from an unprivileged account (or disable
1364 your privileges temporarily if your platform allows it).
1365
1366 See [test/README.md](test/README.md) for further details how run tests.
1367
1368 See [test/README-dev.md](test/README-dev.md) for guidelines on adding tests.
1369
1370 Install OpenSSL
1371 ---------------
1372
1373 If everything tests ok, install OpenSSL with
1374
1375     $ make install                                   # Unix
1376     $ mms install                                    ! OpenVMS
1377     $ nmake install                                  # Windows
1378
1379 Note that in order to perform the install step above you need to have
1380 appropriate permissions to write to the installation directory.
1381
1382 The above commands will install all the software components in this
1383 directory tree under `<PREFIX>` (the directory given with `--prefix` or
1384 its default):
1385
1386 ### Unix / Linux / macOS
1387
1388     bin/           Contains the openssl binary and a few other
1389                    utility scripts.
1390     include/openssl
1391                    Contains the header files needed if you want
1392                    to build your own programs that use libcrypto
1393                    or libssl.
1394     lib            Contains the OpenSSL library files.
1395     lib/engines    Contains the OpenSSL dynamically loadable engines.
1396
1397     share/man/man1 Contains the OpenSSL command line man-pages.
1398     share/man/man3 Contains the OpenSSL library calls man-pages.
1399     share/man/man5 Contains the OpenSSL configuration format man-pages.
1400     share/man/man7 Contains the OpenSSL other misc man-pages.
1401
1402     share/doc/openssl/html/man1
1403     share/doc/openssl/html/man3
1404     share/doc/openssl/html/man5
1405     share/doc/openssl/html/man7
1406                    Contains the HTML rendition of the man-pages.
1407
1408 ### OpenVMS
1409
1410 'arch' is replaced with the architecture name, `ALPHA` or `IA64`,
1411 'sover' is replaced with the shared library version (`0101` for 1.1), and
1412 'pz' is replaced with the pointer size OpenSSL was built with:
1413
1414     [.EXE.'arch']  Contains the openssl binary.
1415     [.EXE]         Contains a few utility scripts.
1416     [.include.openssl]
1417                    Contains the header files needed if you want
1418                    to build your own programs that use libcrypto
1419                    or libssl.
1420     [.LIB.'arch']  Contains the OpenSSL library files.
1421     [.ENGINES'sover''pz'.'arch']
1422                    Contains the OpenSSL dynamically loadable engines.
1423     [.SYS$STARTUP] Contains startup, login and shutdown scripts.
1424                    These define appropriate logical names and
1425                    command symbols.
1426     [.SYSTEST]     Contains the installation verification procedure.
1427     [.HTML]        Contains the HTML rendition of the manual pages.
1428
1429 ### Additional Directories
1430
1431 Additionally, install will add the following directories under
1432 OPENSSLDIR (the directory given with `--openssldir` or its default)
1433 for you convenience:
1434
1435     certs          Initially empty, this is the default location
1436                    for certificate files.
1437     private        Initially empty, this is the default location
1438                    for private key files.
1439     misc           Various scripts.
1440
1441 The installation directory should be appropriately protected to ensure
1442 unprivileged users cannot make changes to OpenSSL binaries or files, or
1443 install engines.  If you already have a pre-installed version of OpenSSL as
1444 part of your Operating System it is recommended that you do not overwrite
1445 the system version and instead install to somewhere else.
1446
1447 Package builders who want to configure the library for standard locations,
1448 but have the package installed somewhere else so that it can easily be
1449 packaged, can use
1450
1451     $ make DESTDIR=/tmp/package-root install         # Unix
1452     $ mms/macro="DESTDIR=TMP:[PACKAGE-ROOT]" install ! OpenVMS
1453
1454 The specified destination directory will be prepended to all installation
1455 target paths.
1456
1457 Compatibility issues with previous OpenSSL versions
1458 ---------------------------------------------------
1459
1460 ### COMPILING existing applications
1461
1462 Starting with version 1.1.0, OpenSSL hides a number of structures that were
1463 previously open.  This includes all internal libssl structures and a number
1464 of EVP types.  Accessor functions have been added to allow controlled access
1465 to the structures' data.
1466
1467 This means that some software needs to be rewritten to adapt to the new ways
1468 of doing things.  This often amounts to allocating an instance of a structure
1469 explicitly where you could previously allocate them on the stack as automatic
1470 variables, and using the provided accessor functions where you would previously
1471 access a structure's field directly.
1472
1473 Some APIs have changed as well.  However, older APIs have been preserved when
1474 possible.
1475
1476 Post-installation Notes
1477 -----------------------
1478
1479 With the default OpenSSL installation comes a FIPS provider module, which
1480 needs some post-installation attention, without which it will not be usable.
1481 This involves using the following command:
1482
1483     $ openssl fipsinstall
1484
1485 See the openssl-fipsinstall(1) manual for details and examples.
1486
1487 Advanced Build Options
1488 ======================
1489
1490 Environment Variables
1491 ---------------------
1492
1493 A number of environment variables can be used to provide additional control
1494 over the build process.  Typically these should be defined prior to running
1495 `Configure`.  Not all environment variables are relevant to all platforms.
1496
1497     AR
1498                    The name of the ar executable to use.
1499
1500     BUILDFILE
1501                    Use a different build file name than the platform default
1502                    ("Makefile" on Unix-like platforms, "makefile" on native Windows,
1503                    "descrip.mms" on OpenVMS).  This requires that there is a
1504                    corresponding build file template.
1505                    See [Configurations/README.md](Configurations/README.md)
1506                    for further information.
1507
1508     CC
1509                    The compiler to use. Configure will attempt to pick a default
1510                    compiler for your platform but this choice can be overridden
1511                    using this variable. Set it to the compiler executable you wish
1512                    to use, e.g. gcc or clang.
1513
1514     CROSS_COMPILE
1515                    This environment variable has the same meaning as for the
1516                    "--cross-compile-prefix" Configure flag described above. If both
1517                    are set then the Configure flag takes precedence.
1518
1519     HASHBANGPERL
1520                    The command string for the Perl executable to insert in the
1521                    #! line of perl scripts that will be publicly installed.
1522                    Default: /usr/bin/env perl
1523                    Note: the value of this variable is added to the same scripts
1524                    on all platforms, but it's only relevant on Unix-like platforms.
1525
1526     KERNEL_BITS
1527                    This can be the value `32` or `64` to specify the architecture
1528                    when it is not "obvious" to the configuration. It should generally
1529                    not be necessary to specify this environment variable.
1530
1531     NM
1532                    The name of the nm executable to use.
1533
1534     OPENSSL_LOCAL_CONFIG_DIR
1535                    OpenSSL comes with a database of information about how it
1536                    should be built on different platforms as well as build file
1537                    templates for those platforms. The database is comprised of
1538                    ".conf" files in the Configurations directory.  The build
1539                    file templates reside there as well as ".tmpl" files. See the
1540                    file [Configurations/README.md](Configurations/README.md)
1541                    for further information about the format of ".conf" files
1542                    as well as information on the ".tmpl" files.
1543                    In addition to the standard ".conf" and ".tmpl" files, it is
1544                    possible to create your own ".conf" and ".tmpl" files and
1545                    store them locally, outside the OpenSSL source tree.
1546                    This environment variable can be set to the directory where
1547                    these files are held and will be considered by Configure
1548                    before it looks in the standard directories.
1549
1550     PERL
1551                    The name of the Perl executable to use when building OpenSSL.
1552                    Only needed if builing should use a different Perl executable
1553                    than what is used to run the Configure script.
1554
1555     RANLIB
1556                    The name of the ranlib executable to use.
1557
1558     RC
1559                    The name of the rc executable to use. The default will be as
1560                    defined for the target platform in the ".conf" file. If not
1561                    defined then "windres" will be used. The WINDRES environment
1562                    variable is synonymous to this. If both are defined then RC
1563                    takes precedence.
1564
1565     WINDRES
1566                    See RC.
1567
1568 Makefile Targets
1569 ----------------
1570
1571 The `Configure` script generates a Makefile in a format relevant to the specific
1572 platform.  The Makefiles provide a number of targets that can be used.  Not all
1573 targets may be available on all platforms.  Only the most common targets are
1574 described here.  Examine the Makefiles themselves for the full list.
1575
1576     all
1577                    The target to build all the software components and
1578                    documentation.
1579
1580     build_sw
1581                    Build all the software components.
1582                    THIS IS THE DEFAULT TARGET.
1583
1584     build_docs
1585                    Build all documentation components.
1586
1587     clean
1588                    Remove all build artefacts and return the directory to a "clean"
1589                    state.
1590
1591     depend
1592                    Rebuild the dependencies in the Makefiles. This is a legacy
1593                    option that no longer needs to be used since OpenSSL 1.1.0.
1594
1595     install
1596                    Install all OpenSSL components.
1597
1598     install_sw
1599                    Only install the OpenSSL software components.
1600
1601     install_docs
1602                    Only install the OpenSSL documentation components.
1603
1604     install_man_docs
1605                    Only install the OpenSSL man pages (Unix only).
1606
1607     install_html_docs
1608                    Only install the OpenSSL HTML documentation.
1609
1610     install_fips
1611                    Install the FIPS provider module configuration file.
1612
1613     list-tests
1614                    Prints a list of all the self test names.
1615
1616     test
1617                    Build and run the OpenSSL self tests.
1618
1619     uninstall
1620                    Uninstall all OpenSSL components.
1621
1622     reconfigure
1623     reconf
1624                    Re-run the configuration process, as exactly as the last time
1625                    as possible.
1626
1627     update
1628                    This is a developer option. If you are developing a patch for
1629                    OpenSSL you may need to use this if you want to update
1630                    automatically generated files; add new error codes or add new
1631                    (or change the visibility of) public API functions. (Unix only).
1632
1633 Running Selected Tests
1634 ----------------------
1635
1636 You can specify a set of tests to be performed
1637 using the `make` variable `TESTS`.
1638
1639 See the section [Running Selected Tests of
1640 test/README.md](test/README.md#running-selected-tests).
1641
1642 Troubleshooting
1643 ===============
1644
1645 Configuration Problems
1646 ----------------------
1647
1648 ### Selecting the correct target
1649
1650 The `./Configure` script tries hard to guess your operating system, but in some
1651 cases it does not succeed. You will see a message like the following:
1652
1653     $ ./Configure
1654     Operating system: x86-whatever-minix
1655     This system (minix) is not supported. See file INSTALL.md for details.
1656
1657 Even if the automatic target selection by the `./Configure` script fails,
1658 chances are that you still might find a suitable target in the `Configurations`
1659 directory, which you can supply to the `./Configure` command,
1660 possibly after some adjustment.
1661
1662 The `Configurations/` directory contains a lot of examples of such targets.
1663 The main configuration file is [10-main.conf], which contains all targets that
1664 are officially supported by the OpenSSL team. Other configuration files contain
1665 targets contributed by other OpenSSL users. The list of targets can be found in
1666 a Perl list `my %targets = ( ... )`.
1667
1668     my %targets = (
1669     ...
1670     "target-name" => {
1671         inherit_from     => [ "base-target" ],
1672         CC               => "...",
1673         cflags           => add("..."),
1674         asm_arch         => '...',
1675         perlasm_scheme   => "...",
1676     },
1677     ...
1678     )
1679
1680 If you call `./Configure` without arguments, it will give you a list of all
1681 known targets. Using `grep`, you can lookup the target definition in the
1682 `Configurations/` directory. For example the `android-x86_64` can be found in
1683 [Configurations/15-android.conf](Configurations/15-android.conf).
1684
1685 The directory contains two README files, which explain the general syntax and
1686 design of the configuration files.
1687
1688  - [Configurations/README.md](Configurations/README.md)
1689  - [Configurations/README-design.md](Configurations/README-design.md)
1690
1691 If you need further help, try to search the [openssl-users] mailing list
1692 or the [GitHub Issues] for existing solutions. If you don't find anything,
1693 you can [raise an issue] to ask a question yourself.
1694
1695 More about our support resources can be found in the [SUPPORT] file.
1696
1697 ### Configuration Errors
1698
1699 If the `./Configure` or `./Configure` command fails with an error message,
1700 read the error message carefully and try to figure out whether you made
1701 a mistake (e.g., by providing a wrong option), or whether the script is
1702 working incorrectly. If you think you encountered a bug, please
1703 [raise an issue] on GitHub to file a bug report.
1704
1705 Along with a short description of the bug, please provide the complete
1706 configure command line and the relevant output including the error message.
1707
1708 Note: To make the output readable, please add a 'code fence' (three backquotes
1709 ` ``` ` on a separate line) before and after your output:
1710
1711      ```
1712      ./Configure [your arguments...]
1713
1714      [output...]
1715
1716      ```
1717
1718 Build Failures
1719 --------------
1720
1721 If the build fails, look carefully at the output. Try to locate and understand
1722 the error message. It might be that the compiler is already telling you
1723 exactly what you need to do to fix your problem.
1724
1725 There may be reasons for the failure that aren't problems in OpenSSL itself,
1726 for example if the compiler reports missing standard or third party headers.
1727
1728 If the build succeeded previously, but fails after a source or configuration
1729 change, it might be helpful to clean the build tree before attempting another
1730 build.  Use this command:
1731
1732     $ make clean                                     # Unix
1733     $ mms clean                                      ! (or mmk) OpenVMS
1734     $ nmake clean                                    # Windows
1735
1736 Assembler error messages can sometimes be sidestepped by using the `no-asm`
1737 configuration option. See also [notes](#notes-on-assembler-modules-compilation).
1738
1739 Compiling parts of OpenSSL with gcc and others with the system compiler will
1740 result in unresolved symbols on some systems.
1741
1742 If you are still having problems, try to search the [openssl-users] mailing
1743 list or the [GitHub Issues] for existing solutions. If you think you
1744 encountered an OpenSSL bug, please [raise an issue] to file a bug report.
1745 Please take the time to review the existing issues first; maybe the bug was
1746 already reported or has already been fixed.
1747
1748 Test Failures
1749 -------------
1750
1751 If some tests fail, look at the output.  There may be reasons for the failure
1752 that isn't a problem in OpenSSL itself (like an OS malfunction or a Perl issue).
1753
1754 You may want increased verbosity, that can be accomplished as described in
1755 section [Test Failures of test/README.md](test/README.md#test-failures).
1756
1757 You may also want to selectively specify which test(s) to perform. This can be
1758 done using the `make` variable `TESTS` as described in section [Running
1759 Selected Tests of test/README.md](test/README.md#running-selected-tests).
1760
1761 If you find a problem with OpenSSL itself, try removing any
1762 compiler optimization flags from the `CFLAGS` line in the Makefile and
1763 run `make clean; make` or corresponding.
1764
1765 To report a bug please open an issue on GitHub, at
1766 <https://github.com/openssl/openssl/issues>.
1767
1768 Notes
1769 =====
1770
1771 Notes on multi-threading
1772 ------------------------
1773
1774 For some systems, the OpenSSL `Configure` script knows what compiler options
1775 are needed to generate a library that is suitable for multi-threaded
1776 applications.  On these systems, support for multi-threading is enabled
1777 by default; use the `no-threads` option to disable (this should never be
1778 necessary).
1779
1780 On other systems, to enable support for multi-threading, you will have
1781 to specify at least two options: `threads`, and a system-dependent option.
1782 (The latter is `-D_REENTRANT` on various systems.)  The default in this
1783 case, obviously, is not to include support for multi-threading (but
1784 you can still use `no-threads` to suppress an annoying warning message
1785 from the `Configure` script.)
1786
1787 OpenSSL provides built-in support for two threading models: pthreads (found on
1788 most UNIX/Linux systems), and Windows threads.  No other threading models are
1789 supported.  If your platform does not provide pthreads or Windows threads then
1790 you should use `Configure` with the `no-threads` option.
1791
1792 For pthreads, all locks are non-recursive. In addition, in a debug build,
1793 the mutex attribute `PTHREAD_MUTEX_ERRORCHECK` is used. If this is not
1794 available on your platform, you might have to add
1795 `-DOPENSSL_NO_MUTEX_ERRORCHECK` to your `Configure` invocation.
1796 (On Linux `PTHREAD_MUTEX_ERRORCHECK` is an enum value, so a built-in
1797 ifdef test cannot be used.)
1798
1799 Notes on shared libraries
1800 -------------------------
1801
1802 For most systems the OpenSSL `Configure` script knows what is needed to
1803 build shared libraries for libcrypto and libssl.  On these systems
1804 the shared libraries will be created by default.  This can be suppressed and
1805 only static libraries created by using the `no-shared` option.  On systems
1806 where OpenSSL does not know how to build shared libraries the `no-shared`
1807 option will be forced and only static libraries will be created.
1808
1809 Shared libraries are named a little differently on different platforms.
1810 One way or another, they all have the major OpenSSL version number as
1811 part of the file name, i.e.  for OpenSSL 1.1.x, `1.1` is somehow part of
1812 the name.
1813
1814 On most POSIX platforms, shared libraries are named `libcrypto.so.1.1`
1815 and `libssl.so.1.1`.
1816
1817 on Cygwin, shared libraries are named `cygcrypto-1.1.dll` and `cygssl-1.1.dll`
1818 with import libraries `libcrypto.dll.a` and `libssl.dll.a`.
1819
1820 On Windows build with MSVC or using MingW, shared libraries are named
1821 `libcrypto-1_1.dll` and `libssl-1_1.dll` for 32-bit Windows,
1822 `libcrypto-1_1-x64.dll` and `libssl-1_1-x64.dll` for 64-bit x86_64 Windows,
1823 and `libcrypto-1_1-ia64.dll` and `libssl-1_1-ia64.dll` for IA64 Windows.
1824 With MSVC, the import libraries are named `libcrypto.lib` and `libssl.lib`,
1825 while with MingW, they are named `libcrypto.dll.a` and `libssl.dll.a`.
1826
1827 On VMS, shareable images (VMS speak for shared libraries) are named
1828 `ossl$libcrypto0101_shr.exe` and `ossl$libssl0101_shr.exe`.  However, when
1829 OpenSSL is specifically built for 32-bit pointers, the shareable images
1830 are named `ossl$libcrypto0101_shr32.exe` and `ossl$libssl0101_shr32.exe`
1831 instead, and when built for 64-bit pointers, they are named
1832 `ossl$libcrypto0101_shr64.exe` and `ossl$libssl0101_shr64.exe`.
1833
1834 Notes on random number generation
1835 ---------------------------------
1836
1837 Availability of cryptographically secure random numbers is required for
1838 secret key generation.  OpenSSL provides several options to seed the
1839 internal CSPRNG.  If not properly seeded, the internal CSPRNG will refuse
1840 to deliver random bytes and a "PRNG not seeded error" will occur.
1841
1842 The seeding method can be configured using the `--with-rand-seed` option,
1843 which can be used to specify a comma separated list of seed methods.
1844 However, in most cases OpenSSL will choose a suitable default method,
1845 so it is not necessary to explicitly provide this option.  Note also
1846 that not all methods are available on all platforms.  The FIPS provider will
1847 silently ignore seed sources that were not validated.
1848
1849 I) On operating systems which provide a suitable randomness source (in
1850 form  of a system call or system device), OpenSSL will use the optimal
1851 available  method to seed the CSPRNG from the operating system's
1852 randomness sources.  This corresponds to the option `--with-rand-seed=os`.
1853
1854 II) On systems without such a suitable randomness source, automatic seeding
1855 and reseeding is disabled (`--with-rand-seed=none`) and it may be necessary
1856 to install additional support software to obtain a random seed and reseed
1857 the CSPRNG manually.  Please check out the manual pages for `RAND_add()`,
1858 `RAND_bytes()`, `RAND_egd()`, and the FAQ for more information.
1859
1860 Notes on assembler modules compilation
1861 --------------------------------------
1862
1863 Compilation of some code paths in assembler modules might depend on whether the
1864 current assembler version supports certain ISA extensions or not. Code paths
1865 that use the AES-NI, PCLMULQDQ, SSSE3, and SHA extensions are always assembled.
1866 Apart from that, the minimum requirements for the assembler versions are shown
1867 in the table below:
1868
1869 | ISA extension | GNU as | nasm   | llvm    |
1870 |---------------|--------|--------|---------|
1871 | AVX           | 2.19   | 2.09   | 3.0     |
1872 | AVX2          | 2.22   | 2.10   | 3.1     |
1873 | ADCX/ADOX     | 2.23   | 2.10   | 3.3     |
1874 | AVX512        | 2.25   | 2.11.8 | 3.6 (*) |
1875 | AVX512IFMA    | 2.26   | 2.11.8 | 6.0 (*) |
1876 | VAES          | 2.30   | 2.13.3 | 6.0 (*) |
1877
1878 ---
1879
1880 (*) Even though AVX512 support was implemented in llvm 3.6, prior to version 7.0
1881 an explicit -march flag was apparently required to compile assembly modules. But
1882 then the compiler generates processor-specific code, which in turn contradicts
1883 the idea of performing dispatch at run-time, which is facilitated by the special
1884 variable `OPENSSL_ia32cap`. For versions older than 7.0, it is possible to work
1885 around the problem by forcing the build procedure to use the following script:
1886
1887     #!/bin/sh
1888     exec clang -no-integrated-as "$@"
1889
1890 instead of the real clang. In which case it doesn't matter what clang version
1891 is used, as it is the version of the GNU assembler that will be checked.
1892
1893 ---
1894
1895 <!-- Links  -->
1896
1897 [openssl-users]:
1898     <https://mta.openssl.org/mailman/listinfo/openssl-users>
1899
1900 [SUPPORT]:
1901     ./SUPPORT.md
1902
1903 [GitHub Issues]:
1904     <https://github.com/openssl/openssl/issues>
1905
1906 [raise an issue]:
1907     <https://github.com/openssl/openssl/issues/new/choose>
1908
1909 [10-main.conf]:
1910     Configurations/10-main.conf