]> git.ipfire.org Git - thirdparty/ipxe.git/log
thirdparty/ipxe.git
13 years ago[tls] Use hybrid MD5+SHA1 algorithm
Michael Brown [Tue, 20 Mar 2012 04:07:53 +0000 (04:07 +0000)] 
[tls] Use hybrid MD5+SHA1 algorithm

TLSv1.1 and earlier use a hybrid of MD5 and SHA-1 to generate digests
over the handshake messages.  Formalise this as a separate digest
algorithm "md5+sha1".

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[tls] Check certificate validity period against current date and time
Michael Brown [Mon, 19 Mar 2012 23:04:05 +0000 (23:04 +0000)] 
[tls] Check certificate validity period against current date and time

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[tls] Parse X.509 validity times into seconds since the Epoch
Michael Brown [Mon, 19 Mar 2012 22:49:09 +0000 (22:49 +0000)] 
[tls] Parse X.509 validity times into seconds since the Epoch

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[tls] Include current time within the client random bytes
Michael Brown [Mon, 19 Mar 2012 23:05:26 +0000 (23:05 +0000)] 
[tls] Include current time within the client random bytes

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[time] Add RTC-based time source
Michael Brown [Mon, 19 Mar 2012 17:08:51 +0000 (17:08 +0000)] 
[time] Add RTC-based time source

Add a time source using the CMOS RTC to obtain the current time.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[time] Define an API for getting the current time
Michael Brown [Mon, 19 Mar 2012 16:59:53 +0000 (16:59 +0000)] 
[time] Define an API for getting the current time

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[test] Add self-tests for mktime()
Michael Brown [Mon, 19 Mar 2012 16:10:23 +0000 (16:10 +0000)] 
[test] Add self-tests for mktime()

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[libc] Add mktime() function
Michael Brown [Mon, 19 Mar 2012 16:09:41 +0000 (16:09 +0000)] 
[libc] Add mktime() function

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[crypto] Use correct constraint for byte-addressable register
Michael Brown [Mon, 19 Mar 2012 17:22:52 +0000 (17:22 +0000)] 
[crypto] Use correct constraint for byte-addressable register

Reported-by: Daniel P. Berrange <berrange@redhat.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[tls] Validate server certificate
Michael Brown [Sun, 18 Mar 2012 20:17:41 +0000 (20:17 +0000)] 
[tls] Validate server certificate

Validate the server certificate against the trusted root certificate
store.  The server must provide a complete certificate chain, up to
and including the trusted root certificate that is embedded into iPXE.

Note that the date and time are not yet validated.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[build] Allow trusted root certificates to be specified at build time
Michael Brown [Sun, 18 Mar 2012 22:55:29 +0000 (22:55 +0000)] 
[build] Allow trusted root certificates to be specified at build time

Allow trusted root certificates to be specified at build time using
the syntax

  make TRUST=/path/to/certificate1,/path/to/certificate2,...

The build process uses openssl to calculate the SHA-256 fingerprints
of the specified certificates, and adds them to the root certificate
store in rootcert.c.  The certificates can be in any format understood
by openssl.

The certificates may be server certificates or (more usefully) CA
certificates.

If no trusted certificates are specified, then the default "iPXE root
CA" certificate will be used.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[tls] Add full X.509 certificate parsing
Michael Brown [Sun, 18 Mar 2012 17:25:55 +0000 (17:25 +0000)] 
[tls] Add full X.509 certificate parsing

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rsa] Actually check the unused-bits byte in the public key bit string
Michael Brown [Sun, 18 Mar 2012 20:42:03 +0000 (20:42 +0000)] 
[rsa] Actually check the unused-bits byte in the public key bit string

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[crypto] Force caller to provide temporary storage for modular calculations
Michael Brown [Sun, 18 Mar 2012 20:02:25 +0000 (20:02 +0000)] 
[crypto] Force caller to provide temporary storage for modular calculations

