package xenstore

  1. Overview
  2. Docs

Source file xs_client_lwt.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
(*
 * Copyright (C) Citrix Systems Inc.
 *
 * 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; version 2.1 only. with the special
 * exception on linking described in file LICENSE.
 *
 * 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.
 *)

(** A multiplexing xenstore protocol client over a byte-level transport *)

open Lwt
open Xs_protocol

module type IO = sig
  type 'a t = 'a Lwt.t
  val return: 'a -> 'a t
  val ( >>= ): 'a t -> ('a -> 'b t) -> 'b t

  type backend = [ `xen | `unix ]
  val backend : backend

  type channel
  val create: unit -> channel t
  val destroy: channel -> unit t
  val read: channel -> bytes -> int -> int -> int t
  val write: channel -> bytes -> int -> int -> unit t
end

module type S = sig
  type client

  val make : unit -> client Lwt.t
  val suspend : client -> unit Lwt.t
  val resume : client -> unit Lwt.t

  type handle

  val immediate : client -> (handle -> 'a Lwt.t) -> 'a Lwt.t
  val transaction : client -> (handle -> 'a Lwt.t) -> 'a Lwt.t
  val wait : client -> (handle -> 'a Lwt.t) -> 'a Lwt.t
  val directory : handle -> string -> string list Lwt.t
  val read : handle -> string -> string Lwt.t
  val write : handle -> string -> string -> unit Lwt.t
  val rm : handle -> string -> unit Lwt.t
  val mkdir : handle -> string -> unit Lwt.t
  val setperms : handle -> string -> Xs_protocol.ACL.t -> unit Lwt.t
  val debug : handle -> string list -> string list Lwt.t
  val restrict : handle -> int -> unit Lwt.t
  val getdomainpath : handle -> int -> string Lwt.t
  val watch : handle -> string -> Xs_protocol.Token.t -> unit Lwt.t
  val unwatch : handle -> string -> Xs_protocol.Token.t -> unit Lwt.t
  val introduce : handle -> int -> nativeint -> int -> unit Lwt.t
  val set_target : handle -> int -> int -> unit Lwt.t
end

let finally f g =
  Lwt.catch
    (fun () ->
       f () >>= fun result ->
       g () >>= fun () ->
       Lwt.return result
    ) (fun e ->
        g () >>= fun () ->
        Lwt.fail e)

module StringSet = Xs_handle.StringSet

module Watcher = struct

  (** Someone who is watching paths is represented by one of these: *)
  type t = {
    mutable paths: StringSet.t; (* we never care about events or ordering, only paths *)
    mutable cancelling: bool; (* we need to stop watching and clean up *)
    c: unit Lwt_condition.t;
    m: Lwt_mutex.t;
  }

  let make () = {
    paths = StringSet.empty;
    cancelling = false;
    c = Lwt_condition.create ();
    m = Lwt_mutex.create ();
  }

  (** Register that a watched path has been changed *)
  let put (x: t) path =
    Lwt_mutex.with_lock x.m
      (fun () ->
         x.paths <- StringSet.add path x.paths;
         Lwt_condition.signal x.c ();
         return ();
      )

  (** Return a set of modified paths, or an empty set if we're cancelling *)
  let get (x: t) =
    Lwt_mutex.with_lock x.m
      (fun () ->
         let rec loop () =
           if x.paths = StringSet.empty && not x.cancelling then begin
             Lwt_condition.wait ~mutex:x.m x.c
             >>= fun () ->
             loop ()
           end else Lwt.return () in
         loop ()
         >>= fun () ->
         let results = x.paths in
         x.paths <- StringSet.empty;
         return results
      )

  (** Called to shutdown the watcher and trigger an orderly cleanup *)
  let cancel (x: t) =
    let (_: unit Lwt.t) =
      Lwt_mutex.with_lock x.m
        (fun () ->
           x.cancelling <- true;
           Lwt_condition.signal x.c ();
           return ()
        ) in
    ()
end

exception Malformed_watch_event
exception Unexpected_rid of int32
exception Dispatcher_failed

module Client = functor(IO: IO with type 'a t = 'a Lwt.t) -> struct
  module PS = PacketStream(IO)

  (* Represents a single acive connection to a server *)
  type client = {
    mutable transport: IO.channel;
    ps: PS.stream;
    rid_to_wakeup: (int32, Xs_protocol.t Lwt.u) Hashtbl.t;
    mutable dispatcher_thread: unit Lwt.t;
    mutable dispatcher_shutting_down: bool;
    watchevents: (Token.t, Watcher.t) Hashtbl.t;

    mutable suspended : bool;
    suspended_m : Lwt_mutex.t;
    suspended_c : unit Lwt_condition.t;
  }

  (* The following values are only used if IO.backend = `xen. *)

  let client_cache = ref None
  (* The whole application must only use one xenstore client, which will
     multiplex all requests onto the same ring. *)

  let client_cache_m = Lwt_mutex.create ()
  (* Multiple threads will call 'make' in parallel. We must ensure only
     one client is created. *)

  let recv_one t =
    PS.recv t.ps
    >>= function
    | Ok x -> return x
    | Exception e -> Lwt.fail e
  let send_one t = PS.send t.ps

  let handle_exn t e =
    Printf.fprintf stderr "Caught: %s\n%!" (Printexc.to_string e);
    begin 
      match e with
      | Xs_protocol.Response_parser_failed _ ->
        (* Lwt_io.hexdump Lwt_io.stderr x *)
        return ()
      | _ -> return ()
    end >>= fun () ->
    t.dispatcher_shutting_down <- true; (* no more hashtable entries after this *)
    (* all blocking threads are failed with our exception *)
    Lwt_mutex.with_lock t.suspended_m (fun () ->
        Printf.fprintf stderr "Propagating exception to %d threads\n%!" (Hashtbl.length t.rid_to_wakeup);
        Hashtbl.iter (fun _ u -> Lwt.wakeup_later_exn u e) t.rid_to_wakeup;
        return ())
    >>= fun () ->
    Lwt.fail e

  let rec dispatcher t =
    Lwt.catch (fun () -> recv_one t) (handle_exn t)
    >>= fun pkt ->
    match get_ty pkt with
    | Op.Watchevent  ->
      begin match Unmarshal.list pkt with
        | Some [path; token] ->
          let token = Token.of_string token in
          (* We may get old watches: silently drop these *)
          if Hashtbl.mem t.watchevents token then begin
            Watcher.put (Hashtbl.find t.watchevents token) path
            >>= fun () -> dispatcher t
          end else dispatcher t
        | _ ->
          handle_exn t Malformed_watch_event
      end >>= fun () ->
      dispatcher t
    | _ ->
      let rid = get_rid pkt in
      Lwt_mutex.with_lock t.suspended_m (fun () -> 
          if Hashtbl.mem t.rid_to_wakeup rid
          then return (Some (Hashtbl.find t.rid_to_wakeup rid))
          else return None)
      >>= function
      | None -> handle_exn t (Unexpected_rid rid)
      | Some thread -> 
        begin
          Lwt.wakeup_later thread pkt;
          dispatcher t
        end


  let make_unsafe () =
    IO.create ()
    >>= fun transport ->
    let t = {
      transport = transport;
      ps = PS.make transport;
      rid_to_wakeup = Hashtbl.create 10;
      dispatcher_thread = return ();
      dispatcher_shutting_down = false;
      watchevents = Hashtbl.create 10;
      suspended = false;
      suspended_m = Lwt_mutex.create ();
      suspended_c = Lwt_condition.create ();
    } in
    t.dispatcher_thread <- dispatcher t;
    return t

  let make () = match IO.backend with
    | `unix -> make_unsafe ()
    | `xen ->
      Lwt_mutex.with_lock client_cache_m
        (fun () -> match !client_cache with
           | Some c -> return c
           | None ->
             make_unsafe ()
             >>= fun c ->
             client_cache := Some c;
             return c
        )

  let suspend t =
    Lwt_mutex.with_lock t.suspended_m
      (fun () -> 
         t.suspended <- true;
         let rec loop () =
           if Hashtbl.length t.rid_to_wakeup > 0 then begin
             Lwt_condition.wait ~mutex:t.suspended_m t.suspended_c
             >>= fun () ->
             loop ()
           end else Lwt.return () in
         loop ()
      )
    >>= fun () ->
    Hashtbl.iter (fun _ watcher -> Watcher.cancel watcher) t.watchevents;
    Lwt.cancel t.dispatcher_thread;
    return ()

  let resume_unsafe t =
    Lwt_mutex.with_lock t.suspended_m (fun () -> 
        t.suspended <- false;
        t.dispatcher_shutting_down <- false;
        Lwt_condition.broadcast t.suspended_c (); 
        return ())
    >>= fun () ->
    t.dispatcher_thread <- dispatcher t;
    return ()

  let resume t = match IO.backend with
    | `unix -> resume_unsafe t
    | `xen -> (match !client_cache with
        | None -> Lwt.return ()
        | Some c -> IO.create ()
          >>= fun transport -> c.transport <- transport; resume_unsafe t)

  type handle = client Xs_handle.t

  let make_rid =
    let counter = ref 0l in
    fun () ->
      let result = !counter in
      counter := Int32.succ !counter;
      result

  let rpc hint h payload unmarshal =
    let open Xs_handle in
    let rid = make_rid () in
    let request = Request.print payload (get_tid h) rid in
    let t, u = wait () in
    let c = get_client h in
    if c.dispatcher_shutting_down
    then Lwt.fail Dispatcher_failed
    else begin
      Lwt_mutex.with_lock c.suspended_m (fun () ->
          let rec loop () =
            if c.suspended then begin
              Lwt_condition.wait ~mutex:c.suspended_m c.suspended_c
              >>= fun () ->
              loop ()
            end else Lwt.return () in
          loop ()
          >>= fun () ->
          Hashtbl.add c.rid_to_wakeup rid u;   
          send_one c request
        ) >>= fun () ->
      t >>= fun res ->
      Lwt_mutex.with_lock c.suspended_m 
        (fun () -> 
           Hashtbl.remove c.rid_to_wakeup rid;
           Lwt_condition.broadcast c.suspended_c (); 
           return ())
      >>= fun () ->
      return (response hint request res unmarshal)
    end

  let directory h path = rpc "directory" (Xs_handle.accessed_path h path) Request.(PathOp(path, Directory)) Unmarshal.list
  let read h path = rpc "read" (Xs_handle.accessed_path h path) Request.(PathOp(path, Read)) Unmarshal.string
  let write h path data = rpc "write" (Xs_handle.accessed_path h path) Request.(PathOp(path, Write data)) Unmarshal.ok
  let rm h path = rpc "rm" (Xs_handle.accessed_path h path) Request.(PathOp(path, Rm)) Unmarshal.ok
  let mkdir h path = rpc "mkdir" (Xs_handle.accessed_path h path) Request.(PathOp(path, Mkdir)) Unmarshal.ok
  let setperms h path acl = rpc "setperms" (Xs_handle.accessed_path h path) Request.(PathOp(path, Setperms acl)) Unmarshal.ok
  let debug h cmd_args = rpc "debug" h (Request.Debug cmd_args) Unmarshal.list
  let restrict h domid = rpc "restrict" h (Request.Restrict domid) Unmarshal.ok
  let getdomainpath h domid = rpc "getdomainpath" h (Request.Getdomainpath domid) Unmarshal.string
  let watch h path token = rpc "watch" (Xs_handle.watch h path) (Request.Watch(path, Token.to_string token)) Unmarshal.ok
  let unwatch h path token = rpc "unwatch" (Xs_handle.unwatch h path) (Request.Unwatch(path, Token.to_string token)) Unmarshal.ok
  let introduce h domid store_mfn store_port = rpc "introduce" h (Request.Introduce(domid, store_mfn, store_port)) Unmarshal.ok
  let set_target h stubdom_domid domid = rpc "set_target" h (Request.Set_target(stubdom_domid, domid)) Unmarshal.ok
  let immediate client f = f (Xs_handle.no_transaction client)

  let counter = ref 0l

  let rec add_watches h token = function
    | [] -> Lwt.return_unit
    | p :: ps ->
      Lwt.try_bind
        (fun () -> watch h p token)
        (fun () -> add_watches h token ps)
        (fun ex ->
           (* If we fail to add all the watches (e.g. because we exceeded our watch quota)
              then mark the remaining paths as unwatched so we don't try to release them. *)
           (p :: ps) |> List.iter (fun p ->
               let _ : _ Xs_handle.t = Xs_handle.unwatch h p in
               ()
             );
           Lwt.fail ex
        )

  let wait client f =
    let open StringSet in
    counter := Int32.succ !counter;
    let token = Token.of_string (Printf.sprintf "%ld:xs_client.wait" !counter) in
    (* When we register the 'watcher', the dispatcher thread will signal us when
       watches arrive. *)
    let watcher = Watcher.make () in
    Hashtbl.add client.watchevents token watcher;

    (* We signal the caller via this cancellable task: *)
    let result, wakener = Lwt.task () in
    on_cancel result
      (fun () ->
         (* Trigger an orderly cleanup in the background: *)
         Watcher.cancel watcher
      );
    let h = Xs_handle.watching client in
    (* Adjust the paths we're watching (if necessary) and block (if possible) *)
    let adjust_paths () =
      let current_paths = Xs_handle.get_watched_paths h in
      (* Paths which weren't read don't need to be watched: *)
      let old_paths = diff current_paths (Xs_handle.get_accessed_paths h) in
      Lwt_list.iter_s (fun p -> unwatch h p token) (elements old_paths)
      >>= fun () ->
      (* Paths which were read do need to be watched: *)
      let new_paths = diff (Xs_handle.get_accessed_paths h) current_paths in
      add_watches h token (elements new_paths)
      >>= fun () ->
      (* If we're watching the correct set of paths already then just block *)
      if old_paths = empty && (new_paths = empty)
      then begin
        Watcher.get watcher
        >>= fun results ->
        (* an empty results set means we've been cancelled: trigger cleanup *)
        if results = empty
        then fail (Failure "goodnight")
        else return ()
      end else return () in
    (* Main client loop: *)
    let rec loop () =
      Lwt.catch
        (fun () ->
           f h
           >>= fun result ->
           wakeup wakener result;
           return true
        ) (function
            | Eagain -> return false
            | ex -> wakeup_exn wakener ex; return true)
      >>= function
      | true -> return ()
      | false ->
        Lwt.try_bind adjust_paths loop
          (fun ex ->
             wakeup_exn wakener ex;
             Lwt.return_unit
          )
    in
    Lwt.async (fun () ->
        finally loop
          (fun () ->
             let current_paths = Xs_handle.get_watched_paths h in
             Lwt_list.iter_s (fun p -> unwatch h p token) (elements current_paths)
             >>= fun () ->
             Hashtbl.remove client.watchevents token;
             return ()
          )
      );
    result

  let rec transaction client f =
    rpc "transaction_start" (Xs_handle.no_transaction client) Request.Transaction_start Unmarshal.int32
    >>= fun tid ->
    let h = Xs_handle.transaction client tid in
    f h
    >>= fun result ->
    Lwt.catch
      (fun () ->
         rpc "transaction_end" h (Request.Transaction_end true) Unmarshal.string
         >>= fun res' ->
         if res' = "OK" then return result else Lwt.fail (Error (Printf.sprintf "Unexpected transaction result: %s" res'))
      ) (function
          | Eagain -> transaction client f
          | e -> Lwt.fail e)
end

OCaml

Innovation. Community. Security.