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 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
|
(* hey emacs, this is OCaml code: -*- tuareg -*- *)
(* nbd client library in userspace: generate the code for the state machine
* Copyright Red Hat
*
* This library 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; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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 library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*)
open State_machine
open Utils
let c_string_of_external_event = function
| NotifyRead -> "notify_read"
| NotifyWrite -> "notify_write"
| CmdCreate -> "cmd_create"
| CmdConnectSockAddr -> "cmd_connect_sockaddr"
| CmdConnectTCP -> "cmd_connect_tcp"
| CmdConnectCommand -> "cmd_connect_command"
| CmdConnectSA -> "cmd_connect_sa"
| CmdConnectSocket -> "cmd_connect_socket"
| CmdIssue -> "cmd_issue"
(* Find a state in the state machine hierarchy by path. The [path]
* parameter is a list like [["READY"]] or [["MAGIC"; "START"]].
*)
let find_state path =
let rec find sm = function
| [] -> raise Not_found
| [n] ->
(* Find a state leaf node. *)
let rec loop = function
| [] -> raise Not_found
| State ({ name } as ret) :: _ when n = name -> ret
| _ :: rest -> loop rest
in
loop sm
| g :: path ->
(* Find a state machine group. *)
let rec loop = function
| [] -> raise Not_found
| Group (name, group) :: _ when g = name -> find group path
| _ :: rest -> loop rest
in
loop sm
in
try (find state_machine path : state)
with Not_found ->
failwithf "find_state: ā%sā not found" (String.concat "." path)
let dot_rex = Str.regexp {|\.|}
(* Resolve a stringified path to a state.
*
* [prefix] parameter is the current prefix. We resolve paths
* relative to this.
*
* Stringified paths can be:
* ["STATE"] => state relative to current level
* ["GROUP.STATE"] => state below group at current level (to any depth)
* [".TOP"] => state at the top level
* ["^UP"] => state at a level above this one
*)
let rec resolve_state prefix str =
let len = String.length str in
if len >= 1 && String.sub str 0 1 = "." then
resolve_state [] (String.sub str 1 (len-1))
else if len >= 1 && String.sub str 0 1 = "^" then (
let parent =
match List.rev prefix with
| [] -> failwithf "resolve_state: %s (^) used from top level group" str
| _ :: rest -> List.rev rest in
resolve_state parent (String.sub str 1 (len-1))
)
else (
let path = Str.split_delim dot_rex str in
find_state (prefix @ path)
)
(* Flatten the state machine hierarchy. This sets the [parsed.prefix],
* [parsed.state_enum], [parsed.events] fields in the state.
*)
let states : state list =
let rec flatten prefix = function
| [] -> []
| State st :: rest ->
st.parsed <-
{ st.parsed with
prefix = prefix;
display_name = (
match prefix with
| [] -> st.name
| prefix -> String.concat "." prefix ^ "." ^ st.name
);
state_enum = (
let path = String.concat "" (List.map ((^) "_") prefix) in
"STATE" ^ path ^ "_" ^ st.name
);
events = (
List.map (
fun (ev, str) ->
(* In external_events,
* special string [""] means current state.
*)
if str = "" then ev, st
else ev, resolve_state prefix str
) st.external_events
)
};
st :: flatten prefix rest
| Group (name, group) :: rest ->
let states = flatten (prefix @ [name]) group in
states @ flatten prefix rest
in
flatten [] state_machine
(* Read and parse the state machine C code. *)
let state_machine_prologue =
let parse_states_file filename =
let chan = open_in filename in
let lines = ref [] in
let lineno = ref 1 in
(try while true do
let line = input_line chan in
let loc : location = filename, !lineno in
incr lineno;
lines := (loc, line) :: !lines
done
with End_of_file -> ());
close_in chan;
(* Note this list is initially in reverse order. *)
let lines = !lines in
(* The last line in the file must have a particular form, check
* and remove.
*)
if List.length lines = 0 ||
snd (List.hd lines) <> "} /* END STATE MACHINE */" then
failwithf "%s: unexpected file ending" filename;
let lines = List.tl lines in
let lines = List.rev lines in
(* Find the start of the state machine and split the list into
* the prologue and the list of state code fragments.
*)
let rec loop acc = function
| [] -> failwithf "%s: could not find state machine" filename
| (_, "STATE_MACHINE {") :: lines -> ((filename, 1), acc), lines
| (_, line) :: lines -> loop (acc ^ line ^ "\n") lines
in
let prologue, lines = loop "" lines in
let statecodes = ref [] in
let curr_state = ref None in
let rex = Str.regexp {|^ \([A-Z0-9][A-Z0-9_\.]*\):$|} in
List.iter (
fun (loc, line) ->
if Str.string_match rex line 0 then ( (* new case *)
(match !curr_state with
| None -> ()
| Some state -> statecodes := state :: !statecodes);
curr_state := Some (Str.matched_group 1 line, "", loc);
)
else (
(match !curr_state with
| None ->
failwithf "%s: missing label" (string_of_location loc)
| Some (name, code, loc) ->
curr_state := Some (name, code ^ "\n" ^ line, loc)
)
);
) lines;
(match !curr_state with
| None -> ()
| Some state -> statecodes := state :: !statecodes);
let statecodes = List.rev !statecodes in
prologue, statecodes
in
(* Read all the input files, called [generator/states*.c] *)
let files = List.sort compare (Array.to_list (Sys.readdir "generator")) in
let files = List.filter (
fun filename ->
let len = String.length filename in
len >= 8 && String.sub filename 0 6 = "states" &&
String.sub filename (len-2) 2 = ".c"
) files in
let files = List.map ((^) "generator/") files in
let files = List.map parse_states_file files in
(* Mash together the prologues and the state codes. *)
let prologue =
String.concat "" (
List.map (
fun ((loc, prologue), _) ->
line_directive_of_location loc ^ "\n" ^ prologue ^ "\n"
) files
) in
let statecodes = List.concat (List.map snd files) in
(* Resolve the state names in the code to paths. *)
let statecodes =
List.map (
fun (name, code, loc) ->
let path = Str.split_delim dot_rex name in
let state = find_state path in
state, code, loc
) statecodes in
(* Parse the state code fragments to get internal state
* transitions, marked by "%STATE".
*)
let rex = Str.regexp {|%\([\^\.]*[A-Z0-9][A-Z0-9_\.]*\)|} in
List.iter (
fun (state, code, loc) ->
let code = Str.full_split rex code in
let code =
List.map (
function
| Str.Delim str ->
Str.Delim (String.sub str 1 (String.length str - 1))
| (Str.Text _) as c -> c
) code in
(* Create the list of internal transitions. *)
state.parsed <-
{ state.parsed with
internal_transitions = (
filter_map (
function
| Str.Delim str ->
let next_state = resolve_state state.parsed.prefix str in
Some next_state
| Str.Text _ -> None
) code
)
};
(* Create the final C code fragment. *)
state.parsed <-
{ state.parsed with
loc = loc;
code =
String.concat "" (
List.map (
function
| Str.Delim str ->
let next_state = resolve_state state.parsed.prefix str in
next_state.parsed.state_enum
| Str.Text text -> text
) code
)
}
) statecodes;
prologue
(* Verify state transitions are permitted. *)
let () =
let verify_state_transition from_state to_state =
let from_prefix = from_state.parsed.prefix
and to_prefix = to_state.parsed.prefix in
(* Going from state to state within the same group is always allowed. *)
if from_prefix = to_prefix then
()
(* Going upwards to any state is always allowed. *)
else if List.length from_prefix > List.length to_prefix then
()
(* When going downwards (even into an adjacent tree) you must
* always enter a group at the START state.
*)
else if to_state.name <> "START" then (
failwithf "non-permitted state transition: %s.%s -> %s.%s"
(String.concat "." from_prefix) from_state.name
(String.concat "." to_prefix) to_state.name
)
in
List.iter (
fun ({ parsed = { internal_transitions; events } } as state) ->
List.iter (verify_state_transition state) internal_transitions;
List.iter (fun (_, next_state) -> verify_state_transition state next_state) events
) states
(* Write the state machine code. *)
let generate_lib_states_h () =
generate_header ~extra_sources:["generator/states*.c"] CStyle;
pr "enum state {\n";
List.iter (
fun ({ comment; parsed = { display_name; state_enum } }) ->
pr " ";
pr_wrap_c_comment (fun () -> pr "%s: %s" display_name comment);
pr "\n";
pr " %s,\n" state_enum;
pr "\n";
) states;
pr "};\n";
pr "\n";
pr "/* These correspond to the external events in generator/generator. */\n";
pr "enum external_event {\n";
List.iter (
fun e -> pr " %s,\n" (c_string_of_external_event e)
) all_external_events;
pr "};\n";
pr "\n";
pr "/* State groups. */\n";
pr "enum state_group {\n";
pr " GROUP_TOP,\n";
let rec loop prefix = function
| [] -> ()
| State _ :: rest ->
loop prefix rest
| Group (name, group) :: rest ->
let enum =
"GROUP" ^ String.concat "" (List.map ((^) "_") prefix) ^ "_" ^ name in
pr " %s,\n" enum;
loop (prefix @ [name]) group;
loop prefix rest
in
loop [] state_machine;
pr "};\n";
pr "\n";
pr "/* State transitions defined in states.c. */\n";
List.iter (
fun { parsed = { state_enum } } ->
pr "extern int nbd_internal_enter_%s (\n" state_enum;
pr " struct nbd_handle *h, bool *blocked\n";
pr " );\n"
) states
let generate_lib_states_c () =
generate_header ~extra_sources:["generator/states*.c"] CStyle;
pr "%s\n" state_machine_prologue;
pr "\n";
pr "#define SET_NEXT_STATE(s) (*blocked = false, *next_state = (s))\n";
pr "#define SET_NEXT_STATE_AND_BLOCK(s) (*next_state = (s))\n";
(* The state machine C code fragments. *)
List.iter (
fun { comment; parsed = { display_name; state_enum; loc; code } } ->
pr "\n";
pr_wrap_c_comment (fun () -> pr "%s: %s" display_name comment);
pr "\n";
pr "static int\n";
pr "enter_%s (\n" state_enum;
pr " struct nbd_handle *h, enum state *next_state, bool *blocked\n";
pr ")\n";
pr "{\n";
if code <> "" then (
pr "%s\n" (line_directive_of_location loc);
pr "%s\n" code
)
else
pr " return 0;\n";
pr "}\n";
pr "\n";
let output_loc = "lib/states.c", output_lineno () + 1 in
pr "%s\n" (line_directive_of_location output_loc);
pr "int\n";
pr "nbd_internal_enter_%s (\n" state_enum;
pr " struct nbd_handle *h, bool *blocked\n";
pr ")\n";
pr "{\n";
pr " int r;\n";
pr " enum state next;\n";
pr "\n";
pr " next = %s;\n" state_enum;
pr " r = enter_%s (\n" state_enum;
pr " h, &next, blocked\n";
pr " );\n";
pr " if (get_next_state (h) != next) {\n";
pr "#ifdef LIBNBD_STATE_VERBOSE\n";
pr " debug (h, \"transition: %%s -> %%s\",\n";
pr " \"%s\",\n" display_name;
pr " nbd_internal_state_short_string (next));\n";
pr "#endif\n";
pr " set_next_state (h, next);\n";
pr " }\n";
pr " return r;\n";
pr "}\n";
) states
let generate_lib_states_run_c () =
generate_header ~extra_sources:["generator/states*.c"] CStyle;
pr "#include <config.h>\n";
pr "\n";
pr "#include <stdio.h>\n";
pr "#include <stdlib.h>\n";
pr "#include <errno.h>\n";
pr "#include <assert.h>\n";
pr "\n";
pr "#include \"libnbd.h\"\n";
pr "#include \"internal.h\"\n";
pr "\n";
pr "/* Run the state machine based on an external event until it would block. */\n";
pr "int\n";
pr "nbd_internal_run (struct nbd_handle *h, enum external_event ev)\n";
pr "{\n";
pr " int r;\n";
pr " bool blocked;\n";
pr "\n";
pr " /* Validate and handle the external event. */\n";
pr " switch (get_next_state (h))\n";
pr " {\n";
List.iter (
fun ({ parsed = { display_name; state_enum; events } } as state) ->
pr " case %s:\n" state_enum;
if events <> [] then (
pr " switch (ev)\n";
pr " {\n";
List.iter (
fun (e, next_state) ->
pr " case %s:\n" (c_string_of_external_event e);
if state != next_state then (
pr " set_next_state (h, %s);\n" next_state.parsed.state_enum;
pr "#ifdef LIBNBD_STATE_VERBOSE\n";
pr " debug (";
let print_debug_args () =
pr "h, \"event %%s: %%s -> %%s\", ";
pr "\"%s\", \"%s\", \"%s\");"
(string_of_external_event e)
display_name next_state.parsed.display_name;
in
pr_wrap ',' print_debug_args;
pr "\n";
pr "#endif\n"
);
pr " goto ok;\n";
) events;
pr " default: ; /* nothing, silence GCC warning */\n";
pr " }\n";
);
pr " break;\n";
) states;
pr " }\n";
pr "\n";
pr " set_error (EINVAL, \"external event %%d is invalid in state %%s\",\n";
pr " ev, nbd_internal_state_short_string (get_next_state (h)));\n";
pr " return -1;\n";
pr "\n";
pr " ok:\n";
pr " do {\n";
pr " blocked = true;\n";
pr "\n";
pr " /* Run a single step. */\n";
pr " switch (get_next_state (h))\n";
pr " {\n";
List.iter (
fun { parsed = { state_enum } } ->
pr " case %s:\n" state_enum;
pr " r = nbd_internal_enter_%s (h, &blocked);\n" state_enum;
pr " break;\n"
) states;
pr " default:\n";
pr " abort (); /* Should never happen, but keeps GCC happy. */\n";
pr " }\n";
pr "\n";
pr " if (r == -1) {\n";
pr " assert (nbd_get_error () != NULL);\n";
pr " return -1;\n";
pr " }\n";
pr " } while (!blocked);\n";
pr " return 0;\n";
pr "}\n";
pr "\n";
pr "/* Returns whether in the given state read or write would be valid.\n";
pr " * NB: is_locked = false, may_set_error = false.\n";
pr " */\n";
pr "int\n";
pr "nbd_internal_aio_get_direction (enum state state)\n";
pr "{\n";
pr " int r = 0;\n";
pr "\n";
pr " switch (state)\n";
pr " {\n";
List.iter (
fun ({ parsed = { state_enum; events } }) ->
pr " case %s:\n" state_enum;
List.iter (
fun (e, _) ->
match e with
| NotifyRead -> pr " r |= LIBNBD_AIO_DIRECTION_READ;\n"
| NotifyWrite -> pr " r |= LIBNBD_AIO_DIRECTION_WRITE;\n"
| CmdCreate
| CmdConnectSockAddr
| CmdConnectTCP
| CmdConnectCommand | CmdConnectSA | CmdConnectSocket
| CmdIssue -> ()
) events;
pr " break;\n";
) states;
pr " }\n";
pr "\n";
pr " return r;\n";
pr "}\n";
pr "\n";
pr "/* Other functions associated with the state machine. */\n";
pr "const char *\n";
pr "nbd_internal_state_short_string (enum state state)\n";
pr "{\n";
pr " switch (state)\n";
pr " {\n";
List.iter (
fun ({ parsed = { display_name; state_enum } }) ->
pr " case %s:\n" state_enum;
pr " return \"%s\";\n" display_name
) states;
pr " }\n";
pr "\n";
pr " /* This function is only used for debug messages, and\n";
pr " * this should never happen.\n";
pr " */\n";
pr " return \"UNKNOWN!\";\n";
pr "}\n";
pr "\n";
pr "const char *\n";
pr "nbd_unlocked_connection_state (struct nbd_handle *h)\n";
pr "{\n";
pr " switch (get_next_state (h))\n";
pr " {\n";
List.iter (
fun ({ comment; parsed = { display_name; state_enum } }) ->
pr " case %s:\n" state_enum;
pr " return \"%s\" \": \"\n" display_name;
pr " \"%s\";\n" comment;
pr "\n";
) states;
pr " }\n";
pr "\n";
pr " return NULL;\n";
pr "}\n";
pr "\n";
pr "/* Map a state to its group name. */\n";
pr "enum state_group\n";
pr "nbd_internal_state_group (enum state state)\n";
pr "{\n";
pr " switch (state) {\n";
List.iter (
fun ({ parsed = { prefix; state_enum } }) ->
pr " case %s:\n" state_enum;
if prefix = [] then
pr " return GROUP_TOP;\n"
else
pr " return GROUP%s;\n"
(String.concat "" (List.map ((^) "_") prefix))
) states;
pr " default:\n";
pr " abort (); /* Should never happen, but keeps GCC happy. */\n";
pr " }\n";
pr "}\n";
pr "\n";
pr "/* Map a state group to its parent group. */\n";
pr "enum state_group\n";
pr "nbd_internal_state_group_parent (enum state_group group)\n";
pr "{\n";
pr " switch (group) {\n";
pr " case GROUP_TOP:\n";
pr " return GROUP_TOP;\n";
let rec loop prefix = function
| [] -> ()
| State _ :: rest ->
loop prefix rest
| Group (name, group) :: rest ->
let enum =
"GROUP" ^ String.concat "" (List.map ((^) "_") prefix) ^ "_" ^ name in
pr " case %s:\n" enum;
if prefix = [] then
pr " return GROUP_TOP;\n"
else (
let parent = "GROUP" ^ String.concat "" (List.map ((^) "_") prefix) in
pr " return %s;\n" parent
);
loop (prefix @ [name]) group;
loop prefix rest
in
loop [] state_machine;
pr " default:\n";
pr " abort (); /* Should never happen, but keeps GCC happy. */\n";
pr " }\n";
pr "};\n"
|