From fdfd260c4e558d31ff411dff5a7384fe9a989366 Mon Sep 17 00:00:00 2001 From: Evan Hunt Date: Thu, 17 May 2012 16:24:55 -0700 Subject: [PATCH] fix check_data() usage 3328. [bug] Fixed inconsistent data checking in dst_parse.c. [RT #29401] --- CHANGES | 3 +++ lib/dns/dst_parse.c | 25 +++++++++++++++++++------ 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index 3752d1224d..b86ea4fff0 100644 --- a/CHANGES +++ b/CHANGES @@ -4,6 +4,9 @@ they fail to validate, we try again in lower case. [RT #27451] +3328. [bug] Fixed inconsistent data checking in dst_parse.c. + [RT #29401] + --- 9.7.6 released --- 3318. [tuning] Reduce the amount of work performed while holding a diff --git a/lib/dns/dst_parse.c b/lib/dns/dst_parse.c index 41a951afdd..bcd05fadd2 100644 --- a/lib/dns/dst_parse.c +++ b/lib/dns/dst_parse.c @@ -291,10 +291,14 @@ check_data(const dst_private_t *priv, const unsigned int alg, switch (alg) { case DST_ALG_RSAMD5: case DST_ALG_RSASHA1: + case DST_ALG_NSEC3RSASHA1: + case DST_ALG_RSASHA256: + case DST_ALG_RSASHA512: return (check_rsa(priv)); case DST_ALG_DH: return (check_dh(priv)); case DST_ALG_DSA: + case DST_ALG_NSEC3DSA: return (check_dsa(priv)); case DST_ALG_HMACMD5: return (check_hmac_md5(priv, old)); @@ -332,7 +336,7 @@ isc_result_t dst__privstruct_parse(dst_key_t *key, unsigned int alg, isc_lex_t *lex, isc_mem_t *mctx, dst_private_t *priv) { - int n = 0, major, minor; + int n = 0, major, minor, check; isc_buffer_t b; isc_token_t token; unsigned char *data = NULL; @@ -502,8 +506,14 @@ dst__privstruct_parse(dst_key_t *key, unsigned int alg, isc_lex_t *lex, data = NULL; } done: - if (check_data(priv, alg, ISC_TRUE) < 0) + check = check_data(priv, alg, ISC_TRUE); + if (check < 0) { + ret = DST_R_INVALIDPRIVATEKEY; goto fail; + } else if (check != ISC_R_SUCCESS) { + ret = check; + goto fail; + } return (ISC_R_SUCCESS); @@ -533,13 +543,16 @@ dst__privstruct_writefile(const dst_key_t *key, const dst_private_t *priv, REQUIRE(priv != NULL); - if (check_data(priv, dst_key_alg(key), ISC_FALSE) < 0) + ret = check_data(priv, dst_key_alg(key), ISC_FALSE); + if (ret < 0) return (DST_R_INVALIDPRIVATEKEY); + else if (ret != ISC_R_SUCCESS) + return (ret); isc_buffer_init(&b, filename, sizeof(filename)); - ret = dst_key_buildfilename(key, DST_TYPE_PRIVATE, directory, &b); - if (ret != ISC_R_SUCCESS) - return (ret); + result = dst_key_buildfilename(key, DST_TYPE_PRIVATE, directory, &b); + if (result != ISC_R_SUCCESS) + return (result); if ((fp = fopen(filename, "w")) == NULL) return (DST_R_WRITEERROR);