package ocsigenserver
A full-featured and extensible Web server
Install
Dune Dependency
Authors
Maintainers
Sources
5.1.2.tar.gz
md5=cc9afaa6cad28fb2b6c803ed6cec308f
sha512=9096bc31a55f9d47f5f9b708b16d8b32cfcab99e514bce086046cf78e9731076bf2adac7e68b4291f3a0e65048e70e7c43fa2df8b80ae0eed62840db3e216b77
doc/src/ocsigenserver.baselib/ocsigen_lib.ml.html
Source file ocsigen_lib.ml
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 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473
(* Ocsigen * Copyright (C) 2005 Vincent Balat * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, with linking exception; * either version 2.1 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser 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. *) include Ocsigen_lib_base module String = String_base (*****************************************************************************) module Ip_address = struct exception No_such_host let get_inet_addr ?(v6 = false) host = let rec aux = function | [] -> Lwt.fail No_such_host | {Unix.ai_addr = Unix.ADDR_INET (inet_addr, _); _} :: _ -> Lwt.return inet_addr | _ :: l -> aux l in let options = [ (if v6 then Lwt_unix.AI_FAMILY Lwt_unix.PF_INET6 else Lwt_unix.AI_FAMILY Lwt_unix.PF_INET) ] in Lwt.bind (Lwt_unix.getaddrinfo host "" options) aux let of_sockaddr = function | Unix.ADDR_INET (ip, _port) -> ip | _ -> raise (Ocsigen_Internal_Error "ip of unix socket") end (*****************************************************************************) module Filename = struct include Filename let basename f = let n = String.length f in let i = try String.rindex f '\\' + 1 with Not_found -> 0 in let j = try String.rindex f '/' + 1 with Not_found -> 0 in let k = max i j in if k < n then String.sub f k (n - k) else "none" let extension_no_directory filename = try let pos = String.rindex filename '.' in String.sub filename (pos + 1) (String.length filename - pos - 1) with Not_found -> raise Not_found let extension filename = try let pos = String.rindex filename '.' and slash = try String.rindex filename '/' with Not_found -> -1 in if pos > slash then String.sub filename (pos + 1) (String.length filename - pos - 1) else (* Dot before a directory separator *) raise Not_found with Not_found -> (* No dot in filename *) raise Not_found end (*****************************************************************************) let make_cryptographic_safe_string = let rng = Cryptokit.Random.device_rng "/dev/urandom" in fun () -> let random_part = let random_number = Cryptokit.Random.string rng 20 in let to_b64 = Cryptokit.Base64.encode_compact () in Cryptokit.transform_string to_b64 random_number and sequential_part = (*VVV Use base 64 also here *) Printf.sprintf "%Lx" (Int64.bits_of_float (Unix.gettimeofday ())) in random_part ^ sequential_part (* The string is produced from the concatenation of two components: a 160-bit random sequence obtained from /dev/urandom, and a 64-bit sequential component derived from the system clock. The former is supposed to prevent session spoofing. The assumption is that given the high cryptographic quality of /dev/urandom, it is impossible for an attacker to deduce the sequence of random numbers produced. As for the latter component, it exists to prevent a theoretical (though infinitesimally unlikely) session ID collision if the server were to be restarted. *) module Netstring_pcre = struct module Pcre = Re.Pcre let regexp s = Pcre.regexp ~flags:[`MULTILINE] s let templ_re = Pcre.regexp "(?:\\\\\\d)|[\\$\\\\]" let tr_templ s g = (* Instantiate backreferences in s based on match g *) let b = Buffer.create (String.length s) in let rec tr l = match l with | Pcre.Delim "$" :: l' -> Buffer.add_char b '$'; tr l' | Pcre.Delim "\\" :: Pcre.Delim s :: l' -> Buffer.add_string b s; tr l' | Pcre.Delim "\\" :: Pcre.Text s :: l' -> Buffer.add_string b s; tr l' | [Pcre.Delim "\\"] -> failwith "trailing backslash" | Pcre.Delim d :: l' -> assert (d.[0] = '\\'); let n = Char.code d.[1] - Char.code '0' in Buffer.add_string b (Re.Group.get g n); tr l' | Pcre.Text t :: l' -> Buffer.add_string b t; tr l' | Pcre.Group (_, _) :: _ -> assert false | Pcre.NoGroup :: _ -> assert false | [] -> () in let l = Pcre.full_split ~rex:templ_re ~max:(-1) s in tr l; Buffer.contents b let matched_group result n _ = if n < 0 || n >= Re.Group.nb_groups result then raise Not_found; ignore (Pcre.get_substring_ofs result n); Pcre.get_substring result n let matched_string result _ = ignore (Pcre.get_substring_ofs result 0); Pcre.get_substring result 0 let global_replace pat templ s = Re.replace pat ~f:(tr_templ templ) s let global_substitute pat subst s = Re.replace pat ~f:(fun r -> subst r s) s let search_forward pat s pos = let result = Pcre.exec ~rex:pat ~pos s in fst (Pcre.get_substring_ofs result 0), result let string_after s n = String.sub s n (String.length s - n) let bounded_split expr text num = let rec split start n = if start >= String.length text then [] else if n = 1 then [string_after text start] else try let next_substrs = Pcre.exec ~rex:expr ~pos:start text in (* or Not_found *) let pos, match_end = Pcre.get_substring_ofs next_substrs 0 in if pos = 0 then split match_end n (* a leading match is ignored *) else String.sub text start (pos - start) :: split match_end (n - 1) with Not_found -> [string_after text start] in split 0 num let split sep s = bounded_split sep s 0 let string_match pat s pos = try let result = Pcre.exec ~rex:pat ~pos s in if Re.Group.start result 0 = pos then Some result else None with Not_found -> None end module Url = struct module Pcre = Re.Pcre include Url_base (* Taken from Neturl version 1.1.2 *) let problem_re1 = Netstring_pcre.regexp "[ <>\"{}|\\\\^\\[\\]`]" let fixup_url_string1 = Netstring_pcre.global_substitute problem_re1 (fun m s -> Printf.sprintf "%%%02x" (Char.code s.[fst (Pcre.get_substring_ofs m 0)])) (* I add this fixup to handle %uxxxx sent by browsers. Translated to %xx%xx *) let problem_re2 = Netstring_pcre.regexp "\\%u(..)(..)" let fixup_url_string s = fixup_url_string1 (Netstring_pcre.global_substitute problem_re2 (fun m s -> String.concat "" [ "%" ; Netstring_pcre.matched_group m 1 s ; "%" ; Netstring_pcre.matched_group m 2 s ]) s) (*VVV This is in Netencoding but we have a problem with ~ (not encoded by browsers). Here is a patch that does not encode '~': *) module MyUrl = struct let percent_encode = let lengths = let l = Array.make 256 3 in String.iter (fun c -> l.(Char.code c) <- 1) (* Unreserved Characters (section 2.3 of RFC 3986) *) "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_.~"; l in fun s -> let l = String.length s in let l' = ref 0 in for i = 0 to l - 1 do l' := !l' + lengths.(Char.code s.[i]) done; if l = !l' then s else let s' = Bytes.create !l' in let j = ref 0 in let hex = "0123456789ABCDEF" in for i = 0 to l - 1 do let c = s.[i] in let n = Char.code s.[i] in let d = lengths.(n) in if d = 1 then Bytes.set s' !j c else ( Bytes.set s' !j '%'; Bytes.set s' (!j + 1) hex.[n lsr 4]; Bytes.set s' (!j + 2) hex.[n land 0xf]); j := !j + d done; Bytes.unsafe_to_string s' let encode_plus = let lengths = let l = Array.make 256 3 in String.iter (fun c -> l.(Char.code c) <- 1) (* Unchanged characters + space (HTML spec) *) "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_.* "; l in fun s -> let l = String.length s in let l' = ref 0 in for i = 0 to l - 1 do l' := !l' + lengths.(Char.code s.[i]) done; let s' = Bytes.create !l' in let j = ref 0 in let hex = "0123456789ABCDEF" in for i = 0 to l - 1 do let c = s.[i] in let n = Char.code s.[i] in let d = lengths.(n) in if d = 1 then Bytes.set s' !j (if c = ' ' then '+' else c) else ( Bytes.set s' !j '%'; Bytes.set s' (!j + 1) hex.[n lsr 4]; Bytes.set s' (!j + 2) hex.[n land 0xf]); j := !j + d done; Bytes.unsafe_to_string s' let encode ?(plus = true) s = if plus then encode_plus s else percent_encode s end let url_decoding_re = Netstring_pcre.regexp "\\+\\|%..\\|%.\\|%" let of_hex1 c = match c with | '0' .. '9' -> Char.code c - Char.code '0' | 'A' .. 'F' -> Char.code c - Char.code 'A' + 10 | 'a' .. 'f' -> Char.code c - Char.code 'a' + 10 | _ -> raise Not_found let encode = MyUrl.encode let decode ?(plus = true) s = let pos = 0 and len = None in let s_l = String.length s in let s1 = if pos = 0 && len = None then s else let len = match len with Some n -> n | None -> s_l in String.sub s pos len in let l = String.length s1 in Netstring_pcre.global_substitute url_decoding_re (fun r _ -> match Netstring_pcre.matched_string r s1 with | "+" -> if plus then " " else "+" | _ -> ( let i = fst (Pcre.get_substring_ofs r 0) in (* Assertion: s1.[i] = '%' *) if i + 2 >= l then failwith "decode"; let c1 = s1.[i + 1] in let c2 = s1.[i + 2] in try let k1 = of_hex1 c1 in let k2 = of_hex1 c2 in String.make 1 (Char.chr ((k1 lsl 4) lor k2)) with Not_found -> failwith "decode")) s1 let make_encoded_parameters params = String.concat "&" (List.map (fun (name, value) -> encode name ^ "=" ^ encode value) params) let string_of_url_path ~encode l = if encode then fixup_url_string (String.concat "/" (List.map (*Netencoding.Url.encode*) (MyUrl.encode ~plus:false) l)) (* ' ' are not encoded to '+' in paths *) else String.concat "/" l (* BYXXX : check illicit characters *) let url_split_re = Str.regexp "[&=]" (* taken from Ocamlnet 4.1.2 *) let dest_url_encoded_parameters parstr = let rec parse_after_amp tl = match tl with | Str.Text name :: Str.Delim "=" :: Str.Text value :: tl' -> (decode name, decode value) :: parse_next tl' | Str.Text name :: Str.Delim "=" :: Str.Delim "&" :: tl' -> (decode name, "") :: parse_after_amp tl' | [Str.Text name; Str.Delim "="] -> [decode name, ""] | _ -> failwith "dest_url_encoded_parameters" and parse_next tl = match tl with | [] -> [] | Str.Delim "&" :: tl' -> parse_after_amp tl' | _ -> failwith "dest_url_encoded_parameters" in let toklist = Str.full_split url_split_re parstr in match toklist with [] -> [] | _ -> parse_after_amp toklist let parse = (* We do not accept http://login:pwd@host:port (should we?). *) let url_re = Netstring_pcre.regexp "^([Hh][Tt][Tt][Pp][Ss]?)://([0-9a-zA-Z.-]+|\\[[0-9A-Fa-f:.]+\\])(:([0-9]+))?/([^\\?]*)(\\?(.*))?$" in let short_url_re = Netstring_pcre.regexp "^/([^\\?]*)(\\?(.*))?$" in (* let url_relax_re = Netstring_pcre.regexp "^[Hh][Tt][Tt][Pp][Ss]?://[^/]+" in *) fun url -> let match_re = Netstring_pcre.string_match url_re url 0 in let https, host, port, pathstring, query = match match_re with | None -> ( match Netstring_pcre.string_match short_url_re url 0 with | None -> raise Ocsigen_Bad_Request | Some m -> let path = fixup_url_string (Netstring_pcre.matched_group m 1 url) in let query = try Some (fixup_url_string (Netstring_pcre.matched_group m 3 url)) with Not_found -> None in None, None, None, path, query) | Some m -> let path = fixup_url_string (Netstring_pcre.matched_group m 5 url) in let query = try Some (fixup_url_string (Netstring_pcre.matched_group m 7 url)) with Not_found -> None in let https = try match Netstring_pcre.matched_group m 1 url with | "http" -> Some false | "https" -> Some true | _ -> None with Not_found -> None in let host = try Some (Netstring_pcre.matched_group m 2 url) with Not_found -> None in let port = try Some (int_of_string (Netstring_pcre.matched_group m 4 url)) with Not_found -> None in https, host, port, path, query in (* Note that the fragment (string after #) is not sent by browsers *) (*20110707 ' ' is encoded to '+' in queries, but not in paths. Warning: if we write the URL manually, we must encode ' ' to '+' manually (not done by the browser). --Vincent *) let get_params = lazy (let params_string = match query with None -> "" | Some s -> s in try dest_url_encoded_parameters params_string with Failure _ -> raise Ocsigen_Bad_Request) in let path = List.map (decode ~plus:false) (split_path pathstring) in let path = remove_dotdot path (* and remove "//" *) (* here we remove .. from paths, as it is dangerous. But in some very particular cases, we may want them? I prefer forbid that. *) in let uri_string = match query with | None -> pathstring | Some s -> String.concat "?" [pathstring; s] in https, host, port, uri_string, path, query, get_params let prefix_and_path_of_t url = let https, host, port, _, path, _, _ = parse url in let https_str = match https with | None -> "" | Some x -> if x then "https://" else "http://" in let host_str = match host with None -> "" | Some x -> x in let port_str = match port with None -> "" | Some x -> string_of_int x in https_str ^ host_str ^ ":" ^ port_str, path end module Date = struct let name_of_day = function | 0 -> "Sun" | 1 -> "Mon" | 2 -> "Tue" | 3 -> "Wed" | 4 -> "Thu" | 5 -> "Fri" | 6 -> "Sat" | _ -> failwith "name_of_day" let name_of_month = function | 0 -> "Jan" | 1 -> "Feb" | 2 -> "Mar" | 3 -> "Apr" | 4 -> "May" | 5 -> "Jun" | 6 -> "Jul" | 7 -> "Aug" | 8 -> "Sep" | 9 -> "Oct" | 10 -> "Nov" | 11 -> "Dec" | _ -> failwith "name_of_month" let to_string d = let {Unix.tm_wday; tm_mday; tm_mon; tm_year; tm_hour; tm_min; tm_sec; _} = Unix.gmtime d in Printf.sprintf "%s, %02d %s %d %02d:%02d:%02d GMT" (name_of_day tm_wday) tm_mday (name_of_month tm_mon) (tm_year + 1900) tm_hour tm_min tm_sec end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>