forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
all_extensions.bzl
60 lines (48 loc) · 2.7 KB
/
all_extensions.bzl
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
load("@bazel_skylib//lib:dicts.bzl", "dicts")
load("@envoy_build_config//:extensions_build_config.bzl", "EXTENSIONS")
# These extensions are registered using the extension system but are required for the core Envoy build.
# The map may be overridden by extensions specified in envoy_build_config.
_required_extensions = {
"envoy.http.original_ip_detection.xff": "//source/extensions/http/original_ip_detection/xff:config",
"envoy.request_id.uuid": "//source/extensions/request_id/uuid:config",
# To provide default round robin load balancer.
"envoy.load_balancing_policies.round_robin": "//source/extensions/load_balancing_policies/round_robin:config",
}
# Return the extension cc_library target after select
def _selected_extension_target(target):
return target + "_envoy_extension"
# Return all extensions to be compiled into Envoy.
def envoy_all_extensions(denylist = []):
all_extensions = dicts.add(_required_extensions, EXTENSIONS)
# These extensions can be removed on a site specific basis.
return {_selected_extension_target(v): True for k, v in all_extensions.items() if k not in denylist}.keys()
# Core extensions needed to run Envoy's integration tests.
_core_extensions = [
"envoy.access_loggers.file",
"envoy.access_loggers.stderr",
"envoy.access_loggers.stdout",
"envoy.filters.http.router",
"envoy.filters.http.health_check",
"envoy.filters.http.upstream_codec",
"envoy.filters.network.http_connection_manager",
"envoy.stat_sinks.statsd",
"envoy.transport_sockets.raw_buffer",
"envoy.network.dns_resolver.cares",
"envoy.network.dns_resolver.apple",
"envoy.load_balancing_policies.round_robin",
"envoy.transport_sockets.tls",
]
# Return all core extensions to be compiled into Envoy.
def envoy_all_core_extensions():
all_extensions = dicts.add(_required_extensions, EXTENSIONS)
# These extensions can be removed on a site specific basis.
return {_selected_extension_target(v): True for k, v in all_extensions.items() if k in _core_extensions}.keys()
_http_filter_prefix = "envoy.filters.http"
_upstream_http_filter_prefix = "envoy.filters.http.upstream"
def envoy_all_http_filters():
all_extensions = dicts.add(_required_extensions, EXTENSIONS)
return {_selected_extension_target(v): True for k, v in all_extensions.items() if (k.startswith(_http_filter_prefix) or k.startswith(_upstream_http_filter_prefix))}.keys()
# Return 'selected' network-layer filter extensions to be compiled into network-layer filter generic fuzzer.
def envoy_filters_from_selected(selected):
all_extensions = dicts.add(_required_extensions, EXTENSIONS)
return [_selected_extension_target(v) for k, v in all_extensions.items() if (k in selected)]