1. 17 3月, 2015 6 次提交
    • R
      Change all the main configurations to the new format. · 5e1b2353
      Richard Levitte 提交于
      As part of this, remove some levitte examples that never were relevant.
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      5e1b2353
    • R
      Rethink templates. · b1245529
      Richard Levitte 提交于
      Because base templates express inheritance of values, the attribute is
      renamed to 'inherit_from', and texts about this talk about 'inheritance(s)'
      rather than base templates.
      
      As they were previously implemented, base templates that were listed
      together would override one another, the first one acting as defaults for
      the next and so on.
      
      However, it was pointed out that a strength of inheritance would be to
      base configurations on several templates - for example one for CPU, one
      for operating system and one for compiler - and that requires a different
      way of combining those templates.  With this change, inherited values
      from several inheritances are concatenated by default (keep on reading).
      
      Also, in-string templates with the double-curly syntax are removed,
      replaced with the possibility to have a configuration value be a coderef
      (i.e. a 'sub { /* your code goes here */ }') that gets the list of values
      from all inheritances as the list @_.  The result of executing such a
      coderef on a list of values is assumed to become a string.  ANY OTHER
      FORM OF VALUE WILL CURRENTLY BREAK.
      
      As a matter of fact, an attribute in the current config with no value is
      assumed to have this coderef as value:
      
          sub { join(' ', @_) }
      
      While we're at it, rename debug-[cl]flags to debug_[cl]flags and
      nodebug-[cl]flags to release_[cl]flags.
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      b1245529
    • R
    • R
      Add base template processing. · 7d46b942
      Richard Levitte 提交于
      Base templates are templates that are used to inherit from.  They can
      loosely be compared with parent class inheritance in object orientation.
      They can be used for the same purpose as the variables with multi-field
      strings are used in old-style string configurations.
      
      Base templates are declared with the base_templates configuration
      attribute, like so:
      
      	"example_target" => {
      		base_templates => [ "x86_asm", ... ]
      		...
      	}
      
      Note: The value of base_templates MUST be an array reference (an array
      enclosed in square brackets).
      
      Any configuration target can be used as a base template by another.  It
      is also possible to have a target that's a pure template and not meant to
      be used directly as a configuration target.  Such a target is marked with
      the template configuration attribute, like so:
      
      	"example_template" => {
      		template => 1,
      		cc => "mycc",
      		...
      	},
      
      As part of this commit, all variables with multi-field strings have been
      translated to pure templates.  The variables currently remain since we
      can't expect people to shift to hash table configurations immediately.
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      7d46b942
    • R
      Add template reference processing. · 09816a2e
      Richard Levitte 提交于
      Template references are words with double brackets, and refer to the
      same field in the target pointed at the the double bracketed word.
      
      For example, if a target's configuration has the following entry:
      
          'cflags' => '-DFOO {{x86_debug}}'
      
      ... then {{x86_debug}} will be replaced with the 'cflags' value from
      target 'x86_debug'.
      
      Note: template references are resolved recursively, and circular
      references are not allowed
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      09816a2e
    • R
      Rewrite Configure to handle the target values as hash tables. · aaf878cc
      Richard Levitte 提交于
      The reasoning is that configuration strings are hard to read and error
      prone, and that a better way would be for them to be key => value hashes.
      
      Configure is made to be able to handle target configuration values as a
      string as well as a hash.  It also does the best it can to combine a
      "debug-foo" target with a "foo" target, given that they are similar
      except for the cflags and lflags values.  The latter are spliced into
      options that are common for "debug-foo" and "foo", options that exist
      only with "debug-foo" and options that exist only with "foo", and make
      them into combinable attributes that holds common cflags, extra cflags
      for debuggin and extra cflags for non-debugging configurations.
      
      The next step is to make it possible to have template configurations.
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      aaf878cc
  2. 16 3月, 2015 3 次提交
  3. 15 3月, 2015 3 次提交
  4. 14 3月, 2015 2 次提交
    • E
      Fix undefined behaviour in shifts. · 8b37e5c1
      Emilia Kasper 提交于
      Td4 and Te4 are arrays of u8. A u8 << int promotes the u8 to an int first then shifts.
      If the mathematical result of a shift (as modelled by lhs * 2^{rhs}) is not representable
      in an integer, behaviour is undefined. In other words, you can't shift into the sign bit
      of a signed integer. Fix this by casting to u32 whenever we're shifting left by 24.
      
      (For consistency, cast other shifts, too.)
      
      Caught by -fsanitize=shift
      
      Submitted by Nick Lewycky (Google)
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      8b37e5c1
    • D
      Allocate string types directly. · 3d6aa6d4
      Dr. Stephen Henson 提交于
      Allocate and free ASN.1 string types directly instead of going through
      the ASN.1 item code.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      3d6aa6d4
  5. 13 3月, 2015 1 次提交
  6. 12 3月, 2015 14 次提交
  7. 11 3月, 2015 5 次提交
  8. 10 3月, 2015 4 次提交
  9. 09 3月, 2015 2 次提交
    • D
      Wrong SSL version in DTLS1_BAD_VER ClientHello · f7683aaf
      David Woodhouse 提交于
      Since commit 741c9959 ("DTLS revision."), we put the wrong protocol
      version into our ClientHello for DTLS1_BAD_VER. The old DTLS
      code which used ssl->version was replaced by the more generic SSL3 code
      which uses ssl->client_version. The Cisco ASA no longer likes our
      ClientHello.
      
      RT#3711
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      f7683aaf
    • M
      Fix DTLS1_BAD_VER regression · 5178a16c
      Matt Caswell 提交于
      Commit 9cf0f187 in HEAD, and 68039af3 in 1.0.2, removed a version check
      from dtls1_buffer_message() which was needed to distinguish between DTLS
      1.x and Cisco's pre-standard version of DTLS (DTLS1_BAD_VER).
      
      Based on an original patch by David Woodhouse <dwmw2@infradead.org>
      RT#3703
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      5178a16c