.. | ||
.gitignore | ||
get_nvidia_downloads.py | ||
gfe_get_driver.py | ||
mailer.py | ||
nv-driver-locator.json.sample | ||
nv-driver-locator.py | ||
README.md |
nv-driver-locator
nv-driver-locator is a tool for internal usage, which purpose is to notify about new Nvidia driver releases. It's kernel supports and performs:
- Update retrieval from multiple sources (channels component).
- Notification through various ways (notifiers component).
- Driver info matching and aggregation via configurable set of attributes (hasher component).
- Persistence of collected data for keeping track on already seen drivers (db component).
Requirements
- Python 3.4+
beautifulsoup4
package - required only when NvidiaDownloadsChannel is used. On recent Debian/Ubuntu you may install it like this:apt-get install python3-bs4
. For other cases see this.
Overview
Structure
All scripts may be used both as standalone application and importable module. For CLI synopsys invoke program with --help
option.
- nv-driver-locator.py - main executable, intended to be run as cron job.
- mailer.py - module with email routines and minimalistic email client for test purposes.
- gfe_get_driver.py - GeForce Experience client library (and test util).
- get_nvidia_downloads.py - Nvidia downloads site parser (and test util).
Operation
- Cron job queries all configured channels.
- Program aggregates responses by hashing their's values covered by
key_components
.key_components
is a list of JSON paths (represented by list too) specified in config file. - Program queries DB if given hash has any match in database.
- If no match found and we have new instance, then all notifiers are getting fired.
- New record gets written into DB.
Configuration example
{
"db": {
"type": "file",
"params": {
"workdir": "/var/lib/nv-driver-locator"
}
},
"key_components": [
[
"DriverAttributes",
"Version"
],
[
"DriverAttributes",
"Name"
]
],
"channels": [
{
"type": "gfe_client",
"name": "desktop defaults",
"params": {}
},
{
"type": "gfe_client",
"name": "desktop beta",
"params": {
"beta": true
}
},
{
"type": "gfe_client",
"name": "mobile",
"params": {
"notebook": true
}
},
{
"type": "gfe_client",
"name": "mobile beta",
"params": {
"notebook": true,
"beta": true
}
},
{
"type": "nvidia_downloads",
"name": "linux beta",
"params": {
"os": "Linux_64",
"product": "GeForce",
"certlevel": "All"
}
},
{
"type": "nvidia_downloads",
"name": "linux stable",
"params": {
"os": "Linux_64",
"product": "GeForce",
"certlevel": "Certified"
}
},
{
"type": "nvidia_downloads",
"name": "downloads win stable",
"params": {
"os": "Windows10_64",
"product": "GeForce",
"certlevel": "Certified"
}
},
{
"type": "nvidia_downloads",
"name": "downloads win beta",
"params": {
"os": "Windows10_64",
"product": "GeForce",
"certlevel": "All"
}
},
{
"type": "nvidia_downloads",
"name": "downloads win notebook stable",
"params": {
"os": "Windows10_64",
"product": "GeForceMobile",
"certlevel": "Certified"
}
},
{
"type": "nvidia_downloads",
"name": "downloads win notebook beta",
"params": {
"os": "Windows10_64",
"product": "GeForceMobile",
"certlevel": "All"
}
},
{
"type": "nvidia_downloads",
"name": "linux quadro beta",
"params": {
"os": "Linux_64",
"product": "Quadro",
"certlevel": "All"
}
},
{
"type": "nvidia_downloads",
"name": "linux quadro stable",
"params": {
"os": "Linux_64",
"product": "Quadro",
"certlevel": "Certified"
}
},
{
"type": "nvidia_downloads",
"name": "downloads win quadro stable",
"params": {
"os": "Windows10_64",
"product": "Quadro",
"certlevel": "Certified"
}
},
{
"type": "nvidia_downloads",
"name": "downloads win quadro beta",
"params": {
"os": "Windows10_64",
"product": "Quadro",
"certlevel": "All"
}
},
{
"type": "nvidia_downloads",
"name": "downloads win quadro notebook stable",
"params": {
"os": "Windows10_64",
"product": "QuadroMobile",
"certlevel": "Certified"
}
},
{
"type": "nvidia_downloads",
"name": "downloads win quadro notebook beta",
"params": {
"os": "Windows10_64",
"product": "QuadroMobile",
"certlevel": "All"
}
}
],
"notifiers": [
{
"type": "email",
"name": "my email",
"params": {
"from_addr": "notify-bot@gmail.com",
"to_addrs": [
"recepient1@domain1.tld",
"recepient2@domain2.tld"
],
"host": "smtp.google.com",
"use_starttls": true,
"login": "notify-bot",
"password": "MyGoodPass"
}
},
{
"type": "command",
"name": "sample command",
"params": {
"timeout": 10.0,
"cmdline": [
"cat",
"-"
]
}
}
]
}
Components Reference
DB
FileDB
Stores data in files.
Type: file
Params:
workdir
- files location
Channels
GFEClientChannel
Queries latest driver for Windows, using GeForce Experience API.
Type: gfe_client
Params:
notebook
- seek for Mobile driver. Default:false
x86_64
- seek for 64bit driver. Default:true
os_version
- OS version. Default:"10.0"
os_build
- OS build. Default:"17763"
language
- language. Default:1033
(English)beta
- request Beta driver. Default:false
dch
- request DCH driver. Default:false
(request Standard Driver)timeout
- allowed delay in seconds for each network operation. Default:10.0
NvidiaDownloadsChannel
Parses Nvidia downloads site.
Params:
Type: nvidia_downloads
Params:
os
- OS family, version and bitness. Allowed values:Linux_32
,Linux_64
,Windows7_32
,Windows7_64
,Windows10_32
,Windows10_64
,WindowsServer2012R2_32
,WindowsServer2012R2_64
. Default:Linux_64
.product
- product kind. Allowed values:GeForce
,GeForceMobile
,Quadro
,QuadroMobile
. Default:GeForce
.certlevel
- driver certification level. Allowed values:All
- any certification level,Beta
- beta drivers,Certified
- WHQL certified in Windows case and Nvidia certified in Linux case,ODE
- Optimal Driver for Enterprise (Quadro driver),QNF
- Quadro New Feature (Quadro driver). Default:All
.driver_type
- driver type. Allowed values:Standard
,DCH
. At this moment DCH driver appears to exists only for some product families and only for Windows 10 x64. Default:Standard
.lang
- driver language. Allowed values:English
. Default:English
.cuda_ver
- verson of CUDA Toolkit bundled with driver. Currently useless for covered product families. Default:Nothing
.timeout
- allowed delay in seconds for each network operation. Default:10.0
Notifiers
CommandNotifier
Runs external process and pipes JSON with info about new driver into it
Type: command
Params:
cmdline
- list of command line arguments (where first is executable name)timeout
- allowed execution time in seconds. Default:10.0
EmailNotifier
Sends email with attached JSON file with driver info. Supports TLS, STARTTLS and authentication, so it can be used to send notification via mailbox provided by public services like gmail.
Type: email
Params:
from_addr
- originating addressto_addrs
- list of destination addresseshost
- SMTP host. Default:localhost
port
- SMTP port. Default: depends on chosen TLS/STARTTLS mode.local_hostname
- hostname used in EHLO/HELO commands. Default: autouse_ssl
- use SSL from beginning of connection. Default:false
use_starttls
- use STARTTLS. Default:false
login
- user login name. Default:null
(do not use authentication)password
- user password. Default:null
timeout
- allowed delay in seconds for each network operation. Default:10.0