1. 07 Nov, 2016 7 commits
    • Matt Caswell's avatar
      Partial revert of "Fix client verify mode to check SSL_VERIFY_PEER" · c8e2f98c
      Matt Caswell authored
      This partially reverts commit c636c1c4
      
      . It also tweaks the documentation
      and comments in this area. On the client side the documented interface for
      SSL_CTX_set_verify()/SSL_set_verify() is that setting the flag
      SSL_VERIFY_PEER causes verfication of the server certificate to take place.
      Previously what was implemented was that if *any* flag was set then
      verification would take place. The above commit improved the semantics to
      be as per the documented interface.
      
      However, we have had a report of at least one application where an
      application was incorrectly using the interface and used *only*
      SSL_VERIFY_FAIL_IF_NO_PEER_CERT on the client side. In OpenSSL prior to
      the above commit this still caused verification of the server certificate
      to take place. After this commit the application silently failed to verify
      the server certificate.
      
      Ideally SSL_CTX_set_verify()/SSL_set_verify() could be modified to indicate
      if invalid flags were being used. However these are void functions!
      
      The simplest short term solution is to revert to the previous behaviour
      which at least means we "fail closed" rather than "fail open".
      
      Thanks to Cory Benfield for reporting this issue.
      
      Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
      c8e2f98c
    • Emilia Kasper's avatar
      Simplify tests part 2 · d836d71b
      Emilia Kasper authored
      
      
      1) Remove some unnecessary fixtures
      2) Add EXECUTE_TEST_NO_TEARDOWN shorthand when a fixture exists but has
      no teardown.
      3) Fix return values in ct_test.c (introduced by an earlier refactoring,
      oops)
      
      Note that for parameterized tests, the index (test vector) usually holds all the
      customization, and there should be no need for a separate test
      fixture. The CTS test is an exception: it demonstrates how to combine
      customization with parameterization.
      
      Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
      d836d71b
    • Matt Caswell's avatar
      Add a test for the wrong version number in a record · 8e47ee18
      Matt Caswell authored
      
      
      Prior to TLS1.3 we check that the received record version number is correct.
      In TLS1.3 we need to ignore the record version number. This adds a test to
      make sure we do it correctly.
      
      Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
      8e47ee18
    • Matt Caswell's avatar
      Ignore the record version in TLS1.3 · 3c9539d2
      Matt Caswell authored
      
      
      The record layer version field must be ignored in TLSv1.3, so we remove the
      check when using that version.
      
      Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
      3c9539d2
    • Matt Caswell's avatar
      test_sslcbcpadding only makes sense <TLS1.3 · 185c29b1
      Matt Caswell authored
      
      
      We may get failures if we run it in TLS1.3, and it makes no sense anyway
      so force TLS1.2
      
      Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
      185c29b1
    • Matt Caswell's avatar
      Correct the Id for the TLS1.3 ciphersuite · 5d71f7ea
      Matt Caswell authored
      
      
      We have one TLS1.3 ciphersuite, but there is a typo in the id that should
      be corrected.
      
      Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
      5d71f7ea
    • Matt Caswell's avatar
      Always ensure that init_msg is initialised for a CCS · c4377574
      Matt Caswell authored
      
      
      We read it later in grow_init_buf(). If CCS is the first thing received in
      a flight, then it will use the init_msg from the last flight we received. If
      the init_buf has been grown in the meantime then it will point to some
      arbitrary other memory location. This is likely to result in grow_init_buf()
      attempting to grow to some excessively large amount which is likely to
      fail. In practice this should never happen because the only time we receive
      a CCS as the first thing in a flight is in an abbreviated handshake. None
      of the preceding messages from the server flight would be large enough to
      trigger this.
      
      Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
      c4377574
  2. 06 Nov, 2016 3 commits
  3. 05 Nov, 2016 1 commit
  4. 04 Nov, 2016 29 commits