Received: by 2002:ac0:aed5:0:0:0:0:0 with SMTP id t21csp663451imb; Fri, 1 Mar 2019 10:32:07 -0800 (PST) X-Google-Smtp-Source: APXvYqw4Er8AUWMOJDrfdLpx2lEWD8GSPsadPvzIePtt2ClcpH2/MG1el5McjOMlls0HM0V5mTwA X-Received: by 2002:a63:ce:: with SMTP id 197mr6097258pga.212.1551465127026; Fri, 01 Mar 2019 10:32:07 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1551465127; cv=none; d=google.com; s=arc-20160816; b=h7zzt3oVaYoSSQF7g4222yxhmY6rjN8qbS8MJ2Un6ejZzsVBsQuJSywONpBpIov8vV 1D10bBfotKbuy7peZaLsKYXgafh6Vey4v8UgDJtgZU+yLbjn+eESnCf+wWRFi+S/SHxf 692tA2i96cdq6rGZ/1UkmykiirU+zv2dkHjZXoYUgPyTG5l1agtvt5iUCBN1SfTys4BO d+F58FkN/K9nPXVsBFpgsbtNA+bnusoydPk1Y+q8EQEgehlNjWSd4okSyEkqGbtwoVjF xOza6djWfis04b0+1Xashzp2llbMFDysY6w5XRo1o8n4m6RcJVSv5n0zFegdMmoRWApg TGcA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:to:from; bh=GQQZ+AqLhAG+7DLjbcXvj3akQw7AE+FsDfk/HypYz7A=; b=0h1SV0Qchv6YJlA/19ESNUnNtv4VASvNpAN9e1bS1KZ1yzKnZFDGbToQRlOkC06y1g WT9yC34RpnoAnp5Ddlucr/cwuC7TnOBSxkeqbhmwp1+EuEmQd6V9LLFlmPVlXlWhE+7M z4TNBMQzmyoRWn/9FXs9azHFBuLqps2fihkKZNZo4gjSQ4BwQ4fsWDvjVTL91HsrmtfO 52t2IRdt8MTB59ZiCIWL3veI09cjqMqx1ccVO+Q05ZNHNjw9fDjkyUVzn8tyx0H9Tfjc LApPil+QbQ3XQPys+KXjzfkVceRM2caewm6XdGNONZK4s3DJI7h8OhwFJxQ71pp9T32O fRkA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id s21si19385875pgv.299.2019.03.01.10.31.51; Fri, 01 Mar 2019 10:32:07 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2389939AbfCASAe (ORCPT + 99 others); Fri, 1 Mar 2019 13:00:34 -0500 Received: from vmicros1.altlinux.org ([194.107.17.57]:40188 "EHLO vmicros1.altlinux.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2389760AbfCAR73 (ORCPT ); Fri, 1 Mar 2019 12:59:29 -0500 Received: from imap.altlinux.org (imap.altlinux.org [194.107.17.38]) by vmicros1.altlinux.org (Postfix) with ESMTP id 4393172CCB8; Fri, 1 Mar 2019 20:59:26 +0300 (MSK) Received: from beacon.altlinux.org (unknown [185.6.174.98]) by imap.altlinux.org (Postfix) with ESMTPSA id 1C3F94A4AE7; Fri, 1 Mar 2019 20:59:26 +0300 (MSK) From: Vitaly Chikunov To: Herbert Xu , David Howells , Mimi Zohar , Dmitry Kasatkin , linux-integrity@vger.kernel.org, keyrings@vger.kernel.org, linux-crypto@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v7 02/11] crypto: akcipher - check the presence of callback before the call Date: Fri, 1 Mar 2019 20:59:09 +0300 Message-Id: <20190301175918.29694-3-vt@altlinux.org> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20190301175918.29694-1-vt@altlinux.org> References: <20190301175918.29694-1-vt@altlinux.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Because with introduction of EC-RDSA and change in workings of RSA in regard to sign/verify, akcipher could have not all callbacks defined, check the presence of callbacks before calling them to increase robustness. Signed-off-by: Vitaly Chikunov --- include/crypto/akcipher.h | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/include/crypto/akcipher.h b/include/crypto/akcipher.h index 2d690494568c..f537fad1989f 100644 --- a/include/crypto/akcipher.h +++ b/include/crypto/akcipher.h @@ -268,7 +268,10 @@ static inline unsigned int crypto_akcipher_maxsize(struct crypto_akcipher *tfm) { struct akcipher_alg *alg = crypto_akcipher_alg(tfm); - return alg->max_size(tfm); + if (alg->max_size) + return alg->max_size(tfm); + else + return 0; } /** @@ -287,10 +290,11 @@ static inline int crypto_akcipher_encrypt(struct akcipher_request *req) struct akcipher_alg *alg = crypto_akcipher_alg(tfm); struct crypto_alg *calg = tfm->base.__crt_alg; unsigned int src_len = req->src_len; - int ret; + int ret = -ENOSYS; crypto_stats_get(calg); - ret = alg->encrypt(req); + if (alg->encrypt) + ret = alg->encrypt(req); crypto_stats_akcipher_encrypt(src_len, ret, calg); return ret; } @@ -311,10 +315,11 @@ static inline int crypto_akcipher_decrypt(struct akcipher_request *req) struct akcipher_alg *alg = crypto_akcipher_alg(tfm); struct crypto_alg *calg = tfm->base.__crt_alg; unsigned int src_len = req->src_len; - int ret; + int ret = -ENOSYS; crypto_stats_get(calg); - ret = alg->decrypt(req); + if (alg->decrypt) + ret = alg->decrypt(req); crypto_stats_akcipher_decrypt(src_len, ret, calg); return ret; } @@ -334,10 +339,11 @@ static inline int crypto_akcipher_sign(struct akcipher_request *req) struct crypto_akcipher *tfm = crypto_akcipher_reqtfm(req); struct akcipher_alg *alg = crypto_akcipher_alg(tfm); struct crypto_alg *calg = tfm->base.__crt_alg; - int ret; + int ret = -ENOSYS; crypto_stats_get(calg); - ret = alg->sign(req); + if (alg->sign) + ret = alg->sign(req); crypto_stats_akcipher_sign(ret, calg); return ret; } @@ -357,10 +363,11 @@ static inline int crypto_akcipher_verify(struct akcipher_request *req) struct crypto_akcipher *tfm = crypto_akcipher_reqtfm(req); struct akcipher_alg *alg = crypto_akcipher_alg(tfm); struct crypto_alg *calg = tfm->base.__crt_alg; - int ret; + int ret = -ENOSYS; crypto_stats_get(calg); - ret = alg->verify(req); + if (alg->verify) + ret = alg->verify(req); crypto_stats_akcipher_verify(ret, calg); return ret; } -- 2.11.0