bigint_mod_multiply() and bigint_mod_exp() require a fixed amount of
temporary storage for intermediate results.  (The amount of temporary
storage required depends upon the size of the integers involved.)

When performing calculations for 4096-bit RSA the amount of temporary
storage space required will exceed 2.5kB, which is too much to
allocate on the stack.  Avoid this problem by forcing the caller to
allocate temporary storage.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Add Linux entropy source using /dev/random
Michael Brown [Sun, 18 Mar 2012 17:03:58 +0000 (17:03 +0000)] 
[rng] Add Linux entropy source using /dev/random

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Allow entropy_enable() to return an error
Michael Brown [Sun, 18 Mar 2012 16:45:04 +0000 (16:45 +0000)] 
[rng] Allow entropy_enable() to return an error

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[crypto] Remove obsolete AXTLS RSA algorithm
Michael Brown [Tue, 13 Mar 2012 16:49:42 +0000 (16:49 +0000)] 
[crypto] Remove obsolete AXTLS RSA algorithm

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[tls] Use iPXE native RSA algorithm
Michael Brown [Sun, 18 Mar 2012 14:44:53 +0000 (14:44 +0000)] 
[tls] Use iPXE native RSA algorithm

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[test] Add self-tests for RSA
Michael Brown [Sun, 18 Mar 2012 13:28:36 +0000 (13:28 +0000)] 
[test] Add self-tests for RSA

Add self-tests for the RSA algorithm using test vectors generated with
the openssl tools.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[crypto] Add native RSA algorithm
Michael Brown [Tue, 13 Mar 2012 16:47:29 +0000 (16:47 +0000)] 
[crypto] Add native RSA algorithm

Add an implementation of RSA that uses the iPXE big-integer support.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[crypto] Add abstraction for a public-key algorithm
Michael Brown [Sun, 18 Mar 2012 13:25:10 +0000 (13:25 +0000)] 
[crypto] Add abstraction for a public-key algorithm

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[crypto] Add more ASN.1 functions for X.509 certificate parsing
Michael Brown [Sun, 18 Mar 2012 13:24:20 +0000 (13:24 +0000)] 
[crypto] Add more ASN.1 functions for X.509 certificate parsing

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[test] Run self-tests as an embedded image
Michael Brown [Sun, 18 Mar 2012 02:42:00 +0000 (02:42 +0000)] 
[test] Run self-tests as an embedded image

Allow iPXE to exit after running self-tests, rather than locking the
machine.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Fix build error when assertions are enabled
Michael Brown [Fri, 16 Mar 2012 19:52:39 +0000 (19:52 +0000)] 
[rng] Fix build error when assertions are enabled

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[libc] Move VA_ARG_COUNT() macro to stdarg.h
Michael Brown [Fri, 16 Mar 2012 11:57:15 +0000 (11:57 +0000)] 
[libc] Move VA_ARG_COUNT() macro to stdarg.h

Make the non-standard but extremely useful macro VA_ARG_COUNT()
available outside of dhcp.h.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[myri10ge] Fix compilation error in myri10ge_command() with gcc 4.7
Olaf Hering [Fri, 16 Mar 2012 13:46:51 +0000 (14:46 +0100)] 
[myri10ge] Fix compilation error in myri10ge_command() with gcc 4.7

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[crypto] Use real prototypes for AXTLS' AES_encrypt() and AES_decrypt()
Michael Brown [Wed, 14 Mar 2012 00:10:31 +0000 (00:10 +0000)] 
[crypto] Use real prototypes for AXTLS' AES_encrypt() and AES_decrypt()

Avoid a compiler warning on some versions of gcc by using real
function prototypes.

Reported-by: Rob Shelley <Rob@cirris.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[eepro100] Add PCI ID 8086:10fe
1d 2k [Wed, 14 Mar 2012 00:03:19 +0000 (00:03 +0000)] 
[eepro100] Add PCI ID 8086:10fe

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[test] Add big integer self-tests
Michael Brown [Tue, 13 Mar 2012 16:44:59 +0000 (16:44 +0000)] 
[test] Add big integer self-tests

These test vectors are generated using Perl's Math::BigInt.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[crypto] Add big-integer library for RSA calculations
Michael Brown [Tue, 13 Mar 2012 16:35:21 +0000 (16:35 +0000)] 
[crypto] Add big-integer library for RSA calculations

RSA requires modular exponentiation using arbitrarily large integers.
Given the sizes of the modulus and exponent, all required calculations
can be done without any further dynamic storage allocation.  The x86
architecture allows for efficient large integer support via inline
assembly using the instructions that take advantage of the carry flag
(e.g. "adcl", "rcrl").

This implemention is approximately 80% smaller than the (more generic)
AXTLS implementation.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[crypto] Add ASN.1 functions for X.509 certificate parsing
Michael Brown [Tue, 13 Mar 2012 16:30:17 +0000 (16:30 +0000)] 
[crypto] Add ASN.1 functions for X.509 certificate parsing

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Remove obsolete (and unfinished) get_random_bytes() function
Michael Brown [Tue, 13 Mar 2012 04:41:49 +0000 (04:41 +0000)] 
[rng] Remove obsolete (and unfinished) get_random_bytes() function

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[802.11] Use rbg_generate() for secure random numbers
Michael Brown [Tue, 13 Mar 2012 04:40:19 +0000 (04:40 +0000)] 
[802.11] Use rbg_generate() for secure random numbers

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[forcedeth] Use standard random() function
Michael Brown [Tue, 13 Mar 2012 04:37:48 +0000 (04:37 +0000)] 
[forcedeth] Use standard random() function

It seems unlikely that a network card driver requires
cryptographically secure random numbers.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[tls] Use const to mark incoming data being processed
Michael Brown [Sat, 10 Mar 2012 00:25:03 +0000 (00:25 +0000)] 
[tls] Use const to mark incoming data being processed

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[crypto] Upgrade AES and RSA code to upstream axTLS version 1.4.5
Michael Brown [Fri, 9 Mar 2012 15:45:56 +0000 (15:45 +0000)] 
[crypto] Upgrade AES and RSA code to upstream axTLS version 1.4.5

All axTLS files are now vanilla versions of the upstream axTLS files,
with one minor exception: the unused "ctx" parameter of
bi_int_divide() has been marked with "__unused" to avoid a compilation
error.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[ath9k] Fix compilation on older gcc versions
Michael Brown [Fri, 9 Mar 2012 17:08:53 +0000 (17:08 +0000)] 
[ath9k] Fix compilation on older gcc versions

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[prefix] Eliminate uninitialised variable
Michael Brown [Fri, 9 Mar 2012 17:07:53 +0000 (17:07 +0000)] 
[prefix] Eliminate uninitialised variable

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[test] Avoid using "static const" for test declarations
Michael Brown [Wed, 7 Mar 2012 00:33:19 +0000 (00:33 +0000)] 
[test] Avoid using "static const" for test declarations

gcc will not warn about unused constant static variables.  An unused
test declaration is almost certainly a bug, so ensure that warnings
are generated.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[debug] Ensure debug address and colourisation fields are fully initialised
Michael Brown [Tue, 6 Mar 2012 22:02:15 +0000 (22:02 +0000)] 
[debug] Ensure debug address and colourisation fields are fully initialised

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[test] Add NIST self-tests for AES128 and AES256 in CBC mode
Michael Brown [Tue, 6 Mar 2012 21:01:30 +0000 (21:01 +0000)] 
[test] Add NIST self-tests for AES128 and AES256 in CBC mode

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Choose HMAC_DRBG using SHA-256 as the DRBG algorithm
Michael Brown [Tue, 6 Mar 2012 13:42:06 +0000 (13:42 +0000)] 
[rng] Choose HMAC_DRBG using SHA-256 as the DRBG algorithm

