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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962
|
#!/usr/bin/env vpython3
# Copyright 2020 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import argparse
import concurrent.futures
import copy
import datetime
import difflib
import json
import logging
import os
import platform
import re
import subprocess
import sys
import textwrap
import traceback
import xml.etree.ElementTree as ElementTree
from dataclasses import dataclass
from xml.dom import minidom
from functools import partial
from enum import Enum, auto
from google.protobuf import text_format
from pathlib import Path
from typing import NewType, TYPE_CHECKING, Any, Optional, List, Dict, Set, \
Iterable, Tuple, Union
from error import AuditorError, ErrorType
import util
from util import UniqueId, HashCode
from datetime import datetime
# Path to the directory where this script is.
SCRIPT_DIR = Path(__file__).resolve().parent
# Absolute path to chrome/src.
SRC_DIR = SCRIPT_DIR.parents[3]
# Relative path to traffic_annotation.proto within source.
TRAFFIC_ANNOTATION_PROTO_RELATIVE_PATH = Path(
"chrome/browser/privacy/traffic_annotation.proto")
logger = logging.getLogger(__name__)
# TODO(nicolaso): Move extractor.py to this folder once the C++ auditor doesn't
# depend on it anymore.
sys.path.insert(0, str(SCRIPT_DIR.parent))
import extractor
from annotation_tools import NetworkTrafficAnnotationTools
if TYPE_CHECKING:
# For the `mypy` type checker, a hardcoded import that is never used when
# actually running. The real import is in AuditorUI.import_proto()
#
# TODO(nicolaso): Add instructions for running mypy.
import traffic_annotation_pb2
from traffic_annotation_pb2 import NetworkTrafficAnnotation as \
traffic_annotation
# Reserved annotation unique IDs that should only be used in untracked files
# (e.g., test files or files that aren't compiled on this platform).
TEST_IDS = [UniqueId("test"), UniqueId("test_partial")]
MISSING_ID = UniqueId("missing")
NO_ANNOTATION_ID = UniqueId("undefined")
RESERVED_IDS = TEST_IDS + [MISSING_ID, NO_ANNOTATION_ID]
# Host platforms that support running auditor.py.
SUPPORTED_PLATFORMS = ["linux", "windows", "android", "chromeos"]
# These platforms populate the "os_list" field in annotations.xml for
# newly-added annotations (i.e., assume they're present on these platforms).
#
# ChromeOS isn't completely supported yet, so exclude it for now.
DEFAULT_OS_LIST = ["linux", "windows", "android"]
# Earliest valid milestone for added_in_milestone in annotations.xml.
MIN_MILESTONE = 62
# String that appears at the top of annotations.xml.
XML_COMMENT = """<?xml version="1.0"?>
<!--
Copyright 2017 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
Refer to README.md for content description and update process.
-->
<annotations>"""
# String that appears at the top of grouping.xml.
XML_GROUPING_COMMENT = """<!--
Copyright 2020 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
Refer to README.md for content description and update process. Use hidden="true"
to suppress a given annotation from appearing within the generated document. e.g
<traffic_annotation unique_id="foobar" hidden="true"/>
Unsorted annotations can be placed under the 'Unsorted' group. Keep
hidden="true" so that these annotations don't show up in the document.
These annotations will be changed to hidden="false" eventually
after discussions on the right group.
-->
"""
class Annotation:
"""An annotation in code, typically extracted from C++.
Attributes:
type: An Annotation.Type with the kind of annotation this is.
proto: A NetworkTrafficAnnotation protobuf message.
unique_id: The unique ID for this annotation/proto.
unique_id_hash_code: HashCode of the unique_id.
second_id: A UniqueId with the other annotation's unique id. This can be the
completing id for partial annotations, or group id for branched
completing annotations.
second_id_hash_code: HashCode of the second_id.
file: Path to the C++ file that contains the annotation definition.
line: Line number where the annotation is defined in that C++ file.
is_loaded_from_archive: True if this annotations was loaded from
annotations.xml, rather than extracted from C++ code.
archived_content_hash_code: content_hash_code loaded from annotations.xml.
archived_added_in_milestone: added_in_milestone from annotations.xml.
is_merged: True if this annotation was generated by merging 2 other
incomplete annotations.
"""
class Type(Enum):
COMPLETE = "definition"
PARTIAL = "partial"
COMPLETING = "completing"
BRANCHED_COMPLETING = "branchedcompleting"
def __init__(self):
self.type = Annotation.Type.COMPLETING
self.proto = traffic_annotation_pb2.NetworkTrafficAnnotation()
self.second_id: UniqueId = ""
# TODO(nicolaso): Remove file and line from the proto in
# traffic_annotation.proto.
self.file: Optional[Path] = None
self.line: int = 0
self.is_loaded_from_archive = False
self.archived_content_hash_code: HashCode = -1
self.archived_added_in_milestone = 0
self.is_merged = False
@property
def unique_id(self) -> UniqueId:
# Transparently expose the unique_id stored in the proto for convenience.
return self.proto.unique_id
@unique_id.setter
def unique_id(self, unique_id: UniqueId):
# Transparently expose the unique_id stored in the proto for convenience.
self.proto.unique_id = unique_id
@property
def unique_id_hash_code(self) -> HashCode:
return util.compute_hash_value(self.unique_id)
@property
def second_id_hash_code(self) -> HashCode:
return util.compute_hash_value(self.second_id)
def get_ids(self) -> List[UniqueId]:
"""Returns the ids used by this annotation (up to 2 strings)."""
if self.needs_two_ids():
return [self.unique_id, self.second_id]
else:
return [self.unique_id]
@classmethod
def load_from_archive(cls, archived: "ArchivedAnnotation") -> "Annotation":
"""Loads an annotation based on the data from annotations.xml."""
annotation = Annotation()
annotation.is_loaded_from_archive = True
annotation.type = archived.type
annotation.unique_id = archived.id
annotation.file = archived.file_path
annotation.archived_content_hash_code = archived.content_hash_code
annotation.archived_added_in_milestone = archived.added_in_milestone
if annotation.needs_two_ids():
annotation.second_id = archived.second_id
util.fill_proto_with_bogus(annotation.unique_id, annotation.proto.semantics,
archived.semantics_fields)
fields_by_name = \
traffic_annotation.TrafficSemantics.DESCRIPTOR.fields_by_name
if fields_by_name["internal"].number in archived.semantics_fields:
fake_contact = traffic_annotation.TrafficSemantics.Internal.Contact()
fake_contact.email = "[Archived]"
annotation.proto.semantics.internal.contacts.append(fake_contact)
if fields_by_name["user_data"].number in archived.semantics_fields:
annotation.proto.semantics.user_data.type.append(
traffic_annotation.TrafficSemantics.UserData.UserDataType.OTHER)
if fields_by_name["last_reviewed"].number in archived.semantics_fields:
annotation.proto.semantics.last_reviewed = "1970-01-01"
util.fill_proto_with_bogus(annotation.unique_id, annotation.proto.policy,
archived.policy_fields)
# cookies_allowed is a special field: negative values indicate NO, and
# positive values indicate YES.
CookiesAllowed = traffic_annotation.TrafficPolicy.CookiesAllowed
policy_fields = archived.policy_fields
policy_descriptor = annotation.proto.policy.DESCRIPTOR
cookies_allowed_id = (
policy_descriptor.fields_by_name["cookies_allowed"].number)
if +cookies_allowed_id in archived.policy_fields:
annotation.proto.policy.cookies_allowed = CookiesAllowed.YES
if -cookies_allowed_id in archived.policy_fields:
annotation.proto.policy.cookies_allowed = CookiesAllowed.NO
return annotation
def create_complete_annotation(self, completing_annotation: "Annotation"
) -> Tuple["Annotation", List[AuditorError]]:
"""Combines |self| partial annotation with a completing/branched_completing
annotation and returns the combined complete annotation."""
if not self.is_completable_with(completing_annotation):
raise ValueError("{} is not completable with {}".format(
self.unique_id, completing_annotation.unique_id))
# To keep the source information meta data, if completing annotation is of
# type COMPLETING, keep |self| as the main and the other as completing.
# But if completing annotation is of type BRANCHED_COMPLETING, reverse
# the order.
combination = Annotation()
if completing_annotation.type == Annotation.Type.COMPLETING:
combination = copy.copy(self)
combination.proto = traffic_annotation_pb2.NetworkTrafficAnnotation()
combination.proto.MergeFrom(self.proto)
other = completing_annotation
else:
combination = copy.copy(completing_annotation)
combination.proto = traffic_annotation_pb2.NetworkTrafficAnnotation()
combination.proto.MergeFrom(completing_annotation.proto)
other = self
combination.is_merged = True
combination.type = Annotation.Type.COMPLETE
combination.second_id = UniqueId("")
# Update comment.
util.merge_string_field(other.proto, combination.proto, "comments")
assert self.file is not None
assert completing_annotation.file is not None
combination.proto.comments += (
"This annotation is a merge of the following two annotations:\n"
"'{}' in '{}:{}' and '{}' in '{}:{}'.".format(
self.unique_id, self.file.as_posix(), self.line,
completing_annotation.unique_id,
completing_annotation.file.as_posix(), completing_annotation.line))
# Copy TrafficSemantics.
semantics_string_fields = [
"sender", "description", "trigger", "data", "destination_other"
]
for f in semantics_string_fields:
util.merge_string_field(other.proto.semantics,
combination.proto.semantics, f)
# Merge 'destination' field.
Destination = traffic_annotation.TrafficSemantics.Destination
if combination.proto.semantics.destination == Destination.UNSPECIFIED:
combination.proto.semantics.destination = (
other.proto.semantics.destination)
elif (other.proto.semantics.destination != Destination.UNSPECIFIED
and other.proto.semantics.destination !=
combination.proto.semantics.destination):
return combination, [
AuditorError(
ErrorType.MERGE_FAILED,
"Annotations contain different semantics::destination values",
None, 0, self.unique_id, completing_annotation.unique_id)
]
# Merge 'internal::contacts' and 'user_data' fields.
combination.proto.semantics.internal.contacts.extend(
other.proto.semantics.internal.contacts)
combination.proto.semantics.user_data.type.extend(
other.proto.semantics.user_data.type)
# Merge 'last_reviewed' field.
if (self.proto.semantics.last_reviewed
and other.proto.semantics.last_reviewed):
return combination, [
AuditorError(
ErrorType.MERGE_FAILED,
"Both annotations contain semantics::last_reviewed values", None,
0, self.unique_id, completing_annotation.unique_id)
]
elif other.proto.semantics.last_reviewed:
combination.proto.semantics.last_reviewed = (
other.proto.semantics.last_reviewed)
# Copy TrafficPolicy.
policy_string_fields = [
"cookies_store", "setting", "policy_exception_justification"
]
for f in policy_string_fields:
util.merge_string_field(other.proto.policy, combination.proto.policy, f)
combination.proto.policy.cookies_allowed = max(
combination.proto.policy.cookies_allowed,
other.proto.policy.cookies_allowed)
combination.proto.policy.chrome_policy.extend(
other.proto.policy.chrome_policy)
combination.proto.policy.chrome_device_policy.extend(
other.proto.policy.chrome_device_policy)
return combination, []
def needs_two_ids(self) -> bool:
"""Tells if the annotation requires two ids. All annotations have a unique
id, but partial annotations also require a completing id, and branched
completing annotations require a group id."""
return (self.type in [
Annotation.Type.PARTIAL, Annotation.Type.BRANCHED_COMPLETING
])
def is_completable_with(self, other) -> bool:
"""Checks to see if this annotation can be completed with the |other|
annotation, based on their unique ids, types, and extra ids. |self| should
be of partial type and the |other| either COMPLETING or BRANCHED_COMPLETING
type."""
if self.type != Annotation.Type.PARTIAL or not self.second_id:
return False
if other.type == Annotation.Type.COMPLETING:
return self.second_id == other.unique_id
if other.type == Annotation.Type.BRANCHED_COMPLETING:
return self.second_id == other.second_id
return False
def is_field_populated(self, field_name: str) -> bool:
"""Checks if a field has a value. If field is internal or user_data
then checks that the list of fields is not empty."""
attr = getattr(self.proto.semantics, field_name)
if not attr:
return False
if field_name in ['internal', 'user_data']:
return bool(attr.ListFields())
return True
def get_semantics_field_numbers(self) -> List[int]:
"""Returns the proto field numbers of TrafficSemantics fields that are
included in this annotation."""
return [
f.number for f in traffic_annotation.TrafficSemantics.DESCRIPTOR.fields
if self.is_field_populated(f.name)
]
def get_policy_field_numbers(self) -> List[int]:
"""Returns the proto field numbers of TrafficPolicy fields that are
included in this annotation."""
field_numbers = [
f.number for f in traffic_annotation.TrafficPolicy.DESCRIPTOR.fields
if getattr(self.proto.policy, f.name)
]
# CookiesAllowed.NO is indicated with a negative value.
CookiesAllowed = traffic_annotation.TrafficPolicy.CookiesAllowed
policy_descriptor = self.proto.policy.DESCRIPTOR
cookies_allowed_id = (
policy_descriptor.fields_by_name["cookies_allowed"].number)
if self.proto.policy.cookies_allowed == CookiesAllowed.NO:
field_numbers.remove(+cookies_allowed_id)
field_numbers.insert(0, -cookies_allowed_id)
return field_numbers
def get_content_hash_code(self) -> HashCode:
"""Computes a hashcode for the annotation content. Source field is not used
in this computation, as we don't need sensitivity to change in source
location (file path + line number)."""
if self.is_loaded_from_archive:
return self.archived_content_hash_code
source_free_proto = copy.deepcopy(self.proto)
source_free_proto.ClearField("source")
source_free_proto = text_format.MessageToString(source_free_proto,
as_utf8=False)
return util.compute_hash_value(source_free_proto)
def deserialize(self, serialized_annotation: extractor.Annotation
) -> List[AuditorError]:
"""Deserializes an instance from extractor.Annotation."""
file_path = Path(serialized_annotation.file_path)
if file_path.is_absolute():
file_path = file_path.relative_to(SRC_DIR)
line_number = serialized_annotation.line_number
self.file = file_path
self.line = line_number
if serialized_annotation.type_name == extractor.AnnotationType.MUTABLE:
return [AuditorError(ErrorType.MUTABLE_TAG, "", file_path, line_number)]
self.type = Annotation.Type(serialized_annotation.type_name.value.lower())
self.unique_id = serialized_annotation.unique_id
self.second_id = serialized_annotation.extra_id
# Check for reserved IDs first, before trying to parse the Proto.
if self.unique_id in TEST_IDS:
return [
AuditorError(ErrorType.TEST_ANNOTATION, "", file_path, line_number)
]
if self.unique_id == MISSING_ID:
return [
AuditorError(ErrorType.MISSING_TAG_USED, "", file_path, line_number)
]
if self.unique_id == NO_ANNOTATION_ID:
return [AuditorError(ErrorType.NO_ANNOTATION, "", file_path, line_number)]
try:
text_format.Parse(serialized_annotation.text, self.proto)
except Exception as e:
logger.error(
"Error encountered by annotation {}. Error details : {}".format(
serialized_annotation.unique_id, str(e)))
return [AuditorError(ErrorType.SYNTAX, str(e), file_path, line_number)]
return []
def check_complete(self) -> List[AuditorError]:
"""Checks if an annotation has all required fields."""
CookiesAllowed = traffic_annotation.TrafficPolicy.CookiesAllowed
unspecifieds = []
# Check semantic fields.
semantics_fields = [
"sender", "description", "trigger", "data", "destination"
]
for field in semantics_fields:
if not getattr(self.proto.semantics, field):
unspecifieds.append(field)
# Check policy fields.
policy = self.proto.policy
# cookies_allowed must be specified.
if policy.cookies_allowed == CookiesAllowed.UNSPECIFIED:
unspecifieds.append("cookies_allowed")
# cookies_store is only needed if CookiesAllowed.YES.
if (not policy.cookies_store
and policy.cookies_allowed == CookiesAllowed.YES):
unspecifieds.append("cookies_store")
# If either a policy or a 'policy_exception_justification' are
# available, ignore not having the other one.
if (not self.has_policy() and not policy.policy_exception_justification):
unspecifieds.append("chrome_policy")
unspecifieds.append("chrome_device_policy")
unspecifieds.append("policy_exception_justification")
if unspecifieds:
error_text = ", ".join(unspecifieds)
return [
AuditorError(ErrorType.INCOMPLETE_ANNOTATION, error_text, self.file,
self.line)
]
else:
return []
def check_consistent(self) -> List[AuditorError]:
"""Checks if annotation fields are consistent."""
CookiesAllowed = traffic_annotation.TrafficPolicy.CookiesAllowed
policy = self.proto.policy
if policy.cookies_allowed == CookiesAllowed.NO and policy.cookies_store:
return [
AuditorError(
ErrorType.INCONSISTENT_ANNOTATION,
"Cookies store is specified while cookies are not allowed.",
self.file, self.line)
]
if self.has_policy() and policy.policy_exception_justification:
return [
AuditorError(
ErrorType.INCONSISTENT_ANNOTATION,
"Both chrome policies and policy exception justification are "
"present.", self.file, self.line)
]
return []
def check_new_fields(self, is_safe_listed: bool) -> List[AuditorError]:
"""Checks empty or invalid value in internal::contacts::email,
user_data::type and last_reviewed fields in annotation."""
errors = []
missing_fields = []
semantics = self.proto.semantics
missing_last_reviewed_field = not semantics.last_reviewed
if missing_last_reviewed_field:
missing_fields.append("last_reviewed")
missing_contacts = self._check_contacts()
if missing_contacts:
missing_fields.append(missing_contacts)
missing_user_data = not semantics.user_data.type
if missing_user_data:
missing_fields.append("user_data::type")
else:
errors.extend(self._validate_user_data_type_values())
if missing_fields:
error_txt = ', '.join(missing_fields)
errors.append(
AuditorError(ErrorType.MISSING_NEW_FIELDS,
"missing fields: {}".format(error_txt), self.file,
self.line))
# If file is not in safe list then return all errors encountered for
# last_reviewed, contacts and user_data.
if not is_safe_listed:
return errors
# Any files should be removed from safe_list list if no error encountered.
if not errors:
return [
AuditorError(ErrorType.REMOVE_FROM_SAFE_LIST,
"Annotation tagged with MISSING_NEW_FIELDS is complete",
self.file, self.line)
]
# File can only be in safe_list if all 3 fields are missing. Partially
# populating fields is not allowed.
if missing_contacts and missing_user_data and missing_last_reviewed_field:
return []
# Return error for file in safe_list with partially populated fields.
errors.append(
AuditorError(
ErrorType.MISSING_NEW_FIELDS,
"Cannot partially populate fields and add file in safe_list.txt",
self.file, self.line))
return errors
def check_last_reviewed_date_format(self) -> List[AuditorError]:
"""If last_reviewed date field format does not match YYYY-mm-dd, then
return INVALID_DATE_FORMAT error."""
date_str = self.proto.semantics.last_reviewed
try:
if date_str:
datetime.strptime(date_str, '%Y-%m-%d')
except ValueError:
return [
AuditorError(ErrorType.INVALID_DATE_FORMAT, "Should be YYYY-mm-dd",
self.file, self.line)
]
return []
def has_policy(self) -> bool:
"""Return true if any policy field is set"""
return (self.proto.policy.chrome_policy
or self.proto.policy.chrome_device_policy)
def _check_contacts(self) -> Optional[str]:
"""Checks presence of contacts fields in the annotation. All available
contacts fields should contain email"""
all_contacts = self.proto.semantics.internal.contacts
if not all_contacts:
return "internal::contacts"
if any(not contact.email and not contact.owners
for contact in all_contacts):
return "internal::contacts::email or internal::contacts::owners"
return None
def _validate_user_data_type_values(self) -> List[AuditorError]:
"""Checks if any of semantics::user_data:type has an UNSPECIFIED value."""
semantics = self.proto.semantics
if semantics.UserData.UserDataType.UNSPECIFIED in semantics.user_data.type:
return [
AuditorError(ErrorType.INVALID_USER_DATA_TYPE, "UNSPECIFIED",
self.file, self.line)
]
return []
class ExceptionType(Enum):
"""Valid exception types in safe_list.txt."""
# Ignore all errors (doesn't check the files at all).
ALL = "all"
# Ignore missing annotations.
MISSING = "missing"
# Ignore usages of annotation for tests.
TEST_ANNOTATION = "test_annotation"
# Ignore CreateMutableNetworkTrafficAnnotationTag().
MUTABLE_TAG = "mutable_tag"
# Ignore usage of newly added fields (contacts, user_data, last_reviewed)
# in annotation.
MISSING_NEW_FIELDS = "missing_new_fields"
@classmethod
def from_error_type(cls, error_type: ErrorType):
if error_type == ErrorType.MISSING_TAG_USED:
return ExceptionType.MISSING
if error_type == ErrorType.TEST_ANNOTATION:
return ExceptionType.TEST_ANNOTATION
if error_type == ErrorType.MUTABLE_TAG:
return ExceptionType.MUTABLE_TAG
return None
# Rules from safe_list.txt, extracted and pre-processed.
SafeList = Dict[ExceptionType, List[re.Pattern]]
class FileFilter:
"""Provides the list of files to scan via extractor.py.
Attributes:
git_files: The list of files extracted via `git ls-files` (filtered).
git_file_for_testing: If present, use this .txt file to mock the output of
`git ls-files`."""
def __init__(self, accepted_suffixes: List[str]):
self.git_files: List[Path] = []
self.git_file_for_testing: Optional[Path] = None
self.accepted_suffixes = accepted_suffixes
def get_source_files(self, safe_list: SafeList, prefix: str) -> List[Path]:
"""Returns a filtered list of files in the prefix directory.
Relevant files:
- Are tracked by git.
- Are in a supported programming language (see
_is_supported_source_file()).
- Do not match any of the regexen in the ALL category of safe_list.
- Are inside the directory_name directory."""
file_paths = []
if not self.git_files:
self.get_files_from_git()
for file_path in self.git_files:
posix_path = file_path.as_posix()
if not posix_path.startswith(prefix):
continue
if (ExceptionType.ALL in safe_list
and any(r.match(posix_path) for r in safe_list[ExceptionType.ALL])):
continue
file_paths.append(file_path)
return file_paths
def _is_supported_source_file(self, file_path: Path) -> bool:
"""Returns true if file_path looks like a non-test C++/Obj-C++ file."""
# Check file extension.
if file_path.suffix not in self.accepted_suffixes:
return False
# Ignore test files to speed up the tests. They would be only tested when
# filters are disabled.
if re.search(r'test$', file_path.stem, re.IGNORECASE):
return False
return True
def get_files_from_git(self) -> None:
"""Populates self.git_files with the output of `git ls-files`.
Only keeps supported source file (per _is_supported_source_file())."""
# Change directory to source path to access git and check files.
original_cwd = os.getcwd()
os.chdir(SRC_DIR)
if self.git_file_for_testing is not None:
# Get list of files from git_list.txt (or similar).
lines = self.git_file_for_testing.read_text(encoding="utf-8").splitlines()
else:
# Get list of files from git.
if platform.system() == "Windows":
command_line = ["git.bat", "ls-files"]
else:
command_line = ["git", "ls-files"]
process = subprocess.run(command_line, capture_output=True)
lines = process.stdout.decode("utf-8").split("\n")
self.git_files = [
Path(f) for f in lines if f and self._is_supported_source_file(Path(f))
]
# Now that we're done, undo the chdir().
os.chdir(original_cwd)
class IdChecker:
"""Performs tests to ensure that annotations have correct ids.
Attributes:
reserved_ids: List of IDs that shouldn't be used in code (e.g. test,
missing, no_traffic_annotation_yet ids)."""
def __init__(self, reserved_ids: List[UniqueId]):
self.reserved_ids = reserved_ids
self._annotations: Set[Annotation] = set()
def check_ids(self, annotations: List[Annotation]) -> List[AuditorError]:
"""Checks annotations for UniqueId-related errors and returns them."""
self._annotations = set(annotations)
errors = []
errors.extend(self._check_ids_format())
errors.extend(self._check_for_second_ids())
errors.extend(
self._check_for_invalid_values(self.reserved_ids,
ErrorType.RESERVED_ID_HASH_CODE))
errors.extend(self._check_for_hash_collisions())
errors.extend(self._check_for_invalid_repeated_ids())
return errors
def _check_ids_format(self) -> List[AuditorError]:
"""Checks if ids only include alphanumeric chars and underscores."""
errors = []
for annotation in self._annotations:
for id in annotation.get_ids():
if not re.match(r"^[0-9a-zA-Z_]*$", id):
errors.append(
AuditorError(ErrorType.ID_INVALID_CHARACTER, id, annotation.file,
annotation.line))
return errors
def _check_for_second_ids(self) -> List[AuditorError]:
"""Checks if annotation that needs 2 ids, have 2 different ids."""
errors = []
for annotation in self._annotations:
if (annotation.needs_two_ids()
and (not annotation.second_id
or annotation.second_id == annotation.unique_id)):
errors.append(
AuditorError(ErrorType.MISSING_SECOND_ID, "", annotation.file,
annotation.line))
return errors
def _check_for_invalid_values(self, invalid_ids: List[UniqueId],
error_type: ErrorType) -> List[AuditorError]:
"""Checks that invalid_ids are not used in annotations.
If found, returns an error with error_type."""
errors = []
for annotation in self._annotations:
for id in annotation.get_ids():
if id in invalid_ids:
errors.append(
AuditorError(error_type, id, annotation.file, annotation.line))
return errors
def _check_for_hash_collisions(self) -> List[AuditorError]:
"""Checks that there are no ids with colliding hash values."""
errors = []
collisions: Dict[HashCode, UniqueId] = {}
for annotation in self._annotations:
for id in annotation.get_ids():
hash_code = util.compute_hash_value(id)
if hash_code not in collisions:
collisions[hash_code] = id
elif id != collisions[hash_code]:
errors.append(
AuditorError(ErrorType.HASH_CODE_COLLISION, id, None, 0,
collisions[hash_code]))
return errors
def _check_for_invalid_repeated_ids(self) -> List[AuditorError]:
"""Check that there are no invalid repeated ids."""
errors = []
first_ids: Dict[UniqueId, Annotation] = {}
second_ids: Dict[UniqueId, Annotation] = {}
# Check if first ids are unique.
for annotation in self._annotations:
if annotation.unique_id not in first_ids:
first_ids[annotation.unique_id] = annotation
else:
errors.append(
IdChecker._create_repeated_id_error(
annotation.unique_id, annotation,
first_ids[annotation.unique_id]))
# If a second id is equal to a first id, the second id should be PARTIAL and
# the first id should be COMPLETING.
for annotation in self._annotations:
if annotation.needs_two_ids() and annotation.second_id in first_ids:
partial = annotation
completing: Annotation = first_ids[partial.second_id]
if (completing != partial
and (partial.type != Annotation.Type.PARTIAL
or completing.type != Annotation.Type.COMPLETING)):
errors.append(
IdChecker._create_repeated_id_error(partial.second_id, partial,
completing))
# If two second ids are equal, they should be either PARTIAL or
# BRANCHED_COMPLETING.
for annotation in self._annotations:
if not annotation.needs_two_ids():
continue
if annotation.second_id not in second_ids:
second_ids[annotation.second_id] = annotation
else:
other = second_ids[annotation.second_id]
allowed_types = [
Annotation.Type.PARTIAL, Annotation.Type.BRANCHED_COMPLETING
]
if (annotation.type not in allowed_types
or other.type not in allowed_types):
errors.append(
self._create_repeated_id_error(annotation.second_id, annotation,
other))
return errors
@classmethod
def _create_repeated_id_error(cls, common_id: UniqueId,
annotation1: Annotation,
annotation2: Annotation) -> AuditorError:
"""Constructs and returns a REPEATED_ID error."""
return AuditorError(
ErrorType.REPEATED_ID,
"{} in '{}:{}'".format(common_id, annotation1.file, annotation1.line),
None, 0, "'{}:{}'".format(annotation2.file, annotation2.line))
class ArchivedAnnotation:
"""A record type for annotations.xml entries.
All values are exactly the same as those stored in annotations.xml, except for
some type conversions and default values."""
# Make sure the names and order are exactly the same as the attributes in
# the XML. This is used to serialize/deserialize the XML.
FIELDS = [
"id", "added_in_milestone", "type", "second_id", "reserved",
"content_hash_code", "os_list", "semantics_fields", "policy_fields",
"file_path"
]
# Throw an error in Exporter if any of these fields is missing.
REQUIRED_FIELDS = ["id", "file_path", "added_in_milestone"]
def __init__(self,
id: UniqueId,
type: Annotation.Type,
file_path: Union[Path, str, None],
added_in_milestone: int,
second_id: UniqueId = UniqueId(""),
reserved: bool = False,
content_hash_code: HashCode = HashCode(-1),
os_list: Optional[List[str]] = None,
semantics_fields: Optional[List[int]] = None,
policy_fields: Optional[List[int]] = None):
self.id = id
self.type = type
self.file_path = Path(file_path) if file_path else None
self.added_in_milestone = added_in_milestone
self.second_id = second_id
self.reserved = reserved
self.content_hash_code = content_hash_code
if os_list is None:
os_list = []
self.os_list = os_list
if semantics_fields is None:
semantics_fields = []
self.semantics_fields = semantics_fields
if policy_fields is None:
policy_fields = []
self.policy_fields = policy_fields
@property
def hash_code(self) -> HashCode:
return util.compute_hash_value(self.id)
def __str__(self):
return "ArchivedAnnotation({})".format(",".join(
"{}={}".format(f, repr(getattr(self, f)))
for f in ArchivedAnnotation.FIELDS))
@dataclass
class Sender:
name: str
annotations: List[UniqueId]
@dataclass
class Group:
name: str
hidden: bool
senders: List[Sender]
class Exporter:
"""Handles loading and saving ArchivedAnnotations in annotations.xml."""
SUMMARY_DIR = SCRIPT_DIR.parent.parent / "summary"
ANNOTATIONS_XML_PATH = SUMMARY_DIR / "annotations.xml"
GROUPING_XML_PATH = SUMMARY_DIR / "grouping.xml"
def __init__(self, current_platform: str):
self.archive: Dict[UniqueId, ArchivedAnnotation] = {}
self.grouping_archive: List[Group] = []
self.grouping_id_sender: Dict[UniqueId, Sender] = {}
assert current_platform in SUPPORTED_PLATFORMS
self._current_platform = current_platform
contents = (SRC_DIR / "chrome" / "VERSION").read_text(encoding="utf-8")
m = re.search(r'MAJOR=(\d+)', contents)
if not m:
raise ValueError(
"Unable to extract MAJOR=... version from chrome/VERSION")
self._current_milestone = int(m.group(1))
def load_annotations_xml(self) -> None:
"""Loads annotations from annotations.xml into self.archive using
ArchivedAnnotation objects."""
logger.info("Parsing {}.".format(
Exporter.ANNOTATIONS_XML_PATH.relative_to(SRC_DIR)))
self.archive = {}
tree = ElementTree.parse(Exporter.ANNOTATIONS_XML_PATH)
root = tree.getroot()
for item in root.iter("item"):
assert item.tag == "item"
# This dictionary will be passed to ArchivedAnnotation's constructor as
# kwargs.
kwargs: Dict[str, Any] = dict(item.attrib)
self.required_field_check(ArchivedAnnotation.REQUIRED_FIELDS, kwargs,
item)
self.compare_field_check(ArchivedAnnotation.FIELDS, kwargs, item)
# Perform some type conversions.
kwargs["added_in_milestone"] = int(kwargs["added_in_milestone"])
kwargs["type"] = Annotation.Type(kwargs.get("type", "definition"))
if "content_hash_code" in kwargs:
kwargs["content_hash_code"] = int(kwargs["content_hash_code"], 16)
if "os_list" in kwargs:
kwargs["os_list"] = kwargs["os_list"].split(",")
for field in ["semantics_fields", "policy_fields"]:
if field in kwargs:
kwargs[field] = [int(f) for f in kwargs[field].split(",")]
if "reserved" in kwargs:
kwargs["reserved"] = True
# Create the annotation by passing kwargs.
annotation = ArchivedAnnotation(**kwargs)
self.archive[annotation.id] = annotation
def load_grouping_xml(self, grouping_path: str) -> None:
"""Loads grouping from grouping.xml into self.grouping_archive."""
logger.info("Parsing {}.".format(
grouping_path.relative_to(SRC_DIR)))
self.grouping_archive = []
GROUPING_FIELDS = ["id", "sender_name", "group_name"]
GROUPING_REQUIRED_FIELDS = ["id"]
tree = ElementTree.parse(grouping_path)
root = tree.getroot()
for group_item in root.iter("group"):
assert group_item.tag == "group"
group_name = str(group_item.attrib["name"])
group = Group(group_name, True, [])
self.grouping_archive.append(group)
for sender_item in group_item.iter("sender"):
assert sender_item.tag == "sender"
sender_name = str(sender_item.attrib["name"])
sender = Sender(sender_name, [])
group.senders.append(sender)
for traffic_annotation_item in sender_item.iter("annotation"):
assert traffic_annotation_item.tag == "annotation"
# Get unique id, sender name and group name from
# kwargs.
kwargs: Dict[str, Any] = dict(traffic_annotation_item.attrib)
self.required_field_check(GROUPING_REQUIRED_FIELDS, kwargs,
traffic_annotation_item)
unique_id = str(kwargs["id"])
kwargs["sender_name"] = sender_name
kwargs["group_name"] = group_name
self.compare_field_check(GROUPING_FIELDS, kwargs,
traffic_annotation_item)
sender.annotations.append(unique_id)
self.grouping_id_sender[unique_id] = sender
def required_field_check(self, REQUIRED_FIELDS: List[str],
kwargs: Dict[str, any],
item: Any):
# Check that all required attribs are present.
for field in REQUIRED_FIELDS:
if field not in kwargs:
raise ValueError(
"Missing attribute '{}' in xml: {}".format(
field, ElementTree.tostring(item, "unicode")))
def compare_field_check(self, FIELDS: List[str],
kwargs: Dict[str, any],
item: Any):
# Check for unknown attribs. and raise the error message to more readable.
unknown_fields = kwargs.keys() - set(FIELDS)
for field in unknown_fields:
raise ValueError("Invalid attribute '{}' in xml: {}"
.format(field, ElementTree.tostring(item, "unicode")))
def update_annotations(self, annotations: List[Annotation],
reserved_ids: List[UniqueId]) -> List[AuditorError]:
"""Updates self.archive with the extracted annotations and reserved ids."""
assert self.archive
current_platform_hashcodes: Set[HashCode] = set()
# Don't include android in the os_list for new annotations, unless we're
# touching annotations_android.xml.
default_os_list = DEFAULT_OS_LIST
if self._current_platform not in default_os_list:
default_os_list = [self._current_platform]
for annotation in annotations:
# annotations.xml only stores raw annotations.
if annotation.is_merged:
continue
# If annotation unique id is already in the imported list, check if other
# fields have changed.
if annotation.unique_id in self.archive:
archived = self.archive[annotation.unique_id]
archived.second_id = annotation.second_id
archived.file_path = annotation.file
if not self.matches_current_platform(archived):
archived.os_list.append(self._current_platform)
# content_hash_code includes the proto, so this detects most changes.
archived.content_hash_code = annotation.get_content_hash_code()
if annotation.type != Annotation.Type.COMPLETE:
archived.semantics_fields = annotation.get_semantics_field_numbers()
archived.policy_fields = annotation.get_policy_field_numbers()
else:
# If annotation is new, add it and assume it is on all platforms. Tests
# running on other platforms will request updating this if required.
new_item = ArchivedAnnotation(
type=annotation.type,
id=annotation.unique_id,
content_hash_code=annotation.get_content_hash_code(),
os_list=default_os_list,
added_in_milestone=self._current_milestone,
file_path=annotation.file)
if annotation.needs_two_ids():
new_item.second_id = annotation.second_id
if annotation.type != Annotation.Type.COMPLETE:
new_item.semantics_fields = annotation.get_semantics_field_numbers()
new_item.policy_fields = annotation.get_policy_field_numbers()
self.archive[annotation.unique_id] = new_item
current_platform_hashcodes.add(annotation.unique_id_hash_code)
# If a non-reserved annotation is removed from the current platform, update
# it.
for unique_id, archived in self.archive.items():
if (self.matches_current_platform(archived)
and archived.content_hash_code != -1
and archived.hash_code not in current_platform_hashcodes):
archived.os_list.remove(self._current_platform)
# If there is a new reserved id, add it.
for reserved_id in reserved_ids:
if reserved_id not in self.archive:
self.archive[reserved_id] = ArchivedAnnotation(
id=reserved_id,
type=Annotation.Type.COMPLETE,
added_in_milestone=self._current_milestone,
reserved=True,
os_list=default_os_list,
file_path="")
# If there are annotations that are not used on any OS, remove them from
# annotations.xml.
annotations_to_remove = [
unique_id for unique_id, archived in self.archive.items()
if not archived.os_list
]
for unique_id in annotations_to_remove:
del self.archive[unique_id]
return self.check_archived_annotations()
def update_grouping(self,
annotations: List[Annotation],
reserved_ids: List[UniqueId]) -> List[AuditorError]:
"""Updates self.grouping_archive with the extracted annotations."""
assert self.grouping_archive
accepted_types = [Annotation.Type.PARTIAL, Annotation.Type.COMPLETE]
errors = []
recently_added_sender = None
for group in self.grouping_archive:
if group.name != "Unsorted":
continue
for sender in group.senders:
if sender.name == "Recently Added":
recently_added_sender = sender
assert recently_added_sender is not None
for annotation in annotations:
# annotations.xml only stores raw annotations.
if annotation.is_merged:
continue
# If annotation is new, add it to recently added sender.
if annotation.unique_id not in self.grouping_id_sender and \
annotation.type in accepted_types and \
annotation.unique_id not in reserved_ids:
recently_added_sender.annotations.append(annotation.unique_id)
self.grouping_id_sender[annotation.unique_id] = recently_added_sender
# If there are annotations that are not used on any OS, remove them from
# grouping.xml.
annotations_to_remove = [
unique_id for unique_id, archived in self.archive.items()
if not archived.os_list
]
# If there are annotations that are removed from annotations.xml, we will
# remove from grouping.xml as well.
for unique_id in self.grouping_id_sender:
if unique_id not in self.archive.keys():
annotations_to_remove.append(unique_id)
for unique_id in annotations_to_remove:
sender = self.grouping_id_sender[unique_id]
sender.annotations.remove(unique_id)
return errors
def matches_current_platform(self, archived: ArchivedAnnotation) -> bool:
return self._current_platform in archived.os_list
def _generate_serialized_xml(self) -> str:
"""Generates XML for current report items, for saving to annotations.xml."""
lines = [XML_COMMENT]
# Preserve this order, so we always generate the exact same XML string
# given the same ArchivedAnnotation object.
for unique_id, archived in self.archive.items():
node = ElementTree.fromstring('<item/>')
# Perform the same type conversions as load_annotations_xml(), but in
# reverse. FIELDS are already in the right order for this <item/> to
# serialize deterministically.
for field in ArchivedAnnotation.FIELDS:
value = getattr(archived, field)
if value is None and field == "file_path":
# Always include file_path="", even if it's empty.
node.attrib[field] = ""
elif isinstance(value, Path):
# For file_path="", convert backslashes to slashes.
node.attrib[field] = value.as_posix()
elif isinstance(value, str):
# Remove empty strings.
if value:
node.attrib[field] = value
elif isinstance(value, bool):
# Boolean is "1" if True, or absent if False.
if value:
node.attrib[field] = "1"
elif isinstance(value, int):
# Filter out integers that are <= 0.
# "content_hash_code" is hexadecimal.
format_string = "{:08x}" if field == "content_hash_code" else "{}"
if value > 0:
node.attrib[field] = format_string.format(value)
elif isinstance(value, Annotation.Type):
# Use the string value for the Annotation.Type enum. Absent if
# 'complete', since that's the vast majority of annotations and it
# would get redundant.
if value != Annotation.Type.COMPLETE:
node.attrib[field] = value.value
elif isinstance(value, list):
# Lists are comma-separated, and absent if empty.
#
# N.B. this does not work well for deeper structures. Only 1 level
# of lists should be used.
if value:
node.attrib[field] = ",".join(map(str, value))
else:
raise NotImplementedError(
"Don't know how to serialize value to XML: {} ({})".format(
field, value))
lines.append(" {}".format(ElementTree.tostring(node, "unicode")))
lines.append("</annotations>")
lines.append("")
return "\n".join(lines)
def _generate_serialized_grouping_xml(self) -> str:
"""Generates XML for current report items, for saving to grouping.xml."""
lines = [XML_GROUPING_COMMENT]
# Preserve this order, we need to map each group with a list of
# sender names. Each sender name with a list of unique_ids.
# Each group, sender, unique_id has its own node to enclose later after we
# put the field and value from self.grouping_archive inside their node body.
root_node = ElementTree.Element("groups")
for group in self.grouping_archive:
group_node = ElementTree.SubElement(root_node, "group")
group_node.attrib["name"] = group.name
if group.hidden:
group_node.attrib["hidden"] = "true"
for sender in group.senders:
sender_node = ElementTree.SubElement(group_node, "sender")
sender_node.attrib["name"] = sender.name
for annotation in sender.annotations:
annotation_node = ElementTree.SubElement(sender_node, "annotation")
annotation_node.attrib["id"] = annotation
# Get rid of the header.
root_without_header = minidom.parseString(ElementTree.tostring(root_node)) \
.getElementsByTagName("groups")[0]
groups = root_without_header.toprettyxml(indent=" ")
lines.append(groups)
return "\n".join(lines)
def check_archived_annotations(self) -> List[AuditorError]:
"""Runs tests on the contents of self.archive."""
assert self.archive
errors = []
# Check for annotation hash code duplications.
used_codes: dict[HashCode, UniqueId] = {}
for unique_id, archived in self.archive.items():
if archived.hash_code in used_codes:
errors.append(
AuditorError(ErrorType.HASH_CODE_COLLISION, str(archived.hash_code),
None, 0, unique_id))
else:
used_codes[archived.hash_code] = unique_id
# Check that listed OSes are valid.
for unique_id, archived in self.archive.items():
for os in archived.os_list:
if os not in SUPPORTED_PLATFORMS:
errors.append(
AuditorError(ErrorType.INVALID_OS, "",
Exporter.ANNOTATIONS_XML_PATH, 0, os, unique_id))
# Check for consistency of "added_in_milestone" attribute.
for unique_id, archived in self.archive.items():
if archived.added_in_milestone < MIN_MILESTONE:
errors.append(
AuditorError(ErrorType.INVALID_ADDED_IN, "",
Exporter.ANNOTATIONS_XML_PATH, 0,
str(archived.added_in_milestone), unique_id))
return errors
def save_annotations_xml(self) -> None:
"""Saves self._archive into annotations.xml."""
logger.info("Saving annotations to {}.".format(
Exporter.ANNOTATIONS_XML_PATH.relative_to(SRC_DIR)))
xml_str = self._generate_serialized_xml()
Exporter.ANNOTATIONS_XML_PATH.write_text(xml_str, encoding="utf-8")
def save_grouping_xml(self) -> None:
"""Saves self._archive into annotations.xml."""
logger.info("Saving grouping to {}.".format(
Exporter.GROUPING_XML_PATH.relative_to(SRC_DIR)))
xml_str = self._generate_serialized_grouping_xml()
Exporter.GROUPING_XML_PATH.write_text(xml_str, encoding="utf-8")
def get_other_platforms_annotation_ids(self) -> List[UniqueId]:
"""Returns a list of annotations that are not defined on this platform."""
assert self.archive
return [
a.id for a in self.archive.values()
if self._current_platform not in a.os_list
]
@classmethod
def _get_xml_items(cls, xml: str) -> Dict[UniqueId, str]:
"""Returns the list of <item id="..."/> lines in the XML, keyed by their
id attribute."""
items: Dict[UniqueId, str] = {}
for line in xml.split("\n"):
id = extract_annotation_id(line)
if id is not None:
items[id] = line
return items
@classmethod
def _get_xml_differences(cls, old_xml: str, new_xml: str) -> str:
"""Returns the required updates to convert one XML file to another."""
return ''.join(
difflib.unified_diff(old_xml.splitlines(keepends=True),
new_xml.splitlines(keepends=True)))
def get_required_updates(self) -> str:
"""Returns the required updates to go from one state to another in
annotations.xml"""
logger.info("Computing required updates for {}.".format(
Exporter.ANNOTATIONS_XML_PATH.relative_to(SRC_DIR)))
old_xml = Exporter.ANNOTATIONS_XML_PATH.read_text(encoding="utf-8")
new_xml = self._generate_serialized_xml()
return Exporter._get_xml_differences(old_xml, new_xml)
def get_required_updates_grouping(self) -> str:
"""Returns the required updates to go from one state to another in
grouping.xml."""
logger.info("Computing required updates for {}.".format(
Exporter.GROUPING_XML_PATH.relative_to(SRC_DIR)))
old_xml = Exporter.GROUPING_XML_PATH.read_text(encoding="utf-8")
new_xml = self._generate_serialized_grouping_xml()
return Exporter._get_xml_differences(old_xml, new_xml)
class Auditor:
"""Extracts and validates annotations from the codebase."""
SAFE_LIST_PATH = SRC_DIR / "tools" / "traffic_annotation" / "safe_list.txt"
def __init__(self, current_platform: str, no_filtering: bool = False):
if current_platform not in SUPPORTED_PLATFORMS:
raise ValueError("Unsupported platform {}".format(current_platform))
self.no_filtering = no_filtering
self.extracted_annotations: List[Annotation] = []
self.partial_annotations: List[Annotation] = []
self.completing_annotations: List[Annotation] = []
self._safe_list: SafeList = {}
self.exporter = Exporter(current_platform)
accepted_suffixes = [".cc", ".mm"]
if current_platform == "android":
accepted_suffixes.append(".java")
self.file_filter = FileFilter(accepted_suffixes)
def _get_safe_list(self) -> SafeList:
"""Lazily loads safe_list.txt and returns it."""
if self._safe_list:
return self._safe_list
self._safe_list = dict((t, []) for t in ExceptionType)
# Ignore safe_list.txt while testing.
if self.file_filter.git_file_for_testing is not None:
return self._safe_list
logger.info("Parsing {}.".format(
Auditor.SAFE_LIST_PATH.relative_to(SRC_DIR)))
lines = Auditor.SAFE_LIST_PATH.read_text(encoding="utf-8").splitlines()
for line in lines:
# Ignore comments and empty lines.
line = line.rstrip()
if not line or line.startswith("#"):
continue
# Expect a type, and at least 1 value on each line.
tokens = line.split(",")
assert len(tokens) >= 2, \
"Unexpected syntax in safe_list.txt, line: {}".format(line)
exception_type = ExceptionType(tokens[0])
for token in tokens[1:]:
token = token.strip()
# Convert the rest of the line into re.Patterns, marking dots as fixed
# characters and asterisks as wildcards.
assert re.match(r'^[0-9a-zA-Z_.*/:@]+$', token), \
"Unexpected character in safe_list.txt token: '{}'".format(token)
token = token.replace(".", "\\.")
token = token.replace("*", ".*")
self._safe_list[exception_type].append(re.compile(token))
return self._safe_list
def _is_safe_listed(self, file_path: Path,
exception_type: ExceptionType) -> bool:
"""Returns true if file_path matches the safe list for this exception
type."""
safe_list = self._get_safe_list()
posix_path = file_path.as_posix()
if any(r.match(posix_path) for r in safe_list[ExceptionType.ALL]):
return True
return any(r.match(posix_path) for r in safe_list[exception_type])
def process_file(self, relative_path: Path, compdb_files: Set[str],
path_filters: List[str]) -> List[Annotation]:
absolute_path = SRC_DIR / relative_path
# Skip files based on compdb and path_filters. Java files aren't in
# compile_commands.json, so don't check those.
if (absolute_path.suffix != ".java" and compdb_files is not None
and str(absolute_path) not in compdb_files):
return None
if (path_filters
and not self._path_filters_match(path_filters, relative_path)):
return None
# Pre-filter files based on their content, using a fast regex. When files
# are already in memory from the disk cache, this saves ~10 seconds.
file_contents = absolute_path.read_text(encoding="utf-8")
if (not self.no_filtering
and not extractor.may_contain_annotations(file_contents)):
return None
return extractor.extract_annotations(absolute_path, file_contents)
def run_extractor(self, build_path: Path, path_filters: List[str],
skip_compdb: bool) -> List[extractor.Annotation]:
"""Run the extractor on the codebase.
Filters files based on `git ls-files` and compdb. Git lets us avoid
auto-generated files, and compdb lets us filter files by platform.
Args:
build_path: Path
Path to a directory where Chrome was built (e.g., out/Release)
path_filters: List[str]
If this list is empty, parse all .cc/.mm/.java files in the repository.
Returns:
A list of all network traffic annotation instances found within a list of
files.
"""
safe_list = self._get_safe_list()
with concurrent.futures.ThreadPoolExecutor(max_workers=2) as executor:
# TODO(nicolaso): Move FileFilter and `git ls-files` logic to
# extractor.py, or maybe a separate file?
logger.info("Getting list of files from git.")
files_future = executor.submit(self.file_filter.get_source_files,
safe_list, "")
# Skip compdb generation while testing to speed up tests.
if self.file_filter.git_file_for_testing is not None:
compdb_files_future = None
else:
logger.info("Generating compile_commands.json")
tools = NetworkTrafficAnnotationTools(str(build_path))
compdb_files_future = executor.submit(tools.GetCompDBFiles,
not skip_compdb)
files = files_future.result()
compdb_files = compdb_files_future.result(
) if compdb_files_future else None
suffixes = '/'.join(self.file_filter.accepted_suffixes)
if path_filters:
logger.info("Parsing valid {} files in the Chromium repository, "
"that match any of these prefixes: {}".format(
suffixes, path_filters))
else:
logger.info("Parsing all valid {} files in the Chromium "
"repository.".format(suffixes))
all_annotations = []
num_workers = 5
chunksize = len(files) // num_workers if len(files) > num_workers else 1
with concurrent.futures.ProcessPoolExecutor(
max_workers=num_workers) as executor:
process_files_with_args = partial(self.process_file,
compdb_files=compdb_files,
path_filters=path_filters)
for annotations in executor.map(process_files_with_args,
files,
chunksize=chunksize):
if annotations:
all_annotations.extend(annotations)
return all_annotations
def _filter_errors(self, file_path: Path,
errors: List[AuditorError]) -> List[AuditorError]:
"""Returns a new list, with safe-listed errors for this file filtered
out."""
filtered_errors = []
for error in errors:
exception_type = ExceptionType.from_error_type(error.type)
if (exception_type is None
or not self._is_safe_listed(file_path, exception_type)):
filtered_errors.append(error)
return filtered_errors
def parse_extractor_output(self, all_annotations: List[extractor.Annotation]
) -> List[AuditorError]:
"""Parses the output of extractor.extract_annotations()."""
all_errors = []
for serialized_annotation in all_annotations:
annotation = Annotation()
errors = annotation.deserialize(serialized_annotation)
assert annotation.file is not None
filtered_errors = self._filter_errors(annotation.file, errors)
if errors and not filtered_errors:
# There were errors, but they were all filtered out. Skip this
# annotation, and don't put it in self.extracted_annotations.
pass
elif filtered_errors:
all_errors.extend(filtered_errors)
else:
self.extracted_annotations.append(annotation)
return all_errors
def _check_complete_annotation(self,
annotation: Annotation) -> List[AuditorError]:
"""Validate the contents of a COMPLETE annotation."""
assert annotation.type == Annotation.Type.COMPLETE
is_safe_listed = self._is_safe_listed(annotation.file,
ExceptionType.MISSING_NEW_FIELDS)
errors = annotation.check_complete()
errors.extend(annotation.check_new_fields(is_safe_listed))
if not errors:
errors = annotation.check_consistent()
if not errors:
errors = annotation.check_last_reviewed_date_format()
return errors
def check_annotation_contents(self) -> List[AuditorError]:
"""Checks that all annotation contents are valid.
Complete annotations should have all required fields and be consistent, and
incomplete annotations should be completed with each other.
Also merges incompleting annotations, and adds them to
self.extracted_annotations."""
all_errors = []
partial_annotations: List[Annotation] = []
completing_annotations: List[Annotation] = []
# Process complete annotations and separate the others.
for annotation in self.extracted_annotations:
if annotation.type == Annotation.Type.COMPLETE:
# Instances loaded from archive are already checked before archiving.
if annotation.is_loaded_from_archive:
continue
all_errors.extend(self._check_complete_annotation(annotation))
elif annotation.type == Annotation.Type.PARTIAL:
partial_annotations.append(annotation)
else:
completing_annotations.append(annotation)
new_annotations: List[Annotation] = []
used_completing_annotations: Set[Annotation] = set()
# Combine partial and completing annotations together.
for partial in partial_annotations:
found_a_pair = False
for completing in completing_annotations:
if partial.is_completable_with(completing):
found_a_pair = True
used_completing_annotations.add(completing)
# Instances loaded from archive are already checked before archiving.
if (partial.is_loaded_from_archive
and completing.is_loaded_from_archive):
break
complete, errors = partial.create_complete_annotation(completing)
if not errors:
errors = self._check_complete_annotation(complete)
if not errors:
new_annotations.append(complete)
else:
all_errors.extend(errors)
# Check that the partial annotation was completed by another.
if not found_a_pair:
all_errors.append(
AuditorError(ErrorType.INCOMPLETED_ANNOTATION, partial.unique_id))
# Check that completing annotations all complete another annotation.
for completing in completing_annotations:
if completing not in used_completing_annotations:
all_errors.append(
AuditorError(ErrorType.INCOMPLETED_ANNOTATION,
completing.unique_id))
self.extracted_annotations.extend(new_annotations)
return all_errors
def _get_grouping_xml_ids(self, grouping_xml_path=Exporter.GROUPING_XML_PATH
) -> Set[UniqueId]:
logger.info("Parsing {}.".format(grouping_xml_path.relative_to(SRC_DIR)))
return set(self.exporter.grouping_id_sender.keys())
def check_grouping_xml(self) -> List[AuditorError]:
#TODO(b/203822700): Add grouping.xml for chromeos.
if self.exporter._current_platform in ["chromeos", "android"]:
logger.info("Skipping grouping.xml check for {}".format(
self.exporter._current_platform))
return []
grouping_xml_ids = self._get_grouping_xml_ids()
# Compare with the annotation ids.
extracted_ids = set()
accepted_types = [Annotation.Type.PARTIAL, Annotation.Type.COMPLETE]
for unique_id, archived in self.exporter.archive.items():
if archived.type in accepted_types and not archived.reserved:
extracted_ids.add(archived.id)
errors = []
# These ids should be added to grouping.xml.
ids_to_add = extracted_ids - grouping_xml_ids
if ids_to_add:
errors.append(
AuditorError(ErrorType.ADD_GROUPING_XML,
", ".join(sorted(ids_to_add))))
# These ids should be removed from grouping.xml.
ids_to_remove = grouping_xml_ids - extracted_ids
if ids_to_remove:
errors.append(
AuditorError(ErrorType.REMOVE_GROUPING_XML,
", ".join(sorted(ids_to_remove))))
return errors
def _path_filters_match(self, path_filters: List[str], file_path: Path):
"""Checks if path_filters include the given file_path, or there are path
filters which are folders (no "." in their name) and match the file
name."""
posix_path = file_path.as_posix()
return (posix_path in path_filters
or any("." not in f and posix_path.startswith(f)
for f in path_filters))
def _add_missing_annotations(self, path_filters: List[str]):
"""Adds all archived annotations (from annotations.xml) that match the
following features, to self.extracted_annotations:
1- OS list includes current platform.
2- Has a path (is not a reserved word).
3- Path does not match an item in path_filters."""
for unique_id, archived in self.exporter.archive.items():
if (self.exporter.matches_current_platform(archived)
and archived.file_path is not None
and not self._path_filters_match(path_filters, archived.file_path)):
self.extracted_annotations.append(
Annotation.load_from_archive(archived))
def run_all_checks(self, path_filters: List[str],
report_xml_updates: bool,
grouping_path: str) -> List[AuditorError]:
"""Performs all checks on extracted annotations, and writes annotations.xml.
If test_only is True, returns the changes that would be made to
annotations.xml as AuditorErrors, instead of writing them directly to the
file."""
errors = []
self.exporter.load_annotations_xml()
self.exporter.load_grouping_xml(grouping_path)
if path_filters:
self._add_missing_annotations(path_filters)
suffixes = '/'.join(self.file_filter.accepted_suffixes)
logger.info("Checking the validity of annotations extracted from {} "
"files.".format(suffixes))
id_checker = IdChecker(RESERVED_IDS)
errors.extend(id_checker.check_ids(self.extracted_annotations))
# Only check annotation contents if IDs are all OK, because if there are
# id errors, there might be some mismatching annotations and irrelevant
# content errors.
if not errors:
errors.extend(self.check_annotation_contents())
if not errors:
errors.extend(
self.exporter.update_annotations(self.extracted_annotations,
RESERVED_IDS))
if not errors:
errors.extend(
self.exporter.update_grouping(self.extracted_annotations,
RESERVED_IDS))
if report_xml_updates:
errors.extend(self.check_grouping_xml())
# If report_xml_updates is true, look at the contents of annotations.xml
# and grouping.xml. If it needs an update,
# add an ANNOTATIONS_XML_UPDATE and error.
if report_xml_updates:
updates = self.exporter.get_required_updates()
if updates:
errors.append(AuditorError(ErrorType.ANNOTATIONS_XML_UPDATE, updates))
grouping_updates = self.exporter.get_required_updates_grouping()
if grouping_updates:
errors.append(AuditorError(ErrorType.GROUPING_XML_UPDATE,
grouping_updates))
return errors
class AuditorUI:
"""Interface to the Auditor, mostly consisting of the main() function.
Most attributes are derived from command-line flags."""
def __init__(self,
build_path: Path,
path_filters: List[str],
no_filtering: bool = True,
test_only: bool = False,
error_limit: int = 0,
annotations_file: Optional[Path] = None,
errors_file: Optional[Path] = None,
skip_compdb: bool = False,
skip_stale_build_check: bool = False):
self.build_path = build_path
# Convert backslashes to slashes on Windows.
self.path_filters = [Path(f).as_posix() for f in path_filters]
self.no_filtering = no_filtering
self.test_only = test_only
self.error_limit = error_limit
self.annotations_file = annotations_file
self.errors_file = errors_file
self.skip_compdb = skip_compdb
self.skip_stale_build_check = skip_stale_build_check
# Exposed for testing.
global traffic_annotation_pb2
global traffic_annotation
traffic_annotation_pb2 = util.import_compiled_proto(self.build_path)
traffic_annotation = traffic_annotation_pb2.NetworkTrafficAnnotation
self.traffic_annotation = traffic_annotation
self.auditor = Auditor(util.get_current_platform(self.build_path),
self.no_filtering)
def main(self) -> int:
if not self.skip_stale_build_check and self.is_stale_build(self.build_path):
logger.error(
textwrap.dedent("""
{} is newer than the build dir {}.
Please rebuild the traffic_annotation_proto target, or pass
--skip-stale-build-check.
\tautoninja -C out/Default traffic_annotation_proto
""").format(
TRAFFIC_ANNOTATION_PROTO_RELATIVE_PATH, build_path))
return 1
if self.no_filtering and self.path_filters:
logger.warning("The path_filters input is being ignored.")
self.path_filters = []
all_annotations = self.auditor.run_extractor(self.build_path,
self.path_filters,
self.skip_compdb)
errors = []
errors.extend(self.auditor.parse_extractor_output(all_annotations))
# If we already have errors from parsing annotations, report them. Otherwise
# check the extracted annotations and their consistency with previous state.
if not errors:
errors.extend(
self.auditor.run_all_checks(self.path_filters, self.test_only,
Exporter.GROUPING_XML_PATH))
# Write annotations TSV file.
if self.annotations_file is not None:
missing_ids = self.auditor.exporter.get_other_platforms_annotation_ids()
util.write_annotations_tsv_file(self.annotations_file,
self.auditor.extracted_annotations,
missing_ids)
# Update annotations.xml and grouping.xml
# if everything else is OK and the auditor is not
# in test-only mode.
if not self.test_only:
if not errors:
self.auditor.exporter.save_annotations_xml()
self.auditor.exporter.save_grouping_xml()
else:
logger.warning("Not updating {} due to errors in annotations.".format(
Exporter.ANNOTATIONS_XML_PATH.relative_to(SRC_DIR)))
if self.errors_file is not None:
self.errors_file.write_text(json.dumps(list(map(str, errors))),
encoding="utf-8")
# Postprocess errors and dump to stdout.
if errors:
print("[Errors]")
for i, error in enumerate(errors):
if self.error_limit and i >= self.error_limit:
break
print(" ({})\t{}".format(i + 1, str(error)))
return 1
sys.stdout.write("Traffic annotations are all OK.\n")
return 0
def is_stale_build(self, path: Path) -> bool:
"""Returns true if the traffic_annotation.proto has been modified more
recently than the Python proto generated from it in the supplied build
directory.
"""
src_proto_mtime = os.path.getmtime(
SRC_DIR.joinpath(TRAFFIC_ANNOTATION_PROTO_RELATIVE_PATH))
build_proto_mtime = os.path.getmtime(
path.joinpath(
'pyproto/chrome/browser/privacy/traffic_annotation_pb2.py'))
return src_proto_mtime > build_proto_mtime
if __name__ == "__main__":
args_parser = argparse.ArgumentParser(
description="Traffic Annotation Auditor: Extracts network traffic"
" annotations from the repository, audits them for errors and coverage,"
" produces reports, and updates related files.",
prog="auditor.py",
usage="%(prog)s [OPTION] ... [path_filters]")
args_parser.add_argument("--build-path",
type=Path,
help="Path to the build directory.",
required=True)
args_parser.add_argument(
"--no-filtering",
action="store_true",
help="Optional flag asking the tool"
" to run on the whole repository without text filtering files.")
args_parser.add_argument(
"--test-only",
help="Optional flag to request just running tests and not"
" updating any file. If not specified,"
" 'tools/traffic_annotation/summary/annotations.xml' might get updated.",
action="store_true")
args_parser.add_argument(
"--error-resilient",
help="Optional flag, stating not to return error in"
" exit code if auditor fails to perform the tests. This flag can be used"
" for trybots to avoid spamming when tests cannot run.",
action="store_true")
args_parser.add_argument("--limit",
default=5,
type=int,
help="Limit for the maximum number of returned "
" errors. Use 0 for unlimited.")
args_parser.add_argument("--annotations-file",
type=Path,
help="Optional path to a TSV output file with all"
" annotations.")
args_parser.add_argument("--errors-file",
type=Path,
help="Optional path to a JSON output file with "
"errors.")
args_parser.add_argument(
"--skip-compdb",
help="Assume compile_commands exists in the build-path, and is "
" up-to-date. This speeds up the auditor.",
action="store_true")
args_parser.add_argument(
"--skip-stale-build-check",
help="Run the auditor even when the generated proto files in the"
" --build-path supplied are older than the traffic_annotation.proto."
"This is useful if you're actively working on the protobuf.",
action="store_true")
args_parser.add_argument(
"path_filters",
nargs="*",
help="Optional paths to filter which files the"
" tool is run on. It can also include deleted files names when auditor is"
" run on a partial repository. These are ignored if all of the following"
" are true: Not using --extractor-input, using -no-filtering OR"
" --all-files, using the python extractor.")
args = args_parser.parse_args()
build_path = Path(args.build_path)
print("Starting traffic annotation auditor. This may take a few minutes.")
print("If you find a bug in this script, file bugs against the 'Enterprise>"
"TrafficAnnotations' component and CC nicolaso@chromium.org.")
auditor_ui = AuditorUI(build_path, args.path_filters, args.no_filtering,
args.test_only, args.limit, args.annotations_file,
args.errors_file, args.skip_compdb,
args.skip_stale_build_check)
try:
sys.exit(auditor_ui.main())
except extractor.SourceCodeParsingError:
# Even with --error-resilient, CQ should turn red if C++/Java code doesn't
# parse.
raise
except Exception:
if args.error_resilient:
traceback.print_exc()
sys.exit(0)
else:
raise
|