Source file blkback.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
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
let src =
let src = Logs.Src.create "blkback" ~doc:"Mirage Xen blkback" in
Logs.Src.set_level src (Some Logs.Info);
src
module Log = (val Logs.src_log src : Logs.LOG)
module type ACTIVATIONS = sig
(** Event channels handlers. *)
type event
(** identifies the an event notification received from xen *)
val program_start: event
(** represents an event which 'fired' when the program started *)
val after: Xen_os.Eventchn.t -> event -> event Lwt.t
(** [next channel event] blocks until the system receives an event
newer than [event] on channel [channel]. If an event is received
while we aren't looking then this will be remembered and the
next call to [after] will immediately unblock. If the system
is suspended and then resumed, all event channel bindings are invalidated
and this function will fail with Generation.Invalid *)
end
open Lwt
open Blkproto
module Gntref = Xen_os.Xen.Gntref
type ops = {
read : int64 -> Cstruct.t list -> unit Lwt.t;
write : int64 -> Cstruct.t list -> unit Lwt.t;
}
type stats = {
ring_utilisation: int array;
segments_per_request: int array;
mutable total_requests: int;
mutable total_ok: int;
mutable total_error: int;
}
type ('a, 'b) t = {
domid: int;
xe: Xen_os.Eventchn.handle;
evtchn: Xen_os.Eventchn.t;
ring: ('a, 'b) Ring.Rpc.Back.t;
ops : ops;
parse_req : Cstruct.t -> Req.t;
}
let page_size = 4096
module Opt = struct
let iter f = function
| None -> ()
| Some x -> f x
end
module Request = struct
type kind = Read | Write
type request = {
kind: kind;
sector: int64;
buffers: Cstruct.t list;
slots: int list;
}
end
let is_writable req = match req.Req.op with
| Some Req.Read -> true
| Some Req.Write -> false
| None ->
Log.err (fun f -> f "FATAL: unknown request type");
failwith "unknown request type"
| Some op ->
Log.err (fun f -> f "FATAL: unhandled request type %s" (Req.string_of_op op));
failwith "unhandled request type"
module Make(A: ACTIVATIONS)(X: Xs_client_lwt.S)(B: Mirage_block.S) = struct
module BlockError = struct
open Lwt
let fail_read e = Fmt.kstr fail_with "%a" B.pp_error e
let fail_write e = Fmt.kstr fail_with "%a" B.pp_write_error e
end
let service_thread t stats =
let grants_of_segments = List.map (fun seg -> {
Xen_os.Xen.Import.domid = t.domid;
ref = seg.Req.gref;
}) in
let rec loop_forever after =
let (grant_table : (Xen_os.Xen.Gntref.t, Cstruct.t) Hashtbl.t) = Hashtbl.create 16 in
let lookup_mapping gref =
if not(Hashtbl.mem grant_table gref) then begin
Log.err (fun f -> f "FATAL: failed to find mapped grant reference %s" @@ Xen_os.Xen.Gntref.to_string gref);
failwith "failed to find mapped grant reference"
end else Hashtbl.find grant_table gref in
let maybe_mapv writable = function
| [] -> None
| grants ->
begin match Xen_os.Xen.Import.mapv grants ~writable with
| Error (`Msg s) ->
Log.err (fun f -> f "FATAL: failed to map batch of %d grant references: %s" (List.length grants) s);
failwith "Failed to map grants"
| Ok x ->
let buf = Io_page.to_cstruct @@ Xen_os.Xen.Import.Local_mapping.to_buf x in
let () =
List.iteri (fun i import ->
let region = Cstruct.sub buf (page_size * i) page_size in
Hashtbl.add grant_table import.Xen_os.Xen.Import.ref region
) grants
in
Some x
end in
let maybe_unmap mapping =
try
Opt.iter Xen_os.Xen.Import.Local_mapping.unmap_exn mapping
with e ->
Log.err (fun f -> f "FATAL: failed to unmap grant references (frontend will be confused (%s)" (Printexc.to_string e)) in
let q = ref [] in
let counter = ref 0 in
let indirect_grants = ref [] in
Ring.Rpc.Back.ack_requests t.ring
(fun slot ->
incr counter;
let open Req in
let req = t.parse_req slot in
stats.segments_per_request.(req.Req.nr_segs) <- stats.segments_per_request.(req.Req.nr_segs) + 1;
q := req :: !q;
match req.segs with
| Indirect grefs ->
let grefs = List.map (fun g ->
{ Xen_os.Xen.Import.domid = t.domid; ref = Gntref.of_int32 g }
) (Array.to_list grefs)
in
indirect_grants := grefs @ (!indirect_grants)
| Direct _ -> ()
);
let indirect_grants_mapping = maybe_mapv false !indirect_grants in
let q = List.map (fun req -> match req.Req.segs with
| Req.Direct _ -> req
| Req.Indirect [| gref |] ->
let page = lookup_mapping (Xen_os.Xen.Gntref.of_int32 gref) in
let segs = Blkproto.Req.get_segments page req.Req.nr_segs in
{ req with Req.segs = Req.Direct segs }
| Req.Indirect _ ->
Log.err (fun f -> f "FATAL: unimplemented: more than 1 indirect descriptor page");
failwith "unimplemented: more than 1 indirect descriptor page"
) !q in
let writable_q, readonly_q = List.partition is_writable q in
let grants_of_req req = match req.Req.segs with
| Req.Indirect _ ->
Log.err (fun f -> f "FATAL: grants_of_req encountered Indirect");
assert false
| Req.Direct segs -> grants_of_segments (Array.to_list segs) in
let writable_grants = List.concat (List.map grants_of_req writable_q) in
let readonly_grants = List.concat (List.map grants_of_req readonly_q) in
let writable_mapping = maybe_mapv true writable_grants in
let readonly_mapping = maybe_mapv false readonly_grants in
let bucket = if !counter < Array.length stats.ring_utilisation then !counter else Array.length stats.ring_utilisation - 1 in
stats.ring_utilisation.(bucket) <- stats.ring_utilisation.(bucket) + 1;
stats.total_requests <- stats.total_requests + (!counter);
let _ =
let open Block_request in
let requests = List.fold_left (fun acc request ->
let segs = match request.Req.segs with
| Req.Indirect _ ->
Log.err (fun f -> f "FATAL: some Indirect descriptors were not dereferenced");
assert false
| Req.Direct segs -> Array.to_list segs in
match request.Req.op with
| None ->
Log.err (fun f -> f "FATAL: Unknown blkif request type");
failwith "unknown blkif request type";
| Some ((Req.Read | Req.Write) as op) ->
(try
let bufs = List.map (fun seg ->
let page = lookup_mapping seg.Req.gref in
let frag = Cstruct.sub page (seg.Req.first_sector * 512) ((seg.Req.last_sector - seg.Req.first_sector + 1) * 512) in
frag) segs in
add acc request.Req.id op request.Req.sector bufs
with e ->
Log.err (fun f -> f "FATAL: failed to analyse request (%s)" (Printexc.to_string e));
acc
)
| Some op ->
Log.err (fun f -> f "FATAL: Unhandled request type %s" (Req.string_of_op op));
failwith "unhandled request type";
) empty q in
let open Lwt.Infix in
let rec work remaining = match pop remaining with
| [], _ -> return ()
| now, later ->
Lwt_list.iter_p (fun r ->
Lwt.catch
(fun () ->
(if r.op = Req.Read then t.ops.read else t.ops.write) r.sector r.buffers
>>= fun () ->
return Res.OK
) (fun _e ->
return Res.Error )
>>= fun result ->
let open Res in
let ok, error = List.fold_left (fun (ok, error) id ->
let slot = Ring.Rpc.Back.(slot t.ring (next_res_id t.ring)) in
write_response (id, {op=Some r.Block_request.op; st=Some result}) slot;
if result = OK then (ok + 1, error) else (ok, error + 1)
) (0, 0) r.id in
stats.total_ok <- stats.total_ok + ok;
stats.total_error <- stats.total_error + error;
return ()
) now
>>= fun () ->
work later in
work requests
>>= fun () ->
maybe_unmap readonly_mapping;
maybe_unmap writable_mapping;
maybe_unmap indirect_grants_mapping;
let notify = Ring.Rpc.Back.push_responses_and_check_notify t.ring in
if notify then Xen_os.Eventchn.notify t.xe t.evtchn;
return () in
let open Lwt.Infix in
A.after t.evtchn after
>>= fun next ->
loop_forever next in
loop_forever A.program_start
let init xe domid ring_info ops =
let evtchn = Xen_os.Eventchn.bind_interdomain xe domid ring_info.RingInfo.event_channel in
let parse_req, idx_size = match ring_info.RingInfo.protocol with
| Protocol.X86_64 -> Req.Proto_64.read_request, Req.Proto_64.total_size
| Protocol.X86_32 -> Req.Proto_32.read_request, Req.Proto_32.total_size
| Protocol.Native -> Req.Proto_64.read_request, Req.Proto_64.total_size
in
let grants = List.map (fun r ->
{ Xen_os.Xen.Import.domid = domid; ref = Gntref.of_int32 r })
[ ring_info.RingInfo.ref ] in
match Xen_os.Xen.Import.mapv ~writable:true grants with
| Error (`Msg s) ->
Log.err (fun f -> f "Xen_os.Xen.Import.mapv failed during initialization: %s" s);
failwith "Gnttab.mapv failed"
| Ok mapping ->
let buf = Xen_os.Xen.Import.Local_mapping.to_buf mapping in
let ring = Ring.Rpc.of_buf ~buf:(Io_page.to_cstruct buf) ~idx_size ~name:"blkback" in
let ring = Ring.Rpc.Back.init ~sring:ring in
let ring_utilisation = Array.make (Ring.Rpc.Back.nr_ents ring + 1) 0 in
let segments_per_request = Array.make (Blkproto.max_segments_per_request + 1) 0 in
let total_requests = 0 and total_ok = 0 and total_error = 0 in
let stats = { ring_utilisation; segments_per_request; total_requests; total_ok; total_error } in
let t = { domid; xe; evtchn; ops; parse_req; ring } in
let th = service_thread t stats in
on_cancel th (fun () ->
let counter = ref 0 in
Ring.Rpc.Back.ack_requests ring (fun _ -> incr counter);
if !counter <> 0 then Log.err (fun f-> f "FATAL: before unmapping, there were %d outstanding requests on the ring. Events lost?" !(counter));
let () = Xen_os.Xen.Import.Local_mapping.unmap_exn mapping in ()
);
th, stats
open X
let get_my_domid client =
let open Lwt.Infix in
immediate client (fun xs ->
Lwt.catch
(fun () ->
read xs "domid"
>>= fun domid ->
return (int_of_string domid)
) (function
| Xs_protocol.Enoent _ -> return 0
| e -> fail e)
)
let mk_backend_path client name (domid,devid) =
let open Lwt.Infix in
get_my_domid client
>>= fun self ->
return (Printf.sprintf "/local/domain/%d/backend/%s/%d/%d" self name domid devid)
let mk_frontend_path (domid,devid) =
return (Printf.sprintf "/local/domain/%d/device/vbd/%d" domid devid)
let writev client pairs =
transaction client (fun xs ->
Lwt_list.iter_s (fun (k, v) -> write xs k v) pairs
)
let readv client path keys =
let open Lwt.Infix in
immediate client (fun xs ->
Lwt_list.map_s (fun k ->
Lwt.catch
(fun () ->
read xs (path ^ "/" ^ k)
>>= fun v ->
return (Some (k, v))
) (fun _ -> return None)
) keys
)
>>= fun options ->
return (List.fold_left (fun acc x -> match x with None -> acc | Some y -> y :: acc) [] options)
let read_one client k =
let open Lwt.Infix in
immediate client (fun xs ->
Lwt.catch
(fun () ->
read xs k
>>= fun v ->
return (`OK v)
) (fun _ -> return (`Error ("failed to read: " ^ k)))
)
let write_one client k v = immediate client (fun xs -> write xs k v)
let exists client k =
let open Lwt.Infix in
read_one client k
>>= function
| `Error _ -> return false
| _ -> return true
let request_close name (domid, devid) =
let open Lwt.Infix in
make ()
>>= fun client ->
mk_backend_path client name (domid,devid)
>>= fun backend_path ->
writev client (List.map (fun (k, v) -> backend_path ^ "/" ^ k, v) (Blkproto.State.to_assoc_list Blkproto.State.Closing))
let force_close (domid, device) =
let open Lwt.Infix in
make ()
>>= fun client ->
mk_frontend_path (domid, device)
>>= fun frontend_path ->
write_one client (frontend_path ^ "/state") (Blkproto.State.to_string Blkproto.State.Closed)
let run ?(max_indirect_segments=256) t name (domid,devid) =
let open Lwt.Infix in
let open Mirage_block in
make ()
>>= fun client ->
let xe = Xen_os.Eventchn.init () in
mk_backend_path client name (domid,devid)
>>= fun backend_path ->
write_one client
(backend_path ^ "/" ^ Blkproto.Hotplug._hotplug_status)
Blkproto.Hotplug._online
>>= fun () ->
Lwt.catch
(fun () ->
B.get_info t
>>= fun info ->
let di = Blkproto.DiskInfo.(to_assoc_list {
sector_size = info.sector_size;
sectors = info.size_sectors;
media = Media.Disk;
mode = Mode.ReadWrite }) in
let features = Blkproto.FeatureIndirect.(to_assoc_list { max_indirect_segments}) in
writev client (List.map (fun (k, v) -> backend_path ^ "/" ^ k, v) (di @ features))
>>= fun () ->
( read_one client (backend_path ^ "/frontend")
>>= function
| `Error x -> failwith x
| `OK x -> return x )
>>= fun frontend_path ->
wait client (fun xs ->
Lwt.catch
(fun () ->
read xs (frontend_path ^ "/" ^ Blkproto.State._state)
>>= fun state ->
if Blkproto.State.of_string state = Some Blkproto.State.Initialised
|| Blkproto.State.of_string state = Some Blkproto.State.Connected
then return ()
else raise Xs_protocol.Eagain
) (function
| Xs_protocol.Enoent _ -> raise Xs_protocol.Eagain
| e -> fail e)
)
>>= fun () ->
readv client frontend_path Blkproto.RingInfo.keys
>>= fun frontend ->
let ring_info = match Blkproto.RingInfo.of_assoc_list frontend with
| Ok x -> x
| Error (`Msg x) -> failwith x in
Log.info (fun f-> f "%s" (Blkproto.RingInfo.to_string ring_info));
let device_read ofs bufs =
Lwt.catch
(fun () ->
let open BlockError in
B.read t ofs bufs >>= function
| Error e -> fail_read e
| Ok () -> return ()
) (fun e ->
Log.err (fun f -> f "blkback: read exception: %s, offset=%Ld" (Printexc.to_string e) ofs);
Lwt.fail e) in
let device_write ofs bufs =
Lwt.catch
(fun () ->
let open BlockError in
B.write t ofs bufs >>= function
| Error e -> fail_write e
| Ok () -> return ()
) (fun e ->
Log.err (fun f -> f "blkback: write exception: %s, offset=%Ld" (Printexc.to_string e) ofs);
Lwt.fail e) in
let be_thread, stats = init xe domid ring_info {
read = device_read;
write = device_write;
} in
writev client (List.map (fun (k, v) -> backend_path ^ "/" ^ k, v) (Blkproto.State.to_assoc_list Blkproto.State.Connected))
>>= fun () ->
wait client (fun xs ->
Lwt.catch
(fun () ->
read xs (frontend_path ^ "/state")
>>= fun state ->
if Blkproto.State.of_string state <> (Some Blkproto.State.Closed)
then raise Xs_protocol.Eagain
else return ()
) (function
| Xs_protocol.Enoent _ -> return ()
| e -> fail e)
)
>>= fun () ->
Lwt.cancel be_thread;
Lwt.return stats
)(fun e ->
Log.err (fun f -> f "blkback caught %s" (Printexc.to_string e));
B.disconnect t
>>= fun () ->
fail e)
let create ?backend_domid name (domid, device) =
let open Lwt.Infix in
make ()
>>= fun client ->
mk_backend_path client name (domid, device)
>>= fun backend_path ->
mk_frontend_path (domid, device)
>>= fun frontend_path ->
( match backend_domid with
| None -> get_my_domid client
| Some x -> return x )
>>= fun backend_domid ->
let c = Blkproto.Connection.({
virtual_device = string_of_int device;
backend_path;
backend_domid;
frontend_path;
frontend_domid = domid;
mode = Blkproto.Mode.ReadWrite;
media = Blkproto.Media.Disk;
removable = false;
}) in
transaction client (fun xs ->
Lwt_list.iter_s (fun (owner_domid, (k, v)) ->
write xs k v
>>= fun () ->
let acl =
let open Xs_protocol.ACL in
{ owner = owner_domid; other = READ; acl = [ ] } in
setperms xs k acl
) (Blkproto.Connection.to_assoc_list c)
)
let destroy name (domid, device) =
let open Lwt.Infix in
make ()
>>= fun client ->
mk_backend_path client name (domid, device)
>>= fun backend_path ->
mk_frontend_path (domid, device)
>>= fun frontend_path ->
immediate client (fun xs ->
(Lwt.catch (fun () -> rm xs backend_path) (fun _ -> return ()))
>>= fun () ->
(Lwt.catch (fun () -> rm xs frontend_path) (fun _ -> return ()))
)
end