Both HMAC_DRBG using SHA-1 and HMAC_DRBG using SHA-256 are Approved
algorithms in ANS X9.82 for our chosen security strength of 128 bits.
However, general recommendations (see e.g. NIST SP800-57) are to use a
larger hash function in preference to SHA-1.

Since SHA-256 is required anyway for TLSv1.2 support, there is no code
size penalty for switching HMAC_DRBG to also use SHA-256.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Add NIST self-tests for HMAC_DRBG using SHA-256
Michael Brown [Tue, 6 Mar 2012 13:34:22 +0000 (13:34 +0000)] 
[rng] Add NIST self-tests for HMAC_DRBG using SHA-256

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Allow HMAC_DRBG to use multiple underlying hash algorithms
Michael Brown [Tue, 6 Mar 2012 12:58:56 +0000 (12:58 +0000)] 
[rng] Allow HMAC_DRBG to use multiple underlying hash algorithms

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Use SHA-256 for Hash_df, and validate the hash function strength
Michael Brown [Mon, 5 Mar 2012 16:21:49 +0000 (16:21 +0000)] 
[rng] Use SHA-256 for Hash_df, and validate the hash function strength

ANS X9.82 Part 4 (April 2011 Draft) Section 13.3.4.2 states that "When
using the derivation function based on a hash function, the output
length of the hash function shall meet or exceed the security strength
indicated by the min_entropy parameter in the Get_entropy_input call",
although this criteria is missing from the pseudocode provided in the
same section.

Add a test for this condition, and upgrade from SHA-1 to SHA-256 since
SHA-1 has an output length of 160 bits, which is insufficient for
generating the (128 * 3/2 = 192) bits required when instantiating the
128-bit strength DRBG.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Add NIST self-tests for Hash_df using SHA-256
Michael Brown [Mon, 5 Mar 2012 23:51:35 +0000 (23:51 +0000)] 
[rng] Add NIST self-tests for Hash_df using SHA-256

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Allow hash_df() to accept multiple underlying hash algorithms
Michael Brown [Mon, 5 Mar 2012 16:13:07 +0000 (16:13 +0000)] 
[rng] Allow hash_df() to accept multiple underlying hash algorithms

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[tls] Formalise the definition of a TLS cipher suite
Michael Brown [Mon, 5 Mar 2012 23:12:47 +0000 (23:12 +0000)] 
[tls] Formalise the definition of a TLS cipher suite

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[tls] Support (and prefer) SHA-256 variants of existing cipher suites
Michael Brown [Mon, 5 Mar 2012 15:36:38 +0000 (15:36 +0000)] 
[tls] Support (and prefer) SHA-256 variants of existing cipher suites

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[tls] Support TLS version 1.2
Michael Brown [Mon, 5 Mar 2012 15:28:39 +0000 (15:28 +0000)] 
[tls] Support TLS version 1.2

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[crypto] Replace MD5 implementation
Michael Brown [Mon, 5 Mar 2012 10:19:40 +0000 (10:19 +0000)] 
[crypto] Replace MD5 implementation

Replace MD5 implementation with one which is around 20% smaller.  This
implementation has been verified using the existing MD5 self-tests.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[802.11] Avoid using struct md5_ctx directly
Michael Brown [Mon, 5 Mar 2012 10:18:16 +0000 (10:18 +0000)] 
[802.11] Avoid using struct md5_ctx directly

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[test] Add self-tests for MD5 algorithm
Michael Brown [Mon, 5 Mar 2012 00:31:07 +0000 (00:31 +0000)] 
[test] Add self-tests for MD5 algorithm

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[test] Add self-tests for SHA-256 algorithm
Michael Brown [Mon, 5 Mar 2012 00:20:30 +0000 (00:20 +0000)] 
[test] Add self-tests for SHA-256 algorithm

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[crypto] Add SHA-256 algorithm
Michael Brown [Mon, 5 Mar 2012 00:18:49 +0000 (00:18 +0000)] 
[crypto] Add SHA-256 algorithm

