From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 63D6842D74 for ; Tue, 27 Jun 2023 21:38:32 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3E7CF40F18; Tue, 27 Jun 2023 21:38:32 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id C11F940EE1 for ; Tue, 27 Jun 2023 21:38:30 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1687894710; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=GvWM8phBs04sm7HqmUHQjRuJky/d+h09X5Cj5RVFXv8=; b=eAF/cpCpNpPPBb2U2LxmMMdHIjySVyTGbAKDvpupyPQFb27qVzOT+ijAamhuFzI6ioqlwW vJIBCoCSliXAY2HE4xikTgDf1Kcfn0YVjK+y73BvxEvBd9KHmWeSA6TaVDLvfcGlygZSBP CSVefnoRRQ6uMn54EWF2ip813PwM0xk= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-79--MUekSB8OrGsUfPAo-90lQ-1; Tue, 27 Jun 2023 15:38:25 -0400 X-MC-Unique: -MUekSB8OrGsUfPAo-90lQ-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id C876029ABA10; Tue, 27 Jun 2023 19:38:24 +0000 (UTC) Received: from RHTPC1VM0NT (unknown [10.22.32.232]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 671A540BB4D; Tue, 27 Jun 2023 19:38:24 +0000 (UTC) From: Aaron Conole To: Jeremy Spewock Cc: ci@dpdk.org Subject: Re: [PATCH v2] tools: add jwt renewal function to acvp_tool References: <20230626213746.25465-2-jspewock@iol.unh.edu> Date: Tue, 27 Jun 2023 15:38:23 -0400 In-Reply-To: (Jeremy Spewock's message of "Tue, 27 Jun 2023 13:31:58 -0400") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.10 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: ci@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK CI discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ci-bounces@dpdk.org Jeremy Spewock writes: > On Tue, Jun 27, 2023 at 12:19=E2=80=AFPM Aaron Conole wrote: > > jspewock@iol.unh.edu writes: > > > From: Jeremy Spewock > > > > Adds a method that follows the process for renewing your jwt according > > to NIST API documentation. This way, if there are load issues and it > > takes too long to get vectors back with multi-algorithm testing, the > > script will always handle the jwt expiring. > > > > Also added a maximum number of renewals so that the script cannot run > > infinitely. > > > > Signed-off-by: Jeremy Spewock > > --- > > Hi Jeremy, > > Thanks for the changes, it is much easier to follow now. > > I ran this through 'black' and it did flag a few of your changes, but > I don't think it is an issue here because they are single quote > vs. double quote usage, and the usage you have is consistent with the > rest of the file. > > > tools/acvp/acvp_tool.py | 71 ++++++++++++++++++++++++++++++++++++----= - > > 1 file changed, 63 insertions(+), 8 deletions(-) > > mode change 100755 =3D> 100644 tools/acvp/acvp_tool.py > > Was this mode change intentional? I guess it must not be since the > README advocates usage as: > > acvp_tool.py --request $DOWNLOAD_PATH > > I can fix on apply if you confirm. > > Great catch, you're right, this was not something I meant to change. I no= ticed there was a conflict with file > modes when I was creating and testing the patch and I thought I fixed it = to be the right one before submitting > but I suppose I did it in reverse.=20 > > if you could fix it what would be appreciated, thank you. Thanks - fixed up and applied. > > diff --git a/tools/acvp/acvp_tool.py b/tools/acvp/acvp_tool.py > > old mode 100755 > > new mode 100644 > > index 40d2f2f..a28760d > > --- a/tools/acvp/acvp_tool.py > > +++ b/tools/acvp/acvp_tool.py > > @@ -1,7 +1,7 @@ > > #!/usr/bin/env python3 > > =20 > > # SPDX-License-Identifier: BSD-3-Clause > > -# Copyright 2022 The University of New Hampshire > > +# Copyright 2023 The University of New Hampshire > > =20 > > import hashlib > > import sys > > @@ -36,6 +36,8 @@ class ACVPProxy: > > self.totp_path: str =3D totp_path > > self.login_data: Optional[Dict[str, Any]] =3D None > > self.session_data: Optional[Dict[str, Any]] =3D None > > + self.retries: int =3D 0 > > + self.max_retries: int =3D 2 > > =20 > > with open(config_path, 'r') as f: > > self.config: Any =3D json.load(f) > > @@ -70,7 +72,13 @@ class ACVPProxy: > > cert=3Dself.cert, > > headers=3D{'Authorization': f'Bearer {token}'} > > ) > > - if not response.ok: > > + if response.status_code =3D=3D 401: > > + if self.__renew_jwt(): > > + token =3D self.session_data['jwt'] > > + continue > > + logging.error("Failed to renew expired jwt") > > + return None > > + elif not response.ok: > > logging.error(f'Failed to fetch vector set {url}') > > logging.error(json.dumps(response.json(), indent=3D4)= ) > > return None > > @@ -85,6 +93,35 @@ class ACVPProxy: > > logging.info(f'Downloaded vector set {url}') > > return vector_set_json > > =20 > > + def __renew_jwt(self) -> bool: > > + """Renews the jwt in session_data. > > + > > + JWTs provided by the NIST API last 30 minutes which can cause= this > > + script to fail even with good data. This method renews the jw= t using > > + the login endpoint. > > + > > + @return: True if successfully renewed token > > + """ > > + if self.retries >=3D self.max_retries: > > + logging.error("Maximum number of jwt renewals has been re= ached.") > > + return False > > + response =3D requests.post( > > + url=3Df'{self.config["url"]}/acvp/v1/login', > > + json=3D[ > > + {'acvVersion': '1.0'}, > > + { > > + 'password': self.__get_totp(), > > + 'accessToken': self.session_data["jwt"] > > + } > > + ], > > + cert=3Dself.cert, > > + ) > > + if response.ok: > > + self.retries +=3D 1 > > + self.session_data["jwt"] =3D response.json()[1].pop("acce= ssToken") > > + return True > > + return False > > + > > def login(self) -> bool: > > """Log into the API server. > > =20 > > @@ -178,6 +215,12 @@ class ACVPProxy: > > 'Authorization': f'Bearer {self.session_data[= "jwt"]}' > > } > > ) > > + if result.status_code =3D=3D 401: > > + if self.__renew_jwt(): > > + write_data[0]["jwt"] =3D self.session_data["j= wt"] > > + continue > > + logging.error("Failed to renew jwt") > > + return None > > version, result_json =3D result.json() > > if 'retry' in result_json: > > duration =3D result_json['retry'] > > @@ -208,7 +251,19 @@ class ACVPProxy: > > headers=3D{'Authorization': f'Bearer {self.session_da= ta["jwt"]}'} > > ) > > =20 > > - if not response.ok: > > + if response.status_code =3D=3D 401: > > + if self.__renew_jwt(): > > + response =3D requests.post( > > + f'{self.config["url"]}{session_url}/vectorSet= s/' > > + f'{vector_set["vsId"]}/results', > > + json=3D[version, vector_set], > > + cert=3Dself.cert, > > + headers=3D{'Authorization': f'Bearer {self.se= ssion_data["jwt"]}'} > > + ) > > + else: > > + logging.error("Failed to renew jwt") > > + return False > > + elif not response.ok: > > has_error =3D True > > logging.error(f'Could not upload vector set response = for ' > > f'vector set ID {vector_set["vsId"]}.') > > @@ -239,13 +294,13 @@ def main(request_path: Optional[str], > > config_path=3Dconfig_path, > > ) > > =20 > > - logging.info('Attempting to log in...') > > - if not proxy.login(): > > - logging.error('Could not log in.') > > - sys.exit(1) > > - logging.info('Successfully logged in.') > > =20 > > if request_path: > > + logging.info('Attempting to log in...') > > + if not proxy.login(): > > + logging.error('Could not log in.') > > + sys.exit(1) > > + logging.info('Successfully logged in.') > > logging.info('Creating a new test session and downloading vec= tors...') > > test_session =3D proxy.register() > > if not test_session: