support/scripts/pkg-stats: use aiohttp for latest version retrieval
This commit reworks the code that retrieves the latest upstream version of each package from release-monitoring.org using the aiohttp module. This makes the implementation much more elegant, and avoids the problematic multiprocessing Pool which is causing issues in some situations. Since we're now using some async functionality, the script is Python 3.x only, so the shebang is changed to make this clear. Suggested-by: Titouan Christophe <titouan.christophe@railnova.eu> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
# Copyright (C) 2009 by Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
# Copyright (C) 2009 by Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
||||||
#
|
#
|
||||||
@@ -16,7 +16,9 @@
|
|||||||
# along with this program; if not, write to the Free Software
|
# along with this program; if not, write to the Free Software
|
||||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
import aiohttp
|
||||||
import argparse
|
import argparse
|
||||||
|
import asyncio
|
||||||
import datetime
|
import datetime
|
||||||
import fnmatch
|
import fnmatch
|
||||||
import os
|
import os
|
||||||
@@ -26,13 +28,10 @@ import subprocess
|
|||||||
import requests # URL checking
|
import requests # URL checking
|
||||||
import json
|
import json
|
||||||
import ijson
|
import ijson
|
||||||
import certifi
|
|
||||||
import distutils.version
|
import distutils.version
|
||||||
import time
|
import time
|
||||||
import gzip
|
import gzip
|
||||||
import sys
|
import sys
|
||||||
from urllib3 import HTTPSConnectionPool
|
|
||||||
from urllib3.exceptions import HTTPError
|
|
||||||
from multiprocessing import Pool
|
from multiprocessing import Pool
|
||||||
|
|
||||||
sys.path.append('utils/')
|
sys.path.append('utils/')
|
||||||
@@ -54,10 +53,6 @@ CVE_AFFECTS = 1
|
|||||||
CVE_DOESNT_AFFECT = 2
|
CVE_DOESNT_AFFECT = 2
|
||||||
CVE_UNKNOWN = 3
|
CVE_UNKNOWN = 3
|
||||||
|
|
||||||
# Used to make multiple requests to the same host. It is global
|
|
||||||
# because it's used by sub-processes.
|
|
||||||
http_pool = None
|
|
||||||
|
|
||||||
|
|
||||||
class Defconfig:
|
class Defconfig:
|
||||||
def __init__(self, name, path):
|
def __init__(self, name, path):
|
||||||
@@ -526,54 +521,88 @@ def check_package_urls(packages):
|
|||||||
pool.terminate()
|
pool.terminate()
|
||||||
|
|
||||||
|
|
||||||
def release_monitoring_get_latest_version_by_distro(pool, name):
|
def check_package_latest_version_set_status(pkg, status, version, identifier):
|
||||||
try:
|
pkg.latest_version = {
|
||||||
req = pool.request('GET', "/api/project/Buildroot/%s" % name)
|
"status": status,
|
||||||
except HTTPError:
|
"version": version,
|
||||||
return (RM_API_STATUS_ERROR, None, None)
|
"id": identifier,
|
||||||
|
}
|
||||||
|
|
||||||
if req.status != 200:
|
if pkg.latest_version['status'] == RM_API_STATUS_ERROR:
|
||||||
return (RM_API_STATUS_NOT_FOUND, None, None)
|
pkg.status['version'] = ('warning', "Release Monitoring API error")
|
||||||
|
elif pkg.latest_version['status'] == RM_API_STATUS_NOT_FOUND:
|
||||||
|
pkg.status['version'] = ('warning', "Package not found on Release Monitoring")
|
||||||
|
|
||||||
data = json.loads(req.data)
|
if pkg.latest_version['version'] is None:
|
||||||
|
pkg.status['version'] = ('warning', "No upstream version available on Release Monitoring")
|
||||||
if 'version' in data:
|
elif pkg.latest_version['version'] != pkg.current_version:
|
||||||
return (RM_API_STATUS_FOUND_BY_DISTRO, data['version'], data['id'])
|
pkg.status['version'] = ('error', "The newer version {} is available upstream".format(pkg.latest_version['version']))
|
||||||
else:
|
else:
|
||||||
return (RM_API_STATUS_FOUND_BY_DISTRO, None, data['id'])
|
pkg.status['version'] = ('ok', 'up-to-date')
|
||||||
|
|
||||||
|
|
||||||
def release_monitoring_get_latest_version_by_guess(pool, name):
|
async def check_package_get_latest_version_by_distro(session, pkg, retry=True):
|
||||||
|
url = "https://release-monitoring.org//api/project/Buildroot/%s" % pkg.name
|
||||||
try:
|
try:
|
||||||
req = pool.request('GET', "/api/projects/?pattern=%s" % name)
|
async with session.get(url) as resp:
|
||||||
except HTTPError:
|
if resp.status != 200:
|
||||||
return (RM_API_STATUS_ERROR, None, None)
|
return False
|
||||||
|
|
||||||
if req.status != 200:
|
data = await resp.json()
|
||||||
return (RM_API_STATUS_NOT_FOUND, None, None)
|
version = data['version'] if 'version' in data else None
|
||||||
|
check_package_latest_version_set_status(pkg,
|
||||||
|
RM_API_STATUS_FOUND_BY_DISTRO,
|
||||||
|
version,
|
||||||
|
data['id'])
|
||||||
|
return True
|
||||||
|
|
||||||
data = json.loads(req.data)
|
except (aiohttp.ClientError, asyncio.TimeoutError):
|
||||||
|
if retry:
|
||||||
projects = data['projects']
|
return await check_package_get_latest_version_by_distro(session, pkg, retry=False)
|
||||||
projects.sort(key=lambda x: x['id'])
|
else:
|
||||||
|
return False
|
||||||
for p in projects:
|
|
||||||
if p['name'] == name and 'version' in p:
|
|
||||||
return (RM_API_STATUS_FOUND_BY_PATTERN, p['version'], p['id'])
|
|
||||||
|
|
||||||
return (RM_API_STATUS_NOT_FOUND, None, None)
|
|
||||||
|
|
||||||
|
|
||||||
def check_package_latest_version_worker(name):
|
async def check_package_get_latest_version_by_guess(session, pkg, retry=True):
|
||||||
"""Wrapper to try both by name then by guess"""
|
url = "https://release-monitoring.org/api/projects/?pattern=%s" % pkg.name
|
||||||
print(name)
|
try:
|
||||||
res = release_monitoring_get_latest_version_by_distro(http_pool, name)
|
async with session.get(url) as resp:
|
||||||
if res[0] == RM_API_STATUS_NOT_FOUND:
|
if resp.status != 200:
|
||||||
res = release_monitoring_get_latest_version_by_guess(http_pool, name)
|
return False
|
||||||
return res
|
|
||||||
|
data = await resp.json()
|
||||||
|
# filter projects that have the right name and a version defined
|
||||||
|
projects = [p for p in data['projects'] if p['name'] == pkg.name and 'version' in p]
|
||||||
|
projects.sort(key=lambda x: x['id'])
|
||||||
|
|
||||||
|
if len(projects) > 0:
|
||||||
|
check_package_latest_version_set_status(pkg,
|
||||||
|
RM_API_STATUS_FOUND_BY_DISTRO,
|
||||||
|
projects[0]['version'],
|
||||||
|
projects[0]['id'])
|
||||||
|
return True
|
||||||
|
|
||||||
|
except (aiohttp.ClientError, asyncio.TimeoutError):
|
||||||
|
if retry:
|
||||||
|
return await check_package_get_latest_version_by_guess(session, pkg, retry=False)
|
||||||
|
else:
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
def check_package_latest_version(packages):
|
async def check_package_latest_version_get(session, pkg):
|
||||||
|
|
||||||
|
if await check_package_get_latest_version_by_distro(session, pkg):
|
||||||
|
return
|
||||||
|
|
||||||
|
if await check_package_get_latest_version_by_guess(session, pkg):
|
||||||
|
return
|
||||||
|
|
||||||
|
check_package_latest_version_set_status(pkg,
|
||||||
|
RM_API_STATUS_NOT_FOUND,
|
||||||
|
None, None)
|
||||||
|
|
||||||
|
|
||||||
|
async def check_package_latest_version(packages):
|
||||||
"""
|
"""
|
||||||
Fills in the .latest_version field of all Package objects
|
Fills in the .latest_version field of all Package objects
|
||||||
|
|
||||||
@@ -587,33 +616,17 @@ def check_package_latest_version(packages):
|
|||||||
- id: string containing the id of the project corresponding to this
|
- id: string containing the id of the project corresponding to this
|
||||||
package, as known by release-monitoring.org
|
package, as known by release-monitoring.org
|
||||||
"""
|
"""
|
||||||
global http_pool
|
|
||||||
http_pool = HTTPSConnectionPool('release-monitoring.org', port=443,
|
|
||||||
cert_reqs='CERT_REQUIRED', ca_certs=certifi.where(),
|
|
||||||
timeout=30)
|
|
||||||
worker_pool = Pool(processes=64)
|
|
||||||
results = worker_pool.map(check_package_latest_version_worker, (pkg.name for pkg in packages))
|
|
||||||
for pkg, r in zip(packages, results):
|
|
||||||
pkg.latest_version = dict(zip(['status', 'version', 'id'], r))
|
|
||||||
|
|
||||||
if not pkg.has_valid_infra:
|
for pkg in [p for p in packages if not p.has_valid_infra]:
|
||||||
pkg.status['version'] = ("na", "no valid package infra")
|
pkg.status['version'] = ("na", "no valid package infra")
|
||||||
continue
|
|
||||||
|
|
||||||
if pkg.latest_version['status'] == RM_API_STATUS_ERROR:
|
tasks = []
|
||||||
pkg.status['version'] = ('warning', "Release Monitoring API error")
|
connector = aiohttp.TCPConnector(limit_per_host=5)
|
||||||
elif pkg.latest_version['status'] == RM_API_STATUS_NOT_FOUND:
|
async with aiohttp.ClientSession(connector=connector, trust_env=True) as sess:
|
||||||
pkg.status['version'] = ('warning', "Package not found on Release Monitoring")
|
packages = [p for p in packages if p.has_valid_infra]
|
||||||
|
for pkg in packages:
|
||||||
if pkg.latest_version['version'] is None:
|
tasks.append(check_package_latest_version_get(sess, pkg))
|
||||||
pkg.status['version'] = ('warning', "No upstream version available on Release Monitoring")
|
await asyncio.wait(tasks)
|
||||||
elif pkg.latest_version['version'] != pkg.current_version:
|
|
||||||
pkg.status['version'] = ('error', "The newer version {} is available upstream".format(pkg.latest_version['version']))
|
|
||||||
else:
|
|
||||||
pkg.status['version'] = ('ok', 'up-to-date')
|
|
||||||
|
|
||||||
worker_pool.terminate()
|
|
||||||
del http_pool
|
|
||||||
|
|
||||||
|
|
||||||
def check_package_cves(nvd_path, packages):
|
def check_package_cves(nvd_path, packages):
|
||||||
@@ -1057,7 +1070,8 @@ def __main__():
|
|||||||
print("Checking URL status")
|
print("Checking URL status")
|
||||||
check_package_urls(packages)
|
check_package_urls(packages)
|
||||||
print("Getting latest versions ...")
|
print("Getting latest versions ...")
|
||||||
check_package_latest_version(packages)
|
loop = asyncio.get_event_loop()
|
||||||
|
loop.run_until_complete(check_package_latest_version(packages))
|
||||||
if args.nvd_path:
|
if args.nvd_path:
|
||||||
print("Checking packages CVEs")
|
print("Checking packages CVEs")
|
||||||
check_package_cves(args.nvd_path, {p.name: p for p in packages})
|
check_package_cves(args.nvd_path, {p.name: p for p in packages})
|
||||||
|
|||||||
Reference in New Issue
Block a user