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
|
(***********************************************************************)
(* wserver.ml - simple web server code *)
(* *)
(* Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, *)
(* 2011, 2012, 2013 Yaron Minsky and Contributors *)
(* *)
(* This file is part of SKS. SKS is free software; you can *)
(* redistribute it and/or modify it under the terms of the GNU General *)
(* Public License as published by the Free Software Foundation; either *)
(* version 2 of the License, or (at your option) any later version. *)
(* *)
(* This program is distributed in the hope that it will be useful, but *)
(* WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *)
(* General Public License for more details. *)
(* *)
(* You should have received a copy of the GNU General Public License *)
(* along with this program; if not, write to the Free Software *)
(* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *)
(* USA or see <http://www.gnu.org/licenses/>. *)
(***********************************************************************)
open StdLabels
open MoreLabels
open Printf
open Common
module Unix = UnixLabels
open Unix
module Map = PMap.Map
module Set = PSet.Set
exception Page_not_found of string
exception No_results of string
exception Not_implemented of string
exception Bad_request of string
exception Entity_too_large of string
exception Misc_error of string
let ( |= ) map key = Map.find key map
let ( |< ) map (key,data) = Map.add ~key ~data map
let hexa_digit x =
if x >= 10 then Char.chr (Char.code 'A' + x - 10)
else Char.chr (Char.code '0' + x)
let hexa_val conf =
match conf with
'0'..'9' -> Char.code conf - Char.code '0'
| 'a'..'f' -> Char.code conf - Char.code 'a' + 10
| 'A'..'F' -> Char.code conf - Char.code 'A' + 10
| _ -> 0
let decode s =
let rec need_decode i =
if i < String.length s then
match s.[i] with
'%' | '+' -> true
| _ -> need_decode (succ i)
else false
in
let rec compute_len i i1 =
if i < String.length s then
let i =
match s.[i] with
'%' when i + 2 < String.length s -> i + 3
| _ -> succ i
in
compute_len i (succ i1)
else i1
in
let rec copy_decode_in s1 i i1 =
if i < String.length s then
let i =
match s.[i] with
'%' when i + 2 < String.length s ->
let v = hexa_val s.[i + 1] * 16 + hexa_val s.[i + 2] in
Bytes.set s1 i1 (Char.chr v); i + 3
| '+' -> Bytes.set s1 i1 ' '; succ i
| x -> Bytes.set s1 i1 x; succ i
in
copy_decode_in s1 i (succ i1)
else Bytes.unsafe_to_string s1
in
(* FIXME o_O *)
let rec strip_heading_and_trailing_spaces s =
if String.length s > 0 then
if s.[0] == ' ' then
strip_heading_and_trailing_spaces
(String.sub s 1 (String.length s - 1))
else if s.[String.length s - 1] == ' ' then
strip_heading_and_trailing_spaces
(String.sub s 0 (String.length s - 1))
else s
else s
in
if need_decode 0 then
let len = compute_len 0 0 in
let s1 = Bytes.create len in
strip_heading_and_trailing_spaces (copy_decode_in s1 0 0)
else s
let special x = List.mem x ['='; '&'; '"'; '\r'; '\n'; '+']
let encode s =
let rec need_code i =
if i < String.length s then
match s.[i] with
' ' -> true
| x -> if special x then true else need_code (succ i)
else false
in
let rec compute_len i i1 =
if i < String.length s then
let i1 = if special s.[i] then i1 + 3 else succ i1 in
compute_len (succ i) i1
else i1
in
let rec copy_code_in s1 i i1 =
if i < String.length s then
let i1 =
match s.[i] with
' ' -> Bytes.set s1 i1 '+'; succ i1
| c ->
if special c then
begin
Bytes.set s1 i1 '%';
Bytes.set s1 (i1 + 1) (hexa_digit (Char.code c / 16));
Bytes.set s1 (i1 + 2) (hexa_digit (Char.code c mod 16));
i1 + 3
end
else begin Bytes.set s1 i1 c; succ i1 end
in
copy_code_in s1 (succ i) i1
else Bytes.unsafe_to_string s1
in
if need_code 0 then
let len = compute_len 0 0 in copy_code_in (Bytes.create len) 0 0
else s
let stripchars = Set.of_list [ ' '; '\t'; '\n'; '\r' ]
let strip s =
let start = ref 0 in
while (!start < String.length s
&& Set.mem s.[!start] stripchars) do
incr start
done;
let stop = ref (String.length s - 1) in
while (!stop >= 0 && Set.mem s.[!stop] stripchars) do
decr stop
done;
if !stop >= !start then
String.sub s ~pos:!start ~len:(!stop - !start + 1)
else
""
type 'a request = | GET of (string * (string,string) Map.t)
| POST of (string * (string,string) Map.t * 'a)
let whitespace = Str.regexp "[ \t\n\r]+"
let eol = Str.regexp "\r?\n"
let get_all cin =
let buf = Buffer.create 0 in
(try Buffer.add_channel buf cin 10000
with End_of_file -> ());
Buffer.contents buf
let get_lines cin =
Str.split eol (get_all cin)
let max_post_length = 5 * 1024 * 1024 (* posts restricted to 5 Megs or less *)
let parse_post headers cin =
try
let lengthstr = headers |= "content-length" in
let len = int_of_string lengthstr in
if len > max_post_length
then raise (Entity_too_large (sprintf "POST data too long: %f megs"
(float len /. 1024. /. 1024.)));
let rest = Bytes.create len in
really_input cin rest 0 len;
Bytes.unsafe_to_string rest
with
Not_found ->
failwith "parse_post failed for lack of a content-length header"
let is_blank line =
String.length line = 0 || line.[0] = '\r'
let rec parse_headers map cin =
let line = input_line cin in (* DoS attack: input_line is unsafe on sockets *)
if is_blank line then map
else
let colonpos = try String.index line ':' with
Not_found -> failwith "Error parsing headers: no colon found"
in
let key = String.sub line ~pos:0 ~len:colonpos
and data = String.sub line ~pos:(colonpos + 1)
~len:(String.length line - colonpos - 1)
in
parse_headers (map |< (Utils.lowercase key, strip data)) cin
let parse_request cin =
let line = input_line cin in (* DoS attack: input_line is unsafe on sockets *)
let pieces = Str.split whitespace line in
let headers = parse_headers Map.empty cin in
match List.hd pieces with
"GET" -> GET (List.nth pieces 1,headers)
| "POST" -> POST (List.nth pieces 1,headers,
parse_post headers cin)
| _ -> failwith "Malformed header"
let headers_to_string map =
let pieces = List.map ~f:(fun (x,y) -> sprintf "%s:%s" x y)
(Map.to_alist map)
in
"\n" ^ (String.concat "\n" pieces)
let request_to_string request =
let (kind,req,headers) =
match request with
| GET (req,header_map) ->
("GET",req,headers_to_string header_map)
| POST (req,header_map,_) ->
("POST",req,headers_to_string header_map)
in
sprintf "(%s,%s,[%s])" kind req headers
let request_to_string_short request =
let (kind,request) =
match request with
| GET (req,header_map) ->
("GET",req)
| POST (req,header_map,_) ->
("POST",req)
in
sprintf "(%s %s)" kind request
let request_to_string_logdepend request =
if !Settings.debuglevel < 6 then
request_to_string_short request
else request_to_string request
(* Result codes and descriptions from *)
(* https://support.google.com/webmasters/bin/answer.py?hl=en&answer=40132 *)
(* send_result exposes a completely open CORS policy, so use only with public data. *)
let send_result cout ?(error_code = 200) ?(content_type = "text/html; charset=UTF-8") ?(count = -1) body =
let text_status =
match error_code with
| 200 -> "OK"
| 201 -> "Created"
| 202 -> "Accepted"
| 203 -> "Non-Authoritative Information"
| 204 -> "No Content"
| 205 -> "Reset Content"
| 206 -> "Partial Content"
| 300 -> "Multiple Choices"
| 301 -> "Moved Permanently"
| 302 -> "Moved Temporarily"
| 303 -> "See Other Location"
| 304 -> "Not Modified"
| 305 -> "Use Proxy"
| 307 -> "Temporary Redirect"
| 400 -> "Bad Request"
| 401 -> "Not Authorized"
| 403 -> "Forbidden"
| 404 -> "Not found"
| 405 -> "Method Not Allowed"
| 406 -> "Not Acceptable"
| 407 -> "Proxy Authentication Required"
| 408 -> "Request Timeout"
| 409 -> "Conflict"
| 410 -> "Gone"
| 411 -> "Length Required"
| 412 -> "Precondition Failed"
| 413 -> "Request Entity too Large"
| 414 -> "Requested URI too Large"
| 415 -> "Unsupported Media Type"
| 416 -> "Requested Range not Satisfiable"
| 417 -> "Expectation Failed"
| 500 -> "Internal Server Error"
| 501 -> "Not Implemented"
| 502 -> "Bad Gateway"
| 503 -> "Service Unavailable"
| 504 -> "Gateway Timeout"
| 505 -> "HTTP Version Not Supported"
| _ -> "???"
in
fprintf cout "HTTP/1.0 %03d %s\r\n" error_code text_status;
fprintf cout "Server: sks_www/%s%s\r\n" version version_suffix;
fprintf cout "Cache-Control: no-cache\r\n";
fprintf cout "Pragma: no-cache\r\n";
fprintf cout "Expires: 0\r\n";
fprintf cout "Content-length: %u\r\n" (String.length body + 2);
if count >= 0 then
fprintf cout "X-HKP-Results-Count: %d\r\n" count;
fprintf cout "Content-type: %s\r\n" content_type;
(*
* Hack to force content-disposition for machine readable get request.
* This should probably be passed down in the request itself.
*)
if content_type = "application/pgp-keys; charset=UTF-8" then
fprintf cout "Content-disposition: attachment; filename=gpgkey.asc\r\n";
(*
* Allow access from Javascript code on other sites.
* For details, see https://en.wikipedia.org/wiki/Cross-origin_resource_sharing.
* This is safe since all information on keyservers is public.
*)
fprintf cout "Access-Control-Allow-Origin: *\r\n";
(*
* End Headers here with a final newline
*)
fprintf cout "\r\n";
fprintf cout "%s\r\n" body;
flush cout
let accept_connection f ~recover_timeout addr cin cout =
begin
try
let request = parse_request cin in
let output_chan = Channel.new_buffer_outc 0 in
try
let (content_type, count) = f addr request output_chan#upcast in
let output = output_chan#contents in
send_result cout ~content_type ~count output
with
| Eventloop.SigAlarm ->
ignore (Unix.alarm recover_timeout);
plerror 2 "request %s timed out" (request_to_string request);
let output =
HtmlTemplates.page ~title:"Time Out"
~body:(sprintf "Error handling request %s: Timed out after %d seconds"
(request_to_string_short request) !Settings.wserver_timeout)
in
send_result cout ~error_code:408 output
| Sys.Break as e ->
plerror 1 "Break occurred while processing HKP request %s"
(request_to_string request);
raise e
| Not_implemented s ->
ignore (Unix.alarm recover_timeout);
plerror 2 "Error handling request %s: %s"
(request_to_string request) ("Not implemented: " ^ s);
let output =
HtmlTemplates.page ~title:"Not implemented"
~body:(sprintf "Error handling request %s: %s not implemented."
(request_to_string request) (HtmlTemplates.html_quote s))
in
send_result cout ~error_code:501 output
| Page_not_found s ->
ignore (Unix.alarm recover_timeout);
plerror 2 "Page not found: %s" s;
let output = HtmlTemplates.page ~title:"Page not found"
~body:(sprintf "Page not found: %s" (HtmlTemplates.html_quote s))
in
send_result cout ~error_code:404 output
| Bad_request s ->
ignore (Unix.alarm recover_timeout);
plerror 2 "Bad request %s: %s"
(request_to_string_logdepend request) s;
let output = HtmlTemplates.page ~title:"Bad request"
~body:(sprintf "Bad request: %s" (HtmlTemplates.html_quote s))
in
send_result cout ~error_code:400 output
| No_results s ->
ignore (Unix.alarm recover_timeout);
plerror 2 "No results for request %s: %s"
(request_to_string_logdepend request) s;
let output = HtmlTemplates.page ~title:"No results found"
~body:(sprintf "No results found: %s" (HtmlTemplates.html_quote s))
in
send_result cout ~error_code:404 output
| Entity_too_large s ->
ignore (Unix.alarm recover_timeout);
plerror 2 "Error handling request %s: %s"
(request_to_string request) s;
let output = HtmlTemplates.page ~title:"Request Entity Too Large"
~body:(sprintf "Request Entity Too Large: %s" (HtmlTemplates.html_quote s))
in
send_result cout ~error_code:413 output
| Misc_error s ->
ignore (Unix.alarm recover_timeout);
plerror 2 "Error handling request %s: %s"
(request_to_string request) s;
let output = HtmlTemplates.page ~title:"Error handling request"
~body:(sprintf "Error handling request: %s" (HtmlTemplates.html_quote s))
in
send_result cout ~error_code:500 output
| e ->
ignore (Unix.alarm recover_timeout);
plerror 2 "Error handling request %s: %s"
(request_to_string request) (Common.err_to_string e);
let output =
(HtmlTemplates.page ~title:"Error handling request"
~body:(sprintf "Error handling request. Exception raised."))
in
send_result cout ~error_code:500 output
with
| Sys.Break as e -> raise e
| Eventloop.SigAlarm ->
ignore (Unix.alarm recover_timeout);
let output =
HtmlTemplates.page ~title:"Timeout"
~body:(sprintf "Request timed during request parsing after %d seconds"
!Settings.wserver_timeout)
in
send_result cout ~error_code:408 output
| e ->
eplerror 5 e "Miscellaneous error"
end;
[]
|