Skip to content

Commit 4df48ef

Browse files
Put the firmware build time update behind a build flag (#29691)
* Add build flag for changing firmware build time Adding a default fallback firmware build time. This makes the firmware build more consistent, so you get the same binary unless you specifically ask for the build time to be updated. * Get fallback from from file so it can be updated This lets us update the fallback time via a script using a cron job if we want to. * Restyled by isort * Change filename --------- Co-authored-by: Restyled.io <commits@restyled.io>
1 parent 786d161 commit 4df48ef

File tree

3 files changed

+40
-15
lines changed

3 files changed

+40
-15
lines changed
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
750561408

build/chip/write_build_time_header.py

+35-15
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,14 @@
1717
import os
1818
from datetime import datetime, timezone
1919

20+
SCRIPT_DIR = os.path.abspath(os.path.dirname(__file__))
21+
FALLBACK_LKGT_FILENAME = os.path.abspath(os.path.join(SCRIPT_DIR, 'fallback_last_known_good_time'))
2022

21-
def utc_time_in_matter_epoch_s():
23+
24+
def utc_time_in_matter_epoch_s(time: datetime):
2225
""" Returns the time in matter epoch in s. """
2326
# Matter epoch is 0 hours, 0 minutes, 0 seconds on Jan 1, 2000 UTC
24-
utc_matter = datetime.now(tz=timezone.utc) - datetime(2000, 1, 1, 0, 0, 0, 0, timezone.utc)
27+
utc_matter = time - datetime(2000, 1, 1, 0, 0, 0, 0, timezone.utc)
2528
return int(utc_matter.total_seconds())
2629

2730

@@ -32,31 +35,48 @@ def __init__(self, output, define_name, define_val):
3235
self.define_val = define_val
3336

3437

35-
def GetOptions():
38+
def write_header(options):
39+
with open(options.output, "w") as output_file:
40+
output_file.write("// Generated by write_build_time_header.py\n")
41+
output_file.write('#pragma once\n\n')
42+
43+
output_file.write(f'#define {options.define_name} {options.define_val}\n')
44+
45+
46+
def update_fallback_time_in_file():
47+
with open(FALLBACK_LKGT_FILENAME, "w") as output_file:
48+
output_file.write(str(utc_time_in_matter_epoch_s(datetime.now(tz=timezone.utc))))
49+
50+
51+
def main():
3652
parser = argparse.ArgumentParser()
3753
parser.add_argument('--output', help="Output header name (inside gen dir)")
3854
parser.add_argument('--gen-dir',
3955
help="Path to root of generated file directory tree.")
56+
parser.add_argument('--use-current-time', default=False, action='store_true',
57+
help="Set the LKGT to the current time. If this flag is not used, the LKGT is set to a hardcoded time.")
58+
parser.add_argument('--update-fallback-time-in-file', default=False, action='store_true',
59+
help='Write the current UTC time out to the fallback file')
4060
cmdline_options = parser.parse_args()
4161

62+
if cmdline_options.update_fallback_time_in_file:
63+
update_fallback_time_in_file()
64+
return
65+
4266
# The actual output file is inside the gen dir.
4367
output = os.path.join(cmdline_options.gen_dir, cmdline_options.output)
4468

4569
define_name = 'CHIP_DEVICE_CONFIG_FIRMWARE_BUILD_TIME_MATTER_EPOCH_S'
46-
build_time = utc_time_in_matter_epoch_s()
70+
if cmdline_options.use_current_time:
71+
build_time = utc_time_in_matter_epoch_s(datetime.now(tz=timezone.utc))
72+
else:
73+
with open(FALLBACK_LKGT_FILENAME, "r") as input_file:
74+
build_time = int(input_file.read())
4775

48-
return Options(output=output,
76+
opts = Options(output=output,
4977
define_name=define_name,
5078
define_val=str(build_time))
79+
write_header(opts)
5180

5281

53-
def WriteHeader(options):
54-
with open(options.output, "w") as output_file:
55-
output_file.write("// Generated by write_build_time_header.py\n")
56-
output_file.write('#pragma once\n\n')
57-
58-
output_file.write(f'#define {options.define_name} {options.define_val}\n')
59-
60-
61-
options = GetOptions()
62-
WriteHeader(options)
82+
main()

src/credentials/BUILD.gn

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import("${chip_root}/src/platform/device.gni")
2020

2121
declare_args() {
2222
chip_build_example_creds = true
23+
update_last_known_good_time = false
2324
}
2425

2526
action("gen_build_time_header") {
@@ -35,6 +36,9 @@ action("gen_build_time_header") {
3536
"--gen-dir",
3637
rebase_path(include_dir, root_build_dir),
3738
]
39+
if (update_last_known_good_time) {
40+
args += [ "--use-current-time" ]
41+
}
3842

3943
visibility = [ ":build_time_header" ]
4044
}

0 commit comments

Comments
 (0)