diff options
author | Björn Gustavsson <[email protected]> | 2017-05-02 05:41:17 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2017-05-12 10:32:03 +0200 |
commit | 7b169140b2d37f43996b9d1a94877926a471d97d (patch) | |
tree | 8b5c4039533567a4704f9cab3e38a2434bdd8e6f /erts/vsn.mk | |
parent | c3a81d86c0ad0245cd47ff17aee70dc816c07e39 (diff) | |
download | otp-7b169140b2d37f43996b9d1a94877926a471d97d.tar.gz otp-7b169140b2d37f43996b9d1a94877926a471d97d.tar.bz2 otp-7b169140b2d37f43996b9d1a94877926a471d97d.zip |
Warn for potentially unsafe use of get_stacktrace/0
erlang:get_stacktrace/0 returns the stacktrace for the latest
exception. The problem is that the stacktrace is kept until the next
exception occurs. If the last exception was a 'function_clause' or a
'badarg', the arguments for the call are also kept forever. The
arguments can be terms of any size (potentially huge).
In a future release, we would like to only allow
erlang:get_stacktrace/0 from within a 'try' expression. That would
make it possible to clear the stacktrace when the 'try' expression is
exited.
The 'catch' expression has no natural end where the stacktrace could
be cleared. The stacktrace could be cleared at the end of the function
that the 'catch' occurs in, but that would cause problems in the
following scenario (from real life, but simplified):
try
...
catch _:_ ->
io:format(...),
io:format("~p\n", [erlang:get_stacktrace()])
end.
%% In io.erl.
format(Fmt, Args) ->
Res = case ... of
SomePattern ->
catch...
...;
SomeOtherPattern ->
%% Output the formatted string here
...
end,
clear_stacktrace(), %% Inserted by compiler.
Res.
The call to io:format() would always clear the stacktrace before
it could be retrieved.
That problem could be solved by tightning the scope in which the
stacktrace is kept, but the rules for how long erlang:get_stacktrace/0
would work would become complicated.
Therefore, the solution we suggest for a future major release of
OTP is that erlang:get_stacktrace/0 will return [] if it is called
outside the 'catch' part of a 'try' expression.
To help users prepare, introduce a warning when it is likely that
erlang:get_stacktrace/0 will always return an empty list, for example
in this code:
catch error(foo),
Stk = erlang:get_stacktrace()
or in this code:
try Expr
catch _:_ -> ok end,
Stk = erlang:get_stacktrace()
Diffstat (limited to 'erts/vsn.mk')
0 files changed, 0 insertions, 0 deletions