summaryrefslogtreecommitdiff
path: root/src/dnssecport.erl
blob: 804e727f3687c25679943a7396d8b140fbc47236 (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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
%%% Copyright (c) 2016, NORDUnet A/S.
%%% See LICENSE for licensing information.

-module(dnssecport).
-behaviour(gen_server).
-export([start_link/0, stop/0]).
-export([validate/2]).
%% gen_server callbacks.
-export([init/1, handle_call/3, terminate/2, handle_cast/2, handle_info/2,
         code_change/3]).

-include_lib("eunit/include/eunit.hrl").

start_link() ->
    gen_server:start_link({local, ?MODULE}, ?MODULE,
                          [code:priv_dir(catlfish) ++ "/dnssecport"], []).

stop() ->
    gen_server:call(?MODULE, stop).

validate(ValidateRR, SupportRRs) ->
    gen_server:call(?MODULE, {validate, [ValidateRR, SupportRRs]}).

-record(state, {port :: port()}).

init(Program) ->
    lager:debug("starting dnssec service"),
    Port = create_port(Program, []), % TODO: Pass path to dir with trust root.
    {ok, #state{port = Port}}.

handle_call(stop, _From, State) ->
    lager:debug("dnssec stop request received"),
    stop_port(State);
handle_call({validate, [ValidateRR, SupportRRs]}, _From, State) ->
    lager:debug("dnssec validate incoming request: ~p", [ValidateRR]),
    case State#state.port of
        undefined ->
            {error, noport};
        Port when is_port(Port) ->
            S = list_to_binary(SupportRRs),
            Port ! {self(), {command, <<ValidateRR/binary, S/binary>>}},
            receive
                {Port, {data, Response}} ->
                    lager:debug("received response from dnssec port: ~p", 
                                [Response]),
                    case Response of
                        "valid" ->
                            {reply, ok, State};
                        Err ->
                            {reply, {error, Err}, State}
                    end;
                {Port, {exit_status, ExitStatus}} ->
                    lager:error("dnssec port ~p exiting with status ~p",
                                [Port, ExitStatus]),
                    {stop, portexit, State#state{port = undefined}}
            after
                3000 ->
                    lager:error("dnssec port timeout"),
                    {stop, timeout, State}
            end
    end.

handle_info(_Info, State)           ->
    {noreply, State}.

code_change(_OldVsn, State, _Extra) ->
    {ok, State}.

handle_cast(_Request, State)        ->
    {noreply, State}.

terminate(Reason, _State)           ->
    lager:info("dnssec port terminating: ~p", [Reason]),
    ok.

%%%%%%%%%%%%%%%%%%%%
create_port(Program, Args)          ->
    open_port({spawn_executable, Program},
              [{args, Args},
               exit_status,             % Let us know if process dies.
               {packet, 4}]).

stop_port(State) ->
    Port = State#state.port,
    Port ! {self(), close},
    receive
        {Port, closed} ->
            {stop, closed, State#state{port = undefined}};
        {Port, Msg} ->
            lager:debug("message received from dying port: ~p", [Msg]),
            {stop, unknown, State#state{port = undefined}}
    after
        2000 ->
            lager:error("dnssec port ~p refuses to die", [Port]),
            {stop, timeout, State}
    end.

%%%%%%%%%%%%%%%%%%%%
%% Unit tests.
start_test_port(TestType) ->
    Port = create_port("priv/dnssecport", ["--testmode", atom_to_list(TestType)]),
    ?debugFmt("Port: ~p", [Port]),
    Port.
stop_test_port(Port) ->
    {stop, closed, _State} = stop_port(#state{port = Port}),
    ok.

err_test_() ->
    {setup,
     fun() -> start_test_port(err) end,
     fun(Port) -> stop_test_port(Port) end,
     fun(Port)  ->
             R = handle_call({validate, [<<"invalid-DS">>, []]}, 
                             self(), #state{port = Port}),
             [
              ?_assertMatch({reply, {error, "err"}, _State}, R)
             ] 
     end}.

ok_test_() ->
    {setup,
     fun() -> start_test_port(ok) end,
     fun(Port) -> stop_test_port(Port) end,
     fun(Port)  ->
             R = handle_call({validate, [<<"invalid-DS">>, []]},
                             self(), #state{port = Port}),
             [
              ?_assertMatch({reply, ok, _State}, R)
             ]
     end}.