2018-12-04 05:30:32 -05:00
|
|
|
# Copyright 2018 New Vector Ltd
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
import functools
|
|
|
|
import sys
|
2019-10-10 07:20:29 -04:00
|
|
|
from typing import Any, Callable, List
|
2019-10-10 07:15:17 -04:00
|
|
|
|
2018-12-04 05:30:32 -05:00
|
|
|
from twisted.internet import defer
|
|
|
|
from twisted.internet.defer import Deferred
|
|
|
|
from twisted.python.failure import Failure
|
|
|
|
|
2019-10-10 07:15:17 -04:00
|
|
|
# Tracks if we've already patched inlineCallbacks
|
|
|
|
_already_patched = False
|
|
|
|
|
|
|
|
|
2018-12-04 05:30:32 -05:00
|
|
|
def do_patch():
|
|
|
|
"""
|
|
|
|
Patch defer.inlineCallbacks so that it checks the state of the logcontext on exit
|
|
|
|
"""
|
|
|
|
|
2020-03-24 10:45:33 -04:00
|
|
|
from synapse.logging.context import current_context
|
2018-12-04 05:30:32 -05:00
|
|
|
|
2019-10-10 07:15:17 -04:00
|
|
|
global _already_patched
|
|
|
|
|
2018-12-04 05:30:32 -05:00
|
|
|
orig_inline_callbacks = defer.inlineCallbacks
|
2019-10-10 07:15:17 -04:00
|
|
|
if _already_patched:
|
2019-09-27 10:58:14 -04:00
|
|
|
return
|
2018-12-04 05:30:32 -05:00
|
|
|
|
|
|
|
def new_inline_callbacks(f):
|
|
|
|
@functools.wraps(f)
|
|
|
|
def wrapped(*args, **kwargs):
|
2020-03-24 10:45:33 -04:00
|
|
|
start_context = current_context()
|
2019-10-10 07:29:38 -04:00
|
|
|
changes = [] # type: List[str]
|
2019-10-10 07:15:17 -04:00
|
|
|
orig = orig_inline_callbacks(_check_yield_points(f, changes))
|
2018-12-04 05:30:32 -05:00
|
|
|
|
|
|
|
try:
|
|
|
|
res = orig(*args, **kwargs)
|
|
|
|
except Exception:
|
2020-03-24 10:45:33 -04:00
|
|
|
if current_context() != start_context:
|
2019-09-27 10:11:14 -04:00
|
|
|
for err in changes:
|
|
|
|
print(err, file=sys.stderr)
|
|
|
|
|
2018-12-04 05:30:32 -05:00
|
|
|
err = "%s changed context from %s to %s on exception" % (
|
2019-05-10 01:12:11 -04:00
|
|
|
f,
|
|
|
|
start_context,
|
2020-03-24 10:45:33 -04:00
|
|
|
current_context(),
|
2018-12-04 05:30:32 -05:00
|
|
|
)
|
|
|
|
print(err, file=sys.stderr)
|
|
|
|
raise Exception(err)
|
|
|
|
raise
|
|
|
|
|
|
|
|
if not isinstance(res, Deferred) or res.called:
|
2020-03-24 10:45:33 -04:00
|
|
|
if current_context() != start_context:
|
2019-09-27 10:11:14 -04:00
|
|
|
for err in changes:
|
|
|
|
print(err, file=sys.stderr)
|
|
|
|
|
|
|
|
err = "Completed %s changed context from %s to %s" % (
|
2019-05-10 01:12:11 -04:00
|
|
|
f,
|
|
|
|
start_context,
|
2020-03-24 10:45:33 -04:00
|
|
|
current_context(),
|
2018-12-04 05:30:32 -05:00
|
|
|
)
|
|
|
|
# print the error to stderr because otherwise all we
|
|
|
|
# see in travis-ci is the 500 error
|
|
|
|
print(err, file=sys.stderr)
|
|
|
|
raise Exception(err)
|
|
|
|
return res
|
|
|
|
|
2020-03-24 10:45:33 -04:00
|
|
|
if current_context():
|
2018-12-04 05:30:32 -05:00
|
|
|
err = (
|
|
|
|
"%s returned incomplete deferred in non-sentinel context "
|
|
|
|
"%s (start was %s)"
|
2020-03-24 10:45:33 -04:00
|
|
|
) % (f, current_context(), start_context)
|
2018-12-04 05:30:32 -05:00
|
|
|
print(err, file=sys.stderr)
|
|
|
|
raise Exception(err)
|
|
|
|
|
|
|
|
def check_ctx(r):
|
2020-03-24 10:45:33 -04:00
|
|
|
if current_context() != start_context:
|
2019-09-27 10:11:14 -04:00
|
|
|
for err in changes:
|
|
|
|
print(err, file=sys.stderr)
|
2018-12-04 05:30:32 -05:00
|
|
|
err = "%s completion of %s changed context from %s to %s" % (
|
|
|
|
"Failure" if isinstance(r, Failure) else "Success",
|
2019-05-10 01:12:11 -04:00
|
|
|
f,
|
|
|
|
start_context,
|
2020-03-24 10:45:33 -04:00
|
|
|
current_context(),
|
2018-12-04 05:30:32 -05:00
|
|
|
)
|
|
|
|
print(err, file=sys.stderr)
|
|
|
|
raise Exception(err)
|
|
|
|
return r
|
|
|
|
|
|
|
|
res.addBoth(check_ctx)
|
|
|
|
return res
|
|
|
|
|
|
|
|
return wrapped
|
|
|
|
|
|
|
|
defer.inlineCallbacks = new_inline_callbacks
|
2019-10-10 07:15:17 -04:00
|
|
|
_already_patched = True
|
2019-09-27 10:11:14 -04:00
|
|
|
|
|
|
|
|
2019-10-10 07:15:17 -04:00
|
|
|
def _check_yield_points(f: Callable, changes: List[str]):
|
2019-10-10 05:53:06 -04:00
|
|
|
"""Wraps a generator that is about to be passed to defer.inlineCallbacks
|
2019-09-27 10:58:14 -04:00
|
|
|
checking that after every yield the log contexts are correct.
|
2019-10-10 06:53:57 -04:00
|
|
|
|
2019-10-10 08:17:19 -04:00
|
|
|
It's perfectly valid for log contexts to change within a function, e.g. due
|
2019-10-10 06:53:57 -04:00
|
|
|
to new Measure blocks, so such changes are added to the given `changes`
|
|
|
|
list instead of triggering an exception.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
f: generator function to wrap
|
2019-10-10 07:15:17 -04:00
|
|
|
changes: A list of strings detailing how the contexts
|
2019-10-10 06:53:57 -04:00
|
|
|
changed within a function.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
function
|
2019-09-27 10:58:14 -04:00
|
|
|
"""
|
|
|
|
|
2020-03-24 10:45:33 -04:00
|
|
|
from synapse.logging.context import current_context
|
2019-09-27 10:11:14 -04:00
|
|
|
|
|
|
|
@functools.wraps(f)
|
|
|
|
def check_yield_points_inner(*args, **kwargs):
|
|
|
|
gen = f(*args, **kwargs)
|
|
|
|
|
2019-10-10 05:59:07 -04:00
|
|
|
last_yield_line_no = gen.gi_frame.f_lineno
|
2019-10-10 07:47:07 -04:00
|
|
|
result = None # type: Any
|
2019-09-27 10:11:14 -04:00
|
|
|
while True:
|
2020-03-24 10:45:33 -04:00
|
|
|
expected_context = current_context()
|
2019-10-10 07:15:17 -04:00
|
|
|
|
2019-09-27 10:11:14 -04:00
|
|
|
try:
|
|
|
|
isFailure = isinstance(result, Failure)
|
|
|
|
if isFailure:
|
|
|
|
d = result.throwExceptionIntoGenerator(gen)
|
|
|
|
else:
|
|
|
|
d = gen.send(result)
|
|
|
|
except (StopIteration, defer._DefGen_Return) as e:
|
2020-03-24 10:45:33 -04:00
|
|
|
if current_context() != expected_context:
|
2019-09-27 10:11:14 -04:00
|
|
|
# This happens when the context is lost sometime *after* the
|
|
|
|
# final yield and returning. E.g. we forgot to yield on a
|
|
|
|
# function that returns a deferred.
|
2019-10-10 06:53:57 -04:00
|
|
|
#
|
2019-10-10 08:17:19 -04:00
|
|
|
# We don't raise here as it's perfectly valid for contexts to
|
2019-10-10 06:53:57 -04:00
|
|
|
# change in a function, as long as it sets the correct context
|
|
|
|
# on resolving (which is checked separately).
|
2019-09-27 10:11:14 -04:00
|
|
|
err = (
|
2019-09-27 10:58:14 -04:00
|
|
|
"Function %r returned and changed context from %s to %s,"
|
|
|
|
" in %s between %d and end of func"
|
2019-09-27 10:11:14 -04:00
|
|
|
% (
|
|
|
|
f.__qualname__,
|
2019-10-10 05:59:07 -04:00
|
|
|
expected_context,
|
2020-03-24 10:45:33 -04:00
|
|
|
current_context(),
|
2019-09-27 10:11:14 -04:00
|
|
|
f.__code__.co_filename,
|
|
|
|
last_yield_line_no,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
changes.append(err)
|
|
|
|
return getattr(e, "value", None)
|
|
|
|
|
2019-10-10 05:58:32 -04:00
|
|
|
frame = gen.gi_frame
|
|
|
|
|
2019-10-10 05:59:07 -04:00
|
|
|
if isinstance(d, defer.Deferred) and not d.called:
|
2019-10-10 05:58:32 -04:00
|
|
|
# This happens if we yield on a deferred that doesn't follow
|
2019-10-10 08:17:19 -04:00
|
|
|
# the log context rules without wrapping in a `make_deferred_yieldable`.
|
2019-10-10 06:53:57 -04:00
|
|
|
# We raise here as this should never happen.
|
2020-03-24 10:45:33 -04:00
|
|
|
if current_context():
|
2019-10-10 05:58:32 -04:00
|
|
|
err = (
|
2019-10-10 05:59:07 -04:00
|
|
|
"%s yielded with context %s rather than sentinel,"
|
2019-10-10 05:58:32 -04:00
|
|
|
" yielded on line %d in %s"
|
|
|
|
% (
|
|
|
|
frame.f_code.co_name,
|
2020-03-24 10:45:33 -04:00
|
|
|
current_context(),
|
2019-10-10 05:58:32 -04:00
|
|
|
frame.f_lineno,
|
|
|
|
frame.f_code.co_filename,
|
|
|
|
)
|
|
|
|
)
|
2019-10-10 06:53:57 -04:00
|
|
|
raise Exception(err)
|
2019-10-10 05:58:32 -04:00
|
|
|
|
2020-05-22 05:17:36 -04:00
|
|
|
# the wrapped function yielded a Deferred: yield it back up to the parent
|
|
|
|
# inlineCallbacks().
|
2019-09-27 10:11:14 -04:00
|
|
|
try:
|
|
|
|
result = yield d
|
2020-05-22 05:17:36 -04:00
|
|
|
except Exception:
|
|
|
|
# this will fish an earlier Failure out of the stack where possible, and
|
2020-07-09 09:52:58 -04:00
|
|
|
# thus is preferable to passing in an exception to the Failure
|
2020-05-22 05:17:36 -04:00
|
|
|
# constructor, since it results in less stack-mangling.
|
|
|
|
result = Failure()
|
2019-09-27 10:11:14 -04:00
|
|
|
|
2020-03-24 10:45:33 -04:00
|
|
|
if current_context() != expected_context:
|
2019-10-10 06:53:57 -04:00
|
|
|
|
2019-09-27 10:11:14 -04:00
|
|
|
# This happens because the context is lost sometime *after* the
|
|
|
|
# previous yield and *after* the current yield. E.g. the
|
|
|
|
# deferred we waited on didn't follow the rules, or we forgot to
|
|
|
|
# yield on a function between the two yield points.
|
2019-10-10 06:53:57 -04:00
|
|
|
#
|
|
|
|
# We don't raise here as its perfectly valid for contexts to
|
|
|
|
# change in a function, as long as it sets the correct context
|
|
|
|
# on resolving (which is checked separately).
|
2019-09-27 10:11:14 -04:00
|
|
|
err = "%s changed context from %s to %s, happened between lines %d and %d in %s" % (
|
|
|
|
frame.f_code.co_name,
|
2019-10-10 07:15:17 -04:00
|
|
|
expected_context,
|
2020-03-24 10:45:33 -04:00
|
|
|
current_context(),
|
2019-09-27 10:11:14 -04:00
|
|
|
last_yield_line_no,
|
|
|
|
frame.f_lineno,
|
|
|
|
frame.f_code.co_filename,
|
|
|
|
)
|
|
|
|
changes.append(err)
|
|
|
|
|
|
|
|
last_yield_line_no = frame.f_lineno
|
|
|
|
|
|
|
|
return check_yield_points_inner
|