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 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237
|
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2007-2024. 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%
%%
-module(ssl_dist_SUITE).
-behaviour(ct_suite).
-include("ssl_test_lib.hrl").
-include_lib("kernel/include/net_address.hrl").
-include_lib("common_test/include/ct.hrl").
-include_lib("public_key/include/public_key.hrl").
-include("ssl_dist_test_lib.hrl").
%% Common test
-export([all/0,
init_per_suite/1,
init_per_testcase/2,
end_per_suite/1,
end_per_testcase/2
]).
%% Test cases
-export([basic/0,
basic/1,
embedded/0,
embedded/1,
ktls_encrypt_decrypt/0,
ktls_encrypt_decrypt/1,
ktls_verify/0,
ktls_verify/1,
monitor_nodes/1,
payload/0,
payload/1,
dist_port_overload/0,
dist_port_overload/1,
plain_options/0,
plain_options/1,
plain_verify_options/0,
plain_verify_options/1,
nodelay_option/0,
nodelay_option/1,
listen_port_options/0,
listen_port_options/1,
listen_options/0,
listen_options/1,
connect_options/0,
connect_options/1,
net_ticker_spawn_options/0,
net_ticker_spawn_options/1,
use_interface/0,
use_interface/1,
verify_fun_fail/0,
verify_fun_fail/1,
verify_fun_pass/0,
verify_fun_pass/1,
epmd_module/0,
epmd_module/1
]).
%% Apply export
-export([basic_test/3,
monitor_nodes_test/3,
payload_test/3,
plain_options_test/3,
plain_verify_options_test/3,
do_listen_options/2,
listen_options_test/3,
do_connect_options/2,
connect_options_test/3,
net_ticker_spawn_options_test/3,
verify_fun_fail_test/3,
verify_fun_pass_test/3,
verify_pass_always/3,
verify_fail_always/3]).
%% Epmd module export
-export([start_link/0,
register_node/2,
register_node/3,
port_please/2,
address_please/3]).
-define(DEFAULT_TIMETRAP_SECS, 240).
-define(AWAIT_SSL_NODE_UP_TIMEOUT, 30000).
-import(ssl_dist_test_lib,
[tstsrvr_format/2, send_to_tstcntrl/1,
apply_on_ssl_node/4, apply_on_ssl_node/2,
stop_ssl_node/1]).
start_ssl_node_name(Name, Args) ->
Pa = filename:dirname(code:which(?MODULE)),
ssl_dist_test_lib:start_ssl_node(Name, "-pa " ++ Pa ++ " " ++ Args).
%%--------------------------------------------------------------------
%% Common Test interface functions -----------------------------------
%%--------------------------------------------------------------------
all() ->
[basic,
embedded,
ktls_encrypt_decrypt,
ktls_verify,
monitor_nodes,
payload,
dist_port_overload,
plain_options,
plain_verify_options,
nodelay_option,
listen_port_options,
listen_options,
connect_options,
net_ticker_spawn_options,
use_interface,
verify_fun_fail,
verify_fun_pass,
epmd_module
].
init_per_suite(Config0) ->
_ = end_per_suite(Config0),
try crypto:start() of
ok ->
%% Currently no ct function available for is_cover!
case test_server:is_cover() of
false ->
Config = add_ssl_opts_config(Config0),
setup_certs(Config),
Config;
true ->
{skip, "Can not be covered"}
end
catch _:_ ->
{skip, "Crypto did not start"}
end.
end_per_suite(_Config) ->
application:stop(crypto).
init_per_testcase(Case, Config) ->
try init_per_tc(Case, Config)
catch
Class : Reason : Stacktrace ->
{fail, {Class, Reason, Stacktrace}}
end.
init_per_tc(embedded, Config) ->
LibDir = code:lib_dir(),
case
lists:all(
fun ({App,_,VSN}) ->
filelib:is_dir(
filename:join(
LibDir, atom_to_list(App)++"-"++VSN))
end, application_controller:which_applications())
of
false ->
{skip, "Must be run from a real Erlang installation"};
true ->
Config
end;
init_per_tc(Case, Config)
when Case =:= ktls_verify, is_list(Config) ->
case ktls_encrypt_decrypt(false) of
ok ->
common_init(Case, Config);
Skip ->
Skip
end;
%%
init_per_tc(Case, Config) when is_list(Config) ->
common_init(Case, Config).
common_init(Case, Config) ->
ct:timetrap({seconds, ?DEFAULT_TIMETRAP_SECS}),
[{testcase, Case}|Config].
end_per_testcase(_, _Config) ->
ok.
%%--------------------------------------------------------------------
%% Test Cases --------------------------------------------------------
%%--------------------------------------------------------------------
basic() ->
[{doc,"Test that two nodes can connect via ssl distribution"}].
basic(Config) when is_list(Config) ->
gen_dist_test(basic_test, Config).
embedded() ->
[{doc,"Test that two nodes can connect via ssl distribution in embedded mode"}].
embedded(Config) when is_list(Config) ->
ReleaseDir = filename:join(proplists:get_value(priv_dir,Config), "embedded"),
EbinDir = filename:join(ReleaseDir,"ebin/"),
%% Create an application for the test modules
Modules = [ssl_dist_test_lib, ?MODULE],
App = {application, tls_test,
[{description, "Erlang/OTP SSL test application"},
{vsn, "1.0"},
{modules, Modules},
{registered,[]},
{applications, [kernel, stdlib]}]},
ok = filelib:ensure_path(EbinDir),
[{ok,_} = file:copy(code:which(Mod), filename:join(EbinDir, atom_to_list(Mod)++".beam"))
|| Mod <- Modules],
ok = file:write_file(filename:join(EbinDir,"tls_test.app"),
io_lib:format("~p.",[App])),
%% Create a release that we can boot from
Rel = {release, {"tls","1.0"}, {erts, get_app_vsn(erts)},
[{tls_test, "1.0"},
{kernel, get_app_vsn(kernel)},
{stdlib, get_app_vsn(stdlib)},
{public_key, get_app_vsn(public_key)},
{asn1, get_app_vsn(asn1)},
{sasl, get_app_vsn(sasl)},
{crypto, get_app_vsn(crypto)},
{ssl, get_app_vsn(ssl)}]},
TlsRel = filename:join(ReleaseDir, "tls"),
ok = file:write_file(TlsRel ++ ".rel", io_lib:format("~p.",[Rel])),
code:add_patha(EbinDir),
ok = systools:make_script(TlsRel),
ok = systools:script2boot(TlsRel),
%% Start two nodes in embedded mode and make sure they can connect
%% There used to be a bug here where crypto was not loaded early enough
%% for the distributed connection to work.
NodeConfig = [{app_opts, "-boot "++TlsRel++" -mode embedded -pa "++EbinDir++" "} | Config],
Node1 = peer:random_name(),
Node2 = peer:random_name(),
NH1 = start_ssl_node([{node_name,Node1}|NodeConfig]),
%% The second node does `sync_nodes_mandatory` with the first in order for
%% a connection to be established very early in the boot sequence
ok = file:write_file(
filename:join(ReleaseDir,"node2.config"),
io_lib:format(
"~p.",[[{kernel,
[{sync_nodes_timeout,infinity},
{sync_nodes_mandatory,
[list_to_atom(Node1++"@"++inet_db:gethostname())]}]}]])),
NH2 = start_ssl_node([{node_name,Node2}|NodeConfig],
" -config " ++ filename:join(ReleaseDir,"node2")),
try
basic_test(NH1, NH2, Config)
catch
_:Reason ->
stop_ssl_node(NH1),
stop_ssl_node(NH2),
ct:fail(Reason)
end,
stop_ssl_node(NH1),
stop_ssl_node(NH2),
success(Config).
%%--------------------------------------------------------------------
ktls_encrypt_decrypt() ->
[{doc,"Test that kTLS encryption offloading works"}].
ktls_encrypt_decrypt(Config) when is_list(Config) ->
ktls_encrypt_decrypt(true);
%%
%% ktls_encrypt_decrypt(false) is used by init_per_tc(ktls_verify, _)
%%
ktls_encrypt_decrypt(Test) when is_boolean(Test) ->
%%
%% We need a connected socket
{ok, Listen} = gen_tcp:listen(0, [{active, false}]),
{ok, Port} = inet:port(Listen),
{ok, Client} =
gen_tcp:connect({127,0,0,1}, Port, [{active, false}]),
{ok, Server} = gen_tcp:accept(Listen),
try
maybe
{ok, OS} ?= ssl_test_lib:ktls_os(),
ok ?= ssl_test_lib:ktls_set_ulp(Client, OS),
ok ?= ssl_test_lib:ktls_set_cipher(Client, OS, tx, 11),
case Test of
false ->
ok;
true ->
ktls_encrypt_decrypt(Client, Server)
end
else
{error, Reason} ->
{skip, Reason}
end
after
_ = gen_tcp:close(Server),
_ = gen_tcp:close(Client),
_ = gen_tcp:close(Listen)
end.
ktls_encrypt_decrypt(Client, Server) ->
%%
%% Test to transfer encrypted data,
%% and also to not activate RX encryption and transfer data.
%%
Data = "The quick brown fox jumps over a lazy dog 0123456789",
%%
%% Send encrypted from Client before Server has activated decryption
ok = gen_tcp:send(Client, Data),
receive after 500 -> ok end, % Give time for data to arrive
%%
%% Activate Server TX encryption
{ok, OS} = ssl_test_lib:ktls_os(),
ok = ssl_test_lib:ktls_set_ulp(Server, OS),
ok = ssl_test_lib:ktls_set_cipher(Server, OS, tx, 17),
%% Send encrypted from Server
ok = gen_tcp:send(Server, Data),
%% Receive encrypted data without decryption
case gen_tcp:recv(Client, 0, 1000) of
{ok, Data} ->
ct:fail(recv_cleartext_data);
{ok, RandomData} when length(Data) < length(RandomData) ->
?CT_LOG("Received ~p", [RandomData]),
%% A TLS block should be longer than Data
ok
end,
%% Finally, activate Server decryption
ok = ssl_test_lib:ktls_set_cipher(Server, OS, rx, 11),
%% Receive and decrypt the data that was first sent
{ok, Data} = gen_tcp:recv(Server, 0, 1000),
ok.
%%--------------------------------------------------------------------
ktls_verify() ->
[{doc,
"Test that two nodes can connect via ssl distribution over kTLS"}].
ktls_verify(Config) ->
KTLSOpts = "-ssl_dist_opt "
"client_versions tlsv1.3 "
"server_versions tlsv1.3 "
"client_ciphers TLS_AES_256_GCM_SHA384 "
"server_ciphers TLS_AES_256_GCM_SHA384 "
"client_ktls true "
"server_ktls true ",
KTLSConfig = [{tls_verify_opts, KTLSOpts} | Config],
gen_dist_test(
fun (NH1, NH2) ->
basic_test(NH1, NH2, KTLSConfig),
0 = ktls_count_tls_dist(NH1),
0 = ktls_count_tls_dist(NH2),
ok
end, KTLSConfig).
%% Verify that kTLS was activated (whitebox verification);
%% check that a specific supervisor has no child supervisor
%% which indicates that ssl_gen_statem:ktls_handover/1 has succeeded
%%
ktls_count_tls_dist(Node) ->
Key = supervisors,
case
lists:keyfind(
Key, 1,
apply_on_ssl_node(
Node, supervisor, count_children,
[tls_dist_connection_sup]))
of
{Key, N} ->
N;
false ->
0
end.
%%--------------------------------------------------------------------
%% Test net_kernel:monitor_nodes with nodedown_reason (OTP-17838)
monitor_nodes(Config) when is_list(Config) ->
gen_dist_test(monitor_nodes_test, Config).
%%--------------------------------------------------------------------
payload() ->
[{doc,"Test that send a lot of data between the ssl distributed nodes"}].
payload(Config) when is_list(Config) ->
gen_dist_test(payload_test, Config).
%%--------------------------------------------------------------------
dist_port_overload() ->
[{doc, "Test that TLS distribution connections can be accepted concurrently"}].
dist_port_overload(Config) when is_list(Config) ->
(RequiredConcurrency = 2) =< erlang:system_info(schedulers_online)
orelse
throw({skip, "Not enough schedulers online"}),
%%
%% Start a node, and get the port number it's listening on.
#node_handle{nodename = NodeName} = NH1 = start_ssl_node(Config),
[Name, Host] = string:lexemes(atom_to_list(NodeName), "@"),
{ok, NodesPorts} = apply_on_ssl_node(NH1, fun net_adm:names/0),
{Name, Port} = lists:keyfind(Name, 1, NodesPorts),
%% Run RequiredConcurrency connections concurrently.
%% When TLS handshake is not concurrent,
%% and with default net_setuptime of 7 seconds,
%% only one connection per 7 seconds is closed from server side.
%% With concurrent accept they will be closed in parallel.
Started = [connect(self(), Host, Port) || _ <- lists:seq(1, RequiredConcurrency)],
%% give 10 seconds (more than 7, less than 2x7 seconds)
Responded = barrier(RequiredConcurrency, [], erlang:system_time(millisecond) + 10000),
%% clean up
stop_ssl_node(NH1),
[R ! exit || R <- Responded],
[exit(P, kill) || P <- Started -- Responded],
%% Ensure some amount of concurrency was reached.
(length(Responded) >= RequiredConcurrency) orelse
ct:fail({actual, length(Responded), expected, RequiredConcurrency}),
success(Config).
barrier(0, Responded, _Until) ->
Responded;
barrier(RequiredConcurrency, Responded, Until) ->
Timeout = Until - erlang:system_time(millisecond),
receive
{waiting, Pid} ->
barrier(RequiredConcurrency - 1, [Pid | Responded], Until);
{error, Error} ->
ct:fail(Error)
after
Timeout -> Responded
end.
connect(Control, Host, Port) ->
spawn(
fun () ->
case gen_tcp:connect(Host, Port, [{active, true}]) of
{ok, Sock} ->
receive
{tcp_closed, Sock} ->
Control ! {waiting, self()};
exit ->
gen_tcp:close(Sock)
end;
Error ->
Control ! {error, Error}
end
end).
%%--------------------------------------------------------------------
plain_options() ->
[{doc,"Test specifying tls options not related to certificate verification"}].
plain_options(Config) when is_list(Config) ->
TLSOpts = "-ssl_dist_opt server_secure_renegotiate true "
"client_secure_renegotiate true "
"server_hibernate_after 500 client_hibernate_after 500",
gen_dist_test(plain_options_test, [{tls_only_basic_opts, TLSOpts} | Config]).
%%--------------------------------------------------------------------
plain_verify_options() ->
[{doc,"Test specifying tls options including certificate verification options"}].
plain_verify_options(Config) when is_list(Config) ->
TLSOpts = "-ssl_dist_opt "
"server_secure_renegotiate true "
"client_secure_renegotiate true "
"server_hibernate_after 500 "
"client_hibernate_after 500 "
"server_reuse_sessions true "
"client_reuse_sessions true "
"server_depth 1 "
"client_depth 1 ",
gen_dist_test(plain_verify_options_test, [{tls_verify_opts, TLSOpts} | Config]).
%%--------------------------------------------------------------------
nodelay_option() ->
[{doc,"Test specifying dist_nodelay option"}].
nodelay_option(Config) ->
try
%% The default is 'true', so try setting it to 'false'.
application:set_env(kernel, dist_nodelay, false),
basic(Config)
after
application:unset_env(kernel, dist_nodelay)
end.
%%--------------------------------------------------------------------
listen_port_options() ->
[{doc, "Test specifying listening ports"}].
listen_port_options(Config) when is_list(Config) ->
%% Set up the probably most supported scenario
%% for {reuseaddr,true}, i.e, the listening socket
%% is closed, but an accepted server side socket
%% blocks the server port, unless {reuseaddr,true}
%% is used.
%%
%% Set up a server socket and close the listening socket
{ok, L} = gen_tcp:listen(0, [{reuseaddr,true}]),
{ok, Port} = inet:port(L),
{ok, C} = gen_tcp:connect({127,0,0,1}, Port, []),
{ok, S} = gen_tcp:accept(L),
ok = gen_tcp:close(L),
?CT_LOG("Port: ~w", [Port]),
%%
%% Start a node on the server port, {reuseaddr,true}
%% is used per default on the listening socket
%% since it is a server - see inet_tcp_dist:gen_listen/3
PortOpts =
"-kernel"
" inet_dist_listen_min " ++ integer_to_list(Port) ++
" inet_dist_listen_max " ++ integer_to_list(Port),
%% basic_test/3 connects NH1 -> NH2 so it is NH2 that should
%% act as server to make use of PortOpts
NH1 = start_ssl_node(Config),
NH2 = start_ssl_node(Config, PortOpts),
try
basic_test(NH1, NH2, Config),
Node2 = NH2#node_handle.nodename,
{ok,NodeInfo2} =
apply_on_ssl_node(NH1, net_kernel, node_info, [Node2]),
{address,#net_address{address = {_,Port}, protocol = tls}} =
lists:keyfind(address, 1, NodeInfo2),
ok
after
gen_tcp:close(C),
gen_tcp:close(S),
stop_ssl_node(NH1),
stop_ssl_node(NH2)
end.
%%--------------------------------------------------------------------
listen_options() ->
[{doc, "Test inet_dist_listen_options"}].
listen_options(Config) when is_list(Config) ->
try_setting_priority(fun do_listen_options/2, Config).
%%--------------------------------------------------------------------
connect_options() ->
[{doc, "Test inet_dist_connect_options"}].
connect_options(Config) when is_list(Config) ->
try_setting_priority(fun do_connect_options/2, Config).
%%--------------------------------------------------------------------
net_ticker_spawn_options() ->
[{doc, "Test net_ticker_spawn_options"}].
net_ticker_spawn_options(Config) when is_list(Config) ->
FullsweepString = maybe_quote_tuple_list("[{fullsweep_after,0}]"),
Options = "-kernel net_ticker_spawn_options "++FullsweepString,
gen_dist_test(net_ticker_spawn_options_test, [{tls_only_basic_opts, Options} | Config]).
%%--------------------------------------------------------------------
use_interface() ->
[{doc, "Test inet_dist_use_interface"}].
use_interface(Config) when is_list(Config) ->
%% Force the node to listen only on the loopback interface.
IpString = localhost_ipstr(inet_ver()),
Options = "-kernel inet_dist_use_interface " ++ IpString,
%% Start a node, and get the port number it's listening on.
NH1 = start_ssl_node([{tls_verify_opts, Options} | Config]),
try
Node1 = NH1#node_handle.nodename,
Name = lists:takewhile(fun(C) -> C =/= $@ end, atom_to_list(Node1)),
{ok, NodesPorts} = apply_on_ssl_node(NH1, fun net_adm:names/0),
{Name, Port} = lists:keyfind(Name, 1, NodesPorts),
%% Now find the socket listening on that port, and check its sockname.
Sockets = apply_on_ssl_node(
NH1,
fun() ->
[inet:sockname(P) ||
P <- inet_ports(),
{ok, Port} =:= (catch inet:port(P))]
end),
%% And check that it's actually listening on localhost.
IP = localhost_ip(inet_ver()),
[{ok,{IP,Port}}] = Sockets
catch
_:Reason ->
stop_ssl_node(NH1),
ct:fail(Reason)
end,
stop_ssl_node(NH1),
success(Config).
%%--------------------------------------------------------------------
verify_fun_fail() ->
[{doc,"Test specifying verify_fun with a function that always fails"}].
verify_fun_fail(Config) when is_list(Config) ->
AddTLSVerifyOpts = "-ssl_dist_opt "
"server_verify_fun "
"\"{ssl_dist_SUITE,verify_fail_always,{}}\" "
"client_verify_fun "
"\"{ssl_dist_SUITE,verify_fail_always,{}}\" ",
gen_dist_test(verify_fun_fail_test, [{tls_verify_opts, AddTLSVerifyOpts} | Config]).
%%--------------------------------------------------------------------
verify_fun_pass() ->
[{doc,"Test specifying verify_fun with a function that always succeeds"}].
verify_fun_pass(Config) when is_list(Config) ->
AddTLSVerifyOpts = "-ssl_dist_opt "
"server_verify_fun "
"\"{ssl_dist_SUITE,verify_pass_always,{}}\" "
"client_verify_fun "
"\"{ssl_dist_SUITE,verify_pass_always,{}}\" ",
gen_dist_test(verify_fun_pass_test, [{tls_verify_opts, AddTLSVerifyOpts} | Config]).
%%--------------------------------------------------------------------
epmd_module() ->
[{doc,"Test that custom epmd_modules work"}].
epmd_module(Config0) when is_list(Config0) ->
Config = [{hostname, "dummy"} | Config0],
NH1 = start_ssl_node(Config, "-epmd_module " ++ atom_to_list(?MODULE)),
NH2 = start_ssl_node(Config, "-epmd_module " ++ atom_to_list(?MODULE)),
{ok, Port1} = apply_on_ssl_node(NH1, fun() -> application:get_env(kernel, dist_listen_port) end),
{ok, Port2} = apply_on_ssl_node(NH2, fun() -> application:get_env(kernel, dist_listen_port) end),
apply_on_ssl_node(NH1, fun() -> application:set_env(kernel, dist_connect_port, Port2) end),
apply_on_ssl_node(NH2, fun() -> application:set_env(kernel, dist_connect_port, Port1) end),
try
basic_test(NH1, NH2, Config)
catch
_:Reason ->
stop_ssl_node(NH1),
stop_ssl_node(NH2),
ct:fail(Reason)
end,
stop_ssl_node(NH1),
stop_ssl_node(NH2),
success(Config).
start_link() ->
ignore.
register_node(Name, Port) ->
register_node(Name, Port, inet_tcp).
register_node(_Name, Port, _Driver) ->
%% Save the port number we're listening on.
application:set_env(kernel, dist_listen_port, Port),
Creation = rand:uniform(3),
{ok, Creation}.
port_please(_Name, _Ip) ->
{ok, Port} = application:get_env(kernel, dist_connect_port),
{port, Port, 5}.
address_please(_Name, "dummy", AddressFamily) ->
%% Use localhost.
{ok,Host} = inet:gethostname(),
inet:getaddr(Host, AddressFamily);
address_please(_, _, _) ->
{error, nxdomain}.
%%--------------------------------------------------------------------
%%% Internal functions -----------------------------------------------
%%--------------------------------------------------------------------
gen_dist_test(Test, Config) ->
NH1 = start_ssl_node(Config),
NH2 = start_ssl_node(Config),
try
if
is_atom(Test) ->
?MODULE:Test(NH1, NH2, Config);
is_function(Test, 2) ->
Test(NH1, NH2)
end
catch
Class:Reason:Stacktrace ->
ct:fail({Class,Reason,Stacktrace})
after
stop_ssl_node(NH1),
stop_ssl_node(NH2)
end,
success(Config).
%% ssl_node side api
%%
try_setting_priority(TestFun, Config) ->
Prio = 1,
case gen_udp:open(0, [{priority,Prio}]) of
{ok,Socket} ->
case inet:getopts(Socket, [priority]) of
{ok,[{priority,Prio}]} ->
ok = gen_udp:close(Socket),
TestFun(Prio, Config);
_ ->
ok = gen_udp:close(Socket),
{skip,
"Can not set priority "++integer_to_list(Prio)++
" on socket"}
end;
{error,_} ->
{skip, "Can not set priority on socket"}
end.
basic_test(NH1, NH2, _) ->
Node1 = NH1#node_handle.nodename,
Node2 = NH2#node_handle.nodename,
pong = apply_on_ssl_node(NH1, fun () -> net_adm:ping(Node2) end),
[Node2] = apply_on_ssl_node(NH1, fun () -> nodes() end),
[Node1] = apply_on_ssl_node(NH2, fun () -> nodes() end),
verify_tls(NH1, NH2),
%% The test_server node has the same cookie as the ssl nodes
%% but it should not be able to communicate with the ssl nodes
%% via the erlang distribution.
pang = net_adm:ping(Node1),
pang = net_adm:ping(Node2),
%% SSL nodes should not be able to communicate with the test_server node
%% either (and ping should return eventually).
TestServer = node(),
pang = apply_on_ssl_node(NH1, fun () -> net_adm:ping(TestServer) end),
pang = apply_on_ssl_node(NH2, fun () -> net_adm:ping(TestServer) end),
%%
%% Check that we are able to communicate over the erlang
%% distribution between the ssl nodes.
%%
Ref = make_ref(),
spawn(fun () ->
apply_on_ssl_node(
NH1,
fun () ->
tstsrvr_format(
"Hi from ~p!~n", [node()]),
send_to_tstcntrl(
{Ref, self()}),
receive
{From, ping} ->
tstsrvr_format(
"Received ping ~p!~n", [node()]),
From ! {self(), pong}
end
end)
end),
receive
{Ref, SslPid} ->
ok = apply_on_ssl_node(
NH2,
fun () ->
tstsrvr_format(
"Hi from ~p!~n", [node()]),
SslPid ! {self(), ping},
receive
{SslPid, pong} ->
ok
end
end)
end.
monitor_nodes_test(NH1, NH2, _) ->
Node2 = NH2#node_handle.nodename,
Ref = make_ref(),
MonitorNodesFun =
fun() ->
tstsrvr_format("Hi from ~p!~n", [node()]),
ok = net_kernel:monitor_nodes(true, [nodedown_reason]),
send_to_tstcntrl({self(), ready, Ref}),
NodeUp = receive_any(),
send_to_tstcntrl({self(), got, NodeUp}),
NodeDown = receive_any(),
send_to_tstcntrl({self(), got, NodeDown}),
ok = net_kernel:monitor_nodes(false, [nodedown_reason])
end,
spawn_link(fun () ->
ok = apply_on_ssl_node(NH1, MonitorNodesFun)
end),
{SslPid, ready, Ref} = receive_any(),
%% Setup connection and expect 'nodeup'
pong = apply_on_ssl_node(NH1, fun () -> net_adm:ping(Node2) end),
{SslPid, got, {nodeup, Node2, []}} = receive_any(),
%% Disconnect and expect 'nodedown' with correct reason
true = apply_on_ssl_node(NH1, fun () ->
net_kernel:disconnect(Node2)
end),
{SslPid, got, {nodedown, Node2, [{nodedown_reason, disconnect}]}} = receive_any(),
ok.
receive_any() ->
receive M -> M end.
payload_test(NH1, NH2, _) ->
Node1 = NH1#node_handle.nodename,
Node2 = NH2#node_handle.nodename,
pong = apply_on_ssl_node(NH1, fun () -> net_adm:ping(Node2) end),
verify_tls(NH1, NH2),
[Node2] = apply_on_ssl_node(NH1, fun () -> nodes() end),
[Node1] = apply_on_ssl_node(NH2, fun () -> nodes() end),
Ref = make_ref(),
spawn(fun () ->
apply_on_ssl_node(
NH1,
fun () ->
send_to_tstcntrl(
{Ref, self()}),
receive
{From, Msg} ->
From ! {self(), Msg}
end
end)
end),
receive
{Ref, SslPid} ->
ok = apply_on_ssl_node(
NH2,
fun () ->
Msg = crypto:strong_rand_bytes(100000),
SslPid ! {self(), Msg},
receive
{SslPid, Msg} ->
ok
end
end)
end.
plain_options_test(NH1, NH2, _) ->
Node1 = NH1#node_handle.nodename,
Node2 = NH2#node_handle.nodename,
pong = apply_on_ssl_node(NH1, fun () -> net_adm:ping(Node2) end),
verify_tls(NH1, NH2),
[Node2] = apply_on_ssl_node(NH1, fun () -> nodes() end),
[Node1] = apply_on_ssl_node(NH2, fun () -> nodes() end).
plain_verify_options_test(NH1, NH2, _) ->
Node1 = NH1#node_handle.nodename,
Node2 = NH2#node_handle.nodename,
pong = apply_on_ssl_node(NH1, fun () -> net_adm:ping(Node2) end),
verify_tls(NH1, NH2),
[Node2] = apply_on_ssl_node(NH1, fun () -> nodes() end),
[Node1] = apply_on_ssl_node(NH2, fun () -> nodes() end).
do_listen_options(Prio, Config) ->
PriorityString =
maybe_quote_tuple_list("[{priority,"++integer_to_list(Prio)++"}]"),
Options = "-kernel inet_dist_listen_options " ++ PriorityString,
gen_dist_test(listen_options_test, [{prio, Prio}, {tls_only_basic_opts, Options} | Config]).
listen_options_test(NH1, NH2, Config) ->
Prio = proplists:get_value(prio, Config),
Node2 = NH2#node_handle.nodename,
pong = apply_on_ssl_node(NH1, fun () -> net_adm:ping(Node2) end),
PrioritiesNode1 =
apply_on_ssl_node(NH1, fun get_socket_priorities/0),
PrioritiesNode2 =
apply_on_ssl_node(NH2, fun get_socket_priorities/0),
Elevated1 = [P || P <- PrioritiesNode1, P =:= Prio],
?CT_LOG("Elevated1: ~p~n", [Elevated1]),
Elevated2 = [P || P <- PrioritiesNode2, P =:= Prio],
?CT_LOG("Elevated2: ~p~n", [Elevated2]),
[_|_] = Elevated1,
[_|_] = Elevated2.
do_connect_options(Prio, Config) ->
PriorityString =
maybe_quote_tuple_list("[{priority,"++integer_to_list(Prio)++"}]"),
Options = "-kernel inet_dist_connect_options " ++ PriorityString,
gen_dist_test(connect_options_test,
[{prio, Prio}, {tls_only_basic_opts, Options} | Config]).
connect_options_test(NH1, NH2, Config) ->
Prio = proplists:get_value(prio, Config),
Node2 = NH2#node_handle.nodename,
pong = apply_on_ssl_node(NH1, fun () -> net_adm:ping(Node2) end),
PrioritiesNode1 =
apply_on_ssl_node(NH1, fun get_socket_priorities/0),
PrioritiesNode2 =
apply_on_ssl_node(NH2, fun get_socket_priorities/0),
Elevated1 = [P || P <- PrioritiesNode1, P =:= Prio],
?CT_LOG("Elevated1: ~p~n", [Elevated1]),
Elevated2 = [P || P <- PrioritiesNode2, P =:= Prio],
?CT_LOG("Elevated2: ~p~n", [Elevated2]),
%% Node 1 will have a socket with elevated priority.
[_|_] = Elevated1,
%% Node 2 will not, since it only applies to outbound connections.
[] = Elevated2.
net_ticker_spawn_options_test(NH1, NH2, _Config) ->
Node1 = NH1#node_handle.nodename,
Node2 = NH2#node_handle.nodename,
pong = apply_on_ssl_node(NH1, fun () -> net_adm:ping(Node2) end),
FullsweepOptionNode1 =
apply_on_ssl_node(NH1, fun () -> get_dist_util_fullsweep_option(Node2) end),
FullsweepOptionNode2 =
apply_on_ssl_node(NH2, fun () -> get_dist_util_fullsweep_option(Node1) end),
?CT_LOG("FullsweepOptionNode1: ~p~n", [FullsweepOptionNode1]),
?CT_LOG("FullsweepOptionNode2: ~p~n", [FullsweepOptionNode2]),
0 = FullsweepOptionNode1,
0 = FullsweepOptionNode2.
verify_fun_fail_test(NH1, NH2, _) ->
Node2 = NH2#node_handle.nodename,
pang = apply_on_ssl_node(NH1, fun () -> net_adm:ping(Node2) end),
[] = apply_on_ssl_node(NH1, fun () -> nodes() end),
[] = apply_on_ssl_node(NH2, fun () -> nodes() end),
%% Check that the function ran on the client node.
[{verify_fail_always_ran, true}] =
apply_on_ssl_node(NH1, fun () -> ets:tab2list(verify_fun_ran) end),
%% On the server node, it wouldn't run, because the server didn't
%% request a certificate from the client.
undefined =
apply_on_ssl_node(NH2, fun () -> ets:info(verify_fun_ran) end).
verify_fun_pass_test(NH1, NH2, _) ->
Node1 = NH1#node_handle.nodename,
Node2 = NH2#node_handle.nodename,
pong = apply_on_ssl_node(NH1, fun () -> net_adm:ping(Node2) end),
[Node2] = apply_on_ssl_node(NH1, fun () -> nodes() end),
[Node1] = apply_on_ssl_node(NH2, fun () -> nodes() end),
%% Check that the function ran on the client node.
[{verify_pass_always_ran, true}] =
apply_on_ssl_node(NH1, fun () -> ets:tab2list(verify_fun_ran) end),
%% Check that it ran on the server node as well. The server
%% requested and verified the client's certificate because we
%% passed fail_if_no_peer_cert.
[{verify_pass_always_ran, true}] =
apply_on_ssl_node(NH2, fun () -> ets:tab2list(verify_fun_ran) end).
get_socket_priorities() ->
[Priority ||
{ok,[{priority,Priority}]} <-
[inet:getopts(Port, [priority]) || Port <- inet_ports()]].
get_dist_util_fullsweep_option(Node) ->
SenderPid = proplists:get_value(Node, erlang:system_info(dist_ctrl)),
{links, Links1} = erlang:process_info(SenderPid, links),
{links, Links2} = erlang:process_info(whereis(net_kernel), links),
[DistUtilPid] = [X || X <- Links1, Y <- Links2, X =:= Y],
{garbage_collection, GCOpts} = erlang:process_info(DistUtilPid, garbage_collection),
proplists:get_value(fullsweep_after, GCOpts).
inet_ports() ->
[Port || Port <- erlang:ports(),
element(2, erlang:port_info(Port, name)) =:= "tcp_inet"].
start_ssl_node(Config) ->
start_ssl_node(Config, "").
start_ssl_node(Config, XArgs) ->
Name = mk_node_name(Config),
App = proplists:get_value(app_opts, Config),
SSLOpts = setup_tls_opts(Config),
start_ssl_node_name(
Name, App ++ " " ++ SSLOpts ++ " " ++ XArgs).
mk_node_name(Config) ->
case proplists:get_value(node_name, Config) of
undefined ->
N = erlang:unique_integer([positive]),
Case = proplists:get_value(testcase, Config),
Hostname =
case proplists:get_value(hostname, Config) of
undefined -> "";
Host -> "@" ++ Host
end,
atom_to_list(?MODULE)
++ "_"
++ atom_to_list(Case)
++ "_"
++ integer_to_list(N) ++ Hostname;
Name ->
Name
end.
setup_certs(Config) ->
{ok,Host} = inet:gethostname(),
Extensions =
{extensions,
[#'Extension'{
extnID = ?'id-ce-subjectAltName',
extnValue = [{dNSName, Host}],
critical = false}]},
PrivDir = proplists:get_value(priv_dir, Config),
DerConfig =
public_key:pkix_test_data(
#{server_chain =>
#{root => [rsa_root_key(1), {digest,sha256}],
intermediates => [rsa_intermediate_conf(2)],
peer => [rsa_peer_key(3), {digest, sha256}, Extensions]},
client_chain =>
#{root => [rsa_root_key(1), {digest, sha256}],
intermediates => [rsa_intermediate_conf(5)],
peer => [rsa_peer_key(6), {digest, sha256}, Extensions]}}),
ClientBase = filename:join([PrivDir, "rsa"]),
ServerBase = filename:join([PrivDir, "rsa"]),
_ = x509_test:gen_pem_config_files(DerConfig, ClientBase, ServerBase).
setup_tls_opts(Config) ->
PrivDir = proplists:get_value(priv_dir, Config),
SC = filename:join([PrivDir, "rsa_server_cert.pem"]),
SK = filename:join([PrivDir, "rsa_server_key.pem"]),
SCA = filename:join([PrivDir, "rsa_server_cacerts.pem"]),
CC = filename:join([PrivDir, "rsa_client_cert.pem"]),
CK = filename:join([PrivDir, "rsa_client_key.pem"]),
CCA = filename:join([PrivDir, "rsa_client_cacerts.pem"]),
case proplists:get_value(tls_only_basic_opts, Config, []) of
[_|_] = BasicOpts -> %% No verify but server still need to have cert
"-proto_dist inet_tls " ++ "-ssl_dist_opt server_certfile " ++ SC ++ " "
++ "-ssl_dist_opt server_keyfile " ++ SK ++ " " ++ " -ssl_dist_opt client_verify verify_none " ++ BasicOpts;
[] -> %% Verify
TlsVerifyOpts = proplists:get_value(tls_verify_opts, Config, []),
case TlsVerifyOpts of
[_|_] ->
"-proto_dist inet_tls "
++ "-ssl_dist_opt server_certfile " ++ SC ++ " "
++ "-ssl_dist_opt server_keyfile " ++ SK ++ " "
++ "-ssl_dist_opt server_cacertfile " ++ SCA ++ " "
++ "-ssl_dist_opt server_verify verify_peer "
++ "-ssl_dist_opt server_fail_if_no_peer_cert true "
++ "-ssl_dist_opt client_certfile " ++ CC ++ " "
++ "-ssl_dist_opt client_keyfile " ++ CK ++ " "
++ "-ssl_dist_opt client_cacertfile " ++ CCA ++ " "
++ "-ssl_dist_opt client_verify verify_peer "
++ TlsVerifyOpts;
_ -> %% No verify, no extra opts
"-proto_dist inet_tls " ++ "-ssl_dist_opt server_certfile " ++ SC ++ " "
++ "-ssl_dist_opt server_keyfile " ++ SK ++ " " ++ "-ssl_dist_opt client_verify verify_none "
end
end.
%%
%% Start scripts etc...
%%
add_ssl_opts_config(Config) ->
%%
%% Start with boot scripts if on an installed system; otherwise,
%% just point out ssl ebin with -pa.
%%
try
Dir = proplists:get_value(priv_dir, Config),
LibDir = code:lib_dir(),
Apps = application:which_applications(),
{value, {stdlib, _, STDL_VSN}} = lists:keysearch(stdlib, 1, Apps),
{value, {kernel, _, KRNL_VSN}} = lists:keysearch(kernel, 1, Apps),
StdlDir = filename:join([LibDir, "stdlib-" ++ STDL_VSN]),
KrnlDir = filename:join([LibDir, "kernel-" ++ KRNL_VSN]),
{ok, _} = file:read_file_info(StdlDir),
{ok, _} = file:read_file_info(KrnlDir),
SSL_VSN = get_app_vsn(ssl),
VSN_CRYPTO = get_app_vsn(crypto),
VSN_ASN1 = get_app_vsn(asn1),
VSN_PKEY = get_app_vsn(public_key),
SslDir = filename:join([LibDir, "ssl-" ++ SSL_VSN]),
{ok, _} = file:read_file_info(SslDir),
%% We are using an installed otp system, create the boot script.
Script = filename:join(Dir, atom_to_list(?MODULE)),
{ok, RelFile} = file:open(Script ++ ".rel", [write]),
io:format(RelFile,
"{release, ~n"
" {\"SSL distribution test release\", \"~s\"},~n"
" {erts, \"~s\"},~n"
" [{kernel, \"~s\"},~n"
" {stdlib, \"~s\"},~n"
" {crypto, \"~s\"},~n"
" {asn1, \"~s\"},~n"
" {public_key, \"~s\"},~n"
" {ssl, \"~s\"}]}.~n",
[case catch erlang:system_info(otp_release) of
{'EXIT', _} -> "R11B";
Rel -> Rel
end,
erlang:system_info(version),
KRNL_VSN,
STDL_VSN,
VSN_CRYPTO,
VSN_ASN1,
VSN_PKEY,
SSL_VSN]),
ok = file:close(RelFile),
?CT_LOG("Bootscript: ~p", [Script]),
case systools:make_script(Script, []) of
ok ->
ok;
NotOk ->
?CT_PAL("Bootscript problem: ~p", [NotOk]),
erlang:error(NotOk)
end,
[{app_opts, "-boot " ++ Script} | Config]
catch
Class : Reason : Stacktrace ->
?CT_LOG("Exception while generating bootscript:~n~p",
[{Class, Reason, Stacktrace}]),
[{app_opts, "-pa \"" ++ filename:dirname(code:which(ssl))++"\""}
| add_comment_config(
"Bootscript wasn't used since the test wasn't run on an "
"installed OTP system.",
Config)]
end.
add_comment_config(Comment, []) ->
[{comment, Comment}];
add_comment_config(Comment, [{comment, OldComment} | Cs]) ->
[{comment, Comment ++ " " ++ OldComment} | Cs];
add_comment_config(Comment, [C|Cs]) ->
[C|add_comment_config(Comment, Cs)].
success(Config) ->
case lists:keysearch(comment, 1, Config) of
{value, {comment, _} = Res} -> Res;
_ -> ok
end.
get_app_vsn(erts) ->
erlang:system_info(version);
get_app_vsn(App) ->
application:load(App),
{ok, AppKeys} = application:get_all_key(App),
proplists:get_value(vsn, AppKeys).
verify_fail_always(_Certificate, _Event, _State) ->
%% Create an ETS table, to record the fact that the verify function ran.
%% Spawn a new process, to avoid the ETS table disappearing.
Parent = self(),
spawn(
fun() ->
catch ets:delete(verify_fun_ran),
ets:new(verify_fun_ran, [public, named_table]),
ets:insert(verify_fun_ran, {verify_fail_always_ran, true}),
Parent ! go_ahead,
timer:sleep(infinity)
end),
receive go_ahead -> ok end,
{fail, bad_certificate}.
verify_pass_always(_Certificate, _Event, State) ->
%% Create an ETS table, to record the fact that the verify function ran.
%% Spawn a new process, to avoid the ETS table disappearing.
Parent = self(),
spawn(
fun() ->
catch ets:delete(verify_fun_ran),
ets:new(verify_fun_ran, [public, named_table]),
ets:insert(verify_fun_ran, {verify_pass_always_ran, true}),
Parent ! go_ahead,
timer:sleep(infinity)
end),
receive go_ahead -> ok end,
{valid, State}.
verify_tls(NH1, NH2) ->
%% Verify that distribution protocol between nodes is TLS
Node1 = NH1#node_handle.nodename,
Node2 = NH2#node_handle.nodename,
{ok,NodeInfo2} = apply_on_ssl_node(NH1, net_kernel, node_info, [Node2]),
{ok,NodeInfo1} = apply_on_ssl_node(NH2, net_kernel, node_info, [Node1]),
{address,#net_address{protocol = tls}} =
lists:keyfind(address, 1, NodeInfo1),
{address,#net_address{protocol = tls}} =
lists:keyfind(address, 1, NodeInfo2),
ok.
localhost_ip(InetVer) ->
{ok, Addr} = inet:getaddr(net_adm:localhost(), InetVer),
Addr.
localhost_ipstr(InetVer) ->
{ok, Addr} = inet:getaddr(net_adm:localhost(), InetVer),
Str = case InetVer of
inet ->
io_lib:format("{~p,~p,~p,~p}", erlang:tuple_to_list(Addr));
inet6 ->
io_lib:format("{~p,~p,~p,~p,~p,~p,~p,~p}", erlang:tuple_to_list(Addr))
end,
Qouted = case os:type() of
{win32, _} -> Str;
_ -> [$',Str,$']
end,
lists:flatten(Qouted).
inet_ver() ->
inet.
rsa_root_key(N) ->
%% As rsa keygen is not guaranteed to be fast
{key, ssl_test_lib:hardcode_rsa_key(N)}.
rsa_peer_key(N) ->
%% As rsa keygen is not guaranteed to be fast
{key, ssl_test_lib:hardcode_rsa_key(N)}.
rsa_intermediate_conf(N) ->
[{key, ssl_test_lib:hardcode_rsa_key(N)}, {digest, sha256}].
maybe_quote_tuple_list(String) ->
case os:cmd("echo [{a,1}]") of
"[{a,1}]"++_ ->
String;
_ ->
%% Some shells need quoting of [{}]
"'"++String++"'"
end.
|