diff options
author | Zack Weinberg <zackw@panix.com> | 2018-08-29 12:42:46 -0400 |
---|---|---|
committer | Zack Weinberg <zackw@panix.com> | 2018-08-29 12:42:46 -0400 |
commit | 6b06074d71d11fb7bee535792fb68f78431d36e6 (patch) | |
tree | f77d6f0deba0145ae12466475ca0159ce6209022 | |
parent | 26ee4902b25a2657d4ebba08978c268ada430e43 (diff) | |
download | libxcrypt-6b06074d71d11fb7bee535792fb68f78431d36e6.tar.gz libxcrypt-6b06074d71d11fb7bee535792fb68f78431d36e6.tar.bz2 libxcrypt-6b06074d71d11fb7bee535792fb68f78431d36e6.zip |
Grab bag of documentation updates.
* README.md: mention yescrypt
* README.md: document required tools for building from a Git
checkout (issue #23)
* README.md: document that -flto cannot be used due to
incompatibility with symbol versioning (issue #24)
* README.md: use curly quotes and apostrophes; use out-of-line
hyperlinks for better readability as plain text
* AUTHORS: say that the sunmd5 hash module is a clean-room
reimplementation to avoid the CDDL
* THANKS: move prior contributor credits here from README;
alphabetize; mention Dmitry Levin, Alec Muffett, and Colin Percival
* crypt_gensalt.3: document errno codes that can occur when
obtaining random bytes from the operating system fails
-rw-r--r-- | AUTHORS | 8 | ||||
-rw-r--r-- | README.md | 136 | ||||
-rw-r--r-- | THANKS | 13 | ||||
-rw-r--r-- | crypt_gensalt.3 | 7 |
4 files changed, 105 insertions, 59 deletions
@@ -20,11 +20,9 @@ Bretterklieber and based on the password hashing algorithm used by the Windows NT LAN Manager (NTLM) from Microsoft Corporation to provide easier compatibility with NT accounts. -The SUNMD5 hash module comes from (Open)Solaris, originally written -by Alec Muffett, Copyright Sun Microsystems, Inc. and was released -under the terms of the Common Development and Distribution License, -Version 1.0 only. It has been slightly modified for portability -and use inside of libxcrypt by Björn Esser. +The SUNMD5 hash module is a clean-room reimplementation by Zack Weinberg, +based on a specification written by Eli Collins for the Passlib project, +of an algorithm originally developed by Alec Muffett for use in Solaris 9. The yescrypt's crypt and gensalt backends are by <vt at altlinux.org>. @@ -5,11 +5,12 @@ README for libxcrypt ==================== libxcrypt is a modern library for one-way hashing of passwords. It -supports DES, MD5, NTHASH, SUNMD5, SHA-2-256, SHA-2-512, and -bcrypt-based password hashes, and provides the traditional Unix `crypt` -and `crypt_r` interfaces, as well as a set of extended interfaces -pioneered by Openwall Linux, `crypt_rn`, `crypt_ra`, `crypt_gensalt`, -`crypt_gensalt_rn`, and `crypt_gensalt_ra`. +supports a wide variety of both modern and historical hashing methods: +yescrypt, bcrypt, SHA-2-512, SHA-2-256, SHA-1, MD5 (two variants), +DES (three variants), and NTHASH. It provides the traditional Unix +`crypt` and `crypt_r` interfaces, as well as a set of extended +interfaces pioneered by Openwall Linux, `crypt_rn`, `crypt_ra`, +`crypt_gensalt`, `crypt_gensalt_rn`, and `crypt_gensalt_ra`. libxcrypt is intended to be used by `login(1)`, `passwd(1)`, and other similar programs; that is, to hash a small number of passwords during @@ -25,9 +26,8 @@ Authorship and Licensing libxcrypt is currently maintained by Björn Esser and Zack Weinberg. Many people have contributed to the code making up libxcrypt, often -under the aegis of a different project. We particularly wish to thank -Solar Designer, Ulrich Drepper, David Burren, and Thorsten Kukuk. -Please see the AUTHORS and THANKS files for a full set of credits. +under the aegis of a different project. Please see the AUTHORS and +THANKS files for a full set of credits. libxcrypt as a whole is licensed under the GNU Lesser General Public License (version 2.1, or at your option, any later version). However, @@ -47,13 +47,38 @@ etc. All your feedback is welcome and will eventually receive a response, but this is a spare-time project for all of the present maintainers, so please be patient. +Build Requirements and Instructions +----------------------------------- + +To build from a tarball release, the only tools required are the +standard Unix shell environment (including an implementation of AWK) +and a C compiler. Follow the generic build and installation +instructions in the file `INSTALL`. There are two package-specific +configure switches: `--enable-obsolete-api` and `--enable-hashes`. +Run `./configure --help` for more detail on these options. +Run `man -l crypt.5` for more detail on the hashing algorithms that +can be enabled or disabled by `--enable-hashes`. You can do both of +these things before building the software. + +Building from a Git checkout additionally requires the Autotools +suite: `autoconf`, `automake`, `libtool`, and `pkg-config`. +Run `autoreconf -i` at the top level of the source tree, and then +follow the instructions in `INSTALL` (which is created by that command). + +The oldest versions of Autotools components that are known to work +are: autoconf 2.69, automake 1.14, libtool 2.4.6, pkg-config 0.29. +If you test with an older version of one of these and find that it +works, please let us know. We are not deliberately requiring newer +versions; we just can’t conveniently test older versions ourselves. + Portability Notes ----------------- libxcrypt should be buildable with any ISO C1999-compliant C compiler, with one critical exception: the symbol versioning macros in -`crypt-port.h` only work with compilers that implement certain GCC/GNU -Binutils extensions (`.symver`, `__asm__`, and `__attribute__((alias)))`. +`crypt-port.h` only work with compilers that implement certain GCC and +GNU Binutils extensions (`__attribute__((alias))`, GCC-style `asm`, +and `.symver`). A few C2011 features are used; the intention is not to use any of them without a fallback, but we do not currently test this. A few POSIX @@ -62,7 +87,17 @@ intention is not to use any of them without a fallback, but we do not currently test this. In particular, the crypt_gensalt functions may not always be able to retrieve cryptographically-sound random numbers from the operating system; if you call these functions with a null -pointer for the "rbytes" argument, be prepared for them to fail. +pointer for the “rbytes” argument, be prepared for them to fail. + +As of mid-2018, GCC and LLVM don’t support link-time optimization of +libraries that use symbol versioning. If you build libxcrypt with +either of these compilers, do not use `-flto`. See [GCC bug 48200][1] +for specifics; the problem is very similar for LLVM. Because this is, +at its root, a set of missing compiler features, we expect link-time +optimization won’t work in other C compilers either, but we haven’t +tested it ourselves. + +[1]: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=48200 Compatibility Notes ------------------- @@ -70,17 +105,16 @@ Compatibility Notes On Linux-based systems, by default libxcrypt will be binary backward compatible with the libcrypt.so.1 shipped as part of the GNU C Library. This means that all existing binary executables linked -against glibc's libcrypt should work unmodified with this library's -libcrypt.so.1. We have taken pains to provide exactly the same -"symbol versions" as were used by glibc on various CPU architectures, -and to account for the variety of ways in which the Openwall -extensions were patched into glibc's libcrypt by some Linux -distributions. (For instance, compatibility symlinks for SUSE's -"libowcrypt" are provided.) +against glibc’s libcrypt should work unmodified with this library’s +libcrypt.so.1. We have taken pains to provide exactly the same symbol +versions as were used by glibc on various CPU architectures, and to +account for the variety of ways in which the Openwall extensions were +patched into glibc’s libcrypt by some Linux distributions. (For +instance, compatibility symlinks for SUSE’s “libowcrypt” are provided.) However, the converse is not true: programs linked against libxcrypt -will not work with glibc's libcrypt. Also, programs that use certain -legacy APIs supplied by glibc's libcrypt (`encrypt`, `encrypt_r`, +will not work with glibc’s libcrypt. Also, programs that use certain +legacy APIs supplied by glibc’s libcrypt (`encrypt`, `encrypt_r`, `setkey`, `setkey_r`, and `fcrypt`) cannot be *compiled* against libxcrypt. @@ -89,12 +123,12 @@ Binary backward compatibility can be disabled by supplying the will install libcrypt.so.2 instead of libcrypt.so.1. This configuration is always used on all operating systems other than Linux. We are willing to consider adding binary backward -compatibility for other operating systems' existing libcrypts, but we -don't currently plan to do that work ourselves. +compatibility for other operating systems’ existing libcrypts, but we +don’t currently plan to do that work ourselves. Individual hash functions may be enabled or disabled by use of the `--enable-hashes` switch to `configure`. The default is to enable all -supported hashes. Disabling the traditional 'des' hash algorithm +supported hashes. Disabling the traditional ‘des’ hash algorithm implies `--disable-obsolete-api`. Security-conscious environments without backward compatibility constraints are encouraged to use `--enable-hashes=strong`, which enables only the hash functions that @@ -102,22 +136,21 @@ are strong enough to be safe for newly hashed passwords. The original implementation of the SUNMD5 hashing algorithm has a bug, which is mimicked by libxcrypt to be fully compatible with hashes -generated on (Open)Solaris: According to the only existing -[documentation of this algorithm](https://dropsafe.crypticide.com/article/1389), -its hashes were supposed to have the format -`$md5[,rounds=%u]$<salt>$<checksum>`, and include only the bare -string `$md5[,rounds=%u]$<salt>` in the salt digest step. However, -almost all hashes encountered in production environments have the -format `$md5[,rounds=%u]$<salt>$$<checksum>` (note the double $$). -Unfortunately, it is not merely a cosmetic difference: hashes of this -format incorporate the first $ after the salt within the salt digest -step, so the resulting checksum is different. -The documentation hints that this stems from a bug within the -production implementation’s parser. This bug causes the -implementation to return `$$`-format hashes when passed a configuration -string that ends with `$`. It returns the intended original format -and checksum only if there is at least one letter after the `$`, -e.g. `$md5[,rounds=%u]$<salt>$x`. +generated on (Open)Solaris. According to the only existing +[documentation of this algorithm][2], its hashes were supposed to have +the format `$md5[,rounds=%u]$<salt>$<checksum>`, and include only the +bare string `$md5[,rounds=%u]$<salt>` in the salt digest +step. However, almost all hashes encountered in production +environments have the format `$md5[,rounds=%u]$<salt>$$<checksum>` +(note the double $$). Unfortunately, it is not merely a cosmetic +difference: hashes of this format incorporate the first $ after the +salt within the salt digest step, so the resulting checksum is +different. The documentation hints that this stems from a bug within +the production implementation’s parser. This bug causes the +implementation to return `$$`-format hashes when passed a +configuration string that ends with `$`. It returns the intended +original format and checksum only if there is at least one letter +after the `$`, e.g. `$md5[,rounds=%u]$<salt>$x`. The NTHASH algorithm, in its original implementation, never came with any `gensalt` function, because the algorithm does not use any. @@ -128,15 +161,16 @@ the resulting hash returned by the `crypt` function, whether using one of the hashes returned by `gensalt` or simply using `$3$` as a setting for hashing a password with NTHASH. -As a final compatibility note, glibc's libcrypt could optionally be -configured to use Mozilla's NSS library's implementations of the -cryptographic primitives MD5, SHA-2-256, and SHA-2-512. This option -does not currently exist in libxcrypt, because we do not currently -believe it is a desirable option. The stated rationale for the option -in glibc is to source all cryptographic primitives from a library that -has undergone FIPS certification, but we believe FIPS certification -would need to cover all of libxcrypt itself to have any meaningful -value. Moreover, the primitive currently recommended for use by new -password hashes, bcrypt, is not available from NSS, so the -certification would not cover any part of what will hopefully be the -most used code path. +glibc’s libcrypt could optionally be configured to use Mozilla’s NSS +library’s implementations of the cryptographic primitives MD5, +SHA-2-256, and SHA-2-512. This option is not available in libxcrypt, +because we do not currently believe it is a desirable option. The +stated rationale for the option was to source all cryptographic +primitives from a library that has undergone FIPS certification, but +we believe FIPS certification would need to cover all of libxcrypt +itself to have any meaningful value. Moreover, the strongest hashing +methods, yescrypt and bcrypt, use cryptographic primitives that are +not available from NSS, so the certification would not cover any part +of what will hopefully be the most used code paths. + +[2]: https://dropsafe.crypticide.com/article/1389 @@ -1,5 +1,12 @@ -This library is new, but we would like to extend our thanks in advance -to everyone who will, in the future, send us bug reports, suggestions, -and contributions. +As mentioned in the README, many people have contributed to the code +making up libxcrypt, often under the aegis of a different project. Of +the past contributors, we particularly wish to credit David Burren, +Ulrich Drepper, Alec Muffett, Colin Percival, and Thorsten Kukuk. + +As well as the present maintainers, active contributors to the library +include Solar Designer and Dmitry V. Levin. + +We would also like to extend our thanks in advance to everyone who +will, in the future, send us bug reports, suggestions, and contributions. -- The Authors. diff --git a/crypt_gensalt.3 b/crypt_gensalt.3 index 3109740..4bb7406 100644 --- a/crypt_gensalt.3 +++ b/crypt_gensalt.3 @@ -170,6 +170,13 @@ only: failed to allocate memory for the compiled .I setting string. +.TP +.BR ENOSYS ", " EACCES ", " EIO ", etc.\&" +Obtaining random bytes from the operating system failed. +.br +This can only happen when +.I rbytes +is a null pointer. .ad b .hy 1 .SH FEATURE TEST MACROS |