INSTALL 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. INSTALLATION ON THE UNIX PLATFORM
  2. ---------------------------------
  3. [Installation on DOS (with djgpp), Windows, OpenVMS, MacOS (before MacOS X)
  4. and NetWare is described in INSTALL.DJGPP, INSTALL.W32, INSTALL.VMS,
  5. INSTALL.MacOS and INSTALL.NW.
  6. This document describes installation on operating systems in the Unix
  7. family.]
  8. To install OpenSSL, you will need:
  9. * make
  10. * Perl 5
  11. * an ANSI C compiler
  12. * a development environment in form of development libraries and C
  13. header files
  14. * a supported Unix operating system
  15. Quick Start
  16. -----------
  17. If you want to just get on with it, do:
  18. $ ./config
  19. $ make
  20. $ make test
  21. $ make install
  22. [If any of these steps fails, see section Installation in Detail below.]
  23. This will build and install OpenSSL in the default location, which is (for
  24. historical reasons) /usr/local/ssl. If you want to install it anywhere else,
  25. run config like this:
  26. $ ./config --prefix=/usr/local --openssldir=/usr/local/openssl
  27. Configuration Options
  28. ---------------------
  29. There are several options to ./config (or ./Configure) to customize
  30. the build:
  31. --prefix=DIR Install in DIR/bin, DIR/lib, DIR/include/openssl.
  32. Configuration files used by OpenSSL will be in DIR/ssl
  33. or the directory specified by --openssldir.
  34. --openssldir=DIR Directory for OpenSSL files. If no prefix is specified,
  35. the library files and binaries are also installed there.
  36. no-threads Don't try to build with support for multi-threaded
  37. applications.
  38. threads Build with support for multi-threaded applications.
  39. This will usually require additional system-dependent options!
  40. See "Note on multi-threading" below.
  41. no-zlib Don't try to build with support for zlib compression and
  42. decompression.
  43. zlib Build with support for zlib compression/decompression.
  44. zlib-dynamic Like "zlib", but has OpenSSL load the zlib library dynamically
  45. when needed. This is only supported on systems where loading
  46. of shared libraries is supported. This is the default choice.
  47. no-shared Don't try to create shared libraries.
  48. shared In addition to the usual static libraries, create shared
  49. libraries on platforms where it's supported. See "Note on
  50. shared libraries" below.
  51. no-asm Do not use assembler code.
  52. 386 In 32-bit x86 builds, when generating assembly modules,
  53. use the 80386 instruction set only (the default x86 code
  54. is more efficient, but requires at least a 486). Note:
  55. This doesn't affect code generated by compiler, you're
  56. likely to complement configuration command line with
  57. suitable compiler-specific option.
  58. no-sse2 Exclude SSE2 code paths from 32-bit x86 assembly modules.
  59. Normally SSE2 extension is detected at run-time, but the
  60. decision whether or not the machine code will be executed
  61. is taken solely on CPU capability vector. This means that
  62. if you happen to run OS kernel which does not support SSE2
  63. extension on Intel P4 processor, then your application
  64. might be exposed to "illegal instruction" exception.
  65. There might be a way to enable support in kernel, e.g.
  66. FreeBSD kernel can be compiled with CPU_ENABLE_SSE, and
  67. there is a way to disengage SSE2 code paths upon application
  68. start-up, but if you aim for wider "audience" running
  69. such kernel, consider no-sse2. Both the 386 and
  70. no-asm options imply no-sse2.
  71. no-<cipher> Build without the specified cipher (bf, cast, des, dh, dsa,
  72. hmac, md2, md5, mdc2, rc2, rc4, rc5, rsa, sha).
  73. The crypto/<cipher> directory can be removed after running
  74. "make depend".
  75. -Dxxx, -lxxx, -Lxxx, -fxxx, -mXXX, -Kxxx These system specific options will
  76. be passed through to the compiler to allow you to
  77. define preprocessor symbols, specify additional libraries,
  78. library directories or other compiler options. It might be
  79. worth noting that some compilers generate code specifically
  80. for processor the compiler currently executes on. This is
  81. not necessarily what you might have in mind, since it might
  82. be unsuitable for execution on other, typically older,
  83. processor. Consult your compiler documentation.
  84. -DHAVE_CRYPTODEV Enable the BSD cryptodev engine even if we are not using
  85. BSD. Useful if you are running ocf-linux or something
  86. similar. Once enabled you can also enable the use of
  87. cryptodev digests, which is usually slower unless you have
  88. large amounts data. Use -DUSE_CRYPTODEV_DIGESTS to force
  89. it.
  90. Installation in Detail
  91. ----------------------
  92. 1a. Configure OpenSSL for your operation system automatically:
  93. $ ./config [options]
  94. This guesses at your operating system (and compiler, if necessary) and
  95. configures OpenSSL based on this guess. Run ./config -t to see
  96. if it guessed correctly. If you want to use a different compiler, you
  97. are cross-compiling for another platform, or the ./config guess was
  98. wrong for other reasons, go to step 1b. Otherwise go to step 2.
  99. On some systems, you can include debugging information as follows:
  100. $ ./config -d [options]
  101. 1b. Configure OpenSSL for your operating system manually
  102. OpenSSL knows about a range of different operating system, hardware and
  103. compiler combinations. To see the ones it knows about, run
  104. $ ./Configure
  105. Pick a suitable name from the list that matches your system. For most
  106. operating systems there is a choice between using "cc" or "gcc". When
  107. you have identified your system (and if necessary compiler) use this name
  108. as the argument to ./Configure. For example, a "linux-elf" user would
  109. run:
  110. $ ./Configure linux-elf [options]
  111. If your system is not available, you will have to edit the Configure
  112. program and add the correct configuration for your system. The
  113. generic configurations "cc" or "gcc" should usually work on 32 bit
  114. systems.
  115. Configure creates the file Makefile.ssl from Makefile.org and
  116. defines various macros in crypto/opensslconf.h (generated from
  117. crypto/opensslconf.h.in).
  118. 2. Build OpenSSL by running:
  119. $ make
  120. This will build the OpenSSL libraries (libcrypto.a and libssl.a) and the
  121. OpenSSL binary ("openssl"). The libraries will be built in the top-level
  122. directory, and the binary will be in the "apps" directory.
  123. If the build fails, look at the output. There may be reasons
  124. for the failure that aren't problems in OpenSSL itself (like
  125. missing standard headers). If you are having problems you can
  126. get help by sending an email to the openssl-users email list (see
  127. https://www.openssl.org/community/mailinglists.html for details). If
  128. it is a bug with OpenSSL itself, please open an issue on GitHub, at
  129. https://github.com/openssl/openssl/issues. Please review the existing
  130. ones first; maybe the bug was already reported or has already been
  131. fixed.
  132. (If you encounter assembler error messages, try the "no-asm"
  133. configuration option as an immediate fix.)
  134. Compiling parts of OpenSSL with gcc and others with the system
  135. compiler will result in unresolved symbols on some systems.
  136. 3. After a successful build, the libraries should be tested. Run:
  137. $ make test
  138. If a test fails, look at the output. There may be reasons for
  139. the failure that isn't a problem in OpenSSL itself (like a missing
  140. or malfunctioning bc). If it is a problem with OpenSSL itself,
  141. try removing any compiler optimization flags from the CFLAG line
  142. in Makefile.ssl and run "make clean; make". Please send a bug
  143. report to <openssl-bugs@openssl.org>, including the output of
  144. "make report" in order to be added to the request tracker at
  145. http://www.openssl.org/support/rt.html.
  146. 4. If everything tests ok, install OpenSSL with
  147. $ make install
  148. This will create the installation directory (if it does not exist) and
  149. then the following subdirectories:
  150. certs Initially empty, this is the default location
  151. for certificate files.
  152. man/man1 Manual pages for the 'openssl' command line tool
  153. man/man3 Manual pages for the libraries (very incomplete)
  154. misc Various scripts.
  155. private Initially empty, this is the default location
  156. for private key files.
  157. If you didn't choose a different installation prefix, the
  158. following additional subdirectories will be created:
  159. bin Contains the openssl binary and a few other
  160. utility programs.
  161. include/openssl Contains the header files needed if you want to
  162. compile programs with libcrypto or libssl.
  163. lib Contains the OpenSSL library files themselves.
  164. Use "make install_sw" to install the software without documentation,
  165. and "install_docs_html" to install HTML renditions of the manual
  166. pages.
  167. Package builders who want to configure the library for standard
  168. locations, but have the package installed somewhere else so that
  169. it can easily be packaged, can use
  170. $ make INSTALL_PREFIX=/tmp/package-root install
  171. (or specify "--install_prefix=/tmp/package-root" as a configure
  172. option). The specified prefix will be prepended to all
  173. installation target filenames.
  174. NOTE: The header files used to reside directly in the include
  175. directory, but have now been moved to include/openssl so that
  176. OpenSSL can co-exist with other libraries which use some of the
  177. same filenames. This means that applications that use OpenSSL
  178. should now use C preprocessor directives of the form
  179. #include <openssl/ssl.h>
  180. instead of "#include <ssl.h>", which was used with library versions
  181. up to OpenSSL 0.9.2b.
  182. If you install a new version of OpenSSL over an old library version,
  183. you should delete the old header files in the include directory.
  184. Compatibility issues:
  185. * COMPILING existing applications
  186. To compile an application that uses old filenames -- e.g.
  187. "#include <ssl.h>" --, it will usually be enough to find
  188. the CFLAGS definition in the application's Makefile and
  189. add a C option such as
  190. -I/usr/local/ssl/include/openssl
  191. to it.
  192. But don't delete the existing -I option that points to
  193. the ..../include directory! Otherwise, OpenSSL header files
  194. could not #include each other.
  195. * WRITING applications
  196. To write an application that is able to handle both the new
  197. and the old directory layout, so that it can still be compiled
  198. with library versions up to OpenSSL 0.9.2b without bothering
  199. the user, you can proceed as follows:
  200. - Always use the new filename of OpenSSL header files,
  201. e.g. #include <openssl/ssl.h>.
  202. - Create a directory "incl" that contains only a symbolic
  203. link named "openssl", which points to the "include" directory
  204. of OpenSSL.
  205. For example, your application's Makefile might contain the
  206. following rule, if OPENSSLDIR is a pathname (absolute or
  207. relative) of the directory where OpenSSL resides:
  208. incl/openssl:
  209. -mkdir incl
  210. cd $(OPENSSLDIR) # Check whether the directory really exists
  211. -ln -s `cd $(OPENSSLDIR); pwd`/include incl/openssl
  212. You will have to add "incl/openssl" to the dependencies
  213. of those C files that include some OpenSSL header file.
  214. - Add "-Iincl" to your CFLAGS.
  215. With these additions, the OpenSSL header files will be available
  216. under both name variants if an old library version is used:
  217. Your application can reach them under names like <openssl/foo.h>,
  218. while the header files still are able to #include each other
  219. with names of the form <foo.h>.
  220. Note on multi-threading
  221. -----------------------
  222. For some systems, the OpenSSL Configure script knows what compiler options
  223. are needed to generate a library that is suitable for multi-threaded
  224. applications. On these systems, support for multi-threading is enabled
  225. by default; use the "no-threads" option to disable (this should never be
  226. necessary).
  227. On other systems, to enable support for multi-threading, you will have
  228. to specify at least two options: "threads", and a system-dependent option.
  229. (The latter is "-D_REENTRANT" on various systems.) The default in this
  230. case, obviously, is not to include support for multi-threading (but
  231. you can still use "no-threads" to suppress an annoying warning message
  232. from the Configure script.)
  233. Note on shared libraries
  234. ------------------------
  235. Shared libraries have certain caveats. Binary backward compatibility
  236. can't be guaranteed before OpenSSL version 1.0. The only reason to
  237. use them would be to conserve memory on systems where several programs
  238. are using OpenSSL.
  239. For some systems, the OpenSSL Configure script knows what is needed to
  240. build shared libraries for libcrypto and libssl. On these systems,
  241. the shared libraries are currently not created by default, but giving
  242. the option "shared" will get them created. This method supports Makefile
  243. targets for shared library creation, like linux-shared. Those targets
  244. can currently be used on their own just as well, but this is expected
  245. to change in future versions of OpenSSL.
  246. Note on random number generation
  247. --------------------------------
  248. Availability of cryptographically secure random numbers is required for
  249. secret key generation. OpenSSL provides several options to seed the
  250. internal PRNG. If not properly seeded, the internal PRNG will refuse
  251. to deliver random bytes and a "PRNG not seeded error" will occur.
  252. On systems without /dev/urandom (or similar) device, it may be necessary
  253. to install additional support software to obtain random seed.
  254. Please check out the manual pages for RAND_add(), RAND_bytes(), RAND_egd(),
  255. and the FAQ for more information.
  256. Note on support for multiple builds
  257. -----------------------------------
  258. OpenSSL is usually built in its source tree. Unfortunately, this doesn't
  259. support building for multiple platforms from the same source tree very well.
  260. It is however possible to build in a separate tree through the use of lots
  261. of symbolic links, which should be prepared like this:
  262. mkdir -p objtree/"`uname -s`-`uname -r`-`uname -m`"
  263. cd objtree/"`uname -s`-`uname -r`-`uname -m`"
  264. (cd $OPENSSL_SOURCE; find . -type f) | while read F; do
  265. mkdir -p `dirname $F`
  266. rm -f $F; ln -s $OPENSSL_SOURCE/$F $F
  267. echo $F '->' $OPENSSL_SOURCE/$F
  268. done
  269. make -f Makefile.org clean
  270. OPENSSL_SOURCE is an environment variable that contains the absolute (this
  271. is important!) path to the OpenSSL source tree.
  272. Also, operations like 'make update' should still be made in the source tree.