summaryrefslogtreecommitdiff
path: root/src/v1.erl
blob: e066cddeaaf9cbfbbc6c4ec301e8a3d97acc95a1 (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
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
%%% Copyright (c) 2014-2015, NORDUnet A/S.
%%% See LICENSE for licensing information.

%%% @doc Certificate Transparency (RFC 6962)

-module(v1).
%% API (URL)
-export([request/3]).

check_valid_sth() ->
    case plop:sth() of
        noentry ->
            lager:error("No valid STH found"),
            exit({internalerror, "No valid STH found"});
        {struct, PropList} ->
            Now = plop:generate_timestamp(),
            Timestamp = proplists:get_value(<<"timestamp">>, PropList),
            MMD = application:get_env(catlfish, mmd, 86400) * 1000,
            if
                Now - Timestamp > MMD ->
                    lager:error("Old STH found, " ++
                                    "now: ~p, STH timestamp: ~p, diff: ~p",
                                [Now, Timestamp, Now - Timestamp]),
                    exit({internalerror, "No valid STH found"});
                true ->
                    ok
            end
    end.

%% Public functions, i.e. part of URL.
request(post, "ct/v1/add-chain", Input) ->
    check_valid_sth(),
    add_chain(Input, normal);

request(post, "ct/v1/add-pre-chain", Input) ->
    check_valid_sth(),
    add_chain(Input, precert);

request(get, "ct/v1/get-sth", _Query) ->
    check_valid_sth(),
    case plop:sth() of
        noentry ->
            lager:error("No valid STH found"),
            internalerror("No valid STH found");
        R ->
            success(R)
    end;

request(get, "ct/v1/get-sth-consistency", Query) ->
    check_valid_sth(),
    case lists:sort(Query) of
        [{"first", FirstInput}, {"second", SecondInput}] ->
            {First, _} = string:to_integer(FirstInput),
            {Second, _} = string:to_integer(SecondInput),
            case lists:member(error, [First, Second]) of
                true ->
                    err400("get-sth-consistency: bad input:",
                           [FirstInput, SecondInput]);
                false ->
                    success(
                      {[{consistency,
                         [base64:encode(X) ||
                             X <- plop:consistency(First, Second)]}]})
            end;
        _ -> err400("get-sth-consistency: bad input:", Query)
    end;

request(get, "ct/v1/get-proof-by-hash", Query) ->
    check_valid_sth(),
    case lists:sort(Query) of
        [{"hash", HashInput}, {"tree_size", TreeSizeInput}] ->
            Hash = case (catch base64:decode(HashInput)) of
                       {'EXIT', _} -> error;
                       H -> H
                   end,
            {TreeSize, _} = string:to_integer(TreeSizeInput),
            case lists:member(error, [Hash, TreeSize]) of
                true ->
                    err400("get-proof-by-hash: bad input:",
                           [HashInput, TreeSizeInput]);
                false ->
                      case plop:inclusion(Hash, TreeSize) of
                          {ok, Index, Path} ->
                              success({[{leaf_index, Index},
                                        {audit_path,
                                         [base64:encode(X) || X <- Path]}]});
                          {notfound, Msg} ->
                              err400("get-proof-by-hash: hash not found", Msg)
                      end
            end;
        _ -> err400("get-proof-by-hash: bad input:", Query)
    end;

request(get, "ct/v1/get-entries", Query) ->
    check_valid_sth(),
    case lists:sort(Query) of
        [{"end", EndInput}, {"start", StartInput}] ->
            {Start, _} = string:to_integer(StartInput),
            {End, _} = string:to_integer(EndInput),
            case lists:member(error, [Start, End]) of
                true -> err400("get-entries: bad input:", [Start, End]);
                false -> success(
                           catlfish:entries(Start, min(End, Start + 999)))
            end;
        _ -> err400("get-entries: bad input:", Query)
    end;

request(get, "ct/v1/get-entry-and-proof", Query) ->
    check_valid_sth(),
    case lists:sort(Query) of
        [{"leaf_index", IndexInput}, {"tree_size", TreeSizeInput}] ->
            {Index, _} = string:to_integer(IndexInput),
            {TreeSize, _} = string:to_integer(TreeSizeInput),
            case lists:member(error, [Index, TreeSize]) of
                true ->
                    err400("get-entry-and-proof: not integers: ",
                           [IndexInput, TreeSizeInput]);
                false -> success(catlfish:entry_and_proof(Index, TreeSize))
            end;
        _ -> err400("get-entry-and-proof: bad input:", Query)
    end;

request(get, "ct/v1/get-roots", _Query) ->
    check_valid_sth(),
    R = [{certificates,
          [base64:encode(Der) ||
              Der <- catlfish:update_known_roots()]}],
    success({R});

request(_Method, _Path, _) ->
    none.

%% Private functions.
err400(Text, Input) ->
    {400, [{"Content-Type", "text/html"}],
     io_lib:format(
       "<html><body><p>~n" ++
           "~s~n" ++
           "~p~n" ++
           "</body></html>~n", [Text, Input])}.

success(Data) ->
    {200, [{"Content-Type", "text/json"}], mochijson2:encode(Data)}.

internalerror(Text) ->
    {500, [{"Content-Type", "text/html"}],
     io_lib:format(
       "<html><body><p>~n" ++
           "~s~n" ++
           "</body></html>~n", [Text])}.

-spec add_chain(any(), normal|precert) -> any().
add_chain(Input, Type) ->
    case (catch mochijson2:decode(Input)) of
        {error, E} ->
            err400("add-chain: bad input:", E);
        {struct, [{<<"chain">>, ChainB64List}]} ->
            case decode_chain(ChainB64List) of
                [LeafCert | CertChain] ->
                    case x509:normalise_chain(catlfish:known_roots(),
                                              [LeafCert|CertChain]) of
                        {ok, [Leaf | Chain]} ->
                            lager:info("adding ~p cert ~p",
                                       [Type, x509:cert_string(LeafCert)]),
                            success(catlfish:add_chain(Leaf, Chain, Type));
                        {error, Reason} ->
                            lager:info("rejecting ~p: ~p",
                                       [x509:cert_string(LeafCert), Reason]),
                            err400("add-chain: invalid chain", Reason)
                    end;
                {invalid, ErrText} ->
                    err400(io:format("add-chain: ~p", [ErrText]), [ChainB64List])
            end;
        _ -> err400("add-chain: missing input: chain", Input)
    end.

-spec decode_chain(string()) -> {invalid, string()} | [binary()].
decode_chain(B64List) ->
    case (catch [base64:decode(X) || X <- B64List]) of
        {'EXIT', _} -> {invalid, "invalid base64-encoded chain"};
        L -> L
    end.