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 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616
|
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2004-2022. All Rights Reserved.
%%
%% 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.
%%
%% %CopyrightEnd%
%%
%%
%%% Purpose:
%%% This module implements support for using the Erlang trace in a simple way for ssh
%%% debugging.
%%%
%%% Begin the session with ssh_dbg:start(). This will do a dbg:start() if needed and
%%% then dbg:p/2 to set some flags.
%%%
%%% Next select trace points to activate: for example plain text printouts of messages
%%% sent or received. This is switched on and off with ssh_dbg:on(TracePoint(s)) and
%%% ssh_dbg:off(TracePoint(s)). For example:
%%%
%%% ssh_dbg:on(messages) -- switch on printing plain text messages
%%% ssh_dbg:on([alg,terminate]) -- switch on printing info about algorithm negotiation
%%% ssh_dbg:on() -- switch on all ssh debugging
%%%
%%% To switch, use the off/0 or off/1 function in the same way, for example:
%%%
%%% ssh_dbg:off(alg) -- switch off algorithm negotiation tracing, but keep all other
%%% ssh_dbg:off() -- switch off all ssh debugging
%%%
%%% Present the trace result with some other method than the default io:format/2:
%%% ssh_dbg:start(fun(Format,Args) ->
%%% my_special( io_lib:format(Format,Args) )
%%% end)
%%%
-module(ssh_dbg).
-export([start/0, start/1,
stop/0,
start_server/0,
start_tracer/0, start_tracer/1,
on/1, on/0,
off/1, off/0,
is_on/0,
is_off/0,
go_on/0,
%% Circular buffer
cbuf_start/0, cbuf_start/1,
cbuf_stop_clear/0,
cbuf_in/1,
cbuf_list/0,
hex_dump/1, hex_dump/2,
fmt_cbuf_items/0, fmt_cbuf_item/1
]).
-export([shrink_bin/1,
reduce_state/2, reduce_state/3,
wr_record/3]).
-export([init/1, handle_call/3, handle_cast/2, handle_info/2]).
%% Internal apply_after:
-export([ets_delete/2]).
-include("ssh.hrl").
-include("ssh_transport.hrl").
-include("ssh_connect.hrl").
-include("ssh_auth.hrl").
-behaviour(gen_server).
-define(SERVER, ?MODULE).
-define(CALL_TIMEOUT, 15000). % 3x the default
-type trace_point() :: atom().
-type trace_points() :: [trace_point()].
-type stack() :: list(term()).
-callback ssh_dbg_trace_points() -> trace_points().
-callback ssh_dbg_flags(trace_point()) -> [atom()].
-callback ssh_dbg_on(trace_point() | trace_points()) -> term().
-callback ssh_dbg_off(trace_point() | trace_points()) -> term().
-callback ssh_dbg_format(trace_point(), term()) -> iolist() | skip.
-callback ssh_dbg_format(trace_point(), term(), stack()) -> {iolist() | skip, stack()}.
-optional_callbacks([ssh_dbg_format/2, ssh_dbg_format/3]). % At least one of them are to be used
%%%================================================================
-define(ALL_DBG_TYPES, get_all_dbg_types()).
start() -> start(fun io:format/2).
start(IoFmtFun) when is_function(IoFmtFun,2) ; is_function(IoFmtFun,3) ->
start_server(),
catch dbg:start(),
start_tracer(IoFmtFun),
dbg:p(all, get_all_trace_flags()),
?ALL_DBG_TYPES.
stop() ->
try
dbg:stop_clear(),
gen_server:stop(?SERVER)
catch
_:_ -> ok
end.
start_server() ->
gen_server:start({local,?SERVER}, ?MODULE, [], []).
start_tracer() -> start_tracer(fun io:format/2).
start_tracer(WriteFun) when is_function(WriteFun,2) ->
start_tracer(fun(F,A,S) -> WriteFun(F,A), S end);
start_tracer(WriteFun) when is_function(WriteFun,3) ->
start_tracer(WriteFun, undefined).
start_tracer(WriteFun, InitAcc) when is_function(WriteFun, 3) ->
Handler =
fun(Arg, Acc0) ->
try_all_types_in_all_modules(gen_server:call(?SERVER, get_on, ?CALL_TIMEOUT),
Arg, WriteFun,
Acc0)
end,
dbg:tracer(process, {Handler,InitAcc}).
%%%----------------------------------------------------------------
on() -> on(?ALL_DBG_TYPES).
on(Type) -> switch(on, Type).
is_on() -> gen_server:call(?SERVER, get_on, ?CALL_TIMEOUT).
off() -> off(?ALL_DBG_TYPES). % A bit overkill...
off(Type) -> switch(off, Type).
is_off() -> ?ALL_DBG_TYPES -- is_on().
go_on() ->
IsOn = gen_server:call(?SERVER, get_on, ?CALL_TIMEOUT),
on(IsOn).
%%%----------------------------------------------------------------
shrink_bin(B) when is_binary(B), size(B)>256 -> {'*** SHRUNK BIN',
size(B),
element(1,split_binary(B,64)),
'...',
element(2,split_binary(B,size(B)-64))
};
shrink_bin(L) when is_list(L) -> lists:map(fun shrink_bin/1, L);
shrink_bin(T) when is_tuple(T) -> list_to_tuple(shrink_bin(tuple_to_list(T)));
shrink_bin(X) -> X.
%%%----------------------------------------------------------------
%% Replace any occurrence of {Name,...}, with "#Name{}"
reduce_state(T, RecordExample) ->
Name = element(1, RecordExample),
Arity = size(RecordExample),
reduce_state(T, Name, Arity).
%% Replace any occurrence of {Name,...}, with "#Name{}"
reduce_state(T, Name, Arity) when element(1,T) == Name,
size(T) == Arity ->
lists:concat(['#',Name,'{}']);
reduce_state(L, Name, Arity) when is_list(L) ->
[reduce_state(E,Name,Arity) || E <- L];
reduce_state(T, Name, Arity) when is_tuple(T) ->
list_to_tuple( reduce_state(tuple_to_list(T),Name,Arity) );
reduce_state(X, _, _) ->
X.
%%%================================================================
-record(data, {
types_on = []
}).
%%%----------------------------------------------------------------
init(_) ->
new_table(),
{ok, #data{}}.
new_table() ->
try
ets:new(?MODULE, [public, named_table]),
ok
catch
exit:badarg ->
ok
end.
get_proc_stack(Pid) when is_pid(Pid) ->
try ets:lookup_element(?MODULE, Pid, 2)
catch
error:badarg ->
%% Non-existing item
new_proc(Pid),
ets:insert(?MODULE, {Pid,[]}),
[]
end.
put_proc_stack(Pid, Data) when is_pid(Pid),
is_list(Data) ->
ets:insert(?MODULE, {Pid,Data}).
new_proc(Pid) when is_pid(Pid) ->
gen_server:cast(?SERVER, {new_proc,Pid}).
ets_delete(Tab, Key) ->
catch ets:delete(Tab, Key).
%%%----------------------------------------------------------------
handle_call({switch,on,Types}, _From, D) ->
NowOn = lists:usort(Types ++ D#data.types_on),
call_modules(on, Types),
{reply, {ok,NowOn}, D#data{types_on = NowOn}};
handle_call({switch,off,Types}, _From, D) ->
StillOn = D#data.types_on -- Types,
call_modules(off, Types),
call_modules(on, StillOn),
{reply, {ok,StillOn}, D#data{types_on = StillOn}};
handle_call(get_on, _From, D) ->
{reply, D#data.types_on, D};
handle_call(C, _From, D) ->
io:format('*** Unknown call: ~p~n',[C]),
{reply, {error,{unknown_call,C}}, D}.
handle_cast({new_proc,Pid}, D) ->
monitor(process, Pid),
{noreply, D};
handle_cast(C, D) ->
io:format('*** Unknown cast: ~p~n',[C]),
{noreply, D}.
handle_info({'DOWN', _MonitorRef, process, Pid, _Info}, D) ->
%% Universal real-time synchronization (there might be dbg msgs in the queue to the tracer):
timer:apply_after(20000, ?MODULE, ets_delete, [?MODULE, Pid]),
{noreply, D};
handle_info(C, D) ->
io:format('*** Unknown info: ~p~n',[C]),
{noreply, D}.
%%%================================================================
%%%----------------------------------------------------------------
ssh_modules_with_trace() ->
{ok,AllSshModules} = application:get_key(ssh, modules),
[M || M <- AllSshModules,
{behaviour,Bs} <- M:module_info(attributes),
lists:member(?MODULE, Bs)
].
%%%----------------------------------------------------------------
get_all_trace_flags() ->
lists:usort(
lists:flatten([timestamp | call_modules(flags, ?ALL_DBG_TYPES)]
)).
%%%----------------------------------------------------------------
get_all_dbg_types() ->
lists:usort(
lists:flatten(
call_modules(points) )).
%%%----------------------------------------------------------------
call_modules(points) ->
F = fun(Mod) -> Mod:ssh_dbg_trace_points() end,
fold_modules(F, [], ssh_modules_with_trace()).
call_modules(Cmnd, Types) when is_list(Types) ->
F = case Cmnd of
flags -> fun(Type) ->
fun(Mod) -> Mod:ssh_dbg_flags(Type) end
end;
on -> fun(Type) ->
fun(Mod) -> Mod:ssh_dbg_on(Type) end
end;
off -> fun(Type) ->
fun(Mod) -> Mod:ssh_dbg_off(Type) end
end
end,
lists:foldl(fun(T, Acc) ->
fold_modules(F(T), Acc, ssh_modules_with_trace())
end, [], Types).
fold_modules(F, Acc0, Modules) ->
lists:foldl(
fun(Mod, Acc) ->
try F(Mod) of
Result -> [Result|Acc]
catch
_:_ -> Acc
end
end, Acc0, Modules).
%%%----------------------------------------------------------------
switch(X, Type) when is_atom(Type) ->
switch(X, [Type]);
switch(X, Types) when is_list(Types) ->
case whereis(?SERVER) of
undefined ->
start();
_ ->
ok
end,
case lists:usort(Types) -- ?ALL_DBG_TYPES of
[] ->
gen_server:call(?SERVER, {switch,X,Types}, ?CALL_TIMEOUT);
L ->
{error, {unknown, L}}
end.
%%%----------------------------------------------------------------
%%% Format of trace messages are described in reference manual for erlang:trace/4
%%% {call,MFA}
%%% {return_from,{M,F,N},Result}
%%% {send,Msg,To}
%%% {'receive',Msg}
%% Pick 2nd element, the Pid
trace_pid(T) when element(1,T)==trace
; element(1,T)==trace_ts ->
element(2,T).
%% Pick last element, the Time Stamp, and format it
trace_ts(T) when element(1,T)==trace_ts ->
ts( element(size(T), T) ).
%% Make a tuple of all elements but the 1st, 2nd and last
trace_info(T) ->
case tuple_to_list(T) of
[trace,_Pid | Info] -> list_to_tuple(Info);
[trace_ts,_Pid | InfoTS] -> list_to_tuple(
lists:droplast(InfoTS))
end.
try_all_types_in_all_modules(TypesOn, Arg, WriteFun, Acc0) ->
SshModules = ssh_modules_with_trace(),
TS = trace_ts(Arg),
PID = trace_pid(Arg),
INFO = trace_info(Arg),
Acc =
lists:foldl(
fun(Type, Acc1) ->
lists:foldl(
fun(SshMod,Acc) ->
try
%% First, call without stack
SshMod:ssh_dbg_format(Type, INFO)
of
skip ->
%% Don't try to print this later
written;
Txt when is_list(Txt) ->
write_txt(WriteFun, TS, PID, Txt)
catch
error:E when E==undef ; E==function_clause ; element(1,E)==case_clause ->
try
%% then, call with stack
STACK = get_proc_stack(PID),
SshMod:ssh_dbg_format(Type, INFO, STACK)
of
{skip, NewStack} ->
%% Don't try to print this later
put_proc_stack(PID, NewStack),
written;
{Txt, NewStack} when is_list(Txt) ->
put_proc_stack(PID, NewStack),
write_txt(WriteFun, TS, PID, Txt)
catch
_:_ ->
%% and finally, signal for special formatting
%% if no one else formats it
Acc
end
end
end, Acc1, SshModules)
end, Acc0, TypesOn),
case Acc of
Acc0 ->
%% INFO :: any()
WriteFun("~n~s ~p DEBUG~n~p~n", [lists:flatten(TS),PID,INFO], Acc0);
written ->
Acc0
end.
write_txt(WriteFun, TS, PID, Txt) when is_list(Txt) ->
WriteFun("~n~s ~p ~ts~n",
[lists:flatten(TS),
PID,
lists:flatten(Txt)],
written % this is returned
).
%%%----------------------------------------------------------------
wr_record(T, Fs, BL) when is_tuple(T) ->
wr_record(tuple_to_list(T), Fs, BL);
wr_record([_Name|Values], Fields, BlackL) ->
W = case Fields of
[] -> 0;
_ -> lists:max([length(atom_to_list(F)) || F<-Fields])
end,
[io_lib:format(" ~*p: ~p~n",[W,Tag,Value]) || {Tag,Value} <- lists:zip(Fields,Values),
not lists:member(Tag,BlackL)
].
%%%----------------------------------------------------------------
ts({_,_,Usec}=Now) when is_integer(Usec) ->
{_Date,{HH,MM,SS}} = calendar:now_to_local_time(Now),
io_lib:format("~.2.0w:~.2.0w:~.2.0w.~.6.0w",[HH,MM,SS,Usec]);
ts(_) ->
"-".
%%%================================================================
-define(CIRC_BUF, circ_buf).
cbuf_start() ->
cbuf_start(20).
cbuf_start(CbufMaxLen) ->
put(?CIRC_BUF, {CbufMaxLen,queue:new()}),
ok.
cbuf_stop_clear() ->
case erase(?CIRC_BUF) of
undefined ->
[];
{_CbufMaxLen,Queue} ->
queue:to_list(Queue)
end.
cbuf_in(Value) ->
case get(?CIRC_BUF) of
undefined ->
disabled;
{CbufMaxLen,Queue} ->
UpdatedQueue =
try queue:head(Queue) of
{Value, TS0, Cnt0} ->
%% Same Value as last saved in the queue
queue:in_r({Value, TS0, Cnt0+1},
queue:drop(Queue)
);
_ ->
queue:in_r({Value, erlang:timestamp(), 1},
truncate_cbuf(Queue, CbufMaxLen)
)
catch
error:empty ->
queue:in_r({Value, erlang:timestamp(), 1}, Queue)
end,
put(?CIRC_BUF, {CbufMaxLen,UpdatedQueue}),
ok
end.
cbuf_list() ->
case get(?CIRC_BUF) of
undefined ->
[];
{_CbufMaxLen,Queue} ->
queue:to_list(Queue)
end.
truncate_cbuf(Q, CbufMaxLen) ->
case queue:len(Q) of
N when N>=CbufMaxLen ->
truncate_cbuf(element(2,queue:out_r(Q)), CbufMaxLen);
_ ->
Q
end.
fmt_cbuf_items() ->
lists:flatten(
io_lib:format("Circular trace buffer. Latest item first.~n~s~n",
[case get(?CIRC_BUF) of
{Max,_} ->
L = cbuf_list(),
[io_lib:format("==== ~.*w: ~s~n",[num_digits(Max),N,fmt_cbuf_item(X)]) ||
{N,X} <- lists:zip(lists:seq(1,length(L)), L)
];
_ ->
io_lib:format("Not started.~n",[])
end])).
num_digits(0) -> 1;
num_digits(N) when N>0 -> 1+trunc(math:log10(N)).
fmt_cbuf_item({Value, TimeStamp, N}) ->
io_lib:format("~s~s~n~s~n",
[fmt_ts(TimeStamp),
[io_lib:format(" (Repeated ~p times)",[N]) || N>1],
fmt_value(Value)]).
fmt_ts(TS = {_,_,Us}) ->
{{YY,MM,DD},{H,M,S}} = calendar:now_to_universal_time(TS),
io_lib:format("~w-~.2.0w-~.2.0w ~.2.0w:~.2.0w:~.2.0w.~.6.0w UTC",[YY,MM,DD,H,M,S,Us]).
fmt_value(#circ_buf_entry{module = M,
line = L,
function = {F,A},
pid = Pid,
value = V}) ->
io_lib:format("~p:~p ~p/~p ~p~n~s",[M,L,F,A,Pid,fmt_value(V)]);
fmt_value(Value) ->
io_lib:format("~p",[Value]).
%%%================================================================
-record(h, {max_bytes = 65536,
bytes_per_line = 16,
address_len = 4
}).
hex_dump(Data) -> hex_dump1(Data, hd_opts([])).
hex_dump(X, Max) when is_integer(Max) ->
hex_dump(X, [{max_bytes,Max}]);
hex_dump(X, OptList) when is_list(OptList) ->
hex_dump1(X, hd_opts(OptList)).
hex_dump1(B, Opts) when is_binary(B) -> hex_dump1(binary_to_list(B), Opts);
hex_dump1(L, Opts) when is_list(L), length(L) > Opts#h.max_bytes ->
io_lib:format("~s---- skip ~w bytes----~n", [hex_dump1(lists:sublist(L,Opts#h.max_bytes), Opts),
length(L) - Opts#h.max_bytes
]);
hex_dump1(L, Opts0) when is_list(L) ->
Opts = Opts0#h{address_len = num_hex_digits(Opts0#h.max_bytes)},
Result = hex_dump(L, [{0,[],[]}], Opts),
[io_lib:format("~*.s | ~*s | ~s~n"
"~*.c-+-~*c-+-~*c~n",
[Opts#h.address_len, lists:sublist("Address",Opts#h.address_len),
-3*Opts#h.bytes_per_line, lists:sublist("Hexdump",3*Opts#h.bytes_per_line),
"ASCII",
Opts#h.address_len, $-,
3*Opts#h.bytes_per_line, $-,
Opts#h.bytes_per_line, $-
]) |
[io_lib:format("~*.16.0b | ~s~*c | ~s~n",[Opts#h.address_len, N*Opts#h.bytes_per_line,
lists:reverse(Hexs),
3*(Opts#h.bytes_per_line-length(Hexs)), $ ,
lists:reverse(Chars)])
|| {N,Hexs,Chars} <- lists:reverse(Result)
]
].
hd_opts(L) -> lists:foldl(fun hd_opt/2, #h{}, L).
hd_opt({max_bytes,M}, O) -> O#h{max_bytes=M};
hd_opt({bytes_per_line,M}, O) -> O#h{bytes_per_line=M}.
num_hex_digits(N) when N<16 -> 1;
num_hex_digits(N) -> trunc(math:ceil(math:log2(N)/4)).
hex_dump([L|Cs], Result0, Opts) when is_list(L) ->
Result = hex_dump(L,Result0, Opts),
hex_dump(Cs, Result, Opts);
hex_dump(Cs, [{N0,_,Chars}|_]=Lines, Opts) when length(Chars) == Opts#h.bytes_per_line ->
hex_dump(Cs, [{N0+1,[],[]}|Lines], Opts);
hex_dump([C|Cs], [{N,Hexs,Chars}|Lines], Opts) ->
Asc = if
16#20 =< C,C =< 16#7E -> C;
true -> $.
end,
Hex = io_lib:format("~2.16.0b ", [C]),
hex_dump(Cs, [{N, [Hex|Hexs], [Asc|Chars]} | Lines], Opts);
hex_dump([], Result, _) ->
Result.
|