-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgen_settings_ids.py
270 lines (243 loc) · 6.99 KB
/
gen_settings_ids.py
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
#!/usr/bin/env python3
# Copyright 2017 gRPC authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import print_function
import collections
import sys
import perfection
_MAX_HEADER_LIST_SIZE = 16 * 1024 * 1024
Setting = collections.namedtuple("Setting", "id default min max on_error")
OnError = collections.namedtuple("OnError", "behavior code")
clamp_invalid_value = OnError("CLAMP_INVALID_VALUE", "PROTOCOL_ERROR")
disconnect_on_invalid_value = lambda e: OnError(
"DISCONNECT_ON_INVALID_VALUE", e
)
DecoratedSetting = collections.namedtuple(
"DecoratedSetting", "enum name setting"
)
_SETTINGS = {
"HEADER_TABLE_SIZE": Setting(1, 4096, 0, 0xFFFFFFFF, clamp_invalid_value),
"ENABLE_PUSH": Setting(
2, 1, 0, 1, disconnect_on_invalid_value("PROTOCOL_ERROR")
),
"MAX_CONCURRENT_STREAMS": Setting(
3,
0xFFFFFFFF,
0,
0xFFFFFFFF,
disconnect_on_invalid_value("PROTOCOL_ERROR"),
),
"INITIAL_WINDOW_SIZE": Setting(
4,
65535,
0,
0x7FFFFFFF,
disconnect_on_invalid_value("FLOW_CONTROL_ERROR"),
),
"MAX_FRAME_SIZE": Setting(
5, 16384, 16384, 16777215, disconnect_on_invalid_value("PROTOCOL_ERROR")
),
"MAX_HEADER_LIST_SIZE": Setting(
6, _MAX_HEADER_LIST_SIZE, 0, _MAX_HEADER_LIST_SIZE, clamp_invalid_value
),
"GRPC_ALLOW_TRUE_BINARY_METADATA": Setting(
0xFE03, 0, 0, 1, clamp_invalid_value
),
"GRPC_PREFERRED_RECEIVE_CRYPTO_FRAME_SIZE": Setting(
0xFE04, 0, 16384, 0x7FFFFFFF, clamp_invalid_value
),
}
H = open("src/core/ext/transport/chttp2/transport/http2_settings.h", "w")
C = open("src/core/ext/transport/chttp2/transport/http2_settings.cc", "w")
# utility: print a big comment block into a set of files
def put_banner(files, banner):
for f in files:
print("/*", file=f)
for line in banner:
print(" * %s" % line, file=f)
print(" */", file=f)
print(file=f)
# copy-paste copyright notice from this file
with open(sys.argv[0]) as my_source:
copyright = []
for line in my_source:
if line[0] != "#":
break
for line in my_source:
if line[0] == "#":
copyright.append(line)
break
for line in my_source:
if line[0] != "#":
break
copyright.append(line)
put_banner([H, C], [line[2:].rstrip() for line in copyright])
put_banner(
[H, C],
["Automatically generated by tools/codegen/core/gen_settings_ids.py"],
)
print(
"#ifndef GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HTTP2_SETTINGS_H", file=H
)
print(
"#define GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HTTP2_SETTINGS_H", file=H
)
print(file=H)
print("#include <grpc/support/port_platform.h>", file=H)
print("#include <stdint.h>", file=H)
print(file=H)
print("#include <grpc/support/port_platform.h>", file=C)
print(
'#include "src/core/ext/transport/chttp2/transport/http2_settings.h"',
file=C,
)
print(file=C)
print('#include "src/core/lib/gpr/useful.h"', file=C)
print('#include "src/core/lib/transport/http2_errors.h"', file=C)
print(file=C)
p = perfection.hash_parameters(sorted(x.id for x in list(_SETTINGS.values())))
print(p)
def hash(i):
i += p.offset
x = i % p.t
y = i // p.t
return x + p.r[y]
decorated_settings = [
DecoratedSetting(hash(setting.id), name, setting)
for name, setting in _SETTINGS.items()
]
print("typedef enum {", file=H)
for decorated_setting in sorted(decorated_settings):
print(
" GRPC_CHTTP2_SETTINGS_%s = %d, /* wire id %d */"
% (
decorated_setting.name,
decorated_setting.enum,
decorated_setting.setting.id,
),
file=H,
)
print("} grpc_chttp2_setting_id;", file=H)
print(file=H)
print(
"#define GRPC_CHTTP2_NUM_SETTINGS %d"
% (max(x.enum for x in decorated_settings) + 1),
file=H,
)
print("extern const uint16_t grpc_setting_id_to_wire_id[];", file=H)
print(
"const uint16_t grpc_setting_id_to_wire_id[] = {%s};"
% ",".join("%d" % s for s in p.slots),
file=C,
)
print(file=H)
print(
(
"bool grpc_wire_id_to_setting_id(uint32_t wire_id,"
" grpc_chttp2_setting_id *out);"
),
file=H,
)
cgargs = {
"r": ",".join("%d" % (r if r is not None else 0) for r in p.r),
"t": p.t,
"offset": abs(p.offset),
"offset_sign": "+" if p.offset > 0 else "-",
}
print(
"""
bool grpc_wire_id_to_setting_id(uint32_t wire_id, grpc_chttp2_setting_id *out) {
uint32_t i = wire_id %(offset_sign)s %(offset)d;
uint32_t x = i %% %(t)d;
uint32_t y = i / %(t)d;
uint32_t h = x;
switch (y) {
"""
% cgargs,
file=C,
)
for i, r in enumerate(p.r):
if not r:
continue
if r < 0:
print("case %d: h -= %d; break;" % (i, -r), file=C)
else:
print("case %d: h += %d; break;" % (i, r), file=C)
print(
"""
}
*out = static_cast<grpc_chttp2_setting_id>(h);
return h < GPR_ARRAY_SIZE(grpc_setting_id_to_wire_id) && grpc_setting_id_to_wire_id[h] == wire_id;
}
"""
% cgargs,
file=C,
)
print(
"""
typedef enum {
GRPC_CHTTP2_CLAMP_INVALID_VALUE,
GRPC_CHTTP2_DISCONNECT_ON_INVALID_VALUE
} grpc_chttp2_invalid_value_behavior;
typedef struct {
const char *name;
uint32_t default_value;
uint32_t min_value;
uint32_t max_value;
grpc_chttp2_invalid_value_behavior invalid_value_behavior;
uint32_t error_value;
} grpc_chttp2_setting_parameters;
extern const grpc_chttp2_setting_parameters grpc_chttp2_settings_parameters[GRPC_CHTTP2_NUM_SETTINGS];
""",
file=H,
)
print(
(
"const grpc_chttp2_setting_parameters"
" grpc_chttp2_settings_parameters[GRPC_CHTTP2_NUM_SETTINGS] = {"
),
file=C,
)
i = 0
for decorated_setting in sorted(decorated_settings):
while i < decorated_setting.enum:
print(
(
"{NULL, 0, 0, 0, GRPC_CHTTP2_DISCONNECT_ON_INVALID_VALUE,"
" GRPC_HTTP2_PROTOCOL_ERROR},"
),
file=C,
)
i += 1
print(
'{"%s", %du, %du, %du, GRPC_CHTTP2_%s, GRPC_HTTP2_%s},'
% (
decorated_setting.name,
decorated_setting.setting.default,
decorated_setting.setting.min,
decorated_setting.setting.max,
decorated_setting.setting.on_error.behavior,
decorated_setting.setting.on_error.code,
),
file=C,
)
i += 1
print("};", file=C)
print(file=H)
print(
"#endif /* GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HTTP2_SETTINGS_H */",
file=H,
)
H.close()
C.close()