Project

General

Profile

Actions

Bug #6233

closed

Definition of EVP_MD_CTX_cleanup incomplete.

Added by rubysubmit (Ruby Submit) almost 12 years ago. Updated almost 8 years ago.

Status:
Closed
Assignee:
-
Target version:
-
ruby -v:
ruby 1.9.2p290
Backport:
[ruby-core:43958]

Description

File: ext\openssl\openssl_missing.c
Line: 67

#if !defined(HAVE_EVP_MD_CTX_CLEANUP)
int
EVP_MD_CTX_cleanup(EVP_MD_CTX ctx)
{
/
FIXME!!! */
memset(ctx, 0, sizeof(EVP_MD_CTX));

return 1;

}
#endif

Updated by mame (Yusuke Endoh) almost 12 years ago

  • Status changed from Open to Assigned
  • Assignee set to MartinBosslet (Martin Bosslet)

Hello, emboss

What do you think?

--
Yusuke Endoh

Updated by MartinBosslet (Martin Bosslet) almost 12 years ago

mame (Yusuke Endoh) wrote:

Hello, emboss

What do you think?

Hi, I think it's a valid point - here is how OpenSSL 1.0.1 implements it:

/* This call frees resources associated with the context */
int EVP_MD_CTX_cleanup(EVP_MD_CTX ctx)
{
#ifndef OPENSSL_FIPS
/
Don't assume ctx->md_data was cleaned in EVP_Digest_Final,
* because sometimes only copies of the context are ever finalised.
/
if (ctx->digest && ctx->digest->cleanup
&& !EVP_MD_CTX_test_flags(ctx,EVP_MD_CTX_FLAG_CLEANED))
ctx->digest->cleanup(ctx);
if (ctx->digest && ctx->digest->ctx_size && ctx->md_data
&& !EVP_MD_CTX_test_flags(ctx, EVP_MD_CTX_FLAG_REUSE))
{
OPENSSL_cleanse(ctx->md_data,ctx->digest->ctx_size);
OPENSSL_free(ctx->md_data);
}
#endif
if (ctx->pctx)
EVP_PKEY_CTX_free(ctx->pctx);
#ifndef OPENSSL_NO_ENGINE
if(ctx->engine)
/
The EVP_MD we used belongs to an ENGINE, release the
* functional reference we held for this reason. */
ENGINE_finish(ctx->engine);
#endif
#ifdef OPENSSL_FIPS
FIPS_md_ctx_cleanup(ctx);
#endif
memset(ctx,'\0',sizeof *ctx);

return 1;
}

Quite some additional cleansing besides the memset. We could simply copy this, but I'm afraid it could
cause compatibility problems with older versions and we would additionally have to keep this in sync with
what OpenSSL does there - both unpleasant situations. EVP_MD_CTX_cleanup was introduced in 0.9.7, I just
checked. We claim compatibility from 0.9.6 on. I think the question must be allowed: do we really need
compatibility with 0.9.6? It was released in 2000, 0.9.7 came in 2002. 10 years of backward compatibility
aren't that bad either :) No but honestly, when I think of all the security fixes that came since then,
nobody should really be running on 0.9.6 anymore anyway. I'm not against fixing this with the above and
keeping the code in sync, but I'd be more happy with not having to poke around in implementation details
and dropping 0.9.6 support instead.

But I'm not sure how this plays with the general principles of 2.0.0 or if anyone would be really against
dropping 0.9.6 support. Opinions?

Updated by mame (Yusuke Endoh) almost 12 years ago

Thank you for your quick reply.

Ultimately, everything about standard library is determined by
each maintainer. So, in general, you can go ahead if you think
it is appropriate.

I have no opinion about with this paticular case.
Is 0.9.6 still (effectively) maintained by OpenSSL team?
NaHi, do you have an opinion?

--
Yusuke Endoh

Updated by MartinBosslet (Martin Bosslet) almost 12 years ago

mame (Yusuke Endoh) wrote:

I have no opinion about with this paticular case.
Is 0.9.6 still (effectively) maintained by OpenSSL team?

It says nothing about end of life on their home page, but
judging from the strategy of how they released security
fixes in the past it seems like only the last major release
will receive updates. For example while 0.9.8 was the version
in development, they also published maintenance releases
for 0.9.7, when 1.0.0 became the current series, they only
released additional versions of 0.9.8.

But that's just speculating, so I guess it's best if I ask
on their mailing list. Or maybe nahi knows more?

Actions #5

Updated by zzak (zzak _) over 8 years ago

  • Assignee changed from MartinBosslet (Martin Bosslet) to 7150

Updated by rhenium (Kazuki Yamaguchi) almost 8 years ago

  • Status changed from Assigned to Closed

r55162 (openssl: drop OpenSSL 0.9.6/0.9.7 support, 2016-05-25) removed the code.

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0Like0