1. 25 8月, 2016 1 次提交
  2. 19 8月, 2016 1 次提交
    • M
      Split create_ssl_connection() · b4982125
      Matt Caswell 提交于
      Split the create_ssl_connection() helper function into two steps: one to
      create the SSL objects, and one to actually create the connection. This
      provides the ability to make changes to the SSL object before the
      connection is actually made.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      b4982125
  3. 30 7月, 2016 1 次提交
  4. 29 7月, 2016 3 次提交
    • M
      Simplify and rename SSL_set_rbio() and SSL_set_wbio() · 65e2d672
      Matt Caswell 提交于
      SSL_set_rbio() and SSL_set_wbio() are new functions in 1.1.0 and really
      should be called SSL_set0_rbio() and SSL_set0_wbio(). The old
      implementation was not consistent with what "set0" means though as there
      were special cases around what happens if the rbio and wbio are the same.
      We were only ever taking one reference on the BIO, and checking everywhere
      whether the rbio and wbio are the same so as not to double free.
      
      A better approach is to rename the functions to SSL_set0_rbio() and
      SSL_set0_wbio(). If an existing BIO is present it is *always* freed
      regardless of whether the rbio and wbio are the same or not. It is
      therefore the callers responsibility to ensure that a reference is taken
      for *each* usage, i.e. one for the rbio and one for the wbio.
      
      The legacy function SSL_set_bio() takes both the rbio and wbio in one go
      and sets them both. We can wrap up the old behaviour in the implementation
      of that function, i.e. previously if the rbio and wbio are the same in the
      call to this function then the caller only needed to ensure one reference
      was passed. This behaviour is retained by internally upping the ref count.
      
      This commit was inspired by BoringSSL commit f715c423224.
      
      RT#4572
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      65e2d672
    • M
      Add some SSL BIO tests · 9a716987
      Matt Caswell 提交于
      This adds some simple SSL BIO tests that check for pushing and popping of
      BIOs into the chain. These tests would have caught the bugs fixed in the
      previous three commits, if combined with a crypto-mdebug build.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      9a716987
    • M
      Add a test for SSL_set_bio() · 7fb4c820
      Matt Caswell 提交于
      The SSL_set_bio() function has some complicated ownership rules. This adds a
      test to make sure it all works as expected.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      7fb4c820
  5. 25 7月, 2016 1 次提交
  6. 19 7月, 2016 1 次提交
  7. 14 6月, 2016 2 次提交