-
Notifications
You must be signed in to change notification settings - Fork 1
/
releasetools.py
executable file
·163 lines (150 loc) · 6.08 KB
/
releasetools.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# Copyright (C) 2009 The Android Open Source Project
# Copyright (c) 2011, The Linux Foundation. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Emit commands needed for QCOM devices during OTA installation
(installing the radio image)."""
import hashlib
import common
import re
def LoadFilesMap(zip):
try:
data = zip.read("RADIO/filesmap")
except KeyError:
print "Warning: could not find RADIO/filesmap in %s." % zip
data = ""
d = {}
for line in data.split("\n"):
line = line.strip()
if not line or line.startswith("#"): continue
pieces = line.split()
if not (len(pieces) == 2 or len(pieces) == 3):
raise ValueError("malformed filesmap line: \"%s\"" % (line,))
file_size = zip.getinfo("RADIO/"+pieces[0]).file_size
sha1 = hashlib.sha1()
sha1.update(zip.read("RADIO/"+pieces[0]))
d[pieces[0]] = (pieces[1], sha1.hexdigest(), file_size)
return d
def GetRadioFiles(z):
out = {}
for info in z.infolist():
if info.filename.startswith("RADIO/") and (info.filename.__len__() > len("RADIO/")):
fn = "RADIO/" + info.filename[6:]
out[fn] = fn
return out
def FullOTA_Assertions(info):
AddTrustZoneAssertion(info)
return
def IncrementalOTA_Assertions(info):
AddTrustZoneAssertion(info)
return
def InstallRawImage(image_data, api_version, input_zip, fn, info, filesmap):
#fn is in RADIO/* format. Extracting just file name.
filename = fn[6:]
if api_version >= 3:
if filename not in filesmap:
return
partition = filesmap[filename][0]
checksum = filesmap[filename][1]
file_size = filesmap[filename][2]
# read_file returns a blob or NULL. Use sha1_check to convert to a string
# that can be evaluated (a NULL results in an empty string)
info.script.AppendExtra('ifelse((sha1_check(read_file("EMMC:%s:%d:%s")) != ""),'
'(ui_print("%s already up to date")),'
'(package_extract_file("%s", "%s")));'
% (partition, file_size, checksum, partition, filename, partition))
common.ZipWriteStr(info.output_zip, filename, image_data)
return
else:
print "warning radio-update: no support for api_version less than 3."
def AddDDRWipe(info):
files = GetRadioFiles(info.input_zip)
if files == {}:
print "warning radio-update: no radio image in input target_files; not wiping DDR"
return
filesmap = LoadFilesMap(info.input_zip)
if filesmap == {}:
print "warning radio-update: no or invalid filesmap file found. not wiping DDR"
return
info.script.Print("Wiping DDR")
#todo, find _fn variables based on partition rather than assuming their names.
rpm_fn = "rpm.mbn"
rpm_part = filesmap[rpm_fn][0]
rpm_cs = filesmap[rpm_fn][1]
rpm_fs = filesmap[rpm_fn][2]
sbl_fn = "sbl1.mbn"
sbl_part = filesmap[sbl_fn][0]
sbl_cs = filesmap[sbl_fn][1]
sbl_fs = filesmap[sbl_fn][2]
ddr_part = "/dev/block/platform/msm_sdcc.1/by-name/DDR"
info.script.AppendExtra('ifelse((sha1_check(read_file("EMMC:%s:%d:%s")) != ""),' #RPM
'ifelse((sha1_check(read_file("EMMC:%s:%d:%s")) != ""),' #SBL
'(ui_print("RPM+SBL Already up to date, not wiping DDR")),'
'(wipe_block_device("%s", 32768))),'
'(wipe_block_device("%s", 32768)));' % (
rpm_part, rpm_fs, rpm_cs,
sbl_part, sbl_fs, sbl_cs,
ddr_part,
ddr_part)
)
# 5188431849b4613152fd7bdba6a3ff0a4fd6424b 32k DDR partition all zero sha1
info.script.AppendExtra('ifelse(sha1_check(read_file("EMMC:%s:%d:%s")) != "",'
'ui_print("Verified DDR wipe"),'
'ui_print("DDR wipe failed or not performed"));' % (
ddr_part, 32768, "5188431849b4613152fd7bdba6a3ff0a4fd6424b"
))
def InstallRadioFiles(info):
files = GetRadioFiles(info.input_zip)
if files == {}:
print "warning radio-update: no radio image in input target_files; not flashing radio"
return
info.script.Print("Writing radio image...")
#Load filesmap file
filesmap = LoadFilesMap(info.input_zip)
if filesmap == {}:
print "warning radio-update: no or invalid filesmap file found. not flashing radio"
return
if hasattr(info, 'source_zip'):
source_filesmap = LoadFilesMap(info.source_zip)
else:
source_filesmap = None
for f in files:
if source_filesmap:
filename = f[6:]
source_checksum = source_filesmap.get(filename, [None, 'no_source'])[1]
target_checksum = filesmap.get(filename, [None, 'no_target'])[1]
if source_checksum == target_checksum:
print "info radio-update: source and target match for %s... skipping" % filename
continue
image_data = info.input_zip.read(f)
InstallRawImage(image_data, info.input_version, info.input_zip, f, info, filesmap)
return
def FullOTA_InstallEnd(info):
AddDDRWipe(info)
InstallRadioFiles(info)
def IncrementalOTA_InstallEnd(info):
AddDDRWipe(info)
InstallRadioFiles(info)
def AddTrustZoneAssertion(info):
# Presence of filesmap indicates packaged firmware
filesmap = LoadFilesMap(info.input_zip)
if filesmap != {}:
return
android_info = info.input_zip.read("OTA/android-info.txt")
m = re.search(r'require\s+version-trustzone\s*=\s*(\S+)', android_info)
if m:
versions = m.group(1).split('|')
if len(versions) and '*' not in versions:
cmd = 'assert(oppo.verify_trustzone(' + ','.join(['"%s"' % tz for tz in versions]) + ') == "1");'
info.script.AppendExtra(cmd)
return