Move ASOP factory extraction tool to its own directory
Moved some source to common folder. Added uploading script which is also shared by CE CDM partners. Added README. Test: m wv_factory_extraction_tool Bug: 414642286 Change-Id: I565027b75528ab28f9f1eb8d9086c0213de992d0
This commit is contained in:
@@ -30,19 +30,20 @@ cc_binary {
|
||||
"libwv_cdm_utils",
|
||||
],
|
||||
srcs: [
|
||||
"cli.cpp",
|
||||
"src/log.cpp",
|
||||
"src/properties_android.cpp",
|
||||
"src/BccParser.cpp",
|
||||
"src/WidevineProvisioner.cpp",
|
||||
"src/WidevineOemcryptoInterface.cpp",
|
||||
"aosp/cli.cpp",
|
||||
"aosp/src/log.cpp",
|
||||
"aosp/src/properties_android.cpp",
|
||||
"aosp/src/BccParser.cpp",
|
||||
"aosp/src/WidevineProvisioner.cpp",
|
||||
"common/src/WidevineOemcryptoInterface.cpp",
|
||||
],
|
||||
include_dirs: [
|
||||
"vendor/widevine/libwvdrmengine/oemcrypto/include",
|
||||
"vendor/widevine/libwvdrmengine/cdm/util/include",
|
||||
],
|
||||
local_include_dirs: [
|
||||
"include",
|
||||
"aosp/include",
|
||||
"common/include",
|
||||
],
|
||||
dist: {
|
||||
targets: [
|
||||
|
||||
34
libwvdrmengine/tools/factory_upload_tool/aosp/README.md
Normal file
34
libwvdrmengine/tools/factory_upload_tool/aosp/README.md
Normal file
@@ -0,0 +1,34 @@
|
||||
# Widevine Factory Extraction Tool for AOSP partners
|
||||
|
||||
This tool extracts the BCC and generates the Certificate Signing Request (CSR)
|
||||
needed to be uploaded to Wideivine Provisioning server for Prov4 device registration.
|
||||
|
||||
## CSR extraction instructions:
|
||||
|
||||
1. Make `wv_factory_extraction_tool`:
|
||||
- m wv_factory_extraction_tool
|
||||
|
||||
2. Locate build output and adb push it to the target device, e.g.:
|
||||
- adb push out/target/product/{product name}/vendor/bin/hw/wv_factory_extraction_tool /vendor/bin/hw/wv_factory_extraction_tool
|
||||
|
||||
3. Restart Widevine service on the device to ensure a clean state
|
||||
before running the tool:
|
||||
- adb shell pkill -f -9 widevine
|
||||
|
||||
4. Run the wv_factory_extractor tool on the target device. By default,
|
||||
the tool prints the CSR in JSON format directly to the console.
|
||||
- adb shell /vendor/bin/hw/wv_factory_extraction_tool json_csr
|
||||
or just
|
||||
- adb shell /vendor/bin/hw/wv_factory_extraction_tool
|
||||
For additional options, run the tool with the `help` argument:
|
||||
- adb shell /vendor/bin/hw/wv_factory_extraction_tool help
|
||||
|
||||
## Uploading instructions:
|
||||
|
||||
1. Save the extracted CSR to `csr.json`.
|
||||
|
||||
2. Upload the `csr.json` file using `common/wv_upload_tool.py`:
|
||||
python3 wv_upload_tool.py --credentials=cred.json --org-name={your organization name} --json-csr=csr.json
|
||||
- Replace cred.json with the path to your OAuth 2.0 client credentials file.
|
||||
You can obtain this file through the Google Cloud Platform.
|
||||
- Replace {your organization name} with the name of your organization.
|
||||
@@ -0,0 +1,513 @@
|
||||
#!/usr/bin/env python3
|
||||
# Copyright 2022 Google LLC. All rights reserved.
|
||||
"""Uploader tool for sending device keys to Widevine remote provisioning server.
|
||||
|
||||
This tool consumes an input file containing device info, which includes the
|
||||
device's public key, and batch uploads it to Google. Once uploaded, the device
|
||||
may use Widevine provisioning 4 to request OEM certificates from Google.
|
||||
|
||||
This tool is designed to be used with the widevine factory extraction tool.
|
||||
Therefore, the JSON output from widevine factory extraction tool is the expected
|
||||
input, with one JSON string per line of input.
|
||||
"""
|
||||
|
||||
import argparse
|
||||
from http import HTTPStatus
|
||||
import http.server
|
||||
import json
|
||||
import os
|
||||
import sys
|
||||
import urllib.parse
|
||||
import urllib.request
|
||||
import uuid
|
||||
import webbrowser
|
||||
from google.auth.transport import requests
|
||||
from google.oauth2 import service_account
|
||||
|
||||
DEFAULT_BASE = 'https://widevine.googleapis.com/v1beta1'
|
||||
UPLOAD_PATH = '/uniqueDeviceInfo:batchUpload'
|
||||
BATCH_CHECK_PATH = '/uniqueDeviceInfo:batchCheck'
|
||||
TOKEN_CACHE_FILE = os.path.join(
|
||||
os.path.expanduser('~'), '.device_info_uploader.token'
|
||||
)
|
||||
|
||||
OAUTH_SERVICE_BASE = 'https://accounts.google.com/o/oauth2'
|
||||
OAUTH_AUTHN_URL = OAUTH_SERVICE_BASE + '/auth'
|
||||
OAUTH_TOKEN_URL = OAUTH_SERVICE_BASE + '/token'
|
||||
|
||||
OAUTH_SCOPES = ['https://www.googleapis.com/auth/widevine/frontend']
|
||||
|
||||
|
||||
class OAuthHTTPRequestHandler(http.server.BaseHTTPRequestHandler):
|
||||
"""HTTP Handler used to accept the oauth response when the user logs in."""
|
||||
|
||||
def do_GET(self): # pylint: disable=invalid-name
|
||||
"""Handles GET, extracting the authorization code in the query params."""
|
||||
print(f'GET path: {self.path}')
|
||||
parsed_path = urllib.parse.urlparse(self.path)
|
||||
params = dict(urllib.parse.parse_qsl(parsed_path.query))
|
||||
if 'error' in params:
|
||||
error = params['error']
|
||||
self.respond(
|
||||
400, error, f'Error received from the OAuth server: {error}.'
|
||||
)
|
||||
sys.exit(-1)
|
||||
elif 'code' not in params:
|
||||
self.respond(
|
||||
400,
|
||||
'ERROR',
|
||||
(
|
||||
'Response from OAuth server is missing the authorization '
|
||||
f'code. Full response: "{self.path}"'
|
||||
),
|
||||
)
|
||||
sys.exit(-1)
|
||||
else:
|
||||
self.respond(
|
||||
200, 'Success!', 'Success! You may close this browser window.'
|
||||
)
|
||||
self.server.code = params['code']
|
||||
|
||||
def do_POST(self): # pylint: disable=invalid-name
|
||||
print(f'POST path: {self.path}')
|
||||
|
||||
def respond(self, code, title, message):
|
||||
"""Send a response to the HTTP client.
|
||||
|
||||
Args:
|
||||
code: The HTTP status code to send
|
||||
title: The page title to display
|
||||
message: The message to display to the user on the page
|
||||
"""
|
||||
if code != 200:
|
||||
eprint(message)
|
||||
self.send_response(code)
|
||||
self.send_header('Content-type', 'text/html')
|
||||
self.end_headers()
|
||||
self.wfile.write(
|
||||
(
|
||||
'<html>'
|
||||
f' <title>{title}</title>'
|
||||
' <body>'
|
||||
f' <p style="font-size:24px;">{message}</p>'
|
||||
' </body>'
|
||||
'</html>'
|
||||
).encode('utf-8')
|
||||
)
|
||||
|
||||
|
||||
class LocalOAuthReceiver(http.server.HTTPServer):
|
||||
"""HTTP server that will wait for an OAuth authorization code."""
|
||||
|
||||
def __init__(self):
|
||||
super(LocalOAuthReceiver, self).__init__(
|
||||
('127.0.0.1', 0), OAuthHTTPRequestHandler
|
||||
)
|
||||
self.code = None
|
||||
|
||||
def port(self):
|
||||
return self.socket.getsockname()[1]
|
||||
|
||||
def wait_for_code(self):
|
||||
print('Waiting for a response from the Google OAuth service.')
|
||||
print('If you receive an error in your browser, interrupt this script.')
|
||||
self.handle_request()
|
||||
return self.code
|
||||
|
||||
|
||||
def eprint(message):
|
||||
print(message, file=sys.stderr)
|
||||
|
||||
|
||||
def die(message):
|
||||
eprint(message)
|
||||
sys.exit(-1)
|
||||
|
||||
|
||||
def parse_args():
|
||||
"""Parse and return the command line args.
|
||||
|
||||
Returns:
|
||||
An argparse.Namespace object populated with the arguments.
|
||||
"""
|
||||
parser = argparse.ArgumentParser(
|
||||
description='Widevine BCC Batch Upload/Check Tool'
|
||||
)
|
||||
|
||||
parser.add_argument(
|
||||
'--version', action='version', version='20240822'
|
||||
) # yyyymmdd
|
||||
|
||||
parser.add_argument(
|
||||
'--json-csr',
|
||||
nargs='+',
|
||||
required=True,
|
||||
help='list of files containing JSON output from factory extraction tool',
|
||||
)
|
||||
parser.add_argument('--credentials', help='JSON credentials file')
|
||||
|
||||
parser.add_argument(
|
||||
'--endpoint', default=DEFAULT_BASE, help='destination server URL'
|
||||
)
|
||||
|
||||
parser.add_argument('--org-name', required=True, help='orgnization name')
|
||||
|
||||
parser.add_argument(
|
||||
'--cache-token',
|
||||
action='store_true',
|
||||
help='Use a locally cached a refresh token',
|
||||
)
|
||||
|
||||
parser.add_argument(
|
||||
'--service-credentials', help='JSON credentials file for service account'
|
||||
)
|
||||
|
||||
parser.add_argument(
|
||||
'--die-on-error',
|
||||
action='store_true',
|
||||
help='exit on error and stop uploading more CSRs',
|
||||
)
|
||||
|
||||
parser.add_argument(
|
||||
'--dryrun',
|
||||
action='store_true',
|
||||
help=(
|
||||
'Do not upload anything. Instead print out what actions would have'
|
||||
' been taken if the --dryrun flag had not been specified.'
|
||||
),
|
||||
)
|
||||
|
||||
parser.add_argument(
|
||||
'--check',
|
||||
action='store_true',
|
||||
required=False,
|
||||
help='Perform a batch check on the CSRs.',
|
||||
)
|
||||
|
||||
parser.add_argument(
|
||||
'--verbose',
|
||||
action='store_true',
|
||||
required=False,
|
||||
help='Print request and response details.',
|
||||
)
|
||||
|
||||
return parser.parse_args()
|
||||
|
||||
|
||||
def parse_json_csrs(filename, batches):
|
||||
"""Parse the given file and insert it into batches.
|
||||
|
||||
If the input is not a valid JSON CSR blob, exit the program.
|
||||
|
||||
Args:
|
||||
filename: The file that contains a JSON-formatted build and CSR
|
||||
batches: Output dict containing a mapping from json dumped device metadata
|
||||
to BCCs.
|
||||
"""
|
||||
base_filename = os.path.basename(filename)
|
||||
line_count = 0
|
||||
for line in open(filename):
|
||||
line_count = line_count + 1
|
||||
obj = {}
|
||||
try:
|
||||
obj = json.loads(line)
|
||||
except json.JSONDecodeError as e:
|
||||
die(f'{e.msg} {filename}:{line_count}, char {e.pos}')
|
||||
|
||||
try:
|
||||
bcc = {
|
||||
'boot_certificate_chain': obj['bcc'],
|
||||
'name': f'{base_filename}#{line_count}',
|
||||
}
|
||||
device_metadata = json.dumps({
|
||||
'company': obj['company'],
|
||||
'architecture': obj['architecture'],
|
||||
'name': obj['name'],
|
||||
'model': obj['model'],
|
||||
'product': obj['product'],
|
||||
'build_info': obj['build_info'],
|
||||
'oemcrypto_build_info': obj['oemcrypto_build_info'],
|
||||
})
|
||||
if device_metadata not in batches:
|
||||
batches[device_metadata] = []
|
||||
batches[device_metadata].append(bcc)
|
||||
except KeyError as e:
|
||||
die(f'Invalid object at {filename}:{line_count}, missing {e}')
|
||||
|
||||
if line_count == 0:
|
||||
die('Empty BCC file!')
|
||||
|
||||
|
||||
def format_request_body(args, device_metadata, bccs):
|
||||
"""Generate a formatted request buffer for the given build and CSRs."""
|
||||
request = {
|
||||
'parent': 'orgs/' + args.org_name,
|
||||
'request_id': uuid.uuid4().hex,
|
||||
'metadata': json.loads(device_metadata),
|
||||
'device_info': bccs,
|
||||
}
|
||||
return json.dumps(request).encode('utf-8')
|
||||
|
||||
|
||||
def format_check_request_body(args, bccs):
|
||||
"""Generate a formatted BatchCheck request buffer for the given build and CSRs."""
|
||||
request = {
|
||||
'parent': 'orgs/' + args.org_name,
|
||||
'request_id': uuid.uuid4().hex,
|
||||
'device_info': bccs,
|
||||
}
|
||||
|
||||
return json.dumps(request).encode('utf-8')
|
||||
|
||||
|
||||
def load_refresh_token():
|
||||
if not os.path.exists(TOKEN_CACHE_FILE):
|
||||
return None
|
||||
with open(TOKEN_CACHE_FILE) as f:
|
||||
return f.readline()
|
||||
|
||||
|
||||
def store_refresh_token(refresh_token):
|
||||
with open(TOKEN_CACHE_FILE, 'w') as f:
|
||||
f.write(refresh_token)
|
||||
|
||||
|
||||
def fetch_access_token(creds, cache_token=False, code=None, redirect_uri=None):
|
||||
"""Fetch an oauth2 access token.
|
||||
|
||||
If a code is passed, then it is used to get the token. If code
|
||||
is None, then look for a persisted refresh token and use that to
|
||||
get the access token instead.
|
||||
|
||||
Args:
|
||||
creds: The OAuth client credentials, including client secret and id.
|
||||
cache_token: If True, then the refresh token is cached on disk so that the
|
||||
user does not have to reauthenticate when the script is used again.
|
||||
code: The OAuth authorization code, returned by Google's OAuth service.
|
||||
redirect_uri: If an authorization code is supplied, then the redirect_uri
|
||||
used to fetch the code must be passed here.
|
||||
|
||||
Returns:
|
||||
A base64-encode OAuth access token, suitable for including in a request.
|
||||
"""
|
||||
request = urllib.request.Request(OAUTH_TOKEN_URL)
|
||||
request.add_header('Content-Type', 'application/x-www-form-urlencoded')
|
||||
body = 'client_id=' + creds['client_id']
|
||||
body += '&client_secret=' + creds['client_secret']
|
||||
|
||||
if code is not None:
|
||||
if redirect_uri is None:
|
||||
raise ValueError('"code" was supplied, but "redirect_uri" is None')
|
||||
body += '&grant_type=authorization_code'
|
||||
body += '&code=' + code
|
||||
body += '&redirect_uri=' + redirect_uri
|
||||
else:
|
||||
refresh_token = load_refresh_token()
|
||||
if refresh_token is None:
|
||||
return None
|
||||
body += '&grant_type=refresh_token'
|
||||
body += '&refresh_token=' + refresh_token
|
||||
|
||||
try:
|
||||
response = urllib.request.urlopen(request, body.encode('utf-8'))
|
||||
parsed_response = json.load(response)
|
||||
if cache_token:
|
||||
store_refresh_token(parsed_response['refresh_token'])
|
||||
return parsed_response['access_token']
|
||||
except urllib.error.HTTPError as e:
|
||||
# Catch bogus/expired refresh tokens, but bubble up errors when
|
||||
# an authorization code is used.
|
||||
if code is None:
|
||||
return None
|
||||
die(f'Failed to receive access token: {e.code} {e.reason}')
|
||||
|
||||
|
||||
def load_and_validate_creds(credfile):
|
||||
"""Loads the credentials from the given file and validates them.
|
||||
|
||||
Args:
|
||||
credfile: the name of the file containing the client credentials
|
||||
|
||||
Returns:
|
||||
A map containing the credentials for connecting to the APE backend.
|
||||
"""
|
||||
credmap = json.load(open(credfile))
|
||||
|
||||
not_local_app_creds_error = (
|
||||
'ERROR: Invalid credential file.\n'
|
||||
' The given credentials do not appear to be for a locally installed\n'
|
||||
' application. Please navigate to the credentials dashboard and\n'
|
||||
' ensure that the "Type" of your client is "Desktop":\n'
|
||||
' https://console.cloud.google.com/apis/credentials'
|
||||
)
|
||||
|
||||
if 'installed' not in credmap:
|
||||
die(not_local_app_creds_error)
|
||||
|
||||
creds = credmap['installed']
|
||||
|
||||
expected_keys = set(['client_id', 'client_secret', 'redirect_uris'])
|
||||
if not expected_keys.issubset(creds.keys()):
|
||||
die((
|
||||
'ERROR: Invalid credential file.\n'
|
||||
' The given credentials do not appear to be valid. Please\n'
|
||||
' re-download the client credentials file from the dashboard:\n'
|
||||
' https://console.cloud.google.com/apis/credentials'
|
||||
))
|
||||
|
||||
if 'http://localhost' not in creds['redirect_uris']:
|
||||
die(not_local_app_creds_error)
|
||||
|
||||
return creds
|
||||
|
||||
|
||||
def authenticate_and_fetch_token(args):
|
||||
"""Authenticate and fetch an OAUTH2 access token."""
|
||||
# Auth for service account
|
||||
if args.service_credentials:
|
||||
if not os.path.exists(args.service_credentials):
|
||||
die('Service account credentials file does not exist.')
|
||||
svc_account = service_account.Credentials.from_service_account_file(
|
||||
args.service_credentials,
|
||||
scopes=OAUTH_SCOPES,
|
||||
)
|
||||
svc_account.refresh(requests.Request())
|
||||
return svc_account.token
|
||||
|
||||
# Auth for user account
|
||||
if args.credentials is None:
|
||||
die('User credentials is not provided.')
|
||||
if not os.path.exists(args.credentials):
|
||||
die('User credentials file does not exist.')
|
||||
creds = load_and_validate_creds(args.credentials)
|
||||
|
||||
access_type = 'online'
|
||||
if args.cache_token:
|
||||
token = fetch_access_token(creds)
|
||||
if token is not None:
|
||||
return token
|
||||
access_type = 'offline'
|
||||
|
||||
httpd = LocalOAuthReceiver()
|
||||
redirect_uri = f'http://127.0.0.1:{httpd.port()}'
|
||||
url = (
|
||||
OAUTH_AUTHN_URL
|
||||
+ '?response_type=code'
|
||||
+ '&client_id='
|
||||
+ creds['client_id']
|
||||
+ '&redirect_uri='
|
||||
+ redirect_uri
|
||||
+ '&scope=https://www.googleapis.com/auth/widevine/frontend'
|
||||
+ '&access_type='
|
||||
+ access_type
|
||||
+ '&prompt=select_account'
|
||||
)
|
||||
print('Opening your web browser to authenticate...')
|
||||
if not webbrowser.open(url, new=1, autoraise=True):
|
||||
print('Error opening the browser. Please open this link in a browser')
|
||||
print(f'that is running on this same system:\n {url}\n')
|
||||
code = httpd.wait_for_code()
|
||||
return fetch_access_token(creds, args.cache_token, code, redirect_uri)
|
||||
|
||||
|
||||
def upload_batch(args, device_metadata, bccs):
|
||||
"""Batch upload all the CSRs associated build device_metadata.
|
||||
|
||||
Args:
|
||||
args: The parsed command-line arguments
|
||||
device_metadata: The build for which we're uploading CSRs
|
||||
bccs: a list of BCCs to be uploaded for the given build
|
||||
"""
|
||||
print('Uploading {} bcc(s)'.format(len(bccs)))
|
||||
if args.verbose:
|
||||
print("Build: '{}'".format(device_metadata))
|
||||
body = format_request_body(args, device_metadata, bccs)
|
||||
return batch_action_single_attempt(args, UPLOAD_PATH, body)
|
||||
|
||||
|
||||
def check_batch(args, device_metadata, bccs):
|
||||
"""Batch check all the CSRs.
|
||||
|
||||
Args:
|
||||
args: The parsed command-line arguments
|
||||
device_metadata: The build for which we're checking CSRs
|
||||
bccs: a list of BCCs to be checked for the given build
|
||||
"""
|
||||
print('Checking {} bcc(s)'.format(len(bccs)))
|
||||
if args.verbose:
|
||||
print("Build: '{}'".format(device_metadata))
|
||||
body = format_check_request_body(args, bccs)
|
||||
return batch_action_single_attempt(args, BATCH_CHECK_PATH, body)
|
||||
|
||||
|
||||
def batch_action_single_attempt(args, path, body):
|
||||
"""Batch action (upload or check existence) for all the CSRs in chunks.
|
||||
|
||||
Args:
|
||||
args: The parsed command-line arguments
|
||||
csrs: a list of CSRs to be uploaded/checked for the given build
|
||||
path: The endpoint url for the specific action
|
||||
body: The formatted request body
|
||||
"""
|
||||
if args.verbose:
|
||||
print('Request body:')
|
||||
print(body)
|
||||
print('Request target:')
|
||||
print(args.endpoint + path)
|
||||
request = urllib.request.Request(args.endpoint + path)
|
||||
request.add_header('Content-Type', 'application/json')
|
||||
request.add_header('X-GFE-SSL', 'yes')
|
||||
request.add_header(
|
||||
'Authorization', 'Bearer ' + authenticate_and_fetch_token(args)
|
||||
)
|
||||
if args.dryrun:
|
||||
print('dry run: would have reached to ' + request.full_url)
|
||||
return HTTPStatus.OK
|
||||
|
||||
try:
|
||||
response = urllib.request.urlopen(request, body)
|
||||
except urllib.error.HTTPError as e:
|
||||
eprint(f'Error uploading bccs. {e}')
|
||||
for line in e:
|
||||
eprint(line.decode('utf-8').rstrip())
|
||||
sys.exit(1)
|
||||
|
||||
response_body = response.read().decode('utf-8')
|
||||
if args.verbose:
|
||||
print('Response body:')
|
||||
print(response_body)
|
||||
res = json.loads(response_body)
|
||||
if 'failedDeviceInfo' in res:
|
||||
eprint('Failed to upload/check some device info! Response body:')
|
||||
eprint(response_body)
|
||||
eprint('Failed: {} bcc(s)'.format(len(res['failedDeviceInfo'])))
|
||||
if args.die_on_error:
|
||||
sys.exit(1)
|
||||
elif 'successDeviceInfo' in res:
|
||||
print('Success: {} bcc(s)'.format(len(res['successDeviceInfo'])))
|
||||
else:
|
||||
eprint('Failed with unexpected response:')
|
||||
eprint(response_body)
|
||||
|
||||
|
||||
def main():
|
||||
args = parse_args()
|
||||
if args.dryrun:
|
||||
print('Dry run mode enabled. Service APIs will not be called.')
|
||||
|
||||
batches = {}
|
||||
for filename in args.json_csr:
|
||||
parse_json_csrs(filename, batches)
|
||||
|
||||
if len(batches) > 1:
|
||||
print('WARNING: {} different device metadata'.format(len(batches)))
|
||||
|
||||
for device_metadata, bccs in batches.items():
|
||||
if args.check:
|
||||
check_batch(args, device_metadata, bccs)
|
||||
else:
|
||||
upload_batch(args, device_metadata, bccs)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
Reference in New Issue
Block a user