package xenstore
Xenstore protocol in pure OCam
Install
Dune Dependency
github.com
Readme
Changelog
LGPL-2.1-only WITH OCaml-LGPL-linking-exception License
Edit opam file
Versions (2)
Authors
Maintainers
Sources
xenstore-2.4.0.tbz
sha256=11b63bb2a5a8bc487d36f36ecb195b2a2135aa13ab401cbc73da67505c08faa4
sha512=b921aa4265503677f4984007efee6865461a18031dc49583be040781307cc6cbfcd84bc11e9ebc0a23e9b0cf281bd94528c475624bc30471ad8ff70607e0732f
doc/src/xenstore.unix/xs_client_unix.ml.html
Source file xs_client_unix.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
(* * 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 Xs_protocol let finally f g = try let result = f () in g (); result with e -> g (); raise e let with_mutex m f = Mutex.lock m; finally f (fun () -> Mutex.unlock m) let find_opt h x = if Hashtbl.mem h x then Some (Hashtbl.find h x) else None module type IO = sig type 'a t = 'a val return : 'a -> 'a t val ( >>= ) : 'a t -> ('a -> 'b t) -> 'b t 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 StringSet = Xs_handle.StringSet exception Watch_overflow module Watcher = struct 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 : Condition.t ; m : Mutex.t } (** Someone who is watching paths is represented by one of these: *) let make () = { paths = StringSet.empty ; cancelling = false ; c = Condition.create () ; m = Mutex.create () } (** Register that a watched path has been changed *) let put (x : t) path = with_mutex x.m (fun () -> x.paths <- StringSet.add path x.paths; Condition.signal x.c) (** Return a set of modified paths, or an empty set if we're cancelling *) let get (x : t) = with_mutex x.m (fun () -> while x.paths = StringSet.empty && not x.cancelling do Condition.wait x.c x.m done; let results = x.paths in x.paths <- StringSet.empty; results) (** Called to shutdown the watcher and trigger an orderly cleanup *) let cancel (x : t) = with_mutex x.m (fun () -> x.cancelling <- true; Condition.signal x.c) end exception Malformed_watch_event exception Unexpected_rid of int32 exception Dispatcher_failed exception Cancelled module Task = struct type 'a u = { mutable thing : 'a option ; mutable cancelling : bool ; mutable on_cancel : unit -> unit ; m : Mutex.t ; c : Condition.t } let make () = { thing = None ; cancelling = false ; on_cancel = (fun () -> ()) ; m = Mutex.create () ; c = Condition.create () } let wakeup u thing = with_mutex u.m (fun () -> u.thing <- Some thing; Condition.signal u.c) let on_cancel u on_cancel = u.on_cancel <- on_cancel let cancel u = with_mutex u.m (fun () -> u.cancelling <- true; Condition.signal u.c); u.on_cancel () let wait u = with_mutex u.m (fun () -> let rec loop () = if u.cancelling then raise Cancelled else match u.thing with | None -> Condition.wait u.c u.m; loop () | Some thing -> thing in loop ()) end type watch_callback = string * string -> unit let auto_watch_prefix = "auto:" let startswith prefix x = let prefix' = String.length prefix and x' = String.length x in x' >= prefix' && String.sub x 0 prefix' = prefix module Client = functor (IO : IO with type 'a t = 'a) -> struct module PS = PacketStream (IO) let logger = ref (fun s -> let _ : string = s in ()) let error fmt = Printf.ksprintf !logger fmt let set_logger f = logger := f (* Represents a single active connection to a server *) type client = { transport : IO.channel ; ps : PS.stream ; rid_to_wakeup : (int32, Xs_protocol.t Task.u) Hashtbl.t ; mutable dispatcher_thread : Thread.t option ; mutable dispatcher_shutting_down : bool ; mutable watch_callback_thread : Thread.t option ; watchevents : (string, Watcher.t) Hashtbl.t ; incoming_watches : (string * string) Queue.t ; queue_overflowed : bool ref ; incoming_watches_m : Mutex.t ; incoming_watches_c : Condition.t ; mutable extra_watch_callback : string * string -> unit ; m : Mutex.t } type handle = client Xs_handle.t let recv_one t = match PS.recv t.ps with Ok x -> x | Exception e -> raise e let send_one t = PS.send t.ps let handle_exn t e = error "Caught: %s\n%!" (Printexc.to_string e); (match e with | Xs_protocol.Response_parser_failed _ -> (* Lwt_io.hexdump Lwt_io.stderr x *) () | _ -> ()); t.dispatcher_shutting_down <- true; raise e let enqueue_watch t event = with_mutex t.incoming_watches_m (fun () -> if Queue.length t.incoming_watches = 65536 then t.queue_overflowed := true else Queue.push event t.incoming_watches; Condition.signal t.incoming_watches_c) let rec dispatcher t = let pkt = try recv_one t with e -> handle_exn t e in match get_ty pkt with | Op.Watchevent -> (match Unmarshal.list pkt with | Some [ path; token ] -> ( (* All 'extra' non-automatic watches are passed to the extra_watch_callback. Note this can include old watches which were still queued in the server when an 'unwatch' is received. *) let w = with_mutex t.m (fun () -> find_opt t.watchevents token) in match w with | Some w -> Watcher.put w path | None -> if not (startswith auto_watch_prefix token) then enqueue_watch t (path, token)) | _ -> handle_exn t Malformed_watch_event); dispatcher t | _ -> let rid = get_rid pkt in let u = with_mutex t.m (fun () -> find_opt t.rid_to_wakeup rid) in (match u with | Some u -> Task.wakeup u pkt | None -> error "Unexpected rid: %ld\n%!" rid); dispatcher t let dequeue_watches t = while true do try let event = with_mutex t.incoming_watches_m (fun () -> while Queue.is_empty t.incoming_watches && not !(t.queue_overflowed) do Condition.wait t.incoming_watches_c t.incoming_watches_m done; if !(t.queue_overflowed) then raise Watch_overflow; Queue.pop t.incoming_watches) in let () = t.extra_watch_callback event in () with | Watch_overflow as e -> error "Caught watch_overflow. Not retrying."; raise e | e -> error "Caught '%s' while dequeuing watches. Ignoring.\n%!" (Printexc.to_string e) done let make () = let transport = IO.create () in let t = { transport ; ps = PS.make transport ; rid_to_wakeup = Hashtbl.create 10 ; dispatcher_thread = None ; dispatcher_shutting_down = false ; watch_callback_thread = None ; watchevents = Hashtbl.create 10 ; incoming_watches = Queue.create () ; queue_overflowed = ref false ; incoming_watches_m = Mutex.create () ; incoming_watches_c = Condition.create () ; extra_watch_callback = (fun _ -> ()) ; m = Mutex.create () } in t.dispatcher_thread <- Some (Thread.create dispatcher t); t.watch_callback_thread <- Some (Thread.create dequeue_watches t); t let set_watch_callback client cb = client.extra_watch_callback <- cb let make_rid = let counter = ref 0l in let m = Mutex.create () in fun () -> with_mutex m (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 = Task.make () in let c = get_client h in if c.dispatcher_shutting_down then raise Dispatcher_failed else ( with_mutex c.m (fun () -> Hashtbl.add c.rid_to_wakeup rid t); send_one c request; let res = Task.wait t in with_mutex c.m (fun () -> Hashtbl.remove c.rid_to_wakeup rid); response hint request res unmarshal) let directory_part h path offset = rpc "directory_part" h Request.(PathOp (path, Directory_part offset)) Unmarshal.raw let rpc_dir hint h path = try rpc hint h Request.(PathOp (path, Directory)) Unmarshal.list with Error "E2BIG" -> let data = Buffer.create 16 in let rec read_part generation = let offset = Buffer.length data in let out = directory_part h path offset in let i = String.index out '\000' in let new_generation = String.sub out 0 i in (* Node's children changed, restart *) if offset <> 0 && new_generation <> generation then ( Buffer.clear data; read_part "") else Buffer.add_substring data out (i + 1) (String.length out - i - 1); let l = Buffer.length data in if l < 2 then Buffer.clear data else if String.ends_with ~suffix:"\000\000" (Buffer.contents data) then (* last packet *) Buffer.truncate data (l - 2) else read_part new_generation in read_part ""; String.split_on_char '\000' (Buffer.contents data) let directory h path = rpc_dir "directory" (Xs_handle.accessed_path h path) path 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 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)) Unmarshal.ok let unwatch h path token = rpc "unwatch" (Xs_handle.unwatch h path) (Request.Unwatch (path, 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 wait client f = let open StringSet in counter := Int32.succ !counter; let token = Printf.sprintf "%s%ld" auto_watch_prefix !counter in (* When we register the 'watcher', the dispatcher thread will signal us when watches arrive. *) let watcher = Watcher.make () in with_mutex client.m (fun () -> Hashtbl.add client.watchevents token watcher); (* We signal the caller via this cancellable task: *) let t = Task.make () in Task.on_cancel t (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 List.iter (fun p -> unwatch h p token) (elements old_paths); (* Paths which were read do need to be watched: *) let new_paths = diff (Xs_handle.get_accessed_paths h) current_paths in List.iter (fun p -> watch h p token) (elements new_paths); (* If we're watching the correct set of paths already then just block *) if old_paths = empty && new_paths = empty then let results = Watcher.get watcher in (* an empty results set means we've been cancelled: trigger cleanup *) if results = empty then raise (Failure "goodnight") in (* Main client loop: *) let rec loop () = let finished = try let result = f h in Task.wakeup t result; true with Eagain -> false in if not finished then ( adjust_paths (); loop ()) in let (_ : Thread.t) = Thread.create (fun () -> finally loop (fun () -> let current_paths = Xs_handle.get_watched_paths h in List.iter (fun p -> unwatch h p token) (elements current_paths); with_mutex client.m (fun () -> Hashtbl.remove client.watchevents token))) () in t let _transaction_leave_open client f = let tid = rpc "transaction_start" (Xs_handle.no_transaction client) Request.Transaction_start Unmarshal.int32 in let h = Xs_handle.transaction client tid in let result = f h in (h, result) let _commit h result = let res' = rpc "transaction_end" h (Request.Transaction_end true) Unmarshal.string in if res' = "OK" then result else raise (Error (Printf.sprintf "Unexpected transaction result: %s" res')) let transaction_one_try client f = let h, result = _transaction_leave_open client f in _commit h result let rec transaction_attempts attempts client f = let h, result = _transaction_leave_open client f in try _commit h result with Eagain when attempts > 1 -> transaction_attempts (attempts - 1) client f (** Deprecated: retries for ever on repeated Eagain *) let rec transaction client f = let h, result = _transaction_leave_open client f in try _commit h result with Eagain -> transaction client f end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>