Source file error_handler.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
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
module Dream = Dream__pure.Inmost
module Error = Dream__middleware.Error
let log =
Dream__middleware.Log.sub_log "dream.http"
let select_log = function
| `Error -> log.error
| `Warning -> log.warning
| `Info -> log.info
| `Debug -> log.debug
let dump (error : Error.error) =
let buffer = Buffer.create 4096 in
let p format = Printf.bprintf buffer format in
begin match error.condition with
| `Response response ->
let status = Dream.status response in
p "%i %s\n" (Dream.status_to_int status) (Dream.status_to_string status)
| `String "" ->
p "(Library error without description payload)\n"
| `String string ->
p "%s\n" string
| `Exn exn ->
let backtrace = Printexc.get_backtrace () in
p "%s\n" (Printexc.to_string exn);
backtrace |> Dream__middleware.Log.iter_backtrace (p "%s\n")
end;
p "\n";
let layer =
match error.layer with
| `TLS -> "TLS library"
| `HTTP -> "HTTP library"
| `HTTP2 -> "HTTP2 library"
| `WebSocket -> "WebSocket library"
| `App -> "Application"
in
let blame =
match error.caused_by with
| `Server -> "Server"
| `Client -> "Client"
in
let severity =
match error.severity with
| `Error -> "Error"
| `Warning -> "Warning"
| `Info -> "Info"
| `Debug -> "Debug"
in
p "From: %s\n" layer;
p "Blame: %s\n" blame;
p "Severity: %s" severity;
begin match error.client with
| None -> ()
| Some client -> p "\n\nClient: %s" client
end;
begin match error.request with
| None -> ()
| Some request ->
let last = Dream.last request in
let major, minor = Dream.version last in
p "\n\n%s %s HTTP/%i.%i"
(Dream.method_to_string (Dream.method_ last))
(Dream.target last)
major minor;
Dream.all_headers last
|> List.iter (fun (name, value) -> p "\n%s: %s" name value);
let show_variables kind =
kind (fun name value first ->
if first then
p "\n";
p "\n%s: %s" name value;
false)
true
request
|> ignore
in
show_variables Dream.fold_locals;
show_variables Dream.fold_globals
end;
Buffer.contents buffer
let customize template (error : Error.error) =
begin match error.condition with
| `Response _ -> ()
| `String _ | `Exn _ as condition ->
let client =
match error.client with
| None -> ""
| Some client -> " (" ^ client ^ ")"
in
let layer =
match error.layer with
| `TLS -> ["TLS" ^ client]
| `HTTP -> ["HTTP" ^ client]
| `HTTP2 -> ["HTTP/2" ^ client]
| `WebSocket -> ["WebSocket" ^ client]
| `App -> []
in
let description, backtrace =
match condition with
| `String string -> string, ""
| `Exn exn ->
let backtrace = Printexc.get_backtrace () in
Printexc.to_string exn, backtrace
in
let message = String.concat ": " (layer @ [description]) in
select_log error.severity (fun log ->
log ?request:error.request "%s" message);
backtrace |> Dream__middleware.Log.iter_backtrace (fun line ->
select_log error.severity (fun log ->
log ?request:error.request "%s" line))
end;
if not error.will_send_response then
Lwt.return_none
else
let debug_dump =
match error.debug with
| false -> None
| true -> Some (dump error)
in
let response =
match error.condition with
| `Response response -> response
| _ ->
let status =
match error.caused_by with
| `Server -> `Internal_Server_Error
| `Client -> `Bad_Request
in
Dream.response ~status ""
in
response
|> template debug_dump
|> Lwt.map (fun response -> Some response)
let default_template debug_dump response =
match debug_dump with
| None -> Lwt.return response
| Some debug_dump ->
let status = Dream.status response in
let code = Dream.status_to_int status
and reason = Dream.status_to_string status in
response
|> Dream.with_header "Content-Type" Dream__pure.Formats.text_html
|> Dream.with_body
(Dream__middleware.Error_template.render ~debug_dump ~code ~reason)
|> Lwt.return
let default =
customize default_template
let double_faults f default =
Lwt.catch f begin fun exn ->
let backtrace = Printexc.get_backtrace () in
log.error (fun log ->
log "Error handler raised: %s" (Printexc.to_string exn));
backtrace
|> Dream__middleware.Log.iter_backtrace (fun line ->
log.error (fun log -> log "%s" line));
default ()
end
let respond_with_option f =
double_faults
(fun () ->
f ()
|> Lwt.map (function
| Some response -> response
| None -> Dream.response ~status:`Internal_Server_Error ""))
(fun () ->
Dream.empty `Internal_Server_Error)
let app
user's_error_handler =
fun error ->
respond_with_option (fun () -> user's_error_handler error)
let default_response = function
| `Server -> Dream.response ~status:`Internal_Server_Error ""
| `Client -> Dream.response ~status:`Bad_Request ""
let httpaf
app user's_error_handler =
fun client_address ?request error start_response ->
ignore (request : Httpaf.Request.t option);
let condition, severity, caused_by =
match error with
| `Exn exn ->
`Exn exn,
`Error,
`Server
| `Bad_request
| `Bad_gateway ->
`String "Bad request",
`Warning,
`Client
| `Internal_server_error ->
`String "Content-Length missing or negative",
`Error,
`Server
in
let error = Error.{
condition;
layer = `HTTP;
caused_by;
request = None;
response = None;
client = Some (Adapt.address_to_string client_address);
severity;
debug = Dream.debug app;
will_send_response = true;
} in
Lwt.async begin fun () ->
double_faults begin fun () ->
let%lwt response = user's_error_handler error in
let response =
match response with
| Some response -> response
| None -> default_response caused_by
in
let = Httpaf.Headers.of_list (Dream.all_headers response) in
let body = start_response headers in
Adapt.forward_body response body;
Lwt.return_unit
end
Lwt.return
end
let h2
app user's_error_handler =
fun client_address ?request error start_response ->
ignore request;
let condition, severity, caused_by =
match error with
| `Exn exn ->
`Exn exn,
`Error,
`Server
| `Bad_request ->
`String "Bad request",
`Warning,
`Client
| `Internal_server_error ->
`String "Content-Length missing or negative",
`Error,
`Server
in
let error = Error.{
condition;
layer = `HTTP2;
caused_by;
request = None;
response = None;
client = Some (Adapt.address_to_string client_address);
severity;
debug = Dream.debug app;
will_send_response = true;
} in
Lwt.async begin fun () ->
double_faults begin fun () ->
let%lwt response = user's_error_handler error in
let response =
match response with
| Some response -> response
| None -> default_response caused_by
in
let = H2.Headers.of_list (Dream.all_headers response) in
let body = start_response headers in
Adapt.forward_body_h2 response body;
Lwt.return_unit
end
Lwt.return
end
let tls
app user's_error_handler client_address error =
let error = Error.{
condition = `Exn error;
layer = `TLS;
caused_by = `Client;
request = None;
response = None;
client = Some (Adapt.address_to_string client_address);
severity = `Warning;
debug = Dream.debug app;
will_send_response = false;
} in
Lwt.async (fun () ->
double_faults
(fun () -> Lwt.map ignore (user's_error_handler error))
Lwt.return)
let websocket
user's_error_handler request response =
fun socket error ->
Websocketaf.Wsd.close socket;
let `Exn exn = error in
let error = Error.{
condition = `Exn exn;
layer = `WebSocket;
caused_by = `Server;
request = Some request;
response = Some response;
client = Some (Dream.client request);
severity = `Warning;
debug = Dream.debug (Dream.app request);
will_send_response = false;
} in
Lwt.async (fun () ->
double_faults
(fun () -> Lwt.map ignore (user's_error_handler error))
Lwt.return)
let websocket_handshake
user's_error_handler =
fun request response error_string ->
let error = Error.{
condition = `String error_string;
layer = `WebSocket;
caused_by = `Client;
request = Some request;
response = Some response;
client = Some (Dream.client request);
severity = `Warning;
debug = Dream.debug (Dream.app request);
will_send_response = true;
} in
respond_with_option (fun () -> user's_error_handler error)