This implementation has been verified using the NIST SHA-256 test vectors.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[x86_64] Use memory address constraint in __bswap_16s()
Michael Brown [Sun, 4 Mar 2012 21:46:45 +0000 (21:46 +0000)] 
[x86_64] Use memory address constraint in __bswap_16s()

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[i386] Use memory address constraints in __bswap_16s() and __bswap_64s()
Michael Brown [Sun, 4 Mar 2012 21:41:24 +0000 (21:41 +0000)] 
[i386] Use memory address constraints in __bswap_16s() and __bswap_64s()

Minimise code size by forcing the use of memory addresses for
__bswap_16s() and __bswap_64s().  (__bswap_32s() cannot avoid loading the
value into a register.)

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[i386] Fix building on older versions of gcc
Michael Brown [Sun, 4 Mar 2012 21:09:40 +0000 (21:09 +0000)] 
[i386] Fix building on older versions of gcc

Fix a strict-aliasing error on certain versions of gcc.

Reported-by: Marko Myllynen <myllynen@redhat.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[crypto] Replace SHA-1 implementation
Michael Brown [Sun, 4 Mar 2012 15:13:54 +0000 (15:13 +0000)] 
[crypto] Replace SHA-1 implementation

Replace SHA-1 implementation from AXTLS with a dedicated iPXE
implementation which is around 40% smaller.  This implementation has
been verified using the existing SHA-1 self-tests (including the NIST
SHA-1 test vectors).

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[802.11] Eliminate use of AXTLS-specific SHA1_SIZE constant
Michael Brown [Sun, 4 Mar 2012 15:00:29 +0000 (15:00 +0000)] 
[802.11] Eliminate use of AXTLS-specific SHA1_SIZE constant

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[test] Add self-tests for byte-order swapping functions
Michael Brown [Sun, 4 Mar 2012 15:12:38 +0000 (15:12 +0000)] 
[test] Add self-tests for byte-order swapping functions

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[x86_64] Provide __bswap_{16,32,64}s()
Michael Brown [Sun, 4 Mar 2012 15:28:44 +0000 (15:28 +0000)] 
[x86_64] Provide __bswap_{16,32,64}s()

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[i386] Optimise byte-swapping functions and provide __bswap_{16,32,64}s()
Michael Brown [Sun, 4 Mar 2012 15:06:45 +0000 (15:06 +0000)] 
[i386] Optimise byte-swapping functions and provide __bswap_{16,32,64}s()

Use the "bswap" instruction to shrink the size of byte-swapping code,
and provide the in-place variants __bswap_{16,32,64}s.

"bswap" is available only on 486 and later processors.  (We already
assume the presence of "cpuid" and "rdtsc", which are available only
on Pentium and later processors.)

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[tls] Add missing #include <stdlib.h>
Michael Brown [Sun, 4 Mar 2012 15:01:13 +0000 (15:01 +0000)] 
[tls] Add missing #include <stdlib.h>

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Add missing #include <assert.h>
Michael Brown [Sun, 4 Mar 2012 14:59:32 +0000 (14:59 +0000)] 
[rng] Add missing #include <assert.h>

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[802.11] Add missing #include <byteswap.h>
Michael Brown [Sun, 4 Mar 2012 14:58:22 +0000 (14:58 +0000)] 
[802.11] Add missing #include <byteswap.h>

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[tls] Send empty Certificate record if requested by server
Michael Brown [Sat, 3 Mar 2012 22:47:16 +0000 (22:47 +0000)] 
[tls] Send empty Certificate record if requested by server

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[tls] Verify the contents of the Finished record
Michael Brown [Sat, 3 Mar 2012 22:29:20 +0000 (22:29 +0000)] 
[tls] Verify the contents of the Finished record

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[tls] Allow transmitted records to be scheduled independently
Michael Brown [Sat, 3 Mar 2012 22:15:25 +0000 (22:15 +0000)] 
[tls] Allow transmitted records to be scheduled independently

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[tls] Add support for Server Name Indication (SNI)
Michael Brown [Sat, 3 Mar 2012 20:15:21 +0000 (20:15 +0000)] 
[tls] Add support for Server Name Indication (SNI)

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[tls] Support TLS version 1.1
Michael Brown [Sat, 3 Mar 2012 14:11:46 +0000 (14:11 +0000)] 
[tls] Support TLS version 1.1

