summaryrefslogtreecommitdiff
path: root/src/couch_dist/src/couch_dist.erl
blob: 9a6b26d0703b68989016836c618d71bbd7c6dc9b (plain)
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
% 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.

-module(couch_dist).

-export([
    childspecs/0,
    listen/2,
    accept/1,
    accept_connection/5,
    setup/5,
    close/1,
    select/1,
    is_node_name/1
]).

% Just for tests
-export([no_tls/1, get_init_args/0]).

childspecs() ->
    {ok, [
        {ssl_dist_sup, {ssl_dist_sup, start_link, []}, permanent, infinity, supervisor, [
            ssl_dist_sup
        ]}
    ]}.

listen(Name, Host) ->
    NodeName =
        case is_atom(Name) of
            true -> atom_to_list(Name);
            false -> Name
        end,
    Mod = inet_dist(NodeName ++ "@" ++ Host),
    Mod:listen(NodeName, Host).

accept(Listen) ->
    Mod = inet_dist(node()),
    Mod:accept(Listen).

accept_connection(AcceptPid, DistCtrl, MyNode, Allowed, SetupTime) ->
    Mod = inet_dist(MyNode),
    Mod:accept_connection(AcceptPid, DistCtrl, MyNode, Allowed, SetupTime).

setup(Node, Type, MyNode, LongOrShortNames, SetupTime) ->
    Mod = inet_dist(Node),
    Mod:setup(Node, Type, MyNode, LongOrShortNames, SetupTime).

close(Socket) ->
    inet_tls_dist:close(Socket).

select(Node) ->
    inet_tls_dist:select(Node).

is_node_name(Node) ->
    inet_tls_dist:is_node_name(Node).

get_init_args() ->
    init:get_argument(couch_dist).

inet_dist(Node) ->
    case no_tls(Node) of
        true -> inet_tcp_dist;
        false -> inet_tls_dist
    end.

no_tls(NodeName) when is_atom(NodeName) ->
    no_tls(atom_to_list(NodeName));
no_tls(NodeName) when is_list(NodeName) ->
    case ?MODULE:get_init_args() of
        {ok, Args} ->
            GlobPatterns = [V || [K, V] <- Args, K == "no_tls"],
            lists:any(fun(P) -> match(NodeName, P) end, GlobPatterns);
        error ->
            false
    end.

match(_NodeName, "true") ->
    true;
match(_NodeName, "false") ->
    false;
match(NodeName, Pattern) ->
    {ok, RE} =
        case string:split(Pattern, [$"], all) of
            ["", GlobPattern, ""] -> to_re(GlobPattern);
            _ -> to_re(Pattern)
        end,
    re:run(NodeName, RE) /= nomatch.

to_re(GlobPattern) ->
    re:compile([$^, lists:flatmap(fun glob_re/1, GlobPattern), $$]).

glob_re($*) ->
    ".*";
glob_re($?) ->
    ".";
glob_re(C) ->
    [C].