-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathbootstrap.py
510 lines (413 loc) · 15 KB
/
bootstrap.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
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
"""
Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
"""
import importlib
import json
import logging
import os
import sys
import time
import traceback
from .lambda_context import LambdaContext
from .lambda_runtime_client import LambdaRuntimeClient
from .lambda_runtime_exception import FaultException
from .lambda_runtime_log_utils import (
_DATETIME_FORMAT,
_DEFAULT_FRAME_TYPE,
_JSON_FRAME_TYPES,
_TEXT_FRAME_TYPES,
JsonFormatter,
LogFormat,
_format_log_level,
_get_log_level_from_env_var,
)
from .lambda_runtime_marshaller import to_json
ERROR_LOG_LINE_TERMINATE = "\r"
ERROR_LOG_IDENT = "\u00a0" # NO-BREAK SPACE U+00A0
_AWS_LAMBDA_LOG_FORMAT = LogFormat.from_str(os.environ.get("AWS_LAMBDA_LOG_FORMAT"))
_AWS_LAMBDA_LOG_LEVEL = _get_log_level_from_env_var(
os.environ.get("AWS_LAMBDA_LOG_LEVEL")
)
def _get_handler(handler):
try:
(modname, fname) = handler.rsplit(".", 1)
except ValueError as e:
fault = FaultException(
FaultException.MALFORMED_HANDLER_NAME,
"Bad handler '{}': {}".format(handler, str(e)),
)
return make_fault_handler(fault)
try:
if modname.split(".")[0] in sys.builtin_module_names:
fault = FaultException(
FaultException.BUILT_IN_MODULE_CONFLICT,
"Cannot use built-in module {} as a handler module".format(modname),
)
return make_fault_handler(fault)
m = importlib.import_module(modname.replace("/", "."))
except ImportError as e:
fault = FaultException(
FaultException.IMPORT_MODULE_ERROR,
"Unable to import module '{}': {}".format(modname, str(e)),
)
request_handler = make_fault_handler(fault)
return request_handler
except SyntaxError as e:
trace = [' File "%s" Line %s\n %s' % (e.filename, e.lineno, e.text)]
fault = FaultException(
FaultException.USER_CODE_SYNTAX_ERROR,
"Syntax error in module '{}': {}".format(modname, str(e)),
trace,
)
request_handler = make_fault_handler(fault)
return request_handler
try:
request_handler = getattr(m, fname)
except AttributeError:
fault = FaultException(
FaultException.HANDLER_NOT_FOUND,
"Handler '{}' missing on module '{}'".format(fname, modname),
None,
)
request_handler = make_fault_handler(fault)
return request_handler
def make_fault_handler(fault):
def result(*args):
raise fault
return result
def make_error(
error_message,
error_type,
stack_trace,
invoke_id=None,
):
result = {
"errorMessage": error_message if error_message else "",
"errorType": error_type if error_type else "",
"requestId": invoke_id if invoke_id is not None else "",
"stackTrace": stack_trace if stack_trace else [],
}
return result
def replace_line_indentation(line, indent_char, new_indent_char):
ident_chars_count = 0
for c in line:
if c != indent_char:
break
ident_chars_count += 1
return (new_indent_char * ident_chars_count) + line[ident_chars_count:]
if _AWS_LAMBDA_LOG_FORMAT == LogFormat.JSON:
_ERROR_FRAME_TYPE = _JSON_FRAME_TYPES[logging.ERROR]
_WARNING_FRAME_TYPE = _JSON_FRAME_TYPES[logging.WARNING]
def log_error(error_result, log_sink):
error_result = {
"timestamp": time.strftime(
_DATETIME_FORMAT, logging.Formatter.converter(time.time())
),
"log_level": "ERROR",
**error_result,
}
log_sink.log_error(
[to_json(error_result)],
)
else:
_ERROR_FRAME_TYPE = _TEXT_FRAME_TYPES[logging.ERROR]
_WARNING_FRAME_TYPE = _TEXT_FRAME_TYPES[logging.WARNING]
def log_error(error_result, log_sink):
error_description = "[ERROR]"
error_result_type = error_result.get("errorType")
if error_result_type:
error_description += " " + error_result_type
error_result_message = error_result.get("errorMessage")
if error_result_message:
if error_result_type:
error_description += ":"
error_description += " " + error_result_message
error_message_lines = [error_description]
stack_trace = error_result.get("stackTrace")
if stack_trace is not None:
error_message_lines += ["Traceback (most recent call last):"]
for trace_element in stack_trace:
if trace_element == "":
error_message_lines += [""]
else:
for trace_line in trace_element.splitlines():
error_message_lines += [
replace_line_indentation(trace_line, " ", ERROR_LOG_IDENT)
]
log_sink.log_error(error_message_lines)
def handle_event_request(
lambda_runtime_client,
request_handler,
invoke_id,
event_body,
content_type,
client_context_json,
cognito_identity_json,
invoked_function_arn,
epoch_deadline_time_in_ms,
log_sink,
):
error_result = None
try:
lambda_context = create_lambda_context(
client_context_json,
cognito_identity_json,
epoch_deadline_time_in_ms,
invoke_id,
invoked_function_arn,
)
event = lambda_runtime_client.marshaller.unmarshal_request(
event_body, content_type
)
response = request_handler(event, lambda_context)
result, result_content_type = lambda_runtime_client.marshaller.marshal_response(
response
)
except FaultException as e:
xray_fault = make_xray_fault("LambdaValidationError", e.msg, os.getcwd(), [])
error_result = make_error(
e.msg,
e.exception_type,
e.trace,
invoke_id,
)
except Exception:
etype, value, tb = sys.exc_info()
tb_tuples = extract_traceback(tb)
for i in range(len(tb_tuples)):
if "/bootstrap.py" not in tb_tuples[i][0]: # filename of the tb tuple
tb_tuples = tb_tuples[i:]
break
xray_fault = make_xray_fault(etype.__name__, str(value), os.getcwd(), tb_tuples)
error_result = make_error(
str(value), etype.__name__, traceback.format_list(tb_tuples), invoke_id
)
if error_result is not None:
from .lambda_literals import lambda_unhandled_exception_warning_message
log_sink.log(lambda_unhandled_exception_warning_message, _WARNING_FRAME_TYPE)
log_error(error_result, log_sink)
lambda_runtime_client.post_invocation_error(
invoke_id, to_json(error_result), to_json(xray_fault)
)
else:
lambda_runtime_client.post_invocation_result(
invoke_id, result, result_content_type
)
def parse_json_header(header, name):
try:
return json.loads(header)
except Exception as e:
raise FaultException(
FaultException.LAMBDA_CONTEXT_UNMARSHAL_ERROR,
"Unable to parse {} JSON: {}".format(name, str(e)),
None,
)
def create_lambda_context(
client_context_json,
cognito_identity_json,
epoch_deadline_time_in_ms,
invoke_id,
invoked_function_arn,
):
client_context = None
if client_context_json:
client_context = parse_json_header(client_context_json, "Client Context")
cognito_identity = None
if cognito_identity_json:
cognito_identity = parse_json_header(cognito_identity_json, "Cognito Identity")
return LambdaContext(
invoke_id,
client_context,
cognito_identity,
epoch_deadline_time_in_ms,
invoked_function_arn,
)
def build_fault_result(exc_info, msg):
etype, value, tb = exc_info
tb_tuples = extract_traceback(tb)
for i in range(len(tb_tuples)):
if "/bootstrap.py" not in tb_tuples[i][0]: # filename of the tb tuple
tb_tuples = tb_tuples[i:]
break
return make_error(
msg if msg else str(value),
etype.__name__,
traceback.format_list(tb_tuples),
)
def make_xray_fault(ex_type, ex_msg, working_dir, tb_tuples):
stack = []
files = set()
for t in tb_tuples:
tb_file, tb_line, tb_method, tb_code = t
tb_xray = {"label": tb_method, "path": tb_file, "line": tb_line}
stack.append(tb_xray)
files.add(tb_file)
formatted_ex = {"message": ex_msg, "type": ex_type, "stack": stack}
xray_fault = {
"working_directory": working_dir,
"exceptions": [formatted_ex],
"paths": list(files),
}
return xray_fault
def extract_traceback(tb):
return [
(frame.filename, frame.lineno, frame.name, frame.line)
for frame in traceback.extract_tb(tb)
]
class LambdaLoggerHandler(logging.Handler):
def __init__(self, log_sink):
logging.Handler.__init__(self)
self.log_sink = log_sink
def emit(self, record):
msg = self.format(record)
self.log_sink.log(msg)
class LambdaLoggerHandlerWithFrameType(logging.Handler):
def __init__(self, log_sink):
super().__init__()
self.log_sink = log_sink
def emit(self, record):
self.log_sink.log(
self.format(record),
frame_type=(
getattr(record, "_frame_type", None)
or _TEXT_FRAME_TYPES.get(_format_log_level(record))
),
)
class LambdaLoggerFilter(logging.Filter):
def filter(self, record):
record.aws_request_id = _GLOBAL_AWS_REQUEST_ID or ""
return True
class Unbuffered(object):
def __init__(self, stream):
self.stream = stream
def __enter__(self):
return self
def __exit__(self, exc_type, exc_value, exc_tb):
pass
def __getattr__(self, attr):
return getattr(self.stream, attr)
def write(self, msg):
self.stream.write(msg)
self.stream.flush()
def writelines(self, msgs):
self.stream.writelines(msgs)
self.stream.flush()
class StandardLogSink(object):
def __init__(self):
pass
def __enter__(self):
return self
def __exit__(self, exc_type, exc_value, exc_tb):
pass
def log(self, msg, frame_type=None):
sys.stdout.write(msg)
def log_error(self, message_lines):
error_message = ERROR_LOG_LINE_TERMINATE.join(message_lines) + "\n"
sys.stdout.write(error_message)
class FramedTelemetryLogSink(object):
"""
FramedTelemetryLogSink implements the logging contract between runtimes and the platform. It implements a simple
framing protocol so message boundaries can be determined. Each frame can be visualized as follows:
<pre>
{@code
+----------------------+------------------------+---------------------+-----------------------+
| Frame Type - 4 bytes | Length (len) - 4 bytes | Timestamp - 8 bytes | Message - 'len' bytes |
+----------------------+------------------------+---------------------+-----------------------+
}
</pre>
The first 4 bytes indicate the type of the frame - log frames have a type defined as the hex value 0xa55a0003. The
second 4 bytes should indicate the message's length. The next 8 bytes should indicate the timestamp of the message.
The next 'len' bytes contain the message. The byte order is big-endian.
"""
def __init__(self, fd):
self.fd = int(fd)
def __enter__(self):
self.file = os.fdopen(self.fd, "wb", 0)
return self
def __exit__(self, exc_type, exc_value, exc_tb):
self.file.close()
def log(self, msg, frame_type=None):
encoded_msg = msg.encode("utf8")
timestamp = int(time.time_ns() / 1000) # UNIX timestamp in microseconds
log_msg = (
(frame_type or _DEFAULT_FRAME_TYPE)
+ len(encoded_msg).to_bytes(4, "big")
+ timestamp.to_bytes(8, "big")
+ encoded_msg
)
self.file.write(log_msg)
def log_error(self, message_lines):
error_message = "\n".join(message_lines)
self.log(
error_message,
frame_type=_ERROR_FRAME_TYPE,
)
def update_xray_env_variable(xray_trace_id):
if xray_trace_id is not None:
os.environ["_X_AMZN_TRACE_ID"] = xray_trace_id
else:
if "_X_AMZN_TRACE_ID" in os.environ:
del os.environ["_X_AMZN_TRACE_ID"]
def create_log_sink():
if "_LAMBDA_TELEMETRY_LOG_FD" in os.environ:
fd = os.environ["_LAMBDA_TELEMETRY_LOG_FD"]
del os.environ["_LAMBDA_TELEMETRY_LOG_FD"]
return FramedTelemetryLogSink(fd)
else:
return StandardLogSink()
_GLOBAL_AWS_REQUEST_ID = None
def _setup_logging(log_format, log_level, log_sink):
logging.Formatter.converter = time.gmtime
logger = logging.getLogger()
if log_format == LogFormat.JSON or log_level:
logger_handler = LambdaLoggerHandlerWithFrameType(log_sink)
else:
logger_handler = LambdaLoggerHandler(log_sink)
if log_format == LogFormat.JSON:
logger_handler.setFormatter(JsonFormatter())
else:
logger_handler.setFormatter(
logging.Formatter(
"[%(levelname)s]\t%(asctime)s.%(msecs)03dZ\t%(aws_request_id)s\t%(message)s\n",
"%Y-%m-%dT%H:%M:%S",
)
)
if log_level in logging._nameToLevel:
logger.setLevel(log_level)
logger_handler.addFilter(LambdaLoggerFilter())
logger.addHandler(logger_handler)
def run(app_root, handler, lambda_runtime_api_addr):
sys.stdout = Unbuffered(sys.stdout)
sys.stderr = Unbuffered(sys.stderr)
use_thread_for_polling_next = (
os.environ.get("AWS_EXECUTION_ENV") == "AWS_Lambda_python3.12"
)
with create_log_sink() as log_sink:
lambda_runtime_client = LambdaRuntimeClient(
lambda_runtime_api_addr, use_thread_for_polling_next
)
try:
_setup_logging(_AWS_LAMBDA_LOG_FORMAT, _AWS_LAMBDA_LOG_LEVEL, log_sink)
global _GLOBAL_AWS_REQUEST_ID
request_handler = _get_handler(handler)
except Exception:
error_result = build_fault_result(sys.exc_info(), None)
log_error(error_result, log_sink)
lambda_runtime_client.post_init_error(to_json(error_result))
sys.exit(1)
while True:
event_request = lambda_runtime_client.wait_next_invocation()
_GLOBAL_AWS_REQUEST_ID = event_request.invoke_id
update_xray_env_variable(event_request.x_amzn_trace_id)
handle_event_request(
lambda_runtime_client,
request_handler,
event_request.invoke_id,
event_request.event_body,
event_request.content_type,
event_request.client_context,
event_request.cognito_identity,
event_request.invoked_function_arn,
event_request.deadline_time_in_ms,
log_sink,
)