blob: bb09d0668d717ca8177a57d4d9f1eb538dfa7049 [file] [log] [blame]
#!/usr/bin/python
# pylint: disable=W0212
#
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Keys that may not be logged (in VPDs or device data).
import copy
BLACKLIST_KEYS = [
'ubind_attribute',
'gbind_attribute'
]
def FilterDict(data):
"""Redacts values of any keys in BLACKLIST_KEYS.
If data is a list or a set, filter all its elements.
If data is a dict and some keys in data match BLACKLIST_KEYS,
filter the values. For other values that is dict, set, or list,
recursively filter them.
If data is not a list nor a set nor a dict, just return data.
Example: data = {'BLACK1': '1',
'WHITE1': {'BLACK2': 2}}
FilterDict(data) = {'BLACK1': <redacted 1 chars>,
'WHITE1': {'BLACK2': <redacted type int>}
Args:
data: A data to redact.
"""
ret = copy.deepcopy(data)
if isinstance(data, list) or isinstance(data, set):
ret = [FilterDict(x) for x in data]
elif isinstance(data, dict):
for k, v in ret.iteritems():
if v is None:
continue
if str(k) in BLACKLIST_KEYS:
if isinstance(v, str) or isinstance(v, unicode):
ret[k] = '<redacted %d chars>' % len(v)
else:
ret[k] = '<redacted type %s>' % v.__class__.__name__
elif (isinstance(v, dict) or isinstance(v, list) or
isinstance(v, set)):
ret[k] = FilterDict(v)
return ret