Advertise support for TLS version 1.1, and be prepared to downgrade to
TLS version 1.0.  Tested against Apache with mod_gnutls, using the
GnuTLSPriorities directive to force specific protocol versions.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[arp] Maintain an ARP transmission queue
Michael Brown [Fri, 2 Mar 2012 20:12:10 +0000 (20:12 +0000)] 
[arp] Maintain an ARP transmission queue

Allow packet transmission to be deferred pending successful ARP
resolution.  This avoids the time spent waiting for a higher-level
protocol (e.g. TCP or TFTP) to attempt retransmission.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[undi] Allow underlying PXE stack to construct link-layer header
Michael Brown [Fri, 2 Mar 2012 18:02:03 +0000 (18:02 +0000)] 
[undi] Allow underlying PXE stack to construct link-layer header

Some PXE stacks (observed with a QLogic 8242) will always try to
prepend a link-layer header, even if the caller uses P_UNKNOWN to
indicate that the link-layer header has already been filled in.  This
results in an invalid packet being transmitted.

Work around these faulty PXE stacks where possible by stripping the
existing link-layer header and allowing the PXE stack to (re)construct
the link-layer header itself.

Originally-fixed-by: Buck Huppmann <buckh@pobox.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[iscsi] Send any padding inline with the data segment
Michael Brown [Thu, 1 Mar 2012 16:26:38 +0000 (16:26 +0000)] 
[iscsi] Send any padding inline with the data segment

Some iSCSI targets respond to a PDU before receiving the padding
bytes.  If the target responds quickly enough, this can cause iPXE to
start processing a new TX PDU before the padding bytes have been sent,
which results in a protocol violation.

Fix by always transmitting the padding bytes along with the data
segment.

Originally-fixed-by: Shyam Iyer <shyam_iyer@dell.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[http] Recognise status code 303 as valid
Jason Lunz [Sat, 25 Feb 2012 04:30:48 +0000 (20:30 -0800)] 
[http] Recognise status code 303 as valid

As RFC 2616 10.3.4 explains, a 303 status is the proper HTTP 1.1
behavior for what most HTTP 1.0 clients did with code 302.

Signed-off-by: Jason Lunz <lunz@acm.org>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[vmware] Fix length returned by guestrpc_command()
Michael Brown [Thu, 1 Mar 2012 14:20:32 +0000 (14:20 +0000)] 
[vmware] Fix length returned by guestrpc_command()

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[vmware] Add VMware logfile console (CONSOLE_VMWARE)
Michael Brown [Tue, 28 Feb 2012 23:09:06 +0000 (23:09 +0000)] 
[vmware] Add VMware logfile console (CONSOLE_VMWARE)

Allow iPXE console output to be sent to the VMware logfile via the
GuestRPC mechanism.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[vmware] Add GuestRPC mechanism
Michael Brown [Tue, 28 Feb 2012 17:48:46 +0000 (17:48 +0000)] 
[vmware] Add GuestRPC mechanism

Use the VMware backdoor I/O port to access the GuestRPC mechanism.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[syslog] Separate out generic line-based console functionality
Michael Brown [Tue, 28 Feb 2012 22:45:32 +0000 (22:45 +0000)] 
[syslog] Separate out generic line-based console functionality

Abstract out the generic line-handling portions of the syslog
putchar() routine, to allow use by other console types.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[syslog] Disable console when no syslog server is defined
Michael Brown [Tue, 28 Feb 2012 22:27:48 +0000 (22:27 +0000)] 
[syslog] Disable console when no syslog server is defined

Explicitly disable the syslog console when no syslog server is
defined, rather than (ab)using the socket family address as an
equivalent console-enabled flag.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[http] Allow for HTTPS-only builds
Michael Brown [Tue, 28 Feb 2012 14:53:28 +0000 (14:53 +0000)] 
[http] Allow for HTTPS-only builds

Separate out the core HTTP functionality (which is shared by both HTTP
and HTTPS) from the provision of the "http://" URI opener.  This
allows for builds that support only "https://" URIs.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Add RTC-based entropy source
Michael Brown [Sun, 19 Feb 2012 22:24:42 +0000 (22:24 +0000)] 
[rng] Add RTC-based entropy source

The RTC-based entropy source uses the nanosecond-scale CPU TSC to
measure the time between two 1kHz interrupts generated by the CMOS
RTC.  In a physical machine these clocks are driven from independent
crystals, resulting in some observable clock drift.  In a virtual
machine, the CMOS RTC is typically emulated using host-OS
constructions such as SIGALRM.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Add entropy sample generator
Michael Brown [Mon, 27 Feb 2012 23:43:30 +0000 (23:43 +0000)] 
[rng] Add entropy sample generator

Allow a list of raw noise samples to be generated for offline
analysis.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[test] Allow self-tests to be run individually
Michael Brown [Mon, 27 Feb 2012 14:18:59 +0000 (14:18 +0000)] 
[test] Allow self-tests to be run individually

Separate out the list of self-tests from the self-test infrastructure.
This allows tests to be run individually.  For example:

  make bin/sha1_test.iso

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[crypto] Use ANS X9.82 Approved get_random_nz() for RSA
Michael Brown [Tue, 21 Feb 2012 12:40:27 +0000 (12:40 +0000)] 
[crypto] Use ANS X9.82 Approved get_random_nz() for RSA

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[tls] Use ANS X9.82 Approved RBG as source of random data for TLS
Michael Brown [Tue, 21 Feb 2012 11:46:48 +0000 (11:46 +0000)] 
[tls] Use ANS X9.82 Approved RBG as source of random data for TLS

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Add get_random_nz() function required by RSA algorithm
Michael Brown [Tue, 21 Feb 2012 12:09:15 +0000 (12:09 +0000)] 
[rng] Add get_random_nz() function required by RSA algorithm

RSA requires the generation of random non-zero bytes (i.e. a sequence
of random numbers in the range [0x01,0xff]).  ANS X9.82 provides
various Approved methods for converting random bits into random
numbers.  The simplest such method is the Simple Discard Method.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Add ANS X9.82 RBG wrapper functions
Michael Brown [Mon, 20 Feb 2012 21:26:23 +0000 (21:26 +0000)] 
[rng] Add ANS X9.82 RBG wrapper functions

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Add ANS X9.82 mandatory start-up tests
Michael Brown [Mon, 20 Feb 2012 19:26:04 +0000 (19:26 +0000)] 
[rng] Add ANS X9.82 mandatory start-up tests

ANS X9.82 specifies that the start-up tests shall consist of at least
one full cycle of the continuous tests.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Add ANS X9.82 mandatory continuous tests
Michael Brown [Mon, 20 Feb 2012 14:02:25 +0000 (14:02 +0000)] 
[rng] Add ANS X9.82 mandatory continuous tests

ANS X9.82 specifies two mandatory continuous tests to be performed
upon the noise source.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Add ANS X9.82 Approved Source of Entropy Input
Michael Brown [Sun, 19 Feb 2012 22:14:06 +0000 (22:14 +0000)] 
[rng] Add ANS X9.82 Approved Source of Entropy Input

ANS X9.82 specifies several Approved Sources of Entropy Input (SEI).
One such SEI uses an entropy source as the Source of Entropy Input,
condensing each entropy source output after each GetEntropy call.
This can be implemented relatively cheaply in iPXE and avoids the need
to allocate potentially very large buffers.

(Note that the terms "entropy source" and "Source of Entropy Input"
are not synonyms within the context of ANS X9.82.)

Use the iPXE API mechanism to allow entropy sources to be selected at
compilation time.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Record validity within DRBG state
Michael Brown [Mon, 20 Feb 2012 21:24:30 +0000 (21:24 +0000)] 
[rng] Record validity within DRBG state

Treat an empty (zeroed) DRBG as invalid.  This ensures that a DRBG
that has not yet been instantiated (or that has been uninstantiated)
will refuse to attempt to generate random bits.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Add missing #include <string.h>
Michael Brown [Tue, 21 Feb 2012 12:39:20 +0000 (12:39 +0000)] 
[rng] Add missing #include <string.h>

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[802.11] Add missing #include <string.h>
Michael Brown [Tue, 21 Feb 2012 12:25:06 +0000 (12:25 +0000)] 
[802.11] Add missing #include <string.h>

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[udp] Propagate transmission errors to UDP interface users
Michael Brown [Mon, 20 Feb 2012 19:29:49 +0000 (19:29 +0000)] 
[udp] Propagate transmission errors to UDP interface users

Suggested-by: Simon Rowe <simon.rowe@eu.citrix.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[i386] Add missing #include <ipxe/io.h> in pic8259.h
Michael Brown [Sun, 19 Feb 2012 22:08:51 +0000 (22:08 +0000)] 
[i386] Add missing #include <ipxe/io.h> in pic8259.h

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Add NIST self-tests for Hash_df
Michael Brown [Sun, 19 Feb 2012 14:34:46 +0000 (14:34 +0000)] 
[rng] Add NIST self-tests for Hash_df

NIST provides a set of known-answer tests for the Hash_DRBG algorithm,
which includes known answers for the derivation function Hash_df used
as part of Hash_DRBG.  Hash_DRBG is not an Approved algorithm for ANS
X9.82, but the known answers for Hash_df (which is part of ANS X9.82)
can still be used as part of the conformance testing for ANS X9.82.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[rng] Add ANS X9.82 Approved Hash_df derivation function
Michael Brown [Sun, 19 Feb 2012 14:31:41 +0000 (14:31 +0000)] 
[rng] Add ANS X9.82 Approved Hash_df derivation function

ANS X9.82 specifies several Approved derivation functions for use in
distributing entropy throughout a buffer.  One such derivation
function is Hash_df, which can be implemented using the existing iPXE
SHA-1 functionality.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[efi] Add iPXE download protocol
Jarrod Johnson [Mon, 8 Aug 2011 19:54:15 +0000 (15:54 -0400)] 
[efi] Add iPXE download protocol

iPXE exposes some extended capabilities via the PXE FILE API to allow
NBPs such as pxelinux to use protocols other than TFTP.  Provide an
equivalent interface as a UEFI protocol so that EFI binaries may also
take advantage of iPXE's extended capabilities.

This can be used with a patched version of elilo, for example:

  http://comments.gmane.org/gmane.comp.boot-loaders.elilo.general/147

Signed-off-by: Michael Brown <mcb30@ipxe.org>
13 years ago[snpnet] Give up entirely on the transmit queue
Jarrod Johnson [Sat, 14 Jan 2012 18:18:34 +0000 (13:18 -0500)] 
[snpnet] Give up entirely on the transmit queue

Practically speaking, it seems the convention is to only have one
packet pending and not rely upon any mechanism to associate returned
txbuf with txqueue.

Signed-off-by: Michael Brown <mcb30@ipxe.org>