1. 30 10月, 2017 2 次提交
  2. 27 10月, 2017 1 次提交
  3. 26 10月, 2017 7 次提交
  4. 25 10月, 2017 3 次提交
  5. 24 10月, 2017 1 次提交
    • M
      Don't make any changes to the lhash structure if we are going to fail · 4ce8bebc
      Matt Caswell 提交于
      The lhash expand() function can fail if realloc fails. The previous
      implementation made changes to the structure and then attempted to do a
      realloc. If the realloc failed then it attempted to undo the changes it
      had just made. Unfortunately changes to lh->p were not undone correctly,
      ultimately causing subsequent expand() calls to increment num_nodes to a
      value higher than num_alloc_nodes, which can cause out-of-bounds reads/
      writes. This is not considered a security issue because an attacker cannot
      cause realloc to fail.
      
      This commit moves the realloc call to near the beginning of the function
      before any other changes are made to the lhash structure. That way if a
      failure occurs we can immediately fail without having to undo anything.
      
      Thanks to Pavel Kopyl (Samsung) for reporting this issue.
      Reviewed-by: NBernd Edlinger <bernd.edlinger@hotmail.de>
      Reviewed-by: NViktor Dukhovni <viktor@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/4550)
      4ce8bebc
  6. 23 10月, 2017 5 次提交
  7. 21 10月, 2017 2 次提交
  8. 20 10月, 2017 1 次提交
  9. 19 10月, 2017 1 次提交
  10. 18 10月, 2017 9 次提交
  11. 17 10月, 2017 6 次提交
  12. 16 10月, 2017 2 次提交