1. 20 Oct, 2016 1 commit
    • Richard Levitte's avatar
      If an engine comes up explicitely, it must also come down explicitely · aa01b82c
      Richard Levitte authored
      
      
      In apps/apps.c, one can set up an engine with setup_engine().
      However, we freed the structural reference immediately, which means
      that for engines that don't already have a structural reference
      somewhere else (because it has registered at least one cipher or digest
      algorithm method, and therefore gets a functional reference through the
      ENGINE_set_default() call), we end up returning an invalid reference.
      
      Instead, the function release_engine() is added, and called at the end
      of the routines that call setup_engine().
      
      Originally, the ENGINE API wasn't designed for this to happen, an
      engine had to register at least one algorithm method, and was
      especially expected to register the algorithms corresponding to the
      key types that could be stored and hidden in hardware.  However, it
      turns out that some engines will not register those algorithms with
      the ENGINE_set_{algo}, ENGINE_set_cipher or ENGINE_set_digest
      functions, as they only want the methods to be used for keys, not as
      general crypto accelerator methods.  That may cause ENGINE_set_default()
      to do nothing, and no functional reference is therefore made, leading
      to a premature deallocation of the engine and it thereby becoming
      unavailable when trying to fetch a key.
      
      Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/1644)
      aa01b82c
  2. 19 Oct, 2016 2 commits
  3. 18 Oct, 2016 2 commits
  4. 15 Oct, 2016 2 commits
  5. 14 Oct, 2016 1 commit
  6. 13 Oct, 2016 1 commit
  7. 11 Oct, 2016 1 commit
  8. 28 Sep, 2016 3 commits
  9. 26 Sep, 2016 5 commits
  10. 22 Sep, 2016 9 commits
  11. 21 Sep, 2016 9 commits
  12. 20 Sep, 2016 2 commits
  13. 15 Sep, 2016 2 commits