|
18 | 18 |
|
19 | 19 | import argparse
|
20 | 20 | import base64
|
21 |
| -import enum |
22 | 21 | import logging
|
23 | 22 | import os
|
24 | 23 | import sys
|
|
27 | 26 | import cryptography.x509
|
28 | 27 | from bitarray import bitarray
|
29 | 28 | from bitarray.util import ba2int
|
| 29 | +from esp_secure_cert.tlv_format import generate_partition_ds, generate_partition_no_ds, tlv_priv_key_t, tlv_priv_key_type_t |
30 | 30 |
|
31 | 31 | CHIP_TOPDIR = os.path.dirname(os.path.realpath(__file__))[:-len(os.path.join('scripts', 'tools'))]
|
32 | 32 | sys.path.insert(0, os.path.join(CHIP_TOPDIR, 'scripts', 'tools', 'spake2p'))
|
|
148 | 148 | 'encoding': 'hex2bin',
|
149 | 149 | 'value': None,
|
150 | 150 | },
|
151 |
| - # DeviceInfoProvider |
152 |
| - 'cal-types': { |
153 |
| - 'type': 'data', |
154 |
| - 'encoding': 'u32', |
155 |
| - 'value': None, |
156 |
| - }, |
157 |
| - 'locale-sz': { |
158 |
| - 'type': 'data', |
159 |
| - 'encoding': 'u32', |
160 |
| - 'value': None, |
161 |
| - }, |
162 |
| - |
163 |
| - # Other device info provider keys are dynamically generated |
164 |
| - # in the respective functions. |
165 | 151 | }
|
166 | 152 |
|
167 | 153 |
|
168 |
| -class CalendarTypes(enum.Enum): |
169 |
| - Buddhist = 0 |
170 |
| - Chinese = 1 |
171 |
| - Coptic = 2 |
172 |
| - Ethiopian = 3 |
173 |
| - Gregorian = 4 |
174 |
| - Hebrew = 5 |
175 |
| - Indian = 6 |
176 |
| - Islamic = 7 |
177 |
| - Japanese = 8 |
178 |
| - Korean = 9 |
179 |
| - Persian = 10 |
180 |
| - Taiwanese = 11 |
181 |
| - |
182 |
| - |
183 |
| -# Supported Calendar types is stored as a bit array in one uint32_t. |
184 |
| -def calendar_types_to_uint32(calendar_types): |
185 |
| - result = bitarray(32, endian='little') |
186 |
| - result.setall(0) |
187 |
| - for calendar_type in calendar_types: |
188 |
| - try: |
189 |
| - result[CalendarTypes[calendar_type].value] = 1 |
190 |
| - except KeyError: |
191 |
| - logging.error('Unknown calendar type: %s', calendar_type) |
192 |
| - logging.error('Supported calendar types: %s', ', '.join(CalendarTypes.__members__)) |
193 |
| - sys.exit(1) |
194 |
| - return ba2int(result) |
195 |
| - |
196 |
| - |
197 | 154 | def ishex(s):
|
198 | 155 | try:
|
199 | 156 | _ = int(s, 16)
|
200 | 157 | return True
|
201 | 158 | except ValueError:
|
202 | 159 | return False
|
203 | 160 |
|
204 |
| -# get_fixed_label_dict() converts the list of strings to per endpoint dictionaries. |
205 |
| -# example input : ['0/orientation/up', '1/orientation/down', '2/orientation/down'] |
206 |
| -# example output : {'0': [{'orientation': 'up'}], '1': [{'orientation': 'down'}], '2': [{'orientation': 'down'}]} |
207 |
| - |
208 |
| - |
209 |
| -def get_fixed_label_dict(fixed_labels): |
210 |
| - fl_dict = {} |
211 |
| - for fl in fixed_labels: |
212 |
| - _l = fl.split('/') |
213 |
| - |
214 |
| - if len(_l) != 3: |
215 |
| - logging.error('Invalid fixed label: %s', fl) |
216 |
| - sys.exit(1) |
217 |
| - |
218 |
| - if not (ishex(_l[0]) and (len(_l[1]) > 0 and len(_l[1]) < 16) and (len(_l[2]) > 0 and len(_l[2]) < 16)): |
219 |
| - logging.error('Invalid fixed label: %s', fl) |
220 |
| - sys.exit(1) |
221 |
| - |
222 |
| - if _l[0] not in fl_dict.keys(): |
223 |
| - fl_dict[_l[0]] = list() |
224 |
| - |
225 |
| - fl_dict[_l[0]].append({_l[1]: _l[2]}) |
226 |
| - |
227 |
| - return fl_dict |
228 |
| - |
229 | 161 | # get_supported_modes_dict() converts the list of strings to per endpoint dictionaries.
|
230 | 162 | # example with semantic tags
|
231 | 163 | # input : ['0/label1/1/"1\0x8000, 2\0x8000" 1/label2/1/"1\0x8000, 2\0x8000"']
|
@@ -345,52 +277,6 @@ def populate_factory_data(args, spake2p_params):
|
345 | 277 | if args.hw_ver_str:
|
346 | 278 | FACTORY_DATA['hw-ver-str']['value'] = args.hw_ver_str
|
347 | 279 |
|
348 |
| - if args.calendar_types: |
349 |
| - FACTORY_DATA['cal-types']['value'] = calendar_types_to_uint32(args.calendar_types) |
350 |
| - |
351 |
| - # Supported locale is stored as multiple entries, key format: "locale/<index>, example key: "locale/0" |
352 |
| - if args.locales: |
353 |
| - FACTORY_DATA['locale-sz']['value'] = len(args.locales) |
354 |
| - |
355 |
| - for i in range(len(args.locales)): |
356 |
| - _locale = { |
357 |
| - 'type': 'data', |
358 |
| - 'encoding': 'string', |
359 |
| - 'value': args.locales[i] |
360 |
| - } |
361 |
| - FACTORY_DATA.update({'locale/{:x}'.format(i): _locale}) |
362 |
| - |
363 |
| - # Each endpoint can contains the fixed lables |
364 |
| - # - fl-sz/<index> : number of fixed labels for the endpoint |
365 |
| - # - fl-k/<ep>/<index> : fixed label key for the endpoint and index |
366 |
| - # - fl-v/<ep>/<index> : fixed label value for the endpoint and index |
367 |
| - if args.fixed_labels: |
368 |
| - dict = get_fixed_label_dict(args.fixed_labels) |
369 |
| - for key in dict.keys(): |
370 |
| - _sz = { |
371 |
| - 'type': 'data', |
372 |
| - 'encoding': 'u32', |
373 |
| - 'value': len(dict[key]) |
374 |
| - } |
375 |
| - FACTORY_DATA.update({'fl-sz/{:x}'.format(int(key)): _sz}) |
376 |
| - |
377 |
| - for i in range(len(dict[key])): |
378 |
| - entry = dict[key][i] |
379 |
| - |
380 |
| - _label_key = { |
381 |
| - 'type': 'data', |
382 |
| - 'encoding': 'string', |
383 |
| - 'value': list(entry.keys())[0] |
384 |
| - } |
385 |
| - _label_value = { |
386 |
| - 'type': 'data', |
387 |
| - 'encoding': 'string', |
388 |
| - 'value': list(entry.values())[0] |
389 |
| - } |
390 |
| - |
391 |
| - FACTORY_DATA.update({'fl-k/{:x}/{:x}'.format(int(key), i): _label_key}) |
392 |
| - FACTORY_DATA.update({'fl-v/{:x}/{:x}'.format(int(key), i): _label_value}) |
393 |
| - |
394 | 280 | # SupportedModes are stored as multiple entries
|
395 | 281 | # - sm-sz/<ep> : number of supported modes for the endpoint
|
396 | 282 | # - sm-label/<ep>/<index> : supported modes label key for the endpoint and index
|
@@ -547,13 +433,6 @@ def any_base_int(s): return int(s, 0)
|
547 | 433 | help=('128-bit unique identifier for generating rotating device identifier, '
|
548 | 434 | 'provide 32-byte hex string, e.g. "1234567890abcdef1234567890abcdef"'))
|
549 | 435 |
|
550 |
| - # These will be used by DeviceInfoProvider |
551 |
| - parser.add_argument('--calendar-types', nargs='+', |
552 |
| - help=('List of supported calendar types.\nSupported Calendar Types: Buddhist, Chinese, Coptic, Ethiopian, ' |
553 |
| - 'Gregorian, Hebrew, Indian, Islamic, Japanese, Korean, Persian, Taiwanese')) |
554 |
| - parser.add_argument('--locales', nargs='+', help='List of supported locales, Language Tag as defined by BCP47, eg. en-US en-GB') |
555 |
| - parser.add_argument('--fixed-labels', nargs='+', |
556 |
| - help='List of fixed labels, eg: "0/orientation/up" "1/orientation/down" "2/orientation/down"') |
557 | 436 | parser.add_argument('--supported-modes', type=str, nargs='+', required=False,
|
558 | 437 | help='List of supported modes, eg: mode1/label1/ep/"tagValue1\\mfgCode, tagValue2\\mfgCode" mode2/label2/ep/"tagValue1\\mfgCode, tagValue2\\mfgCode" mode3/label3/ep/"tagValue1\\mfgCode, tagValue2\\mfgCode"')
|
559 | 438 |
|
|
0 commit comments