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
|
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2005-2010. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
%% compliance with the License. You should have received a copy of the
%% Erlang Public License along with this software. If not, it can be
%% retrieved online at http://www.erlang.org/.
%%
%% Software distributed under the License is distributed on an "AS IS"
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
%% the License for the specific language governing rights and limitations
%% under the License.
%%
%% %CopyrightEnd%
%%
%%
-module(httpd_cgi).
-export([parse_headers/1, handle_headers/1]).
-include_lib("inets/src/inets_app/inets_internal.hrl").
%%%=========================================================================
%%% Internal application API
%%%=========================================================================
%%--------------------------------------------------------------------------
%% parse_headers([Bin, Data, Header, Headers]) -> {RevHeaders, Body} |
%% {Module, Function, Args}
%% Bin = Data = binary()
%% Header = string() - Accumulator should be [] in first call
%% Headers = [Header] - Accumulator should be [] in first call
%% Body = string()
%% RevHeaders = string() - Note CGI-headers not HTTP-headers
%%
%% Description: Parses "<<Bin/binary, Data/binary>>" returned from the
%% CGI-script until it findes the end of the CGI-headers (at least one
%% CGI-HeaderField must be supplied) then it returns the CGI-headers
%% and maybe some body data. If {Module, Function, Args} is
%% returned it means that more data needs to be collected from the
%% cgi-script as the end of the headers was not yet found. When more
%% data has been collected call Module:Function([NewData | Args]).
%%
%% NOTE: The headers are backwards and should
%% be so, devide_and_reverse_headers will reverse them back after
%% taking advantage of the fact that they where backwards.
%%--------------------------------------------------------------------------
parse_headers([Data, Bin, Header, Headers]) ->
parse_headers(<<Bin/binary, Data/binary>>, Header, Headers).
%%--------------------------------------------------------------------------
%% handle_headers(CGIHeaders) -> {ok, HTTPHeaders, StatusCode} |
%% {proceed, AbsPath}
%% CGIHeaders = [string()]
%% HTTPHeaders = [{HeaderField, HeaderValue}]
%% HeaderField = string()
%% HeaderValue = string()
%% StatusCode = integer()
%%
%% Description: Interprets CGI headers and creates HTTP headers and a
%% appropriate HTTP status code. Note if a CGI location header is present
%% the return value will be {proceed, AbsPath}
%%--------------------------------------------------------------------------
handle_headers(CGIHeaders) ->
handle_headers(CGIHeaders, [], {200, "ok"}).
%%%========================================================================
%%% Internal functions
%%%========================================================================
parse_headers(<<>>, Header, Headers) ->
{?MODULE, parse_headers, [<<>>, Header, Headers]};
parse_headers(<<?CR,?LF>>, Header, Headers) ->
{?MODULE, parse_headers, [<<?CR,?LF>>, Header, Headers]};
parse_headers(<<?LF>>, Header, Headers) ->
{?MODULE, parse_headers, [<<?LF>>, Header, Headers]};
parse_headers(<<?CR, ?LF, ?CR, ?LF, Rest/binary>>, Header, Headers) ->
{ok, {[lists:reverse([?LF, ?CR | Header]) | Headers], Rest}};
parse_headers(<<?LF, ?LF, Rest/binary>>, Header, Headers) ->
{ok, {[lists:reverse([?LF | Header]) | Headers], Rest}};
parse_headers(<<?CR, ?LF, Rest/binary>>, Header, Headers) ->
parse_headers(Rest, [], [lists:reverse([?LF, ?CR | Header]) | Headers]);
parse_headers(<<?LF, Rest/binary>>, Header, Headers) ->
parse_headers(Rest, [], [lists:reverse([?LF | Header]) | Headers]);
parse_headers(<<Octet, Rest/binary>>, Header, Headers) ->
parse_headers(Rest, [Octet | Header], Headers).
handle_headers([], HTTPHeaders, Status) ->
{ok, HTTPHeaders, Status};
handle_headers([CGIHeader | CGIHeaders], HTTPHeaders, Status) ->
{FieldName, FieldValue} = httpd_response:split_header(CGIHeader, []),
case FieldName of
"content-type" ->
handle_headers(CGIHeaders,
[{FieldName, FieldValue} | HTTPHeaders],
Status);
"location" ->
case http_request:is_absolut_uri(FieldValue) of
true ->
handle_headers(CGIHeaders,
[{FieldName, FieldValue} |
HTTPHeaders], {302, "Redirect"});
false ->
{proceed, FieldValue}
end;
"status" ->
CodePhrase =
case httpd_util:split(FieldValue," ",2) of
{ok,[Code, Phrase]} ->
{list_to_integer(Code), Phrase};
_ ->
{200, "OK"}
end,
handle_headers(CGIHeaders, HTTPHeaders, CodePhrase);
_ -> %% Extension headers
handle_headers(CGIHeaders,
[{FieldName, FieldValue} | HTTPHeaders], Status)
